Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/SwapMoldUpInput.cs
2023-11-06 19:35:59 +08:00

19 lines
404 B
C#

namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
/// <summary>
/// 模具更换输入参数
/// </summary>
public class SwapMoldUpInput
{
/// <summary>
/// 模具Id
/// </summary>
public string mold_id { get; set; }
/// <summary>
/// 生产任务单Id
/// </summary>
public string icmo_id { get; set; }
}
}