新增基础数据接口库,MOM工艺路线模版左侧树形结构返回

This commit is contained in:
DEVICE8\12494
2023-04-04 14:43:57 +08:00
parent 96fa7faf39
commit 92291d66c2
11 changed files with 333 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.BasicData.Entitys.Model
{
public class RouteTree
{
/// <summary>
/// 工艺路线类型
/// </summary>
public string RouteType { get; set; }
/// <summary>
/// 工艺路线名称
/// </summary>
public List<RouteName> RouteName { get; set; }
}
public class RouteName
{
public string Tag { get; set; }
/// <summary>
/// 工艺路线版本
/// </summary>
public List<string> RouteVersion { get; set; }
}
}