提交 | 用户 | age
|
3ce49a
|
1 |
package com.hz.phis.dt.promotion; |
F |
2 |
|
|
3 |
|
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.math.BigDecimal; |
|
7 |
|
|
8 |
/** |
|
9 |
* 促销详情实体 |
|
10 |
* |
|
11 |
* @author fwq |
|
12 |
*/ |
|
13 |
@Data |
|
14 |
public class PromotionDetailDt { |
|
15 |
/**编号(项目/商品/增值金/储值金/积分)*/ |
|
16 |
private String commonCode; |
|
17 |
/**(project项目,retail商品,increment增值金,stored储值金,integral积分,项目分类project_type,retail_type商品分类)*/ |
|
18 |
private String type; |
|
19 |
/**公共标识(项目/商品/增值金(PaymentMethod)/储值金(PaymentMethod)/积分(PaymentMethod))*/ |
|
20 |
private String commonId; |
|
21 |
/**公共名称*/ |
|
22 |
private String commonName; |
|
23 |
/**规格*/ |
|
24 |
private String specJson; |
|
25 |
/**疗程项目次数(ProjectGeneral)*/ |
|
26 |
private Integer treatmentItemsNum; |
|
27 |
/**单价*/ |
|
28 |
private BigDecimal price; |
|
29 |
/**数量*/ |
|
30 |
private Integer num; |
|
31 |
/**总价(单价*数量)*/ |
|
32 |
private BigDecimal total; |
|
33 |
/**折扣单价*/ |
|
34 |
private BigDecimal discountPrice; |
|
35 |
/**折扣(单位:百分比)*/ |
|
36 |
private BigDecimal discount; |
|
37 |
/**折后价*/ |
|
38 |
private BigDecimal discountAfterPrice; |
|
39 |
/**是否赠送*/ |
|
40 |
private Integer isGiving; |
|
41 |
/**促销标识*/ |
|
42 |
private String promotionId; |
|
43 |
|
|
44 |
} |