单灯区域增加看板接口

This commit is contained in:
hehaibing-1996
2025-03-28 09:02:10 +08:00
parent 0be9c59a1f
commit e0fd67c866
3 changed files with 82 additions and 4 deletions

View File

@ -131,6 +131,19 @@ namespace WCS.DAL.DbModels
[SugarColumn(ColumnName = "single_light_number", IsNullable = false, DefaultValue = "1", ColumnDescription = "单灯货架灯的个数,用于煤科院大库位灯")]
public int SingleLightNumber { get; set; }
/// <summary>
/// 灯当前模式
/// </summary>
[SugarColumn(ColumnName = "light_mode", IsNullable = true, ColumnDescription = "亮灯模式")]
public int LightMode { get; set; } = 0;
/// <summary>
/// 灯当前颜色
/// </summary>
[SugarColumn(ColumnName = "color_mode", IsNullable = true, ColumnDescription = "灯当前颜色")]
public int ColorMode { get; set; }= 0;
/// <summary>
/// 序号
/// </summary>