huanghongfa
2021-10-08 7fec75a658d071bcd3af08e769d235080c63e6a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.panzhihua.common.model.dtos.community;
 
import lombok.Data;
 
@Data
public class OperationDetailDTO {
    /**
     * 预约登记记录id
     */
    private Long reserveRecordId;
 
    /**
     * 用户id
     */
    private Long userId;
 
    /**
     * 类型(1.本人操作 2.社区操作)
     */
    private Integer type;
 
 
}