模具保养执行业务代码调整

This commit is contained in:
DEVICE8\12494
2023-05-31 10:34:59 +08:00
parent ea3a325ecb
commit 600cd6d900
8 changed files with 314 additions and 93 deletions

View File

@@ -0,0 +1,46 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.EquipMgr.Entities;
/// <summary>
/// 模具保养
/// </summary>
[SugarTable("tool_mold_maintain_item_record")]
public partial class ToolMoldMaintainItemRecord : BaseEntity<string>
{
public ToolMoldMaintainItemRecord()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 保养项 保养状态 0 未完成1 已完成
/// </summary>
public int status { get; set; }
/// <summary>
/// 保养组Id
/// </summary>
public string? item_group_id { get; set; }
/// <summary>
/// 保养组名称
/// </summary>
public string? item_group_name { get; set; }
/// <summary>
/// 保养项Id
/// </summary>
public string? item_id { get; set; }
/// <summary>
/// 保养项名称
/// </summary>
public string? item_name { get; set; }
/// <summary>
/// 模具ID
/// </summary>
public string mold_id { get; set; }
}