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.VodAesTokenEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface VodAesTokenDao extends MPJBaseMapper<VodAesTokenEntity> {
|
||||
}
|
||||
@@ -36,4 +36,6 @@ public class CourseCatalogueChapterVideoEntity {
|
||||
private UserCourseVideoPositionEntity userCourseVideoPositionEntity;
|
||||
@TableField(exist = false)
|
||||
private String videoUrl;
|
||||
@TableField(exist = false)
|
||||
private String Mp4Url;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
package com.peanut.modules.common.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@TableName("vod_aes_token")
|
||||
public class VodAesTokenEntity {
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
private String token;
|
||||
|
||||
private Integer useCount;
|
||||
}
|
||||
Reference in New Issue
Block a user