Commit 1cbb0669 by gaopeng

促销赠送topic加字段

parent 81d971db
...@@ -35,6 +35,16 @@ public class PromotionOrderDto implements Serializable { ...@@ -35,6 +35,16 @@ public class PromotionOrderDto implements Serializable {
private String uniqueNum; private String uniqueNum;
/** /**
* 二维码ID
*/
private Long sceneId;
/**
* 编辑ID
*/
private Long adviserId;
/**
* 赠品list * 赠品list
*/ */
private List<PromotionGiftDto> gifts; private List<PromotionGiftDto> gifts;
...@@ -68,6 +78,22 @@ public class PromotionOrderDto implements Serializable { ...@@ -68,6 +78,22 @@ public class PromotionOrderDto implements Serializable {
this.userId = userId; this.userId = userId;
} }
public Long getSceneId() {
return sceneId;
}
public void setSceneId(Long sceneId) {
this.sceneId = sceneId;
}
public Long getAdviserId() {
return adviserId;
}
public void setAdviserId(Long adviserId) {
this.adviserId = adviserId;
}
public List<PromotionGiftDto> getGifts() { public List<PromotionGiftDto> getGifts() {
return gifts; return gifts;
} }
...@@ -98,6 +124,8 @@ public class PromotionOrderDto implements Serializable { ...@@ -98,6 +124,8 @@ public class PromotionOrderDto implements Serializable {
"channelId=" + channelId + "channelId=" + channelId +
", officialAccountId=" + officialAccountId + ", officialAccountId=" + officialAccountId +
", userId=" + userId + ", userId=" + userId +
", sceneId=" + sceneId +
", adviserId=" + adviserId +
", uniqueNum='" + uniqueNum + '\'' + ", uniqueNum='" + uniqueNum + '\'' +
", gifts=" + gifts + ", gifts=" + gifts +
", giftExpire=" + giftExpire + ", giftExpire=" + giftExpire +
......
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