/***文档注释*********************************************** * 作者 : * 创建日期 :2020-11-07 * 描述 :校秤时间关联表 * 注意事项 : * 遗留BUG : * 修改日期 : * 修改人员 : * 修改内容 : ***********************************************************/ using System; using System.Text; namespace Common { public class MeterBaseCalibraRelation { /// /// 关联编号 /// //[AttributeID("relationNo")] public string relationNo { get; set; } /// /// 计量点编号 /// public string baseSpotNo { get; set; } /// /// 计量点名称 /// public string baseSpotName { get; set; } /// /// 校秤时间单位 /// public string calibrationTimeUnit { get; set; } /// /// 开始时间 /// public DateTime? startTime { get; set; } /// /// 结束时间 /// public DateTime? endTime { get; set; } /// /// 天数 /// public long? dayNum { get; set; } /// /// 校秤类型编号 /// public string calibrationTypeNo { get; set; } /// /// 校秤类型名称 /// public string calibrationTypeName { get; set; } /// /// 创建人编号 /// public string createManNo { get; set; } /// /// 创建人姓名 /// public string createManName { get; set; } /// /// 创建时间 /// public DateTime? createTime { get; set; } } }