25 lines
521 B
C#
25 lines
521 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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; }
|
|
|
|
}
|
|
}
|