using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities.Entity;
///
/// 包材出库子表
///
[SugarTable("wms_pack_outstock_d")]
public partial class WmsPackOutstockD : BaseEntity
{
public WmsPackOutstockD()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 包材出库单ID
///
public string? bill_id { get; set; }
///
/// 执行状态
///
public string? line_status { get; set; }
///
/// 物料ID
///
public string? material_id { get; set; }
///
/// 物料代码
///
public string? material_code { get; set; }
///
/// 单位ID
///
public string? unit_id { get; set; }
///
/// 发货数量
///
public decimal? qty { get; set; }
///
/// 已发货数量
///
public decimal? prqty { get; set; }
///
/// 扩展字段
///
public string? extras { get; set; }
///
/// 时间戳
///
public DateTime? time_stamp { get; set; }
///
/// 创建用户
///
public string? create_id { get; set; }
///
/// 创建时间
///
public DateTime? create_time { get; set; }
///
/// 修改用户
///
public string? modify_id { get; set; }
///
/// 修改时间
///
public DateTime? modify_time { get; set; }
///
/// 批次
///
public string? code_batch { get; set; }
///
/// 流程任务Id
///
public string? f_flowtaskid { get; set; }
///
/// 流程引擎Id
///
public string? f_flowid { get; set; }
///
/// 本次发货数量
///
public decimal? sendqty { get; set; }
///
/// 规格型号
///
public string? material_specification { get; set; }
///
/// 箱号
///
public string? container_no { get; set; }
///
/// 质检结果
///
public string? qc_res { get; set; }
///
/// 载具id
///
public string? carry_id { get; set; }
///
/// 载具编码
///
public string? carry_code { 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; }
}