重新生成实体类

This commit is contained in:
2023-05-18 18:15:38 +08:00
parent 82c94d9707
commit 3033b9c66e
347 changed files with 36999 additions and 54700 deletions

View File

@@ -0,0 +1,27 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
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>
public string mold_id { get; set; } = string.Empty;
}