仓位详情方法

This commit is contained in:
tongfei
2023-11-22 15:08:42 +08:00
parent 0b7d755a7b
commit b9fb9219e9
7 changed files with 79 additions and 24 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.SingleData
{
/// <summary>
/// ID请求对象
/// </summary>
public class IdRequest:SingleDataRequest
{
public IdRequest() { }
public IdRequest(int id, int companyId)
{
this.Id = id;
this.CompanyId = companyId;
}
/// <summary>
/// ID
/// </summary>
public int Id { get; set; }
}
}

View File

@@ -29,6 +29,11 @@ namespace WMS.Web.Core.Dto.SingleData
/// </summary>
public string StockCode { get; set; }
/// <summary>
/// 对应的金蝶组织编码
/// </summary>
public string ErpOrgCode { get; set; }
/// <summary>
/// 名称