using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.PerMgr.Entities; /// /// 工艺参数 /// [SugarTable("per_process_param")] public partial class PerProcessParam : BaseEntity { public PerProcessParam() { id = SnowflakeIdHelper.NextId(); } /// /// 名称 /// public string name { get; set; } = string.Empty; /// /// 公差类别id /// public string tolerance_category_id { get; set; } = string.Empty; /// /// 工艺参数类型id /// public string process_param_type_id { get; set; } = string.Empty; /// /// 排序 /// public long ordinal { 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; } }