lidongdong
2023-06-05 b9324c7df56b7a9767b0c0dbd7ebaef628b8aeae
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;
 
 
}