mirror of
https://gitee.com/iioter/iotgateway.git
synced 2024-12-02 03:38:01 +08:00
20 lines
393 B
C#
20 lines
393 B
C#
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace IoTGateway.Model
|
|||
|
{
|
|||
|
public enum DeviceTypeEnum
|
|||
|
{
|
|||
|
[Display(Name = "采集组")]
|
|||
|
Group = 0,
|
|||
|
|
|||
|
[Display(Name = "采集点")]
|
|||
|
Device = 1
|
|||
|
}
|
|||
|
public enum AccessEnum
|
|||
|
{
|
|||
|
[Display(Name = "只读")]
|
|||
|
ReadOnly = 0,
|
|||
|
[Display(Name = "读写")]
|
|||
|
ReadAndWrite = 1
|
|||
|
}
|
|||
|
}
|