vod普通加密

This commit is contained in:
wangjinlei
2024-07-18 18:45:31 +08:00
parent 00b9f96dd1
commit 10796fe6c6
9 changed files with 379 additions and 21 deletions

View File

@@ -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> {
}

View File

@@ -38,4 +38,6 @@ public class CourseCatalogueChapterVideoEntity {
private String videoUrl;
@TableField(exist = false)
private String Mp4Url;
@TableField(exist = false)
private String MtsHlsUriToken;
}

View File

@@ -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;
}