添加-获取仓库基础数据的方法

This commit is contained in:
tongfei
2024-03-18 11:52:15 +08:00
parent d35b7b116e
commit af52ea3d3f
5 changed files with 72 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.SingleData
{
public class CodeRequest : SingleDataRequest
{
public CodeRequest() { }
public CodeRequest(string code, int companyId)
{
this.Code = code;
this.CompanyId = companyId;
}
public string Code { get; set; }
}
}

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.SingleData
{
public class CodesRequest : SingleDataRequest
{
public CodesRequest() { }
public CodesRequest(List<string> codes, int companyId)
{
this.Codes = codes;
this.CompanyId = companyId;
}
public List<string> Codes { get; set; } = new List<string>();
}
}