using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.PerMgr.Entities; /// /// 工艺参数设定值修改记录 /// [SugarTable("per_process_param_edit_record")] public partial class PerProcessParamEditRecord : BaseEntity { public PerProcessParamEditRecord() { id = SnowflakeIdHelper.NextId(); } /// /// 工艺参数id /// public string process_param_id { get; set; } = string.Empty; /// /// 修改前值 /// public decimal old_value { get; set; } /// /// 修改后值 /// public decimal new_value { get; set; } /// /// 修改用户 /// public string modify_id { get; set; } = string.Empty; /// /// 修改时间 /// public DateTime modify_time { get; set; } = DateTime.Now; /// /// 所属组织 /// public string? org_id { get; set; } /// /// 工艺参数名 /// public string? process_param_name { get; set; } /// /// 设备id /// public string equip_id { get; set; } = string.Empty; /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } }