增加生产出库接口
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user