ANDRU-PC\Andru
2023-05-22 42c50c0188ed63f59f1b78753a09a9d081224091
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
27
28
29
30
31
32
33
34
35
36
37
38
package com.hz.his.dto.appearance;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * 颜值规划图片Dto
 */
@Data
public class AppearanceDto{
 
    /**页数*/
    private Integer pageNum = 1;
    /**条数*/
    private Integer pageSize = 20;
 
    /**数据id*/
    private String id;
    /**用户Id*/
    private String userId;
    /**是否新版颜值规则*/
    private Integer isNewVersion = YES;
    /**员工id*/
    private String employeeId;
    /**颜值规则标签列表*/
    List<AppearanceLabelDto> labelDtoList;
    /**颜值规则图片列表*/
    List<AppearancePictureDto> pictureDtoList;
 
    public AppearanceDto() {
    }
 
    /**数字0*/
    public static final Integer NO = 0;
    /**数字1*/
    public static final Integer YES = 1;
}