生产入库接口
This commit is contained in:
@@ -25,8 +25,9 @@ namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
|
||||
public string require_id { get; set; }
|
||||
|
||||
public string require_code { get; set; }
|
||||
|
||||
|
||||
public string moduleConsts { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 如果要生成业务表,传入此对象以及对应业务表单的自定义字段
|
||||
/// </summary>
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities.Dto
|
||||
{
|
||||
public class WmsPrdInstockCodeInput
|
||||
{
|
||||
public decimal planqty { get; set; }
|
||||
public decimal pqty { get; set; }
|
||||
public string code_batch { get; set; }
|
||||
public string code { get; set; }
|
||||
public string unit_id { get; set; }
|
||||
public string carry_id { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities.Dto
|
||||
{
|
||||
public class WmsPrdInstockDInput
|
||||
{
|
||||
public string task_bill_code { get; set; }
|
||||
|
||||
public string warehouse_id { get; set; }
|
||||
|
||||
public string startlocation_id { get; set; }
|
||||
public string carry_id { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
|
||||
{
|
||||
public class WmsPrdInstockInput
|
||||
{
|
||||
public string prd_bill_code { get; set; }
|
||||
public string material_id { get; set; }
|
||||
public string material_code { get; set; }
|
||||
public string material_name { get; set; }
|
||||
public string material_spec { get; set; }
|
||||
public decimal planqty { get; set; }
|
||||
public decimal pqty { get; set; }
|
||||
public decimal rqty { get; set; }
|
||||
public string type { get; set; }
|
||||
public string create_id { get; set; }
|
||||
public List<WmsPrdInstockDInput> prdInstockDs { get; set; }
|
||||
public List<WmsPrdInstockCodeInput> prdInstockCodes { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user