模具保养执行业务代码调整
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Tnb.EquipMgr.Entities;
|
||||
|
||||
/// <summary>
|
||||
/// 模具保养计划记录表子表
|
||||
/// </summary>
|
||||
[SugarTable("tool_mold_maintain_run_record_d")]
|
||||
public partial class ToolMoldMaintainRunRecordD : BaseEntity<string>
|
||||
{
|
||||
public ToolMoldMaintainRunRecordD()
|
||||
{
|
||||
id = SnowflakeIdHelper.NextId();
|
||||
}
|
||||
/// <summary>
|
||||
/// 模具编号
|
||||
/// </summary>
|
||||
public string? mold_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 保养组编码
|
||||
/// </summary>
|
||||
public string? group_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 保养组名称
|
||||
/// </summary>
|
||||
public string? group_name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 保养项编号
|
||||
/// </summary>
|
||||
public string? check_item_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 保养项名称
|
||||
/// </summary>
|
||||
public string? check_item_name { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user