生产入库接口

This commit is contained in:
2024-05-28 09:56:27 +08:00
parent 6674d10880
commit 450ea471b7
12 changed files with 549 additions and 76 deletions

View File

@@ -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; }
}
}