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
package com.nova.sankuai.domain.vo.channel;
 
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/29
 */
@Data
@ApiModel(value = "渠道统计出口明细Vo")
public class ChannelExportReportVo {
 
    @ApiModelProperty(value = "客户记录ID")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long recordId;
 
    @ApiModelProperty(value = "手机号")
    private String phone;
 
    @ApiModelProperty(value = "姓名")
    private String name;
 
    @ApiModelProperty(value = "所属机构名称")
    private String mechanismName;
 
    @ApiModelProperty(value = "入口渠道名")
    private String importChannel;
 
    @ApiModelProperty(value = "出口渠道名")
    private String exportChannel;
 
    @ApiModelProperty(value = "渠道代码")
    private Integer channelCode;
 
    @ApiModelProperty(value = "贷款超市名称")
    private String supermarketName;
 
    @ApiModelProperty(value = "申请时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date applyDate;
 
}