采购上架-getTaskByBox接口优化

This commit is contained in:
tongfei
2023-12-04 16:52:04 +08:00
parent 36f38480dd
commit faadd8aabf
8 changed files with 69 additions and 21 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.InStock
{
/// <summary>
/// 箱号-获取来源单信息-请求对象
/// </summary>
public class BoxInStockTaskRequest
{
/// <summary>
/// 箱号
/// </summary>
public string BoxBillNo { get; set; }
/// <summary>
/// 仓库编码
/// </summary>
public string StockCode { get; set; }
}
}