重写模具保养

This commit is contained in:
2024-08-01 10:11:23 +08:00
parent 5df23e01ee
commit f6da16904d
23 changed files with 1532 additions and 50 deletions

View File

@@ -0,0 +1,27 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.EquipMgr.Entities;
/// <summary>
/// 模具保养模板子表
/// </summary>
[SugarTable("tool_maintain_tem_d")]
public partial class ToolMaintainTemD : BaseEntity<string>
{
public ToolMaintainTemD()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 模具保养模板主表id
/// </summary>
public string maintain_tem_id { get; set; } = string.Empty;
/// <summary>
/// 模具保养项id
/// </summary>
public string maintain_item_id { get; set; } = string.Empty;
}