仓位接口-支持多个仓位ID

This commit is contained in:
tongfei
2023-11-27 12:05:13 +08:00
parent f2e4d125ce
commit 8155d3e7e5
7 changed files with 79 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.SingleData
{
public class IdsRequest : SingleDataRequest
{
public IdsRequest() { }
public IdsRequest(List<int> ids,int companyId)
{
this.Ids = ids;
this.CompanyId = companyId;
}
/// <summary>
/// Id集合
/// </summary>
public List<int> Ids { get; set; } = new List<int>();
}
}