Commit 5f37b2e9 by songyinghui

feat: DTO 属性一致

parent 47e443c6
......@@ -16,7 +16,7 @@ public class ContentMaterialInfoVO implements Serializable {
/**
* 素材id
*/
private Integer contentMaterialId;
private Long contentMaterialId;
/**
* 素材标题
......@@ -61,12 +61,12 @@ public class ContentMaterialInfoVO implements Serializable {
/**
* 分享次数
*/
private Integer shareCount;
private Long shareCount;
/**
* 发布人id
*/
private String producerId;
private Long producerId;
/**
* 发布人头像
......@@ -84,11 +84,11 @@ public class ContentMaterialInfoVO implements Serializable {
private List<SimpleGoodsInfoVO> contentGoodsList;
public Integer getContentMaterialId() {
public Long getContentMaterialId() {
return contentMaterialId;
}
public void setContentMaterialId(Integer contentMaterialId) {
public void setContentMaterialId(Long contentMaterialId) {
this.contentMaterialId = contentMaterialId;
}
......@@ -156,19 +156,19 @@ public class ContentMaterialInfoVO implements Serializable {
this.materialVideoFirstImageUrl = materialVideoFirstImageUrl;
}
public Integer getShareCount() {
public Long getShareCount() {
return shareCount;
}
public void setShareCount(Integer shareCount) {
public void setShareCount(Long shareCount) {
this.shareCount = shareCount;
}
public String getProducerId() {
public Long getProducerId() {
return producerId;
}
public void setProducerId(String producerId) {
public void setProducerId(Long producerId) {
this.producerId = producerId;
}
......
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