sunshine
2024-11-05 00b4581009af28098da4286a8ef9f4d72c7c5728
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
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;
 
@Data
@ApiModel(value = "贷超统计报表Dto")
public class LoanSupermarketStatisticsDto {
 
    @ApiModelProperty(value = "贷超Id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long suId;
 
    @ApiModelProperty(value = "渠道code")
    private Integer chCode;
 
    @ApiModelProperty(value = "查询日期")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date date = new Date();
}