去掉uuid字段改为使用文档创建时间字段

This commit is contained in:
XaoLi717 2024-11-12 19:44:58 +08:00
parent a81d88984e
commit 61a2c65721
3 changed files with 0 additions and 9 deletions

View File

@ -35,9 +35,6 @@ public class KnowledgeRespVO {
@ExcelProperty("部门id")
private Long deptId;
@Schema(description = "uuid", example = "26267")
@ExcelProperty("uuid")
private String uuid;
private Long creator;

View File

@ -25,8 +25,6 @@ public class KnowledgeSaveReqVO {
@Schema(description = "部门id", example = "26267")
private Long deptId;
@Schema(description = "uuid", example = "26267")
private String uuid;
@Schema(description = "知识标题", requiredMode = Schema.RequiredMode.REQUIRED)
@NotEmpty(message = "知识标题不能为空")

View File

@ -38,10 +38,6 @@ public class KnowledgeDO extends BaseDO {
* 部门id
*/
private Long deptId;
/**
* 部门id
*/
private String uuid;
/**
* 文件同步状态
*/