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

22 lines
602 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LadfDataApp
{
public class DeviceParamStatusModel
{
public string projectId { get; set; }
public string deviceId { get; set; }
public string qs { get; set; }
public string realValue { get; set; }
public string flag { get; set; }
public string id { get; set; }
public string paramName { get; set; }
public string value { get; set; }
public string unitName { get; set; }
public string dataType { get; set; }
}
}