42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace solarApp.Model
|
|
{
|
|
public class errMain_model
|
|
{
|
|
public int id { get; set; }
|
|
public string site_id { get; set; }
|
|
public Int64 timestamp { get; set; }
|
|
public string datestamp { get; set; }
|
|
public int uuidHash { get; set; }
|
|
public Byte[] uuid { get; set; }
|
|
public string isOpen {get; set;}
|
|
public string sourceState { get; set; }
|
|
public string ackState { get; set; }
|
|
public Int16 ackRequired { get; set; }
|
|
public int alarmClass { get; set; }
|
|
public int priority { get; set; }
|
|
public Int64 normalTime { get; set; }
|
|
public Int64 ackTime { get; set; }
|
|
public string userAccount { get; set; }
|
|
public int alarmTransition { get; set; }
|
|
public Int64 lastUpdate { get; set; }
|
|
public string errDevice { get; set; }
|
|
public string err_valuekind { get; set; }
|
|
public string errValue { get; set; }
|
|
public string errMsg { get; set; }
|
|
public string errCode { get; set; }
|
|
public string errDeviceBrand { get; set; }
|
|
public string errDeviceModel { get; set; }
|
|
}
|
|
|
|
public class max_id
|
|
{
|
|
public int new_id { get; set; }
|
|
public int old_id { get; set; }
|
|
}
|
|
|
|
}
|