入库任务

This commit is contained in:
tongfei
2023-10-27 10:56:04 +08:00
parent ba067eb76a
commit fad33c0d31
8 changed files with 546 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto
{
/// <summary>
/// 入库任务-查询请求对象
/// </summary>
public class InStockTaskQueryRequest : PaginationBaseRequestDto
{
/// <summary>
/// 来源单号
/// </summary>
public string SourceBillNo { get; set; }
}
}