fhx
2023-07-19 b185ead5fcf5f87c19df0abe6a32ea2c1b02eb66
提交 | 用户 | age
122bd7 1 package com.hz.phis.dt.consumables;
F 2
3 import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
4 import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant;
5 import lombok.Data;
6
7 /**
8  * 商品关联组合
9  * @USER: fhx
10  * @DATE: 2023/7/12
11  **/
12 @Data
13 public class GoodsAssocDt {
14
15     /** 耗材表标识(Consumables) */
16     private String consumableId;
17     /** 关联类型 */
18     public String commonType;
19     /** 关联标识(优惠券id) */
20     public String commonId;
21     /** 关联名称 */
22     public String commonName;
23     /** 数量 */
24     public Integer quantity;
25
26
27     //////////////////////////////////
28     /** 关联类型 - 优惠券 */
29     public static final String COMMON_TYPE_COUPON = "coupon";
30 }