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

23 lines
651 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LadfDataApp
{
public class DeviceModel
{
public string deviceId { get; set; }
public string brand { get; set; }
public string model { get; set; }
public string typeId { get; set; }
public string projectId { get; set; }
public string power { get; set; }
public string regionId { get; set; }
public string produceTime { get; set; }
public string deviceTypeId { get; set; }
public string deviceTypeName { get; set; }
public string name { get; set; }
}
}