|
@@ -32,10 +32,26 @@ public class PostCollection extends BaseEntity
|
|
|
@Excel(name = "藏品数量")
|
|
|
private Long collectionCounts;
|
|
|
|
|
|
+ /** 藏品图片 */
|
|
|
+ @Excel(name = "藏品图片")
|
|
|
+ private String collectionImage;
|
|
|
+
|
|
|
+ /** 藏品详情图片 */
|
|
|
+ @Excel(name = "藏品详情图片")
|
|
|
+ private String collectionDetails;
|
|
|
+
|
|
|
+ /** 藏品3d模板 */
|
|
|
+ @Excel(name = "藏品3d模板")
|
|
|
+ private String collection3dimage;
|
|
|
+
|
|
|
/** 藏品状态(0在售 1售完) */
|
|
|
@Excel(name = "藏品状态", readConverterExp = "0=在售,1=售完")
|
|
|
private String collectionStatus;
|
|
|
|
|
|
+ /** 发行方姓名 */
|
|
|
+ @Excel(name = "发行方姓名")
|
|
|
+ private String publisherName;
|
|
|
+
|
|
|
/** 藏品兑换状态(0可兑换 1不可兑换) */
|
|
|
@Excel(name = "藏品兑换状态", readConverterExp = "0=可兑换,1=不可兑换")
|
|
|
private String exchangeStatus;
|
|
@@ -148,24 +164,60 @@ public class PostCollection extends BaseEntity
|
|
|
return delFlag;
|
|
|
}
|
|
|
|
|
|
+ public String getPublisherName() {
|
|
|
+ return publisherName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPublisherName(String publisherName) {
|
|
|
+ this.publisherName = publisherName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCollectionImage() {
|
|
|
+ return collectionImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCollectionImage(String collectionImage) {
|
|
|
+ this.collectionImage = collectionImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCollectionDetails() {
|
|
|
+ return collectionDetails;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCollectionDetails(String collectionDetails) {
|
|
|
+ this.collectionDetails = collectionDetails;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCollection3dimage() {
|
|
|
+ return collection3dimage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCollection3dimage(String collection3dimage) {
|
|
|
+ this.collection3dimage = collection3dimage;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("collectionId", getCollectionId())
|
|
|
- .append("collectionName", getCollectionName())
|
|
|
- .append("collectionPrice", getCollectionPrice())
|
|
|
- .append("collectionCounts", getCollectionCounts())
|
|
|
- .append("collectionStatus", getCollectionStatus())
|
|
|
- .append("exchangeStatus", getExchangeStatus())
|
|
|
- .append("startTime", getStartTime())
|
|
|
- .append("endTime", getEndTime())
|
|
|
- .append("seriesName", getSeriesName())
|
|
|
- .append("delFlag", getDelFlag())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .append("remark", getRemark())
|
|
|
- .toString();
|
|
|
+ .append("collectionId", getCollectionId())
|
|
|
+ .append("collectionName", getCollectionName())
|
|
|
+ .append("collectionImage", getCollectionImage())
|
|
|
+ .append("collectionDetails", getCollectionDetails())
|
|
|
+ .append("collection3dimage", getCollection3dimage())
|
|
|
+ .append("publisherName", getPublisherName())
|
|
|
+ .append("collectionPrice", getCollectionPrice())
|
|
|
+ .append("collectionCounts", getCollectionCounts())
|
|
|
+ .append("collectionStatus", getCollectionStatus())
|
|
|
+ .append("exchangeStatus", getExchangeStatus())
|
|
|
+ .append("startTime", getStartTime())
|
|
|
+ .append("endTime", getEndTime())
|
|
|
+ .append("seriesName", getSeriesName())
|
|
|
+ .append("delFlag", getDelFlag())
|
|
|
+ .append("createBy", getCreateBy())
|
|
|
+ .append("createTime", getCreateTime())
|
|
|
+ .append("updateBy", getUpdateBy())
|
|
|
+ .append("updateTime", getUpdateTime())
|
|
|
+ .append("remark", getRemark())
|
|
|
+ .toString();
|
|
|
}
|
|
|
}
|