重新生成实体类
This commit is contained in:
@@ -1,33 +1,27 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
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_group_relation")]
|
||||
public partial class ToolMoldMaintainGroupRelation : BaseEntity<string>
|
||||
{
|
||||
///<summary>
|
||||
///模具保养组与磨具关联
|
||||
///</summary>
|
||||
[SugarTable("tool_mold_maintain_group_relation")]
|
||||
public partial class ToolMoldMaintainGroupRelation :BaseEntity<string>
|
||||
public ToolMoldMaintainGroupRelation()
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Desc:项目组Id
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string item_group_id {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:模具Id
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string mold_id {get;set;} = string.Empty;
|
||||
|
||||
id = SnowflakeIdHelper.NextId();
|
||||
}
|
||||
/// <summary>
|
||||
/// 项目组Id
|
||||
/// </summary>
|
||||
public string item_group_id { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 模具Id
|
||||
/// </summary>
|
||||
public string mold_id { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user