huanghongfa
2021-10-18 a7ebf0ce7082e68f4aaf8a7a0e3e5e6c48dfaadb
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;
 
 
}