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; }