ANDRU-PC\Andru
2023-06-01 abb5a863db85dd62045d7a2f463195d61029c9e5
提交 | 用户 | age
72e8f2 1 package com.hz.his.dto.appearance;
A 2
3 import lombok.Data;
4
5 import java.util.List;
6
7 /**
8  * 颜值规划图片Dto
9  */
10 @Data
11 public class AppearanceDto{
12
40aaf0 13     /**页数*/
A 14     private Integer pageNum = 1;
15     /**条数*/
16     private Integer pageSize = 20;
17
962298 18     /**时间段开始 yyyy-MM-dd HH:mm:ss*/
A 19     private String startTime;
20      /**时间段结束 yyyy-MM-dd HH:mm:ss*/
21     private String endTime;
22
42c50c 23     /**数据id*/
A 24     private String id;
72e8f2 25     /**用户Id*/
A 26     private String userId;
27     /**是否新版颜值规则*/
42c50c 28     private Integer isNewVersion = YES;
72e8f2 29     /**员工id*/
A 30     private String employeeId;
31     /**颜值规则标签列表*/
32     List<AppearanceLabelDto> labelDtoList;
33     /**颜值规则图片列表*/
34     List<AppearancePictureDto> pictureDtoList;
35
36     public AppearanceDto() {
37     }
38
39     /**数字0*/
40     public static final Integer NO = 0;
41     /**数字1*/
42     public static final Integer YES = 1;
43 }