using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common { public class MeterWorkScheduledHelp { /// /// 主键 /// //[AttributeID("pointNo")] public string helpId { get; set; } /// /// 车号 /// //[AttributeID("pointNo")] public string carNo { get; set; } /// /// 报警内容 /// //[AttributeID("pointNo")] public string helpContent { get; set; } /// /// 报警时间 /// //[AttributeID("pointNo")] public string createTime { get; set; } /// /// 结束时间 /// //[AttributeID("pointNo")] public string endTime { get; set; } /// /// 处理人编号 /// //[AttributeID("pointNo")] public string createNo { get; set; } /// /// 处理人 /// //[AttributeID("pointNo")] public string createName { get; set; } /// /// 处理结果 /// //[AttributeID("pointNo")] public string result { get; set; } /// /// 是否处理(0:未处理,1:已处理) /// //[AttributeID("pointNo")] public string valueFlag { get; set; } /// /// 计量站点编号 /// //[AttributeID("pointNo")] public string baseSpotNo { get; set; } /// /// 计量站点名称 /// //[AttributeID("pointNo")] public string baseSpotName { get; set; } /// /// 是否上传智能料场 /// //[AttributeID("pointNo")] public string measureTaskNum { get; set; } /// /// 报警类型 /// //[AttributeID("pointNo")] public string warnType { get; set; } /// /// 报警类型名称 /// //[AttributeID("pointNo")] public string warnTypeName { get; set; } } }