using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DocumentServiceAPI.Application.ProjectInfo.ViewMode { public class DocClassificationDTO { public DocClassificationDTO() { } /// /// id /// public int id { get; set; } /// /// 编码 /// public string doc_classification_code { get; set; } /// /// 名称 /// public string doc_classification { get; set; } /// /// 父级编码 /// public string parent_code { get; set; } /// /// 系统标识 /// public bool is_system { get; set; } /// /// 排序 /// public int sort_id { get; set; } /// /// 租户标识 /// public int tenant_code { get; set; } /// /// 添加/更新时间 /// public DateTime add_time { get; set; } /// /// 状态 /// public int status { get; set; } /// /// 状态 /// public string statusName { get; set; } } }