using System; using System.Collections.Generic; using System.Text; namespace Sugar.Enties { public class RepairApplyDTO { /// /// 维修单号 /// public string vbillno { get; set; } /// /// 单据类型 /// public string vtypename { get; set; } /// /// 维修地址 /// public string hname { get; set; } /// /// 报事地址 /// public string vplace { get; set; } /// /// 接报日期 /// public string dbilldate { get; set; } /// /// 完成日期 /// public string drequiredate { get; set; } /// /// 维修人员 /// public string voperatorname { get; set; } /// /// 问题描述 /// public string vcontent { get; set; } /// /// 报事照片 /// public List fileimgList { get; set; } } public class RepairApply { /// /// 维修单号 /// public string vbillno { get; set; } /// /// 单据类型 /// public string vtypename { get; set; } /// /// 维修地址 /// public string hname { get; set; } /// /// 报事地址 /// public string vplace { get; set; } /// /// 接报日期 /// public string dbilldate { get; set; } /// /// 完成日期 /// public string drequiredate { get; set; } /// /// 维修人员 /// public string voperatorname { get; set; } /// /// 问题描述 /// public string vcontent { get; set; } } public class FileImg { public string fileurl { get; set; } } }