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

@@ -204,5 +204,9 @@ public class ModuleConsts
/// 模块标识-盘点签收配置
/// </summary>
public const string MODULE_WMSCHECKSIGNCONFIG_ID = "30059737083669";
/// <summary>
/// 模块标识-PDA盘点签收
/// </summary>
public const string MODLUE_WMSTASKSTOCK_ID = "27690726707477";
}

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
/// <summary>
/// Pda盘点签收输入参数
/// </summary>
public class TakeStockSignInput
{
public List<WmsCheckstockCode> details{ get; set; }
}
}

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Queries
{
/// <summary>
/// 根据条码编号、载具Id获取条码信息输入参数
/// </summary>
public class CarryCodeInfoQuery
{
/// <summary>
/// 条码编号
/// </summary>
public string barcode { get; set; }
/// <summary>
/// 载具Id
/// </summary>
public string carryId { get; set; }
}
}

View File

@@ -43,5 +43,10 @@ public partial class WmsCarryCode
/// </summary>
[SugarColumn(IsIgnore = true)]
public decimal pr_qty { get; set; }
/// <summary>
/// 载具编码
/// </summary>
[SugarColumn(IsIgnore = true)]
public string carry_code { get; set; }
}

View File

@@ -12,5 +12,10 @@ public partial class WmsCheckstockD
/// </summary>
[SugarColumn(IsIgnore = true)]
public decimal codeqty { get; set; }
/// <summary>
/// 待盘点数量
/// </summary>
[SugarColumn(IsIgnore = true)]
public decimal? delayeqty { get; set; }
}