using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JY.MES.Entity { /// /// 报警数据上传接口参数类 /// public class AlarmMesData { /// /// /// public string deviceNo { get; set; } /// /// /// public string alarmCode { get; set; } /// /// /// public string alarmType { get; set; } /// /// /// public string alarmName { get; set; } /// /// /// public string createTime { get; set; } } public class UploadAlarmParam { /// /// /// public AlarmMesData alarmMesData { get; set; } /// /// /// public string resourceNo { get; set; } } }