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;
|
|
}
|