101captain
2021-08-24 c92f77ac03a1bbe3009891ce1d1f57f2d1091572
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.panzhihua.common.model.dtos.community;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("取消预约/登记参数")
public class CancelRecordDTO {
    @ApiModelProperty("记录id")
    private Long id;
    /**
     * 内容
     */
    @ApiModelProperty("内容")
    private String content;
 
    /**
     * 备注
     */
    @ApiModelProperty("备注")
    private String remark;
 
    private Integer status;
}