Commit 6eb324c6 by songyinghui

feat: 视频时长

parent 6a06e4d5
......@@ -93,6 +93,11 @@ public class ContentMaterialInfoVO implements Serializable {
*/
private List<SimpleGoodsInfoVO> contentGoodsList;
/**
* 视频时长
*/
private Integer duration;
public Long getContentMaterialId() {
return contentMaterialId;
......@@ -213,4 +218,12 @@ public class ContentMaterialInfoVO implements Serializable {
public void setMaterialThumbnailImageUrls(List<String> materialThumbnailImageUrls) {
this.materialThumbnailImageUrls = materialThumbnailImageUrls;
}
public Integer getDuration() {
return duration;
}
public void setDuration(Integer duration) {
this.duration = duration;
}
}
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