iotgateway/IoTGateway.Model/DeviceConfig.cs

24 lines
707 B
C#
Raw Normal View History

2021-12-12 14:55:48 +08:00
using System;
using System.ComponentModel.DataAnnotations;
using WalkingTec.Mvvm.Core;
namespace IoTGateway.Model
{
public class DeviceConfig : BasePoco
{
[Display(Name = "名称")]
public string DeviceConfigName { get; set; }
2022-03-24 21:38:11 +08:00
[Display(Name = "属性侧")]
public DataSide DataSide { get; set; }
2021-12-12 14:55:48 +08:00
[Display(Name = "描述")]
public string Description { get; set; }
[Display(Name = "值")]
public string Value { get; set; }
[Display(Name = "备注")]
public string EnumInfo { get; set; }
public Device Device { get; set; }
[Display(Name = "设备")]
public Guid? DeviceId { get; set; }
}
}