fwq
2024-04-01 3e8397cc9f2aece1b0430fcd4fe3162a22bc499f
提交 | 用户 | age
3ce49a 1 package com.hz.phis.dt.project;
F 2
3 import com.hz.phis.dt.BaseDt;
b5f3de 4 import com.hz.phis.dt.spec.SkuGroupSpecDt;
c3b53d 5 import com.hz.phis.dt.spec.SkuSpecDt;
3ce49a 6 import lombok.Data;
F 7
8 import java.math.BigDecimal;
9 import java.util.List;
10
11 /**
12  * 项目详情实体
13  *
14  * @author fwq
15  */
16 @Data
17 public class ProjectDetailBo extends BaseDt {
18     /**类型0sku 1spu*/
19     private Integer type;
20     /**项目-上下架*/
21     private Integer isUp;
22     /**原价*/
23     private BigDecimal originalPrice;
24     /**销售单价*/
25     private BigDecimal price;
26     /**治疗时长,以秒为存储单位*/
27     private Integer useDuration ;
28     /**间隔时间,以秒为存储单位*/
29     private Integer intervalDuration;
30     /**规格*/
31     private List<ProjectSpecsBo> projectSpecsBoList;
32     /**sku信息*/
33     private List<String> skuIdList;
c3b53d 34     /**sku规格信息*/
b5f3de 35     private List<SkuGroupSpecDt> skuSpecsBoList;
3ce49a 36     /**规格*/
F 37     private String specification;
38     /**其他规格*/
39     private String specOther;
40     /**项目类型标识*/
41     private String projectTypeId;
42     /**项目类型名称*/
43     private String projectTypeName;
44     /**项目名称*/
45     private String name;
46     /**顺序号*/
47     private Integer orderNum;
48     /**备注*/
49     private String remark;
50     /**接口id*/
51     private String apiId;
52     /**接口code*/
53     private String apiCode;
54     /**his项目名称*/
55     private String hisName;
56     /**his规格*/
57     private String hisSpec;
58     /**术前时间,以秒为存储单位*/
59     private Integer readyDuration;
60     /**项目单位*/
61     private String unit;
62     /**项目类别(0:医美,1:是否生美)*/
63     private Integer isLifeBeauty;
64     /**敷麻时间,以秒为存储单位*/
65     private Integer palsyDuration;
66     /**是否大项目*/
67     private Integer isBigProject;
68     /**休息间隔,格式:10-20|40-50*/
69     private String restInterval;
70     /**是否关联设备*/
71     private Integer isDevice;
72     /**英文名称*/
73     private String englishName;
74     /**类别*/
75     private String category;
76     /**疗程次数*/
77     private String courseCount;
78     /**是否可执行*/
79     private boolean executable;
80     /**编号*/
81     private String coding;
82     /**搜索拼音*/
83     private String searchPinyin;
84     /**标准编码*/
85     private String standardCode;
86     /**标准名称*/
87     private String standardName;
88     /**独享时长*/
89     private Integer exclusive;
90     /**共享时长*/
91     private Integer sharingTime;
92     /**是否成交*/
93     private Integer isMakeADeal;
94     /**是否医疗项目*/
95     private Integer isMedicalIitems;
96     /**是否组合项目*/
97     private Integer isCombinedProject;
98     /**是否赠送积分*/
99     private Integer isGiftPoints;
100     /**是否可执行*/
101     private Integer isExecutable;
102     /**是否疗程项目*/
103     private Integer isTreatmentItems;
104     /**疗程项目次数*/
105     private Integer treatmentItemsNum;
106     /**默认渠道提成比例是否启用*/
107     private Integer isDefaultCommission;
108     /**默认渠道提成比例百分数*/
109     private Integer defaultCommission;
110     /**标签*/
111     private String tag;
112     /**项目总标识*/
113     private String projectGeneralId;
114     /**项目标识*/
115     private String projectId;
116     /**身体部位,末级标识*/
117     private String bodyPartId;
118     /**身体部位名称*/
119     private String bodyPartName;
120     /**业态*/
121     private String format;
122     /**医生资质*/
123     private String doctorQualification;
124     /**执行资质*/
125     private String executiveQualificationCode;
126     /**执行资质名称*/
127     private String executiveQualificationName;
128     /**收入计入*/
129     private String incomeIncludedCode;
130     /**收入计入名称*/
131     private String incomeIncludedName;
132     /**收入主体*/
133     private String incomeSubjectCode;
134     /**收入主体名称*/
135     private String incomeSubjectName;
136     /**科室名称*/
137     private String departmentName;
138     /**科室编码*/
139     private String departmentCode;
140     /**可售范围*/
141     private String availableForSaleCode;
142     /**可售范围名称*/
143     private String availableForSaleName;
144     /**价格标签*/
145     private String priceTagCode;
146     /**价格标签名称*/
147     private String priceTagName;
148 }