using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities;
///
/// 在库物料导入
///
[SugarTable("wms_stk_temp")]
public partial class WmsStkTemp : BaseEntity
{
public WmsStkTemp()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 库位
///
public string? location_code { get; set; }
///
/// 物料
///
public string? material_code { get; set; }
///
/// 规格型号
///
public string? material_specification { get; set; }
///
/// 批次
///
public string? code_batch { get; set; }
///
/// 箱号
///
public string? container_no { get; set; }
///
/// 数量
///
public decimal codeqty { get; set; }
///
/// 载具编号
///
public string? carry_code { get; set; }
///
/// 载具ID
///
public string? carry_id { get; set; }
}