Commit 55ebd896 by 田超

Merge branch 'feature/1003014' into 'master'

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

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