using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 灭菌入库记录 /// [SugarTable("wms_sterilization_instock_h")] public partial class WmsSterilizationInstockH : BaseEntity { public WmsSterilizationInstockH() { id = SnowflakeIdHelper.NextId(); } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 载具id /// public string? carry_id { get; set; } /// /// 载具编码 /// public string? carry_code { get; set; } /// /// 入库时间 /// public DateTime? instock_time { get; set; } /// /// 入库库位id /// public string? location_id { get; set; } /// /// 入库库位编码 /// public string? location_code { get; set; } /// /// 修改用户 /// public string? modify_id { get; set; } /// /// 修改时间 /// public DateTime? modify_time { get; set; } /// /// 下料库位id /// public string? xl_location_id { get; set; } /// /// 下料库位编码 /// public string? xl_location_code { get; set; } /// /// 成品仓库位id /// public string? cp_location_id { get; set; } /// /// 成品仓库位编码 /// public string? cp_location_code { get; set; } /// /// 状态 /// public string? status { get; set; } /// /// 单号 /// public string? bill_code { get; set; } /// /// 来源 /// public string? origin { get; set; } }