using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.EquipMgr.Entities;
///
///
///
[SugarTable("tool_mold_maintain_run_record")]
public partial class ToolMoldMaintainRunRecord : BaseEntity
{
public ToolMoldMaintainRunRecord()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 计划单号
///
public string? plan_code { get; set; }
///
/// 保养方式
///
public string? mode { get; set; }
///
/// 计划状态
///
public string? plan_status { get; set; }
///
/// 制定人
///
public string? designer { get; set; }
///
/// 制定时间
///
public DateTime? designer_time { get; set; }
///
/// 模具编号
///
public string? mold_code { get; set; }
///
/// 模具名称
///
public string? mold_name { get; set; }
///
/// 设备编号
///
public string? eqp_code { get; set; }
///
/// 设备名称
///
public string? eqp_name { get; set; }
///
/// 计划开始时间
///
public DateTime? plan_start_time { get; set; }
///
/// 计划完成时间
///
public DateTime? plan_end_time { get; set; }
///
/// 计划时间
///
public decimal? plan_time { get; set; }
///
/// 维保人
///
public string? maintain_person { get; set; }
///
/// 异常记录
///
public string? exception_record { get; set; }
}