using System; using System.Collections.Generic; using System.Text; namespace MadRunFabric.Common { /// /// 自定义字段实体 /// public class ExtensionModel { /// /// 字段名 /// public string name { get; set; } /// /// 字段值 /// public string value { get; set; } } /// /// 自定义字段实体 /// 用于巡检保养 /// public class ExtensionFileModel { /// /// 字段名 /// public string name { get; set; } /// /// 字段值 /// public string value { get; set; } /// /// 图片上传 /// public List picfiles { get; set; } } /// /// 自定义时间字段实体 /// 做计划时使用 /// public class ExtensionTimeModel { /// /// 开始日/月 /// 日 AddDays /// 月 AddMonths /// public int startdate { get; set; } /// /// 开始时间 /// public DateTime starttime { get; set; } /// /// 结束日/月 /// 日 AddDays /// 月 AddMonths /// public int enddate { get; set; } /// /// 结束时间 /// public DateTime endtime { get; set; } } }