using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.ProductionMgr.Entities; /// /// 维修回流工序 /// [SugarTable("prd_repair_reflow")] public partial class PrdRepairReflow : BaseEntity { public PrdRepairReflow() { id = SnowflakeIdHelper.NextId(); } /// /// 所属组织 /// public string? org_id { get; set; } /// /// GUID /// public string repair_id { get; set; } = string.Empty; /// /// 产品代码 /// public string r_card { get; set; } = string.Empty; /// /// 工序代码 /// public string process_code { get; set; } = string.Empty; /// /// 工序顺序 /// public int process_seq { get; set; } /// /// 是否已回流执行 /// public int is_pass { get; set; } /// /// 时间戳 /// public string? 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? extras { get; set; } }