using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities; /// /// 备件入库 /// [SugarTable("eqp_spare_parts_instock_h")] public partial class EqpSparePartsInstockH : BaseEntity { public EqpSparePartsInstockH() { id = SnowflakeIdHelper.NextId(); } /// /// 入库单编号 /// public string? code { get; set; } /// /// 入库时间 /// public string? instock_time { get; set; } /// /// 入库人员 /// public string? instock_id { get; set; } /// /// 库位号 /// public string? location_id { get; set; } /// /// 备件id /// public string? spare_parts_id { get; set; } /// /// 描述 /// public string? descrip { 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? org_id { get; set; } /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } }