1
This commit is contained in:
@@ -1,35 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using JNPF.Common.Contracts;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
using Tnb.Common.Contracts;
|
||||
|
||||
namespace Tnb.EquipMgr.Entities
|
||||
namespace Tnb.EquipMgr.Entities;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SugarTable("tool_mold_maintain_plan_relation")]
|
||||
public partial class ToolMoldMaintainPlanRelation : BaseEntity<string>
|
||||
{
|
||||
public ToolMoldMaintainPlanRelation()
|
||||
{
|
||||
id = SnowflakeIdHelper.NextId();
|
||||
}
|
||||
/// <summary>
|
||||
/// 保养计划id
|
||||
/// </summary>
|
||||
public string maintain_plan_id { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// 模具Id
|
||||
/// </summary>
|
||||
[SugarTable("tool_mold_maintain_plan_relation")]
|
||||
public partial class ToolMoldMaintainPlanRelation : BaseEntity<string>
|
||||
{
|
||||
public ToolMoldMaintainPlanRelation()
|
||||
{
|
||||
id = SnowflakeIdHelper.NextId();
|
||||
}
|
||||
/// <summary>
|
||||
/// 保养计划id
|
||||
/// </summary>
|
||||
public string maintain_plan_id { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 模具Id
|
||||
/// </summary>
|
||||
public string mold_id { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
public string mold_id { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user