using System; using System.Collections.Generic; using System.Text; namespace DTO { public class LiaotianDTO { public string Id { get; set; } public string Question { get; set; } public string Anwser { get; set; } public string RecStatus { get; set; } public string Creater { get; set; } public DateTime Createtime { get; set; } public string Modifier { get; set; } public DateTime Modifytime { get; set; } public string Clientid { get; set; } public string Shiyongfatiao { get; set; } public string Questiontype { get; set; } public string Problemtype { get; set; } public string ChushuStatus { get; set; } public string _Modifytimetxt; public string Modifytimetxt { get { return Modifytime.ToString("yyyy-MM-dd"); } set { _Modifytimetxt = value; } } public string _Createtimetxt { get; set; } public string Createtimetxt { get { return Createtime.ToString("yyyy-MM-dd"); } set { _Createtimetxt = value; } } public string ShouCangStatus { get; set; } } public class LiaotianDTOSearch : SearchEntity { public string Question { get; set; } public string Problemtype { get; set; } public string Questiontype { get; set; } public string Info { get; set; } public string Createtime { get; set; } public string Creater { get; set; } public string Shifoushenhe { get; set; } public string ChushuStatus { get; set; } public string ShouCangStatus { get; set; } public string ShouCangCreater { get; set; } } }