33 lines
742 B
C#
33 lines
742 B
C#
using JNPF.Common.Contracts;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.EquipMgr.Entities;
|
|
|
|
/// <summary>
|
|
/// 模具保养规则与模具关联
|
|
/// </summary>
|
|
[SugarTable("tool_mold_maintain_rule_relation")]
|
|
public partial class ToolMoldMaintainRuleRelation : BaseEntity<string>
|
|
{
|
|
public ToolMoldMaintainRuleRelation()
|
|
{
|
|
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;
|
|
|
|
}
|