Sunshine
2024-11-05 8f7985d7764a0aad24bd593ac5ea47b7fc290961
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.nova.sankuai.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * @author weikangdi
 * @create 2021/11/10
 */
@ApiModel("客户推送记录VO")
@Data
public class CustomerPushRecordVo {
 
    @ApiModelProperty(value = "主键")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;
 
    @ApiModelProperty(value = "机构手机号")
    private String phone;
 
    @ApiModelProperty(value = "机构ID")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long mechanismId;
 
    @ApiModelProperty(value = "机构名")
    private String mechanismName;
 
    @ApiModelProperty(value = "客户记录ID")
    private Long customerRecordId;
 
    @ApiModelProperty(value = "客户名")
    private String customerRecordName;
 
    @ApiModelProperty(value = "扣款记录ID")
    private Long deductionId;
 
    @ApiModelProperty(value = "创建时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date creationDate;
 
    @ApiModelProperty(value = "状态 0-正常 1-失效")
    private Integer status;
 
    @ApiModelProperty(value = "备注")
    private String memo;
 
}