模具保养管理接口代码提交

This commit is contained in:
DEVICE8\12494
2023-05-17 13:58:59 +08:00
parent d48fc44f33
commit 5e2d1d443f
15 changed files with 588 additions and 21 deletions

View File

@@ -0,0 +1,24 @@
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 MoldMaintainGroupItemInput
{
/// <summary>
/// 项目组Id
/// </summary>
public string item_group_id { get; set; }
/// <summary>
/// 保养项Id
/// </summary>
public string item_id { get; set; }
}
}