| | |
| | | /// </summary> |
| | | [ImporterHeader(IsIgnore = true)] |
| | | [ExporterHeader(IsIgnore = true)] |
| | | [SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "主键")] |
| | | [SugarColumn(IsIdentity = true, IsNullable = true, IsPrimaryKey = true, ColumnDescription = "主键")] |
| | | public int Id { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// </summary> |
| | | [ImporterHeader(Name = "设备子编号")] |
| | | [ExporterHeader(DisplayName = "设备子编号")] |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "设备子编号")] |
| | | [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "设备子编号")] |
| | | public string DeviceChildCode { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// </summary> |
| | | [ImporterHeader(Name = "协议数据块")] |
| | | [ExporterHeader(DisplayName = "协议数据块")] |
| | | [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "协议数据块")] |
| | | [SugarColumn(IsNullable = true, Length = 10, ColumnDescription = "协议数据块")] |
| | | public string DeviceProDataBlock { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// </summary> |
| | | [ImporterHeader(Name = "偏移量")] |
| | | [ExporterHeader(DisplayName = "偏移量")] |
| | | [SugarColumn(IsNullable = false, DecimalDigits = 1, ColumnDescription = "偏移量")] |
| | | [SugarColumn(IsNullable = true, DecimalDigits = 1, ColumnDescription = "偏移量")] |
| | | public decimal DeviceProOffset { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// </summary> |
| | | [ImporterHeader(Name = "数据类型")] |
| | | [ExporterHeader(DisplayName = "数据类型")] |
| | | [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "数据类型")] |
| | | [SugarColumn(IsNullable = true, Length = 10, ColumnDescription = "数据类型")] |
| | | public string DeviceProDataType { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// </summary> |
| | | [ImporterHeader(Name = "参数名称")] |
| | | [ExporterHeader(DisplayName = "参数名称")] |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "参数名称")] |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "参数名称")] |
| | | public string DeviceProParamName { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// </summary> |
| | | [ImporterHeader(Name = "参数类型")] |
| | | [ExporterHeader(DisplayName = "参数类型")] |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "参数类型")] |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "参数类型")] |
| | | public string DeviceProParamType { get; set; } |
| | | |
| | | /// <summary> |