模具保养计划执行模块代码提交

This commit is contained in:
DEVICE8\12494
2023-05-22 19:17:14 +08:00
parent 486d76e3d0
commit 6ee558a3e4
11 changed files with 441 additions and 180 deletions

View File

@@ -14,6 +14,6 @@ namespace Tnb.EquipMgr.Entities.Dto
/// <summary>
/// 规则id
/// </summary>
public string rule_id { get; set; }
public List<string> ruleIds { get; set; }
}
}

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.EquipMgr.Entities.Dto
{
/// <summary>
/// 模具保养执行输入参数
/// </summary>
public class MoldMaintainRunUpInput
{
/// <summary>
/// 执行计划id
/// </summary>
public string plan_id { get; set; }
}
}