using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.ProductionMgr.Entities.Dto
{
///
/// 生产任务单更新输入参数
///
public class IcmoUpInput
{
///
/// 类别 1、设备 2、模具
///
public int category { get; set; }
///
/// 生产任务单Id
///
public string icmo_id { get; set; }
///
/// 工单Id
///
public string mo_id { get; set; }
///
/// 模具Id
///
//public string mold_id { get; set; }
/////
///// 设备Id
/////
//public string eqp_id { get; set; }
///
/// 生产任务单数量
///
//public int scheduled_qty { get; set; }
}
}