生产管理,新增机台调整接口

This commit is contained in:
DEVICE8\12494
2023-04-25 17:27:22 +08:00
parent 967c013d16
commit 6999acbeb4
3 changed files with 244 additions and 218 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Principal;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.ProductionMgr.Entitys.Dto.PrdManage
{
/// <summary>
/// 转移机台输入参数
/// </summary>
public class TransferPlatformUpInput
{
/// <summary>
/// 设备Id
/// </summary>
public string eqp_id { get; set; }
/// <summary>
/// 生产任务单Id
/// </summary>
public string icmo_id { get; set; }
}
}