using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.PerMgr.Entities;
///
/// 工艺标准
///
[SugarTable("per_process_standards_h")]
public partial class PerProcessStandardsH : BaseEntity
{
public PerProcessStandardsH()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 工艺类型
///
public string process_type { get; set; } = string.Empty;
///
/// 编号
///
public string code { get; set; } = string.Empty;
///
/// 工艺文件名
///
public string? file_name { get; set; }
///
/// 是否启用
///
public int? enabled { get; set; }
///
/// 产出物料id
///
public string? output_material_id { get; set; }
///
/// 设备id
///
public string equip_id { get; set; } = string.Empty;
///
/// 模具id
///
public string? molds_id { get; set; }
///
/// 工序id
///
public string? process_id { get; set; }
///
/// 投入物料id
///
public string? input_material_id { get; set; }
///
/// 版本号
///
public string version { get; set; } = string.Empty;
///
/// 创建用户
///
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; }
///
/// 备注
///
public string? remark { get; set; }
///
/// 流程任务Id
///
public string? f_flowtaskid { get; set; }
///
/// 流程引擎Id
///
public string? f_flowid { get; set; }
}