知识添加uuid
This commit is contained in:
parent
070ecdb6c0
commit
b6a15cbc56
@ -34,6 +34,11 @@ public class KnowledgeRespVO {
|
|||||||
@Schema(description = "部门id", example = "26267")
|
@Schema(description = "部门id", example = "26267")
|
||||||
@ExcelProperty("部门id")
|
@ExcelProperty("部门id")
|
||||||
private Long deptId;
|
private Long deptId;
|
||||||
|
|
||||||
|
@Schema(description = "uuid", example = "26267")
|
||||||
|
@ExcelProperty("uuid")
|
||||||
|
private String uuid;
|
||||||
|
|
||||||
private Long creator;
|
private Long creator;
|
||||||
|
|
||||||
@Schema(description = "部门名称", example = "IT 部")
|
@Schema(description = "部门名称", example = "IT 部")
|
||||||
|
@ -25,6 +25,9 @@ public class KnowledgeSaveReqVO {
|
|||||||
@Schema(description = "部门id", example = "26267")
|
@Schema(description = "部门id", example = "26267")
|
||||||
private Long deptId;
|
private Long deptId;
|
||||||
|
|
||||||
|
@Schema(description = "uuid", example = "26267")
|
||||||
|
private String uuid;
|
||||||
|
|
||||||
@Schema(description = "知识标题", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "知识标题", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
@NotEmpty(message = "知识标题不能为空")
|
@NotEmpty(message = "知识标题不能为空")
|
||||||
private String knowTitle;
|
private String knowTitle;
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package cn.iocoder.yudao.module.bpm.dal.dataobject.knows;
|
package cn.iocoder.yudao.module.bpm.dal.dataobject.knows;
|
||||||
|
|
||||||
import cn.iocoder.yudao.module.bpm.enums.task.BpmTaskStatusEnum;
|
import cn.iocoder.yudao.module.bpm.enums.task.BpmTaskStatusEnum;
|
||||||
|
import com.alibaba.druid.sql.visitor.functions.Char;
|
||||||
import com.sun.xml.bind.v2.TODO;
|
import com.sun.xml.bind.v2.TODO;
|
||||||
import lombok.*;
|
import lombok.*;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
@ -37,6 +38,10 @@ public class KnowledgeDO extends BaseDO {
|
|||||||
* 部门id
|
* 部门id
|
||||||
*/
|
*/
|
||||||
private Long deptId;
|
private Long deptId;
|
||||||
|
/**
|
||||||
|
* 部门id
|
||||||
|
*/
|
||||||
|
private String uuid;
|
||||||
/**
|
/**
|
||||||
* 文件同步状态
|
* 文件同步状态
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user