You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.1 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WcfControlMonitorLib
{
public class InAffimBack
{
public string result { get; set; }
public string code { get; set; }
}
public class T_BASE_DEVICE
{
public int F_DEVICEINDEX { get; set; }
public int F_DEVICEKINDINDEX { get; set; }
public string F_DEVICENAME { get; set; }
public string F_ERRORCODE { get; set; }
public string F_ErrorStartTime { get; set; }
public string F_AlarmStartTime { get; set; }
}
public class T_BASE_DEVICE_STATE
{
public int F_ERRORINDEX { get; set; }
public int F_DEVICEKINDINDEX { get; set; }
public int F_DEVICEERRORINDEX { get; set; }
public string F_ERRORNAME { get; set; }
public string F_IfAlarm { get; set; }
public string F_ErrorKind { get; set; }
public string F_ErrorReasons { get; set; }
public string F_ErrorSolutions { get; set; }
public string F_ManageStatus { get; set; }
}
}