You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
793 B
34 lines
793 B
package com.hfkj.model;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 价格促销信息
|
|
*/
|
|
@Data
|
|
public class PricePromotionInfoModel {
|
|
/**
|
|
* 一口价通常显示为划线价
|
|
*/
|
|
BigDecimal reservePrice;
|
|
/**
|
|
* 预估到手价(元)。若属于预售商品,付定金时间内,预估到手价价=定金+尾款的预估到手价
|
|
*/
|
|
BigDecimal finalPromotionPrice;
|
|
/**
|
|
* 优惠券金额
|
|
*/
|
|
BigDecimal couponPrice;
|
|
/**
|
|
* 销售价格,无促销时等于一口价,有促销时为促销价。若属于预售商品,付定金时间内,在线售卖价=预售价
|
|
*/
|
|
BigDecimal zkFinalPrice;
|
|
/**
|
|
* 更多活动优惠
|
|
*/
|
|
List<MorePromotionModel> morePromotionList;
|
|
|
|
}
|
|
|