Files
lserp_cs_6.0/其他程序/LadfDataApp/LadfDataApp/Model/DeviceParamModel.cs
T
2026-07-02 10:11:39 +00:00

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; }
}
}