liyuqian
2022-09-06 3afb255628cad549b26cb5dda90f63b1f144132c
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
package com.hz.phis.dt.promotion;
 
 
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 促销详情实体
 *
 * @author fwq
 */
@Data
public class PromotionDetailDt {
    /**编号(项目/商品/增值金/储值金/积分)*/
    private String commonCode;
    /**(project项目,retail商品,increment增值金,stored储值金,integral积分,项目分类project_type,retail_type商品分类)*/
    private String type;
    /**公共标识(项目/商品/增值金(PaymentMethod)/储值金(PaymentMethod)/积分(PaymentMethod))*/
    private String commonId;
    /**公共名称*/
    private String commonName;
    /**规格*/
    private String specJson;
    /**疗程项目次数(ProjectGeneral)*/
    private Integer treatmentItemsNum;
    /**单价*/
    private BigDecimal price;
    /**数量*/
    private Integer num;
    /**总价(单价*数量)*/
    private BigDecimal total;
    /**折扣单价*/
    private BigDecimal discountPrice;
    /**折扣(单位:百分比)*/
    private BigDecimal discount;
    /**折后价*/
    private BigDecimal discountAfterPrice;
    /**是否赠送*/
    private Integer isGiving;
    /**促销标识*/
    private String promotionId;
 
}