diff --git a/d.ts/configs/ts/codeSearch.d.ts b/d.ts/configs/ts/codeSearch.d.ts
new file mode 100644
index 0000000..a90a739
--- /dev/null
+++ b/d.ts/configs/ts/codeSearch.d.ts
@@ -0,0 +1,8 @@
+///
+///
+///
+///
+///
+declare module Configs {
+ var CodeController: ng.IModule;
+}
diff --git a/d.ts/configs/ts/regionalismCodeSearch.d.ts b/d.ts/configs/ts/regionalismCodeSearch.d.ts
new file mode 100644
index 0000000..712469c
--- /dev/null
+++ b/d.ts/configs/ts/regionalismCodeSearch.d.ts
@@ -0,0 +1,8 @@
+///
+///
+///
+///
+///
+declare module Configs {
+ var RegionalismCodeController: ng.IModule;
+}
diff --git a/d.ts/configs/ts/systemCodeSearch.d.ts b/d.ts/configs/ts/systemCodeSearch.d.ts
new file mode 100644
index 0000000..175496f
--- /dev/null
+++ b/d.ts/configs/ts/systemCodeSearch.d.ts
@@ -0,0 +1,8 @@
+///
+///
+///
+///
+///
+declare module Configs {
+ var SystemCodeController: ng.IModule;
+}
diff --git a/plugins/configs/html/regionalismCodeSearch.html b/plugins/configs/html/regionalismCodeSearch.html
new file mode 100644
index 0000000..5b2375e
--- /dev/null
+++ b/plugins/configs/html/regionalismCodeSearch.html
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+ {{row.code}} |
+
+ {{row.cityName}} |
+
+ {{row.districtName}} |
+
+
+
+
+
+
diff --git a/plugins/configs/html/systemCodeSearch.html b/plugins/configs/html/systemCodeSearch.html
new file mode 100644
index 0000000..e36ad88
--- /dev/null
+++ b/plugins/configs/html/systemCodeSearch.html
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+ {{row.code}} |
+
+ {{row.systemName}} |
+
+
+
+
+
+
diff --git a/plugins/configs/ts/regionalismCodeSearch.ts b/plugins/configs/ts/regionalismCodeSearch.ts
new file mode 100644
index 0000000..4b438e5
--- /dev/null
+++ b/plugins/configs/ts/regionalismCodeSearch.ts
@@ -0,0 +1,18 @@
+///
+///
+///
+///
+///
+module Configs{
+
+ export var RegionalismCodeController = controller('RegionalismCodeController', ["$scope", "$templateCache", "$location", "$routeParams", "$http", "$timeout", 'ConfigsModel', 'NgTableParams',
+ ($scope, $templateCache:ng.ITemplateCacheService, $location, $routeParams, $http, $timeout, ConfigsModel, NgTableParams) =>{
+ $scope.subTabConfig = createConfigHelperNavBar($scope, $location, $routeParams);
+ $scope.model = ConfigsModel;
+
+ $scope.tableParams = new NgTableParams({count: 25}, {
+ counts: [25, 50, 100],
+ dataset: $scope.model.regionalismInfo
+ });
+ }]);
+}
\ No newline at end of file
diff --git a/plugins/configs/ts/systemCodeSearch.ts b/plugins/configs/ts/systemCodeSearch.ts
new file mode 100644
index 0000000..a1303b5
--- /dev/null
+++ b/plugins/configs/ts/systemCodeSearch.ts
@@ -0,0 +1,20 @@
+///
+///
+///
+///
+///
+module Configs{
+
+
+ export var SystemCodeController = controller('SystemCodeController', ["$scope", "$templateCache", "$location", "$routeParams", "$http", "$timeout", 'ConfigsModel', 'NgTableParams',
+ ($scope, $templateCache:ng.ITemplateCacheService, $location, $routeParams, $http, $timeout, ConfigsModel, NgTableParams) =>{
+ $scope.subTabConfig = createConfigHelperNavBar($scope, $location, $routeParams);
+
+ $scope.model = ConfigsModel;
+
+ $scope.tableParams = new NgTableParams({count: 25}, {
+ counts: [25, 50, 100],
+ dataset: $scope.model.systemInfo
+ });
+ }]);
+}
\ No newline at end of file