Commit 8968e9d6 by 阮思源

Merge remote-tracking branch 'origin/feat-1001733' into feat-1001733

parents 558d3dc7 f46332a8
package com.pcloud.book.group.dto; package com.pcloud.book.group.dto;
import java.io.Serializable;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude;
import com.pcloud.book.book.dto.BookDto; import com.pcloud.book.book.dto.BookDto;
import java.io.Serializable;
import java.util.Date;
/** /**
* 社群书群二维码DTO * 社群书群二维码DTO
* @author PENG * @author PENG
...@@ -120,6 +121,11 @@ public class BookGroupDTO implements Serializable { ...@@ -120,6 +121,11 @@ public class BookGroupDTO implements Serializable {
private String url; private String url;
/**
* 进群方式:1群二维码,2客服机器人
*/
private Integer joinGroupType;
public String getUrl() { public String getUrl() {
return url; return url;
} }
...@@ -290,6 +296,22 @@ public class BookGroupDTO implements Serializable { ...@@ -290,6 +296,22 @@ public class BookGroupDTO implements Serializable {
this.bookInfo = bookInfo; this.bookInfo = bookInfo;
} }
public Boolean getDelete() {
return isDelete;
}
public void setDelete(Boolean delete) {
isDelete = delete;
}
public Integer getJoinGroupType() {
return joinGroupType;
}
public void setJoinGroupType(Integer joinGroupType) {
this.joinGroupType = joinGroupType;
}
@Override @Override
public String toString() { public String toString() {
return "BookGroupDTO{" + return "BookGroupDTO{" +
...@@ -313,6 +335,8 @@ public class BookGroupDTO implements Serializable { ...@@ -313,6 +335,8 @@ public class BookGroupDTO implements Serializable {
", updateTime=" + updateTime + ", updateTime=" + updateTime +
", isDelete=" + isDelete + ", isDelete=" + isDelete +
", bookInfo=" + bookInfo + ", bookInfo=" + bookInfo +
"} " + super.toString(); ", url='" + url + '\'' +
", joinGroupType=" + joinGroupType +
'}';
} }
} }
\ No newline at end of file
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