using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.WarehouseMgr.Entities.Dto.Inputs { /// /// MES空载具入库输入 /// public class MESEmptyCarryInStockInput { /// /// 组织ID /// public string? org_id { get; set; } /// /// 库位编号 /// public string? location_code { get; set; } /// /// 载具编号 /// public string? carry_code { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 入库仓库 /// public string? warehouse_id { get; set; } } }