非采购接口优化

This commit is contained in:
tongfei
2023-11-09 18:06:43 +08:00
parent 71efc00756
commit 6d0024fd49
8 changed files with 94 additions and 23 deletions

View File

@@ -4,10 +4,19 @@ using System.Text;
namespace WMS.Web.Core.Dto.InStockTask
{
/// <summary>
/// 模糊查询来源单据-请求对象
/// </summary>
public class InStockTaskBillNoQueryRequest
{
/// <summary>
/// 来源单据编号
/// </summary>
public string SourceBillNo { get; set; }
public int? Type { get; set; }
/// <summary>
/// 来源单据类型
/// </summary>
public int? InstockType { get; set; }
}
}