vod普通加密
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package com.peanut.modules.common.dao;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseMapper;
|
||||
import com.peanut.modules.common.entity.VideoM3u8Entity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface VideoM3u8Dao extends MPJBaseMapper<VideoM3u8Entity> {
|
||||
}
|
||||
@@ -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