36 lines
797 B
C#
36 lines
797 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
using Tnb.Common.Contracts;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|