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>

鎶€鏈浘鐗? id=
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>, 510327, 38, 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 (511278, N鈥?/span>绗?9璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.39鈥?/span>, 510327, 39, 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 (511359, N鈥?/span>妗ラ潰绯汇€侀檮灞炲伐绋嬪強妗ユ鎬讳綋鈥?/span>, N鈥?/span>01.01.01.45鈥?/span>, 510327, 45, 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 (529159, N鈥?/span>楂樺娌熷ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.02.09鈥?/span>, 510323, 9, 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 (510486, N鈥?/span>7#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.08鈥?/span>, 510327, 8, 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 (510509, N鈥?/span>8#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.09鈥?/span>, 510327, 9, 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 (510740, N鈥?/span>17#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.18鈥?/span>, 510327, 18, 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 (510767, N鈥?/span>18#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.19鈥?/span>, 510327, 19, 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 (510790, N鈥?/span>19#鍙板熀纭€鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.20鈥?/span>, 510327, 20, 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 (510862, N鈥?/span>绗?璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.23鈥?/span>, 510327, 23, 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 (511018, N鈥?/span>绗?璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.29鈥?/span>, 510327, 29, 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 (510345, N鈥?/span>鑰冲閽㈢瓔鍔犲伐涓庡畨瑁?/span>鈥?/span>, N鈥?/span>01.01.01.01.11鈥?/span>, 510328, 11, 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 (510346, N鈥?/span>鑰冲鐮兼祰绛?/span>鈥?/span>, N鈥?/span>01.01.01.01.12鈥?/span>, 510328, 12, 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 (510347, N鈥?/span>鍙拌儗鍥炲~鈥?/span>, N鈥?/span>01.01.01.01.13鈥?/span>, 510328, 13, 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 (510348, N鈥?/span>1#澧╁熀纭€鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.02鈥?/span>, 510327, 2, 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 (510371, N鈥?/span>2#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.03鈥?/span>, 510327, 3, 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 (511226, N鈥?/span>绗?7璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.37鈥?/span>, 510327, 37, 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 (512579, N鈥?/span>鐧借尐娌熶竴鍙峰ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.01.03鈥?/span>, 510322, 3, 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 (510686, N鈥?/span>15#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.16鈥?/span>, 510327, 16, 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 (510713, N鈥?/span>16#澧╁ⅸ鍩虹鍙婁笅閮ㄦ瀯閫?/span>鈥?/span>, N鈥?/span>01.01.01.17鈥?/span>, 510327, 17, 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 (510940, N鈥?/span>绗?璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.26鈥?/span>, 510327, 26, 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 (510966, N鈥?/span>绗?璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.27鈥?/span>, 510327, 27, 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 (515307, N鈥?/span>绾㈠矘瀛愬ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.01.08鈥?/span>, 510322, 8, 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 (514811, N鈥?/span>绾㈠矘瀛愬ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.01.07鈥?/span>, 510322, 7, 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 (511174, N鈥?/span>绗?5璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.35鈥?/span>, 510327, 35, 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 (511200, N鈥?/span>绗?6璺ㄤ笂閮ㄦ瀯閫犻鍒跺拰瀹夎鈥?/span>, N鈥?/span>01.01.01.36鈥?/span>, 510327, 36, 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 (510321, N鈥?/span>鍏板窞涓€氶亾鈥?/span>, N鈥?/span>01鈥?/span>, 0, 1, 0, NULL, NULL, NULL, NULL, 1, 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 (515795, N鈥?/span>榫欑帇搴欑壒澶фˉ宸﹀箙鈥?/span>, N鈥?/span>01.01.09鈥?/span>, 510322, 9, 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 (514141, N鈥?/span>澶ч亾宀瓙涓€鍙峰ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.01.06鈥?/span>, 510322, 6, 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 (535921, N鈥?/span>澶ф矙娌熷ぇ妗?/span>鈥?/span>, N鈥?/span>01.03.07鈥?/span>, 510324, 7, 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 (529935, N鈥?/span>楂樺娌熷ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.02.10鈥?/span>, 510323, 10, 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 (540299, N鈥?/span>涓夊潽鏉戝ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.03.09鈥?/span>, 510324, 9, 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 (517765, N鈥?/span>榫欑帇搴欑壒澶фˉ鍙冲箙鈥?/span>, N鈥?/span>01.01.10鈥?/span>, 510322, 10, 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 (519809, N鈥?/span>骞冲矘娌熷ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.01.11鈥?/span>, 510322, 11, 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 (520249, N鈥?/span>骞冲矘娌熷ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.01.12鈥?/span>, 510322, 12, 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 (520693, N鈥?/span>灏忛亾宀瓙澶фˉ宸﹀箙鈥?/span>, N鈥?/span>01.01.13鈥?/span>, 510322, 13, 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 (521127, N鈥?/span>灏忛亾宀瓙澶фˉ鍙冲箙鈥?/span>, N鈥?/span>01.01.14鈥?/span>, 510322, 14, 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 (521601, N鈥?/span>鏂板尯鍗椾簰閫氬紡绔嬩氦B鍖濋亾1鍙锋ˉ鈥?/span>, N鈥?/span>01.01.15鈥?/span>, 510322, 15, 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 (521831, N鈥?/span>鏂板尯鍗椾簰閫氬紡绔嬩氦B鍖濋亾2鍙锋ˉ鈥?/span>, N鈥?/span>01.01.16鈥?/span>, 510322, 16, 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 (522261, N鈥?/span>鏂板尯鍗椾簰閫氬紡绔嬩氦C鍖濋亾妗?/span>鈥?/span>, N鈥?/span>01.01.17鈥?/span>, 510322, 17, 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 (522425, N鈥?/span>鏂板尯鍗椾簰閫氬紡绔嬩氦D鍖濋亾妗?/span>鈥?/span>, N鈥?/span>01.01.18鈥?/span>, 510322, 18, 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 (523116, N鈥?/span>闄堝婀惧ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.02.01鈥?/span>, 510323, 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 (523798, N鈥?/span>闄堝婀惧ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.02.02鈥?/span>, 510323, 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 (524470, N鈥?/span>涓夐亾婀惧ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.02.03鈥?/span>, 510323, 3, 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 (525472, N鈥?/span>涓夐亾婀惧ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.02.04鈥?/span>, 510323, 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 (526311, N鈥?/span>璺ㄨ繛闇嶉珮閫熷ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.02.05鈥?/span>, 510323, 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 (526957, N鈥?/span>璺ㄨ繛闇嶉珮閫熷ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.02.06鈥?/span>, 510323, 6, 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 (527631, N鈥?/span>閽卞绐戝ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.02.07鈥?/span>, 510323, 7, 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 (528395, N鈥?/span>閽卞绐戝ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.02.08鈥?/span>, 510323, 8, 0, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
GO
print 鈥?/span>Processed 100 total records鈥?/span>
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 (541384, N鈥?/span>涓夊潽鏉戝ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.03.10鈥?/span>, 510324, 10, 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 (542509, N鈥?/span>鐜嬪鍧笁鍙峰ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.03.11鈥?/span>, 510324, 11, 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 (543544, N鈥?/span>鐜嬪鍧笁鍙峰ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.03.12鈥?/span>, 510324, 12, 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 (530661, N鈥?/span>楂樺北鏉戝ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.02.11鈥?/span>, 510323, 11, 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 (530931, N鈥?/span>楂樺北鏉戝ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.02.12鈥?/span>, 510323, 12, 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 (531195, N鈥?/span>闄堝婀炬灑绾戒簰閫氬紡绔嬩氦D鍖濋亾妗?/span>鈥?/span>, N鈥?/span>01.02.13鈥?/span>, 510323, 13, 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 (531283, N鈥?/span>闄堝婀炬灑绾戒簰閫氬紡绔嬩氦L鍖濋亾妗?/span>鈥?/span>, N鈥?/span>01.02.14鈥?/span>, 510323, 14, 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 (531843, N鈥?/span>澶存矡鏉戝ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.02.15鈥?/span>, 510323, 15, 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 (532285, N鈥?/span>澶存矡鏉戝ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.02.16鈥?/span>, 510323, 16, 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 (532728, N鈥?/span>浠佸灞卞ぇ妗ュ乏骞?/span>鈥?/span>, N鈥?/span>01.03.01鈥?/span>, 510324, 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 (533667, N鈥?/span>浠佸灞卞ぇ妗ュ彸骞?/span>鈥?/span>, N鈥?/span>01.03.02鈥?/span>, 510324, 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 (534640, N鈥?/span>浠佸灞变簰閫欱鍖濋亾妗?/span>鈥?/span>, N鈥?/span>01.03.03鈥?/span>, 510324, 3, 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 (535040, N鈥?/span>浠佸灞变簰閫氱背鍦版矡浜屽彿澶фˉ(鍖楃幆璺?鈥?/span>, N鈥?/span>01.03.04鈥?/span>, 510324, 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 (535446, N鈥?/span>鐜嬪鍧簰閫欱鍖濋亾妗?/span>鈥?/span>, N鈥?/span>01.03.05鈥?/span>, 510324, 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 (535802, N鈥?/span>鐜嬪鍧簰閫欵鍖濋亾1鍙锋ˉ鈥?/span>, N鈥?/span>01.03.06鈥?/span>, 510324, 6, 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 (538082, N鈥?/span>澶ф矙娌熶簩鍙峰ぇ妗?/span>鈥?/span>, N鈥?/span>01.03.08鈥?/span>, 510324, 8, 0, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
View Code

 

 

鏁版嵁-棰勮锛?/p>

鎶€鏈浘鐗? src=

 

以上是关于JQuery/JS鎻掍欢 jsTree鍔犺浇鏍戯紝鍒濆鍖栨椂鍔犺浇鍓嶄笁绾ц妭鐐癸紝褰撳睍寮€绗笁绾ц妭鐐规椂 灏卞姞杞借鑺傜偣涓嬬殑鎵€鏈夊瓙鑺傜偣的主要内容,如果未能解决你的问题,请参考以下文章

UE4鎻掍欢

Springboot鑷姩鍔犺浇宸ュ叿-devtools鐨勭悊瑙d笌浣跨敤

ES鎻掍欢瀹夎

Apicloud鈥斺€擭VTabBarAnimation鎻掍欢

绠€璁?jQuery 鎻掍欢妯℃澘

logstash甯哥敤鎻掍欢瑙f瀽