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

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

@@ -16,6 +16,10 @@ namespace Tnb.ProductionMgr.Entitys.新文件夹
/// 工单状态 已下发字典Id
/// </summary>
public const string IssueId = "25019232867093";
/// <summary>
/// 任务单状态-待开工编码
/// </summary>
public const string ToBeStartedEnCode = "ToBeStarted";
}
/// <summary>

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; }
}
}