1、agv 信息获取新增swagger备注

2、新增盘点签收相关功能接口
This commit is contained in:
yang.lee
2023-11-22 10:59:31 +08:00
parent 1f781859e8
commit b770e0d83d
8 changed files with 250 additions and 9 deletions

View File

@@ -370,13 +370,13 @@ namespace Tnb.WarehouseMgr
/// 根据产线获取Agv列表
/// </summary>
/// <param name="lineId">产线Id默认空(潍柴的只有一条产线所以不用传)</param>
/// <returns>
/// <remarks>
/// returns:
/// <br/>{
/// <br/> name:设备名称
/// <br/> code:设备代码
/// <br/>}
/// </returns>
/// </remarks>
[HttpGet("lineId"), AllowAnonymous]
public async Task<dynamic> GetAgvListByLineId(string lineId = "")
{
@@ -394,7 +394,7 @@ namespace Tnb.WarehouseMgr
/// 获取Agv实时信息
/// </summary>
/// <param name="q">查询输入参数</param>
/// <returns>
///<remarks>
/// <br/>{
/// <br/> deviceCode:设备序号
/// <br/> devicePostionRec:设备所在二维码的x,y坐标前边的值是x后边的是y
@@ -403,7 +403,7 @@ namespace Tnb.WarehouseMgr
/// <br/> speed:速度
/// <br/> shelfNumber当前搬运的货架编号,对应载具编号
/// <br/>}
/// </returns>
///</remarks>
[HttpGet, AllowAnonymous]
public async Task<List<AgvRealInfoOutput>> GetAgvRealInfo([FromQuery] AgvRealInfoQuery q)
{