28 lines
625 B
C#
28 lines
625 B
C#
using JNPF.Common.Contracts;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.EquipMgr.Entities;
|
|
|
|
/// <summary>
|
|
/// 模具保养组与磨具关联
|
|
/// </summary>
|
|
[SugarTable("tool_mold_maintain_group_relation")]
|
|
public partial class ToolMoldMaintainGroupRelation : BaseEntity<string>
|
|
{
|
|
public ToolMoldMaintainGroupRelation()
|
|
{
|
|
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;
|
|
|
|
}
|