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