using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities.Entity;
///
/// 转库单载具表
///
[SugarTable("wms_material_transfer_carry")]
public partial class WmsMaterialTransferCarry : BaseEntity
{
public WmsMaterialTransferCarry()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 转库单id
///
public string? bill_id { get; set; }
///
/// 载具ID
///
public string? carry_id { get; set; }
///
/// 载具编号
///
public string? carry_code { get; set; }
///
/// 创建用户
///
public string? create_id { get; set; }
///
/// 创建时间
///
public DateTime? create_time { get; set; }
///
/// 起点库位id
///
public string? startlocation_id { get; set; }
///
/// 起点库位编码
///
public string? startlocation_code { get; set; }
///
/// 终点库位id
///
public string? endlocation_id { get; set; }
///
/// 终点库位编码
///
public string? endlocation_code { get; set; }
///
/// 转库单物料明细id
///
public string? mat_bill_id { get; set; }
///
/// 料箱数量
///
public decimal? qty { get; set; }
///
/// 预任务id
///
public string? pretask_id { get; set; }
}