/***文档注释*********************************************** * 作者 : * 创建日期 :2020-11-07 * 描述 :系统效率分析表 * 注意事项 : * 遗留BUG : * 修改日期 : * 修改人员 : * 修改内容 : ***********************************************************/ using System; using System.Text; namespace Common { public class MeterMonitorSystemRate { /// /// 记录编号 /// //[AttributeID("rateNo")] public string rateNo { get; set; } /// /// 操作记录点 /// public string operationPointName { get; set; } /// /// 操作时间 /// public DateTime? operationTime { get; set; } /// /// 操作来源 /// public string operationSource { get; set; } /// /// 计量员编号 /// public string operationManNo { get; set; } /// /// 计量员姓名 /// public string operationManName { get; set; } } }