/***文档注释*********************************************** * 作者 : * 创建日期 :2020-11-07 * 描述 :校秤记录数据次表 * 注意事项 : * 遗留BUG : * 修改日期 : * 修改人员 : * 修改内容 : ***********************************************************/ using System; using System.Text; namespace Common { public class MeterWorkCalibrationBranch { /// /// 校秤计量编号 /// //[AttributeID("calibrationBranchNo")] public string calibrationBranchNo { get; set; } /// /// 校秤编号 /// public string calibrationMainNo { get; set; } /// /// 计量点编号 /// public string baseSpotNo { get; set; } /// /// 计量点名称 /// public string baseSpotName { get; set; } /// /// 计量点类型编号 /// public string spotTypeNo { get; set; } /// /// 计量点类型名称 /// public string spotTypeName { get; set; } /// /// 校秤类型编号 /// public string calibrationTypeNo { get; set; } /// /// 校秤类型名称 /// public string calibrationTypeName { get; set; } /// /// 校秤重量 /// public string calibrationWeight { get; set; } /// /// 状态 /// public string valueFlag { get; set; } /// /// 比对校秤计量编号 /// public string calibrContrastBranchNo { get; set; } /// /// 计量员编号 /// public string createManNo { get; set; } /// /// 计量员姓名 /// public string createManName { get; set; } /// /// 计量时间 /// public DateTime? createTime { get; set; } /// /// 车号 /// public string carNo { get; set; } } }