| | |
| | | /// <summary> |
| | | /// 温度 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "温度")] |
| | | public float? CurrentTemperature { get; set; } |
| | | [SugarColumn(IsNullable = true,Length =50, ColumnDescription = "温度")] |
| | | public string CurrentTemperature { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 湿度 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "湿度")] |
| | | public float Humidity { get; set; } |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "湿度")] |
| | | public string Humidity { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦æ¥è¦ 0æ æ¥è¦ 1æ¥è¦ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "æ¯å¦æ¥è¦ 0æ æ¥è¦ 1æ¥è¦")] |
| | | public int Alarm { get;set; } |
| | | public string Alarm { get;set; } |
| | | |
| | | /// <summary> |
| | | /// æ¥è¦ä¿¡æ¯ |