阿里云视频点播功能
This commit is contained in:
@ -0,0 +1,39 @@
|
||||
package com.stdiet.custom.dto.response;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
public class NutritionalVideoResponse implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
//分类ID
|
||||
public Long cateId;
|
||||
|
||||
//分类名称
|
||||
public String cateName;
|
||||
|
||||
//标题
|
||||
public String title;
|
||||
|
||||
//标签
|
||||
public String tags;
|
||||
|
||||
//视频ID
|
||||
public String videoId;
|
||||
|
||||
//封面URL
|
||||
public String coverURL;
|
||||
|
||||
//视频描述
|
||||
public String description;
|
||||
|
||||
//播放链接
|
||||
public String playUrl;
|
||||
|
||||
|
||||
public String createTime;
|
||||
|
||||
}
|
Reference in New Issue
Block a user