fhx
2023-08-07 b1a32597c80e52d9ba0ca6345b662bfb4ef155f5
提交 | 用户 | 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;
a80eaa 35     /** 到访订单id(门店助手使用统计使用) */
F 36     private String visitOrderId;
72e8f2 37
b1a325 38     /**数据类型(AppearanceConstants)*/
F 39     private Integer dataType;
40
72e8f2 41     public AppearanceDto() {
A 42     }
43
44     /**数字0*/
45     public static final Integer NO = 0;
46     /**数字1*/
47     public static final Integer YES = 1;
48 }