using 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 { /// /// 文档id /// 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; } } /// /// 提交信息 /// public class DocLock_Submit_Dto { public int id { get; set; } /// /// 人员 /// public int userid { get; set; } /// /// 人员 /// public string username { get; set; } public int tenant_id { get; set; } } }