文件同步状态记录
Some checks failed
Java CI with Maven / build (11) (push) Has been cancelled
Java CI with Maven / build (17) (push) Has been cancelled
Java CI with Maven / build (8) (push) Has been cancelled
yudao-ui-admin CI / build (14.x) (push) Has been cancelled
yudao-ui-admin CI / build (16.x) (push) Has been cancelled
Some checks failed
Java CI with Maven / build (11) (push) Has been cancelled
Java CI with Maven / build (17) (push) Has been cancelled
Java CI with Maven / build (8) (push) Has been cancelled
yudao-ui-admin CI / build (14.x) (push) Has been cancelled
yudao-ui-admin CI / build (16.x) (push) Has been cancelled
This commit is contained in:
parent
0fe1dba9fe
commit
dfa1f6b0b1
@ -22,6 +22,11 @@ public class KnowledgeRespVO {
|
|||||||
@ExcelProperty("类型id")
|
@ExcelProperty("类型id")
|
||||||
private Long typeId;
|
private Long typeId;
|
||||||
|
|
||||||
|
//文件同步状态
|
||||||
|
@Schema(description = "同步状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "11472")
|
||||||
|
@ExcelProperty("同步状态")
|
||||||
|
private String fileStatus;
|
||||||
|
|
||||||
@Schema(description = "类型名称", example = "环境")
|
@Schema(description = "类型名称", example = "环境")
|
||||||
@ExcelProperty("类型名称")
|
@ExcelProperty("类型名称")
|
||||||
private String typeName;
|
private String typeName;
|
||||||
|
@ -18,6 +18,10 @@ public class KnowledgeSaveReqVO {
|
|||||||
@NotNull(message = "类型id不能为空")
|
@NotNull(message = "类型id不能为空")
|
||||||
private Long typeId;
|
private Long typeId;
|
||||||
|
|
||||||
|
//文件同步状态
|
||||||
|
@Schema(description = "同步状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "100")
|
||||||
|
private Integer[] fileStatus ;
|
||||||
|
|
||||||
@Schema(description = "部门id", example = "26267")
|
@Schema(description = "部门id", example = "26267")
|
||||||
private Long deptId;
|
private Long deptId;
|
||||||
|
|
||||||
|
@ -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.sun.xml.bind.v2.TODO;
|
||||||
import lombok.*;
|
import lombok.*;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
@ -36,7 +37,10 @@ public class KnowledgeDO extends BaseDO {
|
|||||||
* 部门id
|
* 部门id
|
||||||
*/
|
*/
|
||||||
private Long deptId;
|
private Long deptId;
|
||||||
|
/**
|
||||||
|
* 文件同步状态
|
||||||
|
*/
|
||||||
|
private String fileStatus;
|
||||||
/**
|
/**
|
||||||
* 知识标题
|
* 知识标题
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user