1、文档、工具独立调整

This commit is contained in:
pan
2024-09-05 21:26:23 +08:00
parent 6f70344177
commit 3d679da3c3
16 changed files with 230 additions and 42 deletions

View File

@@ -37,9 +37,11 @@ public class Document extends BaseEntity {
private String docType;
/** 文档负责人 */
@Excel(name = "负责人")
private String docPrincipals;
/** 文档负责人名称 */
private String docPrincipalsName;
/** 归属单位 **/
@Excel(name = "归属单位")
private String docRespDeptName;
@@ -109,4 +111,8 @@ public class Document extends BaseEntity {
private String docSourceName;
private String statusName;
private String createNowTime;
private List<Attachment> attachmentList;
/** 主键 **/
private List<String> docIdList;
}