1、任务执行新增,更具目标库位判断是否为电梯库位进行呼梯操作
2、放货确认接口新增代码逻辑
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities.Enums
|
||||
{
|
||||
public enum EnumAgvControl
|
||||
{
|
||||
前门开门 = 3,
|
||||
前门关门 = 4,
|
||||
后门开门 = 5,
|
||||
后门关门 = 6,
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities.Enums
|
||||
{
|
||||
public enum EnumAgvStatus
|
||||
{
|
||||
正常状态 = 0,
|
||||
等待进入AGV状态 = 1,
|
||||
AGV运行状态 = 2,
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities.Enums
|
||||
{
|
||||
public enum EnumDoorStatus
|
||||
{
|
||||
未知状态 = 0,
|
||||
开门过程 = 1,
|
||||
开门到位保持 = 2,
|
||||
关门过程 = 3,
|
||||
关门到位保持 = 4,
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities.Enums
|
||||
{
|
||||
/// <summary>
|
||||
/// 电梯运行状态
|
||||
/// </summary>
|
||||
public enum EnumRunStatus
|
||||
{
|
||||
停梯 = 0,
|
||||
上运行 = 2,
|
||||
下运行 = 2,
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities.Enums
|
||||
{
|
||||
/// <summary>
|
||||
/// 电梯系统状态枚举
|
||||
/// </summary>
|
||||
public enum EnumSysStatus
|
||||
{
|
||||
故障状态 = 0,
|
||||
消防状态 = 1,
|
||||
其他非服务状态 = 2,
|
||||
正常状态 = 3,
|
||||
地震状态 = 4
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user