fhx
2024-04-11 8aabd6f9a44fb4de7ef2c70ff0a15fc000f4b5d9
提交 | 用户 | 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;
fe1a55 35     /** 到访订单id(门店助手使用统计使用) */
F 36     private String visitOrderId;
72e8f2 37
c4fec3 38     /**数据类型(AppearanceConstants)*/
F 39     private Integer dataType;
40
af413d 41     /** 短期规划 */
F 42     private String shortPlan;
43     /** 中期规划 */
44     private String middlePlan;
45     /** 长期规划 */
46     private String longPlan;
47
72e8f2 48     public AppearanceDto() {
A 49     }
50
51     /**数字0*/
52     public static final Integer NO = 0;
53     /**数字1*/
54     public static final Integer YES = 1;
55 }