1、数据库操作,生成实体类,清除表数据默认linkid改为单例模式

2、MOM 基础数据-工艺管理-工艺路线模版,左侧树代码调整
This commit is contained in:
DEVICE8\12494
2023-04-06 17:24:16 +08:00
parent f3c8f1cd06
commit 536f11aac1
6 changed files with 150 additions and 112 deletions

View File

@@ -0,0 +1,37 @@
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
{
/// <summary>
/// 工艺路线模版左侧树输出参数
/// </summary>
public class RouteLineTreeOutput : TreeModel
{
/// <summary>
/// 工艺路线类型
/// </summary>
public string RouteType { get; set; }
/// <summary>
/// 工艺路线类型名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 工艺路线名称
/// </summary>
public string RouteName { get; set; }
/// <summary>
/// 工艺路线代码
/// </summary>
public string RouteCode { get; set; }
/// <summary>
/// 工艺路线版本
/// </summary>
public string Version { get; set; }
}
}