增加生产出库接口

This commit is contained in:
FanLian
2023-07-06 16:44:32 +08:00
parent 5497a0923b
commit 7b3cba1099
3 changed files with 234 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
public class MESCreateOutstockInput
{
/// <summary>
/// 生产出库主表
/// </summary>
public WmsOutstockH? outstock { get; set; }
/// <summary>
/// 生产出库明细表
/// </summary>
public List<WmsOutstockD>? outstockDs { get; set; }
}
}