2
sunshine
2024-11-05 d1f9fb55a136e589a5ad588ed9a93ce9272917da
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
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/25
 */
@Data
@ApiModel(value = "渠道统计总览Vo")
public class ChannelReportTotalVo {
 
    @ApiModelProperty(value = "渠道名")
    private String channelName;
 
    @ApiModelProperty(value = "渠道代码")
    private Integer channelCode;
 
    @ApiModelProperty(value = "入口渠道代码")
    private Integer importChannel;
 
    @ApiModelProperty(value = "成功数")
    private Integer successCountSum;
 
    @ApiModelProperty(value = "失败数")
    private Integer failCountSum;
 
    @ApiModelProperty(value = "贷款超市Id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long supermarketId;
 
    @ApiModelProperty(value = "开始时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date startDate;
 
    @ApiModelProperty(value = "结束时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date endDate;
 
}