package com.hz.phis.dt.consumables;
|
|
import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
|
import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant;
|
import lombok.Data;
|
|
/**
|
* 商品关联组合
|
* @USER: fhx
|
* @DATE: 2023/7/12
|
**/
|
@Data
|
public class GoodsAssocDt {
|
|
/** 耗材表标识(Consumables) */
|
private String consumableId;
|
/** 关联类型 */
|
public String commonType;
|
/** 关联标识(优惠券id) */
|
public String commonId;
|
/** 关联名称 */
|
public String commonName;
|
/** 数量 */
|
public Integer quantity;
|
|
|
//////////////////////////////////
|
/** 关联类型 - 优惠券 */
|
public static final String COMMON_TYPE_COUPON = "coupon";
|
}
|