添加变量名称导入
This commit is contained in:
@ -47,5 +47,15 @@ namespace HT.Cloud.Domain.DevicesManage
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="IsConsecutive", ColumnDescription = "",ColumnDataType = "bit(1)")]
|
||||
public bool IsConsecutive { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "GroupDescription", ColumnDescription = "", ColumnDataType = "nvarchar(128)", IsNullable = true)]
|
||||
public string GroupDescription { get; set; }
|
||||
/// <summary>
|
||||
/// Group类型
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "GroupType", ColumnDescription = "", ColumnDataType = "int(10)", IsNullable = true)]
|
||||
public int? GroupType { get; set; }
|
||||
}
|
||||
}
|
||||
|
@ -92,5 +92,20 @@ namespace HT.Cloud.Domain.DevicesManage
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="WriteAddress", ColumnDescription = "",ColumnDataType = "varchar(64)", IsNullable = true)]
|
||||
public string WriteAddress { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "SysType", ColumnDescription = "", ColumnDataType = "varchar(32)", IsNullable = true)]
|
||||
public string SysType { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "SysAddress", ColumnDescription = "", ColumnDataType = "varchar(64)", IsNullable = true)]
|
||||
public string SysAddress { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "IFloatPlaces", ColumnDescription = "", ColumnDataType = "tinyint(3)", IsNullable = true)]
|
||||
public short IFloatPlaces { get; set; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user