27 lines
869 B
C#
27 lines
869 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace LadfDataApp
|
|
{
|
|
public class DeviceParamModel
|
|
{
|
|
public string deviceTypeId { get; set; }
|
|
public string deviceTypeName { get; set; }
|
|
public string deviceId { get; set; }
|
|
public string deviceName { get; set; }
|
|
public string workload { get; set; }
|
|
public string elec { get; set; }
|
|
public string errorParamNum { get; set; }
|
|
public string warnParamNum { get; set; }
|
|
public string errorTimeSum { get; set; }
|
|
public string runTimeSum { get; set; }
|
|
public string warnEventSum { get; set; }
|
|
public string errorEventSum { get; set; }
|
|
public string projectId { get; set; }
|
|
public string status { get; set; }
|
|
public string timestamp { get; set; }
|
|
}
|
|
}
|