人工空托盘入库
This commit is contained in:
@@ -121,6 +121,10 @@ public class ModuleConsts
|
||||
/// </summary>
|
||||
public const string MODULE_WMSCARRYREPLACE_ID = "26188532491557";//26188532491557
|
||||
/// <summary>
|
||||
/// 模块标识-人工空载具入库 todo
|
||||
/// </summary>
|
||||
public const string MODULE_WMSEMPTYCARRYINSTOCK_ID = "MODULE_WMSEMPTYCARRYINSTOCK_ID";//
|
||||
/// <summary>
|
||||
/// 模块标识-齐套分拣
|
||||
/// </summary>
|
||||
public const string MODULE_WMSSETSORTING_ID = "26172520979237";
|
||||
|
||||
@@ -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 WmsEmptycarryInstockServiceInstockInput
|
||||
{
|
||||
public string carry_code { get; set; }
|
||||
public string location_code { get; set; }
|
||||
public string org_id { get; set; } = WmsWareHouseConst.AdministratorOrgId;
|
||||
public string create_id { get; set; } = WmsWareHouseConst.AdministratorUserId;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities.Entity;
|
||||
|
||||
/// <summary>
|
||||
/// 空托盘入库及记录
|
||||
/// </summary>
|
||||
[SugarTable("wms_emptycarry_instock_log")]
|
||||
public partial class WmsEmptycarryInstockLog : BaseEntity<string>
|
||||
{
|
||||
public WmsEmptycarryInstockLog()
|
||||
{
|
||||
id = SnowflakeIdHelper.NextId();
|
||||
}
|
||||
/// <summary>
|
||||
/// 创建用户
|
||||
/// </summary>
|
||||
public string? create_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public DateTime? create_time { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 所属组织
|
||||
/// </summary>
|
||||
public string? org_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 入库库位id
|
||||
/// </summary>
|
||||
public string? location_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 入库库位编码
|
||||
/// </summary>
|
||||
public string? location_code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 载具id
|
||||
/// </summary>
|
||||
public string? carry_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 载具编码
|
||||
/// </summary>
|
||||
public string? carry_code { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user