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;
|
}
|