Commit 9c92c427 by 阮思源

加字段

parent c6e893cb
......@@ -93,6 +93,16 @@ public class GroupQrcodeInfo4Advertising extends BaseDto {
*/
private Integer advertisingSpaceNum;
/**
* 分类id
*/
private Long classifyId;
/**
* 社群码id
*/
private Long bookGroupId;
public String getWxGroupId() {
return wxGroupId;
}
......@@ -245,6 +255,22 @@ public class GroupQrcodeInfo4Advertising extends BaseDto {
this.purLabelName = purLabelName;
}
public Long getClassifyId() {
return classifyId;
}
public void setClassifyId(Long classifyId) {
this.classifyId = classifyId;
}
public Long getBookGroupId() {
return bookGroupId;
}
public void setBookGroupId(Long bookGroupId) {
this.bookGroupId = bookGroupId;
}
@Override
public String toString() {
return "GroupQrcodeInfo4Advertising{" +
......@@ -267,6 +293,8 @@ public class GroupQrcodeInfo4Advertising extends BaseDto {
", agentName='" + agentName + '\'' +
", isOpen=" + isOpen +
", advertisingSpaceNum=" + advertisingSpaceNum +
'}';
", classifyId=" + classifyId +
", bookGroupId=" + bookGroupId +
"} " + super.toString();
}
}
......@@ -378,11 +378,13 @@
c.create_user adviserId,
b.BOOK_NAME bookName,
c.classify classify,
c.id classifyId,
g.user_number userNumber,
g.qrcode_url qrcodeUrl,
bg.dep_label_id depLabelId,
bg.pro_label_id proLabelId,
bg.pur_label_id purLabelId,
bg.id bookGroupId,
IF (adp.is_open = 0, 0, 1) isOpen
FROM
book_group_qrcode g
......
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