ANDRU-PC\Andru
2023-05-22 42c50c0188ed63f59f1b78753a09a9d081224091
提交 | 用户 | 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
42c50c 18     /**数据id*/
A 19     private String id;
72e8f2 20     /**用户Id*/
A 21     private String userId;
22     /**是否新版颜值规则*/
42c50c 23     private Integer isNewVersion = YES;
72e8f2 24     /**员工id*/
A 25     private String employeeId;
26     /**颜值规则标签列表*/
27     List<AppearanceLabelDto> labelDtoList;
28     /**颜值规则图片列表*/
29     List<AppearancePictureDto> pictureDtoList;
30
31     public AppearanceDto() {
32     }
33
34     /**数字0*/
35     public static final Integer NO = 0;
36     /**数字1*/
37     public static final Integer YES = 1;
38 }