调整出库单搜索接口

This commit is contained in:
18942506660
2024-01-24 10:02:59 +08:00
parent 92c999865a
commit fe2aeb23a5
6 changed files with 39 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.OutStockTask
{
/// <summary>
/// 模糊搜索出库任务单
/// </summary>
public class GetOutStockTaskNosByNoRequest : PaginationBaseRequestDto
{
/// <summary>
/// 单号
/// </summary>
public string BillNo { get; set; }
}
}