using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities;
///
/// 寄存捆包
///
[SugarTable("wms_inbale")]
public partial class WmsInbale : BaseEntity
{
public WmsInbale()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 所属组织
///
public string? org_id { get; set; }
///
/// 起始库位ID
///
public string? location_id { get; set; }
///
/// 单号
///
public string bill_code { get; set; } = string.Empty;
///
/// 单据状态
///
public string status { get; set; } = string.Empty;
///
/// 业务类型
///
public string biz_type { get; set; } = string.Empty;
///
/// 载具ID
///
public string carry_id { get; set; } = string.Empty;
///
/// 载具编号
///
public string carry_code { get; set; } = string.Empty;
///
/// 入库仓库ID
///
public string warehouse_id { get; set; } = string.Empty;
///
/// 打包号
///
public string bale_num { get; set; } = string.Empty;
///
/// 创建用户
///
public string create_id { get; set; } = string.Empty;
///
/// 创建时间
///
public DateTime create_time { get; set; } = DateTime.Now;
///
/// 修改用户
///
public string? modify_id { get; set; }
///
/// 修改时间
///
public DateTime? modify_time { get; set; }
///
/// 扩展
///
public string? extras { get; set; }
///
/// 时间戳(用于并发控制)
///
public DateTime? timestamp { get; set; }
///
/// 流程任务Id
///
public string? f_flowtaskid { get; set; }
///
/// 流程引擎Id
///
public string? f_flowid { get; set; }
}