vod普通加密
This commit is contained in:
@@ -38,4 +38,6 @@ public class CourseCatalogueChapterVideoEntity {
|
||||
private String videoUrl;
|
||||
@TableField(exist = false)
|
||||
private String Mp4Url;
|
||||
@TableField(exist = false)
|
||||
private String MtsHlsUriToken;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
package com.peanut.modules.common.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@TableName("video_m3u8")
|
||||
public class VideoM3u8Entity {
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
private String vid;
|
||||
|
||||
private String edk;
|
||||
|
||||
private Integer state;
|
||||
}
|
||||
Reference in New Issue
Block a user