Commit 9327e1c2 by songyinghui

feat: bitType

parent 3ae72fc5
...@@ -56,6 +56,13 @@ public class InteractRecordInfoDTO implements Serializable { ...@@ -56,6 +56,13 @@ public class InteractRecordInfoDTO implements Serializable {
*/ */
private String bizId; private String bizId;
/**
* 业务类型
* @see com.gic.haoban.manage.api.enums.content.ShareBizType
*/
private Integer bizType;
/** /**
* 浏览的商品数量 * 浏览的商品数量
*/ */
...@@ -158,4 +165,12 @@ public class InteractRecordInfoDTO implements Serializable { ...@@ -158,4 +165,12 @@ public class InteractRecordInfoDTO implements Serializable {
public void setOrderGoodsNum(Integer orderGoodsNum) { public void setOrderGoodsNum(Integer orderGoodsNum) {
this.orderGoodsNum = orderGoodsNum; this.orderGoodsNum = orderGoodsNum;
} }
public Integer getBizType() {
return bizType;
}
public void setBizType(Integer bizType) {
this.bizType = bizType;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment