重新生成实体类
This commit is contained in:
@@ -1,31 +1,32 @@
|
||||
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_rule_relation")]
|
||||
public partial class ToolMoldMaintainRuleRelation : BaseEntity<string>
|
||||
{
|
||||
///<summary>
|
||||
///模具保养规则与模具关联
|
||||
///</summary>
|
||||
[SugarTable("tool_mold_maintain_rule_relation")]
|
||||
public partial class ToolMoldMaintainRuleRelation:BaseEntity<string>
|
||||
public ToolMoldMaintainRuleRelation()
|
||||
{
|
||||
/// <summary>
|
||||
/// Desc:保养规则id
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string rule_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 rule_id { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 模具id
|
||||
/// </summary>
|
||||
public string mold_id { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 项目组id
|
||||
/// </summary>
|
||||
public string item_group_id { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user