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