出库任务合并和作废

This commit is contained in:
18942506660
2023-10-28 14:53:00 +08:00
parent 914654f749
commit 8abdbd9746
11 changed files with 312 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto
{
/// <summary>
/// 操作 Id集合
/// </summary>
public class OperateRequest
{
public List<int> Ids { get; set; } = new List<int>();
}
/// <summary>
/// 操作 Id集合
/// </summary>
public class OperatePagedRequest : PaginationBaseRequestDto
{
public List<int> Ids { get; set; } = new List<int>();
}
}