原材料/成品调拨出库接口、采购收货添加是否赠品、单价、是否自制字段

This commit is contained in:
2024-08-19 10:30:34 +08:00
parent 4cc672766b
commit 3d74fea016
15 changed files with 635 additions and 149 deletions

View File

@@ -0,0 +1,29 @@
using Tnb.WarehouseMgr.Entities.Consts;
namespace Tnb.WarehouseMgr.Entities.Dto
{
/// <summary>
/// 库房业务更新输入参数
/// </summary>
public class RawmatTransferoutstockInput
{
/// <summary>
/// 组织ID
/// </summary>
public string org_id { get; set; } = WmsWareHouseConst.AdministratorOrgId;
/// <summary>
/// 创建用户
/// </summary>
public string create_id { get; set; }
/// <summary>
/// 来源单据id
/// </summary>
public string? source_id { get; set; }
/// <summary>
/// 载具
/// </summary>
public List<string> carrys { get; set; }
}
}