39 lines
1.1 KiB
39 lines
1.1 KiB
4 months ago
|
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; }
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|