From 90858c80d9921b555119f41060c1f883f6e6ffc5 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期四, 26 十二月 2024 12:49:35 +0800 Subject: [PATCH] 提交 --- DocumentServiceAPI.Application/DocManage/Dtos/Document_List_Dto.cs | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 52 insertions(+), 0 deletions(-) diff --git a/DocumentServiceAPI.Application/DocManage/Dtos/Document_List_Dto.cs b/DocumentServiceAPI.Application/DocManage/Dtos/Document_List_Dto.cs index 9138c57..3665839 100644 --- a/DocumentServiceAPI.Application/DocManage/Dtos/Document_List_Dto.cs +++ b/DocumentServiceAPI.Application/DocManage/Dtos/Document_List_Dto.cs @@ -49,6 +49,22 @@ public int? project_id { get; set; } public string project_name { get; set; } + /// <summary> + /// 鎺掑簭 + /// </summary> + public int? sort { get; set; } + + /// <summary> + /// 璧勬牸鏂囦欢绫诲瀷 + /// </summary> + public int? zige_code { get; set; } + + public string zige_code_name { get; set; } + + /// <summary> + /// 鑾峰鏃堕棿 + /// </summary> + public string zb_time { get; set; } } /// <summary> @@ -76,7 +92,27 @@ /// </summary> public int? org_id { get; set; } + /// <summary> + /// 椤圭洰鍚嶇О + /// </summary> + public int? project_id { get; set; } + public int status { get; set; } + + /// <summary> + /// 鎺掑簭 + /// </summary> + public int? sort { get; set; } + + /// <summary> + /// 璧勬牸鏂囦欢绫诲瀷 + /// </summary> + public int? zige_code { get; set; } + + /// <summary> + /// 鑾峰鏃堕棿 + /// </summary> + public DateTime? zb_time { get; set; } public List<DocumentFile_Submit_Dto> newfiles { get; set; } @@ -106,6 +142,10 @@ } this.status = doc.status; this.files = filelist; + this.sort = doc.sort; + this.zb_time = doc.zb_time; + this.zige_code = doc.zige_code; + } public int id { get; set; } @@ -123,6 +163,18 @@ public int status { get; set; } + public int? sort { get; set; } + + /// <summary> + /// 璧勬牸鏂囦欢绫诲瀷 + /// </summary> + public int? zige_code { get; set; } + + /// <summary> + /// 鑾峰鏃堕棿 + /// </summary> + public DateTime? zb_time { get; set; } + public List<FileInfo_List_Dto> files { get; set; } } -- Gitblit v1.9.1