液晶标签协议对接 接口业务实现
This commit is contained in:
@ -12,7 +12,7 @@ namespace WCS.BLL.DbModels
|
||||
/// <summary>
|
||||
/// 当前正在进行中的任务
|
||||
/// </summary>
|
||||
[SugarTable("wcs_current_task")]
|
||||
[SugarTable("wcs_task_current")]
|
||||
public class CurrentTask
|
||||
{
|
||||
/// <summary>
|
||||
@ -22,6 +22,31 @@ namespace WCS.BLL.DbModels
|
||||
public int Id { get; set; }
|
||||
|
||||
#region 库位属性
|
||||
/// <summary>
|
||||
/// 货架Id
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "shelf_id", IsNullable = false, ColumnDescription = "货架Id")]
|
||||
public int ShelfId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 货架号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "shelf_code", Length = 50, IsNullable = false, ColumnDescription = "货架编码;货架一般按照报警灯来区分 一个报警灯指示的是一个货架")]
|
||||
public string ShelfCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 模组Id
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "module_id", IsNullable = false, ColumnDescription = "模组Id")]
|
||||
public int ModuleId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 模组编号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "module_code", Length = 50, IsNullable = false, ColumnDescription = "模组编码")]
|
||||
public string ModuleCode { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 入库的库位表ID
|
||||
/// </summary>
|
||||
|
Reference in New Issue
Block a user