namespace DocumentServiceAPI.Application.DocManage.Dtos { /// /// 业绩资料提交 /// public class Achievement_Submit_Dto { public int id { get; set; } /// /// 分类id /// public int class_id { get; set; } public string name { get; set; } public int tenant_id { get; set; } /// /// 项目名称 /// public int project_id { get; set; } public string zbtzs { get; set; } public string ht { get; set; } public string ysbg { get; set; } public string fkpz { get; set; } public string yhpj { get; set; } public string hjzs { get; set; } } public class Achievement_List_Dto { /// /// 添加/更新时间 /// public DateTime add_time { get; set; } /// /// 状态 /// public int status { get; set; } public int id { get; set; } /// /// 归属分类(子类型) /// public int? class_id { get; set; } public string class_name { get; set; } /// /// 名称 /// public string doc_name { get; set; } /// /// 项目id /// public int? project_id { get; set; } public string project_name { get; set; } public string zbtzs { get; set; } public string ht { get; set; } public string ysbg { get; set; } public string fkpz { get; set; } public string yhpj { get; set; } public string hjzs { get; set; } } }