JQuery/JS鎻掍欢 jsTree鍔犺浇鏍戯紝鍒濆鍖栨椂鍔犺浇鍓嶄笁绾ц妭鐐癸紝褰撳睍寮€绗笁绾ц妭鐐规椂 灏卞姞杞借鑺傜偣涓嬬殑鎵€鏈夊瓙鑺傜偣
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQuery/JS鎻掍欢 jsTree鍔犺浇鏍戯紝鍒濆鍖栨椂鍔犺浇鍓嶄笁绾ц妭鐐癸紝褰撳睍寮€绗笁绾ц妭鐐规椂 灏卞姞杞借鑺傜偣涓嬬殑鎵€鏈夊瓙鑺傜偣相关的知识,希望对你有一定的参考价值。
鏍囩锛?a href='http://www.mamicode.com/so/1/%e6%9c%80%e6%96%b0' title='鏈€鏂?>鏈€鏂?/a> core system 鐜矾 log ada ini cdn 鍥剧墖
jsTree鍔犺浇鏍戯紝
鍒濆鍖栨椂 鍔犺浇鍓嶄笁绾ц妭鐐癸紝
褰撳睍寮€绗笁绾ц妭鐐规椂 灏卞姞杞借鑺傜偣涓嬬殑鎵€鏈夊瓙鑺傜偣
html锛?/p>
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> </head> <body> <div id="plugins1"></div> <link href="../jstree/themes/default/style.min.css" rel="stylesheet" /> <script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.js"></script> <script src="../jstree/jstree.min.js"></script> <script type="text/javascript"> //Checkbox plugin $(function () { $("#plugins1").jstree({ "checkbox": { //"keep_selected_style": true//鏄剧ず閫変腑鐨勬牱寮?/span> //"keep_selected_style": false,// 淇濇寔閫変腑鏍峰紡 true涓轰繚鎸侊紝false涓轰笉淇濆瓨锛屾牱寮忎笉褰卞搷鍔熻兘 鈥?/span>three_state鈥?/span>: true,//鐖跺瓙鑺傜偣鍏宠仈锛宼rue涓哄叧鑱旓紝false涓轰笉鍏宠仈 鈥?/span>tie_selection鈥?/span>: false, // 鈥?/span>whole_node鈥?/span>: false,//澶嶉€夋涓庤妭鐐瑰叧鑱?true 涓哄叧鑱?false涓轰笉鍏宠仈 }, "plugins": ["checkbox"],//鍔犺浇鎻掍欢 checkbox 鈥?/span>core鈥?/span>: { 鈥?/span>expand_selected_onload鈥?/span>: true,//鍔犺浇瀹屾垚鍚庨粯璁ゅ睍寮€鎵€鏈夐€変腑鑺傜偣true涓洪€変腑 false涓轰笉灞曞紑 鈥?/span>themes鈥?/span>: { dots: true //鍙栨秷杩炴帴绾?/span> }, 鈥?/span>data鈥?/span>: { 鈥?/span>url鈥?/span>: function (node) { return 鈥?/span>./Handler2.ashx鈥?/span>; }, 鈥?/span>data鈥?/span>: function (node) { return { 鈥?/span>id鈥?/span>: node.id }; } } } }); }); </script> </body> </html>
鍚庣锛?/p>
using System; using System.Collections.Generic; using System.Linq; using System.Web; using Newtonsoft.Json; using System.Data; using System.Data.SqlClient; using System.Reflection; namespace WebApplication1.jstree娴嬭瘯 { /// <summary> /// Handler2 鐨勬憳瑕佽鏄? /// </summary> public class Handler2 : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "application/json; charset=utf-8"; object obj = null; var id = context.Request["id"].ToString(); if (id == "#") { obj = GetThreeRoot(); } else { obj = GetAllChildren(int.Parse(id)); } //var list = GetProjectTrees(); string strContent = JsonConvert.SerializeObject(obj); context.Response.Write(strContent); } public bool IsReusable { get { return false; } } //mark锛氭湭浼樺寲鍝?鍔熻兘瀹炵幇浜嗙殑 /// <summary> /// 涓€娆″姞杞戒笁涓眰绾х殑鑺傜偣 /// </summary> /// <returns></returns> public List<ProjectOutPut> GetThreeRoot() { //涓€娆″姞杞戒笁绾ц妭鐐?/span> var dt = ExecuteDataTable($"select * from Projects7 where [level]<=3 order by Id asc", null); var allProject = DataTableToEntities<Projects>(dt); var roots = allProject.Where(p => p.ParentId == 0); var result = new List<ProjectOutPut>(); foreach (var rootProject in roots) { result.Add(new ProjectOutPut() { id = rootProject.Id, text = rootProject.ProjectName, ParentId = rootProject.ParentId, children = GetChildrenProject(rootProject, allProject) }); } return result; } /// <summary> /// 鍔犺浇鎵€鏈夊瓙鑺傜偣 /// </summary> /// <param name="Pid">鐖禝d</param> /// <returns></returns> public List<ProjectOutPut> GetAllChildren(int Pid) { var dt_all = ExecuteDataTable($"select * from Projects7 order by Id asc", null); var all = DataTableToEntities<Projects>(dt_all); var children = all.Where(c => c.ParentId == Pid).ToList(); if (children.Count <= 0) { return new List<ProjectOutPut>(); } var list = new List<ProjectOutPut>(); children.ForEach(c => { list.Add(new ProjectOutPut { id = c.Id, text = c.ProjectName, ParentId = c.ParentId, children = GetChildrenProject(c, all, false) }); }); return list; } /// <summary> /// 杩斿洖鍊间互鎵€浠ヤ负object绫诲瀷锛屾槸鍥犱负jstree鐨?ldquo;+”鍙? /// object瀹為檯鍙湁涓ょ绫诲瀷 bool 鍜?list /// </summary> /// <param name="project"></param> /// <param name="all"></param> /// <param name="showAddSign">jstree鏄惁鏄剧ず“+”鍙?/span></param> /// <returns></returns> public object GetChildrenProject(Projects project, IReadOnlyList<Projects> all, bool showAddSign = true) { var outputModel = new List<ProjectOutPut>(); if (all.Count(p => p.ParentId == project.Id) > 0) { var children = all.Where(p => p.ParentId == project.Id).ToList(); foreach (var childProject in children) { outputModel.Add(new ProjectOutPut() { id = childProject.Id, text = childProject.ProjectName, ParentId = childProject.ParentId, children = GetChildrenProject(childProject, all, showAddSign) }); } } if (showAddSign && (outputModel.Count == 0)) { return true; } return outputModel; } //dto public class ProjectOutPut { public int id { get; set; } public string text { get; set; } public int? ParentId { get; set; } public object children { get; set; } } //瀹炰綋绫?/span> public class Projects { public int Id { get; set; } public string ProjectName { get; set; } public int? ParentId { get; set; } public int IsEnabled { get; set; } public int TaskStatus { get; set; } public string ProjectCode { get; set; } public int? ProjectOrder { get; set; } } // 杩斿洖DataTable public static DataTable ExecuteDataTable(string sql, params SqlParameter[] param) { string conStr = "data source=.\sqlexpress;initial catalog=TEST1;user id=sa;password=sa;"; DataTable dt = new DataTable(); using (SqlConnection con = new SqlConnection(conStr)) { using (SqlDataAdapter adapter = new SqlDataAdapter(sql, con)) { //娣诲姞鍙傛暟 if (param != null) { adapter.SelectCommand.Parameters.AddRange(param); } //1.鎵撳紑閾炬帴锛屽鏋滆繛鎺ユ病鏈夋墦寮€锛屽垯瀹冪粰浣犳墦寮€锛涘鏋滄墦寮€锛屽氨绠椾簡 //2.鍘绘墽琛宻ql璇彞锛岃鍙栨暟鎹簱 //3.sqlDataReader,鎶婅鍙栧埌鐨勬暟鎹~鍏呭埌鍐呭瓨琛ㄤ腑 adapter.Fill(dt); } } return dt; } // DataTable杞崲涓篍ntitys public static List<T> DataTableToEntities<T>(DataTable dt) where T : class, new() { if (null == dt || dt.Rows.Count == 0) { return null; } List<T> entities = new List<T>(); List<string> columnNames = new List<string>(); for (int i = 0; i < dt.Columns.Count; i++) { columnNames.Add(dt.Columns[i].ColumnName); } foreach (DataRow row in dt.Rows) { PropertyInfo[] pArray = typeof(T).GetProperties(); T entity = new T(); Array.ForEach<PropertyInfo>(pArray, p => { if (!columnNames.Contains(p.Name)) { return; } object cellvalue = row[p.Name]; //绌哄€间笉澶勭悊 if (cellvalue == DBNull.Value) { return; } if ((cellvalue == null) || string.IsNullOrWhiteSpace(cellvalue.ToString().Trim())) { return; } if (cellvalue != DBNull.Value) { //缁忚繃浜嗗嚑涓増鏈殑杩唬锛屾渶鍚庝竴涓负鏈€鏂扮殑锛屾憳鑷綉涓婏紝宸查檮鍘熸枃鍦板潃 //4銆佸師鍦板潃锛?/span>https://blog.csdn.net/Simon1003/article/details/80839744 if (!p.PropertyType.IsGenericType) { p.SetValue(entity, Convert.ChangeType(cellvalue, p.PropertyType), null); } else { Type genericTypeDefinition = p.PropertyType.GetGenericTypeDefinition(); if (genericTypeDefinition == typeof(Nullable<>)) { p.SetValue(entity, Convert.ChangeType(cellvalue, Nullable.GetUnderlyingType(p.PropertyType)), null); } else { throw new Exception("genericTypeDefinition != typeof(Nullable<>)"); } } } }); entities.Add(entity); } return entities; } } }
鏁版嵁-sql锛?/p>
USE [TEST1] GO /****** Object: Table [dbo].[Projects7] Script Date: 02/28/2020 15:23:02 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Projects7]( [Id] [int] NOT NULL, [ProjectName] [nvarchar](50) NOT NULL, [ProjectCode] [nvarchar](max) NULL, [ParentId] [int] NOT NULL, [ProjectOrder] [int] NULL, [IsEnabled] [int] NOT NULL, [OwnerId] [int] NULL, [ConstructionId] [int] NULL, [SupervisionId] [int] NULL, [ContractId] [int] NULL, [Level] [int] NULL, [Quantity] [int] NULL, [ComponentCode] [nvarchar](max) NULL, [NComponentCode] [nvarchar](max) NULL, [TaskStatus] [int] NOT NULL, [VersionIng] [nvarchar](max) NULL, [FbxId] [nvarchar](max) NULL, [Descrption] [nvarchar](max) NULL, [PileNumber] [nvarchar](max) NULL, [IsSubunit] [int] NULL, [BiDSion] [nvarchar](max) NULL, [ProjectType] [nvarchar](max) NULL, [EquCode] [nvarchar](max) NULL, [NextId] [int] NULL, [MileageNo] [nvarchar](max) NULL ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (513087, N鈥?/span>鐧借尐娌熶竴鍙峰ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.01.04鈥?/span>, 510322, 4, 0, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (513595, N鈥?/span>澶ч亾宀瓙涓€鍙峰ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.01.05鈥?/span>, 510322, 5, 0, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (511304, N鈥?/span>涓婇儴鏋勯€犵幇鍦虹幇娴?(绗竴鑱?鈥?/span>, N鈥?/span>01.01.01.40鈥?/span>, 510327, 40, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (511315, N鈥?/span>涓婇儴鏋勯€犵幇鍦虹幇娴?(绗簩鑱?鈥?/span>, N鈥?/span>01.01.01.41鈥?/span>, 510327, 41, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (511326, N鈥?/span>涓婇儴鏋勯€犵幇鍦虹幇娴?(绗笁鑱?鈥?/span>, N鈥?/span>01.01.01.42鈥?/span>, 510327, 42, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (511337, N鈥?/span>涓婇儴鏋勯€犵幇鍦虹幇娴?(绗洓鑱?鈥?/span>, N鈥?/span>01.01.01.43鈥?/span>, 510327, 43, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (511348, N鈥?/span>涓婇儴鏋勯€犵幇鍦虹幇娴?(绗簲鑱?鈥?/span>, N鈥?/span>01.01.01.44鈥?/span>, 510327, 44, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (511427, N鈥?/span>闃叉姢宸ョ▼鈥?/span>, N鈥?/span>01.01.01.46鈥?/span>, 510327, 46, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (511433, N鈥?/span>鐧借尐娌熶簩鍙峰ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.01.02鈥?/span>, 510322, 2, 0, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510394, N鈥?/span>3#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.04鈥?/span>, 510327, 4, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510417, N鈥?/span>4#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.05鈥?/span>, 510327, 5, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510440, N鈥?/span>5#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.06鈥?/span>, 510327, 6, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510532, N鈥?/span>9#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.10鈥?/span>, 510327, 10, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510555, N鈥?/span>10#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.11鈥?/span>, 510327, 11, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510578, N鈥?/span>11#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.12鈥?/span>, 510327, 12, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510810, N鈥?/span>绗?璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.21鈥?/span>, 510327, 21, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510836, N鈥?/span>绗?璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.22鈥?/span>, 510327, 22, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (511044, N鈥?/span>绗?0璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.30鈥?/span>, 510327, 30, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (511070, N鈥?/span>绗?1璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.31鈥?/span>, 510327, 31, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (511096, N鈥?/span>绗?2璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.32鈥?/span>, 510327, 32, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510322, N鈥?/span>涓€鍒嗛儴鈥?/span>, N鈥?/span>01.01鈥?/span>, 510321, 1, 0, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510323, N鈥?/span>浜屽垎閮?/span>鈥?/span>, N鈥?/span>01.02鈥?/span>, 510321, 2, 0, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510324, N鈥?/span>涓夊垎閮?/span>鈥?/span>, N鈥?/span>01.03鈥?/span>, 510321, 3, 0, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510325, N鈥?/span>鍥涘垎閮?/span>鈥?/span>, N鈥?/span>01.04鈥?/span>, 510321, 4, 0, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510326, N鈥?/span>浜斿垎閮?/span>鈥?/span>, N鈥?/span>01.05鈥?/span>, 510321, 5, 0, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510463, N鈥?/span>6#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.07鈥?/span>, 510327, 7, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510605, N鈥?/span>12#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.13鈥?/span>, 510327, 13, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510632, N鈥?/span>13#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.14鈥?/span>, 510327, 14, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510659, N鈥?/span>14#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.15鈥?/span>, 510327, 15, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510888, N鈥?/span>绗?璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.24鈥?/span>, 510327, 24, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510914, N鈥?/span>绗?璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.25鈥?/span>, 510327, 25, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510992, N鈥?/span>绗?璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.28鈥?/span>, 510327, 28, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (511122, N鈥?/span>绗?3璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.33鈥?/span>, 510327, 33, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (511148, N鈥?/span>绗?4璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.34鈥?/span>, 510327, 34, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510327, N鈥?/span>鐧借尐娌熶簩鍙峰ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.01.01鈥?/span>, 510322, 1, 0, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510328, N鈥?/span>0#鍙板熀纭€鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.01鈥?/span>, 510327, 1, 0, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510329, N鈥?/span>妗╁熀閽㈢瓔鍔犲伐涓庡畨瑁?/span>鈥?/span>, N鈥?/span>01.01.01.01.01鈥?/span>, 510328, 1, 0, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510330, N鈥?/span>0-0妗╁熀閽㈢瓔鍔犲伐涓庡畨瑁?/span>鈥?/span>, N鈥?/span>01.01.01.01.01.01鈥?/span>, 510329, 1, 0, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510331, N鈥?/span>0-1妗╁熀閽㈢瓔鍔犲伐涓庡畨瑁?/span>鈥?/span>, N鈥?/span>01.01.01.01.01.02鈥?/span>, 510329, 2, 0, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510332, N鈥?/span>0-2妗╁熀閽㈢瓔鍔犲伐涓庡畨瑁?/span>鈥?/span>, N鈥?/span>01.01.01.01.01.03鈥?/span>, 510329, 3, 0, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510333, N鈥?/span>妗╁熀鐮兼祰绛?/span>鈥?/span>, N鈥?/span>01.01.01.01.02鈥?/span>, 510328, 2, 0, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510334, N鈥?/span>0-0妗╁熀鐮兼祰绛?/span>鈥?/span>, N鈥?/span>01.01.01.01.02.01鈥?/span>, 510333, 1, 0, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510335, N鈥?/span>0-1妗╁熀鐮兼祰绛?/span>鈥?/span>, N鈥?/span>01.01.01.01.02.02鈥?/span>, 510333, 2, 0, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510336, N鈥?/span>0-2妗╁熀鐮兼祰绛?/span>鈥?/span>, N鈥?/span>01.01.01.01.02.03鈥?/span>, 510333, 3, 0, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510337, N鈥?/span>鍙板附閽㈢瓔鍔犲伐鍙婂畨瑁?/span>鈥?/span>, N鈥?/span>01.01.01.01.03鈥?/span>, 510328, 3, 0, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510338, N鈥?/span>鍙板附鐮兼祰绛?/span>鈥?/span>, N鈥?/span>01.01.01.01.04鈥?/span>, 510328, 4, 0, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510339, N鈥?/span>鐗涜吙鑳屽閽㈢瓔鍔犲伐鍙婂畨瑁?/span>鈥?/span>, N鈥?/span>01.01.01.01.05鈥?/span>, 510328, 5, 0, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510340, N鈥?/span>鐗涜吙鑳屽鐮兼祰绛?/span>鈥?/span>, N鈥?/span>01.01.01.01.06鈥?/span>, 510328, 6, 0, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510341, N鈥?/span>鏀骇鍨煶閽㈢瓔鍔犲伐涓庡畨瑁?/span>鈥?/span>, N鈥?/span>01.01.01.01.07鈥?/span>, 510328, 7, 0, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510342, N鈥?/span>鏀骇鍨煶鐮兼祰绛?/span>鈥?/span>, N鈥?/span>01.01.01.01.08鈥?/span>, 510328, 8, 0, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510343, N鈥?/span>鎸″潡閽㈢瓔鍔犲伐涓庡畨瑁?/span>鈥?/span>, N鈥?/span>01.01.01.01.09鈥?/span>, 510328, 9, 0, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (510344, N鈥?/span>鎸″潡鐮兼祰绛?/span>鈥?/span>, N鈥?/span>01.01.01.01.10鈥?/span>, 510328, 10, 0, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) INSERT [dbo].[Projects7] ([Id], [ProjectName], [ProjectCode], [ParentId], [ProjectOrder], [IsEnabled], [OwnerId], [ConstructionId], [SupervisionId], [ContractId], [Level], [Quantity], [ComponentCode], [NComponentCode], [TaskStatus], [VersionIng], [FbxId], [Descrption], [PileNumber], [IsSubunit], [BiDSion], [ProjectType], [EquCode], [NextId], [MileageNo]) VALUES (511252, N鈥?/span>绗?8璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.38鈥?/span>,