chenjiahe
2023-08-07 9fd5c6f5473e692b2f15d182d07bb5cf278f57a5
提交 | 用户 | age
e8dcf5 1 package com.hz.his.dto.coupon;
F 2
3
4 import lombok.Data;
5
6 import java.math.BigDecimal;
7 import java.util.List;
8
9 /**
10  * 优惠券校验-商品信息
11  */
12 @Data
13 public class CouponCheckItemDto{
14     /**商品sku标识*/
15     private String skuId;
16     /**商品类型*/
17     private Integer goodsType;
18     /**商品所属分类标识集合*/
19     private List<String> typeIdList;
20     /**商品phis标识*/
21     private String hisId;
22     /**商品phis类型*/
23     private String hisType;
3b50a6 24     /**商品所属phis分类标识集合-不用传*/
c6e788 25     private List<String> hisTypeIdList;
e8dcf5 26     /**单个商品金额*/
F 27     private BigDecimal price;
28     /**购买数量*/
29     private Integer buyNum;
30
31
32     /**类型-项目*/
33     public static final String TYPE_PROJECT = "project";
34     /**类型-商品/药品*/
35     public static final String TYPE_RETAIL = "retail";
36     /**类型-卡项*/
37     public static final String TYPE_CARD = "card";
38     /**类型-促销*/
39     public static final String TYPE_PROMOTION = "promotion";
40     /**类型-增值金*/
41     public static final String TYPE_INCREMENT = "increment";
42     /**类型-储值金*/
43     public static final String TYPE_STORED = "stored";
44     /**类型-积分*/
45     public static final String TYPE_INTEGRAL = "integral";
46     /**类型-团购商品*/
47     public static final String TYPE_COMMODITY = "commodity";
48     /**类型-积分商品*/
49     public static final String TYPE_GOODS_INTEGRAL = "goods_integral";
50
51 }