载具更换代码优化

This commit is contained in:
DEVICE8\12494
2023-06-02 08:39:27 +08:00
parent 38a62de63a
commit 73445f813e
22 changed files with 496 additions and 207 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.EquipMgr.Entities.Dto
{
/// <summary>
/// 根据模具ID、计划ID获取保养组及项目信息
/// </summary>
public class CheckItemQueryinput
{
/// <summary>
/// 计划ID
/// </summary>
public string plan_id { get; set; }
/// <summary>
/// 模具ID
/// </summary>
public string mold_id { get; set; }
}
}