USE [imei8com]
GO
/****** Object: Table [dbo].[Zone] ScriptDate: 03/12/2014 15:05:41 ******/
SET ANSI_NULLSON
GO
SET QUOTED_IDENTIFIERON
GO
CREATE TABLE [dbo].[Zone](
[ZoneId] [int] IDENTITY(1,1)NOT NULL,
[ZoneName] [nvarchar](max)NULL,
[ZoneDescription] [nvarchar](max)NULL,
[IsDel] [int]NULL,
CONSTRAINT [PK__Zone__0425A276]PRIMARY KEY CLUSTERED
(
[ZoneId]ASC
)WITH (PAD_INDEX =OFF, STATISTICS_NORECOMPUTE =OFF, IGNORE_DUP_KEY =OFF, ALLOW_ROW_LOCKS =ON, ALLOW_PAGE_LOCKS =ON)ON [PRIMARY]
)ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[Zone]ON
INSERT [dbo].[Zone] ([ZoneId], [ZoneName], [ZoneDescription], [IsDel])VALUES (1, N'华北地区', N'北京市、天津市、河北省、山西省、内蒙古自治区',NULL)
INSERT [dbo].[Zone] ([ZoneId], [ZoneName], [ZoneDescription], [IsDel])VALUES (2, N'东北地区', N'辽宁省、吉林省、黑龙江省',NULL)
INSERT [dbo].[Zone] ([ZoneId], [ZoneName], [ZoneDescription], [IsDel])VALUES (3, N'华东地区', N'上海市、江苏省、浙江省、安徽省、福建省、江西省、山东省',NULL)
INSERT [dbo].[Zone] ([ZoneId], [ZoneName], [ZoneDescription], [IsDel])VALUES (4, N'中南地区', N'河南省、湖北省、湖南省、广东省、海南省、广西壮族自治区',NULL)
INSERT [dbo].[Zone] ([ZoneId], [ZoneName], [ZoneDescription], [IsDel])VALUES (5, N'西南地区', N'重庆市、四川省、贵州省、云南省、西藏自治区',NULL)
INSERT [dbo].[Zone] ([ZoneId], [ZoneName], [ZoneDescription], [IsDel])VALUES (6, N'西北地区', N'陕西省、甘肃省、青海省、宁夏回族自治区、新疆维吾尔自治区',NULL)
INSERT [dbo].[Zone] ([ZoneId], [ZoneName], [ZoneDescription], [IsDel])VALUES (7, N'东南地区', N'江、浙、沪、福建、台湾',NULL)
INSERT [dbo].[Zone] ([ZoneId], [ZoneName], [ZoneDescription], [IsDel])VALUES (8, N'其他', N'香港,澳门',NULL)
SET IDENTITY_INSERT [dbo].[Zone]OFF
/****** Object: Table [dbo].[ProvinceModel] ScriptDate: 03/12/2014 15:05:41 ******/
SET ANSI_NULLSON
GO
SET QUOTED_IDENTIFIERON
GO
CREATE TABLE [dbo].[ProvinceModel](
[ProvinceId] [bigint] IDENTITY(1,1)NOT NULL,
[ProvinceName] [nvarchar](50)NULL,
[ZoneId] [int]NULL,
[IsDel] [int]NULL,
CONSTRAINT [PK_ProvinceModel]PRIMARY KEY CLUSTERED
(
[ProvinceId]ASC
)WITH (PAD_INDEX =OFF, STATISTICS_NORECOMPUTE =OFF, IGNORE_DUP_KEY =OFF, ALLOW_ROW_LOCKS =ON, ALLOW_PAGE_LOCKS =ON)ON [PRIMARY]
)ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[ProvinceModel]ON
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (1, N'北京市', 1,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (2, N'天津市', 1,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (3, N'河北省', 1,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (4, N'山西省', 1,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (5, N'内蒙古自治区', 1,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (6, N'辽宁省', 2,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (7, N'吉林省', 2,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (8, N'黑龙江省', 2,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (9, N'上海市', 7,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (10, N'江苏省', 7,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (11, N'浙江省', 7,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (12, N'安徽省', 3,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (13, N'福建省', 7,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (14, N'江西省', 3,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (15, N'山东省', 3,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (16, N'河南省', 4,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (17, N'湖北省', 4,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (18, N'湖南省', 4,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (19, N'广东省', 4,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (20, N'广西壮族自治区', 4,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (21, N'海南省', 4,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (22, N'重庆市', 5,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (23, N'四川省', 5,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (24, N'贵州省', 5,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (25, N'云南省', 5,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (26, N'西藏自治区', 5,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (27, N'陕西省', 6,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (28, N'甘肃省', 6,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (29, N'青海省', 6,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (30, N'宁夏回族自治区', 6,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (31, N'新疆维吾尔自治区', 6,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (32, N'香港特别行政区', 8,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (33, N'澳门特别行政区', 8,NULL)
INSERT [dbo].[ProvinceModel] ([ProvinceId], [ProvinceName], [ZoneId], [IsDel])VALUES (34, N'台湾省', 7,NULL)
SET IDENTITY_INSERT [dbo].[ProvinceModel]OFF
/****** Object: Table [dbo].[DistrictModel] ScriptDate: 03/12/2014 15:05:41 ******/
SET ANSI_NULLSON
GO
SET QUOTED_IDENTIFIERON
GO
CREATE TABLE [dbo].[DistrictModel](
[DistrictModelId] [bigint] IDENTITY(1,1)NOT NULL,
[DistrictName] [nvarchar](50)NULL,
[CityID] [bigint]NULL,
[IsDel] [int]NULL,
CONSTRAINT [PK_DistrictModel]PRIMARY KEY CLUSTERED
(
[DistrictModelId]ASC
)WITH (PAD_INDEX =OFF, STATISTICS_NORECOMPUTE =OFF, IGNORE_DUP_KEY =OFF, ALLOW_ROW_LOCKS =ON, ALLOW_PAGE_LOCKS =ON)ON [PRIMARY]
)ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[DistrictModel]ON
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (1, N'东城区', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (2, N'西城区', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (5, N'朝阳区', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (6, N'丰台区', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (7, N'石景山区', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (8, N'海淀区', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (9, N'门头沟区', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (10, N'房山区', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (11, N'通州区', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (12, N'顺义区', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (13, N'昌平区', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (14, N'大兴区', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (15, N'怀柔区', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (16, N'平谷区', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (17, N'密云县', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (18, N'延庆县', 1,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (19, N'和平区', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (20, N'河东区', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (21, N'河西区', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (22, N'南开区', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (23, N'河北区', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (24, N'红桥区', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (28, N'东丽区', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (29, N'西青区', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (30, N'津南区', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (31, N'北辰区', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (32, N'武清区', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (33, N'宝坻区', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (34, N'宁河县', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (35, N'静海县', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (36, N'蓟县', 2,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (37, N'长安区', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (38, N'桥东区', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (39, N'桥西区', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (40, N'新华区', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (41, N'井陉矿区', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (42, N'裕华区', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (43, N'井陉县', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (44, N'正定县', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (45, N'栾城县', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (46, N'行唐县', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (47, N'灵寿县', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (48, N'高邑县', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (49, N'深泽县', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (50, N'赞皇县', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (51, N'无极县', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (52, N'平山县', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (53, N'元氏县', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (54, N'赵县', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (55, N'辛集市', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (56, N'藁城市', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (57, N'晋州市', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (58, N'新乐市', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (59, N'鹿泉市', 3,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (60, N'路南区', 4,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (61, N'路北区', 4,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (62, N'古冶区', 4,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (63, N'开平区', 4,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (64, N'丰南区', 4,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (65, N'丰润区', 4,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (66, N'滦县', 4,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (67, N'滦南县', 4,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (68, N'乐亭县', 4,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (69, N'迁西县', 4,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (70, N'玉田县', 4,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (72, N'遵化市', 4,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (73, N'迁安市', 4,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (74, N'海港区', 5,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (75, N'山海关区', 5,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (76, N'北戴河区', 5,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (77, N'青龙满族自治县', 5,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (78, N'昌黎县', 5,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (79, N'抚宁县', 5,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (80, N'卢龙县', 5,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (81, N'邯山区', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (82, N'丛台区', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (83, N'复兴区', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (84, N'峰峰矿区', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (85, N'邯郸县', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (86, N'临漳县', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (87, N'成安县', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (88, N'大名县', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (89, N'涉县', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (90, N'磁县', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (91, N'肥乡县', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (92, N'永年县', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (93, N'邱县', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (94, N'鸡泽县', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (95, N'广平县', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (96, N'馆陶县', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (97, N'魏县', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (98, N'曲周县', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (99, N'武安市', 6,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (100, N'桥东区', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (101, N'桥西区', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (102, N'邢台县', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (103, N'临城县', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (104, N'内丘县', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (105, N'柏乡县', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (106, N'隆尧县', 7,NULL)
GO
print'Processed 100 total records'
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (107, N'任县', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (108, N'南和县', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (109, N'宁晋县', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (110, N'巨鹿县', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (111, N'新河县', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (112, N'广宗县', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (113, N'平乡县', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (114, N'威县', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (115, N'清河县', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (116, N'临西县', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (117, N'南宫市', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (118, N'沙河市', 7,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (119, N'新市区', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (120, N'北市区', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (121, N'南市区', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (122, N'满城县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (123, N'清苑县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (124, N'涞水县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (125, N'阜平县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (126, N'徐水县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (127, N'定兴县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (128, N'唐县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (129, N'高阳县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (130, N'容城县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (131, N'涞源县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (132, N'望都县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (133, N'安新县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (134, N'易县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (135, N'曲阳县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (136, N'蠡县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (137, N'顺平县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (138, N'博野县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (139, N'雄县', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (140, N'涿州市', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (141, N'定州市', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (142, N'安国市', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (143, N'高碑店市', 8,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (144, N'桥东区', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (145, N'桥西区', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (146, N'宣化区', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (147, N'下花园区', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (148, N'宣化县', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (149, N'张北县', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (150, N'康保县', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (151, N'沽源县', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (152, N'尚义县', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (153, N'蔚县', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (154, N'阳原县', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (155, N'怀安县', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (156, N'万全县', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (157, N'怀来县', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (158, N'涿鹿县', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (159, N'赤城县', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (160, N'崇礼县', 9,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (161, N'双桥区', 10,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (162, N'双滦区', 10,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (163, N'鹰手营子矿区', 10,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (164, N'承德县', 10,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (165, N'兴隆县', 10,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (166, N'平泉县', 10,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (167, N'滦平县', 10,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (168, N'隆化县', 10,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (169, N'丰宁满族自治县', 10,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (170, N'宽城满族自治县', 10,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (171, N'围场满族蒙古族自治县', 10,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (172, N'新华区', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (173, N'运河区', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (174, N'沧县', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (175, N'青县', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (176, N'东光县', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (177, N'海兴县', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (178, N'盐山县', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (179, N'肃宁县', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (180, N'南皮县', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (181, N'吴桥县', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (182, N'献县', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (183, N'孟村回族自治县', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (184, N'泊头市', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (185, N'任丘市', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (186, N'黄骅市', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (187, N'河间市', 11,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (188, N'安次区', 12,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (189, N'广阳区', 12,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (190, N'固安县', 12,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (191, N'永清县', 12,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (192, N'香河县', 12,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (193, N'大城县', 12,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (194, N'文安县', 12,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (195, N'大厂回族自治县', 12,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (196, N'霸州市', 12,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (197, N'三河市', 12,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (198, N'桃城区', 13,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (199, N'枣强县', 13,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (200, N'武邑县', 13,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (201, N'武强县', 13,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (202, N'饶阳县', 13,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (203, N'安平县', 13,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (204, N'故城县', 13,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (205, N'景县', 13,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (206, N'阜城县', 13,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (207, N'冀州市', 13,NULL)
GO
print'Processed 200 total records'
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (208, N'深州市', 13,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (209, N'小店区', 14,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (210, N'迎泽区', 14,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (211, N'杏花岭区', 14,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (212, N'尖草坪区', 14,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (213, N'万柏林区', 14,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (214, N'晋源区', 14,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (215, N'清徐县', 14,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (216, N'阳曲县', 14,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (217, N'娄烦县', 14,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (218, N'古交市', 14,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (219, N'城区', 15,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (220, N'矿区', 15,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (221, N'南郊区', 15,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (222, N'新荣区', 15,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (223, N'阳高县', 15,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (224, N'天镇县', 15,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (225, N'广灵县', 15,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (226, N'灵丘县', 15,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (227, N'浑源县', 15,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (228, N'左云县', 15,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (229, N'大同县', 15,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (230, N'城区', 16,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (231, N'矿区', 16,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (232, N'郊区', 16,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (233, N'平定县', 16,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (234, N'盂县', 16,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (235, N'城区', 17,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (236, N'郊区', 17,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (237, N'长治县', 17,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (238, N'襄垣县', 17,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (239, N'屯留县', 17,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (240, N'平顺县', 17,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (241, N'黎城县', 17,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (242, N'壶关县', 17,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (243, N'长子县', 17,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (244, N'武乡县', 17,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (245, N'沁县', 17,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (246, N'沁源县', 17,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (247, N'潞城市', 17,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (248, N'城区', 18,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (249, N'沁水县', 18,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (250, N'阳城县', 18,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (251, N'陵川县', 18,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (252, N'泽州县', 18,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (253, N'高平市', 18,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (254, N'朔城区', 19,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (255, N'平鲁区', 19,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (256, N'山阴县', 19,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (257, N'应县', 19,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (258, N'右玉县', 19,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (259, N'怀仁县', 19,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (260, N'榆次区', 20,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (261, N'榆社县', 20,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (262, N'左权县', 20,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (263, N'和顺县', 20,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (264, N'昔阳县', 20,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (265, N'寿阳县', 20,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (266, N'太谷县', 20,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (267, N'祁县', 20,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (268, N'平遥县', 20,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (269, N'灵石县', 20,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (270, N'介休市', 20,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (271, N'盐湖区', 21,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (272, N'临猗县', 21,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (273, N'万荣县', 21,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (274, N'闻喜县', 21,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (275, N'稷山县', 21,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (276, N'新绛县', 21,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (277, N'绛县', 21,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (278, N'垣曲县', 21,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (279, N'夏县', 21,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (280, N'平陆县', 21,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (281, N'芮城县', 21,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (282, N'永济市', 21,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (283, N'河津市', 21,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (284, N'忻府区', 22,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (285, N'定襄县', 22,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (286, N'五台县', 22,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (287, N'代县', 22,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (288, N'繁峙县', 22,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (289, N'宁武县', 22,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (290, N'静乐县', 22,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (291, N'神池县', 22,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (292, N'五寨县', 22,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (293, N'岢岚县', 22,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (294, N'河曲县', 22,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (295, N'保德县', 22,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (296, N'偏关县', 22,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (297, N'原平市', 22,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (298, N'尧都区', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (299, N'曲沃县', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (300, N'翼城县', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (301, N'襄汾县', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (302, N'洪洞县', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (303, N'古县', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (304, N'安泽县', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (305, N'浮山县', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (306, N'吉县', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (307, N'乡宁县', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (308, N'大宁县', 23,NULL)
GO
print'Processed 300 total records'
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (309, N'隰县', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (310, N'永和县', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (311, N'蒲县', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (312, N'汾西县', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (313, N'侯马市', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (314, N'霍州市', 23,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (315, N'离石区', 24,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (316, N'文水县', 24,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (317, N'交城县', 24,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (318, N'兴县', 24,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (319, N'临县', 24,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (320, N'柳林县', 24,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (321, N'石楼县', 24,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (322, N'岚县', 24,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (323, N'方山县', 24,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (324, N'中阳县', 24,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (325, N'交口县', 24,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (326, N'孝义市', 24,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (327, N'汾阳市', 24,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (328, N'新城区', 25,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (329, N'回民区', 25,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (330, N'玉泉区', 25,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (331, N'赛罕区', 25,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (332, N'土默特左旗', 25,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (333, N'托克托县', 25,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (334, N'和林格尔县', 25,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (335, N'清水河县', 25,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (336, N'武川县', 25,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (337, N'东河区', 26,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (338, N'昆都仑区', 26,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (339, N'青山区', 26,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (340, N'石拐区', 26,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (341, N'白云鄂博矿区', 26,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (342, N'九原区', 26,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (343, N'土默特右旗', 26,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (344, N'固阳县', 26,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (345, N'达尔罕茂明安联合旗', 26,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (346, N'海勃湾区', 27,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (347, N'海南区', 27,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (348, N'乌达区', 27,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (349, N'红山区', 28,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (350, N'元宝山区', 28,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (351, N'松山区', 28,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (352, N'阿鲁科尔沁旗', 28,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (353, N'巴林左旗', 28,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (354, N'巴林右旗', 28,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (355, N'林西县', 28,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (356, N'克什克腾旗', 28,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (357, N'翁牛特旗', 28,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (358, N'喀喇沁旗', 28,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (359, N'宁城县', 28,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (360, N'敖汉旗', 28,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (361, N'科尔沁区', 29,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (362, N'科尔沁左翼中旗', 29,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (363, N'科尔沁左翼后旗', 29,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (364, N'开鲁县', 29,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (365, N'库伦旗', 29,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (366, N'奈曼旗', 29,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (367, N'扎鲁特旗', 29,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (368, N'霍林郭勒市', 29,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (369, N'东胜区', 30,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (370, N'达拉特旗', 30,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (371, N'准格尔旗', 30,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (372, N'鄂托克前旗', 30,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (373, N'鄂托克旗', 30,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (374, N'杭锦旗', 30,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (375, N'乌审旗', 30,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (376, N'伊金霍洛旗', 30,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (377, N'海拉尔区', 31,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (378, N'阿荣旗', 31,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (379, N'莫力达瓦达斡尔族自治旗', 31,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (380, N'鄂伦春自治旗', 31,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (381, N'鄂温克族自治旗', 31,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (382, N'陈巴尔虎旗', 31,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (383, N'新巴尔虎左旗', 31,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (384, N'新巴尔虎右旗', 31,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (385, N'满洲里市', 31,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (386, N'牙克石市', 31,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (387, N'扎兰屯市', 31,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (388, N'额尔古纳市', 31,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (389, N'根河市', 31,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (390, N'临河区', 32,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (391, N'五原县', 32,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (392, N'磴口县', 32,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (393, N'乌拉特前旗', 32,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (394, N'乌拉特中旗', 32,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (395, N'乌拉特后旗', 32,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (396, N'杭锦后旗', 32,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (397, N'集宁区', 33,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (398, N'卓资县', 33,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (399, N'化德县', 33,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (400, N'商都县', 33,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (401, N'兴和县', 33,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (402, N'凉城县', 33,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (403, N'察哈尔右翼前旗', 33,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (404, N'察哈尔右翼中旗', 33,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (405, N'察哈尔右翼后旗', 33,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (406, N'四子王旗', 33,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (407, N'丰镇市', 33,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (408, N'乌兰浩特市', 34,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (409, N'阿尔山市', 34,NULL)
GO
print'Processed 400 total records'
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (410, N'科尔沁右翼前旗', 34,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (411, N'科尔沁右翼中旗', 34,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (412, N'扎赉特旗', 34,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (413, N'突泉县', 34,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (414, N'二连浩特市', 35,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (415, N'锡林浩特市', 35,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (416, N'阿巴嘎旗', 35,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (417, N'苏尼特左旗', 35,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (418, N'苏尼特右旗', 35,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (419, N'东乌珠穆沁旗', 35,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (420, N'西乌珠穆沁旗', 35,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (421, N'太仆寺旗', 35,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (422, N'镶黄旗', 35,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (423, N'正镶白旗', 35,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (424, N'正蓝旗', 35,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (425, N'多伦县', 35,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (426, N'阿拉善左旗', 36,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (427, N'阿拉善右旗', 36,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (428, N'额济纳旗', 36,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (429, N'和平区', 37,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (430, N'沈河区', 37,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (431, N'大东区', 37,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (432, N'皇姑区', 37,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (433, N'铁西区', 37,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (434, N'苏家屯区', 37,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (435, N'东陵区', 37,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (436, N'沈北新区', 37,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (437, N'于洪区', 37,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (438, N'辽中县', 37,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (439, N'康平县', 37,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (440, N'法库县', 37,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (441, N'新民市', 37,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (442, N'中山区', 38,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (443, N'西岗区', 38,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (444, N'沙河口区', 38,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (445, N'甘井子区', 38,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (446, N'旅顺口区', 38,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (447, N'金州区', 38,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (448, N'长海县', 38,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (449, N'瓦房店市', 38,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (450, N'普兰店市', 38,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (451, N'庄河市', 38,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (452, N'铁东区', 39,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (453, N'铁西区', 39,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (454, N'立山区', 39,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (455, N'千山区', 39,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (456, N'台安县', 39,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (457, N'岫岩满族自治县', 39,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (458, N'海城市', 39,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (459, N'新抚区', 40,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (460, N'东洲区', 40,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (461, N'望花区', 40,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (462, N'顺城区', 40,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (463, N'抚顺县', 40,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (464, N'新宾满族自治县', 40,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (465, N'清原满族自治县', 40,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (466, N'平山区', 41,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (467, N'溪湖区', 41,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (468, N'明山区', 41,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (469, N'南芬区', 41,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (470, N'本溪满族自治县', 41,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (471, N'桓仁满族自治县', 41,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (472, N'元宝区', 42,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (473, N'振兴区', 42,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (474, N'振安区', 42,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (475, N'宽甸满族自治县', 42,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (476, N'东港市', 42,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (477, N'凤城市', 42,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (478, N'古塔区', 43,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (479, N'凌河区', 43,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (480, N'太和区', 43,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (481, N'黑山县', 43,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (482, N'义县', 43,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (483, N'凌海市', 43,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (484, N'北镇市', 43,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (485, N'站前区', 44,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (486, N'西市区', 44,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (487, N'鲅鱼圈区', 44,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (488, N'老边区', 44,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (489, N'盖州市', 44,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (490, N'大石桥市', 44,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (491, N'海州区', 45,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (492, N'新邱区', 45,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (493, N'太平区', 45,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (494, N'清河门区', 45,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (495, N'细河区', 45,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (496, N'阜新蒙古族自治县', 45,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (497, N'彰武县', 45,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (498, N'白塔区', 46,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (499, N'文圣区', 46,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (500, N'宏伟区', 46,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (501, N'弓长岭区', 46,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (502, N'太子河区', 46,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (503, N'辽阳县', 46,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (504, N'灯塔市', 46,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (505, N'双台子区', 47,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (506, N'兴隆台区', 47,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (507, N'大洼县', 47,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (508, N'盘山县', 47,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (509, N'银州区', 48,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (510, N'清河区', 48,NULL)
GO
print'Processed 500 total records'
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (511, N'铁岭县', 48,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (512, N'西丰县', 48,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (513, N'昌图县', 48,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (514, N'调兵山市', 48,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (515, N'开原市', 48,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (516, N'双塔区', 49,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (517, N'龙城区', 49,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (518, N'朝阳县', 49,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (519, N'建平县', 49,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (520, N'喀喇沁左翼蒙古族自治县', 49,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (521, N'北票市', 49,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (522, N'凌源市', 49,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (523, N'连山区', 50,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (524, N'龙港区', 50,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (525, N'南票区', 50,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (526, N'绥中县', 50,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (527, N'建昌县', 50,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (528, N'兴城市', 50,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (529, N'南关区', 51,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (530, N'宽城区', 51,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (531, N'朝阳区', 51,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (532, N'二道区', 51,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (533, N'绿园区', 51,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (534, N'双阳区', 51,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (535, N'农安县', 51,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (536, N'九台市', 51,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (537, N'榆树市', 51,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (538, N'德惠市', 51,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (539, N'昌邑区', 52,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (540, N'龙潭区', 52,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (541, N'船营区', 52,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (542, N'丰满区', 52,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (543, N'永吉县', 52,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (544, N'蛟河市', 52,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (545, N'桦甸市', 52,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (546, N'舒兰市', 52,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (547, N'磐石市', 52,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (548, N'铁西区', 53,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (549, N'铁东区', 53,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (550, N'梨树县', 53,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (551, N'伊通满族自治县', 53,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (552, N'公主岭市', 53,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (553, N'双辽市', 53,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (554, N'龙山区', 54,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (555, N'西安区', 54,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (556, N'东丰县', 54,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (557, N'东辽县', 54,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (558, N'东昌区', 55,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (559, N'二道江区', 55,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (560, N'通化县', 55,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (561, N'辉南县', 55,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (562, N'柳河县', 55,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (563, N'梅河口市', 55,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (564, N'集安市', 55,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (565, N'浑江区', 56,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (566, N'江源区', 56,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (567, N'抚松县', 56,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (568, N'长白朝鲜族自治县', 56,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (569, N'靖宇县', 56,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (570, N'临江市', 56,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (571, N'宁江区', 57,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (572, N'前郭尔罗斯蒙古族自治县', 57,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (573, N'长岭县', 57,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (574, N'乾安县', 57,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (575, N'扶余县', 57,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (576, N'洮北区', 58,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (577, N'镇赉县', 58,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (578, N'通榆县', 58,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (579, N'洮南市', 58,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (580, N'大安市', 58,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (581, N'延吉市', 59,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (582, N'图们市', 59,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (583, N'敦化市', 59,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (584, N'珲春市', 59,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (585, N'龙井市', 59,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (586, N'和龙市', 59,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (587, N'汪清县', 59,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (588, N'安图县', 59,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (589, N'道里区', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (590, N'南岗区', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (591, N'道外区', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (592, N'香坊区', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (594, N'平房区', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (595, N'松北区', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (596, N'呼兰区', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (597, N'依兰县', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (598, N'方正县', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (599, N'宾县', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (600, N'巴彦县', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (601, N'木兰县', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (602, N'通河县', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (603, N'延寿县', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (604, N'阿城区', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (605, N'双城市', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (606, N'尚志市', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (607, N'五常市', 60,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (608, N'龙沙区', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (609, N'建华区', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (610, N'铁锋区', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (611, N'昂昂溪区', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (612, N'富拉尔基区', 61,NULL)
GO
print'Processed 600 total records'
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (613, N'碾子山区', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (614, N'梅里斯达斡尔族区', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (615, N'龙江县', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (616, N'依安县', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (617, N'泰来县', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (618, N'甘南县', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (619, N'富裕县', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (620, N'克山县', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (621, N'克东县', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (622, N'拜泉县', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (623, N'讷河市', 61,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (624, N'鸡冠区', 62,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (625, N'恒山区', 62,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (626, N'滴道区', 62,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (627, N'梨树区', 62,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (628, N'城子河区', 62,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (629, N'麻山区', 62,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (630, N'鸡东县', 62,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (631, N'虎林市', 62,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (632, N'密山市', 62,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (633, N'向阳区', 63,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (634, N'工农区', 63,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (635, N'南山区', 63,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (636, N'兴安区', 63,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (637, N'东山区', 63,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (638, N'兴山区', 63,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (639, N'萝北县', 63,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (640, N'绥滨县', 63,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (641, N'尖山区', 64,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (642, N'岭东区', 64,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (643, N'四方台区', 64,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (644, N'宝山区', 64,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (645, N'集贤县', 64,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (646, N'友谊县', 64,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (647, N'宝清县', 64,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (648, N'饶河县', 64,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (649, N'萨尔图区', 65,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (650, N'龙凤区', 65,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (651, N'让胡路区', 65,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (652, N'红岗区', 65,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (653, N'大同区', 65,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (654, N'肇州县', 65,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (655, N'肇源县', 65,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (656, N'林甸县', 65,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (657, N'杜尔伯特蒙古族自治县', 65,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (658, N'伊春区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (659, N'南岔区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (660, N'友好区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (661, N'西林区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (662, N'翠峦区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (663, N'新青区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (664, N'美溪区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (665, N'金山屯区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (666, N'五营区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (667, N'乌马河区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (668, N'汤旺河区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (669, N'带岭区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (670, N'乌伊岭区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (671, N'红星区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (672, N'上甘岭区', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (673, N'嘉荫县', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (674, N'铁力市', 66,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (676, N'向阳区', 67,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (677, N'前进区', 67,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (678, N'东风区', 67,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (679, N'郊区', 67,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (680, N'桦南县', 67,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (681, N'桦川县', 67,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (682, N'汤原县', 67,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (683, N'抚远县', 67,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (684, N'同江市', 67,NULL)
INSERT [dbo].[DistrictModel] ([DistrictModelId], [DistrictName], [CityID], [IsDel])VALUES (685, N'富锦市', 67,NULL)