Translate IoTGateway

This commit is contained in:
UserX 2023-12-23 13:23:22 +02:00
parent c09dc77fdd
commit 2109fd644a
5 changed files with 21 additions and 21 deletions

View File

@ -7,20 +7,20 @@ namespace IoTGateway.Model
{
public class Device : TreePoco<Device>, IBasePoco
{
[Display(Name = "Name")]
[Display(Name = "Device Name")]
public string DeviceName { get; set; }
[Display(Name = "sort")]
[Display(Name = "Sort")]
public uint Index { get; set; }
[Display(Name = "describe")]
[Display(Name = "Description")]
public string Description { get; set; }
public Driver Driver { get; set; }
[Display(Name = "drive")]
[Display(Name = "Device PLC")]
public Guid? DriverId { get; set; }
[Display(Name = "start up")]
[Display(Name = "Start up")]
public bool AutoStart { get; set; }
[Display(Name = "Change upload")]
@ -32,7 +32,7 @@ namespace IoTGateway.Model
[Display(Name = "Command interval ms")]
public uint CmdPeriod { get; set; }
[Display(Name = "Type")]
[Display(Name = "Device Type")]
public DeviceTypeEnum DeviceTypeEnum { get; set; }
[Display(Name = "Creation time")]

View File

@ -42,7 +42,7 @@ namespace IoTGateway.Model
[Newtonsoft.Json.JsonIgnore]
public Device Device { get; set; }
[Display(Name = "ID")]
[Display(Name = "Device Name")]
public Guid? DeviceId { get; set; }
[Display(Name = "Alias")]

View File

@ -47,17 +47,17 @@ namespace PluginInterface
TimeStampMs,
[Display(Name = "timestamp(s)")]
TimeStampS,
[Display(Name = "任意类型")]
[Display(Name = "Any")]
Any,
[Display(Name = "自定义1")]
[Display(Name = "Custom 1")]
Custome1,
[Display(Name = "自定义2")]
[Display(Name = "Custom 2")]
Custome2,
[Display(Name = "自定义3")]
[Display(Name = "Custom 3")]
Custome3,
[Display(Name = "自定义4")]
[Display(Name = "Custom4")]
Custome4,
[Display(Name = "自定义5")]
[Display(Name = "Custom 5")]
Custome5,
[Display(Name = "Gb2312")]
Gb2312String,

View File

@ -10,10 +10,10 @@ namespace PluginInterface
{
public enum EndianEnum
{
[Display(Name = "")] None = 0,
[Display(Name = "大端")] BigEndian,
[Display(Name = "小端")] LittleEndian,
[Display(Name = "大端交换")] BigEndianSwap,
[Display(Name = "小端交换")] LittleEndianSwap
[Display(Name = "None")] None = 0,
[Display(Name = "BigEndian")] BigEndian,
[Display(Name = "LittleEndian")] LittleEndian,
[Display(Name = "BigEndianSwap")] BigEndianSwap,
[Display(Name = "LittleEndianSwap")] LittleEndianSwap
}
}

View File

@ -9,11 +9,11 @@ namespace PluginInterface
{
public enum ProtectTypeEnum
{
[Display(Name = "只读")]
[Display(Name = "ReadOnly")]
ReadOnly,
[Display(Name = "读写")]
[Display(Name = "ReadWrite")]
ReadWrite,
[Display(Name = "只写")]
[Display(Name = "WriteOnly")]
WriteOnly,
}
}