重新生成实体类
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user