2021-12-12 14:55:48 +08:00
|
|
|
|
using PluginInterface;
|
|
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using WalkingTec.Mvvm.Core;
|
|
|
|
|
|
|
|
|
|
namespace IoTGateway.Model
|
|
|
|
|
{
|
|
|
|
|
public class DeviceVariable : TopBasePoco, IVariable
|
|
|
|
|
{
|
|
|
|
|
[Display(Name = "变量名")]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
[Display(Name = "描述")]
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
|
|
|
|
[Display(Name = "方法")]
|
|
|
|
|
public string Method { get; set; }
|
|
|
|
|
|
|
|
|
|
[Display(Name = "地址")]
|
|
|
|
|
public string DeviceAddress { get; set; }
|
|
|
|
|
|
2021-12-17 15:51:25 +08:00
|
|
|
|
[Display(Name = "类型")]
|
2021-12-12 14:55:48 +08:00
|
|
|
|
public PluginInterface.DataTypeEnum DataType { get; set; }
|
|
|
|
|
|
2021-12-17 15:51:25 +08:00
|
|
|
|
[Display(Name = "表达式")]
|
|
|
|
|
public string Expressions { get; set; }
|
2021-12-12 14:55:48 +08:00
|
|
|
|
|
|
|
|
|
[Display(Name = "权限")]
|
|
|
|
|
public ProtectTypeEnum ProtectType { get; set; }
|
|
|
|
|
|
2022-08-21 22:01:32 +08:00
|
|
|
|
[Newtonsoft.Json.JsonIgnore]
|
2021-12-12 14:55:48 +08:00
|
|
|
|
public Device Device { get; set; }
|
2022-03-22 22:35:33 +08:00
|
|
|
|
[Display(Name = "设备")]
|
2021-12-12 14:55:48 +08:00
|
|
|
|
public Guid? DeviceId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|