using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CMS.Plugin.PipeLineLems.Application.Contracts.Dtos.WorkPlan
{
///
/// 开工输入参数模型
///
[Serializable]
public class StartProductionInput
{
///
/// 任务编码
///
public string TaskCode { get; set; }
/////
///// 工序名称
/////
//public string ProcessName { get; set; }
}
}