| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2024/11/25 11:51 |
| | |
| | | private String homePicture; |
| | | @ApiModelProperty("商品名称") |
| | | private String name; |
| | | @ApiModelProperty("售价") |
| | | private String sellingPrice; |
| | | @ApiModelProperty("售价现金") |
| | | private BigDecimal cash; |
| | | @ApiModelProperty("售价积分") |
| | | private Integer point; |
| | | @ApiModelProperty("原价") |
| | | private String originalPrice; |
| | | @ApiModelProperty("购买数量") |
| | |
| | | private Long endTime; |
| | | @ApiModelProperty("是否可核销(0=否,1=是)") |
| | | private Boolean verifiable; |
| | | @ApiModelProperty("是否超出限购数量") |
| | | private Boolean purchaseLimit; |
| | | @ApiModelProperty("现金支付") |
| | | private Boolean cashPayment; |
| | | @ApiModelProperty("积分支付") |
| | | private Boolean pointPayment; |
| | | @ApiModelProperty("配送方式(1=自提,2=快递)") |
| | | private Integer distributionMode; |
| | | /** |
| | | * 可获得消费积分 |
| | | */ |
| | | private Integer earnSpendingPoints; |
| | | } |