去掉uuid字段改为使用文档创建时间字段
This commit is contained in:
parent
a81d88984e
commit
61a2c65721
@ -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;
|
||||
|
||||
|
@ -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 = "知识标题不能为空")
|
||||
|
@ -38,10 +38,6 @@ public class KnowledgeDO extends BaseDO {
|
||||
* 部门id
|
||||
*/
|
||||
private Long deptId;
|
||||
/**
|
||||
* 部门id
|
||||
*/
|
||||
private String uuid;
|
||||
/**
|
||||
* 文件同步状态
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user