From 6614d9f16c1012b8a9f2ba94b8a15bd1356e8adb Mon Sep 17 00:00:00 2001 From: qwj <qwjzorro@163.com> Date: 星期四, 24 八月 2023 10:42:12 +0800 Subject: [PATCH] Merge branch 'master' of http://47.108.235.38:8080/r/DocumentService --- DocumentServiceAPI.Application/DocManage/Dtos/Document_Lock_Dto.cs | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 48 insertions(+), 0 deletions(-) diff --git a/DocumentServiceAPI.Application/DocManage/Dtos/Document_Lock_Dto.cs b/DocumentServiceAPI.Application/DocManage/Dtos/Document_Lock_Dto.cs new file mode 100644 index 0000000..ea141f5 --- /dev/null +++ b/DocumentServiceAPI.Application/DocManage/Dtos/Document_Lock_Dto.cs @@ -0,0 +1,48 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DocumentServiceAPI.Application.DocManage.Dtos +{ + public class Document_Lock_Dto + { + /// <summary> + /// 鏂囨。id + /// </summary> + public int doc_id { get; set; } + + public int lock_user_id { get; set; } + + public string lock_user { get; set; } + + public DateTime lock_time { get; set; } + + public DateTime? release_time { get; set; } + public int tenant_id { get; set; } + + public int status { get; set; } + } + + /// <summary> + /// 鎻愪氦淇℃伅 + /// </summary> + public class DocLock_Submit_Dto + { + public int id { get; set; } + + /// <summary> + /// 浜哄憳 + /// </summary> + public int userid { get; set; } + + /// <summary> + /// 浜哄憳 + /// </summary> + public string username { get; set; } + + public int tenant_id { get; set; } + + } +} -- Gitblit v1.9.1