using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using JNPF.Common.Security;
namespace Tnb.BasicData.Entitys.Dto.ProcessManage
{
///
/// 工艺路线模版左侧树输出参数
///
public class RouteLineTreeOutput : TreeModel
{
///
/// 工艺路线类型
///
public string RouteType { get; set; }
///
/// 工艺路线类型名称
///
public string Name { get; set; }
///
/// 工艺路线名称
///
public string RouteName { get; set; }
///
/// 工艺路线代码
///
public string RouteCode { get; set; }
///
/// 工艺路线版本
///
public string Version { get; set; }
}
}