Commit 1cbb0669 by gaopeng

促销赠送topic加字段

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