using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities; /// /// 模具保养计划记录表子表 /// [SugarTable("tool_mold_maintain_run_record_d")] public partial class ToolMoldMaintainRunRecordD : BaseEntity { public ToolMoldMaintainRunRecordD() { id = SnowflakeIdHelper.NextId(); } /// /// 模具编号 /// public string? mold_id { get; set; } /// /// 保养组编码 /// public string? group_id { get; set; } /// /// 保养组名称 /// public string? group_name { get; set; } /// /// 保养项编号 /// public string? check_item_id { get; set; } /// /// 保养项名称 /// public string? check_item_name { get; set; } public string? mainid { get; set; } }