huanghongfa
2021-09-16 a824e3b0f4b9f2f1d45f7195eb1fec2a6f5ba2a9
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;
 
 
}