通用修改业务函数代码提交

This commit is contained in:
alex
2023-06-15 11:01:52 +08:00
parent f3a280974c
commit c0e1f09388
8 changed files with 214 additions and 4 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto
{
/// <summary>
/// 库房业务更新输入参数
/// </summary>
public class WareHouseUpInput
{
/// <summary>
/// 需求来源单据Id对应业务主表Id
/// </summary>
public string requireId { get; set; }
/// <summary>
/// 单据业务类型Id
/// </summary>
public string bizTypeId { get; set; }
}
}