package com.nova.sankuai.domain.dto; 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 * @date 2022-04-18 */ @Data @ApiModel(value = "全流程报表Dto") public class WholeProcessStatisticsDto { @ApiModelProperty(value = "查询日期") @DateTimeFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd") private Date date; @ApiModelProperty(value = "渠道Code") private Integer chCode; }