原材料仓人工扫码入库

This commit is contained in:
2024-08-15 17:17:08 +08:00
parent 787a297ca9
commit e9784e5014
7 changed files with 254 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tnb.WarehouseMgr.Entities.Consts;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
public class ArtificialInstockInput
{
public string? org { get; set; } = WmsWareHouseConst.AdministratorOrgId;
public string? create_id { get; set; }
public string? carry_code { get; set; }
public string? startlocation_code { get; set; }
}
}