22 lines
602 B
C#
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; }
|
|
}
|
|
}
|