-- 新版提交

This commit is contained in:
yc13649764453
2023-09-09 13:51:35 +08:00
parent 763e24b4e0
commit 0b193caa03
92 changed files with 3451 additions and 1120 deletions

View File

@@ -8,7 +8,7 @@ import lombok.Data;
/**
*
*
* 章节表
* @author yl
* @email yl328572838@163.com
* @date 2022-08-12 09:53:25
@@ -39,6 +39,8 @@ public class BookChapterEntity implements Serializable {
* 内容
*/
private String content;
/**
* 音频文件地址
*/
@@ -54,7 +56,7 @@ public class BookChapterEntity implements Serializable {
@TableField(fill = FieldFill.INSERT_UPDATE)//更新注解
private Date updateTime;
/**
*
* 0免费1限制
*/
private Integer sort;
/**
@@ -63,4 +65,10 @@ public class BookChapterEntity implements Serializable {
@TableLogic
private Integer delFlag;
@TableField(exist = false)
private String picAndWord;
}