目录调整

This commit is contained in:
2023-05-05 19:44:24 +08:00
parent 40bca59440
commit 7a183ccd94
54 changed files with 22 additions and 29 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.Entities.Dto
{
/// <summary>
/// 转移机台输入参数
/// </summary>
public class TransferPlatformUpInput
{
/// <summary>
/// 设备Id
/// </summary>
public string eqp_id { get; set; }
/// <summary>
/// 生产任务单Id
/// </summary>
public string icmo_id { get; set; }
}
}