using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 工位BOM /// [SugarTable("wms_station_bom")] public partial class WmsStationBom : BaseEntity { public WmsStationBom() { id = SnowflakeIdHelper.NextId(); } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 修改用户 /// public string? modify_id { get; set; } /// /// 修改时间 /// public DateTime? modify_time { get; set; } /// /// 组织管理里面的工位ID /// public string? station_id { get; set; } /// /// 工位编号 /// public string? station_code { get; set; } /// /// 产品id /// public string? product_id { get; set; } /// /// 产品编号 /// public string? product_code { get; set; } /// /// 产品名称 /// public string? product_name { get; set; } /// /// 排序 /// public long? ordinal { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } }