Commit 51e6159d by 郑永强

feat: [1003014] 抽奖应用的创建与次数问题,传bookid

parent 8636b639
......@@ -37,6 +37,12 @@ public class PromotionGiftDto implements Serializable {
*/
private String grantNum;
/**
* bookId
* @return
*/
private Long bookId;
public Long getTargetId() {
return targetId;
}
......@@ -77,6 +83,14 @@ public class PromotionGiftDto implements Serializable {
this.targetClass = targetClass;
}
public Long getBookId() {
return bookId;
}
public void setBookId(Long bookId) {
this.bookId = bookId;
}
@Override
public String toString() {
return "PromotionGiftDto{" +
......@@ -85,6 +99,7 @@ public class PromotionGiftDto implements Serializable {
", targetClass='" + targetClass + '\'' +
", grantAction='" + grantAction + '\'' +
", grantNum='" + grantNum + '\'' +
", bookId=" + bookId +
'}';
}
}
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