huanghongfa
2022-04-13 c7cb86db957dc7fbf6ca30270a71a43f5b31eccf
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;
 
 
}