diff --git a/README.md b/README.md index fa891121cc51c7dc084f93f117e1cea094656e33..6239637296a0699f4dfff7cba9293063b83b4f1b 100644 --- a/README.md +++ b/README.md @@ -1,30 +1,27 @@

TopskyHotelManagerSystem

- star + star

- -# 特别鸣谢: - -### [遗失情缘](https://blog.lost520.cn/)提供的圆形进度条加载效果! - # 引用的开源项目: 1. ##### Fody——将所有dll打包成exe应用程序。[Fody,MIT开源协议](https://github.com/Fody/Fody) -2. ##### SunnyUI——SunnyUI.Net, 基于 C# .Net WinForm 开源控件库、工具类库、扩展类库、多页面开发框架。 +2. ##### SQLSugar,国内最受欢迎ORM框架[SQLSugar。 [Apache-2.0开源协议](https://gitee.com/sunkaixuan/SqlSugar) + +3. ##### SunnyUI——SunnyUI.Net, 基于 C# .Net WinForm 开源控件库、工具类库、扩展类库、多页面开发框架。 [SunnyUI.Net,GPL3.0开源协议](https://gitee.com/yhuse/SunnyUI) # 本项目说明: -##### 1、一切开发请遵照MIT开源协议进行,SunnyUI.Net框架采用的是GPL3.0开源协议,需要用到时请务必在项目介绍加上对应描述。 +##### 1、一切开发请遵照MIT开源协议进行,SunnyUI.Net框架采用的是GPL3.0开源协议、SQLSugarORM框架采用的是Apache2.0,需要用到时请务必在项目介绍加上对应描述。 ##### 2、有bug欢迎提出issue!或进行评论 -##### 3、本系统部分页面基于SunnyUI.Net控件库进行创建,在此特别声明! +##### 3、本系统90%页面基于SunnyUI.Net控件库进行创建,在此特别声明! ##### 4、**关于数据库脚本问题,请先移步至Scripts文件下,下载Data和Table两个文件,再数据库中先执行Table.sql,再执行Data.sql!** @@ -50,6 +47,28 @@ **开发技术:.NET WinForm** +# 系统结构: +![TopSkyHotelManagerSystem](https://images.gitee.com/uploads/images/2021/0214/195755_0c128762_5122554.png "TopskyHotelManagerSystem.png") + +# 系统功能模块汇总: + +| 功能汇总 | | | | | | | | +|----------|--------|--------|--------|------|--------|--------|---| +| (前台)客房管理 | 预约房间 | 入住房间 | 结算退房 | 转换房间 | 查看用户信息 | 修改房间状态 | | +| (前台)用户管理 | 用户信息展示 | 搜索用户信息 | 添加客户 | | | | | +| (前台)商品消费 | 商品列表 | 搜索商品信息 | 商品消费 | 消费信息 | | | | +| (前台)扩展功能 | 无 | | | | | | | +| (后台)基础信息 | 职位类型维护 | 民族类型维护 | 学历类型维护 | 部门信息维护 | | | | +| (后台)财务信息 | 员工工资账单 | 内部财务账单 | 酒店盈利情况 | | | | | +| (后台)水电管理 | 水电信息 | | | | | | | +| (后台)监管统计 | 监管部门情况 | | | | | | | +| (后台)客房管理 | 房态图一览 | 新增客房 | | | | | | +| (后台)客户管理 | 客户信息管理 | 顾客消费账单 | | | | | | +| 功能汇总(续) | | | | | | | | +| (后台)人事管理 | 员工管理 | 公告日志 | 上传公告日志 | | | | | +| (后台)物资管理 | 商品管理 | 仓库物资 | | | | | | +| 员工操作日志 | | | | | | | | + # 项目作者: **杨俊杰(即本账号,项目组长,核心代码编写和后期项目整合)** @@ -58,6 +77,8 @@ **宾华安(数据库,提供数据库管理支持)** +**张黔广(开发,APP前后端开发)** + # 项目运行部署: **下载并安装Microsoft Visual Studio Professional 2017及以上版本,并通过下载Zip包解压,打开.sln后缀格式文件运行。** @@ -70,4 +91,5 @@ **2、随后打开Data.sql文件进行数据导入。** -[![jackson0720/TopskyHotelManagerSystem](https://gitee.com/yjj0720/TopskyHotelManagerSystem/widgets/widget_card.svg?colors=4183c4,ffffff,ffffff,e3e9ed,666666,9b9b9b)](https://gitee.com/yjj0720/TopskyHotelManagerSystem) \ No newline at end of file + +[![java-and-net/TopskyHotelManagerSystem](https://gitee.com/java-and-net/TopskyHotelManagerSystem/widgets/widget_card.svg?colors=4183c4,ffffff,ffffff,e3e9ed,666666,9b9b9b)](https://gitee.com/java-and-net/TopskyHotelManagerSystem) \ No newline at end of file diff --git a/SYS.Application/Business/CashService.cs b/SYS.Application/Business/CashService.cs index 04dc244f993bd96cfac613d6acc81832de7fd4b8..b25cc2c51b65212b08bff71efdf7588d84fd1993 100644 --- a/SYS.Application/Business/CashService.cs +++ b/SYS.Application/Business/CashService.cs @@ -1,40 +1,48 @@ using System; using System.Collections.Generic; +using System.Linq; using MySql.Data.MySqlClient; +using SYS.Common; using SYS.Core; namespace SYS.Application { - public class CashService + /// + /// 资产信息接口实现类 + /// + public class CashService:Repository, ICashService { - - public static object AddCashInfo(Cash cash) + /// + /// 添加资产信息 + /// + /// + /// + public bool AddCashInfo(Cash cash) { - string sql = "insert into cashinfo values('" + cash.CashNo + "','" + cash.CashName + "','" + cash.CashPrice + "','" + cash.CashClub + "','" + cash.CashTime + "','" + cash.CashSource + "','" + cash.CashPerson + "')"; - return DBHelper.ExecuteNonQuery(sql); + return base.Insert(cash); } - public static List SelectCashInfoAll() + /// + /// 查询资产信息 + /// + /// + public List SelectCashInfoAll() { - + //查询所有部门信息 + List depts = new List(); + depts = base.Change().GetList(a => a.delete_mk != 1); + //查询所有员工信息 + List workers = new List(); + workers = base.Change().GetList(a => a.delete_mk != 1); List cs = new List(); - string sql = "select * from CASHINFO"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) + cs = base.GetList(a => a.delete_mk != 1); + cs.ForEach(source => { - - Cash c = new Cash(); - c.CashNo = (string)dr["CashNo"]; - c.CashName = dr["CashName"].ToString(); - c.CashPrice = (string)dr["CashPrice"]; - c.CashClub = Convert.ToString(dr["CashClub"]); - c.CashTime = DateTime.Parse(dr["CashTime"].ToString()); - c.CashSource = dr["CashSource"].ToString(); - c.CashPerson = dr["CashPerson"].ToString(); - cs.Add(c); - } - dr.Close(); - DBHelper.Closecon(); + var dept = depts.FirstOrDefault(a => a.dept_no.Equals(source.CashClub)); + source.DeptName = dept == null ? "" : dept.dept_name; + var worker = workers.FirstOrDefault(a => a.WorkerId.Equals(source.CashPerson)); + source.PersonName = worker == null ? "" : worker.WorkerName; + }); return cs; } } diff --git a/SYS.Application/Business/FontsService.cs b/SYS.Application/Business/FontsService.cs new file mode 100644 index 0000000000000000000000000000000000000000..10897c111ccc4b1b9e3d26a6a58f95a04a1e0a64 --- /dev/null +++ b/SYS.Application/Business/FontsService.cs @@ -0,0 +1,28 @@ +using MySql.Data.MySqlClient; +using SYS.Common; +using SYS.Core; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Application +{ + /// + /// 酒店宣传联动内容接口实现类 + /// + public class FontsService:Repository,IFontsService + { + /// + /// 查询所有宣传联动内容(跑马灯) + /// + /// + public List SelectFontAll() + { + List fonts = new List(); + fonts = base.GetList(); + return fonts; + } + } +} diff --git a/SYS.Application/Business/ICashService.cs b/SYS.Application/Business/ICashService.cs new file mode 100644 index 0000000000000000000000000000000000000000..a4ca955cc21edb036941c00eaff641fd671378e8 --- /dev/null +++ b/SYS.Application/Business/ICashService.cs @@ -0,0 +1,24 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 资产信息接口 + /// + public interface ICashService + { + /// + /// 添加资产信息 + /// + /// + /// + bool AddCashInfo(Cash cash); + + /// + /// 查询资产信息 + /// + /// + List SelectCashInfoAll(); + } +} \ No newline at end of file diff --git a/SYS.Application/Business/IFontsService.cs b/SYS.Application/Business/IFontsService.cs new file mode 100644 index 0000000000000000000000000000000000000000..f84e2ffcdaf54153e89a7a7ef06c4370d9d21232 --- /dev/null +++ b/SYS.Application/Business/IFontsService.cs @@ -0,0 +1,17 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 酒店宣传联动内容接口 + /// + public interface IFontsService + { + /// + /// 查询所有宣传联动内容(跑马灯) + /// + /// + List SelectFontAll(); + } +} \ No newline at end of file diff --git a/SYS.Application/Business/IReserService.cs b/SYS.Application/Business/IReserService.cs new file mode 100644 index 0000000000000000000000000000000000000000..b29c032de2f2f0a394af17ed3b240d59f3b2fb1b --- /dev/null +++ b/SYS.Application/Business/IReserService.cs @@ -0,0 +1,41 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 预约信息接口 + /// + public interface IReserService + { + + /// + /// 获取所有预约信息 + /// + /// + List SelectReserAll(); + + /// + /// 根据房间编号获取预约信息 + /// + /// + /// + Reser SelectReserInfoByRoomNo(string no); + + /// + /// 删除预约信息 + /// + /// + /// + bool DeleteReserInfo(string rid); + + /// + /// 添加预约信息 + /// + /// + /// + bool InserReserInfo(Reser r); + + + } +} \ No newline at end of file diff --git a/SYS.Application/Business/ISellService.cs b/SYS.Application/Business/ISellService.cs new file mode 100644 index 0000000000000000000000000000000000000000..b7c8f8142ba3002bf5cfdb2aacd927d9d0a3542a --- /dev/null +++ b/SYS.Application/Business/ISellService.cs @@ -0,0 +1,86 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 商品接口 + /// + public interface ISellService + { + /// + /// 查询所有商品 + /// + /// + List SelectSellThingAll(); + + /// + /// 根据商品ID查询 + /// + /// + /// + SellThing SelectSellThingByNo(string No); + + /// + /// 根据商品名称查询 + /// + /// + /// + List SelectSellThingByName(string Name); + + /// + /// 修改商品 + /// + /// + /// + /// + bool UpdateSellThing(string stock, string sellNo); + + /// + /// 修改商品信息 + /// + /// + /// + bool UpdateSellthingInfo(SellThing sellThing); + + /// + /// 撤回客户消费信息 + /// + /// + /// + /// + bool DeleteSellThing(string roomNo, string time); + + /// + /// 根据商品编号删除商品信息 + /// + /// + /// + bool DeleteSellThingBySellNo(string sellNo); + + /// + /// 根据商品名称和价格查询商品编号 + /// + /// + /// + /// + SellThing SelectSellThingByNameAndPrice(string name, string price); + + + /// + /// 根据商品编号查询商品信息 + /// + /// + /// + SellThing SelectSellInfoBySellNo(string SellNo); + + #region 添加商品 + /// + /// 添加商品 + /// + /// + /// + bool InsertSellThing(SellThing st); + #endregion + } +} \ No newline at end of file diff --git a/SYS.Application/Business/ISpendService.cs b/SYS.Application/Business/ISpendService.cs new file mode 100644 index 0000000000000000000000000000000000000000..c7d280d73776281de3ce826b022592a5f462f61e --- /dev/null +++ b/SYS.Application/Business/ISpendService.cs @@ -0,0 +1,85 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 消费信息接口 + /// + public interface ISpendService + { + #region 添加消费信息 + /// + /// 添加消费信息 + /// + /// + /// + bool InsertSpendInfo(Spend s); + #endregion + + #region 根据客户编号查询消费信息 + /// + /// 根据客户编号查询消费信息 + /// + /// + /// + List SelectSpendByCustoNo(string No); + #endregion + #region 根据房间编号查询消费信息 + /// + /// 根据房间编号查询消费信息 + /// + /// + /// + List SelectSpendByRoomNo(string No); + #endregion + + #region 查询消费的所有信息 + /// + /// 查询消费的所有信息 + /// + /// + List SelectSpendInfoAll(); + #endregion + + #region 根据房间号查询消费的所有信息 + /// + /// 根据房间号查询消费的所有信息 + /// + /// + List SelectSpendInfoRoomNo(string RoomNo); + #endregion + + #region 根据房间编号、入住时间到当前时间查询消费总金额 + /// + /// 根据房间编号、入住时间到当前时间查询消费总金额 + /// + /// + /// + /// + object SelectMoneyByRoomNoAndTime(string roomno, string custono); + #endregion + + #region 根据房间编号、入住时间和当前时间修改结算状态 + /// + /// 根据房间编号、入住时间和当前时间修改结算状态 + /// + /// + /// + /// + bool UpdateMoneyState(string roomno, string checktime); + #endregion + + #region 将转房前的未结算记录一同转移到新房间 + /// + /// 将转房前的未结算记录一同转移到新房间 + /// + /// + /// + /// + /// + bool UpdateSpendInfoByRoomNo(List spends, string newRoom, string custoNo); + #endregion + + } +} \ No newline at end of file diff --git a/SYS.Application/Business/IWtiService.cs b/SYS.Application/Business/IWtiService.cs new file mode 100644 index 0000000000000000000000000000000000000000..9ff161e5f61d856ca951462ac0f7895ddbda1e6b --- /dev/null +++ b/SYS.Application/Business/IWtiService.cs @@ -0,0 +1,86 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 水电信息接口 + /// + public interface IWtiService + { + #region 根据房间编号查询水电费信息 + /// + /// 根据房间编号查询水电费信息 + /// + /// + /// + Wti SelectWtiInfoByRoomNo(string roomNo); + #endregion + + #region 根据房间编号、使用时间查询水电费信息 + /// + /// 根据房间编号、使用时间查询水电费信息 + /// + /// + /// + /// + /// + Wti SelectWtiInfoByRoomNoAndTime(string roomno, string usedate, string enddate); + #endregion + + #region 获取所有水电费信息 + /// + /// 获取所有水电费信息 + /// + /// + List SelectWtiInfoAll(); + #endregion + + #region 添加水电费信息 + /// + /// 添加水电费信息 + /// + /// + /// + bool InsertWtiInfo(Wti w); + #endregion + + #region 修改水电费信息(根据房间编号) + /// + /// 修改水电费信息(根据房间编号) + /// + /// + /// + bool UpdateWtiInfo(Wti w); + #endregion + + #region 根据房间信息、使用时间修改水电费 + /// + /// 根据房间信息、使用时间修改水电费 + /// + /// + /// + bool UpdateWtiInfoByRoomNoAndDateTime(Wti w); + #endregion + + #region 删除水电费信息:根据房间编号 + /// + /// 删除水电费信息:根据房间编号 + /// + /// + /// + bool DeleteWtiInfo(string roomno); + #endregion + + #region 根据房间编号、使用时间删除水电费信息 + /// + /// 根据房间编号、使用时间删除水电费信息 + /// + /// + /// + /// + /// + bool DeleteWtiInfoByRoomNoAndDateTime(string roomno, string usedate, string enddate); + #endregion + } +} \ No newline at end of file diff --git a/SYS.Application/Business/ReserService.cs b/SYS.Application/Business/ReserService.cs new file mode 100644 index 0000000000000000000000000000000000000000..3ca24686d8dcde2a79a92e257f439c91d9b28ce5 --- /dev/null +++ b/SYS.Application/Business/ReserService.cs @@ -0,0 +1,65 @@ +using System; +using System.Collections.Generic; +using MySql.Data.MySqlClient; +using SYS.Common; +using SYS.Core; + +namespace SYS.Application +{ + /// + /// 预约信息接口实现类 + /// + public class ReserService:Repository,IReserService + { + /// + /// 获取所有预约信息 + /// + /// + public List SelectReserAll() + { + List rss = new List(); + rss = base.GetList(a => a.delete_mk == 0); + return rss; + } + + /// + /// 根据房间编号获取预约信息 + /// + /// + /// + public Reser SelectReserInfoByRoomNo(string no) + { + Reser res = null; + res = base.GetSingle(a => a.ReserRoom == no && a.delete_mk != 1); + return res; + } + + /// + /// 删除预约信息 + /// + /// + /// + public bool DeleteReserInfo(string rid) + { + return base.Update(a => new Reser() + { + delete_mk = 1, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + },a => a.ReserId == rid); + + } + + /// + /// 添加预约信息 + /// + /// + /// + public bool InserReserInfo(Reser r) + { + return base.Insert(r); + } + + + } +} diff --git a/SYS.Application/Business/SellService.cs b/SYS.Application/Business/SellService.cs index a85d31341f01ef2c7396f06fba7bd544cd5aecd6..352ee78e48a2244039cab4bf03c91f8e4e3bb3cb 100644 --- a/SYS.Application/Business/SellService.cs +++ b/SYS.Application/Business/SellService.cs @@ -1,34 +1,25 @@ using System; using System.Collections.Generic; using MySql.Data.MySqlClient; +using SYS.Common; using SYS.Core; namespace SYS.Application { - public class SellService + /// + /// 商品信息接口实现类 + /// + public class SellService:Repository,ISellService { /// /// 查询所有商品 /// /// - public static List SelectSellThingAll() + public List SelectSellThingAll() { - List ls = new List(); - string sql = "select * from Sellthing"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - SellThing s = new SellThing(); - s.SellNo = dr["SellNo"].ToString(); - s.SellName = dr["SellName"].ToString(); - s.SellPrice = Convert.ToDecimal(dr["SellPrice"]); - s.format = (string)dr["format"]; - s.Stock = Convert.ToInt32(dr["Stock"]); - ls.Add(s); - } - dr.Close(); - DBHelper.Closecon(); - return ls; + List sellThings = new List(); + sellThings = base.GetList(a => a.delete_mk == 0); + return sellThings; } /// @@ -36,22 +27,10 @@ namespace SYS.Application /// /// /// - public static SellThing SelectSellThingByNo(string No) + public SellThing SelectSellThingByNo(string No) { SellThing s = new SellThing(); - string sql = "select * from Sellthing where SellNo='" + No + "'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - s = new SellThing(); - s.SellNo = dr["SellNo"].ToString(); - s.SellName = dr["SellName"].ToString(); - s.SellPrice = Convert.ToDecimal(dr["SellPrice"]); - s.format = (string)dr["format"]; - s.Stock = (int)dr["Stock"]; - } - dr.Close(); - DBHelper.Closecon(); + s = base.GetSingle(a => a.SellNo == No && a.delete_mk != 1); return s; } @@ -60,50 +39,75 @@ namespace SYS.Application /// /// /// - public static List SelectSellThingByName(string Name) + public List SelectSellThingByName(string Name) { - List ls = new List(); - string sql = "select * from Sellthing where SellName like '%" + Name + "%' or SellNo like '%" + Name + "%' or SellPrice like '%" + Name + "%' or format like '%" + Name + "%'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - SellThing s = new SellThing(); - s.SellNo = dr["SellNo"].ToString(); - s.SellName = dr["SellName"].ToString(); - s.SellPrice = Convert.ToDecimal(dr["SellPrice"]); - s.format = (string)dr["format"]; - s.Stock = (int)dr["Stock"]; - ls.Add(s); - } - dr.Close(); - DBHelper.Closecon(); - return ls; + List sellThings = new List(); + sellThings = base.GetList(a => a.SellName.Contains(Name) || a.SellNo.Contains(Name) || a.SellPrice == Convert.ToDecimal(Name) || a.format.Contains(Name)); + return sellThings; } /// /// 修改商品 /// - /// + /// + /// /// - public static int UpdateSellThing(string stock, string sellNo) + public bool UpdateSellThing(string stock, string sellNo) { - int n = 0; - string sql = "update SELLTHING set Stock='{0}' where SellNo='{1}'"; - sql = string.Format(sql, stock, sellNo); - n = DBHelper.ExecuteNonQuery(sql); - return n; + return base.Update(a => new SellThing() + { + Stock = Convert.ToInt32(stock), + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + },a => a.SellNo == sellNo); + } + + /// + /// 修改商品信息 + /// + /// + /// + public bool UpdateSellthingInfo(SellThing sellThing) + { + return base.Update(a => new SellThing() + { + SellName = sellThing.SellName, + SellPrice = sellThing.SellPrice, + Stock = sellThing.Stock, + format = sellThing.format, + },a => a.SellNo == sellThing.SellNo); } /// /// 撤回客户消费信息 /// - /// + /// + /// + /// + public bool DeleteSellThing(string roomNo, string time) + { + return base.Change().Update(a => new Spend() + { + delete_mk = 1, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + },a => a.RoomNo == roomNo && a.SpendTime >= Convert.ToDateTime(time)); + + } + + /// + /// 根据商品编号删除商品信息 + /// + /// /// - public static int DeleteSellThing(string roomNo, string time) + public bool DeleteSellThingBySellNo(string sellNo) { - string sql = "delete from CUSTOSPEND where RoomNo='{0}' and SpendTime='{1}'"; - sql = string.Format(sql, roomNo, time); - return DBHelper.ExecuteNonQuery(sql); + return base.Update(a => new SellThing() + { + delete_mk = 1, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }, a => a.SellNo == sellNo); } /// @@ -112,56 +116,35 @@ namespace SYS.Application /// /// /// - public static SellThing SelectSellThingByNameAndPrice(string name,string price) + public SellThing SelectSellThingByNameAndPrice(string name,string price) { - SellThing s = null; - string sql = "select * from SELLTHING where SellName='{0}' and SellPrice = '{1}'"; - sql = string.Format(sql, name, price); - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - if (dr.Read()) - { - s = new SellThing(); - s.SellNo = dr["SellNo"].ToString(); - s.SellName = dr["SellName"].ToString(); - s.SellPrice = Convert.ToDecimal(dr["SellPrice"]); - s.format = (string)dr["format"]; - s.Stock = (int)dr["Stock"]; - } - dr.Close(); - DBHelper.Closecon(); - return s; + SellThing sellThing = null; + sellThing = base.GetSingle(a => a.SellName == name && a.SellPrice == Convert.ToDecimal(price)); + return sellThing; } - - public static SellThing SelectSellInfoBySellNo(string SellNo) + /// + /// 根据商品编号查询商品信息 + /// + /// + /// + public SellThing SelectSellInfoBySellNo(string SellNo) { SellThing st = null; - string sql = "select * from SellThing where SellNo='" + SellNo + "'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - if (dr.Read()) - { - st = new SellThing(); - st.SellNo = Convert.ToString(dr["SellNo"]); - st.SellName = Convert.ToString(dr["SellName"]); - st.SellPrice = Convert.ToDecimal(dr["SellPrice"]); - st.format = Convert.ToString(dr["format"]); - st.Stock = Convert.ToInt32(dr["Stock"]); - } - dr.Close(); - DBHelper.Closecon(); + st = base.GetSingle(a => a.SellNo == SellNo && a.delete_mk != 1); return st; } #region 添加商品 - public static int InsertSellThing(SellThing st) + /// + /// 添加商品 + /// + /// + /// + public bool InsertSellThing(SellThing st) { - string sql = "insert SellThing (SellNo,SellName,SellPrice,"; - sql += "format,Stock) values "; - sql += "('{0}','{1}','{2}','{3}','{4}')"; - sql = string.Format(sql, st.SellNo, st.SellName, st.SellPrice, - st.format, st.Stock); - return DBHelper.ExecuteNonQuery(sql); + return base.Insert(st); } #endregion } diff --git a/SYS.Application/Business/SpendService.cs b/SYS.Application/Business/SpendService.cs index 289a6e899bd36f1d3bb9f6d40db5e0200e42be6a..3a30991c6772944c29c8facd8961f07397f7e1d1 100644 --- a/SYS.Application/Business/SpendService.cs +++ b/SYS.Application/Business/SpendService.cs @@ -1,11 +1,16 @@ using System; using System.Collections.Generic; +using System.Linq; using MySql.Data.MySqlClient; +using SYS.Common; using SYS.Core; namespace SYS.Application { - public class SpendService + /// + /// 商品消费接口实现类 + /// + public class SpendService:Repository, ISpendService { #region 添加消费信息 /// @@ -13,73 +18,36 @@ namespace SYS.Application /// /// /// - public static int InsertSpendInfo(Spend s) + public bool InsertSpendInfo(Spend s) { - int n = 0; - string sql = "insert CUSTOSPEND values('{0}','{1}','{2}','{3}','{4}','{5}','{6}','{7}')"; - sql = string.Format(sql, s.RoomNo, s.CustoNo, s.SpendName, s.SpendAmount, s.SpendPrice, s.SpendMoney, s.SpendTime, s.MoneyState); - n = DBHelper.ExecuteNonQuery(sql); - return n; + return base.Insert(s); } #endregion - #region 根据客户编号查询信息 + #region 根据客户编号查询消费信息 /// - /// 根据客户编号查询信息 + /// 根据客户编号查询消费信息 /// - /// - /// + /// /// - public static List SelectSpendByRoomNo(string RoomNo) + public List SelectSpendByCustoNo(string No) { - List spends = new List(); - string sql = "select * from CUSTOSPEND inner join ROOM where CUSTOSPEND.RoomNo=ROOM.RoomNo"; - sql += " and CUSTOSPEND.RoomNo = '" + RoomNo + "' and CUSTOSPEND.SpendTime between ROOM.CheckTime AND CURRENT_DATE()"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - Spend spend = new Spend(); - spend.RoomNo = dr["RoomNo"].ToString(); - spend.CustoNo = dr["CustoNo"].ToString(); - spend.SpendName = dr["SpendName"].ToString(); - spend.SpendAmount = (int)dr["SpendAmount"]; - spend.SpendPrice = Convert.ToDecimal(dr["SpendPrice"]); - spend.SpendMoney = Convert.ToDecimal(dr["SpendMoney"]); - spend.SpendTime = Convert.ToDateTime(dr["SpendTime"]); - spends.Add(spend); - } - dr.Close(); - DBHelper.Closecon(); - return spends; + List ls = new List(); + ls = base.GetList(a => a.CustoNo == No && a.MoneyState == "未结算" && a.delete_mk != 1); + return ls; } #endregion - #region 根据客户编号查询消费信息 + #region 根据房间编号查询消费信息 /// - /// 根据客户编号查询消费信息 + /// 根据房间编号查询消费信息 /// /// /// - public static List SelectSpendByCustoNo(string No) + public List SelectSpendByRoomNo(string No) { List ls = new List(); - string sql = "select * from CUSTOSPEND where RoomNo = '" + No + "' and MoneyState = '未结算'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - Spend s = new Spend(); - s.RoomNo = dr["RoomNo"].ToString(); - s.CustoNo = dr["CustoNo"].ToString(); - s.SpendName = dr["SpendName"].ToString(); - s.SpendAmount = (int)dr["SpendAmount"]; - s.SpendPrice = Convert.ToDecimal(dr["SpendPrice"]); - s.SpendMoney = Convert.ToDecimal(dr["SpendMoney"]); - s.SpendTime = Convert.ToDateTime(dr["SpendTime"]); - s.MoneyState = dr["MoneyState"].ToString(); - ls.Add(s); - } - dr.Close(); - DBHelper.Closecon(); + ls = base.GetList(a => a.RoomNo == No && a.MoneyState == "未结算" && a.delete_mk != 1); return ls; } #endregion @@ -89,26 +57,10 @@ namespace SYS.Application /// 查询消费的所有信息 /// /// - public static List SelectSpendInfoAll() + public List SelectSpendInfoAll() { List ls = new List(); - string sql = "select * from CUSTOSPEND"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - Spend s = new Spend(); - s.RoomNo = (string)dr["RoomNo"]; - s.CustoNo = (string)dr["CustoNo"]; - s.SpendName = (string)dr["SpendName"]; - s.SpendAmount = (int)dr["SpendAmount"]; - s.SpendPrice = (decimal)dr["SpendPrice"]; - s.SpendMoney = (decimal)dr["SpendMoney"]; - s.SpendTime = (DateTime)dr["SpendTime"]; - s.MoneyState = dr["MoneyState"].ToString(); - ls.Add(s); - } - dr.Close(); - DBHelper.Closecon(); + ls = base.GetList(a => a.delete_mk != 1); return ls; } #endregion @@ -118,26 +70,10 @@ namespace SYS.Application /// 根据房间号查询消费的所有信息 /// /// - public static List SelectSpendInfoRoomNo(string RoomNo) + public List SelectSpendInfoRoomNo(string RoomNo) { List ls = new List(); - string sql = "select * from CUSTOSPEND inner join ROOM where CUSTOSPEND.RoomNo=ROOM.RoomNo and CUSTOSPEND.RoomNo = '"+ RoomNo + "' and CUSTOSPEND.MoneyState = '未结算'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - Spend s = new Spend(); - s.RoomNo = dr["RoomNo"].ToString(); - s.CustoNo = dr["CustoNo"].ToString(); - s.SpendName = dr["SpendName"].ToString(); - s.SpendAmount = (int)dr["SpendAmount"]; - s.SpendPrice = Convert.ToDecimal(dr["SpendPrice"]); - s.SpendMoney = Convert.ToDecimal(dr["SpendMoney"]); - s.SpendTime = Convert.ToDateTime(dr["SpendTime"]); - s.MoneyState = dr["MoneyState"].ToString(); - ls.Add(s); - } - dr.Close(); - DBHelper.Closecon(); + ls = base.GetList(a => a.RoomNo == RoomNo && a.delete_mk != 1 && a.MoneyState == "未结算"); return ls; } #endregion @@ -147,11 +83,11 @@ namespace SYS.Application /// 根据房间编号、入住时间到当前时间查询消费总金额 /// /// + /// /// - public static object SelectMoneyByRoomNoAndTime(string roomno,string custono) + public object SelectMoneyByRoomNoAndTime(string roomno,string custono) { - string sql = "select CONVERT(SUM(CUSTOSPEND.SpendMoney),DECIMAL(15,2)) from CUSTOSPEND inner join ROOM where CUSTOSPEND.RoomNo = ROOM.RoomNo and CUSTOSPEND.RoomNo = '"+roomno+"' AND ROOM.CustoNo = '"+ custono + "' and CUSTOSPEND.MoneyState = '未结算'"; - return DBHelper.ExecuteScalar(sql); + return base.GetList(a => a.RoomNo == roomno && a.CustoNo == custono && a.MoneyState == "未结算").Sum(a => a.SpendMoney); } #endregion @@ -162,12 +98,40 @@ namespace SYS.Application /// /// /// - public static int UpdateMoneyState(string roomno, string checktime) + public bool UpdateMoneyState(string roomno, string checktime) { - string sql = "update CUSTOSPEND set MoneyState='已结算' where RoomNo='{0}' and SpendTime between '{1}' AND CURRENT_DATE()"; - sql = string.Format(sql, roomno, checktime); - return DBHelper.ExecuteNonQuery(sql); + return base.Update(a => new Spend() + { + MoneyState = "已结算", + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + },a => a.RoomNo == roomno && a.SpendTime >= Convert.ToDateTime(checktime) && a.SpendTime <= DateTime.Now); } #endregion + + #region 将转房前的未结算记录一同转移到新房间 + /// + /// 将转房前的未结算记录一同转移到新房间 + /// + /// + /// + /// + /// + public bool UpdateSpendInfoByRoomNo(List spends, string newRoom, string custoNo) + { + var listSpendId = spends.Select(a => a.SpendName).Distinct().ToList(); + + return base.Update(a => new Spend() + { + RoomNo = newRoom, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + }, a => listSpendId.Contains(a.RoomNo) && a.CustoNo == custoNo && a.MoneyState == "未结算" && a.SpendTime >= DateTime.Now + && a.SpendTime <= DateTime.Now); + + + } + #endregion + } } diff --git a/SYS.Application/Business/WtiService.cs b/SYS.Application/Business/WtiService.cs index edfeb940ee35ebdb5398d1e3e42a52a22e8b93b6..82a3e2616a93cd1f05087cc6d2b32f8c55279659 100644 --- a/SYS.Application/Business/WtiService.cs +++ b/SYS.Application/Business/WtiService.cs @@ -1,11 +1,15 @@ using System; using System.Collections.Generic; using MySql.Data.MySqlClient; +using SYS.Common; using SYS.Core; namespace SYS.Application { - public class WtiService + /// + /// 水电信息接口实现类 + /// + public class WtiService:Repository, IWtiService { #region 根据房间编号查询水电费信息 /// @@ -13,24 +17,10 @@ namespace SYS.Application /// /// /// - public static Wti SelectWtiInfoByRoomNo(string roomNo) + public Wti SelectWtiInfoByRoomNo(string roomNo) { - Wti w = null; - string sql = "select * from WTINFO where RoomNo like '%" + roomNo + "%'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - if (dr.Read()) - { - w = new Wti(); - w.CustoNo = dr["CustoNo"].ToString(); - w.EndDate = Convert.ToDateTime(dr["EndDate"]); - w.PowerUse = (decimal)dr["PowerUse"]; - w.Record = dr["Record"].ToString(); - w.RoomNo = dr["RoomNo"].ToString(); - w.UseDate = Convert.ToDateTime(dr["UseDate"]); - w.WaterUse = (decimal)dr["WaterUse"]; - } - dr.Close(); - DBHelper.Closecon(); + Wti w = new Wti(); + w = base.GetSingle(a => a.RoomNo.Contains(roomNo) && a.delete_mk != 1); return w; } #endregion @@ -43,25 +33,12 @@ namespace SYS.Application /// /// /// - public static Wti SelectWtiInfoByRoomNoAndTime(string roomno, string usedate, string enddate) + public Wti SelectWtiInfoByRoomNoAndTime(string roomno, string usedate, string enddate) { Wti w = null; string sql = "select * from WTINFO where RoomNo='" + roomno + "' and UseDate='" + usedate + "' and EndDate='" + enddate + "'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - if (dr.Read()) - { - w = new Wti(); - w.CustoNo = dr["CustoNo"].ToString(); - w.EndDate = Convert.ToDateTime(dr["EndDate"]); - w.PowerUse = (decimal)dr["PowerUse"]; - w.Record = dr["Record"].ToString(); - w.RoomNo = dr["RoomNo"].ToString(); - w.UseDate = Convert.ToDateTime(dr["UseDate"]); - w.WaterUse = (decimal)dr["WaterUse"]; - } - dr.Close(); - DBHelper.Closecon(); + w = base.GetSingle(a => a.RoomNo == roomno && a.UseDate >= Convert.ToDateTime(usedate) && a.EndDate >= Convert.ToDateTime(enddate)); return w; } #endregion @@ -71,25 +48,10 @@ namespace SYS.Application /// 获取所有水电费信息 /// /// - public static List SelectWtiInfoAll() + public List SelectWtiInfoAll() { List wti = new List(); - string sql = "select * from WTINFO"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - Wti w = new Wti(); - w.CustoNo = dr["CustoNo"].ToString(); - w.EndDate = Convert.ToDateTime(dr["EndDate"]); - w.PowerUse = (decimal)dr["PowerUse"]; - w.Record = dr["Record"].ToString(); - w.RoomNo = dr["RoomNo"].ToString(); - w.UseDate = Convert.ToDateTime(dr["UseDate"]); - w.WaterUse = (decimal)dr["WaterUse"]; - wti.Add(w); - } - dr.Close(); - DBHelper.Closecon(); + wti = base.GetList(a => a.delete_mk != 1); return wti; } #endregion @@ -100,14 +62,9 @@ namespace SYS.Application /// /// /// - public static int InsertWtiInfo(Wti w) + public bool InsertWtiInfo(Wti w) { - string sql = "insert WTINFO (RoomNo,UseDate,EndDate,"; - sql += "WaterUse,PowerUse,Record,CustoNo) values "; - sql += "('{0}','{1}','{2}','{3}','{4}','{5}','{6}')"; - sql = string.Format(sql, w.RoomNo, w.UseDate, w.EndDate, - w.WaterUse, w.PowerUse, w.Record, w.CustoNo); - return DBHelper.ExecuteNonQuery(sql); + return base.Insert(w); } #endregion @@ -117,13 +74,18 @@ namespace SYS.Application /// /// /// - public static int UpdateWtiInfo(Wti w) + public bool UpdateWtiInfo(Wti w) { - string sql = " update WTINFO set UseDate='{1}',EndDate='{2}',"; - sql += "WaterUse ='{3}',PowerUse='{4}',Record='{5}',CustoNo='{6}'where RoomNo = '{0}'"; - sql = string.Format(sql, w.RoomNo, w.UseDate, w.EndDate, - w.WaterUse, w.PowerUse, w.Record, w.CustoNo); - return DBHelper.ExecuteNonQuery(sql); + return base.Update(a => new Wti() + { + UseDate = w.UseDate, + EndDate = w.EndDate, + WaterUse = w.WaterUse, + PowerUse = w.PowerUse, + Record = w.Record, + CustoNo = w.CustoNo + },a => a.RoomNo == w.RoomNo); + } #endregion @@ -133,12 +95,15 @@ namespace SYS.Application /// /// /// - public static int UpdateWtiInfoByRoomNoAndDateTime(Wti w) + public bool UpdateWtiInfoByRoomNoAndDateTime(Wti w) { - string sql = "update WTINFO set WaterUse='{0}',PowerUse='{1}' where "; - sql += " RoomNo='{2}' and UseDate='{3}' and EndDate='{4}'"; - sql = string.Format(sql, w.WaterUse, w.PowerUse, w.RoomNo, w.UseDate, w.EndDate); - return DBHelper.ExecuteNonQuery(sql); + return base.Update(a => new Wti() + { + WaterUse = w.WaterUse, + PowerUse = w.PowerUse, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now, + },a => a.RoomNo == w.RoomNo && a.UseDate >= w.UseDate && a.EndDate >= w.EndDate); } #endregion @@ -148,10 +113,14 @@ namespace SYS.Application /// /// /// - public static int DeleteWtiInfo(string roomno) + public bool DeleteWtiInfo(string roomno) { - string sql = "delete from WtiInfo where RoomNo='" + roomno + "'"; - return DBHelper.ExecuteNonQuery(sql); + return base.Update(a => new Wti() + { + delete_mk = 1, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + }, a => a.WtiNo == roomno); } #endregion @@ -163,11 +132,16 @@ namespace SYS.Application /// /// /// - public static int DeleteWtiInfoByRoomNoAndDateTime(string roomno, string usedate, string enddate) + public bool DeleteWtiInfoByRoomNoAndDateTime(string roomno, string usedate, string enddate) { - string sql = " delete from WTINFO where RoomNo='{0}' and UseDate='{1}' and EndDate='{2}'"; + string sql = "delete from WTINFO where RoomNo='{0}' and UseDate='{1}' and EndDate='{2}'"; sql = string.Format(sql, roomno, usedate, enddate); - return DBHelper.ExecuteNonQuery(sql); + return base.Update(a => new Wti() + { + delete_mk = 1, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + },a => a.RoomNo == roomno && a.UseDate >= Convert.ToDateTime(usedate) && a.EndDate >= Convert.ToDateTime(enddate)); } #endregion } diff --git a/SYS.Application/Customer/CheckInfoService.cs b/SYS.Application/Customer/CheckInfoService.cs index 725e84455f48a16df4b973c3ad6f68dc1c9f9d3a..354737b4aacb255400d2ffa81de9b373febe3332 100644 --- a/SYS.Application/Customer/CheckInfoService.cs +++ b/SYS.Application/Customer/CheckInfoService.cs @@ -2,48 +2,24 @@ using System.Collections.Generic; using System.Data.SqlClient; using MySql.Data.MySqlClient; +using SYS.Common; using SYS.Core; namespace SYS.Application { - public class CheckInfoService + /// + /// 监管统计接口实现类 + /// + public class CheckInfoService:Repository, ICheckInfoService { - - public static string CheckBaseVersion() - { - string version = null; - string sql = "select* from baseversion"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - if (dr.Read()) - { - version = dr["base_version"].ToString(); - } - dr.Close(); - DBHelper.Closecon(); - return version; - } - - public static List SelectCheckInfoAll() + /// + /// 查询所有监管统计信息 + /// + /// + public List SelectCheckInfoAll() { - List cif = new List(); - string sql = "select * from CHECKINFO"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - - CheckInfo ci = new CheckInfo(); - ci.CheckNo = (string)dr["CheckNo"]; - ci.CheckClub = dr["CheckClub"].ToString(); - ci.CheckProgres = (string)dr["CheckProgres"]; - ci.CheckCash = Convert.ToString(dr["CheckCash"]); - ci.CheckScore = (int)dr["CheckScore"]; - ci.CheckPerson = dr["CheckPerson"].ToString(); - ci.CheckAdvice = dr["CheckAdvice"].ToString(); - cif.Add(ci); - } - dr.Close(); - DBHelper.Closecon(); + cif = base.GetList(a => a.delete_mk != 1); return cif; } } diff --git a/SYS.Application/Customer/CustoService.cs b/SYS.Application/Customer/CustoService.cs index 6c5835077a90af546ca049b8946bd250a49585e0..8816d4e86a31c97d029520c56a7fa77d6f1adcf2 100644 --- a/SYS.Application/Customer/CustoService.cs +++ b/SYS.Application/Customer/CustoService.cs @@ -1,28 +1,62 @@ using System; using System.Collections.Generic; +using System.Linq; using MySql.Data.MySqlClient; +using SYS.Common; using SYS.Core; namespace SYS.Application { - public class CustoService + /// + /// 客户信息接口实现类 + /// + public class CustoService:Repository, ICustoService { #region 添加客户信息 - public static int InsertCustomerInfo(Custo custo) + /// + /// 添加客户信息 + /// + /// + /// + public bool InsertCustomerInfo(Custo custo) { string NewID = Md5LockedUtil.MD5Encrypt32(custo.CustoID); string NewTel = Md5LockedUtil.MD5Encrypt32(custo.CustoTel); - - string sql = "insert USERINFO(CustoNo,CustoName,CustoSex,CustoTel,PassportType,CustoID,CustoAdress,CustoBirth,CustoType)"; - sql += " values('" + custo.CustoNo + "','" + custo.CustoName + "','" + custo.CustoSex + "','" + NewTel + "','" + custo.PassportType + "','" + NewID + "','" + custo.CustoAdress + "','" + custo.CustoBirth + "','" + custo.CustoType + "') "; - - return DBHelper.ExecuteNonQuery(sql); + custo.CustoID = NewID; + custo.CustoTel = NewTel; + return base.Insert(custo); } #endregion - public static List SelectAllMoney() + /// + /// 更新客户信息 + /// + /// + /// + public bool UpdCustomerInfoByCustoNo(Custo custo) { - List custos = new List(); + return base.Update(a => new Custo() + { + CustoName = custo.CustoName, + CustoSex = custo.CustoSex, + CustoType = custo.CustoType, + CustoBirth = custo.CustoBirth, + CustoAdress = custo.CustoAdress, + CustoID = custo.CustoID, + CustoTel = custo.CustoTel, + PassportType = custo.PassportType, + datachg_usr = custo.datachg_usr, + datachg_date = DateTime.Now + },a => a.CustoNo == custo.CustoNo); + } + + /// + /// 查询酒店盈利情况 + /// + /// + public List SelectAllMoney() + { + List custoSpends = new List(); string sql = "select year(spendtime) as 年份,sum(spendmoney) as 总额 from CustoSpend group by year(spendtime)"; MySqlDataReader dr = DBHelper.ExecuteReader(sql); while (dr.Read()) @@ -30,116 +64,66 @@ namespace SYS.Application CustoSpend cso = new CustoSpend(); cso.Years = dr["年份"].ToString(); cso.Money = (decimal)dr["总额"]; - custos.Add(cso); + custoSpends.Add(cso); } dr.Close(); DBHelper.Closecon(); - return custos; + return custoSpends; } - public static List SelectCustoAll() + /// + /// 查询所有客户信息 + /// + /// + public List SelectCustoAll() { + //查询出所有性别类型 + List sexTypes = new List(); + sexTypes = base.Change().GetList(); + //查询出所有证件类型 + List passPortTypes = new List(); + passPortTypes = base.Change().GetList(); + //查询出所有客户类型 + List custoTypes = new List(); + custoTypes = base.Change().GetList(); + //查询出所有客户信息 List custos = new List(); - string sql = "select * from USERINFO u,USERTYPE t,PASSPORTTYPE p,sextype s where u.CustoType=t.UserType and u.PassportType=p.PassportId and s.sexId = u.CustoSex"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) + custos = base.GetList().OrderBy(a => a.CustoNo).ToList(); + custos.ForEach(source => { - Custo cso = new Custo(); - cso.CustoNo = (string)dr["CustoNo"]; - cso.CustoName = dr["CustoName"].ToString(); - cso.SexName = Convert.ToString(dr["SexName"]); - cso.CustoTel = Convert.ToString(dr["CustoTel"]); - cso.PassportType = Convert.ToInt32(dr["PassportType"]); - cso.CustoID = dr["CustoID"].ToString(); - if (!DBNull.Value.Equals(dr["CustoAdress"])) - { - cso.CustoAdress = (string)dr["CustoAdress"]; - } - else - { - cso.CustoAdress = ""; - } - cso.CustoBirth = DateTime.Parse(dr["CustoBirth"].ToString()); - cso.CustoType = Convert.ToInt32(dr["CustoType"]); - cso.typeName = (string)dr["TypeName"]; - cso.PassportName = (string)dr["PassportName"]; - custos.Add(cso); - } - dr.Close(); - DBHelper.Closecon(); + //性别类型 + var sexType = sexTypes.FirstOrDefault(a => a.sexId == source.CustoSex); + source.SexName = string.IsNullOrEmpty(sexType.sexName) ? "" : sexType.sexName; + //证件类型 + var passPortType = passPortTypes.FirstOrDefault(a => a.PassportId == source.PassportType); + source.PassportName = string.IsNullOrEmpty(passPortType.PassportName) ? "" : passPortType.PassportName; + //客户类型 + var custoType = custoTypes.FirstOrDefault(a => a.UserType == source.CustoType); + source.typeName = string.IsNullOrEmpty(custoType.TypeName) ? "" : custoType.TypeName; + }); return custos; } - #region 根据客户编号查询客户信息 /// /// 根据客户编号查询客户信息 /// - /// + /// /// - public static Custo SelectCustoByCustoNo(string cno) + public Custo SelectCardInfoByCustoNo(string CustoNo) { - Custo cto = null; - MySqlConnection con = DBHelper.GetConnection(); - con.Open(); - MySqlDataReader dr = DBHelper.ExecuteReader("select * from USERINFO where CustoNo='" + cno + "'"); - if (dr.Read()) - { - cto = new Custo(); - cto.CustoNo = dr["CustoNo"].ToString(); - cto.CustoName = dr["CustoName"].ToString(); - cto.CustoSex = Convert.ToInt32(dr["CustoSex"]); - cto.CustoTel = dr["CustoTel"].ToString(); - cto.PassportType = Convert.ToInt32(dr["PassportType"].ToString()); - cto.CustoID = dr["CustoID"].ToString(); - cto.CustoAdress = dr["CustoAdress"].ToString(); - cto.CustoBirth = DateTime.Parse(dr["CustoBirth"].ToString()); - cto.CustoType = Convert.ToInt32(dr["CustoType"].ToString()); - } - dr.Close(); - DBHelper.Closecon(); - return cto; + Custo c = new Custo(); + c = base.GetSingle(a => a.CustoNo == CustoNo && a.delete_mk != 1); + //性别类型 + var sexType = base.Change().GetSingle(a => a.sexId == c.CustoSex); + c.SexName = string.IsNullOrEmpty(sexType.sexName) ? "" : sexType.sexName; + //证件类型 + var passPortType = base.Change().GetSingle(a => a.PassportId == c.PassportType); + c.PassportName = string.IsNullOrEmpty(passPortType.PassportName) ? "" : passPortType.PassportName; + //客户类型 + var custoType = base.Change().GetSingle(a => a.UserType == c.CustoType); + c.typeName = string.IsNullOrEmpty(custoType.TypeName) ? "" : custoType.TypeName; + return c; } - #endregion - public static Custo SelectCustoInfoByCardId(string input) - { - Custo cto = null; - string sql = "select * from USERINFO u,PASSPORTTYPE p,USERTYPE ut where u.PassportType=p.PassportId and u.CustoType=ut.UserType and CustoID = '" + input + "'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - if (dr.Read()) - { - cto = new Custo(); - cto.CustoNo = (string)dr["CustoNo"]; - cto.CustoName = (string)dr["CustoName"]; - cto.CustoSex = Convert.ToInt32(dr["CustoSex"]); - cto.CustoTel = (string)dr["CustoTel"]; - cto.PassportType = Convert.ToInt32(dr["PassportType"]); - cto.PassportName = (string)dr["PassportName"]; - cto.CustoID = (string)dr["CustoID"]; - cto.CustoAdress = (string)dr["CustoAdress"]; - cto.CustoBirth = DateTime.Parse(dr["CustoBirth"].ToString()); - cto.CustoType = Convert.ToInt32(dr["CustoType"]); - cto.typeName = (string)dr["TypeName"]; - } - dr.Close(); - DBHelper.Closecon(); - return cto; - } - - public static List SelectCanUseCustoAll() - { - List custos = new List(); - string sql = "select * from USERINFO"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - Custo custo = new Custo(); - custo.CustoNo = (string)dr["CustoNo"]; - custos.Add(custo); - } - dr.Close(); - DBHelper.Closecon(); - return custos; - } } } diff --git a/SYS.Application/Customer/CustoTypeService.cs b/SYS.Application/Customer/CustoTypeService.cs deleted file mode 100644 index 7fed1ca799b8277693bef8174e1c2d17608715fc..0000000000000000000000000000000000000000 --- a/SYS.Application/Customer/CustoTypeService.cs +++ /dev/null @@ -1,102 +0,0 @@ -using SYS.Core; -using MySql.Data.MySqlClient; -using System.Collections.Generic; - -namespace SYS.Application -{ - public class CustoTypeService - { - #region 根据会员等级编号查询会员等级名称 - /// - /// 根据会员等级编号查询会员等级名称 - /// - /// - /// - public static string SelectTypeNameByCustoTypeId(int CustoTypeId) - { - string name = ""; - string sql = "select * from USERTYPE where UserType=" + CustoTypeId; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - if (dr.Read()) - { - name = dr["TypeName"].ToString(); - } - dr.Close(); - DBHelper.Closecon(); - return name; - } - #endregion - - #region 查询所有会员等级名称 - /// - /// 查询所有会员等级名称 - /// - /// - public static List SelectCustoTypesAll() - { - List types = new List(); - string sql = "select * from USERTYPE"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - CustoType type = new CustoType(); - type.UserType = (int)dr["UserType"]; - type.TypeName = dr["TypeName"].ToString(); - types.Add(type); - } - dr.Close(); - DBHelper.Closecon(); - - return types; - } - #endregion - - #region 查询所有证件类型 - /// - /// 查询所有证件类型 - /// - /// - public static List SelectPassPortTypeAll() - { - List passTypes = new List(); - string sql = "select * from Passporttype"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - PassPortType type = new PassPortType(); - type.PassportId = (int)dr["PassportId"]; - type.PassportName = dr["PassportName"].ToString(); - passTypes.Add(type); - } - dr.Close(); - DBHelper.Closecon(); - - return passTypes; - } - #endregion - - #region 查询所有性别类型 - /// - /// 查询所有性别类型 - /// - /// - public static List SelectSexTypeAll() - { - List sexTypes = new List(); - string sql = "select * from sextype"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - SexType type = new SexType(); - type.sexId = (int)dr["sexId"]; - type.sexName = dr["sexName"].ToString(); - sexTypes.Add(type); - } - dr.Close(); - DBHelper.Closecon(); - - return sexTypes; - } - #endregion - } -} diff --git a/SYS.Application/Customer/ICheckInfoService.cs b/SYS.Application/Customer/ICheckInfoService.cs new file mode 100644 index 0000000000000000000000000000000000000000..ec2a7d2c762be0243c3b49b4d8496aac193f2133 --- /dev/null +++ b/SYS.Application/Customer/ICheckInfoService.cs @@ -0,0 +1,17 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 监管统计接口 + /// + public interface ICheckInfoService + { + /// + /// 查询所有监管统计信息 + /// + /// + List SelectCheckInfoAll(); + } +} \ No newline at end of file diff --git a/SYS.Application/Customer/ICustoService.cs b/SYS.Application/Customer/ICustoService.cs new file mode 100644 index 0000000000000000000000000000000000000000..c2ddb9c33d1d5c86bd06c3939ad3e8ba9d637fd7 --- /dev/null +++ b/SYS.Application/Customer/ICustoService.cs @@ -0,0 +1,48 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 客户信息接口 + /// + public interface ICustoService + { + #region 添加客户信息 + /// + /// 添加客户信息 + /// + /// + /// + bool InsertCustomerInfo(Custo custo); + #endregion + + /// + /// 更新客户信息 + /// + /// + /// + bool UpdCustomerInfoByCustoNo(Custo custo); + + /// + /// 查询酒店盈利情况 + /// + /// + List SelectAllMoney(); + + /// + /// 查询所有客户信息 + /// + /// + List SelectCustoAll(); + + /// + /// 根据客户编号查询客户信息 + /// + /// + /// + Custo SelectCardInfoByCustoNo(string CustoNo); + + + } +} \ No newline at end of file diff --git a/SYS.Application/Properties/AssemblyInfo.cs b/SYS.Application/Properties/AssemblyInfo.cs index 754a29de6846b3475de5122a35c35163782c2e5f..b8374f0c03528f8822b360befa79537efb3e959e 100644 --- a/SYS.Application/Properties/AssemblyInfo.cs +++ b/SYS.Application/Properties/AssemblyInfo.cs @@ -5,12 +5,12 @@ using System.Runtime.InteropServices; // 有关程序集的一般信息由以下 // 控制。更改这些特性值可修改 // 与程序集关联的信息。 -[assembly: AssemblyTitle("Application")] +[assembly: AssemblyTitle("SYS.Application")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Application")] -[assembly: AssemblyCopyright("Copyright © 2020")] +[assembly: AssemblyCompany("java-and-net")] +[assembly: AssemblyProduct("SYS.Application")] +[assembly: AssemblyCopyright("Copyright © 2020 java-and-net")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 //通过使用 "*",如下所示: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.4.0.0")] +[assembly: AssemblyFileVersion("1.4.0.0")] diff --git a/SYS.Application/Room/IRoomService.cs b/SYS.Application/Room/IRoomService.cs new file mode 100644 index 0000000000000000000000000000000000000000..158d3fc37432d87ee4f3bc73da6f9aad3ca26500 --- /dev/null +++ b/SYS.Application/Room/IRoomService.cs @@ -0,0 +1,183 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 房间信息接口 + /// + public interface IRoomService + { + #region 根据房间状态获取相应状态的房间信息 + /// + /// 根据房间状态获取相应状态的房间信息 + /// + /// + /// + List SelectRoomByRoomState(int stateid); + #endregion + + + #region 根据房间状态来查询可使用的房间 + /// + /// 根据房间状态来查询可使用的房间 + /// + /// + List SelectCanUseRoomAll(); + #endregion + + + #region 获取所有房间信息 + /// + /// 获取所有房间信息 + /// + /// + List SelectRoomAll(); + #endregion + + #region 获取房间分区的信息 + /// + /// 获取房间分区的信息 + /// + /// + List SelectRoomByTypeName(string TypeName); + #endregion + + #region 根据房间编号查询房间信息 + /// + /// 根据房间编号查询房间信息 + /// + /// + /// + Room SelectRoomByRoomNo(string no); + #endregion + + #region 根据房间编号退房(退房) + /// + /// 根据房间编号退房(退房) + /// + /// + /// + bool UpdateRoomByRoomNo(string room); + #endregion + + #region 根据房间编号查询截止到今天住了多少天 + /// + /// 根据房间编号查询截止到今天住了多少天 + /// + /// + /// + object DayByRoomNo(string roomno); + #endregion + + #region 根据房间编号修改房间信息(入住) + /// + /// 根据房间编号修改房间信息(入住) + /// + /// + /// + bool UpdateRoomInfo(Room r); + #endregion + + #region 根据房间编号修改房间信息(预约) + /// + /// 根据房间编号修改房间信息(预约) + /// + /// + /// + bool UpdateRoomInfoWithReser(Room r); + #endregion + + #region 查询可入住房间数量 + /// + /// 查询可入住房间数量 + /// + /// + object SelectCanUseRoomAllByRoomState(); + #endregion + + #region 查询已入住房间数量 + /// + /// 查询已入住房间数量 + /// + /// + object SelectNotUseRoomAllByRoomState(); + #endregion + + #region 根据房间编号查询房间价格 + /// + /// 根据房间编号查询房间价格 + /// + /// + object SelectRoomByRoomPrice(string r); + #endregion + + #region 查询脏房数量 + /// + /// 查询脏房数量 + /// + /// + object SelectNotClearRoomAllByRoomState(); + #endregion + + #region 查询维修房数量 + /// + /// 查询维修房数量 + /// + /// + object SelectFixingRoomAllByRoomState(); + #endregion + + #region 查询预约房数量 + /// + /// 查询预约房数量 + /// + /// + object SelectReseredRoomAllByRoomState(); + #endregion + + #region 根据房间编号更改房间状态 + /// + /// 根据房间编号更改房间状态 + /// + /// + /// + /// + bool UpdateRoomStateByRoomNo(string roomno, int stateid); + #endregion + + #region 添加房间 + /// + /// 添加房间 + /// + /// + /// + bool InsertRoom(Room rn); + #endregion + + #region 查询所有可消费(已住)房间 + /// + /// 查询所有可消费(已住)房间 + /// + /// + List SelectRoomByStateAll(); + #endregion + + #region 获取所有房间状态 + /// + /// 获取所有房间状态 + /// + /// + List SelectRoomStateAll(); + #endregion + + #region 根据房间编号查询房间状态编号 + /// + /// 根据房间编号查询房间状态编号 + /// + /// + /// + object SelectRoomStateIdByRoomNo(string roomno); + #endregion + } +} \ No newline at end of file diff --git a/SYS.Application/Room/IRoomTypeService.cs b/SYS.Application/Room/IRoomTypeService.cs new file mode 100644 index 0000000000000000000000000000000000000000..c1737acea79f446934d300476224ea15adcafe1f --- /dev/null +++ b/SYS.Application/Room/IRoomTypeService.cs @@ -0,0 +1,28 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 客房信息接口 + /// + public interface IRoomTypeService + { + #region 获取所有房间类型 + /// + /// 获取所有房间类型 + /// + /// + List SelectRoomTypesAll(); + #endregion + + #region 根据房间编号查询房间类型名称 + /// + /// 根据房间编号查询房间类型名称 + /// + /// + /// + RoomType SelectRoomTypeByRoomNo(string no); + #endregion + } +} \ No newline at end of file diff --git a/SYS.Application/Room/ReserService.cs b/SYS.Application/Room/ReserService.cs index cecf1376aa56af2057d1c3d15ebee499ac7ace75..e64d84d47315f4c5ee2b19d75b10d0941b43db5f 100644 --- a/SYS.Application/Room/ReserService.cs +++ b/SYS.Application/Room/ReserService.cs @@ -1,16 +1,25 @@ using System; using System.Collections.Generic; using MySql.Data.MySqlClient; +using SYS.Common; using SYS.Core; namespace SYS.Application { - public class ReserService + /// + /// 预约信息接口实现类 + /// + public class ReserService:Repository,IReserService { - - public static List SelectReserAll() + /// + /// 获取所有预约信息 + /// + /// + public List SelectReserAll() { List rss = new List(); +<<<<<<< HEAD:SYS.Application/Room/ReserService.cs +<<<<<<< HEAD:SYS.Application/Room/ReserService.cs string sql = "select * from RESER"; MySqlDataReader dr = DBHelper.ExecuteReader(sql); while (dr.Read()) @@ -37,12 +46,25 @@ namespace SYS.Application } dr.Close(); DBHelper.Closecon(); +======= + rss = base.GetList(a => a.delete_mk == 0); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.Application/Business/ReserService.cs +======= + rss = base.GetList(a => a.delete_mk == 0); +>>>>>>> master:SYS.Application/Business/ReserService.cs return rss; } - public static Reser SelectReserInfoByRoomNo(string no) + /// + /// 根据房间编号获取预约信息 + /// + /// + /// + public Reser SelectReserInfoByRoomNo(string no) { Reser res = null; +<<<<<<< HEAD:SYS.Application/Room/ReserService.cs +<<<<<<< HEAD:SYS.Application/Room/ReserService.cs string sql = "select * from RESER r,ROOM rm where r.ReserRoom = rm.RoomNo and r.ReserRoom = '" + no + "'"; MySqlDataReader dr = DBHelper.ExecuteReader(sql); if (dr.Read()) @@ -64,25 +86,52 @@ namespace SYS.Application } dr.Close(); DBHelper.Closecon(); +======= + res = base.GetSingle(a => a.ReserRoom == no && a.delete_mk != 1); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.Application/Business/ReserService.cs +======= + res = base.GetSingle(a => a.ReserRoom == no && a.delete_mk != 1); +>>>>>>> master:SYS.Application/Business/ReserService.cs return res; } - public static int DeleteReserInfo(string rid) + /// + /// 删除预约信息 + /// + /// + /// + public bool DeleteReserInfo(string rid) { - string sql = "delete from RESER where ReserId = '" + rid + "'"; - return DBHelper.ExecuteNonQuery(sql); + return base.Update(a => new Reser() + { + delete_mk = 1, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + },a => a.ReserId == rid); } - - public static int InserReserInfo(Reser r) + /// + /// 添加预约信息 + /// + /// + /// + public bool InserReserInfo(Reser r) { +<<<<<<< HEAD:SYS.Application/Room/ReserService.cs +<<<<<<< HEAD:SYS.Application/Room/ReserService.cs string sql = "insert WTINFO (CustoName,CustoTel,ReserWay,"; sql += "ReserRoomNo,ReserDate,ReserEndDay,Remark) values "; sql += "('{0}','{1}','{2}','{3}','{4}','{5}','{6}')"; sql = string.Format(sql, r.CustoName, r.CustoTel, r.ReserWay, r.ReserRoom, r.ReserDate, r.ReserEndDay, r.ReserRemark); return DBHelper.ExecuteNonQuery(sql); +======= + return base.Insert(r); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.Application/Business/ReserService.cs +======= + return base.Insert(r); +>>>>>>> master:SYS.Application/Business/ReserService.cs } diff --git a/SYS.Application/Room/RoomService.cs b/SYS.Application/Room/RoomService.cs index 37f304cdede4bfd7b42e3f7e6aeaccbf0742c3c9..365daf561a3dcdcfd794d51d3bc3e6b9325b1025 100644 --- a/SYS.Application/Room/RoomService.cs +++ b/SYS.Application/Room/RoomService.cs @@ -1,11 +1,16 @@ using System; using System.Collections.Generic; +using System.Linq; using MySql.Data.MySqlClient; +using SYS.Common; using SYS.Core; namespace SYS.Application { - public class RoomService + /// + /// 客房信息接口实现类 + /// + public class RoomService:Repository, IRoomService { #region 根据房间状态获取相应状态的房间信息 /// @@ -13,150 +18,96 @@ namespace SYS.Application /// /// /// - public static List SelectRoomByRoomState(int stateid) + public List SelectRoomByRoomState(int stateid) { + List roomStates = new List(); + roomStates = base.Change().GetList(a => a.delete_mk != 1); + List roomTypes = new List(); + roomTypes = base.Change().GetList(a => a.delete_mk != 1); List rooms = new List(); - string sql = "select * from ROOM r,ROOMTYPE t,ROOMSTATE rs where r.RoomType = t.RoomType and r.RoomStateId = rs.RoomStateId and r.RoomStateId = " + stateid; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) + rooms = base.GetList(a => a.delete_mk != 1 && a.RoomStateId == stateid).OrderBy(a => a.RoomNo).ToList(); + rooms.ForEach(source => { - Room room = new Room(); - room.RoomNo = (string)dr["RoomNo"]; - room.CustoNo = dr["CustoNo"].ToString(); - room.RoomMoney = (decimal)dr["RoomMoney"]; - room.PersonNum = Convert.ToString(dr["PersonNum"]); - if (!DBNull.Value.Equals(dr["CheckTime"])) - { - room.CheckTime = DateTime.Parse(dr["CheckTime"].ToString()); - } - if (!DBNull.Value.Equals(dr["CheckOutTime"])) - { - room.CheckOutTime = DateTime.Parse(dr["CheckOutTime"].ToString()); - } - room.RoomStateId = (int)dr["RoomStateId"]; - room.RoomState = (string)dr["RoomState"]; - room.RoomType = (int)dr["RoomType"]; - room.RoomPosition = (string)dr["RoomPosition"]; - room.typeName = (string)dr["RoomName"]; - rooms.Add(room); - } - dr.Close(); - DBHelper.Closecon(); + var roomState = roomStates.FirstOrDefault(a => a.RoomStateId == source.RoomStateId); + source.RoomState = string.IsNullOrEmpty(roomState.RoomStateName) ? "" : roomState.RoomStateName; + var roomType = roomTypes.FirstOrDefault(a => a.Roomtype == source.RoomType); + source.RoomName = string.IsNullOrEmpty(roomType.RoomName) ? "" : roomType.RoomName; + }); return rooms; } #endregion - #region 获取所有房间信息 + + #region 根据房间状态来查询可使用的房间 /// - /// 获取所有房间信息 + /// 根据房间状态来查询可使用的房间 /// /// - public static List SelectRoomAll() + public List SelectCanUseRoomAll() { + List roomStates = new List(); + roomStates = base.Change().GetList(a => a.delete_mk != 1); + List roomTypes = new List(); + roomTypes = base.Change().GetList(a => a.delete_mk != 1); List rooms = new List(); - string sql = "select * from ROOM r,ROOMTYPE t,ROOMSTATE rs where r.RoomType=t.RoomType and r.RoomStateId=rs.RoomStateId"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) + rooms = base.GetList(a => a.delete_mk != 1 && a.RoomStateId == 0).OrderBy(a => a.RoomNo).ToList(); + rooms.ForEach(source => { - Room room = new Room(); - room.RoomNo = (string)dr["RoomNo"]; - room.CustoNo = dr["CustoNo"].ToString(); - room.RoomMoney = (decimal)dr["RoomMoney"]; - room.PersonNum = Convert.ToString(dr["PersonNum"]); - if (!DBNull.Value.Equals(dr["CheckTime"])) - { - room.CheckTime = DateTime.Parse(dr["CheckTime"].ToString()); - } - if (!DBNull.Value.Equals(dr["CheckOutTime"])) - { - room.CheckOutTime = DateTime.Parse(dr["CheckOutTime"].ToString()); - } - room.RoomStateId = (int)dr["RoomStateId"]; - room.RoomState = (string)dr["RoomState"]; - room.RoomType = (int)dr["RoomType"]; - room.RoomPosition = (string)dr["RoomPosition"]; - room.typeName = (string)dr["RoomName"]; - rooms.Add(room); - } - dr.Close(); - DBHelper.Closecon(); + var roomState = roomStates.FirstOrDefault(a => a.RoomStateId == source.RoomStateId); + source.RoomState = string.IsNullOrEmpty(roomState.RoomStateName) ? "" : roomState.RoomStateName; + var roomType = roomTypes.FirstOrDefault(a => a.Roomtype == source.RoomType); + source.RoomName = string.IsNullOrEmpty(roomType.RoomName) ? "" : roomType.RoomName; + }); return rooms; } #endregion - #region 获取房间分区的信息 + + #region 获取所有房间信息 /// - /// 获取房间分区的信息 + /// 获取所有房间信息 /// /// - public static List SelectRoomByTypeName(string TypeName) + public List SelectRoomAll() { - List rs = new List(); - string sql = "select * from ROOM r,ROOMTYPE t,ROOMSTATE rs where r.RoomType=t.RoomType and r.RoomStateId=rs.RoomStateId and t.RoomName='" + TypeName + "'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) + List roomStates = new List(); + roomStates = base.Change().GetList(a => a.delete_mk != 1); + List roomTypes = new List(); + roomTypes = base.Change().GetList(a => a.delete_mk != 1); + List rooms = new List(); + rooms = base.GetList(a => a.delete_mk != 1).OrderBy(a => a.RoomNo).ToList(); + rooms.ForEach(source => { - Room r = new Room(); - r.RoomNo = (string)dr["RoomNo"]; - r.CustoNo = dr["CustoNo"].ToString(); - r.RoomMoney = (decimal)dr["RoomMoney"]; - r.PersonNum = Convert.ToString(dr["PersonNum"]); - if (!DBNull.Value.Equals(dr["CheckTime"])) - { - r.CheckTime = DateTime.Parse(dr["CheckTime"].ToString()); - } - if (!DBNull.Value.Equals(dr["CheckOutTime"])) - { - r.CheckOutTime = DateTime.Parse(dr["CheckOutTime"].ToString()); - } - r.RoomStateId = (int)dr["RoomStateId"]; - r.RoomState = (string)dr["RoomState"]; - r.RoomType = (int)dr["RoomType"]; - r.RoomPosition = (string)dr["RoomPosition"]; - r.typeName = (string)dr["RoomName"]; - rs.Add(r); - } - dr.Close(); - DBHelper.Closecon(); - return rs; - + var roomState = roomStates.FirstOrDefault(a => a.RoomStateId == source.RoomStateId); + source.RoomState = string.IsNullOrEmpty(roomState.RoomStateName) ? "" : roomState.RoomStateName; + var roomType = roomTypes.FirstOrDefault(a => a.Roomtype == source.RoomType); + source.RoomName = string.IsNullOrEmpty(roomType.RoomName) ? "" : roomType.RoomName; + }); + return rooms; } #endregion - #region 根据房间状态来查询可使用的房间 + #region 获取房间分区的信息 /// - /// 根据房间状态来查询可使用的房间 + /// 获取房间分区的信息 /// /// - public static List SelectCanUseRoomAll() + public List SelectRoomByTypeName(string TypeName) { + List roomStates = new List(); + roomStates = base.Change().GetList(a => a.delete_mk != 1); + List roomTypes = new List(); + roomTypes = base.Change().GetList(a => a.delete_mk != 1 && a.RoomName == TypeName); + var listTypes = roomTypes.Select(a => a.Roomtype).Distinct().ToList(); List rooms = new List(); - string sql = "select * from ROOM r,ROOMTYPE t,ROOMSTATE rs where r.RoomType=t.RoomType and r.RoomStateId=rs.RoomStateId and r.RoomStateId='0'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) + rooms = base.GetList(a => a.delete_mk != 1 && listTypes.Contains(a.RoomType)).OrderBy(a => a.RoomNo).ToList(); + rooms.ForEach(source => { - Room room = new Room(); - room.RoomNo = (string)dr["RoomNo"]; - room.CustoNo = dr["CustoNo"].ToString(); - room.RoomMoney = (decimal)dr["RoomMoney"]; - room.PersonNum = Convert.ToString(dr["PersonNum"]); - if (!DBNull.Value.Equals(dr["CheckTime"])) - { - room.CheckTime = DateTime.Parse(dr["CheckTime"].ToString()); - } - if (!DBNull.Value.Equals(dr["CheckOutTime"])) - { - room.CheckOutTime = DateTime.Parse(dr["CheckOutTime"].ToString()); - } - room.RoomStateId = (int)dr["RoomStateId"]; - room.RoomState = (string)dr["RoomState"]; - room.RoomType = (int)dr["RoomType"]; - room.RoomPosition = (string)dr["RoomPosition"]; - room.typeName = (string)dr["RoomName"]; - rooms.Add(room); - } - dr.Close(); - DBHelper.Closecon(); + var roomState = roomStates.FirstOrDefault(a => a.RoomStateId == source.RoomStateId); + source.RoomState = string.IsNullOrEmpty(roomState.RoomStateName) ? "" : roomState.RoomStateName; + var roomType = roomTypes.FirstOrDefault(a => a.Roomtype == source.RoomType); + source.RoomName = string.IsNullOrEmpty(roomType.RoomName) ? "" : roomType.RoomName; + }); return rooms; } #endregion @@ -167,32 +118,14 @@ namespace SYS.Application /// /// /// - public static Room SelectRoomByRoomNo(string no) + public Room SelectRoomByRoomNo(string no) { - Room room = null; - string sql = "select * from room where RoomNo='" + no + "'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - if (dr.Read()) - { - room = new Room(); - room.RoomNo = (string)dr["RoomNo"]; - room.CustoNo = dr["CustoNo"].ToString(); - room.RoomMoney = (decimal)dr["RoomMoney"]; - room.PersonNum = Convert.ToString(dr["PersonNum"]); - if (!DBNull.Value.Equals(dr["CheckTime"])) - { - room.CheckTime = DateTime.Parse(dr["CheckTime"].ToString()); - } - if (!DBNull.Value.Equals(dr["CheckOutTime"])) - { - room.CheckOutTime = DateTime.Parse(dr["CheckOutTime"].ToString()); - } - room.RoomStateId = (int)dr["RoomStateId"]; - room.RoomType = (int)dr["RoomType"]; - room.RoomPosition = (string)dr["RoomPosition"]; - } - dr.Close(); - DBHelper.Closecon(); + List roomStates = new List(); + roomStates = base.Change().GetList(a => a.delete_mk != 1); + Room room = new Room(); + room = base.GetSingle(a => a.delete_mk != 1 && a.RoomNo == no); + var roomSate = roomStates.FirstOrDefault(a => a.RoomStateId == room.RoomStateId); + room.RoomState = string.IsNullOrEmpty(roomSate.RoomStateName) ? "" : roomSate.RoomStateName; return room; } #endregion @@ -203,12 +136,15 @@ namespace SYS.Application /// /// /// - public static int UpdateRoomByRoomNo(string room) + public bool UpdateRoomByRoomNo(string room) { - string sql = "update ROOM set CustoNo=Null,CheckTime=null,"; - sql += "CheckOutTime =CURRENT_DATE(),PersonNum=Null,"; - sql += "RoomStateId='3' where RoomNo='" + room + "'"; - return DBHelper.ExecuteNonQuery(sql); + return base.Update(a => new Room() + { + CustoNo = null, + CheckTime = null, + CheckOutTime = DateTime.Now, + RoomStateId = 3 + },a => a.RoomNo == room); } #endregion @@ -218,11 +154,9 @@ namespace SYS.Application /// /// /// - public static object DayByRoomNo(string roomno) + public object DayByRoomNo(string roomno) { - string sql = "select DATEDIFF(CURRENT_DATE(),CheckTime) from ROOM where RoomNo='" + roomno + "'"; - //DATEDIFF(workercheck.CheckTime,CURRENT_DATE()) = 0 - return DBHelper.ExecuteScalar(sql); + return Math.Abs(((TimeSpan)(base.GetSingle(a => a.RoomNo == roomno).CheckTime - DateTime.Now)).Days); } #endregion @@ -232,13 +166,31 @@ namespace SYS.Application /// /// /// - public static int UpdateRoomInfo(Room r) + public bool UpdateRoomInfo(Room r) { - string sql = "update Room set CustoNo='{1}',CheckTime='{2}',CheckOutTime=Null,"; - sql += "RoomStateId ='{3}',PersonNum='{4}' where RoomNo='{0}'"; - sql = string.Format(sql, r.RoomNo, r.CustoNo, r.CheckTime, r.RoomStateId, r.PersonNum); - MySqlConnection con = DBHelper.GetConnection(); - return DBHelper.ExecuteNonQuery(sql); + return base.Update(a => new Room() + { + CheckTime = r.CheckTime, + RoomStateId = r.RoomStateId, + CustoNo = r.CustoNo + },a => a.RoomNo == r.RoomNo); + } + #endregion + + #region 根据房间编号修改房间信息(预约) + /// + /// 根据房间编号修改房间信息(预约) + /// + /// + /// + public bool UpdateRoomInfoWithReser(Room r) + { + return base.Update(a => new Room() + { + RoomStateId = r.RoomStateId, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + }, a => a.RoomNo == r.RoomNo); } #endregion @@ -247,11 +199,9 @@ namespace SYS.Application /// 查询可入住房间数量 /// /// - public static object SelectCanUseRoomAllByRoomState() + public object SelectCanUseRoomAllByRoomState() { - List rooms = new List(); - string sql = "select Count(*) from ROOM where RoomStateId='0'"; - return DBHelper.ExecuteScalar(sql); + return base.GetList(a => a.RoomStateId == 0 && a.delete_mk != 1).OrderBy(a => a.RoomNo).Count(); } #endregion @@ -260,11 +210,9 @@ namespace SYS.Application /// 查询已入住房间数量 /// /// - public static object SelectNotUseRoomAllByRoomState() + public object SelectNotUseRoomAllByRoomState() { - List rooms = new List(); - string sql = "select Count(*) from ROOM where RoomStateId='1'"; - return DBHelper.ExecuteScalar(sql); + return base.GetList(a => a.RoomStateId == 1 && a.delete_mk != 1).OrderBy(a => a.RoomNo).Count(); } #endregion @@ -273,12 +221,9 @@ namespace SYS.Application /// 根据房间编号查询房间价格 /// /// - public static object SelectRoomByRoomPrice(string r) + public object SelectRoomByRoomPrice(string r) { - - string sql = "select RoomMoney from Room where RoomNo='" + r + "'"; - return DBHelper.ExecuteReader(sql); - + return base.GetSingle(a => a.RoomNo == r).RoomMoney; } #endregion @@ -287,11 +232,9 @@ namespace SYS.Application /// 查询脏房数量 /// /// - public static object SelectNotClearRoomAllByRoomState() + public object SelectNotClearRoomAllByRoomState() { - List rooms = new List(); - string sql = "select Count(*) from ROOM where RoomStateId='3'"; - return DBHelper.ExecuteScalar(sql); + return base.GetList(a => a.RoomStateId == 3 && a.delete_mk != 1).OrderBy(a => a.RoomNo).Count(); } #endregion @@ -300,11 +243,9 @@ namespace SYS.Application /// 查询维修房数量 /// /// - public static object SelectFixingRoomAllByRoomState() + public object SelectFixingRoomAllByRoomState() { - List rooms = new List(); - string sql = "select Count(*) from ROOM where RoomStateId='2'"; - return DBHelper.ExecuteScalar(sql); + return base.GetList(a => a.RoomStateId == 2 && a.delete_mk != 1).OrderBy(a => a.RoomNo).Count(); } #endregion @@ -313,24 +254,9 @@ namespace SYS.Application /// 查询预约房数量 /// /// - public static object SelectReseredRoomAllByRoomState() + public object SelectReseredRoomAllByRoomState() { - List rooms = new List(); - string sql = "select Count(*) from ROOM where RoomStateId='4'"; - return DBHelper.ExecuteScalar(sql); - } - #endregion - - #region 根据房间编号查询房间状态名称 - /// - /// 根据房间编号查询房间状态名称 - /// - /// - /// - public static object SelectRoomStateNameByRoomNo(string roomno) - { - string sql = "select s.RoomState from ROOMSTATE s,ROOM r where s.RoomStateId=r.RoomStateId and r.RoomNo='" + roomno + "'"; - return DBHelper.ExecuteScalar(sql); + return base.GetList(a => a.RoomStateId == 4 && a.delete_mk != 1).OrderBy(a => a.RoomNo).Count(); } #endregion @@ -341,10 +267,14 @@ namespace SYS.Application /// /// /// - public static int UpdateRoomStateByRoomNo(string roomno, int stateid) + public bool UpdateRoomStateByRoomNo(string roomno, int stateid) { - string sql = "update ROOM set RoomStateId='" + stateid + "' where RoomNo='" + roomno + "'"; - return DBHelper.ExecuteNonQuery(sql); + return base.Update(a => new Room() + { + RoomStateId = stateid, + datains_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + },a => a.RoomNo == roomno); } #endregion @@ -352,13 +282,18 @@ namespace SYS.Application /// /// 添加房间 /// - /// + /// /// - public static object InsertRoom(Room rn) + public bool InsertRoom(Room rn) { - string sql = "insert ROOM values('{0}','{1}',NULL,NULL,NULL,'0','{2}',NULL,'{3}')"; - sql = string.Format(sql, rn.RoomNo, rn.RoomType, rn.RoomMoney, rn.RoomPosition); - return DBHelper.ExecuteNonQuery(sql); + try + { + return base.Insert(rn); + } + catch (Exception) + { + return false; + } } #endregion @@ -367,35 +302,21 @@ namespace SYS.Application /// 查询所有可消费(已住)房间 /// /// - public static List SelectRoomByStateAll() + public List SelectRoomByStateAll() { + List roomStates = new List(); + roomStates = base.Change().GetList(a => a.delete_mk != 1); + List roomTypes = new List(); + roomTypes = base.Change().GetList(a => a.delete_mk != 1); List rooms = new List(); - string sql = "select * from ROOM r,ROOMTYPE t,ROOMSTATE rs where r.RoomType=t.RoomType and r.RoomStateId=rs.RoomStateId and r.RoomStateId='1'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) + rooms = base.GetList(a => a.delete_mk != 1 && a.RoomStateId == 1).OrderBy(a => a.RoomNo).ToList(); + rooms.ForEach(source => { - Room room = new Room(); - room.RoomNo = (string)dr["RoomNo"]; - room.CustoNo = dr["CustoNo"].ToString(); - room.RoomMoney = (decimal)dr["RoomMoney"]; - room.PersonNum = Convert.ToString(dr["PersonNum"]); - if (!DBNull.Value.Equals(dr["CheckTime"])) - { - room.CheckTime = DateTime.Parse(dr["CheckTime"].ToString()); - } - if (!DBNull.Value.Equals(dr["CheckOutTime"])) - { - room.CheckOutTime = DateTime.Parse(dr["CheckOutTime"].ToString()); - } - room.RoomStateId = (int)dr["RoomStateId"]; - room.RoomState = (string)dr["RoomState"]; - room.RoomType = (int)dr["RoomType"]; - room.RoomPosition = (string)dr["RoomPosition"]; - room.typeName = (string)dr["RoomName"]; - rooms.Add(room); - } - dr.Close(); - DBHelper.Closecon(); + var roomState = roomStates.FirstOrDefault(a => a.RoomStateId == source.RoomStateId); + source.RoomState = string.IsNullOrEmpty(roomState.RoomStateName) ? "" : roomState.RoomStateName; + var roomType = roomTypes.FirstOrDefault(a => a.Roomtype == source.RoomType); + source.RoomName = string.IsNullOrEmpty(roomType.RoomName) ? "" : roomType.RoomName; + }); return rooms; } #endregion @@ -405,20 +326,10 @@ namespace SYS.Application /// 获取所有房间状态 /// /// - public static List SelectRoomStateAll() + public List SelectRoomStateAll() { - List rs = new List(); - string sql = "select * from ROOMSTATE"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - Room r = new Room(); - r.RoomStateId = Convert.ToInt32(dr["RoomStateId"]); - r.RoomState = dr["RoomState"].ToString(); - rs.Add(r); - } - dr.Close(); - DBHelper.Closecon(); + List rs = new List(); + rs = base.Change().GetList(a => a.delete_mk != 1); return rs; } #endregion @@ -429,10 +340,9 @@ namespace SYS.Application /// /// /// - public static object SelectRoomStateIdByRoomNo(string roomno) + public object SelectRoomStateIdByRoomNo(string roomno) { - string sql = "select RoomStateId from ROOM where RoomNo='" + roomno + "'"; - return DBHelper.ExecuteScalar(sql); + return base.GetSingle(a => a.RoomNo == roomno).RoomStateId; } #endregion } diff --git a/SYS.Application/Room/RoomTypeService.cs b/SYS.Application/Room/RoomTypeService.cs index 74420e9d3c36edfc997d6b9a94d62207627c3d5d..c8804d8f531a1b32b0672d4f407967f1e675dee3 100644 --- a/SYS.Application/Room/RoomTypeService.cs +++ b/SYS.Application/Room/RoomTypeService.cs @@ -1,31 +1,24 @@ using System.Collections.Generic; using MySql.Data.MySqlClient; +using SYS.Common; using SYS.Core; namespace SYS.Application { - public class RoomTypeService + /// + /// 房间类型接口实现类 + /// + public class RoomTypeService:Repository, IRoomTypeService { #region 获取所有房间类型 /// /// 获取所有房间类型 /// /// - public static List SelectRoomTypesAll() + public List SelectRoomTypesAll() { List types = new List(); - string sql = "select * from ROOMTYPE"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - RoomType type = new RoomType(); - type.Roomtype = (int)dr["Roomtype"]; - type.RoomName = dr["RoomName"].ToString(); - types.Add(type); - } - dr.Close(); - DBHelper.Closecon(); - + types = base.GetList(a => a.delete_mk != 1); return types; } #endregion @@ -36,18 +29,12 @@ namespace SYS.Application /// /// /// - public static RoomType SelectRoomTypeByRoomNo(string no) + public RoomType SelectRoomTypeByRoomNo(string no) { - RoomType roomtype = null; - string sql = "select t.RoomName from ROOMTYPE t,ROOM r where t.RoomType=r.RoomType and r.RoomNo='" + no + "'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - if (dr.Read()) - { - roomtype = new RoomType(); - roomtype.RoomName = dr["RoomName"].ToString(); - } - dr.Close(); - DBHelper.Closecon(); + RoomType roomtype = new RoomType(); + Room room = new Room(); + room = base.Change().GetSingle(a => a.RoomNo == no && a.delete_mk != 1); + roomtype.RoomName = base.GetSingle(a => a.Roomtype == room.RoomStateId).RoomName; return roomtype; } #endregion diff --git a/SYS.Application/SYS.Application.csproj b/SYS.Application/SYS.Application.csproj index f01b71f96160c40255397475fe6e2845458f7462..c9af2ff67c942a950fb793a807982eeb70f3d0ba 100644 --- a/SYS.Application/SYS.Application.csproj +++ b/SYS.Application/SYS.Application.csproj @@ -22,6 +22,7 @@ prompt 4 x64 + bin\Debug\SYS.Application.xml pdbonly @@ -31,6 +32,9 @@ prompt 4 + + bitbug_favicon %281%29.ico + False @@ -44,6 +48,9 @@ False ..\SYS.Library\MySql.Web.dll + + ..\packages\SqlSugar.5.0.2\lib\SqlSugar.dll + @@ -54,16 +61,34 @@ + + + + + + + + + + + + + + + - + + + + + - - + - + @@ -75,12 +100,21 @@ + + {65501af6-c629-448a-847e-1bcd60665865} + SYS.Common + {cd039d0f-bd50-4fbf-b9cd-cdfab25c7dfa} SYS.Core False - + + + + + + \ No newline at end of file diff --git a/SYS.Application/Worker/IWorkerCheckService.cs b/SYS.Application/Worker/IWorkerCheckService.cs new file mode 100644 index 0000000000000000000000000000000000000000..d28a921648034c0891d53cdbace6e167c73539db --- /dev/null +++ b/SYS.Application/Worker/IWorkerCheckService.cs @@ -0,0 +1,41 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 员工打卡接口 + /// + public interface IWorkerCheckService + { + /// + /// 根据员工编号查询其所有的打卡记录 + /// + /// + /// + List SelectCheckInfoByWorkerNo(string wid); + + + /// + /// 查询员工签到天数 + /// + /// + /// + object SelectWorkerCheckDaySumByWorkerNo(string wkn); + + + /// + /// 查询今天员工是否已签到 + /// + /// + /// + object SelectToDayCheckInfoByWorkerNo(string wkn); + + /// + /// 添加员工打卡数据 + /// + /// + /// + bool AddCheckInfo(WorkerCheck workerCheck); + } +} \ No newline at end of file diff --git a/SYS.Application/Worker/IWorkerGoodBadService.cs b/SYS.Application/Worker/IWorkerGoodBadService.cs new file mode 100644 index 0000000000000000000000000000000000000000..d860cf808483d090da27744392398e69e7315ca0 --- /dev/null +++ b/SYS.Application/Worker/IWorkerGoodBadService.cs @@ -0,0 +1,25 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 员工奖惩信息接口 + /// + public interface IWorkerGoodBadService + { + /// + /// 添加员工奖惩记录 + /// + /// + /// + bool AddGoodBad(WorkerGoodBad goodBad); + + /// + /// 根据工号查找所有的奖惩记录信息 + /// + /// + /// + List SelectAllGoodBadByWorkNo(string wn); + } +} \ No newline at end of file diff --git a/SYS.Application/Worker/IWorkerHistoryService.cs b/SYS.Application/Worker/IWorkerHistoryService.cs new file mode 100644 index 0000000000000000000000000000000000000000..70f826752cb7cfa65ea20e056a29431e67856469 --- /dev/null +++ b/SYS.Application/Worker/IWorkerHistoryService.cs @@ -0,0 +1,25 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 员工履历信息接口 + /// + public interface IWorkerHistoryService + { + /// + /// 根据工号添加员工履历 + /// + /// + /// + bool AddHistoryByWorkerId(WorkerHistory workerHistory); + + /// + /// 根据工号查询履历信息 + /// + /// + /// + List SelectHistoryByWorkerId(string wid); + } +} \ No newline at end of file diff --git a/SYS.Application/Worker/IWorkerService.cs b/SYS.Application/Worker/IWorkerService.cs new file mode 100644 index 0000000000000000000000000000000000000000..c8d6f66ab506dfd2bd38bff3a9f0538fab406867 --- /dev/null +++ b/SYS.Application/Worker/IWorkerService.cs @@ -0,0 +1,75 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 员工信息接口 + /// + public interface IWorkerService + { + #region 修改员工信息 + /// + /// 修改员工信息 + /// + /// + /// + bool UpdateWorker(Worker worker); + #endregion + + /// + /// 更新员工职位和部门 + /// + /// + /// + + bool UpdateWorkerPositionAndClub(Worker worker); + + #region 添加员工信息 + /// + /// 添加员工信息 + /// + /// + /// + bool AddWorker(Worker worker); + #endregion + + #region 获取所有工作人员信息 + /// + /// 获取所有工作人员信息 + /// + /// + List SelectWorkerAll(); + #endregion + + #region 根据登录名称查询员工信息 + /// + /// 根据登录名称查询员工信息 + /// + /// + /// + Worker SelectWorkerInfoByWorkerId(string workerId); + #endregion + + #region 根据登录名称、密码查询员工信息 + /// + /// 根据登录名称、密码查询员工信息 + /// + /// + /// 登录名称 + /// + /// 登录密码 + /// + Worker SelectWorkerInfoByWorkerIdAndWorkerPwd(string id, string pwd); + #endregion + + + /// + /// 根据员工编号和密码修改密码 + /// + /// + /// + /// + bool UpdWorkerPwdByWorkNo(string workId, string workPwd); + } +} \ No newline at end of file diff --git a/SYS.Application/Worker/WorkerCheckService.cs b/SYS.Application/Worker/WorkerCheckService.cs index 0b83fadc8c4612065feaa4df278c9d43a15c0752..ae1f6930a2e92aa9ee0a827fee18ae1da3837cfb 100644 --- a/SYS.Application/Worker/WorkerCheckService.cs +++ b/SYS.Application/Worker/WorkerCheckService.cs @@ -1,41 +1,30 @@ using System; using System.Collections.Generic; +using System.Linq; using MySql.Data.MySqlClient; +using SYS.Common; using SYS.Core; namespace SYS.Application { - public class WorkerCheckService + /// + /// 员工打卡接口实现类 + /// + public class WorkerCheckService:Repository, IWorkerCheckService { /// /// 根据员工编号查询其所有的打卡记录 /// /// /// - public static List SelectCheckInfoByWorkerNo(string wid) + public List SelectCheckInfoByWorkerNo(string wid) { List workerChecks = new List(); - string sql = "select * from WorkerCheck where WorkerNo = '" + wid + "'"; - DBHelper.Opencon(); - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) + workerChecks = base.GetList(a => a.WorkerNo == wid && a.delete_mk != 1); + workerChecks.ForEach(source => { - WorkerCheck workerCheck = new WorkerCheck(); - workerCheck.WorkerNo = dr["WorkerNo"].ToString(); - workerCheck.CheckTime = (DateTime)dr["CheckTime"]; - workerCheck.CheckWay = dr["CheckWay"].ToString(); - if (Convert.ToInt32(dr["CheckState"]) == 0) - { - workerCheck.CheckState = "打卡成功"; - } - else - { - workerCheck.CheckState = "打卡失败"; - } - workerChecks.Add(workerCheck); - } - dr.Close(); - DBHelper.Closecon(); + source.CheckStateNm = source.CheckState == 0 ? "打卡成功" : "打卡失败"; + }); return workerChecks; } @@ -45,10 +34,9 @@ namespace SYS.Application /// /// /// - public static object SelectWorkerCheckDaySumByWorkerNo(string wkn) + public object SelectWorkerCheckDaySumByWorkerNo(string wkn) { - string sql = "SELECT COUNT(*) FROM WORKERCHECK WHERE workerNo = '" + wkn + "'"; - return DBHelper.ExecuteScalar(sql); + return base.GetList(a => a.WorkerNo == wkn && a.delete_mk != 1).Count; } @@ -57,10 +45,12 @@ namespace SYS.Application /// /// /// - public static object SelectToDayCheckInfoByWorkerNo(string wkn) + public object SelectToDayCheckInfoByWorkerNo(string wkn) { - string sql = "select Count(*) from WORKERCHECK where WorkerNo = '"+wkn+"' and DATEDIFF(workercheck.CheckTime,CURRENT_DATE()) = 0"; - return DBHelper.ExecuteScalar(sql); + //string sql = "select Count(*) from WORKERCHECK where WorkerNo = '"+wkn+ "' and DATEDIFF(CURRENT_DATE(),workercheck.CheckTime)"; + var listCheckInfo = base.GetList(a => a.WorkerNo == wkn && a.delete_mk != 1); + var count = listCheckInfo.Where(a => a.CheckTime.ToShortDateString() == DateTime.Now.ToShortDateString()).Count() > 0 ? 1:0; + return count; } /// @@ -68,10 +58,9 @@ namespace SYS.Application /// /// /// - public static int AddCheckInfo(WorkerCheck workerCheck) + public bool AddCheckInfo(WorkerCheck workerCheck) { - string sql = "insert into WORKERCHECK values('" + workerCheck.WorkerNo + "','"+workerCheck.CheckTime+"','" + workerCheck.CheckWay + "','0')"; - return DBHelper.ExecuteNonQuery(sql); + return base.Insert(workerCheck); } } } diff --git a/SYS.Application/Worker/WorkerGoodBadService.cs b/SYS.Application/Worker/WorkerGoodBadService.cs index 9645af5c2ff530e291d4757a7ce7221beda2009b..f3fb3686f44f4f202457bedd4ca90c3d7520dff8 100644 --- a/SYS.Application/Worker/WorkerGoodBadService.cs +++ b/SYS.Application/Worker/WorkerGoodBadService.cs @@ -5,37 +5,49 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SYS.Core; +using SYS.Common; namespace SYS.Application { - public class WorkerGoodBadService + /// + /// 员工奖惩记录接口实现类 + /// + public class WorkerGoodBadService:Repository, IWorkerGoodBadService { - public static int AddGoodBad(WorkerGoodBad goodBad) + /// + /// 添加员工奖惩记录 + /// + /// + /// + public bool AddGoodBad(WorkerGoodBad goodBad) { - string sql = "insert into WorkerGoodBad values('" + goodBad.WorkNo + "','" + goodBad.GBInfo + "','" + goodBad.GBType + "','" + goodBad.GBOperation + "','" + goodBad.GBTime + "')"; - return DBHelper.ExecuteNonQuery(sql); + return base.Insert(goodBad); } - - public static List SelectAllGoodBadByWorkNo(string wn) + /// + /// 根据工号查找所有的奖惩记录信息 + /// + /// + /// + public List SelectAllGoodBadByWorkNo(string wn) { + //查询所有超级管理员 + List admins = new List(); + admins = base.Change().GetList(a => a.DeleteMk != 1); + List gBTypes = new List(); + gBTypes = base.Change().GetList(a => a.delete_mk != 1); List gb = new List(); - string sql = "select * from WorkerGoodBad wgb,GBType gbt where wgb.GBType = gbt.GBType and wgb.WorkNo = '" + wn + "'"; - MySqlConnection conn = DBHelper.GetConnection(); - conn.Open(); - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) + gb = base.GetList(a => a.WorkNo == wn); + gb.ForEach(source => { - WorkerGoodBad goodBad = new WorkerGoodBad(); - goodBad.WorkNo = dr["WorkNo"].ToString(); - goodBad.GBInfo = dr["GBInfo"].ToString(); - goodBad.TypeName = dr["GBName"].ToString(); - goodBad.GBOperation = dr["GBOperation"].ToString(); - goodBad.GBTime = (DateTime)dr["GBTime"]; - gb.Add(goodBad); - } - dr.Close(); - DBHelper.Closecon(); + //奖惩类型 + var gbType = gBTypes.FirstOrDefault(a => a.GBTypeId == source.GBType); + source.TypeName = string.IsNullOrEmpty(gbType.GBName) ? "" : gbType.GBName; + + //操作人 + var admin = admins.FirstOrDefault(a => a.AdminAccount == source.GBOperation); + source.OperationName = string.IsNullOrEmpty(admin.AdminName) ? "" : admin.AdminName; + }); return gb; } } diff --git a/SYS.Application/Worker/WorkerHistoryService.cs b/SYS.Application/Worker/WorkerHistoryService.cs index ac71cea9a3b2323ff8e61e0d9f629eccfd43afaa..ef8f61584433813c8dd182848d174932e622ce62 100644 --- a/SYS.Application/Worker/WorkerHistoryService.cs +++ b/SYS.Application/Worker/WorkerHistoryService.cs @@ -1,36 +1,35 @@ using System; using System.Collections.Generic; using MySql.Data.MySqlClient; +using SYS.Common; using SYS.Core; namespace SYS.Application { - public class WorkerHistoryService + /// + /// 员工履历接口实现类 + /// + public class WorkerHistoryService:Repository, IWorkerHistoryService { - - public static int AddHistoryByWorkerId(WorkerHistory workerHistory, string wid) + /// + /// 根据工号添加员工履历 + /// + /// + /// + public bool AddHistoryByWorkerId(WorkerHistory workerHistory) { - string sql = "insert into WorkerHistory values('" + wid + "','" + workerHistory.StartDate + "','" + workerHistory.EndDate + "','" + workerHistory.Postion + "','" + workerHistory.Company + "')"; - return DBHelper.ExecuteNonQuery(sql); + return base.Insert(workerHistory); } - public static List SelectHistoryByWorkerId(string wid) + /// + /// 根据工号查询履历信息 + /// + /// + /// + public List SelectHistoryByWorkerId(string wid) { List why = new List(); - string sql = "SELECT * FROM WORKERINFO wi,WORKERHISTORY wh where wi.WorkerId = wh.WorkerId and wi.WorkerId = '" + wid + "'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - WorkerHistory workerHistory = new WorkerHistory(); - workerHistory.WorkerId = dr["WorkerId"].ToString(); - workerHistory.StartDate = DateTime.Parse(dr["StartDate"].ToString()); - workerHistory.EndDate = DateTime.Parse(dr["EndDate"].ToString()); - workerHistory.Postion = dr["Position"].ToString(); - workerHistory.Company = dr["Company"].ToString(); - why.Add(workerHistory); - } - dr.Close(); - DBHelper.Closecon(); + why = base.GetList(a => a.delete_mk != 1 && a.WorkerId == wid); return why; } } diff --git a/SYS.Application/Worker/WorkerService.cs b/SYS.Application/Worker/WorkerService.cs index 310ce81a2203c711969fff3bc026fda8e204f1e5..795ed8c4dbd41063615554e6c8ecab608a86553c 100644 --- a/SYS.Application/Worker/WorkerService.cs +++ b/SYS.Application/Worker/WorkerService.cs @@ -1,26 +1,56 @@ using System; using System.Collections.Generic; +using System.Linq; using MySql.Data.MySqlClient; +using SYS.Common; using SYS.Core; namespace SYS.Application { - public class WorkerService + /// + /// 员工信息接口实现类 + /// + public class WorkerService:Repository,IWorkerService { - #region 修改员工信息 /// /// 修改员工信息 /// /// /// - public static int UpdateWorker(Worker worker) + public bool UpdateWorker(Worker worker) { - string sql = "update WORKERINFO set WorkerTel = '"+worker.WorkerTel+"',WorkerAddress = '"+worker.WorkerAddress+"',WorkerPwd = '"+worker.WorkerPwd+"',WorkerFace = '"+worker.WorkerFace+"',WorkerEducation = '"+worker.WorkerEduction+"',WorkerSex = '"+worker.WorkerSex+"' where WorkerId = '"+worker.WorkerId+"'"; - return DBHelper.ExecuteNonQuery(sql); + return base.Update(a => new Worker() + { + WorkerName = worker.WorkerName, + WorkerTel = worker.WorkerTel, + WorkerAddress = worker.WorkerAddress, + WorkerFace = string.IsNullOrEmpty(worker.WorkerFace) ? "" : worker.WorkerFace, + WorkerEducation = string.IsNullOrEmpty(worker.WorkerEducation) ? "" : worker.WorkerEducation, + WorkerNation = string.IsNullOrEmpty(worker.WorkerNation) ? "" : worker.WorkerNation, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + },a => a.WorkerId == worker.WorkerId); + } #endregion + /// + /// 更新员工职位和部门 + /// + /// + /// + + public bool UpdateWorkerPositionAndClub(Worker worker) + { + return base.Update(a => new Worker() + { + WorkerClub = worker.WorkerClub, + WorkerPosition = worker.WorkerPosition, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }, a => a.WorkerId == worker.WorkerId); + } #region 添加员工信息 /// @@ -28,10 +58,9 @@ namespace SYS.Application /// /// /// - public static int AddWorker(Worker worker) + public bool AddWorker(Worker worker) { - string sql = "insert into WORKERINFO values('" + worker.WorkerId + "','" + worker.WorkerName + "','" + worker.WorkerBirth + "','" + worker.WorkerSex + "','" + worker.WorkerTel + "','" + worker.WorkerClub + "','" + worker.WorkerAddress + "','" + worker.WorkerPosition + "','" + worker.CardId + "','" + worker.WorkerPwd + "','" + worker.WorkerTime + "','" + worker.WorkerFace + "','" + worker.WorkerEduction + "')"; - return DBHelper.ExecuteNonQuery(sql); + return base.Insert(worker); } #endregion @@ -40,31 +69,45 @@ namespace SYS.Application /// 获取所有工作人员信息 /// /// - public static List SelectWorkerAll() + public List SelectWorkerAll() { + //查询所有教育程度信息 + List educations = new List(); + educations = base.Change().GetList(a => a.delete_mk != 1); + //查询所有性别类型信息 + List sexTypes = new List(); + sexTypes = base.Change().GetList(a => a.delete_mk != 1); + //查询所有民族类型信息 + List nations = new List(); + nations = base.Change().GetList(a => a.delete_mk != 1); + //查询所有部门信息 + List depts = new List(); + depts = base.Change().GetList(a => a.delete_mk != 1); + //查询所有职位信息 + List positions = new List(); + positions = base.Change().GetList(a => a.delete_mk != 1); + //查询所有员工信息 List workers = new List(); - string sql = "select * from WORKERINFO"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) + workers = base.Change().GetList(a => a.delete_mk != 1); + workers.ForEach(source => { - Worker worker = new Worker(); - worker.WorkerId = (string)dr["WorkerId"]; - worker.WorkerName = dr["WorkerName"].ToString(); - worker.WorkerBirth = DateTime.Parse(dr["WorkerBirthday"].ToString()); - worker.WorkerSex = Convert.ToString(dr["WorkerSex"]); - worker.WorkerTel = (string)dr["WorkerTel"]; - worker.WorkerClub = (string)dr["WorkerClub"]; - worker.WorkerAddress = (string)dr["WorkerAddress"]; - worker.WorkerPosition = (string)dr["WorkerPosition"]; - worker.CardId = (string)dr["CardId"]; - worker.WorkerPwd = (string)dr["WorkerPwd"]; - worker.WorkerTime = DateTime.Parse(dr["WorkerTime"].ToString()); - worker.WorkerFace = (string)dr["WorkerFace"]; - worker.WorkerEduction = (string)dr["WorkerEducation"]; - workers.Add(worker); - } - dr.Close(); - DBHelper.Closecon(); + //性别类型 + var sexType = sexTypes.FirstOrDefault(a => a.sexId == source.WorkerSex); + source.WorkerSexName = string.IsNullOrEmpty(sexType.sexName) ? "" : sexType.sexName; + //教育程度 + var eduction = educations.FirstOrDefault(a => a.education_no == source.WorkerEducation); + source.EducationName = string.IsNullOrEmpty(eduction.education_name) ? "" : eduction.education_name; + //民族类型 + var nation = nations.FirstOrDefault(a => a.nation_no == source.WorkerNation); + source.NationName = string.IsNullOrEmpty(nation.nation_name) ? "" : nation.nation_name; + //部门 + var dept = depts.FirstOrDefault(a => a.dept_no == source.WorkerClub); + source.ClubName = string.IsNullOrEmpty(dept.dept_name) ? "" : dept.dept_name; + //职位 + var position = positions.FirstOrDefault(a => a.position_no == source.WorkerPosition); + source.PositionName = string.IsNullOrEmpty(position.position_name) ? "" : position.position_name; + }); + return workers; } #endregion @@ -75,29 +118,25 @@ namespace SYS.Application /// /// /// - public static Worker SelectWorkerInfoByWorkerId(string workerId) + public Worker SelectWorkerInfoByWorkerId(string workerId) { - Worker w = null; - string sql = "select * from WORKERINFO where WorkerId='" + workerId + "'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - if (dr.Read()) - { - w = new Worker(); - w.WorkerId = (string)dr["WorkerId"]; - w.WorkerName = dr["WorkerName"].ToString(); - w.WorkerBirth = DateTime.Parse(dr["WorkerBirthday"].ToString()); - w.WorkerSex = Convert.ToString(dr["WorkerSex"]); - w.WorkerTel = (string)dr["WorkerTel"]; - w.WorkerClub = (string)dr["WorkerClub"]; - w.WorkerAddress = (string)dr["WorkerAddress"]; - w.WorkerPosition = (string)dr["WorkerPosition"]; - w.CardId = (string)dr["CardId"]; - w.WorkerPwd = (string)dr["WorkerPwd"]; - w.WorkerTime = DateTime.Parse(dr["WorkerTime"].ToString()); - w.WorkerFace = (string)dr["WorkerFace"]; - } - dr.Close(); - DBHelper.Closecon(); + Worker w = new Worker(); + w = base.Change().GetSingle(a => a.WorkerId == workerId); + //性别类型 + var sexType = base.Change().GetSingle(a => a.sexId == w.WorkerSex); + w.WorkerSexName = string.IsNullOrEmpty(sexType.sexName) ? "" : sexType.sexName; + //教育程度 + var eduction = base.Change().GetSingle(a => a.education_no == w.WorkerEducation); + w.EducationName = string.IsNullOrEmpty(eduction.education_name) ? "" : eduction.education_name; + //民族类型 + var nation = base.Change().GetSingle(a => a.nation_no == w.WorkerNation); + w.NationName = string.IsNullOrEmpty(nation.nation_name) ? "" : nation.nation_name; + //部门 + var dept = base.Change().GetSingle(a => a.dept_no == w.WorkerClub); + w.ClubName = string.IsNullOrEmpty(dept.dept_name) ? "" : dept.dept_name; + //职位 + var position = base.Change().GetSingle(a => a.position_no == w.WorkerPosition); + w.PositionName = string.IsNullOrEmpty(position.position_name) ? "" : position.position_name; return w; } #endregion @@ -111,32 +150,49 @@ namespace SYS.Application /// /// 登录密码 /// - public static Worker SelectWorkerInfoByWorkerIdAndWorkerPwd(string id, string pwd) + public Worker SelectWorkerInfoByWorkerIdAndWorkerPwd(string id, string pwd) { - Worker w = null; - string sql = "select * from WORKERINFO where WorkerId='{0}' and WorkerPwd='{1}'"; - sql = string.Format(sql, id, pwd); - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - if (dr.Read()) + Worker w = new Worker(); + w = base.GetSingle(a => a.WorkerId == id && a.WorkerPwd == pwd); + if (w == null) { - w = new Worker(); - w.WorkerId = (string)dr["WorkerId"]; - w.WorkerName = dr["WorkerName"].ToString(); - w.WorkerBirth = DateTime.Parse(dr["WorkerBirthday"].ToString()); - w.WorkerSex = Convert.ToString(dr["WorkerSex"]); - w.WorkerTel = (string)dr["WorkerTel"]; - w.WorkerClub = (string)dr["WorkerClub"]; - w.WorkerAddress = (string)dr["WorkerAddress"]; - w.WorkerPosition = (string)dr["WorkerPosition"]; - w.CardId = (string)dr["CardId"]; - w.WorkerPwd = (string)dr["WorkerPwd"]; - w.WorkerTime = DateTime.Parse(dr["WorkerTime"].ToString()); - w.WorkerFace = (string)dr["WorkerFace"]; + w = null; + return w; } - dr.Close(); - DBHelper.Closecon(); + //性别类型 + var sexType = base.Change().GetSingle(a => a.sexId == w.WorkerSex); + w.WorkerSexName = string.IsNullOrEmpty(sexType.sexName) ? "" : sexType.sexName; + //教育程度 + var eduction = base.Change().GetSingle(a => a.education_no == w.WorkerEducation); + w.EducationName = string.IsNullOrEmpty(eduction.education_name) ? "" : eduction.education_name; + //民族类型 + var nation = base.Change().GetSingle(a => a.nation_no == w.WorkerNation); + w.NationName = string.IsNullOrEmpty(nation.nation_name) ? "" : nation.nation_name; + //部门 + var dept = base.Change().GetSingle(a => a.dept_no == w.WorkerClub); + w.ClubName = string.IsNullOrEmpty(dept.dept_name) ? "" : dept.dept_name; + //职位 + var position = base.Change().GetSingle(a => a.position_no == w.WorkerPosition); + w.PositionName = string.IsNullOrEmpty(position.position_name) ? "" : position.position_name; return w; } #endregion + + /// + /// 根据员工编号和密码修改密码 + /// + /// + /// + /// + public bool UpdWorkerPwdByWorkNo(string workId,string workPwd) + { + return base.Update(a => new Worker() + { + WorkerPwd = workPwd, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + },a => a.WorkerId == workId); + } + } } diff --git a/SYS.Application/Zero/AdminService.cs b/SYS.Application/Zero/AdminService.cs index 98bf57166f2998d2237371b57939771055211232..f8c5bcb4c249b5ec39693e9448949f22d3714817 100644 --- a/SYS.Application/Zero/AdminService.cs +++ b/SYS.Application/Zero/AdminService.cs @@ -1,57 +1,60 @@ using MySql.Data.MySqlClient; +using SYS.Common; using SYS.Core; +using System; namespace SYS.Application { - public class AdminService + /// + /// 管理员数据访问层 + /// + public class AdminService:Repository, IAdminService { + #region 根据超管密码查询员工类型和权限 /// /// 根据超管密码查询员工类型和权限 /// - /// + /// + /// /// - public static Admin SelectMangerByPass(string adminpass) + public Admin SelectMangerByPass(string adminaccount,string adminpass) { - Admin a = null; - string sql = "select * from ADMININFO where AdminPassword='" + adminpass + "'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - if (dr.Read()) - { - a = new Admin(); - a.AdminPassword = (string)dr["AdminPassword"]; - a.AdminType = dr["AdminType"].ToString(); - a.AdminGroup = dr["AdminName"].ToString(); - } - dr.Close(); - DBHelper.Closecon(); - return a; + Admin admin = new Admin(); + admin = base.GetSingle(a => a.AdminAccount == adminaccount && a.AdminPassword == adminpass); + return admin; } #endregion - #region 根据超管密码查询超管信息 + #region 根据超管账号查询对应的密码 /// - /// 根据超管密码查询超管信息 + /// 根据超管账号查询对应的密码 /// - /// - /// 超管密码 + /// /// - public static Admin SelectAdminInfoByadminpwd(string pwd) + public Admin SelectAdminPwdByAccount(string account) { - Admin a = null; - string sql = "select * from ADMININFO where AdminPassword='{0}'"; - sql = string.Format(sql, pwd); - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - if (dr.Read()) - { - a = new Admin(); - a.AdminPassword = (string)dr["WorkerId"]; - a.AdminType = dr["WorkerName"].ToString(); - } - dr.Close(); - DBHelper.Closecon(); - return a; + Admin admin = new Admin(); + admin = base.GetSingle(a => a.AdminAccount == account); + return admin; } #endregion + + /// + /// 修改密码 + /// + /// + /// + /// + public bool UpdateNewPwdByOldPwd(string Account, string NewPwd) + { + return base.Update(a => new Admin() + { + AdminPassword = NewPwd, + datachg_usr = AdminInfo.Account, + datachg_time = DateTime.Now + },a => a.AdminAccount == Account); + } + } } diff --git a/SYS.Application/Zero/BaseService.cs b/SYS.Application/Zero/BaseService.cs new file mode 100644 index 0000000000000000000000000000000000000000..ab82a79e75db28a18b3a7545b3860fed25fac0db --- /dev/null +++ b/SYS.Application/Zero/BaseService.cs @@ -0,0 +1,659 @@ +using MySql.Data.MySqlClient; +using SYS.Common; +using SYS.Core; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Application +{ + /// + /// 基础信息接口实现类 + /// + public class BaseService: Repository,IBaseService + { + + #region 性别模块 + + /// + /// 查询所有性别类型(可用) + /// + /// + public List SelectSexTypeAllCanUse() + { + List sexTypes = new List(); + sexTypes = base.GetList(a => a.delete_mk != 1); + return sexTypes; + } + + /// + /// 查询所有性别类型 + /// + /// + public List SelectSexTypeAll() + { + List sexTypes = new List(); + sexTypes = base.GetList(); + return sexTypes; + } + + /// + /// 查询性别类型 + /// + /// + public SexType SelectSexType(SexType sexType) + { + SexType sexTypes = new SexType(); + sexTypes = base.GetSingle(a => a.sexId == sexType.sexId); + return sexTypes; + } + + /// + /// 添加性别类型 + /// + /// + /// + public bool AddSexType(SexType sexType) + { + return base.Insert(sexType); + } + + /// + /// 删除性别类型 + /// + /// + /// + public bool DelSexType(SexType sexType) + { + return base.Update(a => new SexType() + { + delete_mk = sexType.delete_mk, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + }, a => a.sexId == sexType.sexId); + } + + /// + /// 更新性别类型 + /// + /// + /// + public bool UpdSexType(SexType sexType) + { + return base.Update(a => new SexType() + { + sexName = sexType.sexName, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + }, a => a.sexId == sexType.sexId); + } + + #endregion + + #region 职位模块 + + /// + /// 查询所有职位类型(可用) + /// + /// + public List SelectPositionAllCanUse() + { + List positions = new List(); + positions = base.Change().GetList(a => a.delete_mk != 1); + return positions; + } + + /// + /// 查询所有职位类型 + /// + /// + public List SelectPositionAll() + { + List positions = new List(); + positions = base.Change().GetList(); + return positions; + } + + /// + /// 查询职位类型 + /// + /// + public Position SelectPosition(Position position) + { + Position position1 = new Position(); + position1 = base.Change().GetSingle(a => a.position_no == position.position_no); + return position1; + } + + /// + /// 添加职位类型 + /// + /// + /// + public bool AddPosition(Position position) + { + return base.Change().Insert(position); + } + + /// + /// 删除职位类型 + /// + /// + /// + public bool DelPosition(Position position) + { + return base.Change().Update(a => new Position() + { + delete_mk = position.delete_mk, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + },a => a.position_no == position.position_no); + } + + /// + /// 更新职位类型 + /// + /// + /// + public bool UpdPosition(Position position) + { + return base.Change().Update(a => new Position() + { + position_name = position.position_name, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + }, a => a.position_no == position.position_no); + } + + #endregion + + #region 民族模块 + + /// + /// 查询所有民族类型(可用) + /// + /// + public List SelectNationAllCanUse() + { + List nations = new List(); + nations = base.Change().GetList(a => a.delete_mk != 1); + return nations; + } + + /// + /// 查询所有民族类型 + /// + /// + public List SelectNationAll() + { + List nations = new List(); + nations = base.Change().GetList(); + return nations; + } + + /// + /// 查询民族类型 + /// + /// + public Nation SelectNation(Nation nation) + { + Nation nation1 = new Nation(); + nation1 = base.Change().GetSingle(a => a.nation_no.Equals(nation.nation_no)); + return nation1; + } + + /// + /// 添加民族类型 + /// + /// + /// + public bool AddNation(Nation nation) + { + return base.Change().Insert(nation); + } + + /// + /// 删除民族类型 + /// + /// + /// + public bool DelNation(Nation nation) + { + return base.Change().Update(a => new Nation() + { + delete_mk = nation.delete_mk, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + },a => a.nation_no.Equals(nation.nation_no)); + + } + + /// + /// 更新民族类型 + /// + /// + /// + public bool UpdNation(Nation nation) + { + return base.Change().Update(a => new Nation() + { + nation_name = nation.nation_name, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + }, a => a.nation_no.Equals(nation.nation_no)); + } + + #endregion + + #region 学历模块 + + /// + /// 查询所有学历类型(可用) + /// + /// + public List SelectEducationAllCanUse() + { + List educations = new List(); + educations = base.Change().GetList(a => a.delete_mk != 1); + return educations; + } + + /// + /// 查询所有学历类型 + /// + /// + public List SelectEducationAll() + { + List educations = new List(); + educations = base.Change().GetList(); + return educations; + } + + /// + /// 查询学历类型 + /// + /// + public Education SelectEducation(Education education) + { + Education education1 = new Education(); + education1 = base.Change().GetSingle(a => a.education_no == education.education_no); + return education1; + } + + /// + /// 添加学历类型 + /// + /// + /// + public bool AddEducation(Education education) + { + return base.Change().Insert(education); + } + + /// + /// 删除学历类型 + /// + /// + /// + public bool DelEducation(Education education) + { + return base.Change().Update(a => new Education() + { + delete_mk = education.delete_mk, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + }, a => a.education_no == education.education_no); + } + + /// + /// 更新学历类型 + /// + /// + /// + public bool UpdEducation(Education education) + { + return base.Change().Update(a => new Education() + { + education_name = education.education_name, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + }, a => a.education_no == education.education_no); + } + + #endregion + + #region 部门模块 + + /// + /// 查询所有部门类型(可用) + /// + /// + public List SelectDeptAllCanUse() + { + List workers = new List(); + workers = base.Change().GetList(a => a.delete_mk != 1); + List depts = new List(); + depts = base.Change().GetList(a => a.delete_mk != 1); + depts.ForEach(source => + { + var dept = depts.FirstOrDefault(a => a.dept_no == source.dept_parent); + source.parent_name = dept == null ? "" : dept.dept_name; + var leader = workers.FirstOrDefault(a => source.dept_leader != null && a.WorkerId == source.dept_leader); + source.leader_name = leader == null ? "" : leader.WorkerName; + }); + return depts; + } + + /// + /// 查询所有部门类型 + /// + /// + public List SelectDeptAll() + { + List workers = new List(); + workers = base.Change().GetList(a => a.delete_mk != 1); + List depts = new List(); + depts = base.Change().GetList(a => a.delete_mk != 1); + depts.ForEach(source => + { + var dept = depts.FirstOrDefault(a => a.dept_no == source.dept_parent); + source.parent_name = dept == null ? "" : dept.dept_name; + var leader = workers.FirstOrDefault(a => source.dept_leader != null && a.WorkerId == source.dept_leader); + source.leader_name = leader == null ? "" : leader.WorkerName; + }); + return depts; + } + + /// + /// 查询部门类型 + /// + /// + public Dept SelectDept(Dept dept) + { + Dept dept1 = new Dept(); + dept1 = base.Change().GetSingle(a => a.dept_no.Equals(dept.dept_no)); + return dept1; + } + + /// + /// 添加部门类型 + /// + /// + /// + public bool AddDept(Dept dept) + { + return base.Change().Insert(dept); + } + + /// + /// 删除部门类型 + /// + /// + /// + public bool DelDept(Dept dept) + { + return base.Change().Update(a => new Dept() + { + delete_mk = dept.delete_mk, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + },a => a.dept_no == dept.dept_no); + } + + /// + /// 更新部门类型 + /// + /// + /// + public bool UpdDept(Dept dept) + { + return base.Change().Update(a => new Dept() + { + dept_name = dept.dept_name, + dept_desc = dept.dept_desc, + dept_leader = dept.dept_leader, + dept_parent = dept.dept_parent, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + },a => a.dept_no == dept.dept_no); + } + + #endregion + + #region 客户类型模块 + + /// + /// 查询所有客户类型(可用) + /// + /// + public List SelectCustoTypeAllCanUse() + { + List custoTypes = new List(); + custoTypes = base.Change().GetList(a => a.delete_mk != 1); + return custoTypes; + } + + /// + /// 查询所有客户类型 + /// + /// + public List SelectCustoTypeAll() + { + List custoTypes = new List(); + custoTypes = base.Change().GetList(); + return custoTypes; + } + + /// + /// 根据客户类型ID查询类型名称 + /// + /// + /// + public CustoType SelectCustoTypeByTypeId(CustoType custoType) + { + CustoType custoTypes = new CustoType(); + custoType = base.Change().GetSingle(a => a.UserType == custoType.UserType && a.delete_mk != 1); + return custoTypes; + } + + /// + /// 添加客户类型 + /// + /// + /// + public bool InsertCustoType(CustoType custoType) + { + return base.Change().Insert(custoType); + } + + /// + /// 删除客户类型 + /// + /// + /// + public bool DeleteCustoType(CustoType custoType) + { + return base.Change().Update(a => new CustoType() + { + delete_mk = 1, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + },a => a.UserType == custoType.UserType); + } + + /// + /// 更新客户类型 + /// + /// + /// + public bool UpdateCustoType(CustoType custoType) + { + return base.Change().Update(a => new CustoType() + { + TypeName = custoType.TypeName, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + },a => a.UserType == custoType.UserType); + } + + #endregion + + #region 证件类型模块 + + /// + /// 查询所有证件类型(可用) + /// + /// + public List SelectPassPortTypeAllCanUse() + { + List passPortTypes = new List(); + passPortTypes = base.Change().GetList(a => a.delete_mk != 1); + return passPortTypes; + } + + /// + /// 查询所有证件类型 + /// + /// + public List SelectPassPortTypeAll() + { + List passPortTypes = new List(); + passPortTypes = base.Change().GetList(); + return passPortTypes; + } + + /// + /// 根据证件类型ID查询类型名称 + /// + /// + /// + public PassPortType SelectPassPortTypeByTypeId(PassPortType passPortType) + { + PassPortType passPortType1 = new PassPortType(); + passPortType1 = base.Change().GetSingle(a => a.PassportId == passPortType.PassportId && a.delete_mk != 1); + return passPortType1; + } + + /// + /// 添加证件类型 + /// + /// + /// + public bool InsertPassPortType(PassPortType passPortType) + { + return base.Change().Insert(passPortType); + } + + /// + /// 删除证件类型 + /// + /// + /// + public bool DeletePassPortType(PassPortType portType) + { + return base.Change().Update(a => new PassPortType() + { + delete_mk = 1, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }, a => a.PassportId == portType.PassportId); + } + + /// + /// 更新证件类型 + /// + /// + /// + public bool UpdatePassPortType(PassPortType portType) + { + return base.Change().Update(a => new PassPortType() + { + PassportName = portType.PassportName, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }, a => a.PassportId == portType.PassportId); + } + + #endregion + + #region 奖惩类型模块 + + /// + /// 查询所有奖惩类型(可用) + /// + /// + public List SelectGBTypeAllCanUse() + { + List gBTypes = new List(); + gBTypes = base.Change().GetList(a => a.delete_mk != 1); + return gBTypes; + } + + /// + /// 查询所有奖惩类型 + /// + /// + public List SelectGBTypeAll() + { + List gBTypes = new List(); + gBTypes = base.Change().GetList(); + return gBTypes; + } + + /// + /// 根据奖惩类型ID查询类型名称 + /// + /// + /// + public GBType SelectGBTypeByTypeId(GBType gBType) + { + GBType gBType1 = new GBType(); + gBType1 = base.Change().GetSingle(a => a.GBTypeId == gBType.GBTypeId && a.delete_mk != 1); + return gBType1; + } + + /// + /// 添加奖惩类型 + /// + /// + /// + public bool InsertGBType(GBType gBType) + { + return base.Change().Insert(gBType); + } + + /// + /// 删除奖惩类型 + /// + /// + /// + public bool DeleteGBType(GBType gBType) + { + return base.Change().Update(a => new GBType() + { + delete_mk = 1, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }, a => a.GBTypeId == gBType.GBTypeId); + } + + /// + /// 更新奖惩类型 + /// + /// + /// + public bool UpdateGBType(GBType gBType) + { + return base.Change().Update(a => new GBType() + { + GBName = gBType.GBName, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }, a => a.GBTypeId == gBType.GBTypeId); + } + + #endregion + } +} diff --git a/SYS.Application/Zero/IAdminService.cs b/SYS.Application/Zero/IAdminService.cs new file mode 100644 index 0000000000000000000000000000000000000000..d1ecdd0dfc332e399ed41c58cfa68c21918d6449 --- /dev/null +++ b/SYS.Application/Zero/IAdminService.cs @@ -0,0 +1,40 @@ +using SYS.Core; + +namespace SYS.Application +{ + /// + /// 管理员数据访问接口 + /// + public interface IAdminService + { + + #region 根据超管密码查询员工类型和权限 + /// + /// 根据超管密码查询员工类型和权限 + /// + /// + /// + /// + Admin SelectMangerByPass(string adminaccount, string adminpass); + #endregion + + + #region 根据超管账号查询对应的密码 + /// + /// 根据超管账号查询对应的密码 + /// + /// + /// + Admin SelectAdminPwdByAccount(string account); + #endregion + + + /// + /// 修改密码 + /// + /// + /// + /// + bool UpdateNewPwdByOldPwd(string Account, string NewPwd); + } +} \ No newline at end of file diff --git a/SYS.Application/Zero/IBaseService.cs b/SYS.Application/Zero/IBaseService.cs new file mode 100644 index 0000000000000000000000000000000000000000..fecffcbb015dd4c9fa90a380556403d665c823dd --- /dev/null +++ b/SYS.Application/Zero/IBaseService.cs @@ -0,0 +1,362 @@ +using SYS.Core; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Application +{ + /// + /// 基础信息接口 + /// + public interface IBaseService + { + #region 性别模块 + + /// + /// 查询所有性别类型(可用) + /// + /// + List SelectSexTypeAllCanUse(); + + /// + /// 查询所有性别类型 + /// + /// + List SelectSexTypeAll(); + + /// + /// 查询性别类型 + /// + /// + SexType SelectSexType(SexType sexType); + + /// + /// 添加性别类型 + /// + /// + /// + bool AddSexType(SexType sexType); + + /// + /// 删除性别类型 + /// + /// + /// + bool DelSexType(SexType sexType); + + /// + /// 更新性别类型 + /// + /// + /// + bool UpdSexType(SexType sexType); + + #endregion + + #region 职位模块 + + /// + /// 查询所有职位类型(可用) + /// + /// + List SelectPositionAllCanUse(); + + /// + /// 查询所有职位类型 + /// + /// + List SelectPositionAll(); + + /// + /// 查询职位类型 + /// + /// + Position SelectPosition(Position position); + + /// + /// 添加职位类型 + /// + /// + /// + bool AddPosition(Position position); + + /// + /// 删除职位类型 + /// + /// + /// + bool DelPosition(Position position); + + /// + /// 更新职位类型 + /// + /// + /// + bool UpdPosition(Position position); + + #endregion + + #region 民族模块 + + /// + /// 查询所有民族类型(可用) + /// + /// + List SelectNationAllCanUse(); + + /// + /// 查询所有民族类型 + /// + /// + List SelectNationAll(); + + /// + /// 查询民族类型 + /// + /// + Nation SelectNation(Nation nation); + + /// + /// 添加民族类型 + /// + /// + /// + bool AddNation(Nation nation); + + /// + /// 删除民族类型 + /// + /// + /// + bool DelNation(Nation nation); + + /// + /// 更新民族类型 + /// + /// + /// + bool UpdNation(Nation nation); + + #endregion + + #region 学历模块 + + /// + /// 查询所有学历类型(可用) + /// + /// + List SelectEducationAllCanUse(); + + /// + /// 查询所有学历类型 + /// + /// + List SelectEducationAll(); + + /// + /// 查询学历类型 + /// + /// + Education SelectEducation(Education education); + + /// + /// 添加学历类型 + /// + /// + /// + bool AddEducation(Education education); + + /// + /// 删除学历类型 + /// + /// + /// + bool DelEducation(Education education); + + /// + /// 更新学历类型 + /// + /// + /// + bool UpdEducation(Education education); + + #endregion + + #region 部门模块 + + /// + /// 查询所有部门类型(可用) + /// + /// + List SelectDeptAllCanUse(); + + /// + /// 查询所有部门类型 + /// + /// + List SelectDeptAll(); + + /// + /// 查询部门类型 + /// + /// + Dept SelectDept(Dept dept); + + /// + /// 添加部门类型 + /// + /// + /// + bool AddDept(Dept dept); + + /// + /// 删除部门类型 + /// + /// + /// + bool DelDept(Dept dept); + + /// + /// 更新部门类型 + /// + /// + /// + bool UpdDept(Dept dept); + + #endregion + + #region 客户类型模块 + + /// + /// 查询所有客户类型(可用) + /// + /// + List SelectCustoTypeAllCanUse(); + + /// + /// 查询所有客户类型 + /// + /// + List SelectCustoTypeAll(); + + /// + /// 根据客户类型ID查询类型名称 + /// + /// + /// + CustoType SelectCustoTypeByTypeId(CustoType custoType); + + /// + /// 添加客户类型 + /// + /// + /// + bool InsertCustoType(CustoType custoType); + + /// + /// 删除客户类型 + /// + /// + /// + bool DeleteCustoType(CustoType custoType); + + /// + /// 更新客户类型 + /// + /// + /// + bool UpdateCustoType(CustoType custoType); + + #endregion + + #region 证件类型模块 + + /// + /// 查询所有证件类型(可用) + /// + /// + List SelectPassPortTypeAllCanUse(); + + /// + /// 查询所有证件类型 + /// + /// + List SelectPassPortTypeAll(); + + /// + /// 根据证件类型ID查询类型名称 + /// + /// + /// + PassPortType SelectPassPortTypeByTypeId(PassPortType passPortType); + + /// + /// 添加证件类型 + /// + /// + /// + bool InsertPassPortType(PassPortType passPortType); + + /// + /// 删除证件类型 + /// + /// + /// + bool DeletePassPortType(PassPortType portType); + + /// + /// 更新证件类型 + /// + /// + /// + bool UpdatePassPortType(PassPortType portType); + + #endregion + + #region 奖惩类型模块 + + /// + /// 查询所有证件类型(可用) + /// + /// + List SelectGBTypeAllCanUse(); + + /// + /// 查询所有奖惩类型 + /// + /// + List SelectGBTypeAll(); + + /// + /// 根据奖惩类型ID查询类型名称 + /// + /// + /// + GBType SelectGBTypeByTypeId(GBType gBType); + + /// + /// 添加奖惩类型 + /// + /// + /// + bool InsertGBType(GBType gBType); + + /// + /// 删除奖惩类型 + /// + /// + /// + bool DeleteGBType(GBType gBType); + + /// + /// 更新奖惩类型 + /// + /// + /// + bool UpdateGBType(GBType gBType); + + #endregion + } +} diff --git a/SYS.Application/Zero/INoticeService.cs b/SYS.Application/Zero/INoticeService.cs new file mode 100644 index 0000000000000000000000000000000000000000..05d74d762c83343cdbcc79a6de4899050c134b85 --- /dev/null +++ b/SYS.Application/Zero/INoticeService.cs @@ -0,0 +1,30 @@ +using SYS.Core; +using System.Collections.Generic; + +namespace SYS.Application +{ + /// + /// 公告接口 + /// + public interface INoticeService + { + #region 获取所有公告信息 + /// + /// 获取所有公告信息 + /// + /// + List SelectNoticeAll(); + #endregion + + + #region 上传公告信息 + /// + /// 上传公告信息 + /// + /// + /// + bool InsertNotice(Notice notice); + + #endregion + } +} \ No newline at end of file diff --git a/SYS.Application/Zero/IOperationlogService.cs b/SYS.Application/Zero/IOperationlogService.cs new file mode 100644 index 0000000000000000000000000000000000000000..0e4ead1518855f3eaa3c260d106bba78df631a11 --- /dev/null +++ b/SYS.Application/Zero/IOperationlogService.cs @@ -0,0 +1,6 @@ +namespace SYS.Application +{ + internal interface IOperationlogService + { + } +} \ No newline at end of file diff --git a/SYS.Application/Zero/NoticeService.cs b/SYS.Application/Zero/NoticeService.cs index 544ed08e4bc0f4951e712d01e065931845ad0b98..14ad99ee98b3085a3a08563f8d2cac54131e1388 100644 --- a/SYS.Application/Zero/NoticeService.cs +++ b/SYS.Application/Zero/NoticeService.cs @@ -1,37 +1,74 @@ using System; using System.Collections.Generic; using MySql.Data.MySqlClient; +using SYS.Common; using SYS.Core; namespace SYS.Application { - public class NoticeService + /// + /// 公告信息接口实现类 + /// + public class NoticeService:Repository, INoticeService { #region 获取所有公告信息 /// /// 获取所有公告信息 /// /// - public static List SelectNoticeAll() + public List SelectNoticeAll() { List ntc = new List(); - string sql = "select * from UPLOADINFO"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) + ntc = base.GetList(a => a.delete_mk != 1); + ntc.ForEach(source => { - Notice ntcs = new Notice(); - ntcs.NoticeNo = (string)dr["NoticeNo"]; - ntcs.Noticetheme = dr["Noticetheme"].ToString(); - ntcs.NoticeTime = DateTime.Parse(dr["NoticeTime"].ToString()); - ntcs.NoticeContent = Convert.ToString(dr["NoticeContent"]); - ntcs.NoticeClub = (string)dr["NoticeClub"]; - ntcs.NoticePerson = Convert.ToString(dr["NoticePerson"]); - ntc.Add(ntcs); - } - dr.Close(); - DBHelper.Closecon(); + switch (source.NoticeType) + { + case "PersonnelChanges": + source.NoticeTypeName = "人事变动"; + break; + case "GeneralNotice": + source.NoticeTypeName = "普通公告"; + break; + } + }); return ntc; } #endregion + + /// + /// 根据公告编号查找公告信息 + /// + /// + /// + public Notice SelectNoticeByNoticeNo(string NoticeNo) + { + Notice notice = new Notice(); + notice = base.GetSingle(a => a.NoticeNo == NoticeNo); + switch (notice.NoticeType) + { + case "PersonnelChanges": + notice.NoticeTypeName = "人事变动"; + break; + case "GeneralNotice": + notice.NoticeTypeName = "普通公告"; + break; + } + return notice; + } + + #region 上传公告信息 + /// + /// 上传公告信息 + /// + /// + /// + public bool InsertNotice(Notice notice) + { + return base.Insert(notice); + } + + #endregion + } } diff --git a/SYS.Application/Zero/OperationlogService.cs b/SYS.Application/Zero/OperationlogService.cs new file mode 100644 index 0000000000000000000000000000000000000000..3930091f2dc96847f9bc0716d028ab51848242c5 --- /dev/null +++ b/SYS.Application/Zero/OperationlogService.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Data; +using System.Linq; +using MySql.Data.MySqlClient; +using SYS.Common; +using SYS.Core; + +namespace SYS.Application +{ + /// + /// 操作日志数据访问层 + /// + public class OperationlogService:Repository, IOperationlogService + { + /// + /// 添加操作日志 + /// + /// + /// + public bool InsertOperationLog(OperationLog opr) + { + return base.Insert(opr); + } + + /// + /// 查询所有操作日志 + /// + /// + public List SelectOperationlogAll() + { + List operationLogs = new List(); + operationLogs = base.GetList(a => a.delete_mk != 1).OrderBy(a => a.OperationTime).ToList(); + return operationLogs; + } + + + } +} diff --git a/SYS.Application/app.config b/SYS.Application/app.config new file mode 100644 index 0000000000000000000000000000000000000000..4a04f99727085dc5a6ae0d33da7b40704b845046 --- /dev/null +++ b/SYS.Application/app.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/SYS.Application/bitbug_favicon (1).ico b/SYS.Application/bitbug_favicon (1).ico new file mode 100644 index 0000000000000000000000000000000000000000..deaead31de45df54f39388e2b4727a00a4f99eca Binary files /dev/null and b/SYS.Application/bitbug_favicon (1).ico differ diff --git a/SYS.Application/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/SYS.Application/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index c79056d53a8a529363d143f959bb9868a32c9db0..d0386ed568a590376bffaf259c2341957bf2f7ea 100644 Binary files a/SYS.Application/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/SYS.Application/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/SYS.Application/obj/Debug/SYS.Application.csproj.FileListAbsolute.txt b/SYS.Application/obj/Debug/SYS.Application.csproj.FileListAbsolute.txt index a95a7d277dbaf8d95dc8730395d879f830da1f8b..9473e12165c86fbce0c075614638c1e888e12b11 100644 --- a/SYS.Application/obj/Debug/SYS.Application.csproj.FileListAbsolute.txt +++ b/SYS.Application/obj/Debug/SYS.Application.csproj.FileListAbsolute.txt @@ -43,21 +43,63 @@ D:\Gitee\TopskyHotelManagerSystem\SYS.Application\obj\Debug\SYS.Application.cspr D:\Gitee\TopskyHotelManagerSystem\SYS.Application\obj\Debug\SYS.Application.csproj.CopyComplete D:\Gitee\TopskyHotelManagerSystem\SYS.Application\obj\Debug\SYS.Application.dll D:\Gitee\TopskyHotelManagerSystem\SYS.Application\obj\Debug\SYS.Application.pdb +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\Util\IDCardUtil.cs +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Application.dll.config +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Application.xml D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Application.dll D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Application.pdb D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\MySql.Data.dll D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\MySql.Data.EntityFramework.dll D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\MySql.Web.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SqlSugar.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Common.dll D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Core.dll -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\EntityFramework.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\Google.Protobuf.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\Zstandard.Net.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\K4os.Compression.LZ4.Streams.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\Ubiety.Dns.Core.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\System.Memory.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\System.Buffers.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\K4os.Compression.LZ4.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\K4os.Hash.xxHash.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\System.Numerics.Vectors.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Common.pdb +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Common.dll.config D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Core.pdb -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\EntityFramework.xml +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Core.xml D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\obj\Debug\SYS.Application.csprojAssemblyReference.cache D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\obj\Debug\SYS.Application.csproj.CoreCompileInputs.cache D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\obj\Debug\SYS.Application.csproj.CopyComplete D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\obj\Debug\SYS.Application.dll D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\obj\Debug\SYS.Application.pdb -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\Resource.resx -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\Resource.Designer.cs -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Core.xml -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Application\bin\Debug\Resources\GFont.otf +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\Util\IDCardUtil.cs +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Application.dll.config +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Application.xml +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Application.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Application.pdb +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\MySql.Data.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\MySql.Data.EntityFramework.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\MySql.Web.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SqlSugar.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Common.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Core.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\Google.Protobuf.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\Zstandard.Net.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\K4os.Compression.LZ4.Streams.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\Ubiety.Dns.Core.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\System.Memory.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\System.Buffers.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\K4os.Compression.LZ4.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\K4os.Hash.xxHash.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\System.Numerics.Vectors.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Common.pdb +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Common.dll.config +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Core.pdb +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\bin\Debug\SYS.Core.xml +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\obj\Debug\SYS.Application.csprojAssemblyReference.cache +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\obj\Debug\SYS.Application.csproj.CoreCompileInputs.cache +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\obj\Debug\SYS.Application.csproj.CopyComplete +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\obj\Debug\SYS.Application.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Application\obj\Debug\SYS.Application.pdb diff --git a/SYS.Browser.WebAPI/App_Start/CachingSwaggerProvider.cs b/SYS.Browser.WebAPI/App_Start/CachingSwaggerProvider.cs new file mode 100644 index 0000000000000000000000000000000000000000..780d37b3fcc5ca3545466b1731316c40aecbaf4c --- /dev/null +++ b/SYS.Browser.WebAPI/App_Start/CachingSwaggerProvider.cs @@ -0,0 +1,92 @@ +using Swashbuckle.Swagger; +using System; +using System.Collections.Concurrent; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Web; +using System.Xml; + +namespace SYS.Browser.WebAPI +{ + /// + /// swagger显示控制器的描述 + /// + public class CachingSwaggerProvider : ISwaggerProvider + { + private static ConcurrentDictionary _cache = + new ConcurrentDictionary(); + + private readonly ISwaggerProvider _swaggerProvider; + /// + /// + /// + /// + public CachingSwaggerProvider(ISwaggerProvider swaggerProvider) + { + _swaggerProvider = swaggerProvider; + } + /// + /// + /// + /// + /// + /// + public SwaggerDocument GetSwagger(string rootUrl, string apiVersion) + { + var cacheKey = string.Format("{0}_{1}", rootUrl, apiVersion); + SwaggerDocument srcDoc = null; + //只读取一次 + if (!_cache.TryGetValue(cacheKey, out srcDoc)) + { + srcDoc = _swaggerProvider.GetSwagger(rootUrl, apiVersion); + + srcDoc.vendorExtensions = new Dictionary { { "ControllerDesc", GetControllerDesc() } }; + _cache.TryAdd(cacheKey, srcDoc); + } + return srcDoc; + } + + /// + /// 从API文档中读取控制器描述 + /// + /// 所有控制器描述 + public static ConcurrentDictionary GetControllerDesc() + { + string xmlpath = string.Format("{0}/bin/SYS.Browser.WebAPI.XML", System.AppDomain.CurrentDomain.BaseDirectory); + ConcurrentDictionary controllerDescDict = new ConcurrentDictionary(); + if (File.Exists(xmlpath)) + { + XmlDocument xmldoc = new XmlDocument(); + xmldoc.Load(xmlpath); + string type = string.Empty, path = string.Empty, controllerName = string.Empty; + + string[] arrPath; + int length = -1, cCount = "Controller".Length; + XmlNode summaryNode = null; + foreach (XmlNode node in xmldoc.SelectNodes("//member")) + { + type = node.Attributes["name"].Value; + if (type.StartsWith("T:")) + { + //控制器 + arrPath = type.Split('.'); + length = arrPath.Length; + controllerName = arrPath[length - 1]; + if (controllerName.EndsWith("Controller")) + { + //获取控制器注释 + summaryNode = node.SelectSingleNode("summary"); + string key = controllerName.Remove(controllerName.Length - cCount, cCount); + if (summaryNode != null && !string.IsNullOrEmpty(summaryNode.InnerText) && !controllerDescDict.ContainsKey(key)) + { + controllerDescDict.TryAdd(key, summaryNode.InnerText.Trim()); + } + } + } + } + } + return controllerDescDict; + } + } +} \ No newline at end of file diff --git a/SYS.Browser.WebAPI/App_Start/SwaggerConfig.cs b/SYS.Browser.WebAPI/App_Start/SwaggerConfig.cs new file mode 100644 index 0000000000000000000000000000000000000000..cc9d7bd9702dae04877cf3d38bef0ee8568be64c --- /dev/null +++ b/SYS.Browser.WebAPI/App_Start/SwaggerConfig.cs @@ -0,0 +1,294 @@ +using System.Web.Http; +using WebActivatorEx; +using Swashbuckle.Application; +using SYS.Browser.WebAPI; + +[assembly: PreApplicationStartMethod(typeof(SwaggerConfig), "Register")] + +namespace SYS.Browser.WebAPI +{ + /// + /// swaggerUI + /// + public class SwaggerConfig + { + public static void Register() + { + var thisAssembly = typeof(SwaggerConfig).Assembly; + var xmlFile = string.Format("{0}/bin/SYS.Browser.WebAPI.XML", System.AppDomain.CurrentDomain.BaseDirectory); + GlobalConfiguration.Configuration + .EnableSwagger(c => + { + // By default, the service root url is inferred from the request used to access the docs. + // However, there may be situations (e.g. proxy and load-balanced environments) where this does not + // resolve correctly. You can workaround this by providing your own code to determine the root URL. + // + //c.RootUrl(req => GetRootUrlFromAppConfig()); + + // If schemes are not explicitly provided in a Swagger 2.0 document, then the scheme used to access + // the docs is taken as the default. If your API supports multiple schemes and you want to be explicit + // about them, you can use the "Schemes" option as shown below. + // + //c.Schemes(new[] { "http", "https" }); + + // Use "SingleApiVersion" to describe a single version API. Swagger 2.0 includes an "Info" object to + // hold additional metadata for an API. Version and title are required but you can also provide + // additional fields by chaining methods off SingleApiVersion. + // + c.SingleApiVersion("v1", "SYS.Browser.WebAPI"); + if (System.IO.File.Exists(xmlFile)) + { + c.IncludeXmlComments(xmlFile); + } + //if (System.IO.File.Exists(GetXmlCommentsPath("ZB.ERP.Common.xml"))) + //{ + // c.IncludeXmlComments(GetXmlCommentsPath("ZB.ERP.Common.xml")); + //} + + + // õԴĿ¼ļбǰļԼĿ¼·һ + string[] fileList = System.IO.Directory.GetFileSystemEntries(System.AppDomain.CurrentDomain.BaseDirectory + "/bin"); + // еļĿ¼ + foreach (string file in fileList) + { + var _file = file.Substring(file.LastIndexOf("\\") + 1); + if (_file.ToUpper().IndexOf("SYS") == 0) + { + if (_file.ToUpper().EndsWith("APPLICATION.XML") || _file.ToUpper().EndsWith("CORE.XML")) + { + if (System.IO.File.Exists(GetXmlCommentsPath(_file))) + { + + c.IncludeXmlComments(GetXmlCommentsPath(_file)); + } + } + } + } + + // If you want the output Swagger docs to be indented properly, enable the "PrettyPrint" option. + // + //c.PrettyPrint(); + + // If your API has multiple versions, use "MultipleApiVersions" instead of "SingleApiVersion". + // In this case, you must provide a lambda that tells Swashbuckle which actions should be + // included in the docs for a given API version. Like "SingleApiVersion", each call to "Version" + // returns an "Info" builder so you can provide additional metadata per API version. + // + //c.MultipleApiVersions( + // (apiDesc, targetApiVersion) => ResolveVersionSupportByRouteConstraint(apiDesc, targetApiVersion), + // (vc) => + // { + // vc.Version("v2", "Swashbuckle Dummy API V2"); + // vc.Version("v1", "Swashbuckle Dummy API V1"); + // }); + + // You can use "BasicAuth", "ApiKey" or "OAuth2" options to describe security schemes for the API. + // See https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md for more details. + // NOTE: These only define the schemes and need to be coupled with a corresponding "security" property + // at the document or operation level to indicate which schemes are required for an operation. To do this, + // you'll need to implement a custom IDocumentFilter and/or IOperationFilter to set these properties + // according to your specific authorization implementation + // + //c.BasicAuth("basic") + // .Description("Basic HTTP Authentication"); + // + // NOTE: You must also configure 'EnableApiKeySupport' below in the SwaggerUI section + //c.ApiKey("apiKey") + // .Description("API Key Authentication") + // .Name("apiKey") + // .In("header"); + // + //c.OAuth2("oauth2") + // .Description("OAuth2 Implicit Grant") + // .Flow("implicit") + // .AuthorizationUrl("http://petstore.swagger.wordnik.com/api/oauth/dialog") + // //.TokenUrl("https://tempuri.org/token") + // .Scopes(scopes => + // { + // scopes.Add("read", "Read access to protected resources"); + // scopes.Add("write", "Write access to protected resources"); + // }); + + // Set this flag to omit descriptions for any actions decorated with the Obsolete attribute + //c.IgnoreObsoleteActions(); + + // Each operation be assigned one or more tags which are then used by consumers for various reasons. + // For example, the swagger-ui groups operations according to the first tag of each operation. + // By default, this will be controller name but you can use the "GroupActionsBy" option to + // override with any value. + // + //c.GroupActionsBy(apiDesc => apiDesc.HttpMethod.ToString()); + + // You can also specify a custom sort order for groups (as defined by "GroupActionsBy") to dictate + // the order in which operations are listed. For example, if the default grouping is in place + // (controller name) and you specify a descending alphabetic sort order, then actions from a + // ProductsController will be listed before those from a CustomersController. This is typically + // used to customize the order of groupings in the swagger-ui. + // + //c.OrderActionGroupsBy(new DescendingAlphabeticComparer()); + + // If you annotate Controllers and API Types with + // Xml comments (http://msdn.microsoft.com/en-us/library/b2s063f7(v=vs.110).aspx), you can incorporate + // those comments into the generated docs and UI. You can enable this by providing the path to one or + // more Xml comment files. + // + //c.IncludeXmlComments(GetXmlCommentsPath()); + c.IncludeXmlComments(string.Format("{0}/bin/SYS.Browser.WebAPI.XML", System.AppDomain.CurrentDomain.BaseDirectory)); + // Swashbuckle makes a best attempt at generating Swagger compliant JSON schemas for the various types + // exposed in your API. However, there may be occasions when more control of the output is needed. + // This is supported through the "MapType" and "SchemaFilter" options: + // + // Use the "MapType" option to override the Schema generation for a specific type. + // It should be noted that the resulting Schema will be placed "inline" for any applicable Operations. + // While Swagger 2.0 supports inline definitions for "all" Schema types, the swagger-ui tool does not. + // It expects "complex" Schemas to be defined separately and referenced. For this reason, you should only + // use the "MapType" option when the resulting Schema is a primitive or array type. If you need to alter a + // complex Schema, use a Schema filter. + // + //c.MapType(() => new Schema { type = "integer", format = "int32" }); + + // If you want to post-modify "complex" Schemas once they've been generated, across the board or for a + // specific type, you can wire up one or more Schema filters. + // + //c.SchemaFilter(); + + // In a Swagger 2.0 document, complex types are typically declared globally and referenced by unique + // Schema Id. By default, Swashbuckle does NOT use the full type name in Schema Ids. In most cases, this + // works well because it prevents the "implementation detail" of type namespaces from leaking into your + // Swagger docs and UI. However, if you have multiple types in your API with the same class name, you'll + // need to opt out of this behavior to avoid Schema Id conflicts. + // + //c.UseFullTypeNameInSchemaIds(); + + // Alternatively, you can provide your own custom strategy for inferring SchemaId's for + // describing "complex" types in your API. + // + //c.SchemaId(t => t.FullName.Contains('`') ? t.FullName.Substring(0, t.FullName.IndexOf('`')) : t.FullName); + + // Set this flag to omit schema property descriptions for any type properties decorated with the + // Obsolete attribute + //c.IgnoreObsoleteProperties(); + + // In accordance with the built in JsonSerializer, Swashbuckle will, by default, describe enums as integers. + // You can change the serializer behavior by configuring the StringToEnumConverter globally or for a given + // enum type. Swashbuckle will honor this change out-of-the-box. However, if you use a different + // approach to serialize enums as strings, you can also force Swashbuckle to describe them as strings. + // + //c.DescribeAllEnumsAsStrings(); + + // Similar to Schema filters, Swashbuckle also supports Operation and Document filters: + // + // Post-modify Operation descriptions once they've been generated by wiring up one or more + // Operation filters. + // + //c.OperationFilter(); + // + // If you've defined an OAuth2 flow as described above, you could use a custom filter + // to inspect some attribute on each action and infer which (if any) OAuth2 scopes are required + // to execute the operation + // + //c.OperationFilter(); + + // Post-modify the entire Swagger document by wiring up one or more Document filters. + // This gives full control to modify the final SwaggerDocument. You should have a good understanding of + // the Swagger 2.0 spec. - https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md + // before using this option. + // + //c.DocumentFilter(); + + // In contrast to WebApi, Swagger 2.0 does not include the query string component when mapping a URL + // to an action. As a result, Swashbuckle will raise an exception if it encounters multiple actions + // with the same path (sans query string) and HTTP method. You can workaround this by providing a + // custom strategy to pick a winner or merge the descriptions for the purposes of the Swagger docs + // + //c.ResolveConflictingActions(apiDescriptions => apiDescriptions.First()); + + // Wrap the default SwaggerGenerator with additional behavior (e.g. caching) or provide an + // alternative implementation for ISwaggerProvider with the CustomProvider option. + // + //c.CustomProvider((defaultProvider) => new CachingSwaggerProvider(defaultProvider)); + c.CustomProvider((defaultProvider) => new CachingSwaggerProvider(defaultProvider)); + }) + .EnableSwaggerUi(c => + { + // Use the "DocumentTitle" option to change the Document title. + // Very helpful when you have multiple Swagger pages open, to tell them apart. + // + //c.DocumentTitle("My Swagger UI"); + + // Use the "InjectStylesheet" option to enrich the UI with one or more additional CSS stylesheets. + // The file must be included in your project as an "Embedded Resource", and then the resource's + // "Logical Name" is passed to the method as shown below. + // + //c.InjectStylesheet(containingAssembly, "Swashbuckle.Dummy.SwaggerExtensions.testStyles1.css"); + + // Use the "InjectJavaScript" option to invoke one or more custom JavaScripts after the swagger-ui + // has loaded. The file must be included in your project as an "Embedded Resource", and then the resource's + // "Logical Name" is passed to the method as shown above. + // + //c.InjectJavaScript(thisAssembly, "Swashbuckle.Dummy.SwaggerExtensions.testScript1.js"); + + //·Ŀռ.ļ.jsļ + c.InjectJavaScript(thisAssembly, "SYS.Browser.WebAPI.Scripts.Swaggerui.swagger_lang.js"); + // The swagger-ui renders boolean data types as a dropdown. By default, it provides "true" and "false" + // strings as the possible choices. You can use this option to change these to something else, + // for example 0 and 1. + // + //c.BooleanValues(new[] { "0", "1" }); + + // By default, swagger-ui will validate specs against swagger.io's online validator and display the result + // in a badge at the bottom of the page. Use these options to set a different validator URL or to disable the + // feature entirely. + //c.SetValidatorUrl("http://localhost/validator"); + //c.DisableValidator(); + + // Use this option to control how the Operation listing is displayed. + // It can be set to "None" (default), "List" (shows operations for each resource), + // or "Full" (fully expanded: shows operations and their details). + // + //c.DocExpansion(DocExpansion.List); + + // Specify which HTTP operations will have the 'Try it out!' option. An empty paramter list disables + // it for all operations. + // + //c.SupportedSubmitMethods("GET", "HEAD"); + + // Use the CustomAsset option to provide your own version of assets used in the swagger-ui. + // It's typically used to instruct Swashbuckle to return your version instead of the default + // when a request is made for "index.html". As with all custom content, the file must be included + // in your project as an "Embedded Resource", and then the resource's "Logical Name" is passed to + // the method as shown below. + // + //c.CustomAsset("index", containingAssembly, "YourWebApiProject.SwaggerExtensions.index.html"); + + // If your API has multiple versions and you've applied the MultipleApiVersions setting + // as described above, you can also enable a select box in the swagger-ui, that displays + // a discovery URL for each version. This provides a convenient way for users to browse documentation + // for different API versions. + // + //c.EnableDiscoveryUrlSelector(); + + // If your API supports the OAuth2 Implicit flow, and you've described it correctly, according to + // the Swagger 2.0 specification, you can enable UI support as shown below. + // + //c.EnableOAuth2Support( + // clientId: "test-client-id", + // clientSecret: null, + // realm: "test-realm", + // appName: "Swagger UI" + // //additionalQueryStringParams: new Dictionary() { { "foo", "bar" } } + //); + + // If your API supports ApiKey, you can override the default values. + // "apiKeyIn" can either be "query" or "header" + // + //c.EnableApiKeySupport("apiKey", "header"); + }); + } + + private static string GetXmlCommentsPath(string name) + { + return string.Format("{0}/bin/{1}", System.AppDomain.CurrentDomain.BaseDirectory, name); + } + } +} diff --git a/SYS.Browser.WebAPI/App_Start/WebApiConfig.cs b/SYS.Browser.WebAPI/App_Start/WebApiConfig.cs new file mode 100644 index 0000000000000000000000000000000000000000..ad016486253e9f346b115f2e02e32c0713cc4687 --- /dev/null +++ b/SYS.Browser.WebAPI/App_Start/WebApiConfig.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web.Http; + +namespace SYS.Browser.WebAPI +{ + public static class WebApiConfig + { + public static void Register(HttpConfiguration config) + { + // Web API 配置和服务 + + // Web API 路由 + config.MapHttpAttributeRoutes(); + + config.Routes.MapHttpRoute( + name: "DefaultApi", + routeTemplate: "api/{controller}/{action}/{id}", + defaults: new { id = RouteParameter.Optional } + ); + } + } +} diff --git a/SYS.Browser.WebAPI/Controllers/Business/CashController.cs b/SYS.Browser.WebAPI/Controllers/Business/CashController.cs new file mode 100644 index 0000000000000000000000000000000000000000..3922bf57782f2b638a1424c1003575f8465ca45f --- /dev/null +++ b/SYS.Browser.WebAPI/Controllers/Business/CashController.cs @@ -0,0 +1,38 @@ +using SYS.Application; +using SYS.Core; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Net.Http; +using System.Web.Http; + +namespace SYS.Browser.WebAPI.Controllers +{ + /// + /// 财务管理控制器(后台) + /// + public class CashController : ApiController + { + /// + /// 查询所有资产信息 + /// + /// + [HttpGet] + public List SelectCashInfoAll() + { + return new CashService().SelectCashInfoAll(); + } + + /// + /// 添加资产信息 + /// + /// + /// + [HttpPost] + public object AddCashInfo([FromBody]Cash cash) + { + return new CashService().AddCashInfo(cash); + } + } +} diff --git a/SYS.Browser.WebAPI/Controllers/Business/SellThingController.cs b/SYS.Browser.WebAPI/Controllers/Business/SellThingController.cs new file mode 100644 index 0000000000000000000000000000000000000000..cfdf8fddd54fd8af92984b1922cc2c877c9ff501 --- /dev/null +++ b/SYS.Browser.WebAPI/Controllers/Business/SellThingController.cs @@ -0,0 +1,105 @@ +using System; +using System.Collections.Generic; +using SYS.Core; +using SYS.Application; +using System.Web.Http; + +namespace SYS.Browser.WebAPI.Controllers +{ + /// + /// 商品消费控制器(后) + /// + public class SellThingController : ApiController + { + /// + /// 查询所有商品信息 + /// + /// + [HttpGet] + public List SelectSellThingAll() + { + return new SellService().SelectSellThingAll(); + } + + /// + /// 根据商品ID查询商品信息 + /// + /// + /// + [HttpGet] + public SellThing SelectSellThingByNo([FromUri]string No) + { + return new SellService().SelectSellThingByNo(No); + } + + /// + /// 消费商品(更新库存) + /// + /// + /// + /// + [HttpPost] + public bool UpdateSellThing([FromBody]string stock, string sellNo) + { + return new SellService().UpdateSellThing(stock, sellNo); + } + + /// + /// 撤回客户消费信息 + /// + /// + /// + /// + [HttpDelete] + public bool DeleteSellThing([FromBody]string roomNo, string time) + { + return new SellService().DeleteSellThing(roomNo, time); + } + + /// + /// 根据商品名称查询商品信息 + /// + /// + /// + [HttpGet] + public List SelectThingByName([FromUri]string Name) + { + return new SellService().SelectSellThingByName(Name); + } + + /// + /// 根据商品名称和价格查询商品编号 + /// + /// + /// + /// + [HttpGet] + + public SellThing SelectSellThingByNameAndPrice([FromUri]string name,string price) + { + return new SellService().SelectSellThingByNameAndPrice(name, price); + } + + /// + /// 根据商品编号查询消费信息 + /// + /// + /// + [HttpGet] + public SellThing SelectSellInfoBySellNo([FromUri]string SellNo) + { + return new SellService().SelectSellInfoBySellNo(SellNo); + } + + /// + /// 添加商品消费 + /// + /// + /// + [HttpPost] + public bool InsertSellThing([FromBody]SellThing st) + { + return new SellService().InsertSellThing(st); + } + } +} diff --git a/SYS.Manager/Business/SpendManager.cs b/SYS.Browser.WebAPI/Controllers/Business/SpendController.cs similarity index 40% rename from SYS.Manager/Business/SpendManager.cs rename to SYS.Browser.WebAPI/Controllers/Business/SpendController.cs index 11d2e34ff3aa4926b4ce35d97cd416f15a5fb0ea..96fec58fc0ff0863dbac99ca6de5e3b81e7b40bd 100644 --- a/SYS.Manager/Business/SpendManager.cs +++ b/SYS.Browser.WebAPI/Controllers/Business/SpendController.cs @@ -1,33 +1,53 @@ using System.Collections.Generic; using SYS.Core; using SYS.Application; +using System.Web.Http; -namespace SYS.Manager +namespace SYS.Browser.WebAPI.Controllers { - public class SpendManager + /// + /// 消费信息控制器 + /// + public class SpendController:ApiController { - public static int InsertSpendInfo(Spend s) + /// + /// 添加消费信息 + /// + /// + /// + [HttpPost] + public bool InsertSpendInfo([FromBody]Spend s) { - return SpendService.InsertSpendInfo(s); + return new SpendService().InsertSpendInfo(s); } - - public static List SelectSpendByCustoNo(string No) + /// + /// 根据客户编号查询消费信息 + /// + /// + /// + [HttpGet] + public List SelectSpendByCustoNo([FromUri]string No) { - return SpendService.SelectSpendByCustoNo(No); + return new SpendService().SelectSpendByCustoNo(No); } - - public static List SelectSpendInfoAll() + /// + /// 查询所有消费信息 + /// + /// + [HttpGet] + public List SelectSpendInfoAll() { - return SpendService.SelectSpendInfoAll(); + return new SpendService().SelectSpendInfoAll(); } /// /// 根据房间号查询消费的所有信息 /// /// - public static List SelectSpendInfoRoomNo(string RoomNo) + [HttpGet] + public List SelectSpendInfoRoomNo([FromUri]string RoomNo) { - return SpendService.SelectSpendInfoRoomNo(RoomNo); + return new SpendService().SelectSpendInfoRoomNo(RoomNo); } #region 根据房间编号、入住时间到当前时间查询消费总金额 @@ -37,9 +57,10 @@ namespace SYS.Manager /// /// /// - public static object SelectMoneyByRoomNoAndTime(string roomno,string custono) + [HttpGet] + public object SelectMoneyByRoomNoAndTime([FromUri]string roomno,string custono) { - return SpendService.SelectMoneyByRoomNoAndTime(roomno, custono); + return new SpendService().SelectMoneyByRoomNoAndTime(roomno, custono); } #endregion @@ -50,9 +71,10 @@ namespace SYS.Manager /// /// /// - public static int UpdateMoneyState(string roomno, string checktime) + [HttpPost] + public bool UpdateMoneyState([FromBody]string roomno, string checktime) { - return SpendService.UpdateMoneyState(roomno, checktime); + return new SpendService().UpdateMoneyState(roomno, checktime); } #endregion diff --git a/SYS.Manager/Business/WtiManager.cs b/SYS.Browser.WebAPI/Controllers/Business/WtiController.cs similarity index 62% rename from SYS.Manager/Business/WtiManager.cs rename to SYS.Browser.WebAPI/Controllers/Business/WtiController.cs index bac5e93e17153404a3021e540185d3a8f838c329..78f474dcbc44c407981b01024393ea8384e830af 100644 --- a/SYS.Manager/Business/WtiManager.cs +++ b/SYS.Browser.WebAPI/Controllers/Business/WtiController.cs @@ -1,10 +1,14 @@ using System.Collections.Generic; using SYS.Core; using SYS.Application; +using System.Web.Http; -namespace SYS.Manager +namespace SYS.Browser.WebAPI.Controllers { - public class WtiManager + /// + /// 水电信息控制器(后台) + /// + public class WtiController:ApiController { #region 根据房间编号查询水电费信息 /// @@ -12,9 +16,10 @@ namespace SYS.Manager /// /// /// - public static Wti SelectWtiInfoByRoomNo(string roomNo) + [HttpGet] + public Wti SelectWtiInfoByRoomNo([FromUri]string roomNo) { - return WtiService.SelectWtiInfoByRoomNo(roomNo); + return new WtiService().SelectWtiInfoByRoomNo(roomNo); } #endregion @@ -26,9 +31,10 @@ namespace SYS.Manager /// /// /// - public static Wti SelectWtiInfoByRoomNoAndTime(string roomno, string usedate, string enddate) + [HttpGet] + public Wti SelectWtiInfoByRoomNoAndTime([FromUri]string roomno, string usedate, string enddate) { - return WtiService.SelectWtiInfoByRoomNoAndTime(roomno, usedate, enddate); + return new WtiService().SelectWtiInfoByRoomNoAndTime(roomno, usedate, enddate); } #endregion @@ -37,9 +43,10 @@ namespace SYS.Manager /// 获取所有水电费信息 /// /// - public static List SelectWtiInfoAll() + [HttpGet] + public List SelectWtiInfoAll() { - return WtiService.SelectWtiInfoAll(); + return new WtiService().SelectWtiInfoAll(); } #endregion @@ -49,9 +56,10 @@ namespace SYS.Manager /// /// /// - public static int InsertWtiInfo(Wti w) + [HttpPost] + public bool InsertWtiInfo([FromBody]Wti w) { - return WtiService.InsertWtiInfo(w); + return new WtiService().InsertWtiInfo(w); } #endregion @@ -61,9 +69,10 @@ namespace SYS.Manager /// /// /// - public static int UpdateWtiInfo(Wti w) + [HttpPost] + public bool UpdateWtiInfo([FromBody]Wti w) { - return WtiService.UpdateWtiInfo(w); + return new WtiService().UpdateWtiInfo(w); } #endregion @@ -73,9 +82,10 @@ namespace SYS.Manager /// /// /// - public static int UpdateWtiInfoByRoomNoAndDateTime(Wti w) + [HttpPost] + public bool UpdateWtiInfoByRoomNoAndDateTime([FromBody]Wti w) { - return WtiService.UpdateWtiInfoByRoomNoAndDateTime(w); + return new WtiService().UpdateWtiInfoByRoomNoAndDateTime(w); } #endregion @@ -85,9 +95,10 @@ namespace SYS.Manager /// /// /// - public static int DeleteWtiInfo(string roomno) + [HttpDelete] + public bool DeleteWtiInfo([FromBody]string roomno) { - return WtiService.DeleteWtiInfo(roomno); + return new WtiService().DeleteWtiInfo(roomno); } #endregion @@ -99,9 +110,10 @@ namespace SYS.Manager /// /// /// - public static int DeleteWtiInfoByRoomNoAndDateTime(string roomno, string usedate, string enddate) + [HttpDelete] + public bool DeleteWtiInfoByRoomNoAndDateTime([FromBody]string roomno, string usedate, string enddate) { - return WtiService.DeleteWtiInfoByRoomNoAndDateTime(roomno, usedate, enddate); + return new WtiService().DeleteWtiInfoByRoomNoAndDateTime(roomno, usedate, enddate); } #endregion } diff --git a/SYS.Browser.WebAPI/Controllers/Customer/CustoController.cs b/SYS.Browser.WebAPI/Controllers/Customer/CustoController.cs new file mode 100644 index 0000000000000000000000000000000000000000..d51304342bb7d43eb7cd2bbe9d2b98b9d8d6eed2 --- /dev/null +++ b/SYS.Browser.WebAPI/Controllers/Customer/CustoController.cs @@ -0,0 +1,58 @@ +using System; +using System.Data; +using SYS.Core; +using SYS.Application; +using System.Collections.Generic; +using System.Web.Http; + +namespace SYS.Browser.WebAPI.Controllers +{ + /// + /// 客户信息控制器 + /// + public class CustoController:ApiController + { + #region 添加客户信息 + /// + /// 添加客户信息 + /// + /// + /// + [HttpPost] + public bool InsertCustomerInfo([FromBody]Custo custo) + { + return new CustoService().InsertCustomerInfo(custo); + } + #endregion + + /// + /// 查询酒店盈利情况 + /// + /// + [HttpGet] + public List SelectAllMoney() + { + return new CustoService().SelectAllMoney(); + } + /// + /// 查询所有客户信息 + /// + /// + [HttpGet] + public List SelectCustoAll() + { + return new CustoService().SelectCustoAll(); + } + /// + /// 根据客户编号查询证件号码 + /// + /// + /// + [HttpGet] + public Custo SelectCardInfoByCustoNo([FromUri]string CustoNo) + { + return new CustoService().SelectCardInfoByCustoNo(CustoNo); + } + + } +} diff --git a/SYS.Manager/Customer/CustoTypeManager.cs b/SYS.Browser.WebAPI/Controllers/Room/ReserController.cs similarity index 30% rename from SYS.Manager/Customer/CustoTypeManager.cs rename to SYS.Browser.WebAPI/Controllers/Room/ReserController.cs index d1c1a8cfe331369ead3ebd33922a556e8bd5971d..0831b6d4f0b6b7a616f4232020db6eae368bf82d 100644 --- a/SYS.Manager/Customer/CustoTypeManager.cs +++ b/SYS.Browser.WebAPI/Controllers/Room/ReserController.cs @@ -1,55 +1,57 @@ using System.Collections.Generic; -using MySql.Data.MySqlClient; using SYS.Core; using SYS.Application; +using System.Web.Http; -namespace SYS.Manager +namespace SYS.Browser.WebAPI.Controllers { - public class CustoTypeManager + /// + /// 预约信息控制器 + /// + public class ReserController: ApiController { - #region 查询所有会员等级名称 /// - /// 查询所有会员等级名称 + /// 根据房间号码查询预约信息 /// + /// /// - public static List SelectCustoTypesAll() + [HttpGet] + public Reser SelectReserInfoByRoomNo([FromUri]string no) { - return CustoTypeService.SelectCustoTypesAll(); + Reser r = new ReserService().SelectReserInfoByRoomNo(no); + return r; } - #endregion - #region 根据会员等级编号查询会员等级名称 /// - /// 根据会员等级编号查询会员等级名称 + /// 删除预约信息 /// - /// + /// /// - public static string SelectTypeNameByCustoTypeId(int CustoTypeId) + [HttpDelete] + public bool DeleteReserInfo([FromBody]string rid) { - return CustoTypeService.SelectTypeNameByCustoTypeId(CustoTypeId); + return new ReserService().DeleteReserInfo(rid); } - #endregion - #region 查询所有证件类型 /// - /// 查询所有证件类型 + /// 查询所有预约信息 /// /// - public static List SelectPassPortTypeAll() + [HttpGet] + public List SelectReserAll() { - return CustoTypeService.SelectPassPortTypeAll(); + return new ReserService().SelectReserAll(); } - #endregion - #region 查询所有性别类型 /// - /// 查询所有性别类型 + /// 添加预约信息 /// + /// /// - public static List SelectSexTypeAll() + [HttpPost] + public bool InserReserInfo([FromBody]Reser r) { - return CustoTypeService.SelectSexTypeAll(); + return new ReserService().InserReserInfo(r); } - #endregion } } diff --git a/SYS.Manager/Room/RoomManager.cs b/SYS.Browser.WebAPI/Controllers/Room/RoomController.cs similarity index 51% rename from SYS.Manager/Room/RoomManager.cs rename to SYS.Browser.WebAPI/Controllers/Room/RoomController.cs index 53e92b2e0e72ab1ad6b36e49e1aa0c77d270fd13..aff861fa992e0a58b32f6eab9e0d110eb0c0afdd 100644 --- a/SYS.Manager/Room/RoomManager.cs +++ b/SYS.Browser.WebAPI/Controllers/Room/RoomController.cs @@ -1,68 +1,71 @@ using System; using System.Collections.Generic; -using MySql.Data.MySqlClient; using SYS.Core; using SYS.Application; +using System.Web.Http; -namespace SYS.Manager +namespace SYS.Browser.WebAPI.Controllers { - public class RoomManager + /// + /// 房间信息控制器 + /// + public class RoomController: ApiController { /// /// 根据房间状态获取相应状态的房间信息 /// /// /// - public static List SelectRoomByRoomState(int stateid) + [HttpGet] + public List SelectRoomByRoomState([FromUri]int stateid) { - return RoomService.SelectRoomByRoomState(stateid); + return new RoomService().SelectRoomByRoomState(stateid); } + /// + /// 查询所有房间信息 + /// + /// + [HttpGet] public List SelectRoomAll() { - return RoomService.SelectRoomAll(); + return new RoomService().SelectRoomAll(); + } + + /// + /// 根据房间编号查询房间信息 + /// + /// + /// + [HttpGet] + public Room SelectRoomByRoomNo([FromUri]string no) + { + return new RoomService().SelectRoomByRoomNo(no); } - public static Room SelectRoomByRoomNo(string no) + + #region 获取房间分区的信息 + /// + /// 获取房间分区的信息 + /// + /// + [HttpGet] + public List SelectRoomByTypeName([FromUri]string TypeName) { - return RoomService.SelectRoomByRoomNo(no); + return new RoomService().SelectRoomByTypeName(TypeName); } + #endregion + #region 根据房间状态来查询可使用的房间 /// /// 根据房间状态来查询可使用的房间 /// /// - public static List SelectCanUseRoomAll() - { - List rooms = new List(); - string sql = "select * from ROOM r,ROOMTYPE t,ROOMSTATE rs where r.RoomType=t.RoomType and r.RoomStateId=rs.RoomStateId and r.RoomStateId='0'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - Room room = new Room(); - room.RoomNo = (string)dr["RoomNo"]; - room.CustoNo = dr["CustoNo"].ToString(); - room.RoomMoney = (decimal)dr["RoomMoney"]; - room.PersonNum = Convert.ToString(dr["PersonNum"]); - if (!DBNull.Value.Equals(dr["CheckTime"])) - { - room.CheckTime = DateTime.Parse(dr["CheckTime"].ToString()); - } - if (!DBNull.Value.Equals(dr["CheckOutTime"])) - { - room.CheckOutTime = DateTime.Parse(dr["CheckOutTime"].ToString()); - } - room.RoomStateId = (int)dr["RoomStateId"]; - room.RoomState = (string)dr["RoomState"]; - room.RoomType = (int)dr["RoomType"]; - room.RoomPosition = (string)dr["RoomPosition"]; - room.typeName = (string)dr["RoomName"]; - rooms.Add(room); - } - dr.Close(); - DBHelper.Closecon(); - return rooms; + [HttpGet] + public List SelectCanUseRoomAll() + { + return new RoomService().SelectCanUseRoomAll(); } #endregion @@ -72,9 +75,10 @@ namespace SYS.Manager /// /// /// - public static int UpdateRoomByRoomNo(string room) + [HttpGet] + public bool UpdateRoomByRoomNo([FromUri]string room) { - return RoomService.UpdateRoomByRoomNo(room); + return new RoomService().UpdateRoomByRoomNo(room); } #endregion @@ -84,9 +88,10 @@ namespace SYS.Manager /// /// /// - public static object DayByRoomNo(string roomno) + [HttpGet] + public object DayByRoomNo([FromUri]string roomno) { - return RoomService.DayByRoomNo(roomno); + return new RoomService().DayByRoomNo(roomno); } #endregion @@ -96,9 +101,23 @@ namespace SYS.Manager /// /// /// - public static int UpdateRoomInfo(Room r) + [HttpPost] + public bool UpdateRoomInfo([FromBody]Room r) { - return RoomService.UpdateRoomInfo(r); + return new RoomService().UpdateRoomInfo(r); + } + #endregion + + #region 根据房间编号修改房间信息(预约) + /// + /// 根据房间编号修改房间信息(预约) + /// + /// + /// + [HttpPost] + public bool UpdateRoomInfoWithReser([FromBody]Room r) + { + return new RoomService().UpdateRoomInfoWithReser(r); } #endregion @@ -107,9 +126,10 @@ namespace SYS.Manager /// 查询可入住房间数量 /// /// - public static object SelectCanUseRoomAllByRoomState() + [HttpGet] + public object SelectCanUseRoomAllByRoomState() { - return RoomService.SelectCanUseRoomAllByRoomState(); + return new RoomService().SelectCanUseRoomAllByRoomState(); } #endregion @@ -118,9 +138,10 @@ namespace SYS.Manager /// 查询已入住房间数量 /// /// - public static object SelectNotUseRoomAllByRoomState() + [HttpGet] + public object SelectNotUseRoomAllByRoomState() { - return RoomService.SelectNotUseRoomAllByRoomState(); + return new RoomService().SelectNotUseRoomAllByRoomState(); } #endregion @@ -129,9 +150,10 @@ namespace SYS.Manager /// 查询脏房间数量 /// /// - public static object SelectNotClearRoomAllByRoomState() + [HttpGet] + public object SelectNotClearRoomAllByRoomState() { - return RoomService.SelectNotClearRoomAllByRoomState(); + return new RoomService().SelectNotClearRoomAllByRoomState(); } #endregion @@ -140,9 +162,10 @@ namespace SYS.Manager /// 查询维修房间数量 /// /// - public static object SelectFixingRoomAllByRoomState() + [HttpGet] + public object SelectFixingRoomAllByRoomState() { - return RoomService.SelectFixingRoomAllByRoomState(); + return new RoomService().SelectFixingRoomAllByRoomState(); } #endregion @@ -151,9 +174,10 @@ namespace SYS.Manager /// 根据房间编号查询房间价格 /// /// - public static object SelectRoomByRoomPrice(string r) + [HttpGet] + public object SelectRoomByRoomPrice([FromUri]string r) { - return RoomService.SelectRoomByRoomPrice(r); + return new RoomService().SelectRoomByRoomPrice(r); } #endregion @@ -162,21 +186,10 @@ namespace SYS.Manager /// 查询预约房数量 /// /// - public static object SelectReseredRoomAllByRoomState() - { - return RoomService.SelectReseredRoomAllByRoomState(); - } - #endregion - - #region 根据房间编号查询房间状态名称 - /// - /// 根据房间编号查询房间状态名称 - /// - /// - /// - public static object SelectRoomStateNameByRoomNo(string roomno) + [HttpGet] + public object SelectReseredRoomAllByRoomState() { - return RoomService.SelectRoomStateNameByRoomNo(roomno); + return new RoomService().SelectReseredRoomAllByRoomState(); } #endregion @@ -187,9 +200,10 @@ namespace SYS.Manager /// /// /// - public static int UpdateRoomStateByRoomNo(string roomno, int stateid) + [HttpPost] + public bool UpdateRoomStateByRoomNo([FromBody]string roomno, int stateid) { - return RoomService.UpdateRoomStateByRoomNo(roomno, stateid); + return new RoomService().UpdateRoomStateByRoomNo(roomno, stateid); } #endregion @@ -199,9 +213,10 @@ namespace SYS.Manager /// /// /// - public static object InsertRoom(Room rn) + [HttpPost] + public object InsertRoom([FromBody]Room roomno) { - return RoomService.InsertRoom(rn); + return new RoomService().InsertRoom(roomno); } #endregion @@ -210,9 +225,10 @@ namespace SYS.Manager /// 查询所有可消费(已住)房间 /// /// - public static List SelectRoomByStateAll() + [HttpGet] + public List SelectRoomByStateAll() { - return RoomService.SelectRoomByStateAll(); + return new RoomService().SelectRoomByStateAll(); } #endregion @@ -221,9 +237,10 @@ namespace SYS.Manager /// 获取所有房间状态 /// /// - public static List SelectRoomStateAll() + [HttpGet] + public List SelectRoomStateAll() { - return RoomService.SelectRoomStateAll(); + return new RoomService().SelectRoomStateAll(); } #endregion @@ -233,9 +250,10 @@ namespace SYS.Manager /// /// /// - public static object SelectRoomStateIdByRoomNo(string roomno) + [HttpGet] + public object SelectRoomStateIdByRoomNo([FromUri]string roomno) { - return RoomService.SelectRoomStateIdByRoomNo(roomno); + return new RoomService().SelectRoomStateIdByRoomNo(roomno); } #endregion diff --git a/SYS.Manager/Room/RoomTypeManager.cs b/SYS.Browser.WebAPI/Controllers/Room/RoomTypeController.cs similarity index 54% rename from SYS.Manager/Room/RoomTypeManager.cs rename to SYS.Browser.WebAPI/Controllers/Room/RoomTypeController.cs index 55af461f04329bd8ec376f7d0a2f7c80b88fd1eb..06dd83f00fdf8b56b1056321ec0874a562dbb1f7 100644 --- a/SYS.Manager/Room/RoomTypeManager.cs +++ b/SYS.Browser.WebAPI/Controllers/Room/RoomTypeController.cs @@ -1,19 +1,24 @@ using System.Collections.Generic; using SYS.Core; using SYS.Application; +using System.Web.Http; -namespace SYS.Manager +namespace SYS.Browser.WebAPI.Controllers { - public class RoomTypeManager + /// + /// 房间类型控制器 + /// + public class RoomTypeController : ApiController { #region 获取所有房间类型 /// /// 获取所有房间类型 /// /// - public static List SelectRoomTypesAll() + [HttpGet] + public List SelectRoomTypesAll() { - return RoomTypeService.SelectRoomTypesAll(); + return new RoomTypeService().SelectRoomTypesAll(); } #endregion @@ -23,9 +28,10 @@ namespace SYS.Manager /// /// /// - public static RoomType SelectRoomTypeByRoomNo(string no) + [HttpPost] + public RoomType SelectRoomTypeByRoomNo([FromBody]string no) { - return RoomTypeService.SelectRoomTypeByRoomNo(no); + return new RoomTypeService().SelectRoomTypeByRoomNo(no); } #endregion } diff --git a/SYS.Browser.WebAPI/Controllers/Util/FontsController.cs b/SYS.Browser.WebAPI/Controllers/Util/FontsController.cs new file mode 100644 index 0000000000000000000000000000000000000000..dae2811bcc4c0b111ebcd64aa6965082282a2176 --- /dev/null +++ b/SYS.Browser.WebAPI/Controllers/Util/FontsController.cs @@ -0,0 +1,24 @@ +using System.Collections.Generic; +using System.Web.Http; +using SYS.Application; +using SYS.Core; + +namespace SYS.Browser.WebAPI.Controllers +{ + /// + /// 酒店宣传语控制器 + /// + public class FontsController : ApiController + { + /// + /// 查询所有宣传联动内容(跑马灯) + /// + /// + [HttpGet] + public List SelectFontAll() + { + return new FontsService().SelectFontAll(); + } + + } +} diff --git a/SYS.Browser.WebAPI/Controllers/Worker/CheckInfoController.cs b/SYS.Browser.WebAPI/Controllers/Worker/CheckInfoController.cs new file mode 100644 index 0000000000000000000000000000000000000000..2e7b744483f129c0da4ea6912d8d6b5bc296ae2d --- /dev/null +++ b/SYS.Browser.WebAPI/Controllers/Worker/CheckInfoController.cs @@ -0,0 +1,24 @@ +using System.Collections.Generic; +using SYS.Core; +using SYS.Application; +using System.Web.Http; + +namespace SYS.Browser.WebAPI.Controllers +{ + /// + /// 部门监管控制器 + /// + public class CheckInfoController : ApiController + { + /// + /// 查询所有部门监管信息 + /// + /// + [HttpGet] + public List SelectCheckInfoAll() + { + + return new CheckInfoService().SelectCheckInfoAll(); + } + } +} diff --git a/SYS.Manager/Worker/WorkerCheckManager.cs b/SYS.Browser.WebAPI/Controllers/Worker/WorkerCheckController.cs similarity index 48% rename from SYS.Manager/Worker/WorkerCheckManager.cs rename to SYS.Browser.WebAPI/Controllers/Worker/WorkerCheckController.cs index bbf5c45d099000d79425e74e150d0e7e38ed4881..4f26b7413ac789aa3252fca82949ef00ca6d7d19 100644 --- a/SYS.Manager/Worker/WorkerCheckManager.cs +++ b/SYS.Browser.WebAPI/Controllers/Worker/WorkerCheckController.cs @@ -1,19 +1,24 @@ using System.Collections.Generic; using SYS.Core; using SYS.Application; +using System.Web.Http; -namespace SYS.Manager +namespace SYS.Browser.WebAPI.Controllers { - public class WorkerCheckManager + /// + /// 员工打卡考勤控制器 + /// + public class WorkerCheckController:ApiController { /// /// 根据员工编号查询其所有的打卡记录 /// /// /// - public static List SelectCheckInfoByWorkerNo(string wid) + [HttpGet] + public List SelectCheckInfoByWorkerNo([FromUri]string wid) { - return WorkerCheckService.SelectCheckInfoByWorkerNo(wid); + return new WorkerCheckService().SelectCheckInfoByWorkerNo(wid); } /// @@ -21,9 +26,10 @@ namespace SYS.Manager /// /// /// - public static object SelectWorkerCheckDaySumByWorkerNo(string wkn) + [HttpGet] + public object SelectWorkerCheckDaySumByWorkerNo([FromUri]string wkn) { - return WorkerCheckService.SelectWorkerCheckDaySumByWorkerNo(wkn); + return new WorkerCheckService().SelectWorkerCheckDaySumByWorkerNo(wkn); } @@ -32,18 +38,21 @@ namespace SYS.Manager /// /// /// - public static object SelectToDayCheckInfoByWorkerNo(string wkn) + [HttpPost] + public object SelectToDayCheckInfoByWorkerNo([FromUri]string wkn) { - return WorkerCheckService.SelectToDayCheckInfoByWorkerNo(wkn); + return new WorkerCheckService().SelectToDayCheckInfoByWorkerNo(wkn); } + /// /// 添加员工打卡数据 /// /// /// - public static int AddCheckInfo(WorkerCheck workerCheck) + [HttpPost] + public bool AddCheckInfo([FromBody]WorkerCheck workerCheck) { - return WorkerCheckService.AddCheckInfo(workerCheck); + return new WorkerCheckService().AddCheckInfo(workerCheck); } } } diff --git a/SYS.Manager/Worker/WorkerManager.cs b/SYS.Browser.WebAPI/Controllers/Worker/WorkerController.cs similarity index 61% rename from SYS.Manager/Worker/WorkerManager.cs rename to SYS.Browser.WebAPI/Controllers/Worker/WorkerController.cs index 53594bbf95058b185e2b467b0f597b27dd05a242..094a293ea2ed98e664905a739681884dd625c3ed 100644 --- a/SYS.Manager/Worker/WorkerManager.cs +++ b/SYS.Browser.WebAPI/Controllers/Worker/WorkerController.cs @@ -1,10 +1,14 @@ using System.Collections.Generic; using SYS.Core; using SYS.Application; +using System.Web.Http; -namespace SYS.Manager +namespace SYS.Browser.WebAPI.Controllers { - public class WorkerManager + /// + /// 员工信息控制器 + /// + public class WorkerController: ApiController { #region 修改员工信息 /// @@ -12,9 +16,10 @@ namespace SYS.Manager /// /// /// - public static int UpdateWorker(Worker worker) + [HttpPost] + public bool UpdateWorker([FromBody]Worker worker) { - return WorkerService.UpdateWorker(worker); + return new WorkerService().UpdateWorker(worker); } #endregion @@ -24,9 +29,10 @@ namespace SYS.Manager /// /// /// - public static int AddWorker(Worker worker) + [HttpPost] + public bool AddWorker([FromBody]Worker worker) { - return WorkerService.AddWorker(worker); + return new WorkerService().AddWorker(worker); } #endregion @@ -35,9 +41,10 @@ namespace SYS.Manager /// 获取所有工作人员信息 /// /// + [HttpGet] public List SelectWorkerAll() { - return WorkerService.SelectWorkerAll(); + return new WorkerService().SelectWorkerAll(); } #endregion @@ -47,9 +54,10 @@ namespace SYS.Manager /// /// /// - public static Worker SelectWorkerInfoByWorkerId(string workerId) + [HttpGet] + public Worker SelectWorkerInfoByWorkerId([FromUri]string workerId) { - return WorkerService.SelectWorkerInfoByWorkerId(workerId); + return new WorkerService().SelectWorkerInfoByWorkerId(workerId); } #endregion @@ -62,9 +70,10 @@ namespace SYS.Manager /// /// 登录密码 /// - public static Worker SelectWorkerInfoByWorkerIdAndWorkerPwd(string id, string pwd) + [HttpPost] + public Worker SelectWorkerInfoByWorkerIdAndWorkerPwd([FromBody]string id, string pwd) { - return WorkerService.SelectWorkerInfoByWorkerIdAndWorkerPwd(id, pwd); + return new WorkerService().SelectWorkerInfoByWorkerIdAndWorkerPwd(id, pwd); } #endregion } diff --git a/SYS.Browser.WebAPI/Controllers/Worker/WorkerGoodBadController.cs b/SYS.Browser.WebAPI/Controllers/Worker/WorkerGoodBadController.cs new file mode 100644 index 0000000000000000000000000000000000000000..2e145475750ce80d6b8aeba4d816902c553d5ee2 --- /dev/null +++ b/SYS.Browser.WebAPI/Controllers/Worker/WorkerGoodBadController.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using SYS.Core; +using SYS.Application; +using System.Web.Http; + +namespace SYS.Browser.WebAPI.Controllers +{ + /// + /// 员工奖惩信息控制器 + /// + public class WorkerGoodBadController:ApiController + { + /// + /// 添加奖惩信息 + /// + /// + /// + [HttpPost] + public bool AddGoodBad([FromBody]WorkerGoodBad goodBad) + { + return new WorkerGoodBadService().AddGoodBad(goodBad); + } + + /// + /// 根据员工编号查询奖惩信息 + /// + /// + /// + [HttpGet] + public List SelectAllGoodBadByWorkNo([FromUri]string wn) + { + return new WorkerGoodBadService().SelectAllGoodBadByWorkNo(wn); + } + } +} diff --git a/SYS.Browser.WebAPI/Controllers/Worker/WorkerHistoryController.cs b/SYS.Browser.WebAPI/Controllers/Worker/WorkerHistoryController.cs new file mode 100644 index 0000000000000000000000000000000000000000..31ec61ab37d473bec1f80998ef7cc0225e8159eb --- /dev/null +++ b/SYS.Browser.WebAPI/Controllers/Worker/WorkerHistoryController.cs @@ -0,0 +1,36 @@ +using System.Collections.Generic; +using SYS.Core; +using SYS.Application; +using System.Web.Http; + +namespace SYS.Browser.WebAPI.Controllers +{ + /// + /// 员工履历控制器 + /// + public class WorkerHistoryController: ApiController + { + /// + /// 添加工作履历 + /// + /// + /// + /// + [HttpPost] + public bool AddHistoryByWorkerId([FromBody]WorkerHistory workerHistory) + { + return new WorkerHistoryService().AddHistoryByWorkerId(workerHistory); + } + + /// + /// 根据员工编号查询履历信息 + /// + /// + /// + [HttpGet] + public List SelectHistoryByWorkerId([FromUri]string wid) + { + return new WorkerHistoryService().SelectHistoryByWorkerId(wid); + } + } +} diff --git a/SYS.Manager/Zero/AdminManager.cs b/SYS.Browser.WebAPI/Controllers/Zero/AdminController.cs similarity index 31% rename from SYS.Manager/Zero/AdminManager.cs rename to SYS.Browser.WebAPI/Controllers/Zero/AdminController.cs index 5a7b266efd9fe5a8570df9ef17c1720fea7538fb..b2f8f81c1c2c90d85b8d8da498551af28e2d8af5 100644 --- a/SYS.Manager/Zero/AdminManager.cs +++ b/SYS.Browser.WebAPI/Controllers/Zero/AdminController.cs @@ -1,33 +1,27 @@ using SYS.Core; using SYS.Application; +using System.Web.Http; -namespace SYS.Manager +namespace SYS.Browser.WebAPI.Controllers { - public class AdminManager + /// + /// 后台管理员信息控制器 + /// + public class AdminController: ApiController { #region 根据超管密码查询管理类型和权限 /// /// 根据超管密码查询管理类型和权限 /// - /// + /// + /// /// - public static Admin SelectMangerByPass(string adminpass) + [HttpPost] + public Admin SelectMangerByPass([FromBody]string adminaccount, string adminpass) { - return AdminService.SelectMangerByPass(adminpass); + return new AdminService().SelectMangerByPass(adminaccount,adminpass); } #endregion - #region 根据超管密码查询超管信息 - /// - /// 根据超管密码查询超管信息 - /// - /// - /// 登录名称 - /// - public static Admin SelectAdminInfoByadminpwd(string pwd) - { - return AdminService.SelectAdminInfoByadminpwd(pwd); - } - #endregion } } diff --git a/SYS.Browser.WebAPI/Controllers/Zero/BaseController.cs b/SYS.Browser.WebAPI/Controllers/Zero/BaseController.cs new file mode 100644 index 0000000000000000000000000000000000000000..b300597463e4f73d889e700c517f5acbc90ba5ae --- /dev/null +++ b/SYS.Browser.WebAPI/Controllers/Zero/BaseController.cs @@ -0,0 +1,302 @@ +using SYS.Application; +using SYS.Core; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Web.Http; + +namespace SYS.Browser.WebAPI.Controllers +{ + /// + /// 基础信息控制器 + /// + public class BaseController: ApiController + { + #region 性别模块 + + /// + /// 查询所有性别类型 + /// + /// + [HttpGet] + public List SelectSexTypeAll() + { + return new BaseService().SelectSexTypeAll(); + } + + /// + /// 查询性别类型 + /// + /// + [HttpGet] + public SexType SelectSexType([FromUri]SexType sexType) + { + return new BaseService().SelectSexType(sexType); + } + + /// + /// 添加性别类型 + /// + /// + /// + [HttpPost] + public bool AddSexType([FromBody]SexType sexType) + { + return new BaseService().AddSexType(sexType); + } + + /// + /// 删除性别类型 + /// + /// + /// + [HttpDelete] + public bool DelSexType([FromBody]SexType sexType) + { + return new BaseService().DelSexType(sexType); + } + + /// + /// 更新性别类型 + /// + /// + /// + [HttpPost] + public bool UpdSexType([FromBody]SexType sexType) + { + return new BaseService().UpdSexType(sexType); + } + + #endregion + + #region 职位模块 + + /// + /// 查询所有职位类型 + /// + /// + [HttpGet] + public List SelectPositionAll() + { + return new BaseService().SelectPositionAll(); + } + + /// + /// 查询职位类型 + /// + /// + [HttpGet] + public Position SelectPosition([FromUri]Position position) + { + return new BaseService().SelectPosition(position); + } + + /// + /// 添加职位类型 + /// + /// + /// + [HttpPost] + public bool AddPosition([FromBody]Position position) + { + return new BaseService().AddPosition(position); + } + + /// + /// 删除职位类型 + /// + /// + /// + [HttpDelete] + public bool DelPosition([FromBody]Position position) + { + return new BaseService().DelPosition(position); + } + + /// + /// 更新职位类型 + /// + /// + /// + [HttpPost] + public bool UpdPosition([FromBody]Position position) + { + return new BaseService().UpdPosition(position); + } + + #endregion + + #region 民族模块 + + /// + /// 查询所有民族类型 + /// + /// + [HttpGet] + public List SelectNationAll() + { + return new BaseService().SelectNationAll(); + } + + /// + /// 查询民族类型 + /// + /// + [HttpGet] + public Nation SelectNation([FromUri]Nation nation) + { + return new BaseService().SelectNation(nation); + } + + /// + /// 添加民族类型 + /// + /// + /// + [HttpPost] + public bool AddNation([FromBody]Nation nation) + { + return new BaseService().AddNation(nation); + } + + /// + /// 删除民族类型 + /// + /// + /// + [HttpDelete] + public bool DelNation([FromBody]Nation nation) + { + return new BaseService().DelNation(nation); + } + + /// + /// 更新民族类型 + /// + /// + /// + [HttpPost] + public bool UpdNation([FromBody]Nation nation) + { + return new BaseService().UpdNation(nation); + } + + #endregion + + #region 学历模块 + + /// + /// 查询所有学历类型 + /// + /// + [HttpGet] + public List SelectEducationAll() + { + return new BaseService().SelectEducationAll(); + } + + /// + /// 查询学历类型 + /// + /// + [HttpGet] + public Education SelectEducation([FromUri]Education education) + { + return new BaseService().SelectEducation(education); + } + + /// + /// 添加学历类型 + /// + /// + /// + [HttpPost] + public bool AddEducation([FromBody]Education education) + { + return new BaseService().AddEducation(education); + } + + /// + /// 删除学历类型 + /// + /// + /// + [HttpDelete] + public bool DelEducation([FromBody]Education education) + { + return new BaseService().DelEducation(education); + } + + /// + /// 更新学历类型 + /// + /// + /// + [HttpPost] + public bool UpdEducation([FromBody]Education education) + { + return new BaseService().UpdEducation(education); + } + + #endregion + + #region 部门模块 + + /// + /// 查询所有部门类型 + /// + /// + [HttpGet] + public List SelectDeptAll() + { + return new BaseService().SelectDeptAll(); + } + + /// + /// 查询部门类型 + /// + /// + [HttpGet] + public Dept SelectDept([FromUri]Dept dept) + { + return new BaseService().SelectDept(dept); + } + + /// + /// 添加部门类型 + /// + /// + /// + [HttpPost] + public bool AddDept([FromBody]Dept dept) + { + return new BaseService().AddDept(dept); + } + + /// + /// 删除部门类型 + /// + /// + /// + [HttpDelete] + public bool DelDept([FromBody]Dept dept) + { + return new BaseService().DelDept(dept); + } + + /// + /// 更新部门类型 + /// + /// + /// + [HttpPost] + public bool UpdDept([FromBody]Dept dept) + { + return new BaseService().UpdDept(dept); + } + + #endregion + } +} diff --git a/SYS.Manager/Zero/NoticeManager.cs b/SYS.Browser.WebAPI/Controllers/Zero/NoticeController.cs similarity index 48% rename from SYS.Manager/Zero/NoticeManager.cs rename to SYS.Browser.WebAPI/Controllers/Zero/NoticeController.cs index f2c713ecef6122428fb3a729fc8819b6b6117036..12a285cbe09fdfadfe96b322453c5521a3a5057d 100644 --- a/SYS.Manager/Zero/NoticeManager.cs +++ b/SYS.Browser.WebAPI/Controllers/Zero/NoticeController.cs @@ -1,19 +1,24 @@ using System.Collections.Generic; using SYS.Core; using SYS.Application; +using System.Web.Http; -namespace SYS.Manager +namespace SYS.Browser.WebAPI.Controllers { - public class NoticeManager + /// + /// 任命公告控制器 + /// + public class NoticeController:ApiController { #region 获取所有公告信息 /// /// 获取所有公告信息 /// /// - public static List SelectNoticeAll() + [HttpGet] + public List SelectNoticeAll() { - return NoticeService.SelectNoticeAll(); + return new NoticeService().SelectNoticeAll(); } #endregion } diff --git a/SYS.Browser.WebAPI/Controllers/Zero/OperationlogController.cs b/SYS.Browser.WebAPI/Controllers/Zero/OperationlogController.cs new file mode 100644 index 0000000000000000000000000000000000000000..f639125589cd13657e8aedca31ec2f40dfcc38fb --- /dev/null +++ b/SYS.Browser.WebAPI/Controllers/Zero/OperationlogController.cs @@ -0,0 +1,34 @@ +using System.Collections.Generic; +using SYS.Core; +using SYS.Application; +using System.Web.Http; + +namespace SYS.Browser.WebAPI.Controllers +{ + /// + /// 操作日志控制器 + /// + public class OperationlogController : ApiController + { + /// + /// 添加操作日志 + /// + /// + /// + [HttpPost] + public bool InsertOperationLog([FromBody]OperationLog opr) + { + return new OperationlogService().InsertOperationLog(opr); + } + + /// + /// 查询所有操作日志 + /// + /// + [HttpGet] + public List SelectOperationlogAll() + { + return new OperationlogService().SelectOperationlogAll(); + } + } +} \ No newline at end of file diff --git a/SYS.Browser.WebAPI/Global.asax b/SYS.Browser.WebAPI/Global.asax new file mode 100644 index 0000000000000000000000000000000000000000..c6bb58485ff8a47a1a9076e88ff4a3e489166aa1 --- /dev/null +++ b/SYS.Browser.WebAPI/Global.asax @@ -0,0 +1 @@ +<%@ Application Codebehind="Global.asax.cs" Inherits="SYS.Browser.WebAPI.WebApiApplication" Language="C#" %> diff --git a/SYS.Browser.WebAPI/Global.asax.cs b/SYS.Browser.WebAPI/Global.asax.cs new file mode 100644 index 0000000000000000000000000000000000000000..1bc71e203d8827fecfb0dda2cc959eadce3c33d4 --- /dev/null +++ b/SYS.Browser.WebAPI/Global.asax.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Http; +using System.Web.Routing; + +namespace SYS.Browser.WebAPI +{ + public class WebApiApplication : System.Web.HttpApplication + { + protected void Application_Start() + { + GlobalConfiguration.Configure(WebApiConfig.Register); + } + } +} diff --git a/SYS.Manager/Properties/AssemblyInfo.cs b/SYS.Browser.WebAPI/Properties/AssemblyInfo.cs similarity index 44% rename from SYS.Manager/Properties/AssemblyInfo.cs rename to SYS.Browser.WebAPI/Properties/AssemblyInfo.cs index b2400860db70496a33f84e335e022820e4ec6cd2..1dfbae81ed8f605d9d1ab51c93e076b393ba2eb9 100644 --- a/SYS.Manager/Properties/AssemblyInfo.cs +++ b/SYS.Browser.WebAPI/Properties/AssemblyInfo.cs @@ -2,35 +2,34 @@ using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// 有关程序集的一般信息由以下 +// 有关程序集的常规信息通过下列特性集 // 控制。更改这些特性值可修改 // 与程序集关联的信息。 -[assembly: AssemblyTitle("SYS.Manager")] +[assembly: AssemblyTitle("SYS.Browser.WebAPI")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("SYS.Manager")] -[assembly: AssemblyCopyright("Copyright © 2020")] +[assembly: AssemblyProduct("SYS.Browser.WebAPI")] +[assembly: AssemblyCopyright("Copyright © 2021")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // 将 ComVisible 设置为 false 会使此程序集中的类型 -//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 -//请将此类型的 ComVisible 特性设置为 true。 +// 对 COM 组件不可见。如果需要 +// 从 COM 访问此程序集中的某个类型,请针对该类型将 ComVisible 特性设置为 true。 [assembly: ComVisible(false)] -// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID -[assembly: Guid("c60df246-c4fc-4045-91e5-093b0aa4d4ef")] +// 如果此项目向 COM 公开,则下列 GUID 用于 typelib 的 ID +[assembly: Guid("008aa4b4-cf4c-4cee-9940-4785191b22b6")] -// 程序集的版本信息由下列四个值组成: +// 程序集的版本信息由下列四个值组成: // // 主版本 // 次版本 -// 生成号 -// 修订号 +// 内部版本号 +// 修订版本 // -// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 -//通过使用 "*",如下所示: -// [assembly: AssemblyVersion("1.0.*")] +// 可以指定所有值,也可以使用“修订号”和“内部版本号”的默认值, +// 方法是按如下所示使用 "*": [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/SYS.Browser.WebAPI/SYS.Browser.WebAPI.csproj b/SYS.Browser.WebAPI/SYS.Browser.WebAPI.csproj new file mode 100644 index 0000000000000000000000000000000000000000..54bd8112241db494da4d5ca5a539c1aac308c3c3 --- /dev/null +++ b/SYS.Browser.WebAPI/SYS.Browser.WebAPI.csproj @@ -0,0 +1,196 @@ + + + + + Debug + AnyCPU + + + 2.0 + {008AA4B4-CF4C-4CEE-9940-4785191B22B6} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + SYS.Browser.WebAPI + SYS.Browser.WebAPI + v4.6.1 + true + true + + + + + + + + + + true + full + false + bin\ + DEBUG;TRACE + prompt + 4 + x64 + bin\SYS.Browser.WebAPI.xml + + + true + pdbonly + true + bin\ + TRACE + prompt + 4 + + + + + ..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll + + + ..\packages\SqlSugar.5.0.2\lib\SqlSugar.dll + + + ..\packages\Swashbuckle.Core.5.6.0\lib\net40\Swashbuckle.Core.dll + + + + + + + + + + + + + + + + + + + + ..\packages\WebActivator.1.5.1\lib\net40\WebActivator.dll + + + ..\packages\WebActivatorEx.2.0\lib\net40\WebActivatorEx.dll + + + + + ..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll + + + ..\packages\Microsoft.AspNet.WebApi.Client.5.2.7\lib\net45\System.Net.Http.Formatting.dll + + + ..\packages\Microsoft.AspNet.WebApi.Core.5.2.7\lib\net45\System.Web.Http.dll + + + ..\packages\Microsoft.AspNet.WebApi.WebHost.5.2.7\lib\net45\System.Web.Http.WebHost.dll + + + ..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Global.asax + + + + + + + Web.config + + + Web.config + + + + + + + + + {600f4cc8-4323-4237-a55c-bfef4b67d57c} + SYS.Application + + + {65501AF6-C629-448A-847E-1BCD60665865} + SYS.Common + + + {cd039d0f-bd50-4fbf-b9cd-cdfab25c7dfa} + SYS.Core + + + + 10.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + + + + + True + True + 61000 + / + http://localhost:65073/ + False + False + + + False + + + + + + + 这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。 + + + + + \ No newline at end of file diff --git a/SYS.Browser.WebAPI/Scripts/Swaggerui/swagger_lang.js b/SYS.Browser.WebAPI/Scripts/Swaggerui/swagger_lang.js new file mode 100644 index 0000000000000000000000000000000000000000..c7ed9eebb0ad8cba5c3567a9d6c78226e5cbb558 --- /dev/null +++ b/SYS.Browser.WebAPI/Scripts/Swaggerui/swagger_lang.js @@ -0,0 +1,121 @@ +/// +/// 中文转换 +/// +var SwaggerTranslator = (function () { + //定时执行检测是否转换成中文,最多执行500次 即500*50/1000=25s + var iexcute = 0, + //中文语言包 + _words = { + "Warning: Deprecated": "警告:已过时", + "Implementation Notes": "实现备注", + "Response Class": "响应类", + "Status": "状态", + "Parameters": "参数", + "Parameter": "参数", + "Value": "值", + "Description": "描述", + "Parameter Type": "参数类型", + "Data Type": "数据类型", + "Response Messages": "响应消息", + "HTTP Status Code": "HTTP状态码", + "Reason": "原因", + "Response Model": "响应模型", + "Request URL": "请求URL", + "Response Body": "响应体", + "Response Code": "响应码", + "Response Headers": "响应头", + "Hide Response": "隐藏响应", + "Headers": "头", + "Try it out!": "试一下!", + "Show/Hide": "显示/隐藏", + "List Operations": "显示操作", + "Expand Operations": "展开操作", + "Raw": "原始", + "can't parse JSON. Raw result": "无法解析JSON. 原始结果", + "Model Schema": "模型架构", + "Model": "模型", + "apply": "应用", + "Username": "用户名", + "Password": "密码", + "Terms of service": "服务条款", + "Created by": "创建者", + "See more at": "查看更多:", + "Contact the developer": "联系开发者", + "api version": "api版本", + "Response Content Type": "响应Content Type", + "fetching resource": "正在获取资源", + "fetching resource list": "正在获取资源列表", + "Explore": "浏览", + "Show Swagger Petstore Example Apis": "显示 Swagger Petstore 示例 Apis", + "Can't read from server. It may not have the appropriate access-control-origin settings.": "无法从服务器读取。可能没有正确设置access-control-origin。", + "Please specify the protocol for": "请指定协议:", + "Can't read swagger JSON from": "无法读取swagger JSON于", + "Finished Loading Resource Information. Rendering Swagger UI": "已加载资源信息。正在渲染Swagger UI", + "Unable to read api": "无法读取api", + "from path": "从路径", + "Click to set as parameter value": "点击设置参数", + "server returned": "服务器返回" + }, + + //定时执行转换 + _translator2Cn = function () { + if ($("#resources_container .resource").length > 0) { + _tryTranslate(); + } + + if ($("#explore").text() == "Explore" && iexcute < 500) { + iexcute++; + setTimeout(_translator2Cn, 50); + } + }, + + //设置控制器注释 + _setControllerSummary = function () { + $.ajax({ + type: "get", + async: true, + url: $("#input_baseUrl").val(), + dataType: "json", + success: function (data) { + var summaryDict = data.ControllerDesc; + var id, controllerName, strSummary; + $("#resources_container .resource").each(function (i, item) { + id = $(item).attr("id"); + if (id) { + controllerName = id.substring(9); + strSummary = summaryDict[controllerName]; + if (strSummary) { + $(item).children(".heading").children(".options").prepend('
  • ' + strSummary + '
  • '); + } + } + }); + } + }); + }, + + //尝试将英文转换成中文 + _tryTranslate = function () { + $('[data-sw-translate]').each(function () { + $(this).html(_getLangDesc($(this).html())); + $(this).val(_getLangDesc($(this).val())); + $(this).attr('title', _getLangDesc($(this).attr('title'))); + }); + }, + _getLangDesc = function (word) { + return _words[$.trim(word)] !== undefined ? _words[$.trim(word)] : word; + }; + + return { + Translator: function () { + console.warn("1"); + document.title = "API描述文档"; + $('body').append(''); + $("#logo").html("接口描述").attr("href", "/Home/Index"); + //设置控制器描述 + _setControllerSummary(); + _translator2Cn(); + } + } +})(); +//执行转换 +SwaggerTranslator.Translator(); \ No newline at end of file diff --git a/SYS.Browser.WebAPI/Web.Debug.config b/SYS.Browser.WebAPI/Web.Debug.config new file mode 100644 index 0000000000000000000000000000000000000000..b9a9fde75893d19d995b4992546620d217d4ccd3 --- /dev/null +++ b/SYS.Browser.WebAPI/Web.Debug.config @@ -0,0 +1,31 @@ + + + + + + + + + + \ No newline at end of file diff --git a/SYS.Browser.WebAPI/Web.Release.config b/SYS.Browser.WebAPI/Web.Release.config new file mode 100644 index 0000000000000000000000000000000000000000..755e7455d608a2389991cbb439c536090d7a7534 --- /dev/null +++ b/SYS.Browser.WebAPI/Web.Release.config @@ -0,0 +1,32 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/SYS.Browser.WebAPI/Web.config b/SYS.Browser.WebAPI/Web.config new file mode 100644 index 0000000000000000000000000000000000000000..88c0305ae76a78b9c4421ad412141d88fd6317ec --- /dev/null +++ b/SYS.Browser.WebAPI/Web.config @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SYS.Browser.WebAPI/packages.config b/SYS.Browser.WebAPI/packages.config new file mode 100644 index 0000000000000000000000000000000000000000..fe6efde78f4b79452dc3173b01f86ca6bf265c2b --- /dev/null +++ b/SYS.Browser.WebAPI/packages.config @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SYS.Common/App.config b/SYS.Common/App.config index b6f86c51d85d52064f079bee5c8185e4b6095324..3b94bb59161c4f327b8f63ef96be9718b8a88343 100644 --- a/SYS.Common/App.config +++ b/SYS.Common/App.config @@ -1,16 +1,19 @@  -
    + +
    - + - + diff --git a/SYS.Common/Base/BaseDto.cs b/SYS.Common/Base/BaseDto.cs index 781f0da860aab35da54a3e9787f00eabcf98bd1c..d384bd55c2dff3dabd004d6691293f61b3f5a212 100644 --- a/SYS.Common/Base/BaseDto.cs +++ b/SYS.Common/Base/BaseDto.cs @@ -8,17 +8,10 @@ namespace SYS.Common { public class BaseDto : IBaseDto { - public enum Code : int - { - SQLE_202_操作异常 = 202, - SQLE_200_操作成功 = 200, - SQLE_400_系统异常_请联系系统管理员 = 400 - - } /// /// 状态码 /// - public int StatusCode { get; set; } + public StatusCode StatusCode { get; set; } /// /// 状态信息 diff --git a/SYS.Common/Base/IBaseDto.cs b/SYS.Common/Base/IBaseDto.cs index 7b08cc79ec932ff7ebb02f2f31c1e6b793b3f901..363af977fee4a93a3c820b62cf98b36fd88892d8 100644 --- a/SYS.Common/Base/IBaseDto.cs +++ b/SYS.Common/Base/IBaseDto.cs @@ -14,11 +14,16 @@ namespace SYS.Common /// /// 状态码 /// - int StatusCode { get; set; } + StatusCode StatusCode { get; set; } /// /// 回传信息 /// string StatusMsg { get; set; } + + /// + /// 操作账户 + /// + string OperationAccount { get; set; } } } diff --git a/SYS.Common/Base/MsgDto.cs b/SYS.Common/Base/MsgDto.cs new file mode 100644 index 0000000000000000000000000000000000000000..2fbce5342c5f4e2fb25744e7d8d5211449d8ec4e --- /dev/null +++ b/SYS.Common/Base/MsgDto.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Common +{ + public class MsgDto:BaseDto + { + + } +} diff --git a/SYS.Common/BaseDbContext.cs b/SYS.Common/BaseDbContext.cs new file mode 100644 index 0000000000000000000000000000000000000000..170602b7bea7b4c4d4e4f04d9630a4c366290454 --- /dev/null +++ b/SYS.Common/BaseDbContext.cs @@ -0,0 +1,190 @@ +using SYS.Common.Repository; +using SYS.Core.Extensions; +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations.Schema; +using System.Data.Entity; +using System.Data.Entity.Infrastructure; +using System.Data.Entity.Migrations; +using System.Data.Entity.Validation; +using System.Data.SqlClient; +using System.Linq; +using System.Linq.Expressions; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Text; +using System.Threading; +using System.Threading.Tasks; + +namespace SYS.Common +{ + public class BaseDbContext : DbContext + { + private DbContextOption _option; + + static BaseDbContext() + { + //当模型属性发生改变时重建数据库 + Database.SetInitializer(new DropCreateDatabaseIfModelChanges()); + } + + /// + /// 构造函数 + /// + /// + public BaseDbContext(DbContextOption option) : base(option.ConnectionString) + { + if (option == null) + throw new ArgumentNullException(nameof(option)); + if (string.IsNullOrEmpty(option.ModelAssemblyName)) + throw new ArgumentNullException(nameof(option.ModelAssemblyName)); + _option = option; + this.Configuration.AutoDetectChangesEnabled = false; + } + + protected override void OnModelCreating(DbModelBuilder modelBuilder) + { + var assembly = Assembly.Load(_option.ModelAssemblyName); + var types = assembly?.GetTypes(); + var list = types?.Where(t => + t.IsClass && !t.IsGenericType && !t.IsAbstract && + t.GetInterfaces().Any(m => m.GetGenericTypeDefinition() == typeof(IBaseModel<>))).ToList(); + if (list != null && list.Any()) + { + list.ToList().ForEach(modelBuilder.RegisterEntityType); + } + base.OnModelCreating(modelBuilder); + } + + /// + /// ExecuteSqlWithNonQuery + /// + /// + /// + /// + public int ExecuteSqlWithNonQuery(string sql, params object[] parameters) + { + return Database.ExecuteSqlCommand(TransactionalBehavior.DoNotEnsureTransaction, sql, + CancellationToken.None, + parameters); + } + + /// + /// Custom SqlQuery + /// + /// ViewModel + /// + /// + /// + public IList SqlQuery(string sql, params object[] parameters) where TView : class, new() + { + return Database.SqlQuery(sql, parameters).ToList(); + } + + /// + /// edit an entity. + /// + /// + /// + /// + public int Edit(T entity) where T : class + { + Entry(entity).State = EntityState.Modified; + return SaveChanges(); + } + + /// + /// edit entities. + /// + /// + /// + /// + public int EditRange(ICollection entities) where T : class + { + Set().AddOrUpdate(entities.ToArray()); + return SaveChanges(); + } + + /// + /// + /// + /// + /// + /// + /// + public int Update(Expression> @where, Expression> updateExp) + where T : class + { + return Set().Where(@where).Update(updateExp); + } + + public int Update(T model, params string[] updateColumns) where T : class + { + if (updateColumns != null && updateColumns.Length > 0) + { + if (Entry(model).State == EntityState.Added || + Entry(model).State == EntityState.Detached) Set().Attach(model); + foreach (var propertyName in updateColumns) + { + Entry(model).Property(propertyName).IsModified = true; + } + } + else + { + Entry(model).State = EntityState.Modified; + } + return SaveChanges(); + } + + + public int Delete(Expression> @where) where T : class + { + Set().Where(@where).Delete(); + return SaveChanges(); + } + + /// + /// bulk insert by sqlbulkcopy. + /// + /// + /// + /// + /// + public void BulkInsert(IList entities, string destinationTableName = null) where T : class + { + if (entities == null || !entities.Any()) return; + if (string.IsNullOrEmpty(destinationTableName)) + { + var mappingTableName = typeof(T).GetCustomAttribute()?.Name; + destinationTableName = string.IsNullOrEmpty(mappingTableName) ? typeof(T).Name : mappingTableName; + } + using (var dt = entities.ToDataTable()) + { + using (var conn = new SqlConnection(_option.ConnectionString)) + { + conn.Open(); + using (var tran = conn.BeginTransaction()) + { + try + { + using (var bulk = new SqlBulkCopy(conn, SqlBulkCopyOptions.Default, tran)) + { + bulk.BatchSize = entities.Count; + bulk.DestinationTableName = destinationTableName; + bulk.EnableStreaming = true; + bulk.WriteToServerAsync(dt); + tran.Commit(); + } + } + catch (Exception) + { + tran.Rollback(); + throw; + } + } + conn.Close(); + } + } + } + } +} diff --git a/SYS.Common/DbContextOption.cs b/SYS.Common/DbContextOption.cs new file mode 100644 index 0000000000000000000000000000000000000000..7e4ffa7ffc3075d0d155c8269c2bc93d9ac6d523 --- /dev/null +++ b/SYS.Common/DbContextOption.cs @@ -0,0 +1,9 @@ +namespace SYS.Common +{ + public class DbContextOption + { + public string ConnectionString { get; set; } + + public string ModelAssemblyName { get; set; } + } +} \ No newline at end of file diff --git a/SYS.Common/Properties/AssemblyInfo.cs b/SYS.Common/Properties/AssemblyInfo.cs index 843bf099df9914d5164e6c1d5fe4c00233b720c1..1654fc7a5947357e0b49fbb9d67cd56f56c866a7 100644 --- a/SYS.Common/Properties/AssemblyInfo.cs +++ b/SYS.Common/Properties/AssemblyInfo.cs @@ -8,9 +8,9 @@ using System.Runtime.InteropServices; [assembly: AssemblyTitle("SYS.Common")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("java-and-net")] [assembly: AssemblyProduct("SYS.Common")] -[assembly: AssemblyCopyright("Copyright © 2020")] +[assembly: AssemblyCopyright("Copyright © 2020 java-and-net")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/SYS.Common/Repository/Repository.cs b/SYS.Common/Repository/Repository.cs new file mode 100644 index 0000000000000000000000000000000000000000..744809c66ca32a3a9cca210c006c2d5ac3f212d9 --- /dev/null +++ b/SYS.Common/Repository/Repository.cs @@ -0,0 +1,32 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Common +{ + public class Repository : SimpleClient where T : class, new() + { + public Repository(ISqlSugarClient context = null) : base(context)//注意这里要有默认值等于null + { + if (context == null) + { + base.Context = new SqlSugarClient(new ConnectionConfig() + { + DbType = SqlSugar.DbType.MySql, + InitKeyType = InitKeyType.Attribute, + IsAutoCloseConnection = true, + ConnectionString = "" + }) ; + + base.Context.Aop.OnLogExecuting = (s, p) => + { + Console.WriteLine(s); + }; + } + } + + } +} diff --git a/SYS.Common/SYS.Common.csproj b/SYS.Common/SYS.Common.csproj index 6331d08f59634d814bd80670b96571f7aba47e01..b5542c6ef8a0b0037494722362abba766721c75e 100644 --- a/SYS.Common/SYS.Common.csproj +++ b/SYS.Common/SYS.Common.csproj @@ -1,5 +1,6 @@  + Debug @@ -33,7 +34,19 @@ prompt 4 + + bitbug_favicon %281%29.ico + + + ..\packages\EntityFramework.6.3.0\lib\net45\EntityFramework.dll + + + ..\packages\EntityFramework.6.3.0\lib\net45\EntityFramework.SqlServer.dll + + + ..\packages\SqlSugar.5.0.2\lib\SqlSugar.dll + @@ -47,11 +60,25 @@ + + + + + + + - + + + 这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。 + + + + + \ No newline at end of file diff --git a/SYS.Common/StatusCode/StatusCode.cs b/SYS.Common/StatusCode/StatusCode.cs new file mode 100644 index 0000000000000000000000000000000000000000..988de103ed712de26ab9d7e8c51d54d077bb9f21 --- /dev/null +++ b/SYS.Common/StatusCode/StatusCode.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Common +{ + public enum StatusCode + { + SQLE_202_操作异常 = 202, + SQLE_200_操作成功 = 200, + SQLE_400_系统异常_请联系系统管理员 = 400 + } +} diff --git a/SYS.Common/bitbug_favicon (1).ico b/SYS.Common/bitbug_favicon (1).ico new file mode 100644 index 0000000000000000000000000000000000000000..deaead31de45df54f39388e2b4727a00a4f99eca Binary files /dev/null and b/SYS.Common/bitbug_favicon (1).ico differ diff --git a/SYS.Common/packages.config b/SYS.Common/packages.config new file mode 100644 index 0000000000000000000000000000000000000000..5249f52fdd4c3d84ad5abfdf3f9aa7bc3fbe2d38 --- /dev/null +++ b/SYS.Common/packages.config @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/SYS.Core/App.config b/SYS.Core/App.config new file mode 100644 index 0000000000000000000000000000000000000000..32b5ec03dae9375c15662ff771aea5f5d0a728ca --- /dev/null +++ b/SYS.Core/App.config @@ -0,0 +1,25 @@ + + + + +
    + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SYS.Core/Business/Cash.cs b/SYS.Core/Business/Cash.cs index 70664e5e0d491fbc0ae48d4efb6a0cc2b8cb9d07..4b21922ccf158c0b5848cfb7d3f52d8804192c7d 100644 --- a/SYS.Core/Business/Cash.cs +++ b/SYS.Core/Business/Cash.cs @@ -1,14 +1,70 @@ using System; namespace SYS.Core { + /// + /// 资产管理 + /// + [SqlSugar.SugarTable("cashinfo")] public class Cash { + /// + /// 资产编号 + /// public string CashNo { get; set; } + /// + /// 资产名称 + /// public string CashName { get; set; } - public string CashPrice { get; set; } + /// + /// 资产总值 + /// + public decimal CashPrice { get; set; } + /// + /// 所属部门 + /// public string CashClub { get; set; } + /// + /// 所属部门描述 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string DeptName { get; set; } + /// + /// 入库时间 + /// public DateTime CashTime { get; set; } + /// + /// 资产来源 + /// public string CashSource { get; set; } + /// + /// 资产经办人 + /// public string CashPerson { get; set; } + /// + /// 资产经办人 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string PersonName { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime? datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime? datachg_date { get; set; } + } } diff --git a/SYS.Core/Util/Fonts.cs b/SYS.Core/Business/Fonts.cs similarity index 40% rename from SYS.Core/Util/Fonts.cs rename to SYS.Core/Business/Fonts.cs index 7bce39812aaa45d6cf2fca464947b94499d11d3e..97394884dd44d4acd47eed5f78e493b4329d699b 100644 --- a/SYS.Core/Util/Fonts.cs +++ b/SYS.Core/Business/Fonts.cs @@ -1,8 +1,18 @@ namespace SYS.Core { + /// + /// 酒店宣传联动内容 + /// public class Fonts { + /// + /// 宣传内容编号 + /// public int FontsId { get; set; } + + /// + /// 宣传内容 + /// public string FontsMess { get; set; } } } diff --git a/SYS.Core/Business/Reser.cs b/SYS.Core/Business/Reser.cs index 6f05b08617014f912e4f40f4d8eea43c449292e7..bee468a8c9bb97b3a6bbdac9abfd1b7c3bb42107 100644 --- a/SYS.Core/Business/Reser.cs +++ b/SYS.Core/Business/Reser.cs @@ -2,16 +2,59 @@ namespace SYS.Core { + /// + /// 预约列表 + /// public class Reser { + /// + /// 预约编号 + /// public string ReserId { get; set; } + /// + /// 客户名称 + /// public string CustoName { get; set; } + /// + /// 预约电话 + /// public string CustoTel { get; set; } + /// + /// 预约渠道 + /// public string ReserWay { get; set; } + /// + /// 预约房号 + /// public string ReserRoom { get; set; } + /// + /// 预约起始 + /// public DateTime ReserDate { get; set; } + /// + /// 预约止日 + /// public DateTime ReserEndDay { get; set; } - public string ReserRemark { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/Business/SellThing.cs b/SYS.Core/Business/SellThing.cs index 5a4245262b7e374193f815162926661746609dad..324f057314fc3d9de4db6615470b8a6b3ba6c86c 100644 --- a/SYS.Core/Business/SellThing.cs +++ b/SYS.Core/Business/SellThing.cs @@ -1,11 +1,51 @@ -namespace SYS.Core +using System; + +namespace SYS.Core { + /// + /// 商品信息 + /// public class SellThing { + /// + /// 商品编号 + /// public string SellNo { get; set; } + /// + /// 商品名称 + /// public string SellName { get; set; } + /// + /// 商品价格 + /// public decimal SellPrice { get; set; } + /// + /// 规格型号 + /// public string format { get; set; } + /// + /// 库存 + /// public int Stock { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/Business/Spend.cs b/SYS.Core/Business/Spend.cs index c0d0a4dd4e4a898c731ab524f7f2b0d851b591f9..c13a1c52f4e067207a015000558f0082688d9c7c 100644 --- a/SYS.Core/Business/Spend.cs +++ b/SYS.Core/Business/Spend.cs @@ -2,15 +2,63 @@ namespace SYS.Core { + /// + /// 消费信息 + /// + [SqlSugar.SugarTable("custospend")] public class Spend { + /// + /// 房间编号 + /// public string RoomNo { get; set; } + /// + /// 客户编号 + /// public string CustoNo { get; set; } + /// + /// 商品名称 + /// public string SpendName { get; set; } + /// + /// 消费数量 + /// public int SpendAmount { get; set; } + /// + /// 商品单价 + /// public decimal SpendPrice { get; set; } + /// + /// 消费金额 + /// public decimal SpendMoney { get; set; } + /// + /// 消费时间 + /// public DateTime SpendTime { get; set; } + /// + /// 结算状态 + /// public string MoneyState { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/Business/Wti.cs b/SYS.Core/Business/Wti.cs index aaad4a0b480bae492a2bad403a31152079506913..83ba302629e1d932e95a2d38371cbcb54e2e8162 100644 --- a/SYS.Core/Business/Wti.cs +++ b/SYS.Core/Business/Wti.cs @@ -2,8 +2,16 @@ namespace SYS.Core { + /// + /// 水电信息 + /// + [SqlSugar.SugarTable("wtinfo")] public class Wti { + /// + /// 信息编号 + /// + public string WtiNo { get; set; } /// /// 房间编号 /// @@ -32,6 +40,26 @@ namespace SYS.Core /// 客户编号 ///
    public string CustoNo { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } diff --git a/SYS.Core/Customer/Custo.cs b/SYS.Core/Customer/Custo.cs index 66cb785f4621908fbf195845f0110af77f4ba840..a83ca1fd07fe793c0d38357f85091ff615a41d79 100644 --- a/SYS.Core/Customer/Custo.cs +++ b/SYS.Core/Customer/Custo.cs @@ -2,20 +2,83 @@ namespace SYS.Core { + /// + /// 客户信息 + /// + [SqlSugar.SugarTable("userinfo")] public class Custo { + /// + /// 客户编号 + /// public string CustoNo { get; set; } + /// + /// 客户名称 + /// public string CustoName { get; set; } + /// + /// 客户性别 + /// public int CustoSex { get; set; } + /// + /// 客户电话 + /// public string CustoTel { get; set; } + /// + /// 证件类型 + /// public int PassportType { get; set; } + /// + /// 证件号码 + /// public string CustoID { get; set; } + /// + /// 居住地址 + /// public string CustoAdress { get; set; } + /// + /// 出生日期 + /// public DateTime CustoBirth { get; set; } + /// + /// 客户类型 + /// public int CustoType { get; set; } + /// + /// 客户类型 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] public string typeName { get; set; } + /// + /// 证件类型 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] public string PassportName { get; set; } + /// + /// 性别 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] public string SexName { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/Customer/CustoSpend.cs b/SYS.Core/Customer/CustoSpend.cs index 37a5e242308e01f5313f35e6c50e04727b045c6d..cf09ffd476223bff2c25fc5c12d422ba9fe029ec 100644 --- a/SYS.Core/Customer/CustoSpend.cs +++ b/SYS.Core/Customer/CustoSpend.cs @@ -1,8 +1,17 @@ namespace SYS.Core { + /// + /// 酒店盈利情况 + /// public class CustoSpend { + /// + /// 年 + /// public string Years { get; set; } + /// + /// 总金额 + /// public decimal Money { get; set; } } diff --git a/SYS.Core/Customer/CustoType.cs b/SYS.Core/Customer/CustoType.cs index d7882d1835763229d3f53c2c3140da9cd9d9f75c..9deac50fed2e61d2bd78ec4833f12e46f8bce138 100644 --- a/SYS.Core/Customer/CustoType.cs +++ b/SYS.Core/Customer/CustoType.cs @@ -1,8 +1,40 @@ -namespace SYS.Core +using System; + +namespace SYS.Core { + /// + /// 客户类型 + /// + [SqlSugar.SugarTable("usertype")] public class CustoType { + /// + /// 客户类型 + /// public int UserType { get; set; } + /// + /// 类型名字 + /// public string TypeName { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/Customer/PassPortType.cs b/SYS.Core/Customer/PassPortType.cs index 17c5e7e7701cbeba8337bf3c63e34c1b71e9dd00..3a731af79990814e195fd42420a79ecfc9201867 100644 --- a/SYS.Core/Customer/PassPortType.cs +++ b/SYS.Core/Customer/PassPortType.cs @@ -6,6 +6,9 @@ using System.Threading.Tasks; namespace SYS.Core { + /// + /// 证件类型 + /// public class PassPortType { /// @@ -17,5 +20,25 @@ namespace SYS.Core /// 证件名称 /// public string PassportName { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/Customer/SexType.cs b/SYS.Core/Customer/SexType.cs index e5983b4e4b719d1443d18c82b10bb0e8896c60ea..95572093cbe61a2b7befa1a537afe427ff27a53c 100644 --- a/SYS.Core/Customer/SexType.cs +++ b/SYS.Core/Customer/SexType.cs @@ -6,6 +6,9 @@ using System.Threading.Tasks; namespace SYS.Core { + /// + /// 性别 + /// public class SexType { /// @@ -17,5 +20,26 @@ namespace SYS.Core /// 性别名称 /// public string sexName { get; set; } + + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/IRepository.cs b/SYS.Core/IRepository.cs new file mode 100644 index 0000000000000000000000000000000000000000..b7fbd285d3e47c48634b5def2e1140e3482b7a31 --- /dev/null +++ b/SYS.Core/IRepository.cs @@ -0,0 +1,53 @@ +using System; +using System.Collections.Generic; +using System.Data.Common; +using System.Linq; +using System.Linq.Expressions; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Common +{ + public interface IRepository where T : class + { + int ExecuteSql(string sql, params DbParameter[] pars); + + List ExecuteQuery(string sql, params DbParameter[] pars); + + int Add(T entity, bool isLog = true); + + int Add(IEnumerable entities, bool isLog = true); + + int Delete(T entity, bool isLog = true); + + int Delete(IEnumerable entities, bool isLog = true); + + int Delete(Expression> where, bool isLog = true); + + int Update(T entity, bool isLog = true); + + int Update(T entity, List>> ignoreProperties, bool isLog = true); + + int Update(T entity, Expression> where, List proNames, bool isLog = true); + + int Update(T entity, Expression> where, List>> proNames, bool isLog = true); + + int Update(Expression> where, Action action, bool isLog = true); + + T GetOne(Expression> where); + + List GetList(Expression> where = null); + + int GetCount(Expression> where = null); + + //List GetList(Expression> where, OrderBy orderBy); + + //List GetPageList(Expression> where, OrderBy orderBy, int pageIndex = 0, int pageSize = 0); + + //List GetPageList(ref int rowCount, Expression> where, OrderBy orderBy, int pageIndex = 0, int pageSize = 0); + + //List GetPageList(Expression> where, OrderBy orderBy, T2 pageDto) where T2 : IBaseDto; + + //List GetPageList(ref int rowCount, Expression> where, OrderBy orderBy, T2 pageDto) where T2 : IBaseDto; + } +} diff --git a/SYS.Core/Properties/AssemblyInfo.cs b/SYS.Core/Properties/AssemblyInfo.cs index a811fbbef748a402a5c8eff9283a9b42efd92dd4..0fa55118378b1c6ba954b82f42529e953001ab91 100644 --- a/SYS.Core/Properties/AssemblyInfo.cs +++ b/SYS.Core/Properties/AssemblyInfo.cs @@ -8,9 +8,9 @@ using System.Runtime.InteropServices; [assembly: AssemblyTitle("SYS.Core")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("java-and-net")] [assembly: AssemblyProduct("SYS.Core")] -[assembly: AssemblyCopyright("Copyright © 2020")] +[assembly: AssemblyCopyright("Copyright © 2020 java-and-net")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值 //通过使用 "*",如下所示: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.4.0.0")] +[assembly: AssemblyFileVersion("1.4.0.0")] diff --git a/SYS.Core/Repository.cs b/SYS.Core/Repository.cs new file mode 100644 index 0000000000000000000000000000000000000000..4e3c66acd80ea984b741a7662261a09eff349421 --- /dev/null +++ b/SYS.Core/Repository.cs @@ -0,0 +1,121 @@ +using MySql.Data.MySqlClient; +using NPOI.SS.Formula.Functions; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.Common; +using System.Linq; +using System.Linq.Expressions; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Common +{ + public class Repository:IRepository + { + private static string conStr = "Server=134.175.239.108;Database=tshoteldb;Uid=root;Pwd=yjj0720.;"; + + private static MySqlConnection con = null; + + public static MySqlConnection GetConnection() + { + if (con == null || con.ConnectionString == "") + { + con = new MySqlConnection(conStr); + } + return con; + } + + public static void Opencon() + { + if (con.State == ConnectionState.Closed) + { + con.Open(); + } + } + + public static void Closecon() + { + if (con.State == ConnectionState.Open) + { + con.Close(); + } + } + + public int ExecuteSql(string sql, params DbParameter[] pars) + { + return 0; + } + + public List ExecuteQuery(string sql, params DbParameter[] pars) + { + return List; + } + + public int Add(T entity, bool isLog = true) + { + return 0; + } + + public int Add(IEnumerable entities, bool isLog = true) + { + return 0; + + } + + public int Delete(T entity, bool isLog = true) + { + return 0; + } + + public int Delete(IEnumerable entities, bool isLog = true) + { + return 0; + } + + public int Delete(Expression> where, bool isLog = true) + { + return 0; + } + + public int Update(T entity, bool isLog = true) + { + return 0; + } + + public int Update(T entity, List>> ignoreProperties, bool isLog = true) + { + return 0; + } + + public int Update(T entity, Expression> where, List proNames, bool isLog = true) + { + return 0; + } + + public int Update(T entity, Expression> where, List>> proNames, bool isLog = true) + { + return 0; + } + + public int Update(Expression> where, Action action, bool isLog = true) + { + return 0; + } + + public T GetOne(Expression> where) + { + return 0; + } + + public List GetList(Expression> where = null) + { + + } + + int GetCount(Expression> where = null) + { + + } + } +} diff --git a/SYS.Core/Resource.Designer.cs b/SYS.Core/Resource.Designer.cs deleted file mode 100644 index c49caa4dac8f17016e25030ac3bfc22b658256f6..0000000000000000000000000000000000000000 --- a/SYS.Core/Resource.Designer.cs +++ /dev/null @@ -1,73 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -namespace SYS.Core { - using System; - - - /// - /// 一个强类型的资源类,用于查找本地化的字符串等。 - /// - // 此类是由 StronglyTypedResourceBuilder - // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 - // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen - // (以 /str 作为命令选项),或重新生成 VS 项目。 - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - public class Resource { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resource() { - } - - /// - /// 返回此类使用的缓存的 ResourceManager 实例。 - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - public static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SYS.Core.Resource", typeof(Resource).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// 重写当前线程的 CurrentUICulture 属性,对 - /// 使用此强类型资源类的所有资源查找执行重写。 - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - public static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - /// - /// 查找 System.Byte[] 类型的本地化资源。 - /// - public static byte[] GFont { - get { - object obj = ResourceManager.GetObject("GFont", resourceCulture); - return ((byte[])(obj)); - } - } - } -} diff --git a/SYS.Core/Room/CheckInfo.cs b/SYS.Core/Room/CheckInfo.cs index 2a18af4d545f18fd68d47601f2726efd8c5c7794..5f41af041c9a26cd5c84fec0f2e9c71c79712607 100644 --- a/SYS.Core/Room/CheckInfo.cs +++ b/SYS.Core/Room/CheckInfo.cs @@ -1,13 +1,60 @@ -namespace SYS.Core +using System; + +namespace SYS.Core { + /// + /// 监管统计 + /// public class CheckInfo { + /// + /// 监管统计编号 + /// public string CheckNo { get; set; } + /// + /// 监管部门 + /// public string CheckClub { get; set; } + /// + /// 监管进度 + /// public string CheckProgres { get; set; } + /// + /// + /// public string CheckCash { get; set; } + /// + /// + /// public int CheckScore { get; set; } + /// + /// + /// public string CheckPerson { get; set; } + /// + /// + /// public string CheckAdvice { get; set; } + + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/Room/Room.cs b/SYS.Core/Room/Room.cs index 473e3fea228706da1326bc82a965ca1e985e2916..45a5fee4f3cbf59c0954b5c95a18e8fbcd1ddaab 100644 --- a/SYS.Core/Room/Room.cs +++ b/SYS.Core/Room/Room.cs @@ -2,19 +2,78 @@ namespace SYS.Core { + /// + /// 房间实体类 + /// public class Room { + /// + /// 房间编号 + /// public string RoomNo { get; set; } + /// + /// 房间类型 + /// public int RoomType { get; set; } + /// + /// 客户编号 + /// public string CustoNo { get; set; } - public DateTime CheckTime { get; set; } - public DateTime CheckOutTime { get; set; } + /// + /// 最后一次入住时间 + /// + public DateTime? CheckTime { get; set; } + /// + /// 最后一次退房时间 + /// + public DateTime? CheckOutTime { get; set; } + /// + /// 房间状态ID + /// public int RoomStateId { get; set; } + /// + /// 房间状态 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] public string RoomState { get; set; } + /// + /// 房间单价 + /// public decimal RoomMoney { get; set; } - public string PersonNum { get; set; } + /// + /// 房间位置 + /// public string RoomPosition { get; set; } + /// + /// 客户类型名称 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] public string typeName { get; set; } + /// + /// 房间名称 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string RoomName { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/Room/RoomState.cs b/SYS.Core/Room/RoomState.cs new file mode 100644 index 0000000000000000000000000000000000000000..f6db47461940f2527a5ba480ef19218b92c81550 --- /dev/null +++ b/SYS.Core/Room/RoomState.cs @@ -0,0 +1,40 @@ +using System; + +namespace SYS.Core +{ + /// + /// 房间状态 + /// + public class RoomState + { + /// + /// 房间状态编号 + /// + public int RoomStateId { get; set; } + /// + /// 房间状态 + /// + [SqlSugar.SugarColumn(ColumnName = "RoomState")] + public string RoomStateName { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } + } +} diff --git a/SYS.Core/Room/RoomStatic.cs b/SYS.Core/Room/RoomStatic.cs deleted file mode 100644 index b4e39be4a5420f72f07cbce33466ebe0c9119ad8..0000000000000000000000000000000000000000 --- a/SYS.Core/Room/RoomStatic.cs +++ /dev/null @@ -1,14 +0,0 @@ -namespace SYS.Core -{ - public static class RoomStatic - { - /// - /// 房间编号 - /// - public static string RoomNo { get; set; } - /// - /// 房间状态编号 - /// - public static int RoomStateId { get; set; } - } -} diff --git a/SYS.Core/Room/RoomType.cs b/SYS.Core/Room/RoomType.cs index c5743e39c46e299eadc41513daeb5594111a5497..fac494f936aa19c778acae8eb6fe0b006122f152 100644 --- a/SYS.Core/Room/RoomType.cs +++ b/SYS.Core/Room/RoomType.cs @@ -1,8 +1,40 @@ -namespace SYS.Core +using System; + +namespace SYS.Core { + /// + /// 房间类型 + /// public class RoomType { + /// + /// 类型编号 + /// public int Roomtype { get; set; } + /// + /// 房间类型 + /// public string RoomName { get; set; } + + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/SYS.Core.csproj b/SYS.Core/SYS.Core.csproj index 41d7c5994da3da577a0f2067742b2f0fb0bc8b3c..50e8b0e8978376c01a969dd6b58a4d2c99f3f806 100644 --- a/SYS.Core/SYS.Core.csproj +++ b/SYS.Core/SYS.Core.csproj @@ -34,8 +34,19 @@ 4 true + + + + + + bitbug_favicon %281%29.ico + + + False + ..\packages\SqlSugar.5.0.2\lib\SqlSugar.dll + @@ -50,15 +61,14 @@ - - True - True - Resource.resx + + + + Always - - + @@ -66,15 +76,17 @@ - + + + + - - + @@ -83,26 +95,23 @@ + + + - - PublicResXFileCodeGenerator - Resource.Designer.cs - Always - - - - - Always - + + {65501af6-c629-448a-847e-1bcd60665865} + SYS.Common + \ No newline at end of file diff --git a/SYS.Core/Util/ApplicationVersionUtil.cs b/SYS.Core/Util/ApplicationVersionUtil.cs new file mode 100644 index 0000000000000000000000000000000000000000..5fb2f0fec449ca5f52093d8cf0bac5fa86eaf98f --- /dev/null +++ b/SYS.Core/Util/ApplicationVersionUtil.cs @@ -0,0 +1,39 @@ +using SYS.Common; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Core +{ + /// + /// 程序版本号检测 + /// + public class ApplicationVersionUtil:Repository + { + /// + /// 检测版本号 + /// + /// + public applicationversion CheckBaseVersion() + { + applicationversion applicationVerison = new applicationversion(); + applicationVerison = base.GetSingle(a => a.base_versionId == 1); + return applicationVerison; + } + } + + public class applicationversion + { + /// + /// 流水号 + /// + public int base_versionId { get; set; } + + /// + /// 版本号 + /// + public string base_version { get; set; } + } +} diff --git a/SYS.Core/Util/CounterHelper.cs b/SYS.Core/Util/CounterHelper.cs new file mode 100644 index 0000000000000000000000000000000000000000..9fe42c98286e1a147a3c58d8b44a63a7d2a030a8 --- /dev/null +++ b/SYS.Core/Util/CounterHelper.cs @@ -0,0 +1,122 @@ +using MySql.Data.MySqlClient; +using SYS.Common; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Core +{ + /// + /// 流水号规则 + /// + public class CounterHelper:Repository + { + /// + /// 获取生成编号 + /// + /// + /// + public string GetNewId(string str) + { + var count = 0; + var Str = string.Empty; + counterrule counterrule = new counterrule(); + counterrule = base.GetSingle(a => a.rule_name == str); + Str = counterrule.prefix_name + counterrule.separating_char + DateTime.Now.ToString(counterrule.custo_format) + + counterrule.number_format + counterrule.now_id; + count++; + var exe2 = base.Update(a => new counterrule() + { + now_id = counterrule.now_id + count + },a => a.rule_name == str); + return Str; + } + } + + /// + /// + /// + public class counterrule + { + /// + /// + /// + public counterrule() + { + } + + private System.Int32 _rule_id; + /// + /// 规则编号 + /// + public System.Int32 rule_id { get { return this._rule_id; } set { this._rule_id = value; } } + + private System.String _rule_name; + /// + /// 规格名称 + /// + public System.String rule_name { get { return this._rule_name; } set { this._rule_name = value; } } + + private System.String _rule_desc; + /// + /// 规则描述 + /// + public System.String rule_desc { get { return this._rule_desc; } set { this._rule_desc = value; } } + + private System.Int32? _now_id; + /// + /// 当前ID + /// + public System.Int32? now_id { get { return this._now_id; } set { this._now_id = value; } } + + private System.String _prefix_name; + /// + /// 规则简写 + /// + public System.String prefix_name { get { return this._prefix_name; } set { this._prefix_name = value; } } + + private System.String _custo_format; + /// + /// 规则格式 + /// + public System.String custo_format { get { return this._custo_format; } set { this._custo_format = value; } } + + private System.String _number_format; + /// + /// 编号前缀 + /// + public System.String number_format { get { return this._number_format; } set { this._number_format = value; } } + + private System.String _separating_char; + /// + /// 规则分割符 + /// + public System.String separating_char { get { return this._separating_char; } set { this._separating_char = value; } } + + private System.String _datains_usrid; + /// + /// 资料新增人 + /// + public System.String datains_usrid { get { return this._datains_usrid; } set { this._datains_usrid = value; } } + + private System.DateTime? _datains_time; + /// + /// 资料新增时间 + /// + public System.DateTime? datains_time { get { return this._datains_time; } set { this._datains_time = value; } } + + private System.String _datachg_usrid; + /// + /// 资料更新人 + /// + public System.String datachg_usrid { get { return this._datachg_usrid; } set { this._datachg_usrid = value; } } + + private System.DateTime? _datachg_time; + /// + /// 资料更新时间 + /// + public System.DateTime? datachg_time { get { return this._datachg_time; } set { this._datachg_time = value; } } + } +} diff --git a/SYS.Core/Util/DBHelper.cs b/SYS.Core/Util/DBHelper.cs index 468cc18a6e7a462551e02a8ed9ca5e7e515ffd81..2e4875ddd3fe20d088d3444f5a0699482d086830 100644 --- a/SYS.Core/Util/DBHelper.cs +++ b/SYS.Core/Util/DBHelper.cs @@ -10,7 +10,9 @@ namespace SYS.Core { public class DBHelper { - private static string conStr = ConfigurationManager.AppSettings["MySqlStr"]; + //private static string conStr = ConfigurationManager.AppSettings["MySqlStr"]; + private static string conStr = ""; + private static MySqlConnection con = null; public static MySqlConnection GetConnection() diff --git a/SYS.Core/Util/IDCardUtil.cs b/SYS.Core/Util/IDCardUtil.cs new file mode 100644 index 0000000000000000000000000000000000000000..a149f70462d96fd26e6f00c3d4351e3a760c642f --- /dev/null +++ b/SYS.Core/Util/IDCardUtil.cs @@ -0,0 +1,77 @@ +using MySql.Data.MySqlClient; +using SYS.Common; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Core.Util +{ + /// + /// 身份证号码工具类 + /// + public class IDCardUtil:Repository + { + /// + /// 查询地区码 + /// + /// + /// + public string SelectCardCode(string identityCard) + { + var cardid = identityCard.Substring(0, 6).ToString(); + cardcodes cardcodes = new cardcodes(); + var pcd = string.Empty; + cardcodes = base.GetSingle(a => a.bm == cardid); + pcd = cardcodes == null ? "" : string.Join(",", cardcodes.Province + cardcodes.City + cardcodes.District); + return pcd; + } + + } + + /// + /// + /// + public class cardcodes + { + /// + /// + /// + public cardcodes() + { + } + + private System.Int64 _id; + /// + /// 编号 + /// + public System.Int64 id { get { return this._id; } set { this._id = value; } } + + private System.String _Province; + /// + /// 省份 + /// + public System.String Province { get { return this._Province; } set { this._Province = value; } } + + private System.String _City; + /// + /// 城市 + /// + public System.String City { get { return this._City; } set { this._City = value; } } + + private System.String _District; + /// + /// 地区 + /// + public System.String District { get { return this._District; } set { this._District = value; } } + + private System.String _bm; + /// + /// 地区识别码 + /// + public System.String bm { get { return this._bm; } set { this._bm = value; } } + + } + +} diff --git a/SYS.Core/Util/Md5LockedUtil.cs b/SYS.Core/Util/Md5LockedUtil.cs index b27f6f26f38546cc6e02b49b59e5cb5901036820..1d9e57e81fd716178716ef5463fcba6dc6fe8292 100644 --- a/SYS.Core/Util/Md5LockedUtil.cs +++ b/SYS.Core/Util/Md5LockedUtil.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.IO; using System.Linq; using System.Security.Cryptography; using System.Text; @@ -31,5 +32,24 @@ namespace SYS.Core return pwd; } + + /// + /// 对字符串进行32位MD5解密 + /// + /// + /// + public static string MD5DeEncrypt32(string str) + { + String encryptKey = "Oyea"; + DESCryptoServiceProvider descsp = new DESCryptoServiceProvider(); + byte[] key = Encoding.Unicode.GetBytes(encryptKey); + byte[] data = Convert.FromBase64String(str); + System.IO.MemoryStream MStream = new System.IO.MemoryStream(); + CryptoStream CStream = new CryptoStream(MStream, descsp.CreateDecryptor(key, key), CryptoStreamMode.Write); + CStream.Write(data, 0, data.Length); + CStream.FlushFinalBlock(); + return Encoding.Unicode.GetString(MStream.ToArray()); + + } } } diff --git a/SYS.Core/Util/UI-FontUtil.cs b/SYS.Core/Util/UI-FontUtil.cs deleted file mode 100644 index dcc9ca83e071a59b8328ea5453cc68d9e9ff61d3..0000000000000000000000000000000000000000 --- a/SYS.Core/Util/UI-FontUtil.cs +++ /dev/null @@ -1,108 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Drawing; -using System.Drawing.Text; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Resources; -using System.Runtime.Serialization; -using System.Runtime.Serialization.Formatters.Binary; -using System.Text; -using System.Threading.Tasks; - -namespace SYS.Core -{ - public class UI_FontUtil - { - public static Font SetMainFont() - { - PrivateFontCollection pfc = new PrivateFontCollection(); - ResourceManager rm = new ResourceManager("SYS.Core.Resource", Assembly.GetExecutingAssembly()); - Assembly assembly = Assembly.GetExecutingAssembly(); - Stream stream = assembly.GetManifestResourceStream("SYS.Core.Resources.GFont.otf"); - byte[] fontData = new byte[stream.Length]; - stream.Read(fontData, 0, (int)stream.Length); - stream.Close(); - - unsafe - { - fixed (byte* pFontData = fontData) - { - pfc.AddMemoryFont((System.IntPtr)pFontData, fontData.Length); - } - } - FontFamily family = new FontFamily(pfc.Families[0].Name); - Font myFont = new Font(family, 12); - return myFont; - } - - public static Font SetControlFont() - { - PrivateFontCollection pfc = new PrivateFontCollection(); - ResourceManager rm = new ResourceManager("SYS.Core.Resource", Assembly.GetExecutingAssembly()); - Assembly assembly = Assembly.GetExecutingAssembly(); - Stream stream = assembly.GetManifestResourceStream("SYS.Core.Resources.GFont.otf"); - byte[] fontData = new byte[stream.Length]; - stream.Read(fontData, 0, (int)stream.Length); - stream.Close(); - - unsafe - { - fixed (byte* pFontData = fontData) - { - pfc.AddMemoryFont((System.IntPtr)pFontData, fontData.Length); - } - } - FontFamily family = new FontFamily(pfc.Families[0].Name); - Font myFont = new Font(family, 14); - return myFont; - } - - public static Font SetChildControlsFont() - { - PrivateFontCollection pfc = new PrivateFontCollection(); - ResourceManager rm = new ResourceManager("SYS.Core.Resource", Assembly.GetExecutingAssembly()); - Assembly assembly = Assembly.GetExecutingAssembly(); - Stream stream = assembly.GetManifestResourceStream("SYS.Core.Resources.GFont.otf"); - byte[] fontData = new byte[stream.Length]; - stream.Read(fontData, 0, (int)stream.Length); - stream.Close(); - - unsafe - { - fixed (byte* pFontData = fontData) - { - pfc.AddMemoryFont((System.IntPtr)pFontData, fontData.Length); - } - } - FontFamily family = new FontFamily(pfc.Families[0].Name); - Font myFont = new Font(family, 12); - return myFont; - } - - public static Font SetRoomControlsFont() - { - PrivateFontCollection pfc = new PrivateFontCollection(); - ResourceManager rm = new ResourceManager("SYS.Core.Resource", Assembly.GetExecutingAssembly()); - Assembly assembly = Assembly.GetExecutingAssembly(); - Stream stream = assembly.GetManifestResourceStream("SYS.Core.Resources.GFont.otf"); - byte[] fontData = new byte[stream.Length]; - stream.Read(fontData, 0, (int)stream.Length); - stream.Close(); - - unsafe - { - fixed (byte* pFontData = fontData) - { - pfc.AddMemoryFont((System.IntPtr)pFontData, fontData.Length); - } - } - FontFamily family = new FontFamily(pfc.Families[0].Name); - Font myFont = new Font(family, 10); - return myFont; - } - - - } -} diff --git a/SYS.Core/Worker/GBType.cs b/SYS.Core/Worker/GBType.cs new file mode 100644 index 0000000000000000000000000000000000000000..2a42b8947ab2c99cac29a899482fa6ea582a5da1 --- /dev/null +++ b/SYS.Core/Worker/GBType.cs @@ -0,0 +1,45 @@ +using System; + +namespace SYS.Application +{ + /// + /// 奖惩类型实体类 + /// + public class GBType + { + /// + /// 奖惩编号 + /// + public int GBTypeId { get; set; } + + /// + /// 奖惩名称 + /// + public string GBName { get; set; } + + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + + /// + /// 资料新增人 + /// + public string datains_usr { get; set; } + + /// + /// 资料新增日期 + /// + public DateTime? datains_date { get; set; } + + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + + /// + /// 资料更新日期 + /// + public DateTime? datachg_date { get; set; } + } +} \ No newline at end of file diff --git a/SYS.Core/Worker/Worker.cs b/SYS.Core/Worker/Worker.cs index 57710fc6509ab22ec03f93c826cd5d6a570d55e1..19ce2a6a6fa67c98995689f4b2cd046d1d000d08 100644 --- a/SYS.Core/Worker/Worker.cs +++ b/SYS.Core/Worker/Worker.cs @@ -2,20 +2,127 @@ namespace SYS.Core { + /// + /// 员工信息 + /// + [SqlSugar.SugarTable("worker")] public class Worker { + /// + /// 员工账号/工号 + /// + [SqlSugar.SugarColumn(ColumnName = "WorkerId")] public string WorkerId { get; set; } + /// + /// 员工姓名 + /// + [SqlSugar.SugarColumn(ColumnName = "WorkerName")] public string WorkerName { get; set; } - public DateTime WorkerBirth { get; set; } - public string WorkerSex { get; set; } + /// + /// 出生日期 + /// + [SqlSugar.SugarColumn(ColumnName = "WorkerBirthday")] + public DateTime WorkerBirthday { get; set; } + /// + /// 员工性别 + /// + [SqlSugar.SugarColumn(ColumnName = "WorkerSex")] + public int WorkerSex { get; set; } + /// + /// 员工性别(名称描述) + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string WorkerSexName { get; set; } + /// + /// 民族类型 + /// + [SqlSugar.SugarColumn(ColumnName = "WorkerNation")] + public string WorkerNation { get; set; } + /// + /// 民族名称 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string NationName { get; set; } + /// + /// 员工电话 + /// + [SqlSugar.SugarColumn(ColumnName = "WorkerTel")] public string WorkerTel { get; set; } + /// + /// 所属部门 + /// + [SqlSugar.SugarColumn(ColumnName = "WorkerClub")] public string WorkerClub { get; set; } + /// + /// 部门名称 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string ClubName { get; set; } + /// + /// 居住地址 + /// + [SqlSugar.SugarColumn(ColumnName = "WorkerAddress")] public string WorkerAddress { get; set; } + /// + /// 员工职位 + /// + [SqlSugar.SugarColumn(ColumnName = "WorkerPosition")] public string WorkerPosition { get; set; } + /// + /// 职位名称 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string PositionName { get; set; } + /// + /// 证件号码 + /// public string CardId { get; set; } + /// + /// 员工密码 + /// + [SqlSugar.SugarColumn(DefaultValue = "123456")] public string WorkerPwd { get; set; } + /// + /// 员工入职时间 + /// public DateTime WorkerTime { get; set; } + /// + /// 员工面貌 + /// public string WorkerFace { get; set; } - public string WorkerEduction { get; set; } + /// + /// 群众面貌描述 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string FaceName { get; set; } + /// + /// 教育程度 + /// + public string WorkerEducation { get; set; } + /// + /// 教育程度名称 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string EducationName { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime? datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime? datachg_date { get; set; } } } diff --git a/SYS.Core/Worker/WorkerCheck.cs b/SYS.Core/Worker/WorkerCheck.cs index 75ca56117231b99276ece3e5b956ea419def3a9b..56728c5ac353daeda271a4600cca165ed24f65f4 100644 --- a/SYS.Core/Worker/WorkerCheck.cs +++ b/SYS.Core/Worker/WorkerCheck.cs @@ -2,12 +2,53 @@ namespace SYS.Core { + /// + /// 员工打卡考勤 + /// public class WorkerCheck { + /// + /// 工号 + /// public string WorkerNo { get; set; } + /// + /// 打卡时间 + /// public DateTime CheckTime { get; set; } + /// + /// 打卡方式 + /// public string CheckWay { get; set; } - public string CheckState { get; set; } + /// + /// 打卡状态 + /// + public int CheckState { get; set; } + + /// + /// 打卡状态 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string CheckStateNm { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/Worker/WorkerGoodBad.cs b/SYS.Core/Worker/WorkerGoodBad.cs index e42ed56cf6227b2a604c2a510c59986c970b3389..3aad6608784c0751d462f205af4307aca540df86 100644 --- a/SYS.Core/Worker/WorkerGoodBad.cs +++ b/SYS.Core/Worker/WorkerGoodBad.cs @@ -6,13 +6,60 @@ using System.Threading.Tasks; namespace SYS.Core { + /// + /// 员工奖罚 + /// public class WorkerGoodBad { + /// + /// 工号 + /// public string WorkNo { get; set; } + /// + /// 奖惩信息 + /// public string GBInfo { get; set; } + /// + /// 奖惩类型 + /// public int GBType { get; set; } + /// + /// 奖惩操作人 + /// public string GBOperation { get; set; } + /// + /// 奖惩操作人 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string OperationName { get; set; } + /// + /// 奖惩时间 + /// public DateTime GBTime { get; set; } + /// + /// 类型名称 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] public string TypeName { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/Worker/WorkerHistory.cs b/SYS.Core/Worker/WorkerHistory.cs index 82d929606e7514cd35ddc05cd97fac7bf2cc5545..e518c486c3d96044530e818444daf1102ff2bc12 100644 --- a/SYS.Core/Worker/WorkerHistory.cs +++ b/SYS.Core/Worker/WorkerHistory.cs @@ -2,12 +2,50 @@ namespace SYS.Core { + /// + /// 员工履历 + /// public class WorkerHistory { + /// + /// 工号 + /// public string WorkerId { get; set; } + /// + /// 开始时间 + /// public DateTime StartDate { get; set; } + /// + /// 结束时间 + /// public DateTime EndDate { get; set; } - public string Postion { get; set; } + /// + /// 职位 + /// + public string Position { get; set; } + /// + /// 公司 + /// public string Company { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/Zero/Admin.cs b/SYS.Core/Zero/Admin.cs index 360de27bdf1a14158c88ed64cb269327d0b48728..9aac840dc4dca86211f79b94637409454d1d974c 100644 --- a/SYS.Core/Zero/Admin.cs +++ b/SYS.Core/Zero/Admin.cs @@ -1,10 +1,77 @@ -namespace SYS.Core + +namespace SYS.Core { + /// + /// 管理员实体类 + /// + [SqlSugar.SugarTable("admininfo")] public class Admin { - public string AdminPassword { get; set; } - public string AdminType { get; set; } - public string AdminGroup { get; set; } + /// + /// 构造函数 + /// + public Admin() + { + } + private string _AdminAccount; + /// + /// 管理员账号 + /// + public string AdminAccount { get { return this._AdminAccount; } set { this._AdminAccount = value; } } + + private string _AdminPassword; + /// + /// 管理员密码 + /// + public string AdminPassword { get { return this._AdminPassword; } set { this._AdminPassword = value; } } + + private string _AdminType; + /// + /// 管理员类型 + /// + public string AdminType { get { return this._AdminType; } set { this._AdminType = value; } } + + private string _AdminName; + /// + /// 管理员名称 + /// + public string AdminName { get { return this._AdminName; } set { this._AdminName = value; } } + + private System.Int32 _IsAdmin; + /// + /// 是否为超级管理员 + /// + public System.Int32 IsAdmin { get { return this._IsAdmin; } set { this._IsAdmin = value; } } + + private System.Int32 _DeleteMk; + /// + /// 删除标记 + /// + public System.Int32 DeleteMk { get { return this._DeleteMk; } set { this._DeleteMk = value; } } + + private string _datains_usr; + /// + /// 资料新增人 + /// + public string datains_usr { get { return this._datains_usr; } set { this._datains_usr = value; } } + + private System.DateTime? _datains_time; + /// + /// 资料新增时间 + /// + public System.DateTime? datains_time { get { return this._datains_time; } set { this._datains_time = value; } } + + private string _datachg_usr; + /// + /// 资料更新人 + /// + public string datachg_usr { get { return this._datachg_usr; } set { this._datachg_usr = value; } } + + private System.DateTime? _datachg_time; + /// + /// 资料更新时间 + /// + public System.DateTime? datachg_time { get { return this._datachg_time; } set { this._datachg_time = value; } } } } diff --git a/SYS.Core/Zero/AdminInfo.cs b/SYS.Core/Zero/AdminInfo.cs index 20a5fec1376957ca49de2ebb78658f7d4ec9ae05..1237e4c40050859b961090d3c8ef42498dccd1f6 100644 --- a/SYS.Core/Zero/AdminInfo.cs +++ b/SYS.Core/Zero/AdminInfo.cs @@ -3,21 +3,24 @@ public class AdminInfo { /// - /// 存储当前超管姓名 + /// 存储当前超管账号 /// - public static string Password = ""; + public static string Account = ""; /// /// 存储当前超管类型 /// - public static string adminType = ""; + public static string Type = ""; /// /// 存储当前超管用户组 /// - public static string admingroup = ""; + public static string Group = ""; - public static string adminpwd = ""; + /// + /// 存储当前超管名称 + /// + public static string Name = ""; diff --git a/SYS.Core/Zero/Dept.cs b/SYS.Core/Zero/Dept.cs new file mode 100644 index 0000000000000000000000000000000000000000..c35c0abbce47ee6f284314fe966e211a9fb82ec7 --- /dev/null +++ b/SYS.Core/Zero/Dept.cs @@ -0,0 +1,70 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Core +{ + /// + /// 部门表 + /// + public class Dept + { + /// + /// 部门编号 + /// + public string dept_no { get; set; } + /// + /// 部门名称 + /// + public string dept_name { get; set; } + /// + /// 部门描述 + /// + public string dept_desc { get; set; } + /// + /// 创建时间(部门) + /// + public DateTime dept_date { get; set; } + /// + /// 部门主管 + /// + public string dept_leader { get; set; } + /// + /// 部门主管 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string leader_name { get; set; } + /// + /// 上级部门 + /// + public string dept_parent { get; set; } + /// + /// 上级部门 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string parent_name { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } + + } +} diff --git a/SYS.Core/Zero/Education.cs b/SYS.Core/Zero/Education.cs new file mode 100644 index 0000000000000000000000000000000000000000..4061f22f70f5e6fe72078bfb29f7fed509948e0a --- /dev/null +++ b/SYS.Core/Zero/Education.cs @@ -0,0 +1,44 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Core +{ + /// + /// 学历 + /// + public class Education + { + /// + /// 学历编号 + /// + public string education_no { get; set; } + /// + /// 学历名称 + /// + public string education_name { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } + + } +} diff --git a/SYS.Core/Zero/Nation.cs b/SYS.Core/Zero/Nation.cs new file mode 100644 index 0000000000000000000000000000000000000000..38a414fa7cfc085f8d5aeacb3a0f637bc62552d0 --- /dev/null +++ b/SYS.Core/Zero/Nation.cs @@ -0,0 +1,44 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Core +{ + /// + /// 民族 + /// + public class Nation + { + /// + /// 民族编号 + /// + public string nation_no { get; set; } + /// + /// 民族名称 + /// + public string nation_name { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime? datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime? datachg_date { get; set; } + + } +} diff --git a/SYS.Core/Zero/Notice.cs b/SYS.Core/Zero/Notice.cs index 51a34a8b594d490d46cf46e669c7f13c530228f4..644c48a831aa94908b1b6d122892cc052cb027b7 100644 --- a/SYS.Core/Zero/Notice.cs +++ b/SYS.Core/Zero/Notice.cs @@ -2,14 +2,61 @@ namespace SYS.Core { + /// + /// 任命公告 + /// + [SqlSugar.SugarTable("uploadinfo")] public class Notice { + /// + /// 公告编号 + /// public string NoticeNo { get; set; } + /// + /// 公告主题 + /// public string Noticetheme { get; set; } + /// + /// 公告类型 + /// + public string NoticeType { get; set; } + /// + /// 公告类型(描述) + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string NoticeTypeName { get; set; } + /// + /// 公告时间 + /// public DateTime NoticeTime { get; set; } + /// + /// 公告正文 + /// public string NoticeContent { get; set; } + /// + /// 发文部门 + /// public string NoticeClub { get; set; } - public string NoticePerson { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/Zero/Operation.cs b/SYS.Core/Zero/Operation.cs deleted file mode 100644 index a7531de692ff7e44c43b14abd10e87a0df99b6f8..0000000000000000000000000000000000000000 --- a/SYS.Core/Zero/Operation.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; - -namespace SYS.Core -{ - public class Operation - { - public DateTime OperationTime { get; set; } - public string Operationlog { get; set; } - public string OperationAccount { get; set; } - - } -} diff --git a/SYS.Core/Zero/OperationLog.cs b/SYS.Core/Zero/OperationLog.cs index a1a945c6f434a60ef4c0e932d76001b9632384bf..36032b1cd15e58add2989a4c6b2283d934d7594c 100644 --- a/SYS.Core/Zero/OperationLog.cs +++ b/SYS.Core/Zero/OperationLog.cs @@ -2,11 +2,43 @@ namespace SYS.Core { + /// + /// 操作日志 + /// public class OperationLog { + /// + /// 操作时间 + /// public DateTime OperationTime { get; set; } + /// + /// 操作信息 + /// public string Operationlog { get; set; } + /// + /// 操作账号 + /// public string OperationAccount { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } } } diff --git a/SYS.Core/Zero/position.cs b/SYS.Core/Zero/position.cs new file mode 100644 index 0000000000000000000000000000000000000000..48ec3bf301fa1eaf2ae406b366b42854e0a2d38d --- /dev/null +++ b/SYS.Core/Zero/position.cs @@ -0,0 +1,44 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.Core +{ + /// + /// 职位 + /// + public class Position + { + /// + /// 职位编号 + /// + public string position_no { get; set; } + /// + /// 职位名称 + /// + public string position_name { get; set; } + /// + /// 删除标记 + /// + public int delete_mk { get; set; } + /// + /// 资料创建人 + /// + public string datains_usr { get; set; } + /// + /// 资料创建时间 + /// + public DateTime datains_date { get; set; } + /// + /// 资料更新人 + /// + public string datachg_usr { get; set; } + /// + /// 资料更新时间 + /// + public DateTime datachg_date { get; set; } + + } +} diff --git a/SYS.Core/bitbug_favicon (1).ico b/SYS.Core/bitbug_favicon (1).ico new file mode 100644 index 0000000000000000000000000000000000000000..deaead31de45df54f39388e2b4727a00a4f99eca Binary files /dev/null and b/SYS.Core/bitbug_favicon (1).ico differ diff --git a/SYS.Core/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/SYS.Core/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index c05258582a1ed214ca026d40e46de25b35a65204..91d612e2fd69eb495050279696d532e6ea8298e9 100644 Binary files a/SYS.Core/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/SYS.Core/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/SYS.Core/obj/Debug/SYS.Core.csproj.FileListAbsolute.txt b/SYS.Core/obj/Debug/SYS.Core.csproj.FileListAbsolute.txt index a142ce95ca0897d2fb25889807ce5237d88873fe..22116b27ecded3097738084e65c0f6b74eca99da 100644 --- a/SYS.Core/obj/Debug/SYS.Core.csproj.FileListAbsolute.txt +++ b/SYS.Core/obj/Debug/SYS.Core.csproj.FileListAbsolute.txt @@ -28,16 +28,49 @@ D:\Gitee\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.csproj.CopyComplet D:\Gitee\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.dll D:\Gitee\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.pdb D:\Gitee\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.csprojAssemblyReference.cache +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\Util\IDCardUtil.cs +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SYS.Core.xml D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SYS.Core.dll D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SYS.Core.pdb +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SqlSugar.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SYS.Common.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\Google.Protobuf.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\Zstandard.Net.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\K4os.Compression.LZ4.Streams.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\Ubiety.Dns.Core.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\System.Memory.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\System.Buffers.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\K4os.Compression.LZ4.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\K4os.Hash.xxHash.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\System.Numerics.Vectors.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SYS.Common.pdb +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SYS.Common.dll.config +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.csprojAssemblyReference.cache D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.csproj.CoreCompileInputs.cache D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.csproj.CopyComplete D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.dll D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.pdb -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.csprojAssemblyReference.cache -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.Resource.resources -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.csproj.GenerateResource.cache -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\Resource.resx -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\Resource.Designer.cs -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SYS.Core.xml -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Core\bin\Debug\Resources\GFont.otf +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\Util\IDCardUtil.cs +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SYS.Core.xml +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SYS.Core.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SYS.Core.pdb +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SqlSugar.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SYS.Common.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\Google.Protobuf.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\Zstandard.Net.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\K4os.Compression.LZ4.Streams.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\Ubiety.Dns.Core.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\System.Memory.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\System.Buffers.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\K4os.Compression.LZ4.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\K4os.Hash.xxHash.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\System.Numerics.Vectors.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SYS.Common.pdb +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\bin\Debug\SYS.Common.dll.config +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.csprojAssemblyReference.cache +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.csproj.CoreCompileInputs.cache +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.csproj.CopyComplete +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Core\obj\Debug\SYS.Core.pdb diff --git a/SYS.FormUI/App.config b/SYS.FormUI/App.config index 26408e77a5592a19859995b3d2263eaab2bb68ee..ab452ba8b84ea10223d622310d5aa6ba40d9e187 100644 --- a/SYS.FormUI/App.config +++ b/SYS.FormUI/App.config @@ -14,4 +14,12 @@ + + + + + + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmAboutUs.Designer.cs b/SYS.FormUI/AppFunction/FrmAboutUs.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..a72c0d8bf1a082f5f85f400d6579025fd4e7fdf2 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmAboutUs.Designer.cs @@ -0,0 +1,89 @@ +namespace SYS.FormUI +{ + partial class FrmAboutUs + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAboutUs)); + this.richTextBox1 = new System.Windows.Forms.RichTextBox(); + this.btnClose = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // richTextBox1 + // + this.richTextBox1.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.richTextBox1.Location = new System.Drawing.Point(7, 12); + this.richTextBox1.Name = "richTextBox1"; + this.richTextBox1.Size = new System.Drawing.Size(495, 165); + this.richTextBox1.TabIndex = 2; + this.richTextBox1.Text = " 我们团队一直都致力于打造一款人机交互方便,操作简单的管理软件,我们的愿景是“让每个人都能免费享受到科技带来的改变”,一路心怀愿景去制作软件,我们的团队充" + + "满活力、激情!\n 关于本软件的详细信息,您可以浏览:https://github.com/NF-TopSky-Team/TopskyHotelManag" + + "erSystem 了解更多!另外仍会提供后续的版本升级支持!"; + // + // btnClose + // + this.btnClose.BackColor = System.Drawing.Color.SkyBlue; + this.btnClose.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnClose.BackgroundImage"))); + this.btnClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.btnClose.FlatAppearance.BorderSize = 0; + this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnClose.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnClose.Location = new System.Drawing.Point(427, 183); + this.btnClose.Name = "btnClose"; + this.btnClose.Size = new System.Drawing.Size(75, 26); + this.btnClose.TabIndex = 3; + this.btnClose.Text = "关闭"; + this.btnClose.UseVisualStyleBackColor = false; + this.btnClose.Click += new System.EventHandler(this.btnClose_Click); + // + // FrmAboutUs + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.SkyBlue; + this.ClientSize = new System.Drawing.Size(508, 214); + this.Controls.Add(this.btnClose); + this.Controls.Add(this.richTextBox1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmAboutUs"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "关于我们"; + this.Load += new System.EventHandler(this.FrmAboutUs_Load); + this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.FrmAboutUs_MouseDown); + this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.FrmAboutUs_MouseMove); + this.ResumeLayout(false); + + } + + #endregion + private System.Windows.Forms.RichTextBox richTextBox1; + private System.Windows.Forms.Button btnClose; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmAboutUs.cs b/SYS.FormUI/AppFunction/FrmAboutUs.cs new file mode 100644 index 0000000000000000000000000000000000000000..60c55128a33fc23cd5fa2e4fa0f8be19c24f8a75 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmAboutUs.cs @@ -0,0 +1,50 @@ +using System; +using System.Drawing; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmAboutUs : Form + { + public FrmAboutUs() + { + InitializeComponent(); + } + + #region 记录鼠标和窗体坐标的方法 + private Point mouseOld;//鼠标旧坐标 + private Point formOld;//窗体旧坐标 + #endregion + + #region 记录移动的窗体坐标 + private void FrmAboutUs_MouseDown(object sender, MouseEventArgs e) + { + formOld = this.Location; + mouseOld = MousePosition; + } + #endregion + + #region 记录窗体移动的坐标 + private void FrmAboutUs_MouseMove(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + Point mouseNew = MousePosition; + int moveX = mouseNew.X - mouseOld.X; + int moveY = mouseNew.Y - mouseOld.Y; + this.Location = new Point(formOld.X + moveX, formOld.Y + moveY); + } + } + #endregion + + private void btnClose_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void FrmAboutUs_Load(object sender, EventArgs e) + { + + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmAboutUs.resx b/SYS.FormUI/AppFunction/FrmAboutUs.resx new file mode 100644 index 0000000000000000000000000000000000000000..51a06f59eb014830084b8e054b33149081afd566 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmAboutUs.resx @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + Qk3OBwAAAAAAAJ4BAAAoAAAARwAAABYAAAABAAgAAAAAAAAAAAASCwAAEgsAAFoAAABaAAAAAAAA//// + ////+O7///bq///w3f//6s///+jL///mx///5MP//+K////gu///3bb//9uy///Zrv//1aX//9Kh/5V6 + WP///Pn//9Cc/7STa///05///9Sf///Vo///16n//92z///Xov//2ab//9in/5yGaP//2qv/nYdq///c + r///37f//+K7/7Ccgv//+fH/m4Vm/56Kbf//5L///+bD///oxv//6cr//+vO///58P+wnHz///Hb///2 + 5//w7OX/s551///46v//+Ov///rw//Ds5P//+u////vy//Xiq///7LP/9OKr///66v//++z/trOk/7e0 + pv//9Lr///W6///0u///9bz/8+zD///2vP/07LT///a9///3vf//9r7///e////3wP+3taf/9e61///4 + vv/z7LX///jA///4wf//+ML///nE///6xv//+8f///vI///95/+5uKv///vE///7xv/W6u7/WTwkEBAQ + EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQ + EBAkPFkAPRM3Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+ + Pj4+Pj4+Pj4+Pj4+P0ZLMD0AHDkSFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU + FBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFRk4RBwAEEAWDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8P + Dw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8aTBAAEEEbDg4ODg4ODg4ODg4ODg4O + Dg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4bQxAAEEUdFxcX + FxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcX + FxcdRRAAEEUfDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0N + DQ0NDQ0NDQ0NDQ0NDQ0fRRAAEEcYDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM + DAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwYRxAAEEggCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsL + CwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsgSBAAEEghCgoKCgoKCgoKCgoKCgoK + CgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgohSBAAEEkmCQkJ + CQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJ + CQkmSRAAEE4nCAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI + CAgICAgICAgICAgICAgnThAAEE8oBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcH + BwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcoTxAAEFApBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYG + BgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYpUBAAEFAqBQUFBQUFBQUFBQUFBQUF + BQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUqUBAAEFEtBAQE + BAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE + BAQtURAAEFIuAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD + AwMDAwMDAwMDAwMDAwMuUhAAEFgxAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC + AgICAgICAgICAgICAgICAgICAgICAgICAgIyUxAAEFc6KyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj + IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyM1VBAAHk1VOzMzMzMzMzMzMzMzMzMz + MzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzYRQh4ASiw0AQEB + AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB + AQEvIkoAWVYlEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQ + EBAQEBAQEBAQEBAQEBAlVlkA + + + + + AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMvSWgLT3ERC095BktPeQbTT3kGi09xESMvT + ZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANTXPijV2TvE1do86NTaPNTV2jv21do6/9Xa + Ov/V2T16AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANXTNzrW1TbA1NU8QtPITwLypAkc1NFDEtXV + OJrW1TT/1tU0+tPROyIAAAAAAAAAAAAAAAAAAAAAAAAAANbNNBrX0DGg1M8/CgAAAADzpApa86QKqvKk + CozQzlkC19AwvtjQLv/WzjFsAAAAAAAAAAAAAAAAAAAAAAAAAADYyix41ss3DPOkCQYAAAAA86QKAvOk + ChbzpAq2AAAAANjKLGDZyyj/2MoriAAAAAAAAAAAAAAAAAAAAADYxDAO2cUpTPOjCQDzownO86QKCPOk + CgrzpArI86QKPgAAAADZxSZM2sUi/9rFJXYAAAAAAAAAAAAAAAAAAAAA2cAoMtbCPAQAAAAA8qMJrPKk + Ci7ypAoI86QKsvKkCozzpAoE28AfctzAHP/bwSM8AAAAAAAAAAAAAAAAAAAAANa9OgoAAAAAAAAAAPOk + CYDzpApcAAAAAPOkCiryowo81LlSANy8GMTcvBjS1L5GAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPOk + ChTypAps86QKlPKjCSDypAoAAAAAAN22Fk7etxL83LgYQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADzpApi86QKrvOkCq7zpAqu86QKDN6yEyrfsw3q3rQScs64cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADZryoI264bDAAAAAAAAAAA2q4iBN+uDF7frwni3rAOYtCyTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA1rRGAN6tD1TfrAuQ4KwIqOCsCMrgrQiW2qkNHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA1as3ANqtKAjSqkICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//8AAP//AAD/HwAA/A8AAPvHAAD3JwAA/7MAAPt3AAD7NwAA++cAAP3vAAD43wAA/78AAPh/ + AAD//wAA//8AAA== + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmAddRoom.Designer.cs b/SYS.FormUI/AppFunction/FrmAddRoom.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..e603cb32eaa993e8f0f76ee89ab6602aa1b2c1a9 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmAddRoom.Designer.cs @@ -0,0 +1,254 @@ +namespace SYS.FormUI +{ + partial class FrmAddRoom + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAddRoom)); + this.txtRoomNo = new Sunny.UI.UITextBox(); + this.label3 = new System.Windows.Forms.Label(); + this.txtRoomPosition = new Sunny.UI.UITextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.txtMoney = new Sunny.UI.UITextBox(); + this.label4 = new System.Windows.Forms.Label(); + this.label6 = new System.Windows.Forms.Label(); + this.cboRoomType = new Sunny.UI.UIComboBox(); + this.uiTextBox1 = new Sunny.UI.UITextBox(); + this.label2 = new System.Windows.Forms.Label(); + this.btnAddRoom = new Sunny.UI.UIButton(); + this.flpRoom = new System.Windows.Forms.FlowLayoutPanel(); + this.SuspendLayout(); + // + // txtRoomNo + // + this.txtRoomNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtRoomNo.FillColor = System.Drawing.Color.White; + this.txtRoomNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtRoomNo.Location = new System.Drawing.Point(238, 501); + this.txtRoomNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtRoomNo.Maximum = 2147483647D; + this.txtRoomNo.Minimum = -2147483648D; + this.txtRoomNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtRoomNo.Name = "txtRoomNo"; + this.txtRoomNo.Padding = new System.Windows.Forms.Padding(5); + this.txtRoomNo.Radius = 20; + this.txtRoomNo.Size = new System.Drawing.Size(127, 35); + this.txtRoomNo.Style = Sunny.UI.UIStyle.Custom; + this.txtRoomNo.StyleCustomMode = true; + this.txtRoomNo.TabIndex = 106; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(130, 507); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(88, 25); + this.label3.TabIndex = 105; + this.label3.Text = "房间编号"; + // + // txtRoomPosition + // + this.txtRoomPosition.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtRoomPosition.FillColor = System.Drawing.Color.White; + this.txtRoomPosition.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtRoomPosition.Location = new System.Drawing.Point(493, 501); + this.txtRoomPosition.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtRoomPosition.Maximum = 2147483647D; + this.txtRoomPosition.Minimum = -2147483648D; + this.txtRoomPosition.MinimumSize = new System.Drawing.Size(1, 1); + this.txtRoomPosition.Name = "txtRoomPosition"; + this.txtRoomPosition.Padding = new System.Windows.Forms.Padding(5); + this.txtRoomPosition.Radius = 20; + this.txtRoomPosition.Size = new System.Drawing.Size(127, 35); + this.txtRoomPosition.Style = Sunny.UI.UIStyle.Custom; + this.txtRoomPosition.StyleCustomMode = true; + this.txtRoomPosition.TabIndex = 108; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(385, 507); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(88, 25); + this.label1.TabIndex = 107; + this.label1.Text = "房间位置"; + // + // txtMoney + // + this.txtMoney.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtMoney.FillColor = System.Drawing.Color.White; + this.txtMoney.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtMoney.Location = new System.Drawing.Point(748, 501); + this.txtMoney.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtMoney.Maximum = 2147483647D; + this.txtMoney.Minimum = -2147483648D; + this.txtMoney.MinimumSize = new System.Drawing.Size(1, 1); + this.txtMoney.Name = "txtMoney"; + this.txtMoney.Padding = new System.Windows.Forms.Padding(5); + this.txtMoney.Radius = 20; + this.txtMoney.Size = new System.Drawing.Size(127, 35); + this.txtMoney.Style = Sunny.UI.UIStyle.Custom; + this.txtMoney.StyleCustomMode = true; + this.txtMoney.TabIndex = 110; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.Location = new System.Drawing.Point(640, 507); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(88, 25); + this.label4.TabIndex = 109; + this.label4.Text = "房间单价"; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label6.Location = new System.Drawing.Point(130, 568); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(88, 25); + this.label6.TabIndex = 111; + this.label6.Text = "房间类型"; + // + // cboRoomType + // + this.cboRoomType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboRoomType.FillColor = System.Drawing.Color.White; + this.cboRoomType.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboRoomType.Location = new System.Drawing.Point(238, 564); + this.cboRoomType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboRoomType.MinimumSize = new System.Drawing.Size(63, 0); + this.cboRoomType.Name = "cboRoomType"; + this.cboRoomType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboRoomType.Radius = 20; + this.cboRoomType.Size = new System.Drawing.Size(184, 35); + this.cboRoomType.TabIndex = 112; + this.cboRoomType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cboRoomType.TextChanged += new System.EventHandler(this.cboRoomType_TextChanged); + // + // uiTextBox1 + // + this.uiTextBox1.Cursor = System.Windows.Forms.Cursors.IBeam; + this.uiTextBox1.FillColor = System.Drawing.Color.White; + this.uiTextBox1.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.uiTextBox1.Location = new System.Drawing.Point(553, 564); + this.uiTextBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.uiTextBox1.Maximum = 2147483647D; + this.uiTextBox1.Minimum = -2147483648D; + this.uiTextBox1.MinimumSize = new System.Drawing.Size(1, 1); + this.uiTextBox1.Name = "uiTextBox1"; + this.uiTextBox1.Padding = new System.Windows.Forms.Padding(5); + this.uiTextBox1.Radius = 20; + this.uiTextBox1.ReadOnly = true; + this.uiTextBox1.Size = new System.Drawing.Size(128, 35); + this.uiTextBox1.Style = Sunny.UI.UIStyle.Custom; + this.uiTextBox1.StyleCustomMode = true; + this.uiTextBox1.TabIndex = 114; + this.uiTextBox1.Text = "空房"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(448, 568); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(88, 25); + this.label2.TabIndex = 113; + this.label2.Text = "房间状态"; + // + // btnAddRoom + // + this.btnAddRoom.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnAddRoom.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnAddRoom.Location = new System.Drawing.Point(723, 564); + this.btnAddRoom.MinimumSize = new System.Drawing.Size(1, 1); + this.btnAddRoom.Name = "btnAddRoom"; + this.btnAddRoom.Radius = 30; + this.btnAddRoom.Size = new System.Drawing.Size(152, 35); + this.btnAddRoom.TabIndex = 115; + this.btnAddRoom.Text = "新增客房"; + this.btnAddRoom.Click += new System.EventHandler(this.btnAddRoom_Click); + // + // flpRoom + // + this.flpRoom.AutoScroll = true; + this.flpRoom.BackColor = System.Drawing.Color.Transparent; + this.flpRoom.Location = new System.Drawing.Point(83, 56); + this.flpRoom.Name = "flpRoom"; + this.flpRoom.Size = new System.Drawing.Size(838, 424); + this.flpRoom.TabIndex = 116; + // + // FrmAddRoom + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.flpRoom); + this.Controls.Add(this.btnAddRoom); + this.Controls.Add(this.uiTextBox1); + this.Controls.Add(this.label2); + this.Controls.Add(this.cboRoomType); + this.Controls.Add(this.label6); + this.Controls.Add(this.txtMoney); + this.Controls.Add(this.label4); + this.Controls.Add(this.txtRoomPosition); + this.Controls.Add(this.label1); + this.Controls.Add(this.txtRoomNo); + this.Controls.Add(this.label3); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmAddRoom"; + this.ShowIcon = true; + this.Text = "新增客房"; + this.Load += new System.EventHandler(this.FrmAddRoom_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private Sunny.UI.UITextBox txtRoomNo; + private System.Windows.Forms.Label label3; + private Sunny.UI.UITextBox txtRoomPosition; + private System.Windows.Forms.Label label1; + private Sunny.UI.UITextBox txtMoney; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label label6; + private Sunny.UI.UIComboBox cboRoomType; + private Sunny.UI.UITextBox uiTextBox1; + private System.Windows.Forms.Label label2; + private Sunny.UI.UIButton btnAddRoom; + private System.Windows.Forms.FlowLayoutPanel flpRoom; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmAddRoom.cs b/SYS.FormUI/AppFunction/FrmAddRoom.cs new file mode 100644 index 0000000000000000000000000000000000000000..3b007931299d23acc0370871b3716e07c207c5c4 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmAddRoom.cs @@ -0,0 +1,136 @@ +using System; +using System.Data; +using MySql.Data.MySqlClient; +using System.Windows.Forms; +using SYS.Core; +using SYS.Application; +using System.Collections.Generic; +using Sunny.UI; + +namespace SYS.FormUI +{ + public partial class FrmAddRoom : UIForm + { + public FrmAddRoom() + { + InitializeComponent(); + } + + Room rn; + + private void btnAddRoom_Click(object sender, EventArgs e) + { + if (!string.IsNullOrWhiteSpace(txtRoomNo.Text)) + { + rn = new Room() + { + RoomNo = txtRoomNo.Text, + RoomType = cboRoomType.SelectedIndex, + RoomMoney = Convert.ToDecimal(txtMoney.Text), + RoomPosition = txtRoomPosition.Text, + RoomStateId = 0, + datains_usr = AdminInfo.Account, + datains_date = DateTime.Now + }; + new RoomService().InsertRoom(rn); + MessageBox.Show("添加房间成功!"); + LoadRoom(); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = AdminInfo.Account + AdminInfo.Name + "于" + DateTime.Now + "新增了房间,房间号为:" + txtRoomNo.Text + ",房间类型为:" + cboRoomType.Text; + o.OperationAccount = AdminInfo.Account + AdminInfo.Name; + o.datains_usr = AdminInfo.Account; + o.datains_date = DateTime.Now; + #endregion + new OperationlogService().InsertOperationLog(o); + } + else + { + MessageBox.Show("房间信息不完整,请重试!"); + } + + } + + + ucRoomList romt = null; + private void FrmAddRoom_Load(object sender, EventArgs e) + { + LoadRoom(); + cboRoomType.DataSource = new RoomTypeService().SelectRoomTypesAll(); + cboRoomType.DisplayMember = "RoomName"; + cboRoomType.ValueMember = "RoomType"; + cboRoomType.SelectedIndex = 0; + } + + public void LoadRoom() + { + List rooms = new RoomService().SelectCanUseRoomAll(); + flpRoom.Controls.Clear(); + for (int i = 0; i < rooms.Count; i++) + { + romt = new ucRoomList(); + romt.lblRoomNo.Text = rooms[i].RoomNo; + romt.lblCustoNo.Text = rooms[i].CustoNo; + romt.lblRoomType.Text = rooms[i].RoomName; + romt.romCustoInfo = rooms[i]; + flpRoom.Controls.Add(romt); + } + } + + private void cboRoomType_TextChanged(object sender, EventArgs e) + { + if (cboRoomType.Text == "标准单人间") + { + txtMoney.Text = "300"; + txtRoomPosition.Text = "A层"; + } + else if (cboRoomType.Text == "标准双人间") + { + txtMoney.Text = "425"; + txtRoomPosition.Text = "A层"; + } + else if (cboRoomType.Text == "豪华单人间") + { + txtMoney.Text = "625"; + txtRoomPosition.Text = "B层"; + } + else if (cboRoomType.Text == "豪华双人间") + { + txtMoney.Text = "660"; + txtRoomPosition.Text = "B层"; + } + else if (cboRoomType.Text == "情侣套房") + { + txtMoney.Text = "845"; + txtRoomPosition.Text = "C层"; + } + else if (cboRoomType.Text == "总统套房") + { + txtMoney.Text = "1080"; + txtRoomPosition.Text = "D层"; + } + } + + private void txtRoomNo_TextChanged(object sender, EventArgs e) + { + if (CheckRoomExists(txtRoomNo.Text)) + { + MessageBox.Show("该房间已存在,无法进行添加操作"); + return; + } + } + + private bool CheckRoomExists(string RoomNo) + { + bool ret = false; + Room room = new Room(); + room = new RoomService().SelectRoomByRoomNo(RoomNo); + if (room != null) + { + ret = true; + } + return ret; + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmAddRoom.resx b/SYS.FormUI/AppFunction/FrmAddRoom.resx new file mode 100644 index 0000000000000000000000000000000000000000..1a1bbf9fbd719a7bcfaeaa7847ef7eced8e59d96 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmAddRoom.resx @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGACHAQAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABHElEQVRYR+2TTw7B + QBTGexILG6ewkjiInTiBnRuIC7gFlr2EFQuHsC/fm/6CVGY6oypBf0kz3p/vvS/tyEIURTG7NEQzch0L + RsYj4agc0RzN2jM2Dml6Ep1KeQmlZJCn6bV8ZyKda6cWlJJBHq/X0qUJdB4tdmrhii+APE6vpVP6zcDQ + coTtG9DCMb22fE76MwZU72vpwRp1bkk7LGcQJoM8rNfSjTXpPOsZkHY4tSBMBrlfr4UreszAhPQNSu0Z + oF4L7ckg/wIDhG+H8X9sQBc7t4fwGfa3ZqAW9ncGfvcOMN4/n3pnoDPQ2IDddEZF4/4d/P5+Az4Y3/4n + 8MH4zoB//iuXJ4S7WA+QDr6BhUT7sq05VQMWV3N3suwK8zv9O9Gwje0AAAAASUVORK5CYII= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmAddWorker.Designer.cs b/SYS.FormUI/AppFunction/FrmAddWorker.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..84e19ff590783dd1cca8cf8e66f8624b44d1f169 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmAddWorker.Designer.cs @@ -0,0 +1,547 @@ +namespace SYS.FormUI +{ + partial class FrmAddWorker + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAddWorker)); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.label15 = new System.Windows.Forms.Label(); + this.cboSex = new Sunny.UI.UIComboBox(); + this.WorkerNo = new Sunny.UI.UITextBox(); + this.dtpBirthday = new Sunny.UI.UIDatePicker(); + this.label13 = new System.Windows.Forms.Label(); + this.label16 = new System.Windows.Forms.Label(); + this.label17 = new System.Windows.Forms.Label(); + this.label18 = new System.Windows.Forms.Label(); + this.cboWorkerPosition = new Sunny.UI.UIComboBox(); + this.WorkerName = new Sunny.UI.UITextBox(); + this.dtpTime = new Sunny.UI.UIDatePicker(); + this.label19 = new System.Windows.Forms.Label(); + this.label20 = new System.Windows.Forms.Label(); + this.label21 = new System.Windows.Forms.Label(); + this.label22 = new System.Windows.Forms.Label(); + this.cboClub = new Sunny.UI.UIComboBox(); + this.label23 = new System.Windows.Forms.Label(); + this.cboEducation = new Sunny.UI.UIComboBox(); + this.label24 = new System.Windows.Forms.Label(); + this.txtAddress = new Sunny.UI.UITextBox(); + this.label25 = new System.Windows.Forms.Label(); + this.WorkerID = new Sunny.UI.UITextBox(); + this.label26 = new System.Windows.Forms.Label(); + this.WorkerTel = new Sunny.UI.UITextBox(); + this.label27 = new System.Windows.Forms.Label(); + this.cboWorkerFace = new Sunny.UI.UIComboBox(); + this.flpHistory = new System.Windows.Forms.FlowLayoutPanel(); + this.btnAdd = new Sunny.UI.UIButton(); + this.cbWorkerNation = new Sunny.UI.UIComboBox(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.SuspendLayout(); + // + // pictureBox1 + // + this.pictureBox1.BackColor = System.Drawing.Color.Transparent; + this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox1.Image = global::SYS.FormUI.Properties.Resources._77377282_p0_master1200; + this.pictureBox1.Location = new System.Drawing.Point(628, 46); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(143, 193); + this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox1.TabIndex = 55; + this.pictureBox1.TabStop = false; + // + // label15 + // + this.label15.AutoSize = true; + this.label15.BackColor = System.Drawing.Color.Transparent; + this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label15.ForeColor = System.Drawing.Color.Black; + this.label15.Location = new System.Drawing.Point(284, 464); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(217, 24); + this.label15.TabIndex = 60; + this.label15.Text = "履 历 栏"; + // + // cboSex + // + this.cboSex.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboSex.FillColor = System.Drawing.Color.White; + this.cboSex.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboSex.Location = new System.Drawing.Point(120, 151); + this.cboSex.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboSex.MinimumSize = new System.Drawing.Size(63, 0); + this.cboSex.Name = "cboSex"; + this.cboSex.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboSex.Radius = 20; + this.cboSex.Size = new System.Drawing.Size(166, 35); + this.cboSex.TabIndex = 113; + this.cboSex.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // WorkerNo + // + this.WorkerNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.WorkerNo.FillColor = System.Drawing.Color.White; + this.WorkerNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.WorkerNo.Location = new System.Drawing.Point(120, 45); + this.WorkerNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.WorkerNo.Maximum = 2147483647D; + this.WorkerNo.Minimum = -2147483648D; + this.WorkerNo.MinimumSize = new System.Drawing.Size(1, 1); + this.WorkerNo.Name = "WorkerNo"; + this.WorkerNo.Padding = new System.Windows.Forms.Padding(5); + this.WorkerNo.Radius = 20; + this.WorkerNo.Size = new System.Drawing.Size(166, 35); + this.WorkerNo.Style = Sunny.UI.UIStyle.Custom; + this.WorkerNo.StyleCustomMode = true; + this.WorkerNo.TabIndex = 111; + // + // dtpBirthday + // + this.dtpBirthday.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.dtpBirthday.FillColor = System.Drawing.Color.White; + this.dtpBirthday.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); + this.dtpBirthday.Location = new System.Drawing.Point(120, 208); + this.dtpBirthday.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.dtpBirthday.MaxLength = 10; + this.dtpBirthday.MinimumSize = new System.Drawing.Size(63, 0); + this.dtpBirthday.Name = "dtpBirthday"; + this.dtpBirthday.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.dtpBirthday.Radius = 20; + this.dtpBirthday.Size = new System.Drawing.Size(166, 31); + this.dtpBirthday.SymbolDropDown = 61555; + this.dtpBirthday.SymbolNormal = 61555; + this.dtpBirthday.TabIndex = 110; + this.dtpBirthday.Text = "2020-11-24"; + this.dtpBirthday.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.dtpBirthday.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); + // + // label13 + // + this.label13.AutoSize = true; + this.label13.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label13.Location = new System.Drawing.Point(13, 210); + this.label13.Name = "label13"; + this.label13.Size = new System.Drawing.Size(88, 25); + this.label13.TabIndex = 109; + this.label13.Text = "出生日期"; + // + // label16 + // + this.label16.AutoSize = true; + this.label16.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label16.Location = new System.Drawing.Point(13, 157); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(80, 25); + this.label16.TabIndex = 108; + this.label16.Text = "性 别"; + // + // label17 + // + this.label17.AutoSize = true; + this.label17.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label17.Location = new System.Drawing.Point(13, 104); + this.label17.Name = "label17"; + this.label17.Size = new System.Drawing.Size(80, 25); + this.label17.TabIndex = 107; + this.label17.Text = "民 族"; + // + // label18 + // + this.label18.AutoSize = true; + this.label18.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label18.Location = new System.Drawing.Point(13, 51); + this.label18.Name = "label18"; + this.label18.Size = new System.Drawing.Size(88, 25); + this.label18.TabIndex = 106; + this.label18.Text = "员工编号"; + // + // cboWorkerPosition + // + this.cboWorkerPosition.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboWorkerPosition.FillColor = System.Drawing.Color.White; + this.cboWorkerPosition.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboWorkerPosition.Location = new System.Drawing.Point(433, 151); + this.cboWorkerPosition.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboWorkerPosition.MinimumSize = new System.Drawing.Size(63, 0); + this.cboWorkerPosition.Name = "cboWorkerPosition"; + this.cboWorkerPosition.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboWorkerPosition.Radius = 20; + this.cboWorkerPosition.Size = new System.Drawing.Size(178, 35); + this.cboWorkerPosition.TabIndex = 121; + this.cboWorkerPosition.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // WorkerName + // + this.WorkerName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.WorkerName.FillColor = System.Drawing.Color.White; + this.WorkerName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.WorkerName.Location = new System.Drawing.Point(433, 45); + this.WorkerName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.WorkerName.Maximum = 2147483647D; + this.WorkerName.Minimum = -2147483648D; + this.WorkerName.MinimumSize = new System.Drawing.Size(1, 1); + this.WorkerName.Name = "WorkerName"; + this.WorkerName.Padding = new System.Windows.Forms.Padding(5); + this.WorkerName.Radius = 20; + this.WorkerName.Size = new System.Drawing.Size(178, 35); + this.WorkerName.Style = Sunny.UI.UIStyle.Custom; + this.WorkerName.StyleCustomMode = true; + this.WorkerName.TabIndex = 119; + // + // dtpTime + // + this.dtpTime.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.dtpTime.FillColor = System.Drawing.Color.White; + this.dtpTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); + this.dtpTime.Location = new System.Drawing.Point(120, 257); + this.dtpTime.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.dtpTime.MaxLength = 10; + this.dtpTime.MinimumSize = new System.Drawing.Size(63, 0); + this.dtpTime.Name = "dtpTime"; + this.dtpTime.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.dtpTime.Radius = 20; + this.dtpTime.ReadOnly = true; + this.dtpTime.Size = new System.Drawing.Size(166, 31); + this.dtpTime.SymbolDropDown = 61555; + this.dtpTime.SymbolNormal = 61555; + this.dtpTime.TabIndex = 118; + this.dtpTime.Text = "2020-11-24"; + this.dtpTime.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.dtpTime.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); + // + // label19 + // + this.label19.AutoSize = true; + this.label19.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label19.Location = new System.Drawing.Point(13, 263); + this.label19.Name = "label19"; + this.label19.Size = new System.Drawing.Size(88, 25); + this.label19.TabIndex = 117; + this.label19.Text = "入职日期"; + // + // label20 + // + this.label20.AutoSize = true; + this.label20.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label20.Location = new System.Drawing.Point(326, 157); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(88, 25); + this.label20.TabIndex = 116; + this.label20.Text = "员工职位"; + // + // label21 + // + this.label21.AutoSize = true; + this.label21.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label21.Location = new System.Drawing.Point(326, 104); + this.label21.Name = "label21"; + this.label21.Size = new System.Drawing.Size(88, 25); + this.label21.TabIndex = 115; + this.label21.Text = "员工面貌"; + // + // label22 + // + this.label22.AutoSize = true; + this.label22.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label22.Location = new System.Drawing.Point(326, 51); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(88, 25); + this.label22.TabIndex = 114; + this.label22.Text = "员工姓名"; + // + // cboClub + // + this.cboClub.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboClub.FillColor = System.Drawing.Color.White; + this.cboClub.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboClub.Location = new System.Drawing.Point(433, 204); + this.cboClub.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboClub.MinimumSize = new System.Drawing.Size(63, 0); + this.cboClub.Name = "cboClub"; + this.cboClub.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboClub.Radius = 20; + this.cboClub.Size = new System.Drawing.Size(178, 35); + this.cboClub.TabIndex = 123; + this.cboClub.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // label23 + // + this.label23.AutoSize = true; + this.label23.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label23.Location = new System.Drawing.Point(326, 210); + this.label23.Name = "label23"; + this.label23.Size = new System.Drawing.Size(88, 25); + this.label23.TabIndex = 122; + this.label23.Text = "所属部门"; + // + // cboEducation + // + this.cboEducation.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboEducation.FillColor = System.Drawing.Color.White; + this.cboEducation.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboEducation.Location = new System.Drawing.Point(433, 257); + this.cboEducation.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboEducation.MinimumSize = new System.Drawing.Size(63, 0); + this.cboEducation.Name = "cboEducation"; + this.cboEducation.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboEducation.Radius = 20; + this.cboEducation.Size = new System.Drawing.Size(338, 35); + this.cboEducation.TabIndex = 125; + this.cboEducation.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // label24 + // + this.label24.AutoSize = true; + this.label24.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label24.Location = new System.Drawing.Point(326, 263); + this.label24.Name = "label24"; + this.label24.Size = new System.Drawing.Size(88, 25); + this.label24.TabIndex = 124; + this.label24.Text = "最高学历"; + // + // txtAddress + // + this.txtAddress.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtAddress.FillColor = System.Drawing.Color.White; + this.txtAddress.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtAddress.Location = new System.Drawing.Point(120, 310); + this.txtAddress.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtAddress.Maximum = 2147483647D; + this.txtAddress.Minimum = -2147483648D; + this.txtAddress.MinimumSize = new System.Drawing.Size(1, 1); + this.txtAddress.Name = "txtAddress"; + this.txtAddress.Padding = new System.Windows.Forms.Padding(5); + this.txtAddress.Radius = 20; + this.txtAddress.Size = new System.Drawing.Size(651, 35); + this.txtAddress.Style = Sunny.UI.UIStyle.Custom; + this.txtAddress.StyleCustomMode = true; + this.txtAddress.TabIndex = 127; + // + // label25 + // + this.label25.AutoSize = true; + this.label25.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label25.Location = new System.Drawing.Point(13, 315); + this.label25.Name = "label25"; + this.label25.Size = new System.Drawing.Size(88, 25); + this.label25.TabIndex = 126; + this.label25.Text = "居住地址"; + // + // WorkerID + // + this.WorkerID.Cursor = System.Windows.Forms.Cursors.IBeam; + this.WorkerID.FillColor = System.Drawing.Color.White; + this.WorkerID.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.WorkerID.Location = new System.Drawing.Point(120, 363); + this.WorkerID.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.WorkerID.Maximum = 2147483647D; + this.WorkerID.Minimum = -2147483648D; + this.WorkerID.MinimumSize = new System.Drawing.Size(1, 1); + this.WorkerID.Name = "WorkerID"; + this.WorkerID.Padding = new System.Windows.Forms.Padding(5); + this.WorkerID.Radius = 20; + this.WorkerID.Size = new System.Drawing.Size(651, 35); + this.WorkerID.Style = Sunny.UI.UIStyle.Custom; + this.WorkerID.StyleCustomMode = true; + this.WorkerID.TabIndex = 129; + this.WorkerID.Validated += new System.EventHandler(this.WorkerID_Validated); + // + // label26 + // + this.label26.AutoSize = true; + this.label26.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label26.Location = new System.Drawing.Point(13, 370); + this.label26.Name = "label26"; + this.label26.Size = new System.Drawing.Size(88, 25); + this.label26.TabIndex = 128; + this.label26.Text = "证件号码"; + // + // WorkerTel + // + this.WorkerTel.Cursor = System.Windows.Forms.Cursors.IBeam; + this.WorkerTel.FillColor = System.Drawing.Color.White; + this.WorkerTel.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.WorkerTel.Location = new System.Drawing.Point(120, 416); + this.WorkerTel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.WorkerTel.Maximum = 2147483647D; + this.WorkerTel.Minimum = -2147483648D; + this.WorkerTel.MinimumSize = new System.Drawing.Size(1, 1); + this.WorkerTel.Name = "WorkerTel"; + this.WorkerTel.Padding = new System.Windows.Forms.Padding(5); + this.WorkerTel.Radius = 20; + this.WorkerTel.Size = new System.Drawing.Size(651, 35); + this.WorkerTel.Style = Sunny.UI.UIStyle.Custom; + this.WorkerTel.StyleCustomMode = true; + this.WorkerTel.TabIndex = 131; + // + // label27 + // + this.label27.AutoSize = true; + this.label27.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label27.Location = new System.Drawing.Point(13, 426); + this.label27.Name = "label27"; + this.label27.Size = new System.Drawing.Size(88, 25); + this.label27.TabIndex = 130; + this.label27.Text = "手机号码"; + // + // cboWorkerFace + // + this.cboWorkerFace.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboWorkerFace.FillColor = System.Drawing.Color.White; + this.cboWorkerFace.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboWorkerFace.Items.AddRange(new object[] { + "群众", + "团员", + "党员"}); + this.cboWorkerFace.Location = new System.Drawing.Point(433, 98); + this.cboWorkerFace.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboWorkerFace.MinimumSize = new System.Drawing.Size(63, 0); + this.cboWorkerFace.Name = "cboWorkerFace"; + this.cboWorkerFace.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboWorkerFace.Radius = 20; + this.cboWorkerFace.Size = new System.Drawing.Size(178, 35); + this.cboWorkerFace.TabIndex = 132; + this.cboWorkerFace.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // flpHistory + // + this.flpHistory.AutoScroll = true; + this.flpHistory.Location = new System.Drawing.Point(18, 498); + this.flpHistory.Name = "flpHistory"; + this.flpHistory.Size = new System.Drawing.Size(754, 199); + this.flpHistory.TabIndex = 133; + // + // btnAdd + // + this.btnAdd.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnAdd.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnAdd.Location = new System.Drawing.Point(634, 709); + this.btnAdd.MinimumSize = new System.Drawing.Size(1, 1); + this.btnAdd.Name = "btnAdd"; + this.btnAdd.Radius = 30; + this.btnAdd.Size = new System.Drawing.Size(137, 46); + this.btnAdd.TabIndex = 134; + this.btnAdd.Text = "添 加"; + this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); + // + // cbWorkerNation + // + this.cbWorkerNation.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cbWorkerNation.FillColor = System.Drawing.Color.White; + this.cbWorkerNation.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cbWorkerNation.Location = new System.Drawing.Point(120, 98); + this.cbWorkerNation.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cbWorkerNation.MinimumSize = new System.Drawing.Size(63, 0); + this.cbWorkerNation.Name = "cbWorkerNation"; + this.cbWorkerNation.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cbWorkerNation.Radius = 20; + this.cbWorkerNation.Size = new System.Drawing.Size(166, 35); + this.cbWorkerNation.TabIndex = 135; + this.cbWorkerNation.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // FrmAddWorker + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.ClientSize = new System.Drawing.Size(785, 768); + this.Controls.Add(this.cbWorkerNation); + this.Controls.Add(this.btnAdd); + this.Controls.Add(this.pictureBox1); + this.Controls.Add(this.flpHistory); + this.Controls.Add(this.label15); + this.Controls.Add(this.cboWorkerFace); + this.Controls.Add(this.WorkerTel); + this.Controls.Add(this.label27); + this.Controls.Add(this.WorkerID); + this.Controls.Add(this.label26); + this.Controls.Add(this.txtAddress); + this.Controls.Add(this.label25); + this.Controls.Add(this.cboEducation); + this.Controls.Add(this.label24); + this.Controls.Add(this.cboClub); + this.Controls.Add(this.label23); + this.Controls.Add(this.cboWorkerPosition); + this.Controls.Add(this.WorkerName); + this.Controls.Add(this.dtpTime); + this.Controls.Add(this.label19); + this.Controls.Add(this.label20); + this.Controls.Add(this.label21); + this.Controls.Add(this.label22); + this.Controls.Add(this.cboSex); + this.Controls.Add(this.WorkerNo); + this.Controls.Add(this.dtpBirthday); + this.Controls.Add(this.label13); + this.Controls.Add(this.label16); + this.Controls.Add(this.label17); + this.Controls.Add(this.label18); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmAddWorker"; + this.ShowIcon = true; + this.Text = "添加员工"; + this.Load += new System.EventHandler(this.FrmAddWorker_Load); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.PictureBox pictureBox1; + private System.Windows.Forms.Label label15; + private Sunny.UI.UIComboBox cboSex; + private Sunny.UI.UITextBox WorkerNo; + private Sunny.UI.UIDatePicker dtpBirthday; + private System.Windows.Forms.Label label13; + private System.Windows.Forms.Label label16; + private System.Windows.Forms.Label label17; + private System.Windows.Forms.Label label18; + private Sunny.UI.UIComboBox cboWorkerPosition; + private Sunny.UI.UITextBox WorkerName; + private Sunny.UI.UIDatePicker dtpTime; + private System.Windows.Forms.Label label19; + private System.Windows.Forms.Label label20; + private System.Windows.Forms.Label label21; + private System.Windows.Forms.Label label22; + private Sunny.UI.UIComboBox cboClub; + private System.Windows.Forms.Label label23; + private Sunny.UI.UIComboBox cboEducation; + private System.Windows.Forms.Label label24; + private Sunny.UI.UITextBox txtAddress; + private System.Windows.Forms.Label label25; + private Sunny.UI.UITextBox WorkerID; + private System.Windows.Forms.Label label26; + private Sunny.UI.UITextBox WorkerTel; + private System.Windows.Forms.Label label27; + private Sunny.UI.UIComboBox cboWorkerFace; + private System.Windows.Forms.FlowLayoutPanel flpHistory; + private Sunny.UI.UIButton btnAdd; + private Sunny.UI.UIComboBox cbWorkerNation; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmAddWorker.cs b/SYS.FormUI/AppFunction/FrmAddWorker.cs new file mode 100644 index 0000000000000000000000000000000000000000..657be19ef6d19b745b493f82d6cfae736e901d26 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmAddWorker.cs @@ -0,0 +1,416 @@ +using System; +using System.Collections.Generic; +using MySql.Data.MySqlClient; +using System.Drawing; +using System.Windows.Forms; +using SYS.Core; +using Sunny.UI; +using SYS.Application; +using SYS.Core.Util; + +namespace SYS.FormUI +{ + public partial class FrmAddWorker : UIForm + { + public FrmAddWorker() + { + InitializeComponent(); + } + + ucHistory ucHistory = null; + private void FrmAddWorker_Load(object sender, EventArgs e) + { + //加载部门信息 + cboClub.DataSource = new BaseService().SelectDeptAllCanUse(); + cboClub.DisplayMember = "dept_name"; + cboClub.ValueMember = "dept_no"; + //加载民族信息 + cbWorkerNation.DataSource = new BaseService().SelectNationAllCanUse(); + cbWorkerNation.DisplayMember = "nation_name"; + cbWorkerNation.ValueMember = "nation_no"; + //加载职位信息 + cboWorkerPosition.DataSource = new BaseService().SelectPositionAllCanUse(); + cboWorkerPosition.DisplayMember = "position_name"; + cboWorkerPosition.ValueMember = "position_no"; + //加载性别信息 + cboSex.DataSource = new BaseService().SelectSexTypeAllCanUse(); + cboSex.DisplayMember = "sexName"; + cboSex.ValueMember = "sexId"; + //加载学历信息 + cboEducation.DataSource = new BaseService().SelectEducationAllCanUse(); + cboEducation.DisplayMember = "education_name"; + cboEducation.ValueMember = "education_no"; + + pictureBox1.LoadAsync("https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1587209835893&di=02964b1de4a1ef4f938f7d3ae12b5b17&imgtype=0&src=http%3A%2F%2Fbpic.588ku.com%2Felement_origin_min_pic%2F17%2F11%2F25%2F0ef5a188956c2717db96d72d58524dec.jpg"); + if (this.Text == "员工信息查看页") + { + foreach (Control control in this.Controls) + { + switch (control.GetType().ToString()) + { + case "Sunny.UI.UITextBox": + (control as Sunny.UI.UITextBox).ReadOnly = true; + break; + case "Sunny.UI.UIComboBox": + (control as Sunny.UI.UIComboBox).ReadOnly = true; + break; + case "Sunny.UI.UIDatePicker": + (control as Sunny.UI.UIDatePicker).ReadOnly = true; + break; + } + + } + btnAdd.Visible = false; + WorkerNo.Text = FrmChangeWorker.wk_WorkerNo; + WorkerName.Text = FrmChangeWorker.wk_WorkerName; + cboSex.Text = FrmChangeWorker.wk_WorkerSex; + cboWorkerPosition.Text = FrmChangeWorker.wk_WorkerPosition; + cboWorkerFace.Text = FrmChangeWorker.wk_WorkerFace; + cbWorkerNation.Text = FrmChangeWorker.wk_WorkerNation; + dtpBirthday.Value = Convert.ToDateTime(FrmChangeWorker.wk_WorkerBirthday); + dtpTime.Value = Convert.ToDateTime(FrmChangeWorker.wk_WorkerTime); + WorkerID.Text = FrmChangeWorker.wk_WorkerID; + txtAddress.Text = FrmChangeWorker.wk_WorkerAddress; + WorkerTel.Text = FrmChangeWorker.wk_WorkerTel; + cboEducation.Text = FrmChangeWorker.wk_WorkerEducation; + cboClub.Text = FrmChangeWorker.wk_WorkerClub; + this.WorkerID.Validated -= new EventHandler(WorkerID_Validated); + List workerHistories = new WorkerHistoryService().SelectHistoryByWorkerId(WorkerNo.Text); + for (int i = 0; i < workerHistories.Count; i++) + { + ucHistory = new ucHistory(); + ucHistory.dtpStartDate.Value = workerHistories[i].StartDate; + ucHistory.dtpEndDate.Value = workerHistories[i].EndDate; + ucHistory.txtPosition.Text = workerHistories[i].Position; + ucHistory.txtCompany.Text = workerHistories[i].Company; + ucHistory.dtpStartDate.ReadOnly = true; + ucHistory.dtpEndDate.ReadOnly = true; + ucHistory.txtPosition.ReadOnly = true; + ucHistory.txtCompany.ReadOnly = true; + flpHistory.Controls.Add(ucHistory); + } + } + else if (this.Text == "添加员工") + { + WorkerNo.Text = new CounterHelper().GetNewId("WorkerId"); + ucHistory = new ucHistory(); + //ucHistory.txtCompany.ReadOnly = false; + //ucHistory.txtPosition.ReadOnly = false; + ucHistory.dtpStartDate.Enabled = true; + ucHistory.dtpEndDate.Enabled = true; + ucHistory.txtCompany.Enabled = true; + ucHistory.txtPosition.Enabled = true; + flpHistory.Controls.Add(ucHistory); + cboClub.SelectedIndex = 0; + cboEducation.SelectedIndex = 0; + cboSex.SelectedIndex = 0; + cboWorkerFace.SelectedIndex = 0; + cboWorkerPosition.SelectedIndex = 0; + } + else + { + bool dr = UIMessageBox.Show("修改操作仅能修改姓名、性别、电话号码、联系地址、面貌以及最高学历,以上是否知晓?点击确定继续进行修改!", "修改提醒",UIStyle.Orange, UIMessageBoxButtons.OKCancel); + if (dr == true) + { + foreach (Control item in this.Controls) + { + switch (item.Name) + { + case "Sunny.UI.UITextBox": + (item as Sunny.UI.UITextBox).ReadOnly = true; + break; + case "Sunny.UI.UIComboBox": + (item as Sunny.UI.UIComboBox).ReadOnly = true; + break; + case "Sunny.UI.UIDatePicker": + (item as Sunny.UI.UIDatePicker).ReadOnly = true; + break; + } + } + WorkerNo.Text = FrmChangeWorker.wk_WorkerNo; + WorkerName.Text = FrmChangeWorker.wk_WorkerName; + cboSex.Text = FrmChangeWorker.wk_WorkerSex; + cboWorkerPosition.Text = FrmChangeWorker.wk_WorkerPosition; + cboWorkerFace.Text = FrmChangeWorker.wk_WorkerFace; + cbWorkerNation.Text = FrmChangeWorker.wk_WorkerNation; + dtpBirthday.Value = Convert.ToDateTime(FrmChangeWorker.wk_WorkerBirthday); + dtpTime.Value = Convert.ToDateTime(FrmChangeWorker.wk_WorkerTime); + WorkerID.Text = FrmChangeWorker.wk_WorkerID; + txtAddress.Text = FrmChangeWorker.wk_WorkerAddress; + WorkerTel.Text = FrmChangeWorker.wk_WorkerTel; + cboEducation.Text = FrmChangeWorker.wk_WorkerEducation; + cboClub.Text = FrmChangeWorker.wk_WorkerClub; + this.WorkerID.Validated -= new EventHandler(WorkerID_Validated); + btnAdd.Text = "修改"; + this.btnAdd.Click -= new EventHandler(btnAdd_Click); + this.btnAdd.Click += new EventHandler(btnUpd_Click); + WorkerTel.ReadOnly = false; + txtAddress.ReadOnly = false; + List workerHistories = new WorkerHistoryService().SelectHistoryByWorkerId(WorkerNo.Text); + for (int i = 0; i < workerHistories.Count; i++) + { + ucHistory = new ucHistory(); + ucHistory.dtpStartDate.Value = workerHistories[i].StartDate; + ucHistory.dtpEndDate.Value = workerHistories[i].EndDate; + ucHistory.txtPosition.Text = workerHistories[i].Position; + ucHistory.txtCompany.Text = workerHistories[i].Company; + flpHistory.Controls.Add(ucHistory); + } + } + } + } + + private void btnUpd_Click(object sender, EventArgs e) + { + bool dr = UIMessageBox.Show("是否确认修改员工信息?", "修改提醒", UIStyle.Green,UIMessageBoxButtons.OKCancel); + if (dr == true) + { + string NewTel = Md5LockedUtil.MD5Encrypt32(WorkerTel.Text.ToString()); + #region 员工信息代码块 + Worker worker = new Worker + { + WorkerId = WorkerNo.Text.Trim(), + WorkerName = WorkerName.Text.Trim(), + WorkerNation = cbWorkerNation.SelectedValue == null ? "N-00001" : cbWorkerNation.SelectedValue.ToString(), + WorkerTel = NewTel, + WorkerAddress = txtAddress.Text, + WorkerFace = cboWorkerFace.Text, + WorkerEducation = cboEducation.SelectedValue.ToString() == null ? "E-00001" : cboEducation.SelectedValue.ToString(), + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }; + bool i = new WorkerService().UpdateWorker(worker); + if (i == true) + { + UIMessageBox.ShowSuccess("信息修改成功!"); + return; + } + else + { + UIMessageBox.ShowError("服务器繁忙!"); + return; + } + #endregion + } + else + { + UIMessageBox.ShowWarning("修改操作已取消!"); + return; + } + } + + public bool CheckInput(Worker worker) + { + if (string.IsNullOrWhiteSpace(worker.WorkerId)) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerName)) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerSex + "")) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerBirthday + "")) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerClub)) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerNation)) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerPosition)) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerTel)) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerAddress)) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.CardId)) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerEducation)) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerFace)) + { + return false; + } + return true; + } + + private void btnAdd_Click(object sender, EventArgs e) + { + string NewID = Md5LockedUtil.MD5Encrypt32(WorkerID.Text.ToString()); + string NewTel = Md5LockedUtil.MD5Encrypt32(WorkerTel.Text.ToString()); + + Worker worker = new Worker + { + WorkerId = WorkerNo.Text.Trim(), + WorkerName = WorkerName.Text.Trim(), + WorkerBirthday = dtpBirthday.Value, + WorkerSex = (int)cboSex.SelectedValue, + WorkerNation = cbWorkerNation.SelectedValue.ToString(), + WorkerTel = NewTel, + WorkerClub = cboClub.SelectedValue.ToString(), + WorkerAddress = txtAddress.Text, + WorkerPosition = cboWorkerPosition.SelectedValue.ToString(), + CardId = NewID, + WorkerTime = dtpTime.Value, + WorkerFace = cboWorkerFace.Text, + WorkerEducation = cboEducation.SelectedValue.ToString(), + datains_usr = AdminInfo.Account, + datains_date = DateTime.Now + }; + try + { + if (CheckInput(worker)) + { + #region 员工信息添加代码块 + bool n = new WorkerService().AddWorker(worker); + #endregion + + if (ucHistory.txtCompany != null && ucHistory.txtPosition != null && ucHistory.dtpStartDate.Value != null && ucHistory.dtpEndDate.Value != null) + { + #region 履历添加代码块 + WorkerHistory workerHistory = new WorkerHistory + { + StartDate = ucHistory.dtpStartDate.Value, + EndDate = ucHistory.dtpEndDate.Value, + Position = ucHistory.txtPosition.Text, + Company = ucHistory.txtCompany.Text, + WorkerId = WorkerNo.Text.Trim() + }; + bool j = new WorkerHistoryService().AddHistoryByWorkerId(workerHistory); + #endregion + + #region 判断履历和信息代码块 + if (n == true && j == true) + { + UIMessageBox.Show("员工信息/履历添加成功!该员工登录密码为:123456,请提醒员工妥善保管并首次登录系统时修改密码!"); + FrmWorkerManager.Reload(); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = AdminInfo.Account + AdminInfo.Name + "于" + DateTime.Now + "进行了添加员工操作,员工编号为:" + WorkerNo.Text + "!"; + o.OperationAccount = AdminInfo.Account + AdminInfo.Name; + o.datains_usr = AdminInfo.Account; + o.datachg_date = DateTime.Now; + new OperationlogService().InsertOperationLog(o); + #endregion + } + else + { + UIMessageBox.Show("员工信息/履历添加失败,请检查数据格式或稍后再试!"); + } + #endregion + } + } + else + { + UIMessageBox.Show("信息不能为空!"); + } + } + catch(Exception ex) + { + UIMessageBox.Show("服务器繁忙或数据格式为空!"); + } + finally + { + this.Close(); + } + } + + + private void WorkerID_Validated(object sender, EventArgs e) + { + //获取得到输入的身份证号码 + string identityCard = WorkerID.Text.Trim(); + if (string.IsNullOrEmpty(identityCard)) + { + //身份证号码不能为空,如果为空返回 + MessageBox.Show("身份证号码不能为空!"); + if (WorkerID.CanFocus) + { + WorkerID.Focus();//设置当前输入焦点为txtCardID_identityCard + + } + return; + } + else + { + //身份证号码只能为15位或18位其它不合法 + if (identityCard.Length != 15 && identityCard.Length != 18) + { + MessageBox.Show("身份证号码为15位或18位,请检查!"); + if (WorkerID.CanFocus) + { + WorkerID.Focus(); + + } + return; + } + } + string birthday = ""; + string sex = ""; + if (identityCard.Length == 18) + { + var result = new IDCardUtil().SelectCardCode(identityCard); + var address = result.Replace(",", "").ToString(); + birthday = identityCard.Substring(6, 4) + "-" + identityCard.Substring(10, 2) + "-" + identityCard.Substring(12, 2); + sex = identityCard.Substring(14, 3); + txtAddress.Text = address; + //性别代码为偶数是女性奇数为男性 + if (int.Parse(sex) % 2 == 0) + { + cboSex.SelectedIndex = 0; + } + else + { + cboSex.SelectedIndex = 1; + } + } + try + { + dtpBirthday.Value = Convert.ToDateTime(birthday); + } + catch + { + MessageBox.Show("请正确输入证件号码!"); + return; + } + + dtpBirthday.Value = Convert.ToDateTime(birthday); + + return; + } + + private void pnlInfo_Paint(object sender, PaintEventArgs e) + { + + } + + private void btnClose_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void btnAddHistory_Click(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmAddWorker.resx b/SYS.FormUI/AppFunction/FrmAddWorker.resx new file mode 100644 index 0000000000000000000000000000000000000000..055ad0ad348aa372757fd9f451dbb217ea66bcf4 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmAddWorker.resx @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGADqAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACf0lEQVRYR7WWz4tN + YRzG78KCYkVJFMlmNogVmhrZYTMLS0VCqSllaWH+A7KbBdNkN8qCTFlMI5FCpOwoln4u/NpY3OvzvOc5 + 1zHOeed9z7k+9e19z3Oe7/N9XfeeM722DAaD1dSZfr9/g3pHfaIeUtek2/Z/YMgYtcigGM+o0R+EwaeK + /D+gfaOWtFoagjbj1u4Qdsi5Aa7vUft8O6Br6baUjOaTIPi1A8Uxy7XofmELB/1M7fKtdhBwyXli2nKU + ag/7i5bbQcCcg75TmyxHkU9+9z213A4CnjjokaUk5FefYD9mOR+afzjksqUk5A/TC3Zbzoegt0pgvWUp + CfnDaGC/1XI+NN91yBtLScgfpgP7dZbzofmKcxR01HIU+dyintuW20HAOPXLYV8sR5EvTAf2SYeOQshp + 5ynwPUvtw0i67wfYd/vXVyFvuogdMs+AC6wTXueDatAeUzvcPhoInHF+FHx3WDa4rTsEHqBuFvHN4Fmg + ptiucms3CNpO4NWQvgz0JRb9t0youF7jttFA4BHqg4aVcD1HTVLrbfsL9M3UTqrbYQjYQ330XA3+SU35 + diN4Xtl/zlI+NOtN9iJMLrjPddI73X6R9NquhWH6BpdkBblHtDsAw086QB/jS5a1vpVE0RlofYAHDtAB + jltuBFv4BVSqZPjrKMstzWCq/i234qvX1mTIPO/WejAs2Cvzfsu1cH+jrcnQM+v2f+HmFvtkfG45Cta9 + lD7qapUs1+PfCYYexBRgf91yNo4QeV9Chp51ow6w4gOnCUeI7AMMn/fsxy1n4wiRfQC9WDT8K0vWb78K + /eHxzZr3KKbhsBqh3QPE0H+CrFnWbZYa6PV+A7TunigK79nMAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmBackAdmin.Designer.cs b/SYS.FormUI/AppFunction/FrmBackAdmin.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..c1ae47f7db86cf991bd124a081b333ab38fb5e9d --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmBackAdmin.Designer.cs @@ -0,0 +1,868 @@ +namespace SYS.FormUI +{ + partial class FrmBackAdmin + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmBackAdmin)); + this.panel1 = new System.Windows.Forms.Panel(); + this.label3 = new System.Windows.Forms.Label(); + this.picLockSystem = new System.Windows.Forms.PictureBox(); + this.picExitSystem = new System.Windows.Forms.PictureBox(); + this.lblAdminName = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.picUserInfo = new System.Windows.Forms.PictureBox(); + this.cmsMain = new System.Windows.Forms.ContextMenuStrip(this.components); + this.tsmiWorkerManager = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiBackUpDatabase = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiRestoreDatabase = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiAdminSet = new System.Windows.Forms.ToolStripMenuItem(); + this.label1 = new System.Windows.Forms.Label(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.pnlRoomPage = new System.Windows.Forms.Panel(); + this.llbAddRoom = new System.Windows.Forms.LinkLabel(); + this.pnlWorkerPage = new System.Windows.Forms.Panel(); + this.llbUpLoadLog = new System.Windows.Forms.LinkLabel(); + this.llbWorkerManager = new System.Windows.Forms.LinkLabel(); + this.pnlCheckPage = new System.Windows.Forms.Panel(); + this.llbCheckForm = new System.Windows.Forms.LinkLabel(); + this.pnlCashPage = new System.Windows.Forms.Panel(); + this.llbHotelIn = new System.Windows.Forms.LinkLabel(); + this.llbCash = new System.Windows.Forms.LinkLabel(); + this.llbCheckMoney = new System.Windows.Forms.LinkLabel(); + this.panel3 = new System.Windows.Forms.Panel(); + this.picSet = new System.Windows.Forms.PictureBox(); + this.label4 = new System.Windows.Forms.Label(); + this.pictureBox2 = new System.Windows.Forms.PictureBox(); + this.pictureBox3 = new System.Windows.Forms.PictureBox(); + this.label5 = new System.Windows.Forms.Label(); + this.label6 = new System.Windows.Forms.Label(); + this.label7 = new System.Windows.Forms.Label(); + this.pictureBox10 = new System.Windows.Forms.PictureBox(); + this.pnlLook = new System.Windows.Forms.Panel(); + this.btnCash = new System.Windows.Forms.Button(); + this.btnWTI = new System.Windows.Forms.Button(); + this.btnCheckGroup = new System.Windows.Forms.Button(); + this.btnRoom = new System.Windows.Forms.Button(); + this.btnCusto = new System.Windows.Forms.Button(); + this.btnWorker = new System.Windows.Forms.Button(); + this.pnlWTI = new System.Windows.Forms.Panel(); + this.llbWTI = new System.Windows.Forms.LinkLabel(); + this.pnlCustoPage = new System.Windows.Forms.Panel(); + this.llbCashList = new System.Windows.Forms.LinkLabel(); + this.llbUpdateCusto = new System.Windows.Forms.LinkLabel(); + this.btnBackManager = new System.Windows.Forms.Button(); + this.pnlBack = new System.Windows.Forms.Panel(); + this.llbBackCash = new System.Windows.Forms.LinkLabel(); + this.llbSellThing = new System.Windows.Forms.LinkLabel(); + this.btnWorkerLog = new System.Windows.Forms.Button(); + this.panel1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.picLockSystem)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.picExitSystem)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.picUserInfo)).BeginInit(); + this.cmsMain.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.pnlRoomPage.SuspendLayout(); + this.pnlWorkerPage.SuspendLayout(); + this.pnlCheckPage.SuspendLayout(); + this.pnlCashPage.SuspendLayout(); + this.panel3.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.picSet)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit(); + this.pnlWTI.SuspendLayout(); + this.pnlCustoPage.SuspendLayout(); + this.pnlBack.SuspendLayout(); + this.SuspendLayout(); + // + // panel1 + // + this.panel1.Controls.Add(this.label3); + this.panel1.Controls.Add(this.picLockSystem); + this.panel1.Controls.Add(this.picExitSystem); + this.panel1.Controls.Add(this.lblAdminName); + this.panel1.Controls.Add(this.label2); + this.panel1.Controls.Add(this.picUserInfo); + this.panel1.Controls.Add(this.label1); + this.panel1.Controls.Add(this.pictureBox1); + this.panel1.Location = new System.Drawing.Point(6, 0); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(989, 56); + this.panel1.TabIndex = 0; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("华文中宋", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(192, 31); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(402, 16); + this.label3.TabIndex = 5; + this.label3.Text = "Top Sky Hotel Manager Security System Version1.0 Stable"; + // + // picLockSystem + // + this.picLockSystem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("picLockSystem.BackgroundImage"))); + this.picLockSystem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.picLockSystem.Location = new System.Drawing.Point(902, 10); + this.picLockSystem.Name = "picLockSystem"; + this.picLockSystem.Size = new System.Drawing.Size(33, 33); + this.picLockSystem.TabIndex = 4; + this.picLockSystem.TabStop = false; + this.picLockSystem.Click += new System.EventHandler(this.picLockSystem_Click); + // + // picExitSystem + // + this.picExitSystem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("picExitSystem.BackgroundImage"))); + this.picExitSystem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.picExitSystem.Location = new System.Drawing.Point(944, 10); + this.picExitSystem.Name = "picExitSystem"; + this.picExitSystem.Size = new System.Drawing.Size(33, 33); + this.picExitSystem.TabIndex = 3; + this.picExitSystem.TabStop = false; + this.picExitSystem.Click += new System.EventHandler(this.picExitSystem_Click); + // + // lblAdminName + // + this.lblAdminName.AutoSize = true; + this.lblAdminName.Font = new System.Drawing.Font("华文中宋", 10.5F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblAdminName.Location = new System.Drawing.Point(783, 21); + this.lblAdminName.Name = "lblAdminName"; + this.lblAdminName.Size = new System.Drawing.Size(53, 16); + this.lblAdminName.TabIndex = 4; + this.lblAdminName.Text = "Admin"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("华文中宋", 10.5F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(740, 21); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(50, 16); + this.label2.TabIndex = 3; + this.label2.Text = "您好!"; + // + // picUserInfo + // + this.picUserInfo.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("picUserInfo.BackgroundImage"))); + this.picUserInfo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.picUserInfo.ContextMenuStrip = this.cmsMain; + this.picUserInfo.Location = new System.Drawing.Point(703, 11); + this.picUserInfo.Name = "picUserInfo"; + this.picUserInfo.Size = new System.Drawing.Size(33, 33); + this.picUserInfo.TabIndex = 2; + this.picUserInfo.TabStop = false; + // + // cmsMain + // + this.cmsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.tsmiWorkerManager, + this.tsmiBackUpDatabase, + this.tsmiRestoreDatabase, + this.tsmiAdminSet}); + this.cmsMain.Name = "cmsMain"; + this.cmsMain.Size = new System.Drawing.Size(181, 114); + this.cmsMain.Opening += new System.ComponentModel.CancelEventHandler(this.cmsMain_Opening); + // + // tsmiWorkerManager + // + this.tsmiWorkerManager.Name = "tsmiWorkerManager"; + this.tsmiWorkerManager.Size = new System.Drawing.Size(180, 22); + this.tsmiWorkerManager.Text = "员工登入设置"; + this.tsmiWorkerManager.Click += new System.EventHandler(this.tsmiWorkerManager_Click); + // + // tsmiBackUpDatabase + // + this.tsmiBackUpDatabase.Name = "tsmiBackUpDatabase"; + this.tsmiBackUpDatabase.Size = new System.Drawing.Size(180, 22); + this.tsmiBackUpDatabase.Text = "数据库备份"; + this.tsmiBackUpDatabase.Click += new System.EventHandler(this.tsmiBackUpDatabase_Click); + // + // tsmiRestoreDatabase + // + this.tsmiRestoreDatabase.Name = "tsmiRestoreDatabase"; + this.tsmiRestoreDatabase.Size = new System.Drawing.Size(180, 22); + this.tsmiRestoreDatabase.Text = "数据库还原"; + this.tsmiRestoreDatabase.Click += new System.EventHandler(this.tsmiRestoreDatabase_Click); + // + // tsmiAdminSet + // + this.tsmiAdminSet.Name = "tsmiAdminSet"; + this.tsmiAdminSet.Size = new System.Drawing.Size(180, 22); + this.tsmiAdminSet.Text = "管理员设置"; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("华文中宋", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(274, 10); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(244, 16); + this.label1.TabIndex = 1; + this.label1.Text = "TS酒店管理后台安全系统V1.0 稳定版"; + // + // pictureBox1 + // + this.pictureBox1.BackColor = System.Drawing.Color.Transparent; + this.pictureBox1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.BackgroundImage"))); + this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox1.Location = new System.Drawing.Point(0, 0); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(84, 56); + this.pictureBox1.TabIndex = 0; + this.pictureBox1.TabStop = false; + // + // pnlRoomPage + // + this.pnlRoomPage.BackColor = System.Drawing.Color.Transparent; + this.pnlRoomPage.Controls.Add(this.llbAddRoom); + this.pnlRoomPage.Location = new System.Drawing.Point(313, 87); + this.pnlRoomPage.Name = "pnlRoomPage"; + this.pnlRoomPage.Size = new System.Drawing.Size(96, 25); + this.pnlRoomPage.TabIndex = 16; + this.pnlRoomPage.Visible = false; + // + // llbAddRoom + // + this.llbAddRoom.AutoSize = true; + this.llbAddRoom.BackColor = System.Drawing.Color.Transparent; + this.llbAddRoom.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.llbAddRoom.ForeColor = System.Drawing.Color.Black; + this.llbAddRoom.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.llbAddRoom.LinkColor = System.Drawing.Color.Black; + this.llbAddRoom.Location = new System.Drawing.Point(21, 2); + this.llbAddRoom.Name = "llbAddRoom"; + this.llbAddRoom.Size = new System.Drawing.Size(56, 17); + this.llbAddRoom.TabIndex = 18; + this.llbAddRoom.TabStop = true; + this.llbAddRoom.Text = "新增客房"; + this.llbAddRoom.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbAddRoom_LinkClicked); + // + // pnlWorkerPage + // + this.pnlWorkerPage.BackColor = System.Drawing.Color.Transparent; + this.pnlWorkerPage.Controls.Add(this.llbUpLoadLog); + this.pnlWorkerPage.Controls.Add(this.llbWorkerManager); + this.pnlWorkerPage.Location = new System.Drawing.Point(517, 87); + this.pnlWorkerPage.Name = "pnlWorkerPage"; + this.pnlWorkerPage.Size = new System.Drawing.Size(96, 55); + this.pnlWorkerPage.TabIndex = 15; + this.pnlWorkerPage.Visible = false; + // + // llbUpLoadLog + // + this.llbUpLoadLog.AutoSize = true; + this.llbUpLoadLog.BackColor = System.Drawing.Color.Transparent; + this.llbUpLoadLog.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.llbUpLoadLog.ForeColor = System.Drawing.Color.Black; + this.llbUpLoadLog.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.llbUpLoadLog.LinkColor = System.Drawing.Color.Black; + this.llbUpLoadLog.Location = new System.Drawing.Point(9, 33); + this.llbUpLoadLog.Name = "llbUpLoadLog"; + this.llbUpLoadLog.Size = new System.Drawing.Size(80, 17); + this.llbUpLoadLog.TabIndex = 17; + this.llbUpLoadLog.TabStop = true; + this.llbUpLoadLog.Text = "上传任命日志"; + this.llbUpLoadLog.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbUpLoadLog_LinkClicked); + // + // llbWorkerManager + // + this.llbWorkerManager.AutoSize = true; + this.llbWorkerManager.BackColor = System.Drawing.Color.Transparent; + this.llbWorkerManager.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.llbWorkerManager.ForeColor = System.Drawing.Color.Black; + this.llbWorkerManager.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.llbWorkerManager.LinkColor = System.Drawing.Color.Black; + this.llbWorkerManager.Location = new System.Drawing.Point(21, 2); + this.llbWorkerManager.Name = "llbWorkerManager"; + this.llbWorkerManager.Size = new System.Drawing.Size(56, 17); + this.llbWorkerManager.TabIndex = 15; + this.llbWorkerManager.TabStop = true; + this.llbWorkerManager.Text = "员工管理"; + this.llbWorkerManager.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbWorkerManager_LinkClicked); + // + // pnlCheckPage + // + this.pnlCheckPage.BackColor = System.Drawing.Color.Transparent; + this.pnlCheckPage.Controls.Add(this.llbCheckForm); + this.pnlCheckPage.Location = new System.Drawing.Point(211, 87); + this.pnlCheckPage.Name = "pnlCheckPage"; + this.pnlCheckPage.Size = new System.Drawing.Size(96, 25); + this.pnlCheckPage.TabIndex = 11; + this.pnlCheckPage.Visible = false; + // + // llbCheckForm + // + this.llbCheckForm.AutoSize = true; + this.llbCheckForm.BackColor = System.Drawing.Color.Transparent; + this.llbCheckForm.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.llbCheckForm.ForeColor = System.Drawing.Color.Black; + this.llbCheckForm.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.llbCheckForm.LinkColor = System.Drawing.Color.Black; + this.llbCheckForm.Location = new System.Drawing.Point(9, 3); + this.llbCheckForm.Name = "llbCheckForm"; + this.llbCheckForm.Size = new System.Drawing.Size(80, 17); + this.llbCheckForm.TabIndex = 4; + this.llbCheckForm.TabStop = true; + this.llbCheckForm.Text = "监管部门情况"; + this.llbCheckForm.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbCheckForm_LinkClicked); + // + // pnlCashPage + // + this.pnlCashPage.BackColor = System.Drawing.Color.Transparent; + this.pnlCashPage.Controls.Add(this.llbHotelIn); + this.pnlCashPage.Controls.Add(this.llbCash); + this.pnlCashPage.Controls.Add(this.llbCheckMoney); + this.pnlCashPage.Location = new System.Drawing.Point(6, 87); + this.pnlCashPage.Name = "pnlCashPage"; + this.pnlCashPage.Size = new System.Drawing.Size(97, 80); + this.pnlCashPage.TabIndex = 8; + this.pnlCashPage.Visible = false; + // + // llbHotelIn + // + this.llbHotelIn.AutoSize = true; + this.llbHotelIn.BackColor = System.Drawing.Color.Transparent; + this.llbHotelIn.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.llbHotelIn.ForeColor = System.Drawing.Color.Black; + this.llbHotelIn.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.llbHotelIn.LinkColor = System.Drawing.Color.Black; + this.llbHotelIn.Location = new System.Drawing.Point(9, 59); + this.llbHotelIn.Name = "llbHotelIn"; + this.llbHotelIn.Size = new System.Drawing.Size(80, 17); + this.llbHotelIn.TabIndex = 4; + this.llbHotelIn.TabStop = true; + this.llbHotelIn.Text = "酒店盈利情况"; + this.llbHotelIn.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbHotelIn_LinkClicked); + // + // llbCash + // + this.llbCash.AutoSize = true; + this.llbCash.BackColor = System.Drawing.Color.Transparent; + this.llbCash.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.llbCash.ForeColor = System.Drawing.Color.Black; + this.llbCash.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.llbCash.LinkColor = System.Drawing.Color.Black; + this.llbCash.Location = new System.Drawing.Point(9, 32); + this.llbCash.Name = "llbCash"; + this.llbCash.Size = new System.Drawing.Size(80, 17); + this.llbCash.TabIndex = 3; + this.llbCash.TabStop = true; + this.llbCash.Text = "内部财务账单"; + this.llbCash.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbCash_LinkClicked); + // + // llbCheckMoney + // + this.llbCheckMoney.AutoSize = true; + this.llbCheckMoney.BackColor = System.Drawing.Color.Transparent; + this.llbCheckMoney.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.llbCheckMoney.ForeColor = System.Drawing.Color.Black; + this.llbCheckMoney.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.llbCheckMoney.LinkColor = System.Drawing.Color.Black; + this.llbCheckMoney.Location = new System.Drawing.Point(9, 5); + this.llbCheckMoney.Name = "llbCheckMoney"; + this.llbCheckMoney.Size = new System.Drawing.Size(80, 17); + this.llbCheckMoney.TabIndex = 2; + this.llbCheckMoney.TabStop = true; + this.llbCheckMoney.Text = "员工工资账单"; + this.llbCheckMoney.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbCheckMoney_LinkClicked); + // + // panel3 + // + this.panel3.BackColor = System.Drawing.Color.Transparent; + this.panel3.Controls.Add(this.picSet); + this.panel3.Controls.Add(this.label4); + this.panel3.Controls.Add(this.pictureBox2); + this.panel3.Controls.Add(this.pictureBox3); + this.panel3.Controls.Add(this.label5); + this.panel3.Controls.Add(this.label6); + this.panel3.Controls.Add(this.label7); + this.panel3.Controls.Add(this.pictureBox10); + this.panel3.Location = new System.Drawing.Point(6, 0); + this.panel3.Name = "panel3"; + this.panel3.Size = new System.Drawing.Size(989, 56); + this.panel3.TabIndex = 0; + this.panel3.Paint += new System.Windows.Forms.PaintEventHandler(this.panel3_Paint); + // + // picSet + // + this.picSet.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("picSet.BackgroundImage"))); + this.picSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.picSet.ContextMenuStrip = this.cmsMain; + this.picSet.Location = new System.Drawing.Point(860, 10); + this.picSet.Name = "picSet"; + this.picSet.Size = new System.Drawing.Size(33, 33); + this.picSet.TabIndex = 6; + this.picSet.TabStop = false; + this.picSet.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picSet_MouseDown); + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("苹方-简", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.ForeColor = System.Drawing.Color.Black; + this.label4.Location = new System.Drawing.Point(212, 29); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(393, 20); + this.label4.TabIndex = 5; + this.label4.Text = "Top Sky Hotel Manager Security System Version1.2 Stable"; + // + // pictureBox2 + // + this.pictureBox2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox2.BackgroundImage"))); + this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox2.Location = new System.Drawing.Point(902, 10); + this.pictureBox2.Name = "pictureBox2"; + this.pictureBox2.Size = new System.Drawing.Size(33, 33); + this.pictureBox2.TabIndex = 4; + this.pictureBox2.TabStop = false; + this.pictureBox2.Click += new System.EventHandler(this.picLockSystem_Click); + // + // pictureBox3 + // + this.pictureBox3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox3.BackgroundImage"))); + this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox3.Location = new System.Drawing.Point(944, 10); + this.pictureBox3.Name = "pictureBox3"; + this.pictureBox3.Size = new System.Drawing.Size(33, 33); + this.pictureBox3.TabIndex = 3; + this.pictureBox3.TabStop = false; + this.pictureBox3.Click += new System.EventHandler(this.picExitSystem_Click); + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("苹方-简", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label5.ForeColor = System.Drawing.Color.Black; + this.label5.Location = new System.Drawing.Point(726, 21); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(50, 20); + this.label5.TabIndex = 4; + this.label5.Text = "Admin"; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Font = new System.Drawing.Font("苹方-简", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label6.ForeColor = System.Drawing.Color.Black; + this.label6.Location = new System.Drawing.Point(677, 21); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(51, 20); + this.label6.TabIndex = 3; + this.label6.Text = "您好!"; + // + // label7 + // + this.label7.AutoSize = true; + this.label7.Font = new System.Drawing.Font("苹方-简", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label7.ForeColor = System.Drawing.Color.Black; + this.label7.Location = new System.Drawing.Point(294, 8); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(241, 20); + this.label7.TabIndex = 1; + this.label7.Text = "TS酒店管理后台安全系统V1.2 稳定版"; + // + // pictureBox10 + // + this.pictureBox10.BackColor = System.Drawing.Color.Transparent; + this.pictureBox10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox10.BackgroundImage"))); + this.pictureBox10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox10.Location = new System.Drawing.Point(0, 0); + this.pictureBox10.Name = "pictureBox10"; + this.pictureBox10.Size = new System.Drawing.Size(84, 56); + this.pictureBox10.TabIndex = 0; + this.pictureBox10.TabStop = false; + this.pictureBox10.Click += new System.EventHandler(this.pictureBox10_Click); + // + // pnlLook + // + this.pnlLook.BackColor = System.Drawing.Color.Transparent; + this.pnlLook.Location = new System.Drawing.Point(6, 89); + this.pnlLook.Name = "pnlLook"; + this.pnlLook.Size = new System.Drawing.Size(989, 495); + this.pnlLook.TabIndex = 3; + this.pnlLook.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pnlLook_MouseClick); + // + // btnCash + // + this.btnCash.BackColor = System.Drawing.Color.Transparent; + this.btnCash.FlatAppearance.BorderSize = 0; + this.btnCash.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnCash.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnCash.ForeColor = System.Drawing.Color.Black; + this.btnCash.Location = new System.Drawing.Point(7, 57); + this.btnCash.Name = "btnCash"; + this.btnCash.Size = new System.Drawing.Size(96, 29); + this.btnCash.TabIndex = 4; + this.btnCash.Text = "财务信息"; + this.btnCash.UseVisualStyleBackColor = false; + this.btnCash.Click += new System.EventHandler(this.btnCash_Click); + this.btnCash.MouseEnter += new System.EventHandler(this.btnCash_MouseEnter); + this.btnCash.MouseLeave += new System.EventHandler(this.btnCash_MouseLeave); + // + // btnWTI + // + this.btnWTI.BackColor = System.Drawing.Color.Transparent; + this.btnWTI.FlatAppearance.BorderSize = 0; + this.btnWTI.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnWTI.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnWTI.ForeColor = System.Drawing.Color.Black; + this.btnWTI.Location = new System.Drawing.Point(109, 57); + this.btnWTI.Name = "btnWTI"; + this.btnWTI.Size = new System.Drawing.Size(96, 29); + this.btnWTI.TabIndex = 5; + this.btnWTI.Text = "水电信息"; + this.btnWTI.UseVisualStyleBackColor = false; + this.btnWTI.Click += new System.EventHandler(this.btnWTI_Click); + this.btnWTI.MouseEnter += new System.EventHandler(this.btnWTI_MouseEnter); + // + // btnCheckGroup + // + this.btnCheckGroup.BackColor = System.Drawing.Color.Transparent; + this.btnCheckGroup.FlatAppearance.BorderSize = 0; + this.btnCheckGroup.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnCheckGroup.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnCheckGroup.ForeColor = System.Drawing.Color.Black; + this.btnCheckGroup.Location = new System.Drawing.Point(211, 57); + this.btnCheckGroup.Name = "btnCheckGroup"; + this.btnCheckGroup.Size = new System.Drawing.Size(96, 29); + this.btnCheckGroup.TabIndex = 5; + this.btnCheckGroup.Text = "监管统计"; + this.btnCheckGroup.UseVisualStyleBackColor = false; + this.btnCheckGroup.Click += new System.EventHandler(this.btnCheckGroup_Click); + // + // btnRoom + // + this.btnRoom.BackColor = System.Drawing.Color.Transparent; + this.btnRoom.FlatAppearance.BorderSize = 0; + this.btnRoom.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnRoom.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnRoom.ForeColor = System.Drawing.Color.Black; + this.btnRoom.Location = new System.Drawing.Point(313, 57); + this.btnRoom.Name = "btnRoom"; + this.btnRoom.Size = new System.Drawing.Size(96, 29); + this.btnRoom.TabIndex = 5; + this.btnRoom.Text = "客房管理"; + this.btnRoom.UseVisualStyleBackColor = false; + this.btnRoom.Click += new System.EventHandler(this.btnRoom_Click); + // + // btnCusto + // + this.btnCusto.BackColor = System.Drawing.Color.Transparent; + this.btnCusto.FlatAppearance.BorderSize = 0; + this.btnCusto.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnCusto.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnCusto.ForeColor = System.Drawing.Color.Black; + this.btnCusto.Location = new System.Drawing.Point(415, 57); + this.btnCusto.Name = "btnCusto"; + this.btnCusto.Size = new System.Drawing.Size(96, 29); + this.btnCusto.TabIndex = 5; + this.btnCusto.Text = "客户管理"; + this.btnCusto.UseVisualStyleBackColor = false; + this.btnCusto.Click += new System.EventHandler(this.btnCusto_Click); + // + // btnWorker + // + this.btnWorker.BackColor = System.Drawing.Color.Transparent; + this.btnWorker.FlatAppearance.BorderSize = 0; + this.btnWorker.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnWorker.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnWorker.ForeColor = System.Drawing.Color.Black; + this.btnWorker.Location = new System.Drawing.Point(517, 57); + this.btnWorker.Name = "btnWorker"; + this.btnWorker.Size = new System.Drawing.Size(96, 29); + this.btnWorker.TabIndex = 5; + this.btnWorker.Text = "人事管理"; + this.btnWorker.UseVisualStyleBackColor = false; + this.btnWorker.Click += new System.EventHandler(this.btnWorker_Click); + // + // pnlWTI + // + this.pnlWTI.BackColor = System.Drawing.Color.Transparent; + this.pnlWTI.Controls.Add(this.llbWTI); + this.pnlWTI.Location = new System.Drawing.Point(109, 87); + this.pnlWTI.Name = "pnlWTI"; + this.pnlWTI.Size = new System.Drawing.Size(97, 25); + this.pnlWTI.TabIndex = 17; + this.pnlWTI.Visible = false; + // + // llbWTI + // + this.llbWTI.AutoSize = true; + this.llbWTI.BackColor = System.Drawing.Color.Transparent; + this.llbWTI.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.llbWTI.ForeColor = System.Drawing.Color.Black; + this.llbWTI.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.llbWTI.LinkColor = System.Drawing.Color.Black; + this.llbWTI.Location = new System.Drawing.Point(21, 3); + this.llbWTI.Name = "llbWTI"; + this.llbWTI.Size = new System.Drawing.Size(56, 17); + this.llbWTI.TabIndex = 0; + this.llbWTI.TabStop = true; + this.llbWTI.Text = "水电查看"; + this.llbWTI.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbWTI_LinkClicked); + // + // pnlCustoPage + // + this.pnlCustoPage.BackColor = System.Drawing.Color.Transparent; + this.pnlCustoPage.Controls.Add(this.llbCashList); + this.pnlCustoPage.Controls.Add(this.llbUpdateCusto); + this.pnlCustoPage.Location = new System.Drawing.Point(415, 87); + this.pnlCustoPage.Name = "pnlCustoPage"; + this.pnlCustoPage.Size = new System.Drawing.Size(96, 55); + this.pnlCustoPage.TabIndex = 18; + this.pnlCustoPage.Visible = false; + // + // llbCashList + // + this.llbCashList.AutoSize = true; + this.llbCashList.BackColor = System.Drawing.Color.Transparent; + this.llbCashList.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.llbCashList.ForeColor = System.Drawing.Color.Black; + this.llbCashList.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.llbCashList.LinkColor = System.Drawing.Color.Black; + this.llbCashList.Location = new System.Drawing.Point(9, 33); + this.llbCashList.Name = "llbCashList"; + this.llbCashList.Size = new System.Drawing.Size(80, 17); + this.llbCashList.TabIndex = 1; + this.llbCashList.TabStop = true; + this.llbCashList.Text = "顾客消费账单"; + this.llbCashList.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbCashList_LinkClicked); + // + // llbUpdateCusto + // + this.llbUpdateCusto.AutoSize = true; + this.llbUpdateCusto.BackColor = System.Drawing.Color.Transparent; + this.llbUpdateCusto.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.llbUpdateCusto.ForeColor = System.Drawing.Color.Black; + this.llbUpdateCusto.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.llbUpdateCusto.LinkColor = System.Drawing.Color.Black; + this.llbUpdateCusto.Location = new System.Drawing.Point(9, 2); + this.llbUpdateCusto.Name = "llbUpdateCusto"; + this.llbUpdateCusto.Size = new System.Drawing.Size(80, 17); + this.llbUpdateCusto.TabIndex = 18; + this.llbUpdateCusto.TabStop = true; + this.llbUpdateCusto.Text = "客户信息管理"; + this.llbUpdateCusto.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbUpdateCusto_LinkClicked); + // + // btnBackManager + // + this.btnBackManager.BackColor = System.Drawing.Color.Transparent; + this.btnBackManager.FlatAppearance.BorderSize = 0; + this.btnBackManager.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnBackManager.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnBackManager.ForeColor = System.Drawing.Color.Black; + this.btnBackManager.Location = new System.Drawing.Point(619, 57); + this.btnBackManager.Name = "btnBackManager"; + this.btnBackManager.Size = new System.Drawing.Size(96, 29); + this.btnBackManager.TabIndex = 5; + this.btnBackManager.Text = "物资管理"; + this.btnBackManager.UseVisualStyleBackColor = false; + this.btnBackManager.Click += new System.EventHandler(this.btnBackManager_Click); + // + // pnlBack + // + this.pnlBack.BackColor = System.Drawing.Color.Transparent; + this.pnlBack.Controls.Add(this.llbBackCash); + this.pnlBack.Controls.Add(this.llbSellThing); + this.pnlBack.Location = new System.Drawing.Point(619, 87); + this.pnlBack.Name = "pnlBack"; + this.pnlBack.Size = new System.Drawing.Size(97, 55); + this.pnlBack.TabIndex = 18; + this.pnlBack.Visible = false; + // + // llbBackCash + // + this.llbBackCash.AutoSize = true; + this.llbBackCash.BackColor = System.Drawing.Color.Transparent; + this.llbBackCash.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.llbBackCash.ForeColor = System.Drawing.Color.Black; + this.llbBackCash.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.llbBackCash.LinkColor = System.Drawing.Color.Black; + this.llbBackCash.Location = new System.Drawing.Point(21, 33); + this.llbBackCash.Name = "llbBackCash"; + this.llbBackCash.Size = new System.Drawing.Size(56, 17); + this.llbBackCash.TabIndex = 1; + this.llbBackCash.TabStop = true; + this.llbBackCash.Text = "仓库物资"; + this.llbBackCash.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbBackCash_LinkClicked); + // + // llbSellThing + // + this.llbSellThing.AutoSize = true; + this.llbSellThing.BackColor = System.Drawing.Color.Transparent; + this.llbSellThing.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.llbSellThing.ForeColor = System.Drawing.Color.Black; + this.llbSellThing.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.llbSellThing.LinkColor = System.Drawing.Color.Black; + this.llbSellThing.Location = new System.Drawing.Point(21, 3); + this.llbSellThing.Name = "llbSellThing"; + this.llbSellThing.Size = new System.Drawing.Size(56, 17); + this.llbSellThing.TabIndex = 0; + this.llbSellThing.TabStop = true; + this.llbSellThing.Text = "商品管理"; + this.llbSellThing.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbSellThing_LinkClicked); + // + // btnWorkerLog + // + this.btnWorkerLog.BackColor = System.Drawing.Color.Transparent; + this.btnWorkerLog.FlatAppearance.BorderSize = 0; + this.btnWorkerLog.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnWorkerLog.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnWorkerLog.ForeColor = System.Drawing.Color.Black; + this.btnWorkerLog.Location = new System.Drawing.Point(721, 57); + this.btnWorkerLog.Name = "btnWorkerLog"; + this.btnWorkerLog.Size = new System.Drawing.Size(121, 29); + this.btnWorkerLog.TabIndex = 5; + this.btnWorkerLog.Text = "员工操作日志"; + this.btnWorkerLog.UseVisualStyleBackColor = false; + this.btnWorkerLog.Click += new System.EventHandler(this.btnWorkerLog_Click); + // + // FrmBackAdmin + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.SkyBlue; + this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage"))); + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.ClientSize = new System.Drawing.Size(1000, 589); + this.Controls.Add(this.pnlBack); + this.Controls.Add(this.pnlCustoPage); + this.Controls.Add(this.pnlCashPage); + this.Controls.Add(this.pnlWTI); + this.Controls.Add(this.pnlRoomPage); + this.Controls.Add(this.pnlCheckPage); + this.Controls.Add(this.pnlWorkerPage); + this.Controls.Add(this.btnWorkerLog); + this.Controls.Add(this.btnBackManager); + this.Controls.Add(this.btnWorker); + this.Controls.Add(this.btnCusto); + this.Controls.Add(this.btnRoom); + this.Controls.Add(this.btnCheckGroup); + this.Controls.Add(this.btnWTI); + this.Controls.Add(this.btnCash); + this.Controls.Add(this.pnlLook); + this.Controls.Add(this.panel3); + this.Controls.Add(this.panel1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Name = "FrmBackAdmin"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "TS酒店管理后台安全系统V1.0 稳定版"; + this.Deactivate += new System.EventHandler(this.FrmBackAdmin_Deactivate); + this.Load += new System.EventHandler(this.FrmBackAdmin_Load); + this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.FrmBackAdmin_MouseClick); + this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.FrmBackAdmin_MouseDown); + this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.FrmBackAdmin_MouseMove); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.picLockSystem)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.picExitSystem)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.picUserInfo)).EndInit(); + this.cmsMain.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.pnlRoomPage.ResumeLayout(false); + this.pnlRoomPage.PerformLayout(); + this.pnlWorkerPage.ResumeLayout(false); + this.pnlWorkerPage.PerformLayout(); + this.pnlCheckPage.ResumeLayout(false); + this.pnlCheckPage.PerformLayout(); + this.pnlCashPage.ResumeLayout(false); + this.pnlCashPage.PerformLayout(); + this.panel3.ResumeLayout(false); + this.panel3.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.picSet)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit(); + this.pnlWTI.ResumeLayout(false); + this.pnlWTI.PerformLayout(); + this.pnlCustoPage.ResumeLayout(false); + this.pnlCustoPage.PerformLayout(); + this.pnlBack.ResumeLayout(false); + this.pnlBack.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.Label lblAdminName; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.PictureBox picUserInfo; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.PictureBox pictureBox1; + private System.Windows.Forms.PictureBox picExitSystem; + private System.Windows.Forms.PictureBox picLockSystem; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Panel pnlCashPage; + private System.Windows.Forms.Panel pnlCheckPage; + private System.Windows.Forms.Panel pnlRoomPage; + private System.Windows.Forms.Panel pnlWorkerPage; + private System.Windows.Forms.LinkLabel llbAddRoom; + private System.Windows.Forms.LinkLabel llbUpLoadLog; + private System.Windows.Forms.LinkLabel llbWorkerManager; + private System.Windows.Forms.LinkLabel llbCheckForm; + private System.Windows.Forms.LinkLabel llbCheckMoney; + private System.Windows.Forms.ContextMenuStrip cmsMain; + private System.Windows.Forms.ToolStripMenuItem tsmiWorkerManager; + private System.Windows.Forms.Panel panel3; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.PictureBox pictureBox2; + private System.Windows.Forms.PictureBox pictureBox3; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.Label label6; + private System.Windows.Forms.Label label7; + private System.Windows.Forms.PictureBox pictureBox10; + private System.Windows.Forms.ToolStripMenuItem tsmiBackUpDatabase; + private System.Windows.Forms.ToolStripMenuItem tsmiRestoreDatabase; + private System.Windows.Forms.PictureBox picSet; + private System.Windows.Forms.Panel pnlLook; + private System.Windows.Forms.Panel pnlCustoPage; + private System.Windows.Forms.LinkLabel llbCashList; + private System.Windows.Forms.LinkLabel llbUpdateCusto; + private System.Windows.Forms.Panel pnlWTI; + private System.Windows.Forms.LinkLabel llbWTI; + private System.Windows.Forms.Button btnCash; + private System.Windows.Forms.Button btnWTI; + private System.Windows.Forms.Button btnCheckGroup; + private System.Windows.Forms.Button btnRoom; + private System.Windows.Forms.Button btnCusto; + private System.Windows.Forms.Button btnWorker; + private System.Windows.Forms.Button btnBackManager; + private System.Windows.Forms.Panel pnlBack; + private System.Windows.Forms.LinkLabel llbBackCash; + private System.Windows.Forms.LinkLabel llbSellThing; + private System.Windows.Forms.Button btnWorkerLog; + private System.Windows.Forms.LinkLabel llbHotelIn; + private System.Windows.Forms.LinkLabel llbCash; + private System.Windows.Forms.ToolStripMenuItem tsmiAdminSet; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmBackAdmin.cs b/SYS.FormUI/AppFunction/FrmBackAdmin.cs new file mode 100644 index 0000000000000000000000000000000000000000..a790c7eb9d06555616814d95968294cd11b18de6 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmBackAdmin.cs @@ -0,0 +1,479 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; +using SYS.Core; + +namespace SYS.FormUI +{ + public partial class FrmBackAdmin : Form + { + public FrmBackAdmin() + { + InitializeComponent(); + } + + public static string wk_AdminGroup; + + #region 记录鼠标和窗体坐标的方法 + private Point mouseOld;//鼠标旧坐标 + private Point formOld;//窗体旧坐标 + #endregion + private void picExitSystem_Click(object sender, EventArgs e) + { + this.Close(); + + } + + private void picLockSystem_Click(object sender, EventArgs e) + { + + if (MessageBox.Show("确定要锁定屏幕吗?锁定后不能做任何操作!", "锁屏", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == DialogResult.OK) + { + new FrmUnLockSystem().ShowDialog(); + } + + + } + + private void llbCheckGroup_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + + } + + private void llbUpLoadLog_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + + } + + private void llbWorkerManager_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + + + } + + private void llbAddRoom_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + pnlLook.Controls.Clear(); + FrmAddRoom frm1 = new FrmAddRoom(); + frm1.TopLevel = false; + pnlLook.Controls.Add(frm1); + frm1.Show(); + pnlRoomPage.Visible = false; + } + + private void FrmBackAdmin_Deactivate(object sender, EventArgs e) + { + + } + + private void llbWorkerUp_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + + } + + private void llbCashList_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + pnlLook.Controls.Clear(); + FrmCustoSpend frm1 = new FrmCustoSpend(); + frm1.TopLevel = false; + pnlLook.Controls.Add(frm1); + frm1.Show(); + pnlCustoPage.Visible = false; + } + + private void FrmBackAdmin_Load(object sender, EventArgs e) + { + pnlLook.Controls.Clear(); + FrmCash frm1 = new FrmCash(); + frm1.TopLevel = false; + pnlLook.Controls.Add(frm1); + frm1.Show(); + pnlCustoPage.Visible = false; + + label5.Text = AdminInfo.Name; + //label8.Text = "【"+AdminInfo.admingroup+"】"; + + if (AdminInfo.Type == "总经理") + { + btnCash.Enabled = true; + btnWTI.Enabled = true; + btnCheckGroup.Enabled = true; + btnRoom.Enabled = true; + btnCusto.Enabled = true; + btnBackManager.Enabled = true; + btnWorker.Enabled = true; + btnWorkerLog.Enabled = true; + } + else if (AdminInfo.Type == "财务经理") + { + btnCash.Enabled = true; + btnWTI.Enabled = true; + btnCheckGroup.Enabled = false; + btnRoom.Enabled = true; + btnCusto.Enabled = true; + btnBackManager.Enabled = true; + btnWorker.Enabled = true; + btnWorkerLog.Enabled = false; + } + else if (AdminInfo.Type == "酒店经理") + { + btnCash.Enabled = true; + btnWTI.Enabled = true; + btnCheckGroup.Enabled = false; + btnRoom.Enabled = true; + btnCusto.Enabled = true; + btnBackManager.Enabled = true; + btnWorker.Enabled = true; + btnWorkerLog.Enabled = false; + } + } + + private void picSet_MouseDown(object sender, MouseEventArgs e) + { + cmsMain.Show(Cursor.Position); + } + + private void tsmiBackUpDatabase_Click(object sender, EventArgs e) + { + FrmBackupDatabase frm = new FrmBackupDatabase(); + frm.Show(); + } + + private void btnCash_MouseEnter(object sender, EventArgs e) + { + + } + + private void btnCash_MouseLeave(object sender, EventArgs e) + { + + } + + private void btnWTI_MouseEnter(object sender, EventArgs e) + { + + } + + private void btnCash_Click(object sender, EventArgs e) + { + pnlRoomPage.Visible = false; + pnlCheckPage.Visible = false; + pnlWTI.Visible = false; + if (pnlCashPage.Visible == true) + { + pnlCashPage.Visible = false; + } + else if (pnlCashPage.Visible == false) + { + pnlCashPage.Visible = true; + } + pnlCustoPage.Visible = false; + pnlWorkerPage.Visible = false; + pnlBack.Visible = false; + } + + private void btnWTI_Click(object sender, EventArgs e) + { + pnlRoomPage.Visible = false; + pnlCheckPage.Visible = false; + if (pnlWTI.Visible == true) + { + pnlWTI.Visible = false; + } + else if (pnlWTI.Visible == false) + { + pnlWTI.Visible = true; + } + pnlCashPage.Visible = false; + pnlCustoPage.Visible = false; + pnlWorkerPage.Visible = false; + pnlBack.Visible = false; + + } + + private void btnCheckGroup_Click(object sender, EventArgs e) + { + pnlRoomPage.Visible = false; + if (pnlCheckPage.Visible == true) + { + pnlCheckPage.Visible = false; + } + else if (pnlCheckPage.Visible == false) + { + pnlCheckPage.Visible = true; + } + pnlWTI.Visible = false; + pnlCashPage.Visible = false; + pnlCustoPage.Visible = false; + pnlWorkerPage.Visible = false; + pnlBack.Visible = false; + + } + + private void btnRoom_Click(object sender, EventArgs e) + { + if (pnlRoomPage.Visible == true) + { + pnlRoomPage.Visible = false; + } + else if (pnlRoomPage.Visible == false) + { + pnlRoomPage.Visible = true; + } + pnlBack.Visible = false; + pnlCheckPage.Visible = false; + pnlWTI.Visible = false; + pnlCashPage.Visible = false; + pnlCustoPage.Visible = false; + pnlWorkerPage.Visible = false; + + } + + private void btnCusto_Click(object sender, EventArgs e) + { + pnlRoomPage.Visible = false; + pnlCheckPage.Visible = false; + pnlWTI.Visible = false; + pnlCashPage.Visible = false; + pnlBack.Visible = false; + if (pnlCustoPage.Visible == true) + { + pnlCustoPage.Visible = false; + } + else if (pnlCustoPage.Visible == false) + { + pnlCustoPage.Visible = true; + } + pnlWorkerPage.Visible = false; + + } + + private void btnWorker_Click(object sender, EventArgs e) + { + pnlRoomPage.Visible = false; + pnlCheckPage.Visible = false; + pnlWTI.Visible = false; + pnlCashPage.Visible = false; + pnlCustoPage.Visible = false; + pnlBack.Visible = false; + if (pnlWorkerPage.Visible == true) + { + pnlWorkerPage.Visible = false; + } + else if (pnlWorkerPage.Visible == false) + { + pnlWorkerPage.Visible = true; + } + + } + + private void llbWTI_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + pnlLook.Controls.Clear(); + WtiInfo frm1 = new WtiInfo(); + frm1.TopLevel = false; + pnlLook.Controls.Add(frm1); + frm1.Show(); + pnlWTI.Visible = false; + } + + private void pictureBox10_Click(object sender, EventArgs e) + { + + } + + private void pnlLook_MouseClick(object sender, MouseEventArgs e) + { + + } + + private void FrmBackAdmin_MouseClick(object sender, MouseEventArgs e) + { + pnlRoomPage.Visible = false; + pnlCheckPage.Visible = false; + pnlWTI.Visible = false; + pnlCashPage.Visible = false; + pnlCustoPage.Visible = false; + pnlWorkerPage.Visible = false; + pnlBack.Visible = false; + } + + + + private void llbUpdateCusto_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + pnlLook.Controls.Clear(); + FrmCustoManager frm1 = new FrmCustoManager(); + frm1.TopLevel = false; + pnlLook.Controls.Add(frm1); + frm1.Show(); + pnlCustoPage.Visible = false; + } + + private void llbCheckForm_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + pnlLook.Controls.Clear(); + FrmCheckInfo frm1 = new FrmCheckInfo(); + frm1.TopLevel = false; + pnlLook.Controls.Add(frm1); + frm1.Show(); + pnlCheckPage.Visible = false; + } + + private void llbCheckMoney_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + + } + + private void btnBackManager_Click(object sender, EventArgs e) + { + pnlRoomPage.Visible = false; + pnlCheckPage.Visible = false; + pnlWTI.Visible = false; + pnlCashPage.Visible = false; + pnlCustoPage.Visible = false; + pnlWorkerPage.Visible = false; + if (pnlBack.Visible == true) + { + pnlBack.Visible = false; + } + else if (pnlBack.Visible == false) + { + pnlBack.Visible = true; + } + } + + private void llbSellThing_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + pnlLook.Controls.Clear(); + FrmSellThingManager frm1 = new FrmSellThingManager(); + frm1.TopLevel = false; + pnlLook.Controls.Add(frm1); + frm1.Show(); + pnlBack.Visible = false; + } + + private void llbCash_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + try + { + pnlLook.Controls.Clear(); + FrmCash frm1 = new FrmCash(); + frm1.TopLevel = false; + pnlLook.Controls.Add(frm1); + frm1.Show(); + pnlCashPage.Visible = false; + } + catch + { + pnlLook.Controls.Clear(); + FrmCash frm1 = new FrmCash(); + frm1.TopLevel = false; + pnlLook.Controls.Add(frm1); + frm1.Show(); + pnlCashPage.Visible = false; + } + finally + { + pnlLook.Controls.Clear(); + FrmCash frm1 = new FrmCash(); + frm1.TopLevel = false; + pnlLook.Controls.Add(frm1); + frm1.Show(); + pnlCashPage.Visible = false; + } + + } + + private void llbBackCash_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + + } + + private void panel3_Paint(object sender, PaintEventArgs e) + { + + } + + private void btnWorkerLog_Click(object sender, EventArgs e) + { + pnlRoomPage.Visible = false; + pnlCheckPage.Visible = false; + pnlWTI.Visible = false; + pnlCashPage.Visible = false; + pnlCustoPage.Visible = false; + pnlWorkerPage.Visible = false; + pnlLook.Controls.Clear(); + FrmOperation frm1 = new FrmOperation(); + frm1.TopLevel = false; + pnlLook.Controls.Add(frm1); + frm1.Show(); + } + + private void tsmiRestoreDatabase_Click(object sender, EventArgs e) + { + FrmRestoreDatabase frm1 = new FrmRestoreDatabase(); + frm1.Show(); + } + + private void cmsMain_Opening(object sender, CancelEventArgs e) + { + if (AdminInfo.Type == "总经理") + { + tsmiBackUpDatabase.Enabled = true; + tsmiRestoreDatabase.Enabled = true; + tsmiWorkerManager.Enabled = true; + } + else if (AdminInfo.Type == "经理") + { + tsmiBackUpDatabase.Enabled = false; + tsmiRestoreDatabase.Enabled = false; + tsmiWorkerManager.Enabled = true; + } + if (AdminInfo.Type == "监管小组") + { + tsmiBackUpDatabase.Enabled = false; + tsmiRestoreDatabase.Enabled = false; + tsmiWorkerManager.Enabled = false; + } + } + + private void FrmBackAdmin_MouseDown(object sender, MouseEventArgs e) + { + formOld = this.Location; + mouseOld = MousePosition; + } + + private void FrmBackAdmin_MouseMove(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + Point mouseNew = MousePosition; + int moveX = mouseNew.X - mouseOld.X; + int moveY = mouseNew.Y - mouseOld.Y; + this.Location = new Point(formOld.X + moveX, formOld.Y + moveY); + } + } + + private void llbHotelIn_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + pnlRoomPage.Visible = false; + pnlCheckPage.Visible = false; + pnlWTI.Visible = false; + pnlCashPage.Visible = false; + pnlCustoPage.Visible = false; + pnlWorkerPage.Visible = false; + pnlLook.Controls.Clear(); + FrmChart frm1 = new FrmChart(); + frm1.TopLevel = false; + pnlLook.Controls.Add(frm1); + frm1.Show(); + } + + private void tsmiWorkerManager_Click(object sender, EventArgs e) + { + + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmBackAdmin.resx b/SYS.FormUI/AppFunction/FrmBackAdmin.resx new file mode 100644 index 0000000000000000000000000000000000000000..8238bada884ca571fbe6a041dd72e7765fcd4064 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmBackAdmin.resx @@ -0,0 +1,14396 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + 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 + QmCC + + + + + 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 + YII= + + + + 17, 17 + + + + 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 + rkJggg== + + + + + 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 + QmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAAS0AAADfCAYAAACjzoVIAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH + DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp + bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis + iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ + sf0ABniAAaYAMFnpqb5B7sFAJC83F3q6yAn8i94MAUj8vmXo6U+ng/9P0qxUvgAAyF/E5mxOOkvE+SJO + yhSkiu0zIqbGJIoZRomZL0pQxHJijlvkpZ99FtlRzOxkHlvE4pxT2clsMfeIeHuGkCNixEfEBRlcTqaI + b4tYM0mYzBXxW3FsMoeZDgCKJLYLOKx4EZuImMQPDnQR8XIAcKS4LzjmCxZwsgTiQ7mkpGbzuXHxArou + S49uam3NoHtyMpM4AoGhP5OVyOSz6S4pyalMXjYAi2f+LBlxbemiIluaWltaGpoZmX5RqP+6+Dcl7u0i + vQr43DOI1veH7a/8UuoAYMyKarPrD1vMfgA6tgIgd/8Pm+YhACRFfWu/8cV5aOJ5iRcIUm2MjTMzM424 + HJaRuKC/6386/A198T0j8Xa/l4fuyollCpMEdHHdWClJKUI+PT2VyeLQDf88xP848K/zWBrIieXwOTxR + RKhoyri8OFG7eWyugJvCo3N5/6mJ/zDsT1qca5Eo9Z8ANcoISN2gAuTnPoCiEAESeVDc9d/75oMPBeKb + F6Y6sTj3nwX9+65wifiRzo37HOcSGExnCfkZi2viawnQgAAkARXIAxWgAXSBITADVsAWOAI3sAL4gWAQ + DtYCFogHyYAPMkEu2AwKQBHYBfaCSlAD6kEjaAEnQAc4DS6Ay+A6uAnugAdgBIyD52AGvAHzEARhITJE + geQhVUgLMoDMIAZkD7lBPlAgFA5FQ3EQDxJCudAWqAgqhSqhWqgR+hY6BV2ArkID0D1oFJqCfoXewwhM + gqmwMqwNG8MM2An2hoPhNXAcnAbnwPnwTrgCroOPwe3wBfg6fAcegZ/DswhAiAgNUUMMEQbigvghEUgs + wkc2IIVIOVKHtCBdSC9yCxlBppF3KAyKgqKjDFG2KE9UCIqFSkNtQBWjKlFHUe2oHtQt1ChqBvUJTUYr + oQ3QNmgv9Cp0HDoTXYAuRzeg29CX0HfQ4+g3GAyGhtHBWGE8MeGYBMw6TDHmAKYVcx4zgBnDzGKxWHms + AdYO64dlYgXYAux+7DHsOewgdhz7FkfEqeLMcO64CBwPl4crxzXhzuIGcRO4ebwUXgtvg/fDs/HZ+BJ8 + Pb4LfwM/jp8nSBN0CHaEYEICYTOhgtBCuER4SHhFJBLVidbEACKXuIlYQTxOvEIcJb4jyZD0SS6kSJKQ + tJN0hHSedI/0ikwma5MdyRFkAXknuZF8kfyY/FaCImEk4SXBltgoUSXRLjEo8UISL6kl6SS5VjJHslzy + pOQNyWkpvJS2lIsUU2qDVJXUKalhqVlpirSptJ90snSxdJP0VelJGayMtoybDFsmX+awzEWZMQpC0aC4 + UFiULZR6yiXKOBVD1aF6UROoRdRvqP3UGVkZ2WWyobJZslWyZ2RHaAhNm+ZFS6KV0E7QhmjvlygvcVrC + WbJjScuSwSVzcopyjnIcuUK5Vrk7cu/l6fJu8onyu+U75B8poBT0FQIUMhUOKlxSmFakKtoqshQLFU8o + 3leClfSVApXWKR1W6lOaVVZR9lBOVd6vfFF5WoWm4qiSoFKmclZlSpWiaq/KVS1TPaf6jC5Ld6In0Svo + PfQZNSU1TzWhWq1av9q8uo56iHqeeqv6Iw2CBkMjVqNMo1tjRlNV01czV7NZ874WXouhFa+1T6tXa05b + RztMe5t2h/akjpyOl06OTrPOQ12yroNumm6d7m09jB5DL1HvgN5NfVjfQj9ev0r/hgFsYGnANThgMLAU + vdR6KW9p3dJhQ5Khk2GGYbPhqBHNyMcoz6jD6IWxpnGE8W7jXuNPJhYmSSb1Jg9MZUxXmOaZdpn+aqZv + xjKrMrttTjZ3N99o3mn+cpnBMs6yg8vuWlAsfC22WXRbfLS0suRbtlhOWWlaRVtVWw0zqAx/RjHjijXa + 2tl6o/Vp63c2ljYCmxM2v9ga2ibaNtlOLtdZzllev3zMTt2OaVdrN2JPt4+2P2Q/4qDmwHSoc3jiqOHI + dmxwnHDSc0pwOub0wtnEme/c5jznYuOy3uW8K+Lq4Vro2u8m4xbiVun22F3dPc692X3Gw8Jjncd5T7Sn + t+duz2EvZS+WV6PXzAqrFetX9HiTvIO8K72f+Oj78H26fGHfFb57fB+u1FrJW9nhB/y8/Pb4PfLX8U/z + /z4AE+AfUBXwNNA0MDewN4gSFBXUFPQm2Dm4JPhBiG6IMKQ7VDI0MrQxdC7MNaw0bGSV8ar1q66HK4Rz + wzsjsBGhEQ0Rs6vdVu9dPR5pEVkQObRGZ03WmqtrFdYmrT0TJRnFjDoZjY4Oi26K/sD0Y9YxZ2O8Yqpj + ZlgurH2s52xHdhl7imPHKeVMxNrFlsZOxtnF7YmbineIL4+f5rpwK7kvEzwTahLmEv0SjyQuJIUltSbj + kqOTT/FkeIm8nhSVlKyUgVSD1ILUkTSbtL1pM3xvfkM6lL4mvVNAFf1M9Ql1hVuFoxn2GVUZbzNDM09m + SWfxsvqy9bN3ZE/kuOd8vQ61jrWuO1ctd3Pu6Hqn9bUboA0xG7o3amzM3zi+yWPT0c2EzYmbf8gzySvN + e70lbEtXvnL+pvyxrR5bmwskCvgFw9tst9VsR23nbu/fYb5j/45PhezCa0UmReVFH4pZxde+Mv2q4quF + nbE7+0ssSw7uwuzi7Rra7bD7aKl0aU7p2B7fPe1l9LLCstd7o/ZeLV9WXrOPsE+4b6TCp6Jzv+b+Xfs/ + VMZX3qlyrmqtVqreUT13gH1g8KDjwZYa5ZqimveHuIfu1nrUttdp15UfxhzOOPy0PrS+92vG140NCg1F + DR+P8I6MHA082tNo1djYpNRU0gw3C5unjkUeu/mN6zedLYYtta201qLj4Ljw+LNvo78dOuF9ovsk42TL + d1rfVbdR2grbofbs9pmO+I6RzvDOgVMrTnV32Xa1fW/0/ZHTaqerzsieKTlLOJt/duFczrnZ86nnpy/E + XRjrjup+cHHVxds9AT39l7wvXbnsfvlir1PvuSt2V05ftbl66hrjWsd1y+vtfRZ9bT9Y/NDWb9nffsPq + RudN65tdA8sHzg46DF645Xrr8m2v29fvrLwzMBQydHc4cnjkLvvu5L2key/vZ9yff7DpIfph4SOpR+WP + lR7X/aj3Y+uI5ciZUdfRvidBTx6Mscae/5T+04fx/Kfkp+UTqhONk2aTp6fcp24+W/1s/Hnq8/npgp+l + f65+ofviu18cf+mbWTUz/pL/cuHX4lfyr468Xva6e9Z/9vGb5Dfzc4Vv5d8efcd41/s+7P3EfOYH7IeK + j3ofuz55f3q4kLyw8Bv3hPP74uYdwgAAAAlwSFlzAAALEwAACxMBAJqcGAAAXV9JREFUeF7tnXecZFWZ + /nsieVBAERRFcJUFFV1ddxd11WXF1fW3rp/VNawoIk5ABMlDFJCchig5Ss5xhiEMA8PATHdP6u7p3NNx + OudQ+Z739zyn6vTcrj7dXZ2ru84f30/dOjefe97nvu9JN0tEHA6HY8ZgTXQ4HI50xZrocDgc6Yo10eFw + ONIVa6LD4XCkK9ZEh8PhSFesiQ6Hw5GuWBMdDocjXbEmOhwOR7piTXQ4HI50xZrocDgc6Yo10eFwONIV + a6LD4XCkK9ZEh8PhSFesiQ6Hw5GuWBMdDocjXbEmOhwOR7piTXQ4HI50xZrocDgc6Yo10eFwONIVa6LD + 4XCkK9ZEh8PhSFesiQ6Hw5GuWBMdDocjXbEmOhwOR7piTUwnPCVZXRHJaghIVntIsqLewPUKtGN9E9Zx + 2xgo6ZasHb34j3UhbL+lTbKasZ7bd2Pbsp74cjG22xmML3O/tnD8twO/HdiOx2vAeqb14n8P4La9McnK + wTHbsV13VLKqcW1Mj+BcWzskq6ov/r8e6W83x68viH1aE9dA+D+/U7IKAP8rnKMc18Xr4XUzrQ/Hzsc1 + VuJ44cR9h7FdVeK461skqyVxzACOx+t4r1Wy3mzEvXUhr7CtXofj1OIYeTjXOuz3fK1kPVcnWduxDdcT + Xjvvpxr5Voj0nHbJehfHf60B22L7R6ok6/4dknVXhcyt6JWjsM93wD+Bf54AeJxvV/fJ5++pkHk8D8/3 + LM7L8/M6eD28Xl4fr9PkB+Fz5P3wOnl/23CfNbhf3jfX8/mVYhvmyzoci/nUh/ziOj6T95Fna7Af8zmU + yDPmB/M5D/v1JI7DslaP7Vl+WDaYxrzahmfO/Od/0oZteO5OPHcetw7HYXoNfrdg23BiW/7v5Ha4nxxc + A8sS03vxy7LmL388Fu+baaacctt6rC/ENXKZ5YfbcZnlguWe5YzXXYV8K8K1cj8eg/bAcsl13N5A+2L5 + p73xWOY86YQ1MRnP8wYQA+Gol7UkJ85SjcKy0sv8XZwjWUuymRbfZrHeJpa1ODu+vITrE9vqfXLxf2NM + /9fLibSluVyfIBv7J9YvM/v4yfE+ugTbYNv5/L8U5zoZ//3Y7m8y6Y14WdEYQJ71Ic/aw15Wa9DLCmKZ + 6T38H8BvyMuKII30Iq0d23QhjfnMfQP47UBaC7Ztwy+PFcH+ARy/A9sxXR8H+8aQrrBPEOu68J/bc33/ + vpEYnmOMIrAfrvFocBSM9Oswih9BFH4HQzwHInEFxOJWiMZDEIPnH6uStx+vlk3P1kg5BKL5qVrphrD0 + PFgp3fdWSDfErPuOcum+rQyUSvct4KaSXfA/07me23F77sf9H62Wnvt2SOdfy2XnHWWyHaKVjWOvgWi9 + wPPjOm7D9VyJ6z2X18frhGh9A9f9eV4/RGt/c3/MA+YH85D5wPLKvGN+mvvvQb6EsS6E9G7mP9eBTuzH + NO7HvOM+PJ45Fp8Nt+ExuB3zn/95XOa7fs6Ax+dx+ezN9kzjM9fnw/a8Jr0t1uvzJo7FZ9yHbfnMeXwe + l788H9N5DJYJou0Q63gerucyr5vH4LUzrRfH5PWzLE4EPCfzgudi2eP1dSfugeWVacxzASyDxOiG+Z8q + PJftGqyJyZiTGtJMtI4Gd4B3se9d4HVs+zb+n7g0W+0PoVqQiaIFT2t3eFqH4hqOwFv/m/C0/g+e1lnw + RK5d3SCPrmxQ771SLzsgDC2PVqnW+ytV+10VqvP2MgVhUb0riiVwbbEEL98uoUsKJHJhvsTO3Sbq7K0i + f9os8scEp2wS+YOPk0muyDIfOs1sw3188Bh/2iJyOo57DsB55NICUVcUindtkURuLJbwLaUqhGsK3FGu + ekHX7WXScUeFtD5UKS33V0oTRK4QIvf6izvlAdzfdfC0zoan9SveN+8f3sKh8LT2yETR8pfFicSJFn9H + L1o/x289kAQx33L8f456c1l27KfTJVr0ciZbtBAG7IFz/R3Ck2MQ9vw8t10ufq9FHn23Wa1/o1GVPler + 6h7aoRrhwbTC2+m8pkh6LoEQnbdNvLMgEqdDME4FfiGhuBgxougsTcB8XWwhKd9HhTnGUp4LaHGjmOHX + COOp4LTELzFieRqu+0wKXZ7IFdvFu7FEwvDkeu+CsN1VLi0P7JB6eIfVz9RKwTM1shoifccHbbIc+fQL + hIdfR759FuHhnrNVtPxlcTJwojU60foi0ttZ6EfAw35NJ+fEfrAM5ya2+5ssJkq0KvtkPsKhvXHMg8NK + jq4KyI83dcj5H7Sox95pUtnwmsoeq1ZVCLnqV5RI+5WFErwI3so52+Ki1O8R4ZeiQAHC85Hfg4kQnunC + iB3vyXhsBiNwZ2L5fIjaXwpFIW9Cd5ZL5wOV0oCQtBJeZtHztbLm5Z1y27oW+SPy+b9DSr7EfEa4vDfy + ef5MFC1/GZwKnGjFRSm+ziJaS7K9vZDewkKbKjj+U/DMPsqQ0nZ/k0EQBWgsorUzKPM8kT1xjAP7ovIP + VX3q10XdasWWdrVybZPKhddQeG+FVN1UKi1XFUn4IoRTZ0GcTMhGz4jGTEEyomTLk0yCeUIBo4CfAc/s + DPxymV4a8+86hKB3Vkgbws0aCFnhm42yYX2LPL2xTS4o7JH/6onqer8DFZ5LfUjmOdEajBOtoUQrR81d + mu391BTGVMExCiFY35kq0dIFFAUoVdGKebIwGlNHNAXVj3b0qD9v71RPvtes1r1Qq7bAkHbcUiYdVxRK + lB4DDY4hHMXoJIgSoTjZ7tsxPPQ26aVRwCj8DJcJ69XwQojdVqY6H66UyudqZeu7zfL25nZ5IK9DToFH + 9nUvXl+4IN1EK7ksTjVOtAaL1hykvc8CN0rCy7K9c8BC2/1NNEOJVive0li/F9gtGFNHNgTU/xZ2qku2 + dqjH1zSqtXjL599TIQ1484foATDM4fWfmC3yO+A8p8nH5C/r1OiJnQ0xI3/G87gBHtk9FarxqRrJX9Mo + b2+CiH3QJksLu+SYQEwO4XPl820LyXwnWrvEx+iGX5BSYWaIlg7/AJchVmSAaOXKx0G2KWCjAed4bFl2 + jJXW1nucCFjo6EX5RGsOCtSeKJwfjXrqi60h9bO6PnV5UZfc9U6zvPrCTtl2f6W0X1sUf8NTlE7YGBcp + J1DpQ7+QwcNl6+lyiJj2xgpF7iiTNojY1rXNshLP9Z66Prmwvk++E47Jh6datGxlcjox4mN0wy9IqZDW + oqXFKfG7ZGM0IVqJ9QlvixXwKDyH4n8VC9BoWZat7jkZnpzt/saLKTQ+0do97KnPQKS+VdKtflnRoy7L + 75CnV9ZLzgOVUn91kXhsmfs1BOq3Pi/Kdt2O9ESHlvhluH4uROziuCemHqqShpfrJGdTmzy2vVPOfLdF + jtkZkMNQTvbMNNEyGN2wCdNwzADRwjKFiqKl0waKlj4G03JlFQvNaMH1/XSiRYv9o/RvWM2HJ7V/b0Qd + uqNHfamsW/1fdZ+69f1W9cYLdVKMwhw0InWCESnLNTpmHqY7CL0x/rL7CEXs8u0it5VJ6Mka2f5mo7xU + 3iPXlnTL/2zvksPhhS1Cudm9JiBzMkG0yAwWLSzrbgv8H99er0+Ilj4GRE3XbWnRShyTwpXjHYJ9Hk8u + NCmRo1rAkRMpWigkcyFau3VF1EfrA+pbbSG1HIJ1+/oWWQ1vqnY53rz0omaTJ0WjZCOA6U4wXnRrJ8Tc + dq6ZCvOI98RfemKs5D8vT2RFichjNdLwdpO8UtwtV7aG5OTagPxjd0QWdYZlzmwXLYNNnIZiwkWL6amK + FtPi3hWXR+1tLcTvgeBRFooxoHDcs+LXpgbd22iAJzU/FFN7B6Pq4/V96ssNfeo3NX3qupUNshJv1Sq8 + YWN84/4WAsVWPVMXko7QsChArOxniMNKZ/brYgslQ51LC+LeAuttri9WcnOJkrsrlDxZreT5WiXPpcCz + 4Bk/NUqeTsDlx3GsO8uV3IjjX1Ok5Eqc6y845yU4NxsieC30WkwnWNP/Snd6TQiD7d7SCS1eiev9Y0LA + biwW7/FqaXynWdZW9cmVdX1yXFGXHNIdjTfS9EZl3mhFK7mspjM2gbIxYaLlT48LzmDRiovUYNGKe1vJ + ohXfb5Bo0ePKlT2x/5X4DZpCAJRveSSi4G847qLxiFYwphZAsPbtCquvd0fUEhSys99pkofvrpAqGjvD + PtP1YLqFyrzpadimwyX7JlGQKASXJYToJojQQ5VKXq5TsqpeyRsNSt5tUpLdqiSvw5OSTk+quz1pCnjS + FfKkDzFNEISjMYlOEDxWAMfsDsWkGeep7vWktMuTApx/U5uS91uUvN2o5DVc30u4ToolRZPiSSG9AvdB + gbsAQsAWPgobe8nzvrVQJPLDlk/Tgf/ZEL4srisSCLg0bmyTF2r65NzemPwc3tdRfDlGPbVwtnlaBptI + JTNu0bKlDxQt4hcpgTjFhcusN6JlhCsuWInjsN6KwsVf/t8Y2x8P+nQQ2PXgFQWrAPtdgnNdheXiXev6 + 4TYUuQ6Ek6/h9+NGUIntPpIJRLw5YCEKzr6tIXVoX0R9H+78SRva5NYHK6XgzzAU9sQ23tRUC5V5e9NT + MsJEo6XxUpSug0HfUabkCRj4mxCj95uV5ECM8iFE5RCFhj4IUTAuQpHIQCGJAW8IuM6/7UTAY9ow68O4 + vpAPimcbrr0W1k1h3dLuaXFbA3FbtVPJixA3ijFFmV4bW/n8IwPSRcz6BYzPENfGa2QI+XytVOR3qic6 + I+pclL8fNofUARCv3fuiat5sEi2DTawM4xKtobCLVsJjwu8YQ8R5eKj7wdN6AGkDH3Z2LBf7fQjLPNci + bP8FbHMRyEfa+/ilWHGw9FngCxATfVxel7k2232QHggVCsTCQNT7UHvQO7A9rI6Eg/H90h45fWW9vHR9 + sXSwkhXelPb0JluoTKH2e000PBbuiyGaV+MNfVtpPMR6Ewa7qc2TYu0dxaQlEJMeeC/aM0qIkl8QJlOE + JptIArNMIaO31gt6QAcErbkvJpXIh3wIWnarJ+80ebIS3tqjVUpuQZ7RQ7sAYsawk+HmdAsZz8uXYKK+ + UDGE5AwY61vU+9W96sawpxb3RNTRYGEkpuZCsObMFtEypJloxbeLp5nt2R/LiFZc1PRvXLS+jAf5FGBo + Zx5sLR7sLUuzvS9oDy0uWnHvTO+vWO/1Kfx+g+sMFC1W+A8nWhCpuWDf9pB3SFvA+1RMyZGdEflRdpvc + 8FCl5ONNHUZhiuH8kypWRqRoQBQoGhTDORoYDY3itLYxHjpV9nhSD8Okx0GDNSGbX5gMfoPPJHTomfDM + KOAUs3p4Z2XwNPMgZhtbPFkLMXtppyf37YjXqbEOzQgZn4XtOU02pnydsknUudskemWRRJ6rlbLtnerR + rrA6DV7Xd1FeD+4OefO0x+UTLS4nl++ZxqSLVn8op4VosHDpEHEIb2vJAG/LHEcdASF62vcQKRQBHPM0 + /Ma324j9eHz8TxKuXfhFK7GdwVw7wr+5XSFvL3hV+8ENP8hT8tXGkPzvuhZ56PYyqUG4FYWARCgmLEgT + LVbJIsUKZwrU7QjrWFG9HkZVAgPbCXFqhefUBcOjEQ4lUMlG69iF8c4IPU8KPb2yTl2XBq+sJ+6VGSFj + I8FteA4ML+nZ0tPl87I9x8kmMW4ycnG+RB+slIZNbfJSa0idG4yqn0Zj6mgI1Ydmk2iRaRUt/o4iRPws + BCi5t3sB+CaOM1+fiwKUEC29rH/j5xsA1hkoWkzjtkGEgF1Bb357wNsdgrWwE8tNQTm8NSSnvlovr68o + lWaIVQAFxZssoaJALccbnS1lDO8eqVSyukFpo6mDJ9AOj4AC1QfjYuhDo3PCNHn0h5hAh5fI+514Dgy1 + N+OZMLR8tsaTv0LE+FJh6MY6RL5splrITka5PD9fAneWS/tbTfJeW0hd0xlWP+gNe4dDtPaHaHGYmNVW + ZxqTKFoQnEHCFRcOI2L9ogWBMqJF+kWL4V6OULBewYPx+h9SjmoC/4Pl+PGMaHEfCheXea4URKsn5M3p + DHkLusLeQojV3Lo+tTuu/3NF3XLyM7Wy5poi6Tx1iwROhqBMpFjRk6JIsZCz8p7N++wGsL5ZSXm31+9B + sT5mIlvlHOODz8IIGb0xHVZCxLa2ebKu2dPdOfgs2SWELbNTFUqyXLJTsu6qslmCN5ZIF162H5T3qL+E + Y+qHPRHvk4ggFiTb6WzDmpgqFJDRelskyds6AJ4TBcs8HE7e1wQx+s4AEeLxEgJlvC286eLnGka4IAhz + EALObwt6CxAC7g2d+Epep5zx8k557coi2XnaFl1fNSH9qngcFiiOT2NocRdFCqHG2kYlRSj0rCBmqx3D + E77hbQbjmHyY90EIEl8WxpslDB1ZB6bDcGCeEUXMCBm7ZzBk5/NkJf+riTqxa4uVroPkZIWT7YGxnLK8 + 8jx4IcauLpaGlfXydlGXXNkbVcdFPfUhm73OFqyJqTIW0WKaT7T2xvr7ITr+h5KNtO8MECK/aFGoKFr0 + 0IYRLbj5cxD+zeU2eMicpP8zO4Pyp+fr5K2riqQFb0iP/ar48LHNmGHBYcUtC6yuMK9S8hbCvTy8lRnu + sQKYBmIMwIV60wtfGBQl2zo/FCgK2FAvF70e0Fve0eXJFgjYW42ebjBhOWD/MXphky1gLL/k9C3iXV0k + bS/WyTt1ATmvMypHsUXcZrczHWtiqmjR0qKRLFpxsSJxkYJwaOEy67RwLYRoXY+HGjYPAMdqBv85SIgo + Wv0CRdHCMSBcelmv27UtvKo57RAsrvNEz/j56YIOOf61Bnl+Rak0QmBi5kGPZfwfC6Fp3WPPcRbQ52s9 + ebcp3iGzCYWYb3DT/8mJVHrAFweFZrQeLrenyA23H9fx+HxBsT6ssMOT9TqM9HS95V+2Kz3iYLLCSJZj + U6ZRNmMrSqRpdaO8jHJ/EhzDzyrYgc1+ZyrWxFTRojV2b+tXEBt/t4YItvs/7mf2tXtb/KVwxUNEpnP7 + 9oA3p39bUBuQAzoi8rM1TfLIzaVSgUIT5UM9MSFWow0FKVRsEmfHzQcRDqyq9+SDFk83oXdAqPwdNZ1Q + pQ8UFH8IOFZMyGhb54fnYznog1o0IYxkhT7LCQXs7nIlVxcqXZnP8jSRXpip72L5ZjlneYd4Vb7VJE+0 + R+RXDQE5qCvszbXZ8UzDmpgq4xCtwyE4rb5MD+I4l2G7OSOLVnxZixboCcf0PtzWUzInpmRRVa98fV2L + rHigUsrhEUX5IDkecLSeFZu62cucHTkpVBzqsrXd072x2ffH//Z1QpV+GMFKRWxGYjTHSi4LFDx2+K3o + jteDvbzTk3srIGCJedQmUrwIyznLO8s9QtTYfTtkx7vNcgvs4thgTH2sJxLboyPsLeiNzszw0ZqYKv2i + BTEaLFy7xKdfuOLDehZg+a2kjL4b2+4bDx99okX8wkUPC//pbfG8/X22kN4Skt2iSr5c1iNnPVkj6y7M + lwDfOJwK5iScI1XPik3Z7JvD8XksWBz3trVdwe33pAexZtRXaE3hdGKVnjBkI7Z1Y4GCNd7jcf+2fgGL + tyYzhOTwK4aQfFHayuVoMZ6XngoJdnBBvgQfr5b3S7rl3Ign/9geUge0h7z9Uab37A3PLPGyJqbKLtEC + g0SLxMWmX7TobeWosyFE/s99rYfw7K/FikKkt4+jhcovWn5vKxEiIl6f1xOTg3b0yk/WNsuT15VII+sO + tFjhYaUiVtyeQ2RYecoC9FxNfKxeXY8nnSFPv2WNMDmBmhlQHCYiLEyGwsXKfNu60RLCcVqD8RCSLcwc + K8ryxxk2WB4nwgNj+Tcvbw4VuqZYmtc0y7Owl591R+SQjqC3X2fQ+1B3yON89zNCvKyJqTJAtLSwDC1a + BKL1UWRkhy9TO7HNsbpuituNQrQYCuIa9u+Nyr9v6ZAV91ZK8RnwkPhw6BbzYQ0nWCwQ9Kronl8FN/1v + lUrWNikpRQFqC3oo8HGvyomUYzJh+eJLsTcUk8Y+TwpR/jjI/WGUR9afcozkeLtRGFugXdA++GHcu3dI + 2eYOuQX2cxzs6IBwVI8Q2QPClfYdVK2JqTJQtMAQ3lZieSEEZ6UvM0PYfrkRKB3mJY4Fl3VOZ9ibTzpC + sbn9wpUQLQ/eVUzJpxoCcvzKelkF17rPPJSR6q3oVXH6Elaq31gSHzKzsSUe/un+UwmhcmI1c2FXhcns + rMtj6xbipPQJAeWvGy/NWnj5W9qUvLwzPmMHOyfT++KL1lauU6XfTgA8usArO+X1+oCcEPPkMLa2twS8 + eU193gKEjmnrdVkTU2WAaJEhREt7RznesRAffwa+iu33GyBaAJk1tyXk7dYe9uaZff3eFsRqIZ7pV7Z3 + yRV3lct2dmFIJRQ0YkXXm3VVr6AwbO9IhH/wqpxQzR4mRUwsTNZ5TFlk+NgW8KQI5ZTeF6fcYeU9x6mO + Z1A37YT2wll1/7hJYneUS3Fep1wTiMnXYF+7QbS0fXeFYmkpXNbEVLGJlhEuv2iBDyOzNu7KONUGkfoW + xSixXgsSwrI5TVD6Zqi8P92IVmdYFjWF5L/fapbnLtku7ch4NVIoqCdbgzvMik72XGYIWNMdn9TOtAQ5 + sZodUERS6Tg6UdAzn4iWyaEw4hXDOQJhzuzh6bpWDujmWEjWwXKI2FjEy9gM7ed3sKOLC6Tz9SZ5sTEk + /9MZkX3jXziP6Q+w2mx/OrEmpsog0aJIJUQrSbj+Dxm1a1xhrlxPz0p7VwnhaoVgNQcSYoVjUaS4zLqr + rojMbwzKwUVdcsbj1ZLHGR/5ma3hvCs+SLbGsBXwkSol7zUr3UPd9KcyBcJWWBwzEwrIcL3YJxoK5GRU + 9ifjL6u8x85gfIoddsHhLK6MHvhiHmvoSDuiPTH8fKRKCgq75JyGgHwC4rUAnheHwemvTNk0YDqwJqbK + INEig0Vr7yU5ssFkEISqFIL0CYqSX7SI/k9wHK7HORYokU90ROTbG1rllltLpY4f0WQGDydWfICcRYGT + vvHN1NAXFytTAPwFwjE7oFBNlVj5merz9gsYxIt9Bat6YrKuydOhI8s8X9RjmYFCe12wq1Ow780lUr++ + RW5vD8u/0f5ghwspWs0kMP3iZU1MlUGCRSA2ScN6li1NzPaJMC8KYTqFgmRES4eICeHS/wGPg+OzFeOQ + lrAcv7pRVl9ZJL2chWEo74oPiXVWDAMfg1jlQqwQm09LQXZMPfRApsLrSYbnnI7zEvMCpsfH3vecV/9R + iJeZfWK084DRrmhfFL0riiSwqkHebArJCbDDT9IeKVotEC1C+58urImpMkiwDLu8rQ9DjLb5MuYDiNIi + I05GuIxomf84NsdKHVoTkNOerJFN5+fFZ2KwfTiC6YzrOdcRm4k5H/rOHk9C4XjlevKDdsxOKBwT1X9q + NFAwprIebSj4cmarJjwhLV5sFefHP+h5jVa4aGdwNOS8beI9Vi1bqwJyBuyRH5xl6+K0C5c1MVWsgkV2 + idZvefPxDFGcWO83Rpj8ouWvkMdxdwNHFnfLJffukBL2KVmMY7ArQ7JgcRoYelYMAzfCs6rt9XRTtO2h + OmY3FK2J7P2eKtPl4Q0FxYv5QM+L839x7q9riuIv9lTFSwsXgd1xP/bpKuySy0XJ52GbexjR4uf+O0OT + 89X24bAmpopVsAgFKFftDdF63WQE0l5fmuvtQ4GiUBnhMr8UOhxzUcyTr23ukJtuKZNqfqmEQxCYgf5M + pfvKMYHsusDZFWoR1/Mt2x/vOxxTTDpWQ7DLBCvtOevESzuVrChR+qtNqbY20u5of7TDm0ulNrddbot4 + cgzsdF+/aMFRAFPneVkTU8UqWIZc9a+7MkAJBOwnrOOiaCV7WzgWR59/uDcmx3KO9utLpInClNxZlG8K + 9lHh5HprmpTs6I538rM9MEfmQG9nOkWD504nb8tgKuzZZYLT5myDeHGsIyvsOcvELvscGtof7ZD2eG2x + tLzTIo/2xHvR70e79YtWZ8jj1FCDdGKisSamilWs4rBj6K27bl69BdHaYyjRCnmysD0i33+7WV68fLt0 + 83PiVHgTDvLNwOE2/Mox51PnYFNOU8zCarwr52FlLgyHWBZs66YCnns6QtNU8NsFW9AbETbyW5HsBsQh + QqmEjLRD2iM/snHZdul9s0legb3+EHa7m0206IFNZhcJa2KqDBIrCJCuz8r2DsNyY+Kmg8iY49miqNdb + hKsuKMe+1iAvXVIgEdZfmRZCitVyeFb8MsrK+vjXhzndbTq64o7pg1UD0yka9LLYP8y2Lh3h9TYGYvpb + BYxaOKsJPSm/UCVDe9R2Cf6cL7GV9fIq7PZ7w4lWyyQJlzUxVfxC5QdC9HvcaLwzaY4qwzYHxwWL7BIt + HGNua0SOW9kgL1+ULxGquREsdnTjgFF+MZjzcXehUDixctigYDjRSg2/58VWz6rumLwOh4Bf5KZ4DVff + ZYTrd9kiF+ZJ5JV6Wdkclh/AjufPHNFKEisDBOkl3CT7Ziks3w/6h+UY0YJruXt3VL67GoJ1cYEEjGCx + bwm/oMxJ9zjfUEuAYwNd+OcYmnTwtKaju8V48Fep8NNprHJZVa+0eI3UTUILF7ioQIJwOFZ1RuQHsGfO + EDFItCYjTLQmpopFrPh7BMSpKXGD7eDrDAN3iZb2sPbAjX4PIeEL8LC62ROXmUDvin1LOLKdoaCuZJ/G + wuiYGUx3nRYjgOk8/3gxAtYBB2EzO6hWxT9Uy87aQ4kX7ZV2e0Ge9LyKULEDwkW7tomWwa8d48GamCpa + rOA5ae9Jo0XrlP6by1FvQaR2N6KFfThqfE8I1nEUrOXbpIeuJjkX6s4uDO81Kf3J98mcWsQxu6BouKqD + 8UPhYqfsHQmv6+ZSpRvA/GLlx9juOVulD8L1ckc8VNwTzLWJ1kQJlzUxmaXZsV3EhSn+mxCsXaLlcTaH + N/tvLEeduiTbm8tplAmOtVdfVL63pkmePC9Pgr/PFnUSbppfXKa6sz8JK9ptGepwTAYM7VjmGN7NZG9p + IjAeF/OE33Zc36LkgR1Kzz03lMcFGxba8Ll5En6jUZ7tjWrh2mco0epACOnXlrFgTUwmFdFKCNcRS3J0 + SMgb6oFofckIFvGUHLWhVe6/vFBCjIuZERfmizxVE+/GwLclM82WobMd3js7ya5t9OR+FJSrCpVuOWWP + ZI4ju6RAye1lSl6oVZLXHu/yYTtOJjIeT4tCxUp0Gqrz1nYJF2G+sJqGjWGcx2uocNF8PxQhZfj9Fnk4 + puSLUQ9hIgQqWbgoWjiuVWdSxZqYjF+0EK/OGUa02GqoPwuG9S8uyVULEh4WxxIelNchl64olmo2m56K + DODwAk7GV92NDEOhyUTBotFQrF6p85AfStfrDdWCwwLDToEUM4bS2yBeM60CeDJwdVqTBxvBWgOevNO0 + K1y0CRc/HkPxuqFYare2y5WJ2SHmd4UhXIHBooVym9U9RvGyJibjF62hPS21ENyfuInY0hw5j62E2H9u + VMnhlb1y5u1lsp3rOevirfAa1jRymmM8cEtmZQJsteFHPa+EVzVSPxkbHB3wVLWSeubhLDWaVHCth5MP + Q2hW0nNSAkZHyS9WdodgxTyXbymVovIeWR5R8ne0/95IfEobm2h1jGHsojUxmWFFi58P098zlE8grTJx + EwwRv8JtsP++TSE5/uEq2XL6VonRk2CHNn7Akl9jDlkyKBPgsIqX4V2xb0wiz8YEPa9b8QZkXzYaj+1c + sx2GMa6f1uRhwkV+fKMC4SLHMXJWleQXLT0tCtefYOcPVEpBQ1BOhP1/KKa8rGA0HiraRKstODrhsiYm + M6RoJQRLi1a2HIsLNx9g3QI+DrK6InLMygZ59fx86aGBsr6GwwhwsRnpYTGUaIdgPQkPiQKeyK9xwbce + 68AYLtrOOdtJB09rNouWHw7CboBnzyiJA7BZ3+r3usxY4eV50vdKvazujMg3Wb9FIoDTN0P8+kWrPSFa + sAmr9tiwJiaTgmjNgae1GBfLXvAK6154tk728ZQcndsmN1ycL50wUHUX62E6POnNUI+AcNT9szXxDnzm + QU8U7OPGFljbeWczFKzp9DIzITwcAO63pc/Tc9exbpXhIqeJYhlkmEjhWgoduDBPurNb5SbowJehI7sZ + 8UJ+aW8rWbRSFS5rYjJDi5aXtQxpEKwFy7K9exPG42HdOdhvvx29cv5fy6X+vMQ0MvSwWI9jzYgMgPUC + bzd6w/Z9GS/3IJ85vbTt/LMVisZ01ullnGgBVtAzYmBLNj+0wXDRfB1bCxdCRf7eWiYN5T1yMfTgACNa + MQoXwkXYwyDRSkW4rInJDCVaFKyEaO2N/x8kDCd8Sq76YXdU/uP5Oll9OW6GfbDy2QcLDzaTm5ULkAeX + Fahhx3eNF3pwz9eqjKqYZ/eP6RQNenr0oG3rZjt0Qqp7YrKq3tMfPfZ/1p/dINhL4JlaeQth4g+hJQsG + CFfMs4rWSMJlTUxmJNGCx3UULrImcbEVT9Wo761vkXtuKpEeChYriTN93iu2knI8pXmgkwk/7Lm5zUuL + aYCnAk63wg88tAbs6ycTes/8yhOxrc8EWDfN8v16g5IbinfV1ZoWRZTH7neb5UFoyRFg/rSKlpmSBsL1 + TVxkHy/05E2yprBLTnu8Wsoer47XsVCNM31YDr+Ywp7FRlgmE3YCZE/mlmkw4umADRBvNXiS2zr19Xn8 + lNcahPzZ03DudIEti/TsOfzu3WZP7ijf1Z+L3hbL5G1lUlzTJ6fElHxYQbCIULwoXBCp0QiXNTEZi2h9 + BL9/j4uZlxCui3GBMV7cxfnqmTca5R2EKNFCeFh9uJlM72ncDPGgiBhRmQookPS2prNVbap4DaEJP17K + rzDb1k8m7+BldBfO/SJCctv6TEJ3REWYvBECzkY3VlVobwvCdfY2CT5bJ2v6ovIdaMpCI1xGvFgp3xYY + KFqtAfuQH2tiMj7Rmgux+keI1qlLctXVMI5/Bp+AaD2eMJbo1UWy7bEq1ctWQhpMJvZy90PBpgdw+fap + FS1+v44dTzPB23oIL4QL85X+iINt/WTCpn928r0T3oVtfaZg+nKxvHciZOb3RvlFd37LwZTJSwukJa9T + ro14cphftLRwKfbf8rKa+zwtVgabHlkTkzFhIERrL4jWY7iAZlAMHgRnIa2cF0XO2ybhFSVKFcPLMjdi + u8lMgRW0/JwTxxCaPJoKWNl/RaESPofZ3mLL/kJ8o/Mz8RwrN1XeJb948wReDGzu56gG2zaZCIVLz0mP + sJ112uwSwefzx80SuX+HbG8Kyc+hKwO8LSNcbFVs8QlXshYRa2IyCdFaANFaBoPoThgGJ/lrAPlA12cR + th7QQO+Ey8wKUttNZRJV3Z6e297kz1RhximyLm22VxJTtDg0jD20KSJT1QDBvGUIxHobJ1oDoXCxt0Ae + Iq6/VSo5J+Fx/XGTUnhOEbxUO/GfndFb4fSoJdnRMxG9zeP0Vkjrx6ZH1sRkEqL1NRycApVsIDGcKDlN + hycr6zK3ctLA4UqcoSE5f6YKenmbZnklcTw8jIvHDUVK2qag+wG9ORrjb7Pjk1dmeniYjImy2Lq6pc2T + u5E/p26mHQxhCzleDtZdBi2Zi//jF61lcdG6AgfRle1JJD55z7f7rgvim/4vMNbGDG4KJs9BNFjnYfJl + quF0NpxBwnZtswVWxLOpnSEIva2/VXqT2m+KgsXWSuNl8aXkKuIH0l81hLzqYENUhSfLNo308sb6HPVT + LC8E4xatA3CwvF0HTw2GJ283DL6hTIIjASZqjOFY4JhEjsy3XdtsgXUnHNPK++XLkqFiTc/kCTU7s7KT + sMljCmYmd3kYDgpXaVcs1TpdflMiiN8jwbhF69s4WL9HNRR+T4uwMpj1ObabyRRuRIGmePvzZSph6w1n + gbBd22yB85GxpdTcM4eQXAOxLumceCHhNECcpYTnoWfH3zvgzVZ2O9GywQr5m0voZQ0slyNw1dLs6Bxg + 1SNrYjIIDU+zHHgQfMslp3HCOj5o2w1lApfijWzLl6mCb7jZXklMw3gJIbD/vtnBll0gGnonTkwYcq5t + jH9qy3+u++FNT0dv/JnAe00xvLQHOjMpUA3BOnx8opXjPWo5sGaprxI+2dMiNJoKuIe2G8oEprM+i1Aw + WUltu7bZAgcsv9kwULToBZ2BsvdyXVxQxtvBmVPPrG/y2Emy38MyPF6lMm7AdCrwufx19F6WZml27AL2 + DbXpkTUxGQgT+2TZD+4XLUsrYqbXa01nfZaBnoHt2mYLFCT2R7u2aGD5Y5h4+tZ4Cyo72Y5lELluug/F + 5A2IIvORx/Sfgy8EthCPVxRnI3UI2y9C/vjzK3XUa5xk1KZH1sRkcBD2qbAc2Odd4WHaRIutOfdVZG68 + 70RramDl+Cs7B3pbhF4R+w6yFbWoMy5Atv1t0HuqgeE9XuXpiCHZwyIcBM9Oprb9M50PmmM6TE/OsxRp + h2h91qZHgxJs4ABDi1ZCqPhrEy26hrfARbTdVCbgwsOpg2MtbXlgOBteF2eM5Xf9OOvIUN4RQ0HWw7Kf + 4QXIu+HqJFfXuwr4oXgQzgr7a9ryLRWW5Xi/senRoAQbOID5LNgg/KJl6zhG0VpRnLkP1lXETx0UGnpU + ZhZNG/SW2L+KXSTWNXt6IjvWvXD/Hnhh7D7BXvX8FqfNszLwmV62PTNnik2VC7Z54yr7y3LUmTY9GpRg + AwcYUrSWDPCu7KLFJk/bTWUCrsvD1MFwjt7WaGaGZf78BeJDLh7Bq/LD7dip1X1/cmhO2zS85zsiOeoF + mx4NSrCBA6QoWoMZjWjNxspM17l0amH3B74oJtu75dQ/rm/W8Jw++q4OA1ico4psejQowQYOMLRoJbDV + Z5FMFy03jGdqYQshZ3q4YhKnAuLz/AChZaZ8gWesjPdlDdGCegzWo0EJNnCAEUUrHhoOLiiZHh66AdPT + Azubpjh0ZFSwNZwfD8mkOfjHStqK1lAeliHTRctNTTN98AMftrwZD5ytINO/d5AqM8DTspPpouUmAZw+ + WEnOr3jb8mcssE9Ws+uTlTJpL1pDVXxmumixns5Ntzx9ULDfg7c53pcGp55h9wjbORx2ZkB4aDfKTBct + 4j5sMb2w/oktfZxNl3VStvyywRfx1UVKtiIfXaX76El70bINliZOtOK4T4hNPxQvdgZlFxCOibN1QqWo + cWYSTj+TAw/ZidXYcRXxMxz3sdb0geJFQWfvd4bQHDHAkQt8PuzKwJ71ppe8Y+w40ZoFuM/iOzKJtK+I + HwonWrvgDANvN45umMloYR+iBtfC5UgDZoinNdjrcqI1EHaBeLYm/vXd5LwaL9cXuwG8jvRhvKK1JEfh + CIP1aFCCDRwgJU/LVhnvRGsg7ALBpnNOkTLuh5qAecwxhqyjsZ1zKuB9DTcMy6wfbhvH7CJtRWuAp2Wp + 33KiZYcDe9nxMXm+8dHCXu+cxaGo05vSyuPxio8TsNnPeEULThDikcF6NCjBBg4wrKfV3+3BidaoYMfH + 9c2ebr0aTf8hAwfusvWLrV2u4t2RbqS1aBmcaI0eig0/gcWZGK4pioeMzLPkfCRmPCH7EXHKG4aD7oMK + jnRlRoiWCw/HDkMlitfaxviHR1lHRXHi8JMz8Og4UwSnmXmhVkkexMpNPpe+vFEfk4fLI/IoeKxi7DwO + bi0My/X5YbmhIFUicnPhyOd+pDwsT1VFJ/XTZ2lbp0VsHpbBiZYj09jQ4snvUfYX02NOU07C9T24Y3I7 + IE+AaCGuGKxHgxJs4ACp1WklpRMnWo7xMhMr7Nm7/ndJnxtLFzj3/Xnw4id7AHhai9aSHE7/kRCuJK/L + iZYjE+EwoTNhtItHIVzNAU8isYFcX7hr/UMVSp6uUgPSxsJJuKZNrfbrnkjGK1qT3CPehYczmZngyZgu + EjPJ61rXFEvZ26IQdYc9uaNEabF6tVZJTY8na+qVXJIvermkU8mGZqW343rux7RkoTPrbFCw7ijzpqS1 + Oc1Fa2icaDkyFbbssg8dhcJmG34oTPSiuEzhMR4Vf41gmW2NsPGXAsVlI2j01ojZ1g/DQjbscPC+7Xon + GidaDkeCmeRtVXR7sgyRyHDfUEzGiBaXKWb+/wYKE0XKbO+HIuff1kCvj589s13nZOBEyzHhzLRwyzDT + rvn5Wm9UlfJ+kUpVtIynRc6yiAVbMzn99lTOb+9Ey+GYobCV7sI8Jb9PUbiSRYqekxEoYsJDVszbtk+G + Xh4bBPKneGzqjBatm5xoOTKczW2xlETLX7FOL4tpFClWvm9ti9dh0cvi8lDbJ0Mv79GqqbfBaRWtpTmq + w3bQVGDfrRuKnGg5Jp6ZFCZyMPvdFd6IlfIUJVuYZyrqCUVspO0N9LCWw8ubjqm3p1m0vB7bQVPhDzjt + k9Og8g5HulHfF9NfSbLZyWRBkVzXPD32NwGihSMM1qNBCTaW5Hj5toOmwqmbRTZOU6Y5HOkEP5rLAe+j + 6XA6HliXxZD0nUb79Uw2EyBa4+gRn+PdZDtoKvDLMPnt9ptyODKFMLirbOjwkOEfK9xN/RSXTQ94k2bq + s8x/A+u1TOU88ddtUbjO3jo94SEdFv89jpoc9Z5NjwYl2FiaHftf60FHgPVZnJ3AfUbckel80BIbtj7L + dBJl3ZSpXGdveHYwpYBRrChM/DU94v3bUai4zLTkui2e974dnhZO27VNFuflKet45FRZmqNusunRoAQb + EK3DcIBm24GHgxPbcSS57YYcU89M7JOVCune34xdHs5nlweLjRgoTka0KEgUIi5zHX8pXBQk/vo9KZPO + fbhs0pPRXR6m+PsBt5V4Y5rc0rAsx/uxTY8GJdiAaM1blu29ZTvwcDB+X99kvyHH1ONEa3p4omrkzqUU + JnZjMAJFAaMQmXX8Ty+L65JbFel5Eb+YJcO6rUsKZErnYXuxxtMaYLueFPCWZce+ZdOjQQk2IFpZOMCp + ww2MToZu4dVT3APXMTxOtKaesq6YtoWRhvGY8NB0EqVQUaTMshErI1x+gTJiZ/4PBYXz1bqp87a2tcX0 + WEfbtaRAMTTnQJseDUqwgZ3JpyFa6ywHt8JPjr/V4EJDR+YSjMTk5hQHTLPSnaLlh2FfckW8fz2Fy59m + BG8oKJynwS6nasB0c19Mrtw+tnot1mdRd2x6ZE1MJiFaWRCt43DAUPIJbJy/TUkXYvmY5WYcjkyAXQ1+ + l223j2QoQBQdihC9JhMasq6L/wkr4k1dF6HnxTTzn9smHzcZXs+d5Z4WVNs1TyT0fp+r9nRfTdu1DMXS + XNVzcnbsu8CqR9bEZCBWhn2WZMcux6/1ZIaTNyk8MLZWeOLhwp1wOTKNJngZp28Z3ewOUwXDxA3NUet1 + TzQ7EB5fXjCkt6UsafSyHoRg7TtRopW1ZGP0k/i9GQxqTcSFeWdv9XovzJfYSrwRGnoRHkLRnWg5MglO + sPfQjtHN7DCVUEiXIxJqm+Tplmn3dFrWNAzsaAqdiOG3F3QlfiMgCgJgG0Tr6xSsiRQtjkXce2mO9yJO + EAStCdqW5ajee8q9l64qlKbrikXWNir9GXjbDTkcs5X3m2NyIsIw1mWx1W5cwMg1tnXj4Le4vnsqJj9M + ZN+wiu5hva0EKg+/7KHwY+jLQkCdseqRNXE0eJ7XD/4vhEZ944WdsvqCfAneVKpkY4vSX1OerS1XMwnX + ejg1vNsYk2drlTxfZwHpL9Tgt8bTn4OzbpPgRcBxu49WxuSRKqV/H9sRkUex/DfANBuPA318nmeIc/D6 + +IXztknqKU8vKwJBrEG09fJOJdcUSeSifEZnil5Wsmh5S3K8U5bkqGOxvK8RrEkTrWjMy1I+4fKU7Lsz + IEvuKJftp20V/a2+nFZP2pE5vAnbDTqmBidaM5fk+zP3bMO/3XTBEHknPKyVEKyrikRuLpWKP21WTRCl + QfVYiNo2gEMhWojmOEHDJIsWiUGsognwfx74u/Utcs8lBdLF8Uf3VCjJhnAxhk6XTM1EZmvep5OxZjL0 + rgj7Zu7o8mRVvZIrC0X+sl2676tQbyE8ZHXSAMECHgTrGDBnSkWLxNRA4eqOyn88Xyer2bnsTHhcd5Yr + eb/FkxYI11SPgXI4HJOLbmyDd0XBKoFgMSy9CoJ11jaRx6rlndM3q0oIksXLUtmAwwTnDCdUfqyJYyVJ + uPbb0Svn314u9ayAo8d1Q4mSd5riHpdRZVsGOByOmUco4kkpBOvJGiV/LhD5A2z+1jJpeKJK/Q0awJbB + AYIFFETqv/yCNeWiRUyoiOWFnpKjc9vkhovzpXMZVXYThKsYHlezmtIxUI44Ljx0TAaMnHrgiBR2ePCq + lFyQryf/VBfmSffGVrnp1FyvjAKVJFj0ssqWZXtfAnNAliFZU5KxJo6XSMzrF6+uiByzskFePT9f9Oyn + VN8V8LjeblJS1zM1PXMdcTjlbx/cd7rwzPeZbOis6OU98NuCxJWjqcVEShQstkCyse3eCqXDQdr58jzp + e6VeVq9p9H6K/+yPNUCwQGRZjrfYL1bTKloxX4si/u/bFJLjH66SLadvlRj7r3DK2WuKRDfplnR62pBs + GeOYWFi4ONiWeV7TExcv23bpDsWXVQy8h2rcT31v/DP0tm0dk4Op2mnq82Q9Iic2tp29VXT/tD/Bzh+o + lIKyHll6Sq73OgTK1s1hDQTqk2CAl0WS9SQZa+JEoZS+gLlRJYdX9sqZt5fJdl4wb4zjkRj3sl9JPoyo + N+xJDIXR1XNNHsXI5w9aPHl1p5INbBSZoYbeE4pp4cVbXA8X41ueoYltW8fEE/ew4rNNrEJZYuR0Njws + MzD8llIpKu+R5RfmeTfgv02wQggNT4VAzU0WLJKsI8lYEyeUuHDNBwfldcilK4qlmhOSnYSLZwX9WYmW + xdxWhcII4Upkii2zHOPjbRj4k9VK7ixT2uA5OZ1tu3SHnnkBROrhSiX34Q3Pe1o9hV9OzmQYlnMiBE4o + yE6sdDz0vPdwQtjT/oZiqd3aLleua5ajluaqeotgkTchWh8BAyrgDQP0w4I1cSLpCvs6nyo5akOr3H95 + oYTMEAeOg+I0NtcXK1nbxLmsp35a2EzhbzDySwuU9nRvwtuR3spMrMTmCAt6jOy4fFWhkuuKlNy/Q1m3 + dYwf40gE8bJoQDj4HsLBu+BonJOov6Id057/sl3C77fIwzElX4T43IZ1thlhglh3MZhvRCoZm474sSZO + NO2heMU8lvfqi8r31jTJk+flSfD32aJOggHxZhguXl0kust/WZenK1fZ78OWiY6xQdGikS9FXvODI4/g + f0V3vE5xJggXr5He4bvwEi/fHp9phP0AeU9OtCYPClaAITns8rk6PSRHlx/mP2xYaMPn5kn4jUZ5tjcq + P7hvhzoM64q43sJrEKb+sYU2kvUjGWviZNAS1KI1B+zZGZHjXmuQF5Zvkx7O76PnHIJS0+PilLAPwZhy + EC62B10910TCSRnZwsMR979Bnl8Gw6fHwu4nM0G0WAFf3hXTHtaJKC+sXrgCgvUYwhQXHk4s2rui0wDa + Ef180KLkr8j3c+FdmXnfje2es1X6Xq2XlzvC8oO/lnqfXJarOJmCrYtDdFm2dxJ+h/SyiF83bFgTJwuE + flmBiBavPSBc36NwXZQv3QxXzDQeLIjsQc/Kvdfr49PMMo42Lqotgx2pwcrql+o8XfDo0jO/4dLLK0ir + 7Y3XV9j2m24oqJwtJL/dk7sRltBoWF5YVhimrG92FfETCaeT4W8PnAZ2FuX4weuK1YD53pn/tNsL8qQH + gvVqR0R+QLtelh0b6nODUQjSQ6xoTxapZPyaYcOaOFm0wdtqBaznCnmye3dUvru6QV6+uEACzAT/tLQs + mJfC63qiWsm29vhMEcmZ6xgdnP6WIxLOzxuYz+fm8QXhSXeadvhl+LoRHuFtpUrOhJdIseK185deVjkM + y3V5GD90CrRg4eXFrgz0rh5E1AP7HDD7KO2U9npRgQRXNsgqOCA/gD3vgXUfg+i8h19bi+FWCtKMEy3S + FvI0HQD/57YiVMSNvwyPK2KEyz/bI5tSGQ68idCmuideGWjLcMfIUJQYDuLt2J+/zGt6XcuR9kR1vA8X + uxTY9p9qGA5yPnO2dLKhZhmu1f9iWwZDeqZGSQPEWNeBWo7hSA0jWPS2+RJgH0oOu2PrvnlJsKxowYKH + dWGeRF6pl5XNCAlhx/OXZquPYJunzLNJBmJ1BtiNojUSfr2wYU2cbIxo9cDj6gnHsuqCcixCxZcuKZCI + 7g7hEy5mGMctXoYwhk3cG1o9aUQhZYG2Zb5jaOixZEO0LrR8aoodfi8vVAgflVSg0OK5TFu4yHCQsCX5 + PYR+t8DDYsdFNiD4r5mi9RxEi15Wuoa2MwXmHz1xeld3VyhZDmeB+Wvy2ggW7fPPemZieRV2+72TN0Y5 + w+geEK2/+p+NH3hPz9vEaShsmuHHmjgVGNHqhWjBtVzYHpHvv90sL16+XbpPxo3S6/J7XIQtFlcUijyF + kDGvzU11M1o41GVbe9xr8ecrMXnNeotbIRKsJ+LLYaqHx/B50tNjR1i+pM6AWPmvzw+b3FftnLn9zdIB + vvz5nDehXLC/G+0r+VuFzHvaIz1dOA+9bzbJK7DXH8Jud0uI1s8hTC3+fQxIz1+aYxenobDphR9r4lRh + RAvLc8GHEQkcu65FHrq+RJpY18IWIk41m5wRbP1iRf1r9Z6Ud3vSi4x3lfQjQ0Fg3eD2Dk93fzD9bPyw + gPJtysYQ1iFxHrTOKQoX6QmWQqyeQph6MbxBelamwcAPPW8+f1YZVLnxqynhb8hiOejDM22Awb2PlxM7 + d5tOosl5TfujHdIery2Wlnda5NGeqBwHe92PdgvR4rQy67Gt7SMVHtYfC+ZpcUsRasNwWBOnEopWN4DX + xP+LYp58bXOH3HRLmVRzcDUV3iZcdF3PyxPdhM+MZ90Hxct5XqnxAfKMHU2T89UPBYPe7R1lnDZ7cjwv + Pi/WtZV0xvCmR+iKZ0rRtHlWBoaKzyIsbEVY6J536tCr4kursof1hErXFfvrrJKh3dH+aIc3l0ptbrvc + FvHkGNjpvvSeIFYfxu/92NYmWPSy/gYRmp8sSiPh1wcb1sSpxohWa0C7hruBI4u75ZJ7d0jJ6chUFmJm + oK0gs28XZ0dkId4CF1dXyro374hsRXhtOmimAt+0l0Dk2FrHejG+pVn5PVrR4PasP6HxsJsCveXri5R+ + jrbz2mCXDYaFTrBGht5VGM+J9X4c+vQq8o2jIfxfx0mGdkZ740uLnXfv3iFlhV1yuSj5PGyT3RogWN4+ + EKXrbPtrctRqrB+Vh2UwujAU1sSpxi9aCeHiWMVDawJy2pM1sun8PInxbcBMtAkXvS62Mt5YrHRr0hYY + JCsVQ3hYtgfpiOkOpbkI/Th2jyIw1Nt2KBiisW7s5br4NwBqE7NGJFeIU1j4hqdXxJbJtY2e7lvFN7zt + uMNBYbu6UMlKGB7P5z+PYyDM9z6+HPCcOU6QL/Wr8XKnCA33rLVgwc6WgvO2ifdYtWytCsgZsMfDaJf8 + rBdEaw+I1qUQJesxluV4hRAt/YEKCtxooSYMhzVxOvCLFjuhIo1zzR/SEpbjVzfK6iuLpPdkFNrkLhED + MgvixXCGw4HYZMs3OT+o4Voa7ejWRAgOPS5/S9FY4P4X5ce7pzBkZ0jJ6UpYX3IFjs/6ktEKYzKslOcX + bCiAtvtxxMWKLw9O18OXN/PrxhE8KwPtivZFr/qKIgmsapA3m0JyAuzwk7THxLcI50BYTh1asFTDydnR + b+r53scI9WA4rInThV+0Eh7XAiXyiY6IfHtDq9xya6nU/REZyp64QwkXoXGwkplN5RQv9qRmQad4uZBi + F/SKOB8Vuw2wfmu8wjWZUPRY+b4JIuvCfzt6QHOvJ5valDyFZ8oxgmxQSeW50p5oV+z6cnOJ1K9vkdvb + w/JvtD/Y4cKEYJHvQrBsk/ohJPS6T872/gDRWmATo1Txa4INa+J04hctdovwlMzpisj8xqAcXNQlZzxe + LXln4K3BDB7O6yJ8YzBsZBjDifbpJrcGXdhog29lekS2fJxu6GHxG33OwxqMDgMpVn0M9+PVIyzvbKxI + 9SVEO6I90Rt7pEoKCrvknIaAfKIzIgtisD+fYH0BgpVjOwZQS3NiN2KbvSBarPMaMzZd8GNNTAeMaHWB + ToSObfjfGZZFcFf/+61mee6S7dKOzFZsjqVwjSRerEPh+Cl+pJJ9lZrpeTnx6ocVte82xTty8u083lBu + IuBzY1M8h3KxPsx5WLvQYWAopuv2OKEjP+DKcaQUHuabLT/9GJuh/fwOdnRxgXS+3iQvNobkfyBW+2qR + yjF4FCxON8MvQFuPtyRHnkDYeFBC3MaFTQ/8WBPThQ6OU/SJFoUMyr8w6MlXtnfJFXeVy/ZTN0vshBS8 + LsI3D9/a7EBHQ+DDNhXI7kOycThA/f6KgYNjpwvWtbGS33admYS/DyLLKVte2T+RkzpySh6OFqFYpepZ + 0U5oL/w0/h83SeyOcinO65Rr8N76GuxLD7XRApIQrWW56vBlOWqV7VgEYvY0OJiV6MkCNBZsWuDHmpiO + GNHSIaPIPGTup+DCHr+yXlbhofWZt4atT1cyfLh8yHzYrDRmnxXO4cWpcFjP4++Il4mw7o+eDWc4nWrx + 4rNhx1IapPtiU7wcenge7F5SjxCQYTynyzYdQtmKOxqvuN9OwKUFEnhlp7xeH5ATYp4cBrvSU8b4RWtZ + jvfVpbnqZexr7Yu1JEc9h30Oie83WIDGgs3+/VgT0xkz/Id1Xfi/f29U/n1Lh6y4t1KKz9gmQq8rlZDR + wGZ0fvKIYRHrA3LblDShcCQ33WcqHDzLvLHl3UTD1kcOH8r01l7z0mT1BYco8Rmsa1Z6FAMr1zlLx2ha + Y40t0C5oH+z7yL5XmzvkFtgPe7cfQHtiJbhftCBYn8P+ryYfz4BtX8Q+n+Q+aSdaia/qpA16oHUopivs + FbwuRHgH7eiVn6xtlievK5FGvq1TDRkN3Id1OewuwQ6U7zYpPaSEvbWdgMXHp73REB+3OFJfn1Tg/nxh + sI8YxxiaqZ9t584EtGePcsbwj2MvOcKDXhUHsHPyPXpV7M4z2nxn+acd0B44LOqaYmle0yzPwl5+1hOV + g2E/uu+VablLiNZcpLGVkF/SsXtYEDOs/5TZJy1FK92Ey8D5udg5tSUku0WVfLmsR856skbWXZgvAfOw + +BGNVMWL8C3GOYTogrPQbGhRUtWNwsS6r6TClmlQwBm2UWTYyZMhJHvKjxRGsnKYAkXRexoeLbsuUAh1 + faLlPLMdU/3AX94/P+rS2OvpXutvNij9lSr2r6JX5Z/LKlVY3llVwvLPoTiIJoKPV8v7Jd1ybsSTr7SG + ZTcKTaKS3S9a/ELOYvxW2I6ryVGv4fdQ7u9Eaxxwihu6uDEli6p65evrWmTFA5VSftZWidIt/i1Ipb7L + D70vVtxfnqj74pCTrYmhQsbYjCufXCgzBeYBwzl2R6Bnyh7vDGM42Jo93zlTKocM1XFsKPIsE71WU0aS + ywnHyjYh3wp1vsW/KsR8G6tXZWA5Z3lnuUf5jd23Q3a82yy3VPbKv8I+9tWhYK5ooUkSLX4d5w9Y1+4/ + nh+sX4PtDsWy3j/tRSvdhYuwwr4d3ldtQA7oiMjP1jTJIzeXSgVCvyg9L10JicwfjedFTJ+va4uUPI7C + xRkGilDYaKzsJ5PpHphjMH6h4i/LCGfMoIBztMY7TUq3YrPOkI1CDLv5orSVv5EwnhXLN8s5y/uKEql8 + s0keb4/IL3YG5COsqyJabOyixZ7u+kvwNhbnKH7661C97UwSrZkgXKQjBM8L8XrYk08XdMjxrzXI8ytK + pZFdJPhQyWg9LwMFjJOk3YTCxkLHD0bwbUkPjALGuonkt6ojMzDPnQLFT+FxVgy+2Dix4mZ4nHzZ8StI + FCp+xGUi6gdZjk2ZRpgeu7FEmlY1yIt57XICNPIzrLcygjWEaM2F+JyGtID/uAZsR1ZDtPpDQqTPLNGa + KcJlCCB07IzIZ3YG5U/P18lbVxVJC9xmj82+fNDJD2k08M1ID4xDTNjBj+ERPTCO/eoOxgtucsF2zB6M + N9UvVhApdk+gULEvFaf04YdDGCqj3Omprhn6jdWjSsaI1elbxLuiUNqeq5W3EWWc2RWVz+4Sk12CZRGt + w5bleJdCfMLJxybYhlMlv4jfT0K04vv69p9RosUPsNq2TXP2RFn6Sl6nnPHyTnntyiLZiQKkZ5Dggx9t + yGiDlc03FMcrUvlWZR1YdTc/wzT1s4A6Jg+/J816um4IFT1tNlC83xJvwOGAcdaHchwsW0rH61EZWE7N + y5bl94oiqX9xp7yxrUPOxiX8o1Kyd2vA6/968zCi9R/L4i2Eg86hyVEBCNEt2OcA7uNEaxpoD3lzOkBZ + j5765nNF3XLyM7Wy5poi6Tx1iwQ4iwQLxESIFwsoO7ByaEW8FdLTvbv59mXhZgtcpvdHmonosA/PjdUA + /KxZJZ4nv9G5uj7+oroZHjfDPg4bG01fqlQw9VYsp6duluDVKLdP18ragi45FUL1hZo+tXtPODbXiMgu + MbGK1n/htzb5HD62Ls2OLYMQ7WX2mWrRisbsGmNNTGYo0ZqJwtUF0eoMeXPbAt4C/jYG5dDWkJz6ar28 + vqJUmhHqBZblijdR4mVgOMA3Lpv8WafB1iLOg85KWc791QUj4Ng6V6GfXvB50EPms2GXFz4vdkB+DSLF + /nycw42dYjlAmb3TJyrs82PKIssly+cNJdL6cr282RySM5pCcnh32NutLejt0xP2hv0IKoEAfQq/p+O4 + jcnnMSzNkXz8fgeipYVoOkQrBsGaNNGaicJFOoPeHAjYvPagNz+mZD9PyVcbQ/JTzlF/e5nUoHBET94k + Eb4pJ0PA+Cbmdx35ZmbhfydRF8aPpnIwN1uZOIkbvTEnZJODvz6KaIHiywPQk2K9FId3cTpvTnZIT4rz + hTHkm0yRMrDMsfyxHLLrzm1lUruuWR6tD8ovcHnf7o2oI1CGP9Yb9vbui3isTO8XED84lhGZfwXD9XBn + /dXbS3O87+B/1nSJFvVl0kVrpgqXoQMCpr2vkNodAnZEZ0T+O7tNbnioUvIvzJfwKZt1vZfuGTyR4mVg + waQBcDiRqQ9b2xTvaLgD4Qcr9TlIliLGt74TstGTLFBMY5hHkWL/MeYvB89vhhe1uiHerYU90Tm4nt8i + 4EuGLX0M+ShUExn2+THli+UN5S56fr5EHtgh2ze2yk0dYflVX0R9vyvsfTkQ9T7TG/EWBSLePGyftXRj + vNuCERA/XA/+BWzlsYegGdv+GcLzWU4Pg/9OtGYKKBTzusJqfntEDgl58p+lPXL6ynp56fpi6TgVhfb3 + OZMrXoRdKtiplcbC/ju3lyp5rpYVvJ6eE4ydOOmR0dAYtlDEaICZLmTJwuQXJ47j4xdo2CDCgcflPZws + L/7J94d2KLkNAoVnrOujGMYbgeKzMM/FYHt248WUJ5YvvsCuK5bOV+tlJcrf+X1R9dvOsPoevKkvQ6QO + xe/e4Zg3j+KyNDchIBbR0uk56h/wezHYxuPbwDZt+P0d96HwZIxozSbhIu1hNa83qvZqCsmHoA3/3BqS + X29ok1sfrJQC9ljmOC7T4jgZAkZoIHyr03BYkDk2ksM6WLnPjxNwzB576W9s9fQcYQxlaJCs5KdHRmMl + NFx+PVh/8hxQ3GaiwFGEeA8qgV+cdGiHe2Vox/vnhzf4RfIS5Ak/QPoyxIn5xfCO86oxD/nRWoZ5foGa + TC8qGVN2OMyM5YlDx+BVFcLLv7s1pM5E+Hc8vKpvQqQ+D8/q48Got08w4s1fAsP+vRaSEUXrKPCSOZ8F + D9vlguOx3C88GSVaBtsxZjIQr926Qt4ivO0+D1v4aU2f/GFtkzx0d4VUUUh+vTEuYOz3NVkC5odGRQOj + obGFkt0sWBnMUIZ1ZA/BOFkHwyl31jcrPf0u68s4tTK/2szJ4/iFFnaC9QvCcFAs+OsXkfFijjsc5pzs + /0RvqTfsSTtc4LreeEssPU+GdLzPlfXxmRDuKFc6zGZ+UAj4yX8+J4oTux4Y78mWt5MNy4fpH8hyw1l4 + 7y6Xmneb5Ym6gLqsJ6pO64moH+E+/yEQ9j4Nj+pAiNZefVF6VioL156Vgmh9BlyF9A1giCllJIbfcyFI + X+Y+WO4XnowULa63HWemgzffglBU7dcRUodV9qgv1PXJcTt65byXED7eViZVEI8YCyXHfU1Uv6/RkCxm + rIdhz33OT8XKYw5BYk/sBxEOPQ9Re60hXn/ztk/c+CFXemzVEITGPk9/zYWV0hSMiQxBeRweL17p7Uln + MH4+CivPvx0iy1a69fCSONzlLVzj83UePBGlv4DNVlgtSrg3htEM6ShM9Eg5wHgqPaaR0N4UyoMe/wrO + 2SreLaVSs6pBXq/uUzc1B9VJDQH1L+1B9RmI06FhzzsEYvUhCNe8SIwV7BAOChSEYQTR+hC2+cOSXPVm + 8jX4CCzN5tdyPPaA1z3ltfg40dq1je14M53OkDcPrvr+eBMeheVv1AfUf7aEZElRl1z8eqM8c2eFVC+H + MXFmSPI7wMKKBz3t0JBp1PQ6aOQUNho8w06GvaxD43ckr4HA0VthGMov61DoON/YKwizCD05s0w4MZ0f + ej1Dwe4C3IazPXCWVB6fYsruAxTWq3B+Xge9RwoSPUmOOjCeEj/Pbru3dILPm8+dz58zLZyL+7i3Uure + bVarKnrU7e1hdSHE6n86w94Xu8PeQaGY9+HWgDe/J+LNi3parHTn0MXZEQjDiKK1CKL1eQjR7Vju9F9H + P/x6TrwMXgbR+hq21cLjRCuBbRvbcWcyyNA5wYi3Z3vQ2w/hykEoZF/qiXr/WturfljWrX5V0i0X4036 + 1MNVshUiEKBQMBzQU4VQxGwFK42h2FEwKByEQ1H8+NPN8lDQC+Qvv/ySLt7QeOHz5HPl8+Vz5vO+tliC + z9ZK0bpmWV3Vq26Dd/7b6l71L90hdWQo6n0WHNQT9vaggEC05izOoRBAMChGmhFFa3eIFvtdXQPxyIaH + FbFdGwhimzwclxXyH9aiw/M40dqFbRuTZjv+TAWipWeU6Ap583Fv++Mt+cnmgHcw+87AvT+qNaR+sL1T + /WJ7p5y1oUXufbRa3rmhRKrhPehxjyzc6eaJOVKDz+skPDc+Pz5HfgUdnqGCl73zlZ2Su61dnirpkvM3 + t6sftgTVtyKed0RfxNuvI+At6ArqF97ccNSbs2QjRcnLQggJUUhZtOZCtD4BwbgYor8e19ObfH0Egqaw + TyWWr8Hvv+C4u2NZC44TrSRs2/j3tZ1jJuITLX1fEK0siBbDx90RPn4M6Ydj+YtYPjIcU19FOPDL2j51 + JcLIOxFGPvdglWy8vkSaGf7QCH6Dwk/4OSf+n+o6MYcdPgc+Dz6XE/B8CD1Edg6+u0Lan6uTbe+2yKrS + bnmwvk9d3xJQvw5G1dG9EW9f7M/yMIeeFERrDkIzCBTFCL80+jGIFtYtWZyt3sax7aEgwLb4VQ9h22/h + //7c1wiVJrHsRCuBbRv/vnjDaEO3nWumMYRoZUGo9JChvqi3OzL/o5GodxhCgaM6w97R3aHYZwIR9c91 + vep/8zrUBZva1cMr6+W1ByolFyFF7fl5EmR4YepD/N6YE7LJxQiUqY8i/M96v2uKJHxPhTQ+VSP5bzTI + W5vb5W94fhfhRfTLUEz9K8rA4Xg5HdwRUrv5jZ/Grg2eaWMXLY4p/N6yXLkex6xO1E8Nvv64WK3Ftlfg + 93P9AsRzJZY1iWUnWgls2/j3NaLVPQuEawTRyoJo6cyHaOm57duwPdbPx/qDAhHvqI6Qd3R7yPsS/h/b + FFQ/KelW521pl4fXNMpbj1bJhlvKpOSyQmmD0XBYkX7b05DMZG+ERoVC5BglzDeTh8xP4+GyceKy7RK7 + qVQ67tshFc/Wqi3rmtW72zrUU+U96kqE/cdHPfVVCFQ83IKRxw06LjZxQ58w0foQROunWL4Jx9oOrPVW + S3Hd2KceHti9+P9VbL8nRKv/GngsJ1rDYNvGv69ftAiNmUYeGeIi050xiJZeD9HSXxdC2jysPzga9f6+ + N+x9FWnHdIfVt3C8/1fdp07Y1iFXvN8iT6+ql/UIKbfeXCpllxdK4wX5EmKFNr0DGpzBCBnJdM/MeE5G + oIw40ZNiwwJbTa+CB7WiVFruLJfKJ6pVwVtNKie3Ta0q6lK37wyo0xDq/RAi9dmIJ/vUh0T3l1q2EcZN + 4ycw8kkQrX1wnv/D8mOgGsexzndFsF0XeHzpxuiPIVofRRr2p7DEr6n/f2JZk1h2opXAto1/3+FEixdr + u4Z0ZgJES6+HaGX1YRt+rAPMC0W9A3HcI0Mx75+7wt6xnSH1n10R9eOdQXXipg61/M1GueeVnbL2yRop + +Gu5lF5bIrXwEFovyJPAmdv02DVdQWzEjB848AuaEbWZKmzm2v33w/vjfRphYveIMyHsFxSI+st2PZ1L + 2w2lUntXhZQ+UytFCPM2vN+ininsUitaQurMiKf+CwJ1RCgmi6oC8e8A4lzaOCk0XNYGOnmi9Wn8P2Np + rnoE56nD/kN9DcfUW61F6PgLcDBEC8f1CYoTrYH4BSkZ2zb+fUcULWzD3z4Yte160o1JEq0siFY8v7A/ + 9+En03h8HGcR8uoIpB/TGfaO6wmrX3aG1YnwCk7f0qEuf6NR7n1pp7z+dK3k3VMhFdcWSc1lBdJw6XZp + g3fWhVAzeMYW8dgRkyEnDZ/G7scvBITiZ0QiGRTgMWM7nibp/CT5Grk/O9KyV/nybeJdmC/BPxdIN4S7 + DTRcVyw1D+yQypfrpfjNRvXBhlb1IsLvu1vD6qJgTP0i5qkvt4ZkLxwHRgdDhcFoISFJBj0FonUY7vkC + CM0boAv7eWBQfml0nyv1Po5/JvgCBGuOrqh3orULIzZ+/IKUjG0b/76jES14GNrwbdeVTvC+plC0dF4x + nfnD/bkOx1qI4x6MvPtiMOJ9IxBRP+uNqN/CQzu1vk9dXNqtrstpU3esbpBH4Z29+VClFN5dIQ03FEvD + ZYXSdFGBtMLw2ylsEIEeiFvfWVsleOZWCZ++RWJ/2hwfzGt6nNt6nQ8lOMQIn3977k/hJBQghrsQIYXz + xs7GeUHw3DzpOy9PenhdgNfXeimud0WJNDxYKU1P10j5qnq1cX2LWlXQqZ6q6lV3tobUpeGYOhHC9G9h + Tz5X3iN7apGgwSYwhhhfhqHCYPT/RNrUiFb4SOx/LbZbC4b8qATBeVl3Vb4kJ3baklzv73F8eII4XwIn + Wj6M2PjxC1Iytm38+45FtIa6gXSB95UGoqWPy7zj8XqxjmmtWMf1/O0MxRZA0A6Oed4Xe6PedxEO/SYQ + Vb+DuP2pLaT+DHG7bkePugPh0gOb29Xj7zWr51+rl9eeqZF1j1RJ7j3lsp19kf5aIR0rSqXz2mLpuKJQ + OuDFdcDL6YDodZyfJx3LAUSvH/5nOgSn42Jsx+25H/e/pVS6IJ6dEKDGRyql9LlayV9Zr3LWNql1Oa1q + dX6nehGC+3hNn7q3Oaiu7Y2qcxDCneghlIspdUxJtxxA4/n9ul4Yb8KwaJgJluXGxUSLhC+d25k0bagw + GP0/kTbJovVLpD2B426EuAxZX0USleybwDIsfxWitQCitet8CZxo+TBi48cvSMnYtvHvO1bRohEjHLJe + 43TCe+F9zRDR0v3LIFoabt+N7Xh8fZzEsfT2WG4PxrI6QU84tiAUjR2Ic36lK6x+ppRaDH4NfjNOTgC/ + 8pT6r+o++TzC2Xk0bG1Y2jBg5NlRvayNxhgiDSaxjQb/Z4Bo7YV7+wvS3gWsXLeKVD/0rLJj63C+X+K+ + 2X1hHkQL54vhuPFz6fMlcKLlcAwDC7KGxoKCpsUEmHRtGAmjMEZr0oai3zB8+9OAZoFofRusgYi8j//W + 3ut+cHyGzffgnN+CEB2hj5u470wQLVt582NNdDhGggVZQ2NBQXOiFb8uc234/Ri4D+vfAxxKYxUoPzgu + ftXD+P06jr2/Pg6ESB/XiVY/1kSHYyRYkDU0FhQ0J1r62hbhOHcuydHzWBWBoVsAfeB+65CPnDn0nyA0 + +nNd+tj8daI1CGuiwzESLMgaGgsKWgaL1m4QgMuwXw6Wh+yxPhi2BHrrIXA/xP1+DvmY6BMWv34nWkNj + TXQ4RoIFWUNjQUHLENHisJ3dkHYMROtVCEse/heCEeupKFJkcY7UgiVY/gLOeQhES9+vzkd9rvj1O9Ea + GmuiwzESLMgaGgsK2iwVrb2wzUFY3hNpx0K0irHMsK8W/4fsqb4LCpUEF+eqFhz7GdzXdyBYh4Pd+gXF + idYgbOXNjzXR4RgJFmQNjQUFbRjRWoTC/inwafw/bDhQ8A/jdjBiPX6O0ICmULQOxP+/w7EORNoXce3P + YZsdWC4DDSBJlIYgR/UuzpW6Jdkeh9j8BKJ1GI79EYoTBEvjRGtobOXNjzXR4RgJFmQNjQUFLUm0DkGh + /hLgBxaeQ2GvJvg/LNhWb4ffbPz/AoEBfQ6itRDLcaMxhkiDQVo/+D9K0eLA56OQxvMcCQP/LQx5G/7X + 4Fhs7eMn46PALkwDYP2U6sBy6eIc790l2dETIVqfgmh9DPkzn51J6cU50UoNW3nzY010OEYiIU5+0doD + /AMK/P8inbNp1gMO+E3R8AfB/ethDOUIy67A8hdhNAeNUbTmYp+jsf+/4f83wdfAb7DdTqTxPDtBO7Bd + xxCwfkqxPotfZH5lWXbkZ1j+OETroxCt3SBaEKp4/jjRGh228ubHmuhwjESSaO2PQnwVCi4FgMafQn3P + qOgDNTCa+2G8R8OoFg0hWnMgWv+E6/h/SPsB+A9wHPa5ANdZhm2a8b8JNIJRihSIf9T0eQjNa4s3Rm+C + B/hV/P8Irmd/iNYCLMOwYfAIZ51ojR1befNjTXQ4RsInWv+BArsahZjCYjf2iSMEY67B+a6DsXwP/38J + fgF+jv/H//790PVYx/CSgkSBMaTQujcYHKcPYvM6lh/B8R+Gx/cbLH8YQrMfRGsfiNYc/IfBMi8i2pCd + aI0fW3nzY010OEYCBXke4Iya9Fz44U+r4U8KOSoIKEycwsUH0m3bp4wqg8HehuU7ICZ3Q0xOguGyUYCe + 3SKIlq5bo9BAtCAQ8QYCLRxOtPS2NhEaLbby5sea6HCMxMkboweioKbeopZGwPjYCz0IEXoY/68EN8D4 + roaRfh8Gy/m19oaY7I1tFtJw8V8bJ7ZPLDvRMts70XLMGCBarM8JAKswpAsUKBgWw8o78P9UcCHSLoJB + nrh4Q3gR/u+hyVF7IG2eMVgjJk60nGg5ZgknZ0dZyZ0WokVhIjCcXPz/NfhDglOQfgqM8Ccw+o/gP8O7 + 3ZC2OwxyAUQrbsCEhgeDMQbrRIvX5UTLMYuAaB2BgjumCu4Jgt/8uwD8CMZ0PIzwJzAu9g2bD9iSp8G6 + BTDC+TR6/Ndo44NxONFyouXIICBan0BBHWsfrHGDc7NV8J/APBjTfBghGwZ0a56fuKHB6Cgc/jQYhxMt + J1qODAKiNQeF+ccwuJSmX5lIYCABcCaW5wJtTDRCGhf/+3GiFb9m/T+xrEksO9FyZAwQLRbmuSjYP0KB + ncq6rTDOdyFgGKiNx4lWYn8nWg7H0GgDj8OpWvZBIV6OX5vITBQezvUgDGNfns8YCnGildjfiZbDMTTa + wA3xQrwnoICdDVjf1J2AHT/5aawQYB3YaIf4xGAsz+J3Ac61b9yodhkKcaKV2N+JlsMxNNrADYlCnCjI + C8GiJZtk98UbQt+AQd6N9BvAq6AEsCc7Z/ccEuzficJ7IZY56d6+MJY9jNA40WK6Ey2Hw+GYMVgTHQ6H + I12xJjocDke6Yk10OByOdMWa6HA4HOmKNdHhcDjSFWuiw+FwpCvWRIfD4UhXrIkOh8ORrlgTHQ6HI12x + JjocDkd6Iln/H97JxrEhKXSNAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAABVYAAAKLCAIAAACSXEQ6AAAABGdBTUEAALGPC/xhBQAAABl0RVh0U29m + dHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAP+iSURBVHhepP2HklxHknWN9hMNqip1AWTP/Pe1htCS + RCmAUFUFQQUNUKtudvfM/2R3u6+IfTxPgvPNd6/ZNrcdHn4SIIBus7UjTtZfFo9vz08/Wzy5LS2f7kn2 + 88fRV7WZyT+5TUX2Cz2Ymj35bPFUy9urL/bVXz7blzTGrjrT009j/tne/OltSfOSTHb0uJphpnpEn/Bs + b6axXjeW+zNNymvyi/3Zs73llwc8heRRLL8IaXjx5QHzMpKewof5cl+afbE30jwnV18fLb86bA9+FVp+ + fSjpEVU6VbH7TWjx9cFCY2pqrEgdSWOrb45Wz4+Y9CMYaf7VvnYlNakx8M3B6sURWqoZncPVizuqc/1y + elAf2BVLTb6842qzeH4oI+2mls/1YPvwMM8PVi81rMc1puEDmd1Xmo+mahV9KyZf31m9Olq+bEaSkdSh + WfthtKX5damJFq8OV2/uLF8fIXkkry3JW/arN6p6Kqq0eHXgpZth3hwuXh9I1aDV29iN/pvDubbSWMu3 + R1SMB1hi1Gy7bw6W74563ZcWbw+k5btDyd4dNzVpPxJbcxkt3x/O3u6rIvn5u2guvz3CUNVnq4omMx5o + 5v3B7F3UxbeHMq702Uq/N38vH1p8q04ztd+a3x3Mv92fvd+TUcUg+qp45AH36cy/22/6Vo+os7/8XmNR + tcQje5m6u/rhMB78fl9a/nBAnX+3Z58mfiHV5Q+HqoiOfej7/dl3ewvN66kfD7W0lzB0Vj8dYZhR9fDi + x4PlT4eq1eDnP+yP/Q/7Sy27Vpr/YX/1s57S7v7yJ02Gdn85UqUpsZQ0WQ27q18Olz8fLH7aV9399SiX + h6tfjhYay4pRc/fXO/IyTZosWvx8QMVsNle/HqnOf95f/XYkLX45wKiPeERm97c7EkuZ2GXyt6Plr4eu + aPf3O5I6qrm8i1ZqajIlv/u36FCrGQb+fhct1f9bVGn375+zlKk+tvQJf4unVM/+od27VCbP/nGPqnm8 + 1D7nj89XGv7HPZl1qXPv7D/ur2ImjORm6J/3d/9xb/XH50s9/s+27Lq/0tg/H0jyLFXP/eshSzpn//Vg + Vw9mRStt6RE9+K+HEsZNb9kMW/96sNIn6KPUjGXUs//1SEaSwavJLt67qkv9lvquOnW3P9509r+OXVvn + v49XGtZMlzo22pLcYVLLpX657NcBL1ea7NrVlub1oHZ7R0vM6l/6zEfLfz6s2v2v6GMQYx7WL8FvAOmX + 1tK/PZrqMFN/q/oPX+lj9SH/0B+X/hiHP0zXqnEn/qgf8Kz+zBd/3JMwqhg94qb7Sxkt9a+9GP0DoGrp + rZX+Wf7j3lLLFFvzv93dqHcWf7+ruvzj84U6f7s7//2OhEf6t734m5pHGNXw2tJYaq7/6/j9SM3Zb4ca + UJXHqDIw+/Vw+sv+/LfD2a8HqjGflWXXwUwz6qSW+hDNqN872tWHzH4NTX/eoxPNn/ds0OyXpunPt5vX + /C/7C32OJjXQdHseW7el6U+fYWhOf/xs9tNtNNdkGHXGWsTkp9JcT/10e/rDp5LM7MdPpblm0kjTH25h + FjH5mZZo9sOnaK5fMWpoFv1bMtPvb+JZqqpDc/Ltjel3N+d69vtbqulvTb9Ts0lLaabhVPPf3Zx+e0N1 + /v0tqjR5fx2fW03zGL4x/fb67Nsbcz2lGf2KWemgwav//rrq4tubCzU1+e6a6geNNXt7bfH+hqo0f3dd + mr29On+nprya6dXX2LvrmNmbq5KX85xJ08SANH19ZfCvrszfXEvJX5ZkZq/VjDp71TR9ebnUS7NXMpfn + 2nrZ6vTFJdfQC9UrWlZNnl+Ups8vSRrATL65iJ9pRrtayqv/9QXVteU3l6ZfX5QmX13AzL6RPy/Nvr64 + 86XMBVUPeDn96uLkywvUnS/Oq3oZ9YsL0vTLizvPPplqSwNdWk61++x8q8/OT55+Ismgtnx6Xpo9uyDZ + T558Upd0pk/OT59cmDw+P3tyYZoVyUvzpxfxmPmTi7PHWU/PL55cnMs/viDPcnZ6Yfn08vzxxcWTS5LM + 8skltFL/NJaL04urJ5eXjy9FlX98WVqeXtp9ckWVpaTl7uPLZ7OuTpt2H2t5Rebs4yvWuSdX06he3T29 + cu7x1Y8eXzt3elX6+Ml1e5mPH1+XPjq99u9Pb6rK//XJDeq/P7nxV5nHMjdVPz4N/x9Pb0n/LvPkpoT5 + i/h/dvIpQcDs9NPK/Fq6IzPXjJTAHwyfPG8B+YOJFGDP/F8jAAnjFKAryH/xbB/NYmA/mhswL/7PCEA+ + NIuZhvSqpABMqrJUzRSgzYj2IX8bxK6DAEzqIFKArw41sPzqUIrJL/eN+jZqssS0mqgP9i+/EeoL45t3 + Z6WakQGcb/6vqltkAT0FCPIX6svsvryLoaq/Fgck/Av7IX/7kdFnEge4gvTG/sr/Jn+ZP8sFAP5K/jD/ + Qp118lcH4HefTh2A8IF/1c1owEZ4L+yH9nffavJgwP6s3lXFwP8m/4D/Qv7ieTR7tU8HyLeH9qnS6t0d + DDM8u3jTAN5gXwk/kL6kA3h3al919mZfIgKQlu+PVEF3CfiXYHsbdu1VNclSla06o90YS9TfVKYA+0L9 + Svt4mgQB07e3ZfBh1iHf5C+xrAPMuCIPVyaH7QkFAu9LLqBaTR0IJfyL/FVJAVgSBKSPFIBfyJVcoKYD + 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 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+Pj5//j4+P/4+Pj/+Pj4//j4 + +P/4+Pj/+Pj4//j4+P/4+Pj/+Pj4//j4+P/4+Pj/+Pj4//j4+P/4+Pj/+Pj4//j4+P/5+fn/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//7+ + /v////////////////////////////////////////////////////////////////////////////// + /////////v7+//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vn/+fr4//n6+P/6+vj/+vr4//r6+P/6+vn/+/r6//r7+//6+vr/+/r7//r7+v/6+vn/+vr4//r6 + +P/5+vf/+vr4//r6+f/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+f/e393/1tbW/9TU1f/V1dX/1dTV/9XU1f/V1NX/1dTV/9TU1f/V1NX/1dXV/9XV + 1f/V1NX/1dTV/9XV1f/V1dX/1tbW/+Li4v/7+/v/+fn5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +f/6+vn/+vr4//n69//6+vf/+vr6//v7/v/8/P///Pz///z8///7+///+fn+//n5+f/5+ff/+Pj2//n5 + 9//4+fj/+fn9//v6///8/P///Pz///z7///7+/z/+vr5//r69//6+vj/+/r5//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/4+Pj/JiYm/wkLB/8dHxn/GhsW/xobFv8aGxb/GhwW/xka + Ff8WGBP/FhgT/xkbFf8aHBb/GhsW/xobFv8ZGxb/HiAa/wECAP9HR0f///////f39//6+vr/+vr6//r6 + +v/6+vr/+vr5//r6+P/5+vf/+vv6//z8///8/P//+/v///n49v/z9N//7vLM/+nttP/j6pf/3+aE/9zl + d//a5G7/2uRp/9nkZ//b5Gj/2uRr/9zldf/f54L/4umU/+jttv/v8tD/9fbr//v6/v/8/P///Pv9//r6 + +P/6+vj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+/v7/xYXFv9tcmX/9Pbv/+Hj + 3f/k5uD/5Obg/+Pl3//p6+b/9Pbw//P17//n6eP/4+Xf/+Tm4P/k5t//4ePe//L07P9GSj7/ODg5//// + ///39/f/+vr6//r6+v/5+vj/+vr4//v7/P/8/P///Pv///j59//w8tT/6Oyv/9/mgv/Z4mH/1d9L/9Pe + PP/T3Tj/0t02/9LdNv/S3jf/0944/9LeOf/S3jn/0t45/9TeOf/T3jf/0942/9PeNv/T3jj/0949/9fg + VP/d5Xr/6Ouv//P15f/7+////Pz+//r6+P/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//v7 + +/8XFxf/eX1y///////8/Pz///////7+/v//////4ePc/3t+dv+HioL/7vDr///////+/v7///////39 + /f//////TlJH/zg4Of//////9/f3//n69//6+vn//Pz///v7///29/L/7/DK/+PnlP/b4mL/1N5B/9Pc + NP/S3DX/0904/9TdPP/V3j//1d5B/9XeQv/V3kL/1d5B/9XeQf/V3kH/1d5B/9XdQf/U3kH/1d5B/9Xe + Qf/U3kH/1d5B/9XdQP/U3Tv/0t01/9PdNf/U3kr/4OaH//Hz2P/7+///+/v8//n69//6+vn/+vr5//r6 + +v/6+vr/+vr6//r6+v/7+/v/FhYX/3Z6b///////9fb1//n5+f/19vT//////4OHev8AAAD/AAAA/6es + n///////9vb1//j5+P/29vf//////0tPRP84ODn///////j4+P/8/P//+fn6/+/w0//i55H/2N9X/9Tb + O//U2zH/1Nw2/9TcPP/W3UD/1t1A/9bdP//V3T7/1d09/9XdPf/W3T3/1t09/9bdPf/V3T3/1d09/9Xd + Pf/V3T3/1d09/9XdPf/V3T3/1N09/9XdPf/W3D7/1t0//9XdQP/W3UD/1dw7/9PbMv/V3D//4eWH//T1 + 5//8/P//+vr3//r6+f/6+vr/+vr6//r6+v/6+vr/+/v7/xYWFv93e2////////f39//6+vr/9vb2//// + //+EiHz/AAAA/wEBAP+praL///////b39v/6+vr/+Pj4//////9MUET/OTg5///////29vT/7O2//93g + bf/U2jz/1Nox/9XaNv/W2z3/1txA/9bcQP/W3D//1tw+/9bbPf/W2zz/1ts8/9bbPP/W2z3/1tw+/9fb + P//W2z//1ts+/9bbPP/W2zz/1ts8/9bbPP/W2zz/1ts8/9XbPP/W2zz/1ts8/9bbPP/W2zz/1ds8/9bb + Pf/W2z7/1ts7/9PaL//X3Ev/7e7E//v8///6+vj/+vr5//r6+v/6+vr/+vr6//v7+/8WFhb/d3tv//// + ///39/f/+Pj4//////+9wbb/FBYP/wQEBf8CAgL/JCce/9XYz///////+Pj4//f39v//////TVBI/zY2 + M//5+8D/2Ntd/9TZM//U2TH/1to8/9bbQP/V2j7/1do4/9XZNP/U2DD/09gu/9TYL//T2DP/1Nk3/9XZ + OP/U2Tf/1Nk0/9TYMf/S2C7/1Ngu/9XZMv/V2Tf/1to8/9baPf/V2jz/1do7/9XaO//V2jv/1dk6/9Xa + O//V2jv/1dk6/9XZO//V2Tr/1dk6/9XZO//W2j7/1dk1/9TYNP/m6J//+vv///r6+P/6+vj/+vr5//r6 + +v/7+/v/FhYX/3d7b///////9/f3//b29v//////io6C/wAAAP8MDAz/CgoK/wAAAP+vs6j///////b3 + 9P/6+v7//////0tPRf8vMAr/4uU4/9PWMf/W2T3/1tk7/9XYM//V1yz/1Ncw/9bZP//Z3FX/3+F2/+Pl + jv/o6af/6+u4/+3uw//t78P/7e/E/+3twP/q6rD/5uec/+Hjhf/b3WT/19pG/9TXMv/U1yz/1Ngz/9bZ + Ov/W2Tv/1dk5/9XZOP/V2Tn/1tk5/9XZOf/V2Tn/1dk5/9XZOf/V2Tj/1dk4/9XZO//W2Tn/09Yr/+bo + n//8/P//+vn3//r6+f/6+vr/+/v7/xYWFv93e2////////f39//39/f//////5aajv8AAAD/AwMD/wEA + Af8AAAD/ubyv///////5+f//7+/V/+rrcP9DRxb/MDAP/+TlP//T1TX/1dUs/9XWM//Z2lT/4eKE/+vr + tf/y8tz/+Pj0//r6/f/8+////fz///z8///8/P///Pz///z8///8/P///fz///z8///7+///+fn5//T0 + 5v/s7b7/4uOJ/9jZT//U1S7/1dYv/9bXOf/W1zn/1tc3/9bXN//W1zf/1tc3/9bXN//W1zf/1tc3/9bX + N//W1zf/19c4/9fYOP/U1i3/6uq0//z8///5+vf/+vr6//v7+/8WFhb/dnpu///////19fX/+Pj4//r6 + +v/t7+n/l5uO/0FDO/9LTUT/p6uf//b3+P/39/b/5eWg/9PTN//g4C//REcY/zAwDP/i4S3/1tZE/+Pj + g//u7sb/9/fy//v7///8/f//+/z+//v7+//6+vn/+vr4//n69//5+vb/+vn1//r49P/5+fT/+vn0//n4 + 8//6+PT/+vr2//r6+v/7+/7//Pz///v8///29u//7Ou2/9vbXf/V1Cz/1tYx/9fWOf/W1jX/1tY2/9fW + Nv/W1jb/1tY2/9bWNv/X1jb/19Y2/9bWNv/X1jj/1tUz/9bWOf/w8Nf/+/z///r6+P/8+/z/FhYW/3l9 + cv///////Pz8///////////////////////////////+///////399z/4d9g/9jWJ//Z1zP/6OY5/0VI + Ev8zMhv/8vKg//Ly5v/8+////fz///v7+//6+vf/+fr3//n69//6+vn/+vr6//r6+f/6+fb/+/v7//r+ + ///7////+/////v////6////+v7///r7/P/6+ff/+vn4//n6+P/6+vf/+/v7//z8///4+Pf/6umu/9jW + RP/W0yr/19U3/9fUNP/X1DT/19Q0/9fUNP/X1DX/19Q1/9fUNf/X0zX/19M0/9fUOP/V0yn/3dxq//n6 + /v/6+vn/+/v7/xYWF/9vdGf/9Pfu/97g2f/i5N3/5efg/+Pm3v/h49v/4+Xa/+Pl3v/V1qb/xsU5/8XE + Kv/EwzX/wcAu/9XWTv9BRSD/OTlA///////4+fr/+fr3//n59//6+vn/+vr6//r6+v/6+vn/+vr6//r6 + +f/6+/v/+/////r48f/45Lz/99ON//bKc//2yXP/99GJ//jhtP/69ev/+/////r7+//6+fj/+vv6//r6 + +P/5+fb/+/r6//z8///19ej/391w/9XRJf/X1DX/19Qy/9fUMv/X0zL/1tQx/9bUMf/W0zL/1tMz/9bT + M//X0zP/19Q0/9bSK//q6cX//Pz///j5+P8nKCX/AAAA/wcJA/8SFA7/DxEL/wMFAP8DBQD/BAYB/wYI + C/8FCA3/BAYD/wYHBf8EBgP/EBIH/xITCP8ICQb/AAAA/0hJRv//////9/f1//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+P/6+vv/+vjz//fXmf/0szP/86MH//KgAf/yoAD/8p8A//OgAf/yowf/9K8p//fR + h//69/H/+/3+//n69//6+/n/+vr6//r6+v/5+ff/+/z+//r6+//j4IX/1tAk/9fTM//Y0jH/19Ix/9fT + Mf/X0zH/19Mx/9fSMP/X0jD/19Ix/9fSNf/X0iX/3dl7//n5///7+/v/09bO/4mNgv+BhXn/HB8Y/yAi + HP+Hi3//gYR8/4CDfP90cyz/cnEb/3JyHv9xcBX/dnhL/xMUFP8MDAv/eHtv/5SXjP/e4Nr/+/z7//n6 + +P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+/v/+vbu//W5Rf/znwD/86IG//OkCv/zoQL/86EB//Oi + BP/zoAH/86EB//OiBf/zngD/9LY9//nx4P/6/P//+vr3//r6+f/6+vr/+vr6//r5+P/7+vn/+/v//+Pf + hf/WzyT/2NEz/9nRMP/X0S//2NEv/9jRL//Y0S//2NEv/9jRL//Y0TD/2NEs/9jSP//y8eX/+vr6//z9 + /P//////2t3T/wABAP9LTkX///////7+///y7pH/5t4w/+bdLP/l3C//9vKe//z+9P8mKSL/FRcR//Dz + 7P///////f38//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn4//r8/v/2yXH/8p8A//Oi + Bf/zpAz/9bpI//fPgv/42Jj/99CE//S5Rf/zowf/86UO//OeAP/0uEH/+vn2//v6+v/6+vj/+vr6//r6 + +v/6+vr/+vr4//v7+v/4+fj/3dZa/9fOJP/Z0DD/2M8u/9jPLv/Yzy7/2M8u/9jPLv/Zzy7/2M8u/9nQ + MP/WzST/6eey//r6+v/29/b//v7//9XZz/8FBwH/S01D///////e2YL/08gd/9TKI//Xzj//6+jE//n5 + ///29/T/Jyki/xgaE//o6uP/+vr7//f49//6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +P/6+/z/+fr3//W4Qf/1ukb/+enJ//r7+v/6////+/7+//v////7/f//9tCF//OhA//zphD/858A//fZ + n//6////+vn3//r6+v/6+vr/+vr6//r6+v/5+fj//Pz///Hu0f/Xzi7/2M4r/9jOLf/Yziz/2M4s/9jO + Lf/Yziz/2M4t/9jOLf/Zzi//1ssf/+Tegf/6+vr/+vr6//j4+f//////Sk1B/xMWFf/X1Yf/3M8l/9PH + Hf/b0k7/8/Lf//b3/f//////zNDE/wAAAP9scGX///////f39v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/5+vn/+/n4//r8/f/59Of/+vjw//r////6+vn/+/n2//n59v/6+PT/+vv7//r3 + 8f/zsCv/8qMH//KgAP/1wl3/+/3///r5+P/6+vr/+vr6//r6+v/6+vr/+vr6//r69//7/P//49t4/9fL + Hf/ZzS7/2M0r/9jNK//YzSv/2M0r/9jNK//YzSr/2c0t/9fLIP/f12f/+vr6//r6+v/39/j//////4yQ + gv8AAAD/cW8Z/+nbKv/o3WH/+vnv/////////v///v/7/11hVv8AAAD/sLOm///////39/X/+vr4//r6 + +P/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+fj/+vz8//r6+v/6+ff/+vr5//r6 + +P/6+fb/+vn3//r////58Nz/86se//OjCP/yogL/9bdA//r6+f/6+vr/+vr5//r6+v/6+vr/+vr6//r6 + +v/6+ff//P3//+7rxf/Yyib/2cwq/9nMKv/ZzCr/2Mwq/9jMKv/YzCr/2cwq/9nMLP/YyiD/3dRY//r6 + +v/6+vr/+fn4//38///z89//WFki/wAAAP9KShH/wcKq/+fp6f/j5dz/uLyw/z5BOP8AAAD/f4R2//// + ///6+///+vz+//v8///6/P7/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +f/6+vn/+vr6//r59v/6+/z/+v////r9/f/56Mj/9LY8//KhAv/zpxD/858A//bBXP/6/f//+vn4//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr5//v7+//39vD/3M9C/9jKIv/Zyir/2coo/9nKKP/Zyij/2coo/9jK + KP/Zyir/2Mkf/9/SV//6+vr/+vr6//r6+P/7/P//6N6L/+HPGP+DgTL/GBsj/wgJBP8cHRf/GhwX/wUG + A/8hJB3/q6+j///////48OH/+fHf//rx4f/58eD/+vHi//r6+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr5//r6+f/6////+vfu//jeq//2vlH/86UN//OhA//zphD/86IG//Ki + Bf/44rj/+v7///r59//6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+vn/+fr7/+DTXf/Zxxz/2skp/9rJ + J//aySb/2skm/9rJJ//ZySf/2skp/9nHHv/e0VT/+vr6//r69//8/P//8u/V/9nGJP/Zxyf//PfT//L0 + 9P/X19b/1tbX/9bW1v/a2tr/9/f1///////4+fn/9LtM//OoE//zqx//86ob//OsHv/56cr/+v3///r5 + +P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//r7+v/7+/v/99ib//SxLf/zoQT/86EC//Ol + DP/zpAj/8p8A//OoFf/426L/+v3///r6+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr3//r7 + ///j2HT/2cUY/9vJKP/ayCX/2sgl/9rIJf/ayCX/28gl/9vIKP/Zxhn/4tVq//r6+f/6+vf/+/v//+TX + df/XwQr/6uOo//r7///8+/r///////////////////////v7+//39vT/+v////bMeP/yngD/86QJ//Ok + Cf/zngD/99aV//r////6+ff/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6/P3/9shu//Kf + AP/zoQX/86YN//OiBf/zoAD/9Kwg//XHbf/57tf/+v7///r5+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r59//7/f//5tt//9nDFv/bxyj/28ck/9rHJP/axyT/2sck/9rGJP/bxyf/2MMV/+bb + iP/6+vj//Pz///Pv1v/ZwhX/4dJk//r7///6+vj/+fn5//j4+P/4+Pj/+Pj4//j4+P/5+fn/+vn2//r+ + ///44LD/86IG//OlDf/zpg7/86EA//bCX//6/f//+vn4//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r5 + 9//7/v//+N+v//OgAP/0pQz/86UN//KhAv/0tDf/99eZ//ny5P/7/v//+v39//r59v/6+vn/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+vj/+vv//+PUaP/Zwhf/2sYl/9vFI//bxSP/28Uj/9vF + I//bxSP/28Yl/9rDGf/s5a7/+vn3//z9///n24P/2cEX//Lv2f/7/P//+vn3//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+P/7/P//+fDf//OqG//zowb/8qUO//KhA//0sSz/+vbw//r7/P/6+vn/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+ff/+/////bLef/znwD/86YR//OhAf/2xGT/+vr3//r////6+/3/+vn2//r4 + 9f/6/Pz/+vv7//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+/v6//j5+v/ezE7/2sIX/9rE + I//bxCD/28Qi/9vEIv/bxCL/3MQi/9vDHv/cxi7/9fLi//v7+//4+Pb/3cYx/+XXdf/8/f//+vr2//r6 + +f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//v6+v/1uUP/86AA//KlDv/ypAn/86UN//jn + xv/6/v//+vn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vn3//v////20IX/8qAA//OlDf/zpAz/+OvN//v+ + ///69/D/+vn2//r6+//7////+vHh//r16f/7+/z/+vn4//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//v8 + /v/18+T/3cYw/9vCG//bwyD/28Mf/9vDH//bwx//28Mf/9zDI//awBP/4tFf//n6///7/f//8uvG/9zC + J//08Nv//Pz///r69//6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r59//6////9sx6//Kf + AP/zpQ3/9KUN//OfAP/31ZH/+v////r59v/6+vr/+vr6//r6+v/6+vr/+vr6//r5+P/6/f//+OW///Oj + Bf/zpQ7/8qEB//bNe//7/v//+v79//v+///69/L/99me//SqG//2w2H/+v////r6+v/6+vn/+vr6//r6 + +v/6+vr/+vr6//n59//8/v//7eSw/9q+E//bwiD/28Ee/9vBHv/cwR3/3MEd/9zBHf/bwiD/2r4S/+7l + s//8/f///P7//+vfmf/hzVf/+/z///r69//6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+ff/+v7///jgsf/yogb/86QM//SlDv/zoAD/9b9W//r9///6+vf/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vn/+vr5//r7/P/1vlT/8p4A//OmD//zpAr/9bxM//fPgf/2x23/9LIv//OhA//zowf/86ID//fU + jv/6/f//+vn4//r6+v/6+vr/+vr6//r6+v/6+vj/+vz//+TTbf/bvQ//3MEf/9zAHP/cwBz/3MAc/9zA + HP/cwR//278U/+DJRP/49/T/+vr7//z+///o14T/6+Cj//z+///6+fj/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr5//r8/v/58uP/9Kse//OjB//0pQ7/9KIE//SvKf/69en/+vv9//r6 + +P/6+vr/+vr6//r6+v/6+vr/+vr6//r5+P/6+/3/+vXp//W5Q//zngD/86IF//OhAf/zoAD/86AA//Oi + Bf/zpAv/8qIE//KeAP/1vlT/+vn2//r6+v/6+vn/+vr6//r6+v/6+vj/+/z///Pw2//cwCL/3L8Z/9u/ + HP/bvxv/278b/9u/G//bvxv/3MAe/9u8D//u5K7//P7///r59//7+/7/59eH//Xx3f/7/P//+vr5//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vn/+vv9//W8S//zoAD/9KUO//Sk + C//zpAr/+ObD//r+///6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vn/+vn3//v8/f/69+//9s5///Sv + KP/zpAj/86IF//OhAv/yogT/86YP//W2Pv/32Z3/+vn3//v7+//6+vn/+vr6//r6+v/6+vr/+vn3//z9 + ///o2YT/27oL/9y/Hf/cvhr/3L4a/9y+Gv/cvhn/3L4d/9u7Df/iy1L/+fr7//r6+f/6+vr/+fj2//Lu + 2f/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn2//v/ + ///2z4D/86AA//SlDv/0pQ7/8qAA//XTjf/7////+vn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+fj/+vv6//r////59Or/+OS+//jYnP/30ov/+N2o//nqzf/6+ff/+v////r6+//6+vn/+vr6//r6 + +v/6+vr/+vn4//v8///08Nz/3b8j/928Ff/dvRr/3b0Y/92+GP/dvRj/3b0Z/928Fv/cvRz/8+3R//z8 + ///6+ff/+vr6//r6+v/7+/3/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r59//6/v//+OK4//OiBf/0pAz/9KUO//OfAP/1wFj/+/3///r5+P/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+ff/+vv9//r+///6////+/7///v////6/f//+vr6//r5 + 9//6+vn/+vr6//r6+v/6+vr/+vr6//r59//6/P//5M5h/9y4Cf/evBv/3bwX/928F//dvBf/3bwX/928 + Gv/buAj/6tuW//z9///6+fb/+vr6//r6+v/6+vr/+vr3//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vj/+vz///nx4P/0rCH/9KIG//SlDv/zogT/9K8p//r0 + 6v/6+/3/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+ff/+vn2//r5 + 9v/7+ff/+vn3//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r59v/8/v//7N+g/9y4Cv/duxj/3boV/926 + Fv/duhb/3boW/967G//ctgX/5c9o//r7///6+vj/+vr4//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//r6+P/6/P7/9btJ//Og + AP/zpg3/86QK//OkC//458T/+v3///r5+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r59v/8/v//8uvN/927 + G//euRH/3roW/965Ff/euRX/3bkU/966Gf/ctgX/4cVE//j39P/7+/v/+vr5//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn3//r59//6+ff/+vn3//r5 + 9v/6+PP/+v7///bNfP/znwD/86UN//OlDf/zoAD/9tKL//v+///6+PP/+vn3//r59//6+ff/+vn3//r5 + 9//6+ff/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r4 + 9v/7/f//9fLj/9+/Mf/etgv/3rkV/964Ev/euBL/3rgS/965GP/etgf/4cI6//Xz5//7/P3/+vn4//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r+ + ///6////+v////r////7////+/78//v////56MT/8qQI//OkCv/zpQ3/8qAA//W+VP/7////+v/+//r/ + ///6////+v////r////6////+v7///r6+//6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//n59//8/f//9/Tq/+HCO//etAX/3rgV/923Ef/dtxH/3bcR/964Fv/dtAP/4L81//Xy + 4//8/f//+vn2//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r59//31I//9sx5//fOgP/3zX//981+//fOfP/3zoD/9slx//OoE//zowj/86QL//Oj + B//zqhv/9sx6//fOgP/3zX7/981///fNf//3zn//9sx7//fSjP/6+PT/+vr7//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr5//r59f/7/f//9fLn/+LCQP/dswP/37cU/962EP/ethD/3rYR/963 + FP/dsgH/48NF//Xy5P/7/f//+fn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r5+P/6/P//9bxM//KcAP/yoQP/8qAA//KgAP/yoQD/8qAA//Kh + Af/zpAz/86UN//OlDf/zpQ3/86QK//KgAP/yoAD/8qAA//KgAP/yoAD/8qAB//KfAP/zogj/+erO//r9 + ///6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//n59v/8////8+3S/+G+L//esgP/37YT/9+1 + D//ftQ//37US/9+1EP/dsAD/5clc//j38//7/P7/+vn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+fb/+v////fVk//ynAD/8qMG//Ki + A//yoQP/8qEE//KhBP/zoQP/8qAA//KhAP/yoQD/8qAA//KgAP/yogL/8qIC//KiAv/yogP/8qID//Ki + A//zowb/8p0A//fUkP/6////+vn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vn3//v7+//6/v//7+Kz/+C3 + Hv/fsgT/37US/9+0Dv/ftA7/37US/9+zB//esgf/6dSB//r6+//7+/v/+vn2//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn4//r9 + ///46s3/9btJ//W7S//1u0v/9btL//W7TP/1u0z/9btL//a7S//1u0v/9btL//W7S//1u0v/9btL//W7 + S//1u0v/9btL//W7S//1u0v/9rxN//W4Qv/40Yj/+vz///r5+f/6+vr/+vr6//r6+f/6+vf/+vn3//z+ + ///39/H/6dB4/96xBv/fsgj/37QQ/9+zDf/ftBD/4LMP/96vAP/huif/8OO1//v+///6+vj/+fr4//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vn/+vv7//r8/f/6/Pz/+vz8//r8/P/6/Pz/+vz8//r8/P/6/Pz/+vz8//r8 + /P/6/Pz/+vz8//r8/P/6/Pz/+vz8//r8/P/6/Pz/+vz8//v7/P/7+/3/+vr7//r6+v/6+vr/+vr6//r6 + 9//6+ff/+/39//r9///w5b//4r00/96tAP/fswz/37MO/9+yDf/gsw//37AE/96vA//myWH/9vLk//z+ + ///7+ff/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+vr/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//r6 + +f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//n6+f/6+vn/+vr4//r6 + +f/6+fn/+vn3//r6+P/7/P3/+/3///Ps1f/myWL/37AJ/9+vAv/gsg7/37EN/+CyDv/gsQj/3q0A/+K8 + Mv/v4bD/+vz///v8/P/6+ff/+vr5//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//r7+v/7/P7/+vr3//r59v/6+fj/+vr5//r6 + +v/6+vr/+vr6//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vr/+vr5//r6 + +f/6+vn/+vr4//r59v/6+fb/+vv8//z+///7/P//9O3U/+jNcf/fshL/36wA/+CwCv/gsQ7/4bEN/9+w + Bf/frAD/4LQX/+rTg//49/H/+/7///r6+P/6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r7+//59/L/9fDh//v9 + /f/8////+/z9//r6+P/6+ff/+vn4//r6+f/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vn/+vn5//n59//6+vb/+vn3//v7/P/7/f//+/7///f18v/w4rj/58Zd/+CxEf/fqwD/4K8I/+Cx + EP/gsAz/4K4E/9+rAP/hsxn/6M51//Xv3//8/v//+/v7//r59//6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+Pj3/+jRhf/lwlT/7tyh//fz6f/6/f//+/7///z+///7/P7/+vr6//r6+f/6+vj/+vn4//r5 + 9//6+ff/+vn4//r6+f/6+vn/+/v7//v8/v/8/v//+/7///v9///39e//8ea9/+nOd//iuC7/4KwE/9+r + AP/grgj/4bAP/+GvB//grAD/36sA/+GzHf/qz3r/9fDf//v+///7/P3/+vn3//r6+f/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr5//v7+//6+vr/7NiX/+GyG//gsBL/58NQ/+3Zmf/y6Mf/9vLn//n5 + +v/6+/7/+fz///v9///7/v//+/3///r9///6+///+fr9//j39v/17+D/8uW9/+3Ylf/nxlz/47gs/+Ct + Bf/fqgD/4awC/+KwC//hrwn/4KwC/9+qAP/frwz/471H/+vYnv/18eX/+/7///v8/f/6+ff/+vr4//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vj/+vr6//z////49u7/7NWL/+Ky + Gf/epgD/36gC/+KyGP/kujb/5sJR/+fHY//pzHP/6c95/+rOdv/oym3/58VZ/+S+RP/juC//4bId/9+s + Bf/fqgD/4KoA/+GrAf/hrQb/4awD/+CpAP/gqQD/4K0G/+O4MP/ozXv/8ejO//j5/P/8/v//+/z9//r5 + 9//6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fr5//r6 + +f/5+fb/+/z7//v+///39vH/7d2o/+bEVf/isRb/4KcA/9+kAP/fpAD/36UA/9+lAP/gpgD/4KcA/+Cn + AP/gqAD/4KkA/+GpAP/gqgD/4KkA/+CoAP/gqAD/4KsH/+GzIP/mwEr/7NSJ//Lnxf/49vP/+/7///z9 + ///7+vn/+vn2//r6+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/5+ff/+/v8//v+///6/P//9vHn//Hitf/r04r/58RZ/+S8 + Pf/ktyv/4rEb/+GwGP/isBf/4rAW/+GxGv/itSn/47k2/+bBS//py3D/7dmZ//HlwP/38+n/+vv9//v/ + ///7/f//+/v8//r59//6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+ff/+vr4//v8 + /f/7/v//+/7///r9///4+fn/+PTs//Xv3v/179z/9u/b//bv2//18N//9/Ps//j49//6/P7//P7///v+ + ///7/v//+/v9//r6+f/6+ff/+vn4//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/5+fj/+fn2//r59v/5+vj/+/r6//r7/P/7/f//+/3///v8///7/f//+/3///r8 + /P/6+/r/+vr4//r59//6+fb/+fn3//r6+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+vn/+vr4//r6 + +P/6+fj/+vn4//r5+f/6+vn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCash.Designer.cs b/SYS.FormUI/AppFunction/FrmCash.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..d01a82f9227ed30f1dfef9d7478bd5f59e09916b --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCash.Designer.cs @@ -0,0 +1,426 @@ +namespace SYS.FormUI +{ + partial class FrmCash + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmCash)); + this.dgvCashList = new Sunny.UI.UIDataGridView(); + this.clAssetsNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clAssetsName = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clAssetsValue = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clDepartment = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clStorageTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clAssetsSource = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clAssetsManager = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.cboCashPerson = new Sunny.UI.UIComboBox(); + this.label1 = new System.Windows.Forms.Label(); + this.btnOK = new Sunny.UI.UIButton(); + this.label11 = new System.Windows.Forms.Label(); + this.txtFrom = new Sunny.UI.UITextBox(); + this.label10 = new System.Windows.Forms.Label(); + this.label9 = new System.Windows.Forms.Label(); + this.cboClub = new Sunny.UI.UIComboBox(); + this.label8 = new System.Windows.Forms.Label(); + this.txtCashMoney = new Sunny.UI.UITextBox(); + this.label7 = new System.Windows.Forms.Label(); + this.txtCashName = new Sunny.UI.UITextBox(); + this.label20 = new System.Windows.Forms.Label(); + this.txtCashNo = new Sunny.UI.UITextBox(); + this.dtpDate = new Sunny.UI.UIDatePicker(); + ((System.ComponentModel.ISupportInitialize)(this.dgvCashList)).BeginInit(); + this.SuspendLayout(); + // + // dgvCashList + // + this.dgvCashList.AllowUserToAddRows = false; + this.dgvCashList.AllowUserToDeleteRows = false; + this.dgvCashList.AllowUserToResizeColumns = false; + this.dgvCashList.AllowUserToResizeRows = false; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvCashList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.dgvCashList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvCashList.BackgroundColor = System.Drawing.Color.White; + this.dgvCashList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvCashList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.dgvCashList.ColumnHeadersHeight = 32; + this.dgvCashList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvCashList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.clAssetsNo, + this.clAssetsName, + this.clAssetsValue, + this.clDepartment, + this.clStorageTime, + this.clAssetsSource, + this.clAssetsManager}); + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); + dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvCashList.DefaultCellStyle = dataGridViewCellStyle3; + this.dgvCashList.EnableHeadersVisualStyles = false; + this.dgvCashList.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvCashList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvCashList.Location = new System.Drawing.Point(3, 38); + this.dgvCashList.Name = "dgvCashList"; + this.dgvCashList.RowHeadersVisible = false; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.White; + this.dgvCashList.RowsDefaultCellStyle = dataGridViewCellStyle4; + this.dgvCashList.RowTemplate.Height = 29; + this.dgvCashList.SelectedIndex = -1; + this.dgvCashList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvCashList.ShowGridLine = true; + this.dgvCashList.Size = new System.Drawing.Size(809, 582); + this.dgvCashList.TabIndex = 2; + // + // clAssetsNo + // + this.clAssetsNo.DataPropertyName = "CashNo"; + this.clAssetsNo.HeaderText = "资产编号"; + this.clAssetsNo.Name = "clAssetsNo"; + // + // clAssetsName + // + this.clAssetsName.DataPropertyName = "CashName"; + this.clAssetsName.HeaderText = "资产名称"; + this.clAssetsName.Name = "clAssetsName"; + // + // clAssetsValue + // + this.clAssetsValue.DataPropertyName = "CashPrice"; + this.clAssetsValue.HeaderText = "资产总值"; + this.clAssetsValue.Name = "clAssetsValue"; + // + // clDepartment + // + this.clDepartment.DataPropertyName = "DeptName"; + this.clDepartment.HeaderText = "所属部门"; + this.clDepartment.Name = "clDepartment"; + // + // clStorageTime + // + this.clStorageTime.DataPropertyName = "CashTime"; + this.clStorageTime.HeaderText = "入库时间"; + this.clStorageTime.Name = "clStorageTime"; + // + // clAssetsSource + // + this.clAssetsSource.DataPropertyName = "CashSource"; + this.clAssetsSource.HeaderText = "资产来源"; + this.clAssetsSource.Name = "clAssetsSource"; + // + // clAssetsManager + // + this.clAssetsManager.DataPropertyName = "PersonName"; + this.clAssetsManager.HeaderText = "资产经办人"; + this.clAssetsManager.Name = "clAssetsManager"; + // + // cboCashPerson + // + this.cboCashPerson.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboCashPerson.FillColor = System.Drawing.Color.White; + this.cboCashPerson.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.cboCashPerson.Location = new System.Drawing.Point(826, 520); + this.cboCashPerson.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboCashPerson.MinimumSize = new System.Drawing.Size(63, 0); + this.cboCashPerson.Name = "cboCashPerson"; + this.cboCashPerson.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboCashPerson.Radius = 20; + this.cboCashPerson.Size = new System.Drawing.Size(165, 23); + this.cboCashPerson.TabIndex = 167; + this.cboCashPerson.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cboCashPerson.Watermark = ""; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(864, 492); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(77, 14); + this.label1.TabIndex = 166; + this.label1.Text = "资产经办人"; + // + // btnOK + // + this.btnOK.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnOK.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnOK.Location = new System.Drawing.Point(852, 565); + this.btnOK.MinimumSize = new System.Drawing.Size(1, 1); + this.btnOK.Name = "btnOK"; + this.btnOK.Radius = 20; + this.btnOK.Size = new System.Drawing.Size(112, 33); + this.btnOK.TabIndex = 165; + this.btnOK.Text = "录入"; + this.btnOK.Click += new System.EventHandler(this.btnOK_Click); + // + // label11 + // + this.label11.AutoSize = true; + this.label11.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label11.Location = new System.Drawing.Point(864, 419); + this.label11.Name = "label11"; + this.label11.Size = new System.Drawing.Size(63, 14); + this.label11.TabIndex = 164; + this.label11.Text = "资产来源"; + // + // txtFrom + // + this.txtFrom.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtFrom.FillColor = System.Drawing.Color.White; + this.txtFrom.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtFrom.Location = new System.Drawing.Point(826, 451); + this.txtFrom.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtFrom.Maximum = 2147483647D; + this.txtFrom.Minimum = -2147483648D; + this.txtFrom.MinimumSize = new System.Drawing.Size(1, 1); + this.txtFrom.Name = "txtFrom"; + this.txtFrom.Padding = new System.Windows.Forms.Padding(5); + this.txtFrom.Radius = 20; + this.txtFrom.Size = new System.Drawing.Size(165, 23); + this.txtFrom.Style = Sunny.UI.UIStyle.Custom; + this.txtFrom.StyleCustomMode = true; + this.txtFrom.TabIndex = 163; + // + // label10 + // + this.label10.AutoSize = true; + this.label10.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label10.Location = new System.Drawing.Point(845, 346); + this.label10.Name = "label10"; + this.label10.Size = new System.Drawing.Size(91, 14); + this.label10.TabIndex = 161; + this.label10.Text = "资产入库时间"; + // + // label9 + // + this.label9.AutoSize = true; + this.label9.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label9.Location = new System.Drawing.Point(864, 273); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(63, 14); + this.label9.TabIndex = 160; + this.label9.Text = "所属部门"; + // + // cboClub + // + this.cboClub.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboClub.FillColor = System.Drawing.Color.White; + this.cboClub.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.cboClub.Location = new System.Drawing.Point(826, 305); + this.cboClub.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboClub.MinimumSize = new System.Drawing.Size(63, 0); + this.cboClub.Name = "cboClub"; + this.cboClub.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboClub.Radius = 20; + this.cboClub.Size = new System.Drawing.Size(165, 23); + this.cboClub.TabIndex = 159; + this.cboClub.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cboClub.Watermark = ""; + // + // label8 + // + this.label8.AutoSize = true; + this.label8.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label8.Location = new System.Drawing.Point(864, 200); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(63, 14); + this.label8.TabIndex = 158; + this.label8.Text = "资产总值"; + // + // txtCashMoney + // + this.txtCashMoney.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCashMoney.FillColor = System.Drawing.Color.White; + this.txtCashMoney.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCashMoney.Location = new System.Drawing.Point(826, 232); + this.txtCashMoney.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCashMoney.Maximum = 2147483647D; + this.txtCashMoney.Minimum = -2147483648D; + this.txtCashMoney.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCashMoney.Name = "txtCashMoney"; + this.txtCashMoney.Padding = new System.Windows.Forms.Padding(5); + this.txtCashMoney.Radius = 20; + this.txtCashMoney.Size = new System.Drawing.Size(165, 23); + this.txtCashMoney.Style = Sunny.UI.UIStyle.Custom; + this.txtCashMoney.StyleCustomMode = true; + this.txtCashMoney.TabIndex = 157; + // + // label7 + // + this.label7.AutoSize = true; + this.label7.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label7.Location = new System.Drawing.Point(864, 127); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(63, 14); + this.label7.TabIndex = 156; + this.label7.Text = "资产名称"; + // + // txtCashName + // + this.txtCashName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCashName.FillColor = System.Drawing.Color.White; + this.txtCashName.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCashName.Location = new System.Drawing.Point(826, 159); + this.txtCashName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCashName.Maximum = 2147483647D; + this.txtCashName.Minimum = -2147483648D; + this.txtCashName.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCashName.Name = "txtCashName"; + this.txtCashName.Padding = new System.Windows.Forms.Padding(5); + this.txtCashName.Radius = 20; + this.txtCashName.Size = new System.Drawing.Size(165, 23); + this.txtCashName.Style = Sunny.UI.UIStyle.Custom; + this.txtCashName.StyleCustomMode = true; + this.txtCashName.TabIndex = 155; + // + // label20 + // + this.label20.AutoSize = true; + this.label20.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label20.Location = new System.Drawing.Point(864, 59); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(63, 14); + this.label20.TabIndex = 154; + this.label20.Text = "资产编号"; + // + // txtCashNo + // + this.txtCashNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCashNo.FillColor = System.Drawing.Color.White; + this.txtCashNo.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCashNo.Location = new System.Drawing.Point(826, 86); + this.txtCashNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCashNo.Maximum = 2147483647D; + this.txtCashNo.Minimum = -2147483648D; + this.txtCashNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCashNo.Name = "txtCashNo"; + this.txtCashNo.Padding = new System.Windows.Forms.Padding(5); + this.txtCashNo.Radius = 20; + this.txtCashNo.ReadOnly = true; + this.txtCashNo.Size = new System.Drawing.Size(165, 23); + this.txtCashNo.Style = Sunny.UI.UIStyle.Custom; + this.txtCashNo.StyleCustomMode = true; + this.txtCashNo.TabIndex = 153; + // + // dtpDate + // + this.dtpDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.dtpDate.FillColor = System.Drawing.Color.White; + this.dtpDate.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.dtpDate.Location = new System.Drawing.Point(826, 378); + this.dtpDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.dtpDate.MaxLength = 10; + this.dtpDate.MinimumSize = new System.Drawing.Size(63, 0); + this.dtpDate.Name = "dtpDate"; + this.dtpDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.dtpDate.Radius = 20; + this.dtpDate.Size = new System.Drawing.Size(165, 23); + this.dtpDate.SymbolDropDown = 61555; + this.dtpDate.SymbolNormal = 61555; + this.dtpDate.TabIndex = 162; + this.dtpDate.Text = "2021-01-31"; + this.dtpDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.dtpDate.Value = new System.DateTime(2021, 1, 31, 14, 30, 7, 297); + // + // FrmCash + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.cboCashPerson); + this.Controls.Add(this.label1); + this.Controls.Add(this.btnOK); + this.Controls.Add(this.label11); + this.Controls.Add(this.txtFrom); + this.Controls.Add(this.label10); + this.Controls.Add(this.label9); + this.Controls.Add(this.cboClub); + this.Controls.Add(this.label8); + this.Controls.Add(this.txtCashMoney); + this.Controls.Add(this.label7); + this.Controls.Add(this.txtCashName); + this.Controls.Add(this.label20); + this.Controls.Add(this.txtCashNo); + this.Controls.Add(this.dtpDate); + this.Controls.Add(this.dgvCashList); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.IsForbidAltF4 = true; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmCash"; + this.ShowIcon = true; + this.Text = "内部财务账单"; + this.Load += new System.EventHandler(this.FrmCash_Load); + ((System.ComponentModel.ISupportInitialize)(this.dgvCashList)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private Sunny.UI.UIDataGridView dgvCashList; + private System.Windows.Forms.DataGridViewTextBoxColumn clAssetsNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clAssetsName; + private System.Windows.Forms.DataGridViewTextBoxColumn clAssetsValue; + private System.Windows.Forms.DataGridViewTextBoxColumn clDepartment; + private System.Windows.Forms.DataGridViewTextBoxColumn clStorageTime; + private System.Windows.Forms.DataGridViewTextBoxColumn clAssetsSource; + private System.Windows.Forms.DataGridViewTextBoxColumn clAssetsManager; + private Sunny.UI.UIComboBox cboCashPerson; + private System.Windows.Forms.Label label1; + private Sunny.UI.UIButton btnOK; + private System.Windows.Forms.Label label11; + private Sunny.UI.UITextBox txtFrom; + private System.Windows.Forms.Label label10; + private System.Windows.Forms.Label label9; + private Sunny.UI.UIComboBox cboClub; + private System.Windows.Forms.Label label8; + private Sunny.UI.UITextBox txtCashMoney; + private System.Windows.Forms.Label label7; + private Sunny.UI.UITextBox txtCashName; + private System.Windows.Forms.Label label20; + private Sunny.UI.UITextBox txtCashNo; + private Sunny.UI.UIDatePicker dtpDate; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCash.cs b/SYS.FormUI/AppFunction/FrmCash.cs new file mode 100644 index 0000000000000000000000000000000000000000..11492aa965e2242591d025367b1e957406222196 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCash.cs @@ -0,0 +1,129 @@ +using System; +using System.Windows.Forms; +using Sunny.UI; +using SYS.Application; +using SYS.Core; + +namespace SYS.FormUI +{ + public partial class FrmCash : UIForm + { + public FrmCash() + { + InitializeComponent(); + } + + + + private void FrmCash_Load(object sender, EventArgs e) + { + foreach (Control item in this.Controls) + { + item.Font = UI_FontUtil.mainFont; + } + //获取所有部门信息 + cboClub.DataSource = new BaseService().SelectDeptAll(); + cboClub.DisplayMember = "dept_name"; + cboClub.ValueMember = "dept_no"; + //获取所有员工信息 + cboCashPerson.DataSource = new WorkerService().SelectWorkerAll(); + cboCashPerson.DisplayMember = "WorkerName"; + cboCashPerson.ValueMember = "WorkerId"; + + dgvCashList.AutoGenerateColumns = false; + dgvCashList.DataSource = new CashService().SelectCashInfoAll(); + txtCashNo.Text = new CounterHelper().GetNewId("CashInfo"); + if (AdminInfo.Type != "总经理" && AdminInfo.Type != "财务经理") + { + btnOK.Enabled = false; + btnOK.Text = "权限不足"; + } + + } + + public bool CheckInput(Cash cash) + { + if (string.IsNullOrWhiteSpace(cash.CashNo)) + { + return false; + } + if (string.IsNullOrWhiteSpace(cash.CashName)) + { + return false; + } + if (string.IsNullOrWhiteSpace(cash.CashPerson)) + { + return false; + } + if (string.IsNullOrWhiteSpace(cash.CashPrice + "")) + { + return false; + } + if (string.IsNullOrWhiteSpace(cash.CashSource)) + { + return false; + } + if (string.IsNullOrWhiteSpace(cash.CashTime + "")) + { + return false; + } + return true; + } + + private void btnOK_Click(object sender, EventArgs e) + { + Cash cash = new Cash() + { + CashNo = txtCashNo.Text.Trim(), + CashName = txtCashName.Text.Trim(), + CashPrice = txtCashMoney.Text == null ? 0 : Convert.ToDecimal(txtCashMoney.Text), + CashClub = cboClub.SelectedValue.ToString(), + CashTime = dtpDate.Value, + CashSource = txtFrom.Text.Trim(), + CashPerson = cboCashPerson.SelectedValue.ToString(), + datains_usr = AdminInfo.Account, + datains_date = DateTime.Now + }; + if (CheckInput(cash)) + { + bool dr = UIMessageBox.Show("请确认信息没有错误,一旦录入则无法修改!", "警告提醒",UIStyle.Orange, UIMessageBoxButtons.OKCancel); + if (dr == true) + { + + bool n = new CashService().AddCashInfo(cash); + if (n == true) + { + UIMessageBox.Show("录入成功!","系统提示",UIStyle.Green,UIMessageBoxButtons.OKCancel); + dgvCashList.AutoGenerateColumns = false; + dgvCashList.DataSource = new CashService().SelectCashInfoAll(); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = AdminInfo.Account + AdminInfo.Name + "于" + DateTime.Now + "进行资产录入,资产编号为:" + txtCashNo.Text.Trim(); + o.OperationAccount = AdminInfo.Account + AdminInfo.Name; + #endregion + new OperationlogService().InsertOperationLog(o); + txtCashNo.Text = new CounterHelper().GetNewId("CashInfo"); + + } + else + { + UIMessageBox.Show("录入失败,请检查数据格式是否存在错误或稍后再试!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + return; + } + } + else + { + UIMessageBox.Show("操作取消!", "系统提示", UIStyle.Orange, UIMessageBoxButtons.OK); + return; + } + } + else + { + UIMessageBox.Show("信息填写不完整,请重试!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + return; + } + + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmCash.resx b/SYS.FormUI/AppFunction/FrmCash.resx new file mode 100644 index 0000000000000000000000000000000000000000..0317be0522bfb16f04fcb2475e042443f9244f36 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCash.resx @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAICAAAAEAGABOAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAB40lEQVRYR+2V63HC + MBCEXQIlUAIdJCVQAiVQAh0kHYQS6CB0ACWkA1IBye7dWtHTdgJM/vib0ehxq9NZOlndzEzO9Xp9/XoQ + 9K1l2kj7MLRMG+nIJ8rxToW+DC3TRjpy1NDN0Je7nAO4IQD0n5HFT60iWRX6Mo9AQ22kIyEALDB6NaHZ + Sl4A8/8G0M9HfdZQG/PmFEcwVCRrIt1C3TYQ9dyUhJi/wheP5keBr238OgDMWWDBN5+eovGlpG1cboQA + 0F7DwcWHzRnba5kN9mMN4N9v501H9pWm1HGpMZiEHJOZc1Y++gPsB9n2PuKMBuEyI94BLkBHvE4sbAcn + cHpGv4dfniQl+kuzCOjfZSqRhkzKAeg2Lg9sOI5FtuygPqG8mCWlvgsykqkBJOcMLADWKOEVrLAzBzky + kqkBhL8c4RejCtmO9hol0Yi9JCkykj8FQBDEBYXXLuQC2rnubjuQH0FOfyTVoyqQkUwNgFscs8HX89oe + UR9QW7KxT2PEfZKQUOtTbPuZ8eGfj/ZSxxFggDKXSNNfn+LdjwtkthBq3vM84+0DoIv/EfT7gar9KLls + GnB20jTO4+OTLFaBOzX8HijCSXBBTQtgmMkWnzd3hv160uVAuEAp3vtGGXzfx+wzXdd13ym2MM//aApS + AAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmChangeAdminPwd.Designer.cs b/SYS.FormUI/AppFunction/FrmChangeAdminPwd.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..8eb3f3a4e9b7dc2b156383ce2783c03e2c2363b2 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChangeAdminPwd.Designer.cs @@ -0,0 +1,197 @@ + +namespace SYS.FormUI +{ + partial class FrmChangeAdminPwd + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChangeAdminPwd)); + this.btnUpdPwd = new Sunny.UI.UIButton(); + this.lblNewMsg = new Sunny.UI.UILabel(); + this.lblOldMsg = new Sunny.UI.UILabel(); + this.lgCheckNewPwd = new Sunny.UI.UILight(); + this.lgCheckOldPwd = new Sunny.UI.UILight(); + this.txtOldPwd = new Sunny.UI.UITextBox(); + this.txtNewPwd = new Sunny.UI.UITextBox(); + this.label4 = new System.Windows.Forms.Label(); + this.label6 = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // btnUpdPwd + // + this.btnUpdPwd.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnUpdPwd.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnUpdPwd.Location = new System.Drawing.Point(294, 232); + this.btnUpdPwd.MinimumSize = new System.Drawing.Size(1, 1); + this.btnUpdPwd.Name = "btnUpdPwd"; + this.btnUpdPwd.Radius = 20; + this.btnUpdPwd.Size = new System.Drawing.Size(115, 42); + this.btnUpdPwd.TabIndex = 140; + this.btnUpdPwd.Text = "修 改"; + this.btnUpdPwd.Click += new System.EventHandler(this.btnUpdPwd_Click); + // + // lblNewMsg + // + this.lblNewMsg.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lblNewMsg.Location = new System.Drawing.Point(100, 195); + this.lblNewMsg.Name = "lblNewMsg"; + this.lblNewMsg.Size = new System.Drawing.Size(267, 23); + this.lblNewMsg.TabIndex = 139; + this.lblNewMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // lblOldMsg + // + this.lblOldMsg.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lblOldMsg.Location = new System.Drawing.Point(100, 107); + this.lblOldMsg.Name = "lblOldMsg"; + this.lblOldMsg.Size = new System.Drawing.Size(267, 23); + this.lblOldMsg.TabIndex = 138; + this.lblOldMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // lgCheckNewPwd + // + this.lgCheckNewPwd.CenterColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(248)))), ((int)(((byte)(232))))); + this.lgCheckNewPwd.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lgCheckNewPwd.Location = new System.Drawing.Point(369, 145); + this.lgCheckNewPwd.MinimumSize = new System.Drawing.Size(1, 1); + this.lgCheckNewPwd.Name = "lgCheckNewPwd"; + this.lgCheckNewPwd.Radius = 35; + this.lgCheckNewPwd.Size = new System.Drawing.Size(35, 35); + this.lgCheckNewPwd.TabIndex = 137; + this.lgCheckNewPwd.Text = "uiLight2"; + this.lgCheckNewPwd.Visible = false; + // + // lgCheckOldPwd + // + this.lgCheckOldPwd.CenterColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(248)))), ((int)(((byte)(232))))); + this.lgCheckOldPwd.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lgCheckOldPwd.Location = new System.Drawing.Point(369, 57); + this.lgCheckOldPwd.MinimumSize = new System.Drawing.Size(1, 1); + this.lgCheckOldPwd.Name = "lgCheckOldPwd"; + this.lgCheckOldPwd.Radius = 35; + this.lgCheckOldPwd.Size = new System.Drawing.Size(35, 35); + this.lgCheckOldPwd.TabIndex = 136; + this.lgCheckOldPwd.Text = "uiLight1"; + this.lgCheckOldPwd.Visible = false; + // + // txtOldPwd + // + this.txtOldPwd.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtOldPwd.FillColor = System.Drawing.Color.White; + this.txtOldPwd.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtOldPwd.Location = new System.Drawing.Point(95, 57); + this.txtOldPwd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtOldPwd.Maximum = 2147483647D; + this.txtOldPwd.Minimum = -2147483648D; + this.txtOldPwd.MinimumSize = new System.Drawing.Size(1, 1); + this.txtOldPwd.Name = "txtOldPwd"; + this.txtOldPwd.Padding = new System.Windows.Forms.Padding(5); + this.txtOldPwd.PasswordChar = '*'; + this.txtOldPwd.Radius = 20; + this.txtOldPwd.Size = new System.Drawing.Size(272, 35); + this.txtOldPwd.Style = Sunny.UI.UIStyle.Custom; + this.txtOldPwd.StyleCustomMode = true; + this.txtOldPwd.TabIndex = 135; + this.txtOldPwd.TextChanged += new System.EventHandler(this.txtOldPwd_TextChanged); + this.txtOldPwd.Validated += new System.EventHandler(this.txtOldPwd_Validated); + // + // txtNewPwd + // + this.txtNewPwd.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtNewPwd.FillColor = System.Drawing.Color.White; + this.txtNewPwd.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtNewPwd.Location = new System.Drawing.Point(95, 145); + this.txtNewPwd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtNewPwd.Maximum = 2147483647D; + this.txtNewPwd.Minimum = -2147483648D; + this.txtNewPwd.MinimumSize = new System.Drawing.Size(1, 1); + this.txtNewPwd.Name = "txtNewPwd"; + this.txtNewPwd.Padding = new System.Windows.Forms.Padding(5); + this.txtNewPwd.PasswordChar = '*'; + this.txtNewPwd.Radius = 20; + this.txtNewPwd.Size = new System.Drawing.Size(272, 35); + this.txtNewPwd.Style = Sunny.UI.UIStyle.Custom; + this.txtNewPwd.StyleCustomMode = true; + this.txtNewPwd.TabIndex = 134; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.Location = new System.Drawing.Point(19, 149); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(69, 25); + this.label4.TabIndex = 133; + this.label4.Text = "新密码"; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label6.Location = new System.Drawing.Point(19, 61); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(69, 25); + this.label6.TabIndex = 132; + this.label6.Text = "旧密码"; + // + // FrmChangeAdminPwd + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(422, 294); + this.Controls.Add(this.btnUpdPwd); + this.Controls.Add(this.lblNewMsg); + this.Controls.Add(this.lblOldMsg); + this.Controls.Add(this.lgCheckNewPwd); + this.Controls.Add(this.lgCheckOldPwd); + this.Controls.Add(this.txtOldPwd); + this.Controls.Add(this.txtNewPwd); + this.Controls.Add(this.label4); + this.Controls.Add(this.label6); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Name = "FrmChangeAdminPwd"; + this.ShowIcon = true; + this.Text = "修改密码"; + this.Load += new System.EventHandler(this.FrmChangeAdminPwd_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private Sunny.UI.UIButton btnUpdPwd; + private Sunny.UI.UILabel lblNewMsg; + private Sunny.UI.UILabel lblOldMsg; + private Sunny.UI.UILight lgCheckNewPwd; + private Sunny.UI.UILight lgCheckOldPwd; + private Sunny.UI.UITextBox txtOldPwd; + private Sunny.UI.UITextBox txtNewPwd; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label label6; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmChangeAdminPwd.cs b/SYS.FormUI/AppFunction/FrmChangeAdminPwd.cs new file mode 100644 index 0000000000000000000000000000000000000000..7480ba093531de02c9ef0eea32f376cebcb4b45a --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChangeAdminPwd.cs @@ -0,0 +1,104 @@ +using Sunny.UI; +using SYS.Application; +using SYS.Core; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Text.RegularExpressions; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmChangeAdminPwd : UIForm + { + public FrmChangeAdminPwd() + { + InitializeComponent(); + } + + private void FrmChangeAdminPwd_Load(object sender, EventArgs e) + { + + } + + private void btnUpdPwd_Click(object sender, EventArgs e) + { + bool tf = new AdminService().UpdateNewPwdByOldPwd(AdminInfo.Account, txtNewPwd.Text.Trim()); + if (tf == false) + { + UIMessageBox.Show("服务器繁忙,修改失败!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + return; + } + UIMessageBox.Show("修改成功,系统将在稍后退出,请使用新密码进行登录系统!", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); + FrmBackgroundSystem.closeform(); + this.Close(); + return; + } + + private void txtOldPwd_TextChanged(object sender, EventArgs e) + { + if (txtOldPwd.TextLength < 6) + { + lgCheckOldPwd.Visible = true; + lgCheckOldPwd.OnColor = Color.Red; + } + } + + private void txtOldPwd_Validated(object sender, EventArgs e) + { + //校验旧密码是否正确 + var result = new AdminService().SelectMangerByPass(AdminInfo.Account, txtOldPwd.Text.Trim()); + if (result != null) + { + lgCheckOldPwd.Visible = true; + lgCheckOldPwd.OnColor = Color.Green; + lblOldMsg.ForeColor = Color.Green; + lblOldMsg.Text = "旧密码符合,请继续填写新密码!"; + txtNewPwd.ReadOnly = false; + txtNewPwd.Validated += new EventHandler(txtNewPwd_Validated); + } + else + { + lgCheckOldPwd.Visible = true; + lgCheckOldPwd.OnColor = Color.Red; + lblOldMsg.ForeColor = Color.Red; + lblOldMsg.Text = "旧密码有误,请重试!"; + txtNewPwd.ReadOnly = true; + txtNewPwd.Validated -= new EventHandler(txtNewPwd_Validated); + + } + } + + + private void txtNewPwd_Validated(object sender, EventArgs e) + { + string pattern = @"^[A-Za-z0-9]+$"; + Regex regex = new Regex(pattern); + if (regex.IsMatch(txtNewPwd.Text.Trim()) && txtNewPwd.TextLength > 8) + { + lblNewMsg.ForeColor = Color.Green; + lblNewMsg.Text = "密码长度及格式符合要求!"; + lgCheckNewPwd.Visible = true; + lgCheckNewPwd.OnColor = Color.Green; + return; + + } + else + { + lblNewMsg.ForeColor = Color.Red; + lblNewMsg.Text = "密码长度及格式不符合要求,请检查!"; + lgCheckNewPwd.Visible = true; + txtNewPwd.Focus(); + lgCheckNewPwd.OnColor = Color.Red; + return; + } + } + + + } +} diff --git a/SYS.FormUI/AppFunction/FrmChangeAdminPwd.resx b/SYS.FormUI/AppFunction/FrmChangeAdminPwd.resx new file mode 100644 index 0000000000000000000000000000000000000000..35539703df887b7898b9087dc32ce33939b1cd0c --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChangeAdminPwd.resx @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGADJAQAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABXklEQVRYR2NgGAWj + ITAaAqMhgCME/v37Fw3Ei4D44n8gANLHgHgqEPvQPNCA9jWALMUFgI7YBMRaNHEIPouR5YAOuILuCCBf + H5ujgPpCiXIs0ICZxDoAqu4MzGCg3kIgvgnEdsiWgSyHqsXvCKAiY2yWAw3cCY2SVTgclwZUkw+TA7Jf + wdIJkuUwadyOAGrKw2JBA7JvQAkTi5oz6GJAdb+BeD8uB2ONDqCGFWhxvAObQqC6XSRGE4ZyoBndGGYD + Bd+hOaALhwP6qeCAbdgccBrNActwOGAdFRzQiWE20NAOLAajJBpcCZUUBwFDehpQvRy2EAjGYRCoUHKA + ZrO3WBLcJKLyODGKgJYcIsU3ILVAPSrEmE2UGqB5EqQ4AGh5FVEGk6IIaKg0EJ/H5xCg/FsgTiTFXJLV + Ai3oBOI7WOJ8Cc0qIhzZThSaCNWBtCDJPhnVMBoCoyEwGgIEQgAA8i/d/iTGP6QAAAAASUVORK5CYII= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmChangePosition.Designer.cs b/SYS.FormUI/AppFunction/FrmChangePosition.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..3adfc7a4cb3977da483b0f492d36bd8f1cf1feb9 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChangePosition.Designer.cs @@ -0,0 +1,277 @@ +namespace SYS.FormUI +{ + partial class FrmChangePosition + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChangePosition)); + this.label3 = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); + this.label6 = new System.Windows.Forms.Label(); + this.txtworkerId = new Sunny.UI.UITextBox(); + this.label7 = new System.Windows.Forms.Label(); + this.txtworkerName = new Sunny.UI.UITextBox(); + this.label8 = new System.Windows.Forms.Label(); + this.txtPosition = new Sunny.UI.UITextBox(); + this.txtClub = new Sunny.UI.UITextBox(); + this.cboNewClub = new Sunny.UI.UIComboBox(); + this.cboNewPosition = new Sunny.UI.UIComboBox(); + this.btnOK = new Sunny.UI.UIButton(); + this.SuspendLayout(); + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("微软雅黑", 12F); + this.label3.Location = new System.Drawing.Point(13, 136); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(74, 21); + this.label3.TabIndex = 2; + this.label3.Text = "原属部门"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("微软雅黑", 12F); + this.label4.Location = new System.Drawing.Point(13, 179); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(74, 21); + this.label4.TabIndex = 3; + this.label4.Text = "原属职位"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("微软雅黑", 12F); + this.label5.Location = new System.Drawing.Point(218, 179); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(74, 21); + this.label5.TabIndex = 8; + this.label5.Text = "调任职位"; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Font = new System.Drawing.Font("微软雅黑", 12F); + this.label6.Location = new System.Drawing.Point(218, 136); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(74, 21); + this.label6.TabIndex = 10; + this.label6.Text = "调任部门"; + // + // txtworkerId + // + this.txtworkerId.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtworkerId.Enabled = false; + this.txtworkerId.FillColor = System.Drawing.Color.White; + this.txtworkerId.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtworkerId.Location = new System.Drawing.Point(86, 44); + this.txtworkerId.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtworkerId.Maximum = 2147483647D; + this.txtworkerId.Minimum = -2147483648D; + this.txtworkerId.MinimumSize = new System.Drawing.Size(1, 1); + this.txtworkerId.Name = "txtworkerId"; + this.txtworkerId.Padding = new System.Windows.Forms.Padding(5); + this.txtworkerId.Radius = 20; + this.txtworkerId.ReadOnly = true; + this.txtworkerId.Size = new System.Drawing.Size(125, 29); + this.txtworkerId.Style = Sunny.UI.UIStyle.Custom; + this.txtworkerId.StyleCustomMode = true; + this.txtworkerId.TabIndex = 106; + // + // label7 + // + this.label7.AutoSize = true; + this.label7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label7.Location = new System.Drawing.Point(13, 47); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(74, 21); + this.label7.TabIndex = 105; + this.label7.Text = "员工编号"; + // + // txtworkerName + // + this.txtworkerName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtworkerName.FillColor = System.Drawing.Color.White; + this.txtworkerName.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtworkerName.Location = new System.Drawing.Point(86, 88); + this.txtworkerName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtworkerName.Maximum = 2147483647D; + this.txtworkerName.Minimum = -2147483648D; + this.txtworkerName.MinimumSize = new System.Drawing.Size(1, 1); + this.txtworkerName.Name = "txtworkerName"; + this.txtworkerName.Padding = new System.Windows.Forms.Padding(5); + this.txtworkerName.Radius = 20; + this.txtworkerName.ReadOnly = true; + this.txtworkerName.Size = new System.Drawing.Size(125, 29); + this.txtworkerName.Style = Sunny.UI.UIStyle.Custom; + this.txtworkerName.StyleCustomMode = true; + this.txtworkerName.TabIndex = 108; + // + // label8 + // + this.label8.AutoSize = true; + this.label8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label8.Location = new System.Drawing.Point(13, 92); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(74, 21); + this.label8.TabIndex = 107; + this.label8.Text = "员工姓名"; + // + // txtPosition + // + this.txtPosition.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtPosition.Enabled = false; + this.txtPosition.FillColor = System.Drawing.Color.White; + this.txtPosition.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtPosition.Location = new System.Drawing.Point(86, 177); + this.txtPosition.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtPosition.Maximum = 2147483647D; + this.txtPosition.Minimum = -2147483648D; + this.txtPosition.MinimumSize = new System.Drawing.Size(1, 1); + this.txtPosition.Name = "txtPosition"; + this.txtPosition.Padding = new System.Windows.Forms.Padding(5); + this.txtPosition.Radius = 20; + this.txtPosition.Size = new System.Drawing.Size(125, 29); + this.txtPosition.Style = Sunny.UI.UIStyle.Custom; + this.txtPosition.StyleCustomMode = true; + this.txtPosition.TabIndex = 110; + // + // txtClub + // + this.txtClub.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtClub.Enabled = false; + this.txtClub.FillColor = System.Drawing.Color.White; + this.txtClub.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtClub.Location = new System.Drawing.Point(86, 133); + this.txtClub.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtClub.Maximum = 2147483647D; + this.txtClub.Minimum = -2147483648D; + this.txtClub.MinimumSize = new System.Drawing.Size(1, 1); + this.txtClub.Name = "txtClub"; + this.txtClub.Padding = new System.Windows.Forms.Padding(5); + this.txtClub.Radius = 20; + this.txtClub.ReadOnly = true; + this.txtClub.Size = new System.Drawing.Size(125, 29); + this.txtClub.Style = Sunny.UI.UIStyle.Custom; + this.txtClub.StyleCustomMode = true; + this.txtClub.TabIndex = 109; + // + // cboNewClub + // + this.cboNewClub.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboNewClub.FillColor = System.Drawing.Color.White; + this.cboNewClub.Font = new System.Drawing.Font("微软雅黑", 12F); + this.cboNewClub.Location = new System.Drawing.Point(299, 133); + this.cboNewClub.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboNewClub.MinimumSize = new System.Drawing.Size(63, 0); + this.cboNewClub.Name = "cboNewClub"; + this.cboNewClub.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboNewClub.Radius = 20; + this.cboNewClub.Size = new System.Drawing.Size(125, 29); + this.cboNewClub.TabIndex = 111; + this.cboNewClub.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cboNewClub.TextChanged += new System.EventHandler(this.cboNewClub_TextChanged); + // + // cboNewPosition + // + this.cboNewPosition.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboNewPosition.FillColor = System.Drawing.Color.White; + this.cboNewPosition.Font = new System.Drawing.Font("微软雅黑", 12F); + this.cboNewPosition.Location = new System.Drawing.Point(299, 177); + this.cboNewPosition.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboNewPosition.MinimumSize = new System.Drawing.Size(63, 0); + this.cboNewPosition.Name = "cboNewPosition"; + this.cboNewPosition.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboNewPosition.Radius = 20; + this.cboNewPosition.Size = new System.Drawing.Size(125, 29); + this.cboNewPosition.TabIndex = 112; + this.cboNewPosition.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cboNewPosition.TextChanged += new System.EventHandler(this.cboNewPosition_TextChanged); + // + // btnOK + // + this.btnOK.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnOK.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnOK.Location = new System.Drawing.Point(431, 166); + this.btnOK.MinimumSize = new System.Drawing.Size(1, 1); + this.btnOK.Name = "btnOK"; + this.btnOK.Radius = 20; + this.btnOK.Size = new System.Drawing.Size(100, 40); + this.btnOK.TabIndex = 113; + this.btnOK.Text = "任 命"; + this.btnOK.Click += new System.EventHandler(this.btnOK_Click); + // + // FrmChangePosition + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(544, 216); + this.Controls.Add(this.btnOK); + this.Controls.Add(this.cboNewPosition); + this.Controls.Add(this.cboNewClub); + this.Controls.Add(this.txtPosition); + this.Controls.Add(this.txtClub); + this.Controls.Add(this.txtworkerName); + this.Controls.Add(this.label8); + this.Controls.Add(this.txtworkerId); + this.Controls.Add(this.label7); + this.Controls.Add(this.label6); + this.Controls.Add(this.label5); + this.Controls.Add(this.label4); + this.Controls.Add(this.label3); + this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmChangePosition"; + this.ShowIcon = true; + this.Text = "将XXX任命为XXX"; + this.Load += new System.EventHandler(this.FrmChangePosition_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.Label label6; + private Sunny.UI.UITextBox txtworkerId; + private System.Windows.Forms.Label label7; + private Sunny.UI.UITextBox txtworkerName; + private System.Windows.Forms.Label label8; + private Sunny.UI.UITextBox txtPosition; + private Sunny.UI.UITextBox txtClub; + private Sunny.UI.UIComboBox cboNewClub; + private Sunny.UI.UIComboBox cboNewPosition; + private Sunny.UI.UIButton btnOK; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmChangePosition.cs b/SYS.FormUI/AppFunction/FrmChangePosition.cs new file mode 100644 index 0000000000000000000000000000000000000000..fd3954405522986d3dce56ca1d286844ac88b9a9 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChangePosition.cs @@ -0,0 +1,80 @@ +using System; +using MySql.Data.MySqlClient; +using System.Windows.Forms; +using SYS.Core; +using Sunny.UI; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class FrmChangePosition : UIForm + { + public static string wk_WorkerNo; + public static string wk_WorkerPosition; + public static string wk_WorkerName; + public static string wk_WorkerClub; + public FrmChangePosition() + { + InitializeComponent(); + } + + private void FrmChangePosition_Load(object sender, EventArgs e) + { + foreach (Control item in this.Controls) + { + item.Font = UI_FontUtil.scorllingFont; + } + txtworkerId.Text = FrmChangeWorker.wk_WorkerNo; + txtworkerName.Text = FrmChangeWorker.wk_WorkerName; + txtClub.Text = FrmChangeWorker.wk_WorkerClub; + txtPosition.Text = FrmChangeWorker.wk_WorkerPosition; + //获取所有职位信息 + cboNewPosition.DataSource = new BaseService().SelectPositionAllCanUse(); + cboNewPosition.DisplayMember = "position_name"; + cboNewPosition.ValueMember = "position_no"; + //获取所有部门信息 + cboNewClub.DataSource = new BaseService().SelectDeptAllCanUse(); + cboNewClub.DisplayMember = "dept_name"; + cboNewClub.ValueMember = "dept_no"; + } + + private void cboNewClub_TextChanged(object sender, EventArgs e) + { + this.Text = "将" + FrmChangeWorker.wk_WorkerClub + ":" + FrmChangeWorker.wk_WorkerName + "任命为:" + cboNewClub.Text + "的" + cboNewPosition.Text + ""; + } + + private void cboNewPosition_TextChanged(object sender, EventArgs e) + { + this.Text = "将" + FrmChangeWorker.wk_WorkerClub + ":" + FrmChangeWorker.wk_WorkerName + "任命为:" + cboNewClub.Text + "的" + cboNewPosition.Text + ""; + + } + + private void btnOK_Click(object sender, EventArgs e) + { + Worker worker = new Worker() + { + WorkerClub = cboNewClub.SelectedValue.ToString(), + WorkerPosition = cboNewPosition.SelectedValue.ToString(), + WorkerId = txtworkerId.Text + }; + bool n = new WorkerService().UpdateWorkerPositionAndClub(worker); + if (n == true) + { + MessageBox.Show("任命已生效!"); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = AdminInfo.Account + AdminInfo.Name + "于" + DateTime.Now + "将员工:" + txtworkerName.Text + "晋升/降级为" + cboNewClub.Text + cboNewPosition.Text; + o.OperationAccount = AdminInfo.Account; + o.datains_usr = AdminInfo.Account; + o.datains_date = DateTime.Now; + #endregion + new OperationlogService().InsertOperationLog(o); + FrmWorkerManager.Reload(); + } + + + } + + } +} diff --git a/SYS.FormUI/AppFunction/FrmChangePosition.resx b/SYS.FormUI/AppFunction/FrmChangePosition.resx new file mode 100644 index 0000000000000000000000000000000000000000..327bfa9e9e773169528d953adeae384ac343895a --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChangePosition.resx @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGAARAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACpklEQVRYR+2WP2hT + URjFswitlCKupZuLAaFIpbQ6VBzqIGI7VXDoVFQ6WCxd06kOHdShiCB08C9FWgmlVREEEcRMopMgCBaH + UkGHDk6Jv3NzCMaX9/Lqe936g8N993znfvcmeclLYZ//oVqtnkBX0AqaRyOo2+W9o1arDbPRO8YI+Jto + xtH8YY+5+lZhs4/oPtKrX0Rll1Tb8JL8oOlR99cGLxi6XGqAX6onQmbKdj7Q8Ll7z9lqCfXheiwcYtx2 + Nmh00g1f2UqEXHgnGJdsZYNGs274wFYiRC84X7GVDRo9c8MbthIhesj5HVvZoNG8Gy7aSoRon/OfbWWD + RiNuWLaVCLlrzj+2lQ0adaNNNYXEb4Eg86sebZ9NDQeYcVO9svO2m/BB3zrz2nZ+0HQjnAC4vocuosNo + AF1H2y7XvCR/2GTKe7SE+l1H9w42GUdLqIJ20Be0wv75featYJNbvkyEnH4Jlxn1dNTNu5zpcCw+SKNP + jGLSdgQyuhe+o5/oDrpk6VqeagOOp4MFg95Yn69e0bRLEZxZZeiz1UCea+lvUBYUtUBw/RAdcykCtQX0 + BnXakvcNvfdU805nFmzFQ6iIfnjz27ZjIfOV6ClPA3hl9MjTgDLKehoPoYo3X7MVC5leZ3tsyTuDNcH4 + BPXblt/jbK+tKBTHHNpCR2zHQua48tBhS57+pJ5GJXTOtt6BDgW1xlYUik8davvWC6IHyP5GRVsBfP2B + LXkaUEZZrbHVDMV+bS64HrTdFrJ6BjR915lHDqCMsp5GoTjtzV/aSgVLJr3u77e76QCqKQOxvyVapF8t + NbppKzWsWddamLDVQJ4KythqDYHw3Ge8amtXsG4U6dmwjT5YupY36lg8hHTXSmdt7RrO38X6IXTZGpLn + 8j7/UCj8AdXGnoYuGZdFAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmChangeRoom.Designer.cs b/SYS.FormUI/AppFunction/FrmChangeRoom.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..093596d6ff991424ea3da51c74041bacad352ae7 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChangeRoom.Designer.cs @@ -0,0 +1,132 @@ +namespace SYS.FormUI +{ + partial class FrmChangeRoom + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChangeRoom)); + this.uiLabel1 = new Sunny.UI.UILabel(); + this.cboRoomList = new Sunny.UI.UIComboBox(); + this.uiLabel2 = new Sunny.UI.UILabel(); + this.lblRoomType = new Sunny.UI.UILabel(); + this.btnChangeRoom = new Sunny.UI.UIButton(); + this.SuspendLayout(); + // + // uiLabel1 + // + this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 12F); + this.uiLabel1.Location = new System.Drawing.Point(15, 54); + this.uiLabel1.Name = "uiLabel1"; + this.uiLabel1.Size = new System.Drawing.Size(202, 28); + this.uiLabel1.Style = Sunny.UI.UIStyle.Custom; + this.uiLabel1.TabIndex = 6; + this.uiLabel1.Text = "请选择需要转换的新房间:"; + this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // cboRoomList + // + this.cboRoomList.FillColor = System.Drawing.Color.White; + this.cboRoomList.Font = new System.Drawing.Font("微软雅黑", 12F); + this.cboRoomList.Location = new System.Drawing.Point(208, 55); + this.cboRoomList.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboRoomList.MinimumSize = new System.Drawing.Size(63, 0); + this.cboRoomList.Name = "cboRoomList"; + this.cboRoomList.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboRoomList.Radius = 15; + this.cboRoomList.Size = new System.Drawing.Size(150, 29); + this.cboRoomList.Style = Sunny.UI.UIStyle.Custom; + this.cboRoomList.TabIndex = 7; + this.cboRoomList.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cboRoomList.TextChanged += new System.EventHandler(this.cboRoomList_TextChanged); + // + // uiLabel2 + // + this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 12F); + this.uiLabel2.Location = new System.Drawing.Point(15, 96); + this.uiLabel2.Name = "uiLabel2"; + this.uiLabel2.Size = new System.Drawing.Size(183, 28); + this.uiLabel2.Style = Sunny.UI.UIStyle.Custom; + this.uiLabel2.TabIndex = 8; + this.uiLabel2.Text = "新 房 间 类 型 为:"; + this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // lblRoomType + // + this.lblRoomType.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lblRoomType.Location = new System.Drawing.Point(208, 96); + this.lblRoomType.Name = "lblRoomType"; + this.lblRoomType.Size = new System.Drawing.Size(150, 28); + this.lblRoomType.Style = Sunny.UI.UIStyle.Custom; + this.lblRoomType.TabIndex = 9; + this.lblRoomType.Text = "新 房 间 类 型"; + this.lblRoomType.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // btnChangeRoom + // + this.btnChangeRoom.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnChangeRoom.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnChangeRoom.Location = new System.Drawing.Point(133, 138); + this.btnChangeRoom.MinimumSize = new System.Drawing.Size(1, 1); + this.btnChangeRoom.Name = "btnChangeRoom"; + this.btnChangeRoom.Radius = 15; + this.btnChangeRoom.Size = new System.Drawing.Size(107, 40); + this.btnChangeRoom.Style = Sunny.UI.UIStyle.Custom; + this.btnChangeRoom.TabIndex = 10; + this.btnChangeRoom.Text = "转 房"; + this.btnChangeRoom.Click += new System.EventHandler(this.btnChangeRoom_Click); + // + // FrmChangeRoom + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(372, 198); + this.Controls.Add(this.btnChangeRoom); + this.Controls.Add(this.lblRoomType); + this.Controls.Add(this.uiLabel2); + this.Controls.Add(this.cboRoomList); + this.Controls.Add(this.uiLabel1); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmChangeRoom"; + this.ShowIcon = true; + this.Style = Sunny.UI.UIStyle.Custom; + this.Text = "转换房间"; + this.Load += new System.EventHandler(this.FrmChangeRoom_Load); + this.ResumeLayout(false); + + } + + #endregion + private Sunny.UI.UILabel uiLabel1; + private Sunny.UI.UIComboBox cboRoomList; + private Sunny.UI.UILabel uiLabel2; + private Sunny.UI.UILabel lblRoomType; + private Sunny.UI.UIButton btnChangeRoom; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmChangeRoom.cs b/SYS.FormUI/AppFunction/FrmChangeRoom.cs new file mode 100644 index 0000000000000000000000000000000000000000..8586def5c3c5304bd47e49247a3fa6f906e1ebd2 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChangeRoom.cs @@ -0,0 +1,156 @@ +using System; +using System.Windows.Forms; +using SYS.Core; +using Sunny.UI; +using System.Transactions; +using System.Collections.Generic; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class FrmChangeRoom : UIForm + { + public FrmChangeRoom() + { + InitializeComponent(); + } + + private void FrmChangeRoom_Load(object sender, EventArgs e) + { + foreach (Control item in this.Controls) + { + item.Font = UI_FontUtil.scorllingFont; + } + string rno = cboRoomList.Text; + cboRoomList.DataSource = new RoomService().SelectCanUseRoomAll(); + cboRoomList.ValueMember = "RoomNo"; + cboRoomList.DisplayMember = "RoomNo"; + + + } + + private void btnChangeRoom_Click(object sender, EventArgs e) + { + using (TransactionScope scope = new TransactionScope()) + { + double sum = 0; + string lbu = LoginInfo.WorkerName; + string rno = ucRoomList.RoomNo.ToString(); + string nrno = cboRoomList.Text; + Room checkInRoom = new Room() + { + RoomNo = nrno, + CustoNo = ucRoomList.CustoNo, + RoomStateId = 1, + CheckTime = DateTime.Now, + datains_usr = LoginInfo.WorkerNo, + datains_date = DateTime.Now + }; + + if (rno.Contains("BD")) + { + sum = Convert.ToDouble(Convert.ToInt32(new RoomService().DayByRoomNo(rno).ToString()) * 300); + } + if (rno.Contains("BS")) + { + sum = Convert.ToDouble(Convert.ToInt32(new RoomService().DayByRoomNo(rno).ToString()) * 425); + } + if (rno.Contains("HD")) + { + sum = Convert.ToDouble(Convert.ToInt32(new RoomService().DayByRoomNo(rno).ToString()) * 625); + } + if (rno.Contains("HS")) + { + sum = Convert.ToDouble(Convert.ToInt32(new RoomService().DayByRoomNo(rno).ToString()) * 660); + } + if (rno.Contains("QL")) + { + sum = Convert.ToDouble(Convert.ToInt32(new RoomService().DayByRoomNo(rno).ToString()) * 845); + } + if (rno.Contains("ZT")) + { + sum = Convert.ToDouble(Convert.ToInt32(new RoomService().DayByRoomNo(rno).ToString()) * 1080); + //sum = Convert.ToDouble(Convert.ToInt32(RoomManager.DayByRoomNo(rno).ToString()) * 1080); + } + Spend s = new Spend() + { + RoomNo = cboRoomList.Text, + SpendName = "居住" + rno + "共" + Convert.ToInt32(new RoomService().DayByRoomNo(rno).ToString()) + "天", + SpendAmount = Convert.ToInt32(new RoomService().DayByRoomNo(rno).ToString()), + CustoNo = ucRoomList.CustoNo, + SpendPrice = Convert.ToDecimal(sum), + SpendMoney = Convert.ToDecimal(sum), + SpendTime = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")), + MoneyState = "未结算", + }; + + bool result1 = new RoomService().UpdateRoomInfo(checkInRoom); + bool result2 = new RoomService().UpdateRoomByRoomNo(rno); + var result3 = new SpendService().SelectSpendByCustoNo(rno); + if (result3.Count != 0) + { + bool result4 = new SpendService().UpdateSpendInfoByRoomNo(result3, nrno, ucRoomList.CustoNo); + } + if (result1 == true && result2 == true) + { + MessageBox.Show("转房成功"); + bool m = new SpendService().InsertSpendInfo(s); + FrmRoomManager.Reload(); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = ucRoomList.CustoNo + "于" + DateTime.Now + "进行了换房,请记得到后台修改消费价格!"; + o.OperationAccount = LoginInfo.WorkerNo; + o.datains_usr = LoginInfo.WorkerNo; + o.datains_date = DateTime.Now; + #endregion + new OperationlogService().InsertOperationLog(o); + scope.Complete(); + this.Close(); + } + else + { + MessageBox.Show("转房失败"); + } + } + + + + } + + private void btnClose_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void cboRoomList_TextChanged(object sender, EventArgs e) + { + string str = cboRoomList.Text; + + if (str.Contains("BD")) + { + lblRoomType.Text = "标准单人间"; + } + else if (str.Contains("BS")) + { + lblRoomType.Text = "标准双人间"; + } + else if (str.Contains("HD")) + { + lblRoomType.Text = "豪华单人间"; + } + else if (str.Contains("HS")) + { + lblRoomType.Text = "豪华双人间"; + } + else if (str.Contains("QL")) + { + lblRoomType.Text = "情侣套房"; + } + else if (str.Contains("ZT")) + { + lblRoomType.Text = "总统套房"; + } + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmChangeRoom.resx b/SYS.FormUI/AppFunction/FrmChangeRoom.resx new file mode 100644 index 0000000000000000000000000000000000000000..211ed0936cc068c5ab8d5774f308bc5a332af403 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChangeRoom.resx @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGAD9AQAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABkklEQVRYR+2WQStE + YRSGb5qiWWBnRSnZsCBZ+AEWaljZKKZYy+QX0KwslJqsZO0PKI2UpbIikQ1mkpqFSOw07njOd47sje9Y + mKfeud+590zPmem7t5v8FmmarpJHstNoNDJ22gekOXKNOMD6mMOIXY4Psm6k5WA3qB/IrLXEB9kMqZo/ + QP1MCtYSH2RD5Ih82AzCC3WJ9FpbfJBtmTxAXScHLP32BcIl8qojKNSnZMJa4oKvDdmoSFWvUFdInmXW + WuOCqA/hXrAb1EKRZVb+qjVS00u+4F2UAS6tdgd3RQbYtdod3IcywAApUK97BucC6bet0qLFf6bZ25Dv + ypP0J9HbkI8/fxCdWe0O7poMkLPaFbw3HDa+9oG8Ur/rJYX6hIyHhtjgyyCbJBeqV6irZJ5lh7XGBdkg + 2Vf9N5wrknZriws+eYPZJm+qV6jlrcbtn+gky+Re9Qr1OfHZFwKyaXJr/gD1E5mzlvjgHENYJnUdIQxx + RYatJT44uxCWVB8GuCNTdtkPpCtEfv0m6bHTTZAkn00Rpq3O2slCAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmChangeWorker.Designer.cs b/SYS.FormUI/AppFunction/FrmChangeWorker.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..87f1459a50aaf6d3450245d59a7953b9c80f7094 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChangeWorker.Designer.cs @@ -0,0 +1,169 @@ +namespace SYS.FormUI +{ + partial class FrmChangeWorker + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChangeWorker)); + this.lblWorker = new System.Windows.Forms.Label(); + this.btnWatchInfo = new Sunny.UI.UIButton(); + this.btnUpWorker = new Sunny.UI.UIButton(); + this.btnGoodBad = new Sunny.UI.UIButton(); + this.btnCheck = new Sunny.UI.UIButton(); + this.btnClose = new Sunny.UI.UIButton(); + this.btnUpdate = new Sunny.UI.UIButton(); + this.SuspendLayout(); + // + // lblWorker + // + this.lblWorker.AutoSize = true; + this.lblWorker.BackColor = System.Drawing.Color.Transparent; + this.lblWorker.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblWorker.Location = new System.Drawing.Point(86, 48); + this.lblWorker.Name = "lblWorker"; + this.lblWorker.Size = new System.Drawing.Size(239, 25); + this.lblWorker.TabIndex = 108; + this.lblWorker.Text = "XXX部XXX:XXX的操作界面"; + // + // btnWatchInfo + // + this.btnWatchInfo.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnWatchInfo.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnWatchInfo.Location = new System.Drawing.Point(55, 114); + this.btnWatchInfo.MinimumSize = new System.Drawing.Size(1, 1); + this.btnWatchInfo.Name = "btnWatchInfo"; + this.btnWatchInfo.Radius = 15; + this.btnWatchInfo.Size = new System.Drawing.Size(72, 29); + this.btnWatchInfo.TabIndex = 110; + this.btnWatchInfo.Text = "查看信息"; + this.btnWatchInfo.Click += new System.EventHandler(this.btnWatchInfo_Click); + // + // btnUpWorker + // + this.btnUpWorker.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnUpWorker.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnUpWorker.Location = new System.Drawing.Point(247, 114); + this.btnUpWorker.MinimumSize = new System.Drawing.Size(1, 1); + this.btnUpWorker.Name = "btnUpWorker"; + this.btnUpWorker.Radius = 15; + this.btnUpWorker.Size = new System.Drawing.Size(72, 29); + this.btnUpWorker.TabIndex = 111; + this.btnUpWorker.Text = "职位任命"; + this.btnUpWorker.Click += new System.EventHandler(this.btnUpWorker_Click); + // + // btnGoodBad + // + this.btnGoodBad.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnGoodBad.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnGoodBad.Location = new System.Drawing.Point(55, 149); + this.btnGoodBad.MinimumSize = new System.Drawing.Size(1, 1); + this.btnGoodBad.Name = "btnGoodBad"; + this.btnGoodBad.Radius = 15; + this.btnGoodBad.Size = new System.Drawing.Size(72, 29); + this.btnGoodBad.TabIndex = 112; + this.btnGoodBad.Text = "奖罚情况"; + this.btnGoodBad.Click += new System.EventHandler(this.btnGoodBad_Click); + // + // btnCheck + // + this.btnCheck.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnCheck.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnCheck.Location = new System.Drawing.Point(151, 149); + this.btnCheck.MinimumSize = new System.Drawing.Size(1, 1); + this.btnCheck.Name = "btnCheck"; + this.btnCheck.Radius = 15; + this.btnCheck.Size = new System.Drawing.Size(72, 29); + this.btnCheck.TabIndex = 113; + this.btnCheck.Text = "打卡考勤"; + this.btnCheck.Click += new System.EventHandler(this.btnCheck_Click); + // + // btnClose + // + this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnClose.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnClose.Location = new System.Drawing.Point(247, 149); + this.btnClose.MinimumSize = new System.Drawing.Size(1, 1); + this.btnClose.Name = "btnClose"; + this.btnClose.Radius = 15; + this.btnClose.Size = new System.Drawing.Size(72, 29); + this.btnClose.TabIndex = 114; + this.btnClose.Text = "关闭界面"; + this.btnClose.Click += new System.EventHandler(this.btnClose_Click); + // + // btnUpdate + // + this.btnUpdate.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnUpdate.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnUpdate.Location = new System.Drawing.Point(151, 114); + this.btnUpdate.MinimumSize = new System.Drawing.Size(1, 1); + this.btnUpdate.Name = "btnUpdate"; + this.btnUpdate.Radius = 15; + this.btnUpdate.Size = new System.Drawing.Size(72, 29); + this.btnUpdate.TabIndex = 115; + this.btnUpdate.Text = "修改信息"; + this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click); + // + // FrmChangeWorker + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.BackgroundImage = global::SYS.FormUI.Properties.Resources.常规部门卡片; + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.ClientSize = new System.Drawing.Size(375, 239); + this.Controls.Add(this.btnUpdate); + this.Controls.Add(this.btnClose); + this.Controls.Add(this.btnCheck); + this.Controls.Add(this.btnGoodBad); + this.Controls.Add(this.btnUpWorker); + this.Controls.Add(this.btnWatchInfo); + this.Controls.Add(this.lblWorker); + this.DoubleBuffered = true; + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmChangeWorker"; + this.ShowInTaskbar = false; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "XXX员工操作"; + this.Load += new System.EventHandler(this.FrmChangeWorker_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.Label lblWorker; + private Sunny.UI.UIButton btnWatchInfo; + private Sunny.UI.UIButton btnUpWorker; + private Sunny.UI.UIButton btnGoodBad; + private Sunny.UI.UIButton btnCheck; + private Sunny.UI.UIButton btnClose; + private Sunny.UI.UIButton btnUpdate; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmChangeWorker.cs b/SYS.FormUI/AppFunction/FrmChangeWorker.cs new file mode 100644 index 0000000000000000000000000000000000000000..2cad23438f3920ae03f59c3a8d4090673af860a4 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChangeWorker.cs @@ -0,0 +1,215 @@ +using System; +using System.Drawing; +using System.Windows.Forms; +using Sunny.UI; +using SYS.Core; +using SYS.FormUI.Properties; + +namespace SYS.FormUI +{ + public partial class FrmChangeWorker : Form + { + public static string wk_WorkerNo; + public static string wk_WorkerName; + public static string wk_WorkerBirthday; + public static string wk_WorkerSex; + public static string wk_WorkerTel; + public static string wk_WorkerClub; + public static string wk_WorkerAddress; + public static string wk_WorkerPosition; + public static string wk_WorkerID; + public static string wk_WorkerPwd; + public static string wk_WorkerTime; + public static string wk_WorkerFace; + public static string wk_WorkerNation; + public static string wk_WorkerEducation; + + public FrmChangeWorker() + { + InitializeComponent(); + } + private void FrmChangeWorker_Load(object sender, EventArgs e) + { + foreach (Control item in this.Controls) + { + item.Font = UI_FontUtil.roomControlFont; + } + if (AdminInfo.Type != "总经理") + { + btnUpWorker.Enabled = false; + btnUpWorker.Text = "权限不足"; + btnCheck.Enabled = false; + btnCheck.Text = "权限不足"; + btnGoodBad.Enabled = false; + btnGoodBad.Text = "权限不足"; + } + + wk_WorkerNo = FrmWorkerManager.wk_WorkerNo; + wk_WorkerName = FrmWorkerManager.wk_WorkerName; + wk_WorkerBirthday = FrmWorkerManager.wk_WorkerBirthday; + wk_WorkerSex = FrmWorkerManager.wk_WorkerSex; + wk_WorkerTel = FrmWorkerManager.wk_WorkerTel; + wk_WorkerClub = FrmWorkerManager.wk_WorkerClub; + wk_WorkerAddress = FrmWorkerManager.wk_WorkerAddress; + wk_WorkerPosition = FrmWorkerManager.wk_WorkerPosition; + wk_WorkerID = FrmWorkerManager.wk_WorkerID; + wk_WorkerPwd = FrmWorkerManager.wk_WorkerPwd; + wk_WorkerTime = FrmWorkerManager.wk_WorkerTime; + wk_WorkerFace = FrmWorkerManager.wk_WorkerFace; + wk_WorkerNation = FrmWorkerManager.wk_WorkerNation; + wk_WorkerEducation = FrmWorkerManager.wk_WorkerEducation; + lblWorker.Text = FrmWorkerManager.wk_WorkerClub + FrmWorkerManager.wk_WorkerPosition + ":" + FrmWorkerManager.wk_WorkerName + "的操作界面"; + + switch (wk_WorkerClub) + { + case "经理部": + this.BackgroundImage = Resources.经理部卡片; + this.btnWatchInfo.FillColor = Color.FromArgb(255, 105, 105); + this.btnUpdate.FillColor = Color.FromArgb(255, 105, 105); + this.btnUpWorker.FillColor = Color.FromArgb(255, 105, 105); + this.btnGoodBad.FillColor = Color.FromArgb(255, 105, 105); + this.btnClose.FillColor = Color.FromArgb(255, 105, 105); + this.btnCheck.FillColor = Color.FromArgb(255, 105, 105); + break; + case "总经办": + this.BackgroundImage = Resources.总经办卡片; + this.btnWatchInfo.FillColor = Color.FromArgb(67, 123, 232); + this.btnUpdate.FillColor = Color.FromArgb(67, 123, 232); + this.btnUpWorker.FillColor = Color.FromArgb(67, 123, 232); + this.btnGoodBad.FillColor = Color.FromArgb(67, 123, 232); + this.btnClose.FillColor = Color.FromArgb(67, 123, 232); + this.btnCheck.FillColor = Color.FromArgb(67, 123, 232); + break; + case "人力资源部": + this.BackgroundImage = Resources.人力资源部卡片; + this.btnWatchInfo.FillColor = Color.FromArgb(101, 165, 72); + this.btnUpdate.FillColor = Color.FromArgb(101, 165, 72); + this.btnUpWorker.FillColor = Color.FromArgb(101, 165, 72); + this.btnGoodBad.FillColor = Color.FromArgb(101, 165, 72); + this.btnClose.FillColor = Color.FromArgb(101, 165, 72); + this.btnCheck.FillColor = Color.FromArgb(101, 165, 72); + break; + case "财务部": + this.BackgroundImage = Resources.财务部卡片; + this.btnWatchInfo.FillColor = Color.FromArgb(80, 160, 255); + this.btnUpdate.FillColor = Color.FromArgb(80, 160, 255); + this.btnUpWorker.FillColor = Color.FromArgb(80, 160, 255); + this.btnGoodBad.FillColor = Color.FromArgb(80, 160, 255); + this.btnClose.FillColor = Color.FromArgb(80, 160, 255); + this.btnCheck.FillColor = Color.FromArgb(80, 160, 255); + break; + case "酒店部": + this.BackgroundImage = Resources.酒店部卡片; + this.btnWatchInfo.FillColor = Color.FromArgb(255, 185, 38); + this.btnUpdate.FillColor = Color.FromArgb(255, 185, 38); + this.btnUpWorker.FillColor = Color.FromArgb(255, 185, 38); + this.btnGoodBad.FillColor = Color.FromArgb(255, 185, 38); + this.btnClose.FillColor = Color.FromArgb(255, 185, 38); + this.btnCheck.FillColor = Color.FromArgb(255, 185, 38); + break; + case "内控部": + this.BackgroundImage = Resources.内控部卡片; + var btnColor = Color.FromArgb(251, 157, 63); + this.btnWatchInfo.FillColor = btnColor; + this.btnUpdate.FillColor = btnColor; + this.btnUpWorker.FillColor = btnColor; + this.btnGoodBad.FillColor = btnColor; + this.btnClose.FillColor = btnColor; + this.btnCheck.FillColor = btnColor; + break; + case "监管小组": + this.BackgroundImage = Resources.监管小组卡片; + this.btnWatchInfo.FillColor = Color.FromArgb(251, 186, 36); + this.btnUpdate.FillColor = Color.FromArgb(251, 186, 36); + this.btnUpWorker.FillColor = Color.FromArgb(251, 186, 36); + this.btnGoodBad.FillColor = Color.FromArgb(251, 186, 36); + this.btnClose.FillColor = Color.FromArgb(251, 186, 36); + this.btnCheck.FillColor = Color.FromArgb(251, 186, 36); + break; + case "餐饮部": + this.BackgroundImage = Resources.餐饮部卡片; + this.btnWatchInfo.FillColor = Color.FromArgb(243, 160, 53); + this.btnUpdate.FillColor = Color.FromArgb(243, 160, 53); + this.btnUpWorker.FillColor = Color.FromArgb(243, 160, 53); + this.btnGoodBad.FillColor = Color.FromArgb(243, 160, 53); + this.btnClose.FillColor = Color.FromArgb(243, 160, 53); + this.btnCheck.FillColor = Color.FromArgb(243, 160, 53); + break; + case "后勤部": + this.BackgroundImage = Resources.后勤部卡片; + this.btnWatchInfo.FillColor = Color.FromArgb(106, 229, 162); + this.btnUpdate.FillColor = Color.FromArgb(106, 229, 162); + this.btnUpWorker.FillColor = Color.FromArgb(106, 229, 162); + this.btnGoodBad.FillColor = Color.FromArgb(106, 229, 162); + this.btnClose.FillColor = Color.FromArgb(106, 229, 162); + this.btnCheck.FillColor = Color.FromArgb(106, 229, 162); + break; + case "维修部": + this.BackgroundImage = Resources.维修部卡片; + this.btnWatchInfo.FillColor = Color.FromArgb(16, 90, 152); + this.btnUpdate.FillColor = Color.FromArgb(16, 90, 152); + this.btnUpWorker.FillColor = Color.FromArgb(16, 90, 152); + this.btnGoodBad.FillColor = Color.FromArgb(16, 90, 152); + this.btnClose.FillColor = Color.FromArgb(16, 90, 152); + this.btnCheck.FillColor = Color.FromArgb(16, 90, 152); + break; + case "商品部": + this.BackgroundImage = Resources.商品部卡片; + this.btnWatchInfo.FillColor = Color.FromArgb(18, 150, 219); + this.btnUpdate.FillColor = Color.FromArgb(18, 150, 219); + this.btnUpWorker.FillColor = Color.FromArgb(18, 150, 219); + this.btnGoodBad.FillColor = Color.FromArgb(18, 150, 219); + this.btnClose.FillColor = Color.FromArgb(18, 150, 219); + this.btnCheck.FillColor = Color.FromArgb(18, 150, 219); + break; + default: + this.BackgroundImage = Resources.常规部门卡片; + this.btnWatchInfo.FillColor = Color.FromArgb(255, 200, 35); + this.btnUpdate.FillColor = Color.FromArgb(255, 200, 35); + this.btnUpWorker.FillColor = Color.FromArgb(255, 200, 35); + this.btnGoodBad.FillColor = Color.FromArgb(255, 200, 35); + this.btnClose.FillColor = Color.FromArgb(255, 200, 35); + this.btnCheck.FillColor = Color.FromArgb(255, 200, 35); + + break; + } + } + + private void btnWatchInfo_Click(object sender, EventArgs e) + { + FrmAddWorker aff = new FrmAddWorker(); + aff.Text = "员工信息查看页"; + aff.ShowDialog(); + } + + private void btnUpWorker_Click(object sender, EventArgs e) + { + FrmChangePosition aff = new FrmChangePosition(); + aff.ShowDialog(); + } + + private void btnClose_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void btnCheck_Click(object sender, EventArgs e) + { + FrmWorkerCheckInfo frm = new FrmWorkerCheckInfo(); + frm.Show(); + } + + private void btnGoodBad_Click(object sender, EventArgs e) + { + FrmGoodOrBad frm = new FrmGoodOrBad(); + frm.Show(); + } + + private void btnUpdate_Click(object sender, EventArgs e) + { + FrmAddWorker frmAddWorker = new FrmAddWorker(); + frmAddWorker.Text = "员工信息修改页"; + frmAddWorker.ShowDialog(); + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmChangeWorker.resx b/SYS.FormUI/AppFunction/FrmChangeWorker.resx new file mode 100644 index 0000000000000000000000000000000000000000..fe5c746984f88c207fb8ca0450b10628c063e669 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChangeWorker.resx @@ -0,0 +1,408 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAQEAAAAEAIAAoQgAAFgAAACgAAABAAAAAgAAAAAEAIAAAAAAAAEAAACMuAAAjLgAAAAAAAAAA + AAD6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+Pj5//j4+P/4+Pj/+Pj4//j4 + +P/4+Pj/+Pj4//j4+P/4+Pj/+Pj4//j4+P/4+Pj/+Pj4//j4+P/4+Pj/+Pj4//j4+P/5+fn/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//7+ + /v////////////////////////////////////////////////////////////////////////////// + /////////v7+//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vn/+fr4//n6+P/6+vj/+vr4//r6+P/6+vn/+/r6//r7+//6+vr/+/r7//r7+v/6+vn/+vr4//r6 + +P/5+vf/+vr4//r6+f/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+f/e393/1tbW/9TU1f/V1dX/1dTV/9XU1f/V1NX/1dTV/9TU1f/V1NX/1dXV/9XV + 1f/V1NX/1dTV/9XV1f/V1dX/1tbW/+Li4v/7+/v/+fn5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +f/6+vn/+vr4//n69//6+vf/+vr6//v7/v/8/P///Pz///z8///7+///+fn+//n5+f/5+ff/+Pj2//n5 + 9//4+fj/+fn9//v6///8/P///Pz///z7///7+/z/+vr5//r69//6+vj/+/r5//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/4+Pj/JiYm/wkLB/8dHxn/GhsW/xobFv8aGxb/GhwW/xka + Ff8WGBP/FhgT/xkbFf8aHBb/GhsW/xobFv8ZGxb/HiAa/wECAP9HR0f///////f39//6+vr/+vr6//r6 + +v/6+vr/+vr5//r6+P/5+vf/+vv6//z8///8/P//+/v///n49v/z9N//7vLM/+nttP/j6pf/3+aE/9zl + d//a5G7/2uRp/9nkZ//b5Gj/2uRr/9zldf/f54L/4umU/+jttv/v8tD/9fbr//v6/v/8/P///Pv9//r6 + +P/6+vj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+/v7/xYXFv9tcmX/9Pbv/+Hj + 3f/k5uD/5Obg/+Pl3//p6+b/9Pbw//P17//n6eP/4+Xf/+Tm4P/k5t//4ePe//L07P9GSj7/ODg5//// + ///39/f/+vr6//r6+v/5+vj/+vr4//v7/P/8/P///Pv///j59//w8tT/6Oyv/9/mgv/Z4mH/1d9L/9Pe + PP/T3Tj/0t02/9LdNv/S3jf/0944/9LeOf/S3jn/0t45/9TeOf/T3jf/0942/9PeNv/T3jj/0949/9fg + VP/d5Xr/6Ouv//P15f/7+////Pz+//r6+P/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//v7 + +/8XFxf/eX1y///////8/Pz///////7+/v//////4ePc/3t+dv+HioL/7vDr///////+/v7///////39 + /f//////TlJH/zg4Of//////9/f3//n69//6+vn//Pz///v7///29/L/7/DK/+PnlP/b4mL/1N5B/9Pc + NP/S3DX/0904/9TdPP/V3j//1d5B/9XeQv/V3kL/1d5B/9XeQf/V3kH/1d5B/9XdQf/U3kH/1d5B/9Xe + Qf/U3kH/1d5B/9XdQP/U3Tv/0t01/9PdNf/U3kr/4OaH//Hz2P/7+///+/v8//n69//6+vn/+vr5//r6 + +v/6+vr/+vr6//r6+v/7+/v/FhYX/3Z6b///////9fb1//n5+f/19vT//////4OHev8AAAD/AAAA/6es + n///////9vb1//j5+P/29vf//////0tPRP84ODn///////j4+P/8/P//+fn6/+/w0//i55H/2N9X/9Tb + O//U2zH/1Nw2/9TcPP/W3UD/1t1A/9bdP//V3T7/1d09/9XdPf/W3T3/1t09/9bdPf/V3T3/1d09/9Xd + Pf/V3T3/1d09/9XdPf/V3T3/1N09/9XdPf/W3D7/1t0//9XdQP/W3UD/1dw7/9PbMv/V3D//4eWH//T1 + 5//8/P//+vr3//r6+f/6+vr/+vr6//r6+v/6+vr/+/v7/xYWFv93e2////////f39//6+vr/9vb2//// + //+EiHz/AAAA/wEBAP+praL///////b39v/6+vr/+Pj4//////9MUET/OTg5///////29vT/7O2//93g + bf/U2jz/1Nox/9XaNv/W2z3/1txA/9bcQP/W3D//1tw+/9bbPf/W2zz/1ts8/9bbPP/W2z3/1tw+/9fb + P//W2z//1ts+/9bbPP/W2zz/1ts8/9bbPP/W2zz/1ts8/9XbPP/W2zz/1ts8/9bbPP/W2zz/1ds8/9bb + Pf/W2z7/1ts7/9PaL//X3Ev/7e7E//v8///6+vj/+vr5//r6+v/6+vr/+vr6//v7+/8WFhb/d3tv//// + ///39/f/+Pj4//////+9wbb/FBYP/wQEBf8CAgL/JCce/9XYz///////+Pj4//f39v//////TVBI/zY2 + M//5+8D/2Ntd/9TZM//U2TH/1to8/9bbQP/V2j7/1do4/9XZNP/U2DD/09gu/9TYL//T2DP/1Nk3/9XZ + OP/U2Tf/1Nk0/9TYMf/S2C7/1Ngu/9XZMv/V2Tf/1to8/9baPf/V2jz/1do7/9XaO//V2jv/1dk6/9Xa + O//V2jv/1dk6/9XZO//V2Tr/1dk6/9XZO//W2j7/1dk1/9TYNP/m6J//+vv///r6+P/6+vj/+vr5//r6 + +v/7+/v/FhYX/3d7b///////9/f3//b29v//////io6C/wAAAP8MDAz/CgoK/wAAAP+vs6j///////b3 + 9P/6+v7//////0tPRf8vMAr/4uU4/9PWMf/W2T3/1tk7/9XYM//V1yz/1Ncw/9bZP//Z3FX/3+F2/+Pl + jv/o6af/6+u4/+3uw//t78P/7e/E/+3twP/q6rD/5uec/+Hjhf/b3WT/19pG/9TXMv/U1yz/1Ngz/9bZ + Ov/W2Tv/1dk5/9XZOP/V2Tn/1tk5/9XZOf/V2Tn/1dk5/9XZOf/V2Tj/1dk4/9XZO//W2Tn/09Yr/+bo + n//8/P//+vn3//r6+f/6+vr/+/v7/xYWFv93e2////////f39//39/f//////5aajv8AAAD/AwMD/wEA + Af8AAAD/ubyv///////5+f//7+/V/+rrcP9DRxb/MDAP/+TlP//T1TX/1dUs/9XWM//Z2lT/4eKE/+vr + tf/y8tz/+Pj0//r6/f/8+////fz///z8///8/P///Pz///z8///8/P///fz///z8///7+///+fn5//T0 + 5v/s7b7/4uOJ/9jZT//U1S7/1dYv/9bXOf/W1zn/1tc3/9bXN//W1zf/1tc3/9bXN//W1zf/1tc3/9bX + N//W1zf/19c4/9fYOP/U1i3/6uq0//z8///5+vf/+vr6//v7+/8WFhb/dnpu///////19fX/+Pj4//r6 + +v/t7+n/l5uO/0FDO/9LTUT/p6uf//b3+P/39/b/5eWg/9PTN//g4C//REcY/zAwDP/i4S3/1tZE/+Pj + g//u7sb/9/fy//v7///8/f//+/z+//v7+//6+vn/+vr4//n69//5+vb/+vn1//r49P/5+fT/+vn0//n4 + 8//6+PT/+vr2//r6+v/7+/7//Pz///v8///29u//7Ou2/9vbXf/V1Cz/1tYx/9fWOf/W1jX/1tY2/9fW + Nv/W1jb/1tY2/9bWNv/X1jb/19Y2/9bWNv/X1jj/1tUz/9bWOf/w8Nf/+/z///r6+P/8+/z/FhYW/3l9 + cv///////Pz8///////////////////////////////+///////399z/4d9g/9jWJ//Z1zP/6OY5/0VI + Ev8zMhv/8vKg//Ly5v/8+////fz///v7+//6+vf/+fr3//n69//6+vn/+vr6//r6+f/6+fb/+/v7//r+ + ///7////+/////v////6////+v7///r7/P/6+ff/+vn4//n6+P/6+vf/+/v7//z8///4+Pf/6umu/9jW + RP/W0yr/19U3/9fUNP/X1DT/19Q0/9fUNP/X1DX/19Q1/9fUNf/X0zX/19M0/9fUOP/V0yn/3dxq//n6 + /v/6+vn/+/v7/xYWF/9vdGf/9Pfu/97g2f/i5N3/5efg/+Pm3v/h49v/4+Xa/+Pl3v/V1qb/xsU5/8XE + Kv/EwzX/wcAu/9XWTv9BRSD/OTlA///////4+fr/+fr3//n59//6+vn/+vr6//r6+v/6+vn/+vr6//r6 + +f/6+/v/+/////r48f/45Lz/99ON//bKc//2yXP/99GJ//jhtP/69ev/+/////r7+//6+fj/+vv6//r6 + +P/5+fb/+/r6//z8///19ej/391w/9XRJf/X1DX/19Qy/9fUMv/X0zL/1tQx/9bUMf/W0zL/1tMz/9bT + M//X0zP/19Q0/9bSK//q6cX//Pz///j5+P8nKCX/AAAA/wcJA/8SFA7/DxEL/wMFAP8DBQD/BAYB/wYI + C/8FCA3/BAYD/wYHBf8EBgP/EBIH/xITCP8ICQb/AAAA/0hJRv//////9/f1//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+P/6+vv/+vjz//fXmf/0szP/86MH//KgAf/yoAD/8p8A//OgAf/yowf/9K8p//fR + h//69/H/+/3+//n69//6+/n/+vr6//r6+v/5+ff/+/z+//r6+//j4IX/1tAk/9fTM//Y0jH/19Ix/9fT + Mf/X0zH/19Mx/9fSMP/X0jD/19Ix/9fSNf/X0iX/3dl7//n5///7+/v/09bO/4mNgv+BhXn/HB8Y/yAi + HP+Hi3//gYR8/4CDfP90cyz/cnEb/3JyHv9xcBX/dnhL/xMUFP8MDAv/eHtv/5SXjP/e4Nr/+/z7//n6 + +P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+/v/+vbu//W5Rf/znwD/86IG//OkCv/zoQL/86EB//Oi + BP/zoAH/86EB//OiBf/zngD/9LY9//nx4P/6/P//+vr3//r6+f/6+vr/+vr6//r5+P/7+vn/+/v//+Pf + hf/WzyT/2NEz/9nRMP/X0S//2NEv/9jRL//Y0S//2NEv/9jRL//Y0TD/2NEs/9jSP//y8eX/+vr6//z9 + /P//////2t3T/wABAP9LTkX///////7+///y7pH/5t4w/+bdLP/l3C//9vKe//z+9P8mKSL/FRcR//Dz + 7P///////f38//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn4//r8/v/2yXH/8p8A//Oi + Bf/zpAz/9bpI//fPgv/42Jj/99CE//S5Rf/zowf/86UO//OeAP/0uEH/+vn2//v6+v/6+vj/+vr6//r6 + +v/6+vr/+vr4//v7+v/4+fj/3dZa/9fOJP/Z0DD/2M8u/9jPLv/Yzy7/2M8u/9jPLv/Zzy7/2M8u/9nQ + MP/WzST/6eey//r6+v/29/b//v7//9XZz/8FBwH/S01D///////e2YL/08gd/9TKI//Xzj//6+jE//n5 + ///29/T/Jyki/xgaE//o6uP/+vr7//f49//6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +P/6+/z/+fr3//W4Qf/1ukb/+enJ//r7+v/6////+/7+//v////7/f//9tCF//OhA//zphD/858A//fZ + n//6////+vn3//r6+v/6+vr/+vr6//r6+v/5+fj//Pz///Hu0f/Xzi7/2M4r/9jOLf/Yziz/2M4s/9jO + Lf/Yziz/2M4t/9jOLf/Zzi//1ssf/+Tegf/6+vr/+vr6//j4+f//////Sk1B/xMWFf/X1Yf/3M8l/9PH + Hf/b0k7/8/Lf//b3/f//////zNDE/wAAAP9scGX///////f39v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/5+vn/+/n4//r8/f/59Of/+vjw//r////6+vn/+/n2//n59v/6+PT/+vv7//r3 + 8f/zsCv/8qMH//KgAP/1wl3/+/3///r5+P/6+vr/+vr6//r6+v/6+vr/+vr6//r69//7/P//49t4/9fL + Hf/ZzS7/2M0r/9jNK//YzSv/2M0r/9jNK//YzSr/2c0t/9fLIP/f12f/+vr6//r6+v/39/j//////4yQ + gv8AAAD/cW8Z/+nbKv/o3WH/+vnv/////////v///v/7/11hVv8AAAD/sLOm///////39/X/+vr4//r6 + +P/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+fj/+vz8//r6+v/6+ff/+vr5//r6 + +P/6+fb/+vn3//r////58Nz/86se//OjCP/yogL/9bdA//r6+f/6+vr/+vr5//r6+v/6+vr/+vr6//r6 + +v/6+ff//P3//+7rxf/Yyib/2cwq/9nMKv/ZzCr/2Mwq/9jMKv/YzCr/2cwq/9nMLP/YyiD/3dRY//r6 + +v/6+vr/+fn4//38///z89//WFki/wAAAP9KShH/wcKq/+fp6f/j5dz/uLyw/z5BOP8AAAD/f4R2//// + ///6+///+vz+//v8///6/P7/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +f/6+vn/+vr6//r59v/6+/z/+v////r9/f/56Mj/9LY8//KhAv/zpxD/858A//bBXP/6/f//+vn4//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr5//v7+//39vD/3M9C/9jKIv/Zyir/2coo/9nKKP/Zyij/2coo/9jK + KP/Zyir/2Mkf/9/SV//6+vr/+vr6//r6+P/7/P//6N6L/+HPGP+DgTL/GBsj/wgJBP8cHRf/GhwX/wUG + A/8hJB3/q6+j///////48OH/+fHf//rx4f/58eD/+vHi//r6+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr5//r6+f/6////+vfu//jeq//2vlH/86UN//OhA//zphD/86IG//Ki + Bf/44rj/+v7///r59//6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+vn/+fr7/+DTXf/Zxxz/2skp/9rJ + J//aySb/2skm/9rJJ//ZySf/2skp/9nHHv/e0VT/+vr6//r69//8/P//8u/V/9nGJP/Zxyf//PfT//L0 + 9P/X19b/1tbX/9bW1v/a2tr/9/f1///////4+fn/9LtM//OoE//zqx//86ob//OsHv/56cr/+v3///r5 + +P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//r7+v/7+/v/99ib//SxLf/zoQT/86EC//Ol + DP/zpAj/8p8A//OoFf/426L/+v3///r6+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr3//r7 + ///j2HT/2cUY/9vJKP/ayCX/2sgl/9rIJf/ayCX/28gl/9vIKP/Zxhn/4tVq//r6+f/6+vf/+/v//+TX + df/XwQr/6uOo//r7///8+/r///////////////////////v7+//39vT/+v////bMeP/yngD/86QJ//Ok + Cf/zngD/99aV//r////6+ff/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6/P3/9shu//Kf + AP/zoQX/86YN//OiBf/zoAD/9Kwg//XHbf/57tf/+v7///r5+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r59//7/f//5tt//9nDFv/bxyj/28ck/9rHJP/axyT/2sck/9rGJP/bxyf/2MMV/+bb + iP/6+vj//Pz///Pv1v/ZwhX/4dJk//r7///6+vj/+fn5//j4+P/4+Pj/+Pj4//j4+P/5+fn/+vn2//r+ + ///44LD/86IG//OlDf/zpg7/86EA//bCX//6/f//+vn4//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r5 + 9//7/v//+N+v//OgAP/0pQz/86UN//KhAv/0tDf/99eZ//ny5P/7/v//+v39//r59v/6+vn/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+vj/+vv//+PUaP/Zwhf/2sYl/9vFI//bxSP/28Uj/9vF + I//bxSP/28Yl/9rDGf/s5a7/+vn3//z9///n24P/2cEX//Lv2f/7/P//+vn3//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+P/7/P//+fDf//OqG//zowb/8qUO//KhA//0sSz/+vbw//r7/P/6+vn/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+ff/+/////bLef/znwD/86YR//OhAf/2xGT/+vr3//r////6+/3/+vn2//r4 + 9f/6/Pz/+vv7//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+/v6//j5+v/ezE7/2sIX/9rE + I//bxCD/28Qi/9vEIv/bxCL/3MQi/9vDHv/cxi7/9fLi//v7+//4+Pb/3cYx/+XXdf/8/f//+vr2//r6 + +f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//v6+v/1uUP/86AA//KlDv/ypAn/86UN//jn + xv/6/v//+vn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vn3//v////20IX/8qAA//OlDf/zpAz/+OvN//v+ + ///69/D/+vn2//r6+//7////+vHh//r16f/7+/z/+vn4//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//v8 + /v/18+T/3cYw/9vCG//bwyD/28Mf/9vDH//bwx//28Mf/9zDI//awBP/4tFf//n6///7/f//8uvG/9zC + J//08Nv//Pz///r69//6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r59//6////9sx6//Kf + AP/zpQ3/9KUN//OfAP/31ZH/+v////r59v/6+vr/+vr6//r6+v/6+vr/+vr6//r5+P/6/f//+OW///Oj + Bf/zpQ7/8qEB//bNe//7/v//+v79//v+///69/L/99me//SqG//2w2H/+v////r6+v/6+vn/+vr6//r6 + +v/6+vr/+vr6//n59//8/v//7eSw/9q+E//bwiD/28Ee/9vBHv/cwR3/3MEd/9zBHf/bwiD/2r4S/+7l + s//8/f///P7//+vfmf/hzVf/+/z///r69//6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+ff/+v7///jgsf/yogb/86QM//SlDv/zoAD/9b9W//r9///6+vf/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vn/+vr5//r7/P/1vlT/8p4A//OmD//zpAr/9bxM//fPgf/2x23/9LIv//OhA//zowf/86ID//fU + jv/6/f//+vn4//r6+v/6+vr/+vr6//r6+v/6+vj/+vz//+TTbf/bvQ//3MEf/9zAHP/cwBz/3MAc/9zA + HP/cwR//278U/+DJRP/49/T/+vr7//z+///o14T/6+Cj//z+///6+fj/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr5//r8/v/58uP/9Kse//OjB//0pQ7/9KIE//SvKf/69en/+vv9//r6 + +P/6+vr/+vr6//r6+v/6+vr/+vr6//r5+P/6+/3/+vXp//W5Q//zngD/86IF//OhAf/zoAD/86AA//Oi + Bf/zpAv/8qIE//KeAP/1vlT/+vn2//r6+v/6+vn/+vr6//r6+v/6+vj/+/z///Pw2//cwCL/3L8Z/9u/ + HP/bvxv/278b/9u/G//bvxv/3MAe/9u8D//u5K7//P7///r59//7+/7/59eH//Xx3f/7/P//+vr5//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vn/+vv9//W8S//zoAD/9KUO//Sk + C//zpAr/+ObD//r+///6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vn/+vn3//v8/f/69+//9s5///Sv + KP/zpAj/86IF//OhAv/yogT/86YP//W2Pv/32Z3/+vn3//v7+//6+vn/+vr6//r6+v/6+vr/+vn3//z9 + ///o2YT/27oL/9y/Hf/cvhr/3L4a/9y+Gv/cvhn/3L4d/9u7Df/iy1L/+fr7//r6+f/6+vr/+fj2//Lu + 2f/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn2//v/ + ///2z4D/86AA//SlDv/0pQ7/8qAA//XTjf/7////+vn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+fj/+vv6//r////59Or/+OS+//jYnP/30ov/+N2o//nqzf/6+ff/+v////r6+//6+vn/+vr6//r6 + +v/6+vr/+vn4//v8///08Nz/3b8j/928Ff/dvRr/3b0Y/92+GP/dvRj/3b0Z/928Fv/cvRz/8+3R//z8 + ///6+ff/+vr6//r6+v/7+/3/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r59//6/v//+OK4//OiBf/0pAz/9KUO//OfAP/1wFj/+/3///r5+P/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+ff/+vv9//r+///6////+/7///v////6/f//+vr6//r5 + 9//6+vn/+vr6//r6+v/6+vr/+vr6//r59//6/P//5M5h/9y4Cf/evBv/3bwX/928F//dvBf/3bwX/928 + Gv/buAj/6tuW//z9///6+fb/+vr6//r6+v/6+vr/+vr3//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vj/+vz///nx4P/0rCH/9KIG//SlDv/zogT/9K8p//r0 + 6v/6+/3/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+ff/+vn2//r5 + 9v/7+ff/+vn3//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r59v/8/v//7N+g/9y4Cv/duxj/3boV/926 + Fv/duhb/3boW/967G//ctgX/5c9o//r7///6+vj/+vr4//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//r6+P/6/P7/9btJ//Og + AP/zpg3/86QK//OkC//458T/+v3///r5+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r59v/8/v//8uvN/927 + G//euRH/3roW/965Ff/euRX/3bkU/966Gf/ctgX/4cVE//j39P/7+/v/+vr5//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn3//r59//6+ff/+vn3//r5 + 9v/6+PP/+v7///bNfP/znwD/86UN//OlDf/zoAD/9tKL//v+///6+PP/+vn3//r59//6+ff/+vn3//r5 + 9//6+ff/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r4 + 9v/7/f//9fLj/9+/Mf/etgv/3rkV/964Ev/euBL/3rgS/965GP/etgf/4cI6//Xz5//7/P3/+vn4//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r+ + ///6////+v////r////7////+/78//v////56MT/8qQI//OkCv/zpQ3/8qAA//W+VP/7////+v/+//r/ + ///6////+v////r////6////+v7///r6+//6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//n59//8/f//9/Tq/+HCO//etAX/3rgV/923Ef/dtxH/3bcR/964Fv/dtAP/4L81//Xy + 4//8/f//+vn2//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r59//31I//9sx5//fOgP/3zX//981+//fOfP/3zoD/9slx//OoE//zowj/86QL//Oj + B//zqhv/9sx6//fOgP/3zX7/981///fNf//3zn//9sx7//fSjP/6+PT/+vr7//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr5//r59f/7/f//9fLn/+LCQP/dswP/37cU/962EP/ethD/3rYR/963 + FP/dsgH/48NF//Xy5P/7/f//+fn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r5+P/6/P//9bxM//KcAP/yoQP/8qAA//KgAP/yoQD/8qAA//Kh + Af/zpAz/86UN//OlDf/zpQ3/86QK//KgAP/yoAD/8qAA//KgAP/yoAD/8qAB//KfAP/zogj/+erO//r9 + ///6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//n59v/8////8+3S/+G+L//esgP/37YT/9+1 + D//ftQ//37US/9+1EP/dsAD/5clc//j38//7/P7/+vn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+fb/+v////fVk//ynAD/8qMG//Ki + A//yoQP/8qEE//KhBP/zoQP/8qAA//KhAP/yoQD/8qAA//KgAP/yogL/8qIC//KiAv/yogP/8qID//Ki + A//zowb/8p0A//fUkP/6////+vn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vn3//v7+//6/v//7+Kz/+C3 + Hv/fsgT/37US/9+0Dv/ftA7/37US/9+zB//esgf/6dSB//r6+//7+/v/+vn2//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn4//r9 + ///46s3/9btJ//W7S//1u0v/9btL//W7TP/1u0z/9btL//a7S//1u0v/9btL//W7S//1u0v/9btL//W7 + S//1u0v/9btL//W7S//1u0v/9rxN//W4Qv/40Yj/+vz///r5+f/6+vr/+vr6//r6+f/6+vf/+vn3//z+ + ///39/H/6dB4/96xBv/fsgj/37QQ/9+zDf/ftBD/4LMP/96vAP/huif/8OO1//v+///6+vj/+fr4//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vn/+vv7//r8/f/6/Pz/+vz8//r8/P/6/Pz/+vz8//r8/P/6/Pz/+vz8//r8 + /P/6/Pz/+vz8//r8/P/6/Pz/+vz8//r8/P/6/Pz/+vz8//v7/P/7+/3/+vr7//r6+v/6+vr/+vr6//r6 + 9//6+ff/+/39//r9///w5b//4r00/96tAP/fswz/37MO/9+yDf/gsw//37AE/96vA//myWH/9vLk//z+ + ///7+ff/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+vr/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//r6 + +f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//n6+f/6+vn/+vr4//r6 + +f/6+fn/+vn3//r6+P/7/P3/+/3///Ps1f/myWL/37AJ/9+vAv/gsg7/37EN/+CyDv/gsQj/3q0A/+K8 + Mv/v4bD/+vz///v8/P/6+ff/+vr5//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//r7+v/7/P7/+vr3//r59v/6+fj/+vr5//r6 + +v/6+vr/+vr6//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vr/+vr5//r6 + +f/6+vn/+vr4//r59v/6+fb/+vv8//z+///7/P//9O3U/+jNcf/fshL/36wA/+CwCv/gsQ7/4bEN/9+w + Bf/frAD/4LQX/+rTg//49/H/+/7///r6+P/6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r7+//59/L/9fDh//v9 + /f/8////+/z9//r6+P/6+ff/+vn4//r6+f/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vn/+vn5//n59//6+vb/+vn3//v7/P/7/f//+/7///f18v/w4rj/58Zd/+CxEf/fqwD/4K8I/+Cx + EP/gsAz/4K4E/9+rAP/hsxn/6M51//Xv3//8/v//+/v7//r59//6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+Pj3/+jRhf/lwlT/7tyh//fz6f/6/f//+/7///z+///7/P7/+vr6//r6+f/6+vj/+vn4//r5 + 9//6+ff/+vn4//r6+f/6+vn/+/v7//v8/v/8/v//+/7///v9///39e//8ea9/+nOd//iuC7/4KwE/9+r + AP/grgj/4bAP/+GvB//grAD/36sA/+GzHf/qz3r/9fDf//v+///7/P3/+vn3//r6+f/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr5//v7+//6+vr/7NiX/+GyG//gsBL/58NQ/+3Zmf/y6Mf/9vLn//n5 + +v/6+/7/+fz///v9///7/v//+/3///r9///6+///+fr9//j39v/17+D/8uW9/+3Ylf/nxlz/47gs/+Ct + Bf/fqgD/4awC/+KwC//hrwn/4KwC/9+qAP/frwz/471H/+vYnv/18eX/+/7///v8/f/6+ff/+vr4//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vj/+vr6//z////49u7/7NWL/+Ky + Gf/epgD/36gC/+KyGP/kujb/5sJR/+fHY//pzHP/6c95/+rOdv/oym3/58VZ/+S+RP/juC//4bId/9+s + Bf/fqgD/4KoA/+GrAf/hrQb/4awD/+CpAP/gqQD/4K0G/+O4MP/ozXv/8ejO//j5/P/8/v//+/z9//r5 + 9//6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fr5//r6 + +f/5+fb/+/z7//v+///39vH/7d2o/+bEVf/isRb/4KcA/9+kAP/fpAD/36UA/9+lAP/gpgD/4KcA/+Cn + AP/gqAD/4KkA/+GpAP/gqgD/4KkA/+CoAP/gqAD/4KsH/+GzIP/mwEr/7NSJ//Lnxf/49vP/+/7///z9 + ///7+vn/+vn2//r6+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/5+ff/+/v8//v+///6/P//9vHn//Hitf/r04r/58RZ/+S8 + Pf/ktyv/4rEb/+GwGP/isBf/4rAW/+GxGv/itSn/47k2/+bBS//py3D/7dmZ//HlwP/38+n/+vv9//v/ + ///7/f//+/v8//r59//6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+ff/+vr4//v8 + /f/7/v//+/7///r9///4+fn/+PTs//Xv3v/179z/9u/b//bv2//18N//9/Ps//j49//6/P7//P7///v+ + ///7/v//+/v9//r6+f/6+ff/+vn4//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/5+fj/+fn2//r59v/5+vj/+/r6//r7/P/7/f//+/3///v8///7/f//+/3///r8 + /P/6+/r/+vr4//r59//6+fb/+fn3//r6+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+vn/+vr4//r6 + +P/6+fj/+vn4//r5+f/6+vn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmChart.Designer.cs b/SYS.FormUI/AppFunction/FrmChart.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..f428a65bd1911714807ddd6ae019fed41730a679 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChart.Designer.cs @@ -0,0 +1,120 @@ +namespace SYS.FormUI +{ + partial class FrmChart + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); + System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChart)); + this.timer1 = new System.Windows.Forms.Timer(this.components); + this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit(); + this.SuspendLayout(); + // + // timer1 + // + this.timer1.Enabled = true; + this.timer1.Interval = 1000; + this.timer1.Tick += new System.EventHandler(this.timer1_Tick); + // + // chart1 + // + this.chart1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + chartArea1.AxisX.TitleFont = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + chartArea1.AxisX.TitleForeColor = System.Drawing.Color.SkyBlue; + chartArea1.AxisY.TitleFont = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + chartArea1.AxisY.TitleForeColor = System.Drawing.Color.Red; + chartArea1.BorderColor = System.Drawing.Color.White; + chartArea1.BorderWidth = 3; + chartArea1.Name = "ChartArea1"; + this.chart1.ChartAreas.Add(chartArea1); + legend1.Name = "总销售额"; + this.chart1.Legends.Add(legend1); + this.chart1.Location = new System.Drawing.Point(12, 52); + this.chart1.Name = "chart1"; + this.chart1.Size = new System.Drawing.Size(981, 531); + this.chart1.TabIndex = 3; + this.chart1.Text = "chart1"; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.BackColor = System.Drawing.Color.Transparent; + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.ForeColor = System.Drawing.Color.Red; + this.label1.Location = new System.Drawing.Point(662, 590); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(143, 24); + this.label1.TabIndex = 4; + this.label1.Text = "以上数据截止:"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.BackColor = System.Drawing.Color.Transparent; + this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.ForeColor = System.Drawing.Color.Red; + this.label2.Location = new System.Drawing.Point(800, 590); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(0, 24); + this.label2.TabIndex = 5; + // + // FrmChart + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.label2); + this.Controls.Add(this.label1); + this.Controls.Add(this.chart1); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmChart"; + this.ShowIcon = true; + this.Text = "酒店盈利情况"; + this.Load += new System.EventHandler(this.FrmChart_Load); + ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.Timer timer1; + private System.Windows.Forms.DataVisualization.Charting.Chart chart1; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmChart.cs b/SYS.FormUI/AppFunction/FrmChart.cs new file mode 100644 index 0000000000000000000000000000000000000000..a0b4e439a9c39165a62c68c19f0cf45b2dd34b3e --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChart.cs @@ -0,0 +1,82 @@ +using System; +using System.Collections.Generic; +using System.Windows.Forms; +using Sunny.UI; +using SYS.Application; +using SYS.Core; + +namespace SYS.FormUI +{ + public partial class FrmChart : UIForm + { + public FrmChart() + { + InitializeComponent(); + } + + private void FrmChart_Load(object sender, EventArgs e) + { + System.Windows.Forms.DataVisualization.Charting.Series series = new System.Windows.Forms.DataVisualization.Charting.Series("商品销售额(/元)"); + series.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Column; + series.BorderWidth = 2; + series.ShadowOffset = 2; + series.IsValueShownAsLabel = true; + var custo = new CustoService().SelectAllMoney(); + for (int i = 0; i < custo.Count; i++) + { + series.Points.AddXY(Convert.ToDouble(custo[0].Years.ToString()), Convert.ToDouble(Convert.ToDouble(custo[0].Money.ToString()))); + series.Points.AddXY(Convert.ToDouble(custo[1].Years.ToString()), Convert.ToDouble(Convert.ToDouble(custo[1].Money.ToString()))); + series.Points.AddXY(Convert.ToDouble(custo[2].Years.ToString()), Convert.ToDouble(Convert.ToDouble(custo[2].Money.ToString()))); + + } + chart1.Series.Add(series); + + } + + private void AddSeries(string name, string legendText) + { + System.Windows.Forms.DataVisualization.Charting.Series s1 = new System.Windows.Forms.DataVisualization.Charting.Series(); + s1.Name = name; + s1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Column; + s1.LegendText = legendText; + this.chart1.Series.Add(s1); + } + + + + + + private void button3_Click(object sender, EventArgs e) + { + + } + //画扇形图 + private void button4_Click(object sender, EventArgs e) + { + + } + + + //画曲线图 + private void button5_Click(object sender, EventArgs e) + { + + } + + private void button3_Click_1(object sender, EventArgs e) + { + + } + + private void timer1_Tick(object sender, EventArgs e) + { + label2.Text = DateTime.Now.ToString(); + } + + private void chart1_Click(object sender, EventArgs e) + { + + } + } + +} diff --git a/SYS.FormUI/AppFunction/FrmChart.resx b/SYS.FormUI/AppFunction/FrmChart.resx new file mode 100644 index 0000000000000000000000000000000000000000..e777850cb3a014fb3ac16e3f3dfe86d112e31c6b --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmChart.resx @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + + + AAABAAEAICAAAAEAGAAGAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABm0lEQVRYR+2WPUsD + QRiE06uNjZWCYGlhFwgK/gR/g4W2lnamVrC3sk8TK0EQ7ATBUrCSYGEt2NkkPrNOLtHsYXK3d4g4MOy+ + 835NvjwbeRgMBttVsd/vL3hNHBScUVgl7r0qDgwcu7AyeFX98P5faEBvO7ypguxre02+AeuVQCa8ZioD + 0Z9OQbbhbAYcJgHj6jVA+wYc/7zTGEDe+cyOhn8HSw7gq4p0l6Z6x8UN0NyEb05r2K5TAcQt2HVa+Wen + yhugcRU+OtXxqYFbHPPwkHt41QL3fbcGIBU3QNMcvJbG+WTtyvELvNRd4H4Bl0PjGEiVMjD+QFqxtgjv + rGnwO8deaIiAXCkDwwfSpqUA9DX4ALtw3XIU9Jb/Es4CFp3DHmwpZlztBvR3Xwg/V50KChmg6QjqFS1Z + +hGpDXwZNg1qM0DuBDYdZqjFALGechras5ShVgOCpQz/Bv6eAQ+cMDDMWcrwvUcnLGYgBRgXM6DHesfh + CCoUHCYB4yYM5EKFVWEqAxTduj45mH3qNfmgTv9i6RuenF4RQaPxAf/HhC/sVoa3AAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCheckIn.Designer.cs b/SYS.FormUI/AppFunction/FrmCheckIn.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..9f6912c9eb211e81df8421e6d64be68036e14494 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCheckIn.Designer.cs @@ -0,0 +1,416 @@ +namespace SYS.FormUI +{ + partial class FrmCheckIn + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmCheckIn)); + this.btnCheckIn = new Sunny.UI.UIButton(); + this.btnClose = new Sunny.UI.UIButton(); + this.txtRoomPosition = new Sunny.UI.UITextBox(); + this.label3 = new System.Windows.Forms.Label(); + this.txtType = new Sunny.UI.UIComboBox(); + this.txtRoomNo = new Sunny.UI.UITextBox(); + this.txtState = new Sunny.UI.UITextBox(); + this.txtMoney = new Sunny.UI.UITextBox(); + this.label13 = new System.Windows.Forms.Label(); + this.label15 = new System.Windows.Forms.Label(); + this.label19 = new System.Windows.Forms.Label(); + this.label20 = new System.Windows.Forms.Label(); + this.txtCustoNo = new Sunny.UI.UITextBox(); + this.txtCustoName = new Sunny.UI.UITextBox(); + this.label18 = new System.Windows.Forms.Label(); + this.label16 = new System.Windows.Forms.Label(); + this.txtCustoTel = new Sunny.UI.UITextBox(); + this.label14 = new System.Windows.Forms.Label(); + this.txtCustoType = new Sunny.UI.UITextBox(); + this.label12 = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // btnCheckIn + // + this.btnCheckIn.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnCheckIn.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnCheckIn.Location = new System.Drawing.Point(220, 320); + this.btnCheckIn.MinimumSize = new System.Drawing.Size(1, 1); + this.btnCheckIn.Name = "btnCheckIn"; + this.btnCheckIn.Radius = 30; + this.btnCheckIn.Size = new System.Drawing.Size(137, 46); + this.btnCheckIn.Style = Sunny.UI.UIStyle.Custom; + this.btnCheckIn.TabIndex = 139; + this.btnCheckIn.Text = "入 住"; + this.btnCheckIn.Click += new System.EventHandler(this.btnCheckIn_Click); + // + // btnClose + // + this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnClose.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnClose.Location = new System.Drawing.Point(515, 320); + this.btnClose.MinimumSize = new System.Drawing.Size(1, 1); + this.btnClose.Name = "btnClose"; + this.btnClose.Radius = 30; + this.btnClose.Size = new System.Drawing.Size(137, 46); + this.btnClose.Style = Sunny.UI.UIStyle.Custom; + this.btnClose.TabIndex = 140; + this.btnClose.Text = "关 闭"; + this.btnClose.Click += new System.EventHandler(this.btnClose_Click); + // + // txtRoomPosition + // + this.txtRoomPosition.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtRoomPosition.FillColor = System.Drawing.Color.White; + this.txtRoomPosition.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtRoomPosition.Location = new System.Drawing.Point(170, 156); + this.txtRoomPosition.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtRoomPosition.Maximum = 2147483647D; + this.txtRoomPosition.Minimum = -2147483648D; + this.txtRoomPosition.MinimumSize = new System.Drawing.Size(1, 1); + this.txtRoomPosition.Name = "txtRoomPosition"; + this.txtRoomPosition.Padding = new System.Windows.Forms.Padding(5); + this.txtRoomPosition.Radius = 20; + this.txtRoomPosition.ReadOnly = true; + this.txtRoomPosition.Size = new System.Drawing.Size(628, 35); + this.txtRoomPosition.Style = Sunny.UI.UIStyle.Custom; + this.txtRoomPosition.StyleCustomMode = true; + this.txtRoomPosition.TabIndex = 150; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(63, 161); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(88, 25); + this.label3.TabIndex = 149; + this.label3.Text = "房间位置"; + // + // txtType + // + this.txtType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.txtType.FillColor = System.Drawing.Color.White; + this.txtType.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.txtType.Location = new System.Drawing.Point(547, 48); + this.txtType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtType.MinimumSize = new System.Drawing.Size(63, 0); + this.txtType.Name = "txtType"; + this.txtType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.txtType.Radius = 20; + this.txtType.Size = new System.Drawing.Size(250, 35); + this.txtType.Style = Sunny.UI.UIStyle.Custom; + this.txtType.TabIndex = 148; + this.txtType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.txtType.Watermark = ""; + // + // txtRoomNo + // + this.txtRoomNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtRoomNo.FillColor = System.Drawing.Color.White; + this.txtRoomNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtRoomNo.Location = new System.Drawing.Point(171, 48); + this.txtRoomNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtRoomNo.Maximum = 2147483647D; + this.txtRoomNo.Minimum = -2147483648D; + this.txtRoomNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtRoomNo.Name = "txtRoomNo"; + this.txtRoomNo.Padding = new System.Windows.Forms.Padding(5); + this.txtRoomNo.Radius = 20; + this.txtRoomNo.ReadOnly = true; + this.txtRoomNo.Size = new System.Drawing.Size(250, 35); + this.txtRoomNo.Style = Sunny.UI.UIStyle.Custom; + this.txtRoomNo.StyleCustomMode = true; + this.txtRoomNo.TabIndex = 147; + // + // txtState + // + this.txtState.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtState.FillColor = System.Drawing.Color.White; + this.txtState.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtState.Location = new System.Drawing.Point(171, 103); + this.txtState.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtState.Maximum = 2147483647D; + this.txtState.Minimum = -2147483648D; + this.txtState.MinimumSize = new System.Drawing.Size(1, 1); + this.txtState.Name = "txtState"; + this.txtState.Padding = new System.Windows.Forms.Padding(5); + this.txtState.Radius = 20; + this.txtState.ReadOnly = true; + this.txtState.Size = new System.Drawing.Size(250, 35); + this.txtState.Style = Sunny.UI.UIStyle.Custom; + this.txtState.StyleCustomMode = true; + this.txtState.TabIndex = 146; + // + // txtMoney + // + this.txtMoney.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtMoney.FillColor = System.Drawing.Color.White; + this.txtMoney.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtMoney.Location = new System.Drawing.Point(547, 104); + this.txtMoney.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtMoney.Maximum = 2147483647D; + this.txtMoney.Minimum = -2147483648D; + this.txtMoney.MinimumSize = new System.Drawing.Size(1, 1); + this.txtMoney.Name = "txtMoney"; + this.txtMoney.Padding = new System.Windows.Forms.Padding(5); + this.txtMoney.Radius = 20; + this.txtMoney.ReadOnly = true; + this.txtMoney.Size = new System.Drawing.Size(250, 35); + this.txtMoney.Style = Sunny.UI.UIStyle.Custom; + this.txtMoney.StyleCustomMode = true; + this.txtMoney.TabIndex = 145; + // + // label13 + // + this.label13.AutoSize = true; + this.label13.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label13.Location = new System.Drawing.Point(443, 107); + this.label13.Name = "label13"; + this.label13.Size = new System.Drawing.Size(88, 25); + this.label13.TabIndex = 144; + this.label13.Text = "房间单价"; + // + // label15 + // + this.label15.AutoSize = true; + this.label15.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label15.Location = new System.Drawing.Point(443, 55); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(88, 25); + this.label15.TabIndex = 143; + this.label15.Text = "房间类型"; + // + // label19 + // + this.label19.AutoSize = true; + this.label19.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label19.Location = new System.Drawing.Point(64, 107); + this.label19.Name = "label19"; + this.label19.Size = new System.Drawing.Size(88, 25); + this.label19.TabIndex = 142; + this.label19.Text = "房间状态"; + // + // label20 + // + this.label20.AutoSize = true; + this.label20.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label20.Location = new System.Drawing.Point(64, 55); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(88, 25); + this.label20.TabIndex = 141; + this.label20.Text = "房间编号"; + // + // txtCustoNo + // + this.txtCustoNo.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.txtCustoNo.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource; + this.txtCustoNo.BackColor = System.Drawing.Color.Transparent; + this.txtCustoNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoNo.FillColor = System.Drawing.Color.White; + this.txtCustoNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoNo.Location = new System.Drawing.Point(170, 211); + this.txtCustoNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoNo.Maximum = 2147483647D; + this.txtCustoNo.Minimum = -2147483648D; + this.txtCustoNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoNo.Name = "txtCustoNo"; + this.txtCustoNo.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoNo.Radius = 20; + this.txtCustoNo.Size = new System.Drawing.Size(250, 35); + this.txtCustoNo.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoNo.StyleCustomMode = true; + this.txtCustoNo.TabIndex = 143; + // + // txtCustoName + // + this.txtCustoName.BackColor = System.Drawing.Color.Transparent; + this.txtCustoName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoName.FillColor = System.Drawing.Color.White; + this.txtCustoName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoName.Location = new System.Drawing.Point(546, 211); + this.txtCustoName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoName.Maximum = 2147483647D; + this.txtCustoName.Minimum = -2147483648D; + this.txtCustoName.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoName.Name = "txtCustoName"; + this.txtCustoName.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoName.Radius = 20; + this.txtCustoName.ReadOnly = true; + this.txtCustoName.Size = new System.Drawing.Size(250, 35); + this.txtCustoName.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoName.StyleCustomMode = true; + this.txtCustoName.TabIndex = 144; + // + // label18 + // + this.label18.AutoSize = true; + this.label18.BackColor = System.Drawing.Color.Transparent; + this.label18.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label18.Location = new System.Drawing.Point(63, 218); + this.label18.Name = "label18"; + this.label18.Size = new System.Drawing.Size(88, 25); + this.label18.TabIndex = 137; + this.label18.Text = "客户编号"; + // + // label16 + // + this.label16.AutoSize = true; + this.label16.BackColor = System.Drawing.Color.Transparent; + this.label16.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label16.Location = new System.Drawing.Point(63, 270); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(88, 25); + this.label16.TabIndex = 138; + this.label16.Text = "客户电话"; + // + // txtCustoTel + // + this.txtCustoTel.BackColor = System.Drawing.Color.Transparent; + this.txtCustoTel.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoTel.FillColor = System.Drawing.Color.White; + this.txtCustoTel.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoTel.Location = new System.Drawing.Point(170, 266); + this.txtCustoTel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoTel.Maximum = 2147483647D; + this.txtCustoTel.Minimum = -2147483648D; + this.txtCustoTel.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoTel.Name = "txtCustoTel"; + this.txtCustoTel.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoTel.Radius = 20; + this.txtCustoTel.ReadOnly = true; + this.txtCustoTel.Size = new System.Drawing.Size(250, 35); + this.txtCustoTel.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoTel.StyleCustomMode = true; + this.txtCustoTel.TabIndex = 142; + // + // label14 + // + this.label14.AutoSize = true; + this.label14.BackColor = System.Drawing.Color.Transparent; + this.label14.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label14.Location = new System.Drawing.Point(442, 218); + this.label14.Name = "label14"; + this.label14.Size = new System.Drawing.Size(88, 25); + this.label14.TabIndex = 139; + this.label14.Text = "客户姓名"; + // + // txtCustoType + // + this.txtCustoType.BackColor = System.Drawing.Color.Transparent; + this.txtCustoType.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoType.FillColor = System.Drawing.Color.White; + this.txtCustoType.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoType.Location = new System.Drawing.Point(546, 267); + this.txtCustoType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoType.Maximum = 2147483647D; + this.txtCustoType.Minimum = -2147483648D; + this.txtCustoType.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoType.Name = "txtCustoType"; + this.txtCustoType.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoType.Radius = 20; + this.txtCustoType.ReadOnly = true; + this.txtCustoType.Size = new System.Drawing.Size(250, 35); + this.txtCustoType.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoType.StyleCustomMode = true; + this.txtCustoType.TabIndex = 141; + // + // label12 + // + this.label12.AutoSize = true; + this.label12.BackColor = System.Drawing.Color.Transparent; + this.label12.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label12.Location = new System.Drawing.Point(442, 270); + this.label12.Name = "label12"; + this.label12.Size = new System.Drawing.Size(88, 25); + this.label12.TabIndex = 140; + this.label12.Text = "会员等级"; + // + // FrmCheckIn + // + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(861, 382); + this.ControlBox = false; + this.Controls.Add(this.txtCustoNo); + this.Controls.Add(this.txtCustoName); + this.Controls.Add(this.txtRoomPosition); + this.Controls.Add(this.label18); + this.Controls.Add(this.label3); + this.Controls.Add(this.label16); + this.Controls.Add(this.txtType); + this.Controls.Add(this.txtCustoTel); + this.Controls.Add(this.txtRoomNo); + this.Controls.Add(this.label14); + this.Controls.Add(this.txtState); + this.Controls.Add(this.txtCustoType); + this.Controls.Add(this.txtMoney); + this.Controls.Add(this.label12); + this.Controls.Add(this.label13); + this.Controls.Add(this.label15); + this.Controls.Add(this.label19); + this.Controls.Add(this.label20); + this.Controls.Add(this.btnClose); + this.Controls.Add(this.btnCheckIn); + this.EscClose = false; + this.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.IsForbidAltF4 = true; + this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmCheckIn"; + this.ShowIcon = true; + this.Style = Sunny.UI.UIStyle.Custom; + this.Text = "房间入住CheckIn Room"; + this.Load += new System.EventHandler(this.FrmCheckIn_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private Sunny.UI.UIButton btnCheckIn; + private Sunny.UI.UIButton btnClose; + private Sunny.UI.UITextBox txtRoomPosition; + private System.Windows.Forms.Label label3; + private Sunny.UI.UIComboBox txtType; + private Sunny.UI.UITextBox txtRoomNo; + private Sunny.UI.UITextBox txtState; + private Sunny.UI.UITextBox txtMoney; + private System.Windows.Forms.Label label13; + private System.Windows.Forms.Label label15; + private System.Windows.Forms.Label label19; + private System.Windows.Forms.Label label20; + private Sunny.UI.UITextBox txtCustoNo; + private Sunny.UI.UITextBox txtCustoName; + private System.Windows.Forms.Label label18; + private System.Windows.Forms.Label label16; + private Sunny.UI.UITextBox txtCustoTel; + private System.Windows.Forms.Label label14; + private Sunny.UI.UITextBox txtCustoType; + private System.Windows.Forms.Label label12; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCheckIn.cs b/SYS.FormUI/AppFunction/FrmCheckIn.cs new file mode 100644 index 0000000000000000000000000000000000000000..519e9725c2fcc5b087ab53a363bc42308fa78af4 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCheckIn.cs @@ -0,0 +1,155 @@ +using System; +using System.Collections.Generic; +using System.Windows.Forms; +using SYS.Core; +using Sunny.UI; +using SYS.Application; +using System.Transactions; + +namespace SYS.FormUI +{ + public partial class FrmCheckIn : UIForm + { + public FrmCheckIn() + { + InitializeComponent(); + } + + #region 窗体加载事件方法 + private void FrmCheckIn_Load(object sender, EventArgs e) + { + foreach (Control item in this.Controls) + { + item.Font = UI_FontUtil.controlFont; + } + txtRoomNo.Text = ucRoomList.rm_RoomNo; + Room r = new RoomService().SelectRoomByRoomNo(txtRoomNo.Text); + RoomType t = new RoomTypeService().SelectRoomTypeByRoomNo(txtRoomNo.Text); + txtType.Text = t.RoomName; + txtMoney.Text = r.RoomMoney.ToString(); + txtRoomPosition.Text = r.RoomPosition; + txtState.Text = r.RoomState; + List ctos = new CustoService().SelectCustoAll(); + List roms = new RoomService().SelectCanUseRoomAll(); + for (int i = 0; i < roms.Count; i++) + { + txtRoomNo.AutoCompleteCustomSource.Add(roms[i].RoomNo); + } + for (int j = 0; j < ctos.Count; j++) + { + txtCustoNo.AutoCompleteCustomSource.Add(ctos[j].CustoNo); + } + try + { + txtCustoNo.Text = ""; + } + catch + { + txtCustoNo.Text = ucRoomList.rm_CustoNo; + } + + } + #endregion + + + + #region 关闭窗口 + private void btnClose_Click(object sender, EventArgs e) + { + this.Close(); + } + #endregion + + #region 验证输入完整性 + /// + /// 验证输入完整性 + /// + private bool CheckInupt() + { + if (txtCustoNo.Text == "") + { + MessageBox.Show("请输入客户编号!", "来自小T的提示"); + txtCustoNo.Focus(); + return false; + } + + return true; + } + #endregion + + #region 入住按钮点击事件方法 + private void btnCheckIn_Click(object sender, EventArgs e) + { + if (CheckInupt()) + { + if (new CustoService().SelectCardInfoByCustoNo(txtCustoNo.Text) != null) + { + using (TransactionScope scope = new TransactionScope()) + { + Room r = new Room() + { + CheckTime = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")), + CustoNo = txtCustoNo.Text, + RoomStateId = 1, + RoomNo = txtRoomNo.Text, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now, + }; + + bool n = new RoomService().UpdateRoomInfo(r); + if (n == true) + { + MessageBox.Show("登记入住成功!", "登记提示"); + txtCustoNo.Text = ""; + FrmRoomManager.Reload(); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "帮助" + r.CustoNo + "进行了入住操作!"; + o.OperationAccount = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName; + o.datains_usr = LoginInfo.WorkerNo; + o.datains_date = DateTime.Now; + #endregion + new OperationlogService().InsertOperationLog(o); + scope.Complete(); + this.Close(); + } + else + { + MessageBox.Show("登记入住失败!", "登记提示"); + } + } + } + else + { + MessageBox.Show("客户编号不存在!", "来自小T的提示"); + } + } + } + #endregion + + #region 客户编号输入框的值发生改变时候的事件方法 + private void txtCustoNo_TextChanged(object sender, EventArgs e) + { + + } + #endregion + + private void txtCustoNo_Validated(object sender, EventArgs e) + { + try + { + Custo c = new CustoService().SelectCardInfoByCustoNo(txtCustoNo.Text); + txtCustoName.Text = c.CustoName; + txtCustoTel.Text = c.CustoTel; + txtCustoType.Text = c.typeName; + } + catch + { + txtCustoName.Text = ""; + txtCustoTel.Text = ""; + txtCustoType.Text = ""; + } + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmCheckIn.resx b/SYS.FormUI/AppFunction/FrmCheckIn.resx new file mode 100644 index 0000000000000000000000000000000000000000..d13d94a246f57b3adee15abadd7b88dcb021db42 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCheckIn.resx @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGAB2AQAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABC0lEQVRYR+2XbQrC + MAyGdzRPoYIIQxFUGAhD8YdeyEt4s9a30EKJH0nToDg2GGO0yfs0SdOtacZLGAHv/cTiFso9T4vieNRd + fw+gSoNz7p7ipo5AjeGwALCaaWk0zCKAPN5CLuFwWQJhAgAns3wD4n0thTABCGIAaAnEVgJhBhDE4GxH + IDoOwhQgQvQEov8EwQJoejycXklTPr+DYAHyCTWdPkC9gvgmwEUFYJECrPKkTgFXxXQcYkdShIeqIiwB + gHhHxPecPVsDnIM0DkcrIr6R2JoAwMmc7JBWIh77hs33QHYYLaTipgDR2e+O45JV53NNakArbpYCTbNK + NiYRGP8LalKQ29bU0jBtH9KAtSbQ4k9IAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCheckInfo.Designer.cs b/SYS.FormUI/AppFunction/FrmCheckInfo.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..1899e2446af02ec0e36e0f662c7bd0013191d7a3 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCheckInfo.Designer.cs @@ -0,0 +1,134 @@ +namespace SYS.FormUI +{ + partial class FrmCheckInfo + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + this.dgvCheckInfo = new System.Windows.Forms.DataGridView(); + this.clCheckNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCheckClub = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCheckProgres = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCheckCash = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCheckScore = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCheckPerson = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCheckAdvice = new System.Windows.Forms.DataGridViewTextBoxColumn(); + ((System.ComponentModel.ISupportInitialize)(this.dgvCheckInfo)).BeginInit(); + this.SuspendLayout(); + // + // dgvCheckInfo + // + this.dgvCheckInfo.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvCheckInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvCheckInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.dgvCheckInfo.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.clCheckNo, + this.clCheckClub, + this.clCheckProgres, + this.clCheckCash, + this.clCheckScore, + this.clCheckPerson, + this.clCheckAdvice}); + this.dgvCheckInfo.Location = new System.Drawing.Point(12, 12); + this.dgvCheckInfo.Name = "dgvCheckInfo"; + dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.dgvCheckInfo.RowsDefaultCellStyle = dataGridViewCellStyle1; + this.dgvCheckInfo.RowTemplate.Height = 23; + this.dgvCheckInfo.Size = new System.Drawing.Size(970, 429); + this.dgvCheckInfo.TabIndex = 0; + // + // clCheckNo + // + this.clCheckNo.DataPropertyName = "CheckNo"; + this.clCheckNo.HeaderText = "监管编号"; + this.clCheckNo.Name = "clCheckNo"; + // + // clCheckClub + // + this.clCheckClub.DataPropertyName = "CheckClub"; + this.clCheckClub.HeaderText = "受监管部门"; + this.clCheckClub.Name = "clCheckClub"; + // + // clCheckProgres + // + this.clCheckProgres.DataPropertyName = "CheckProgres"; + this.clCheckProgres.HeaderText = "受监管概述"; + this.clCheckProgres.Name = "clCheckProgres"; + // + // clCheckCash + // + this.clCheckCash.DataPropertyName = "CheckCash"; + this.clCheckCash.HeaderText = "受监管交易情况"; + this.clCheckCash.Name = "clCheckCash"; + // + // clCheckScore + // + this.clCheckScore.DataPropertyName = "CheckScore"; + this.clCheckScore.HeaderText = "受监管部门得分"; + this.clCheckScore.Name = "clCheckScore"; + // + // clCheckPerson + // + this.clCheckPerson.DataPropertyName = "CheckPerson"; + this.clCheckPerson.HeaderText = "监管负责人"; + this.clCheckPerson.Name = "clCheckPerson"; + // + // clCheckAdvice + // + this.clCheckAdvice.DataPropertyName = "CheckAdvice"; + this.clCheckAdvice.HeaderText = "监管人建议"; + this.clCheckAdvice.Name = "clCheckAdvice"; + // + // FrmCheckInfo + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(994, 453); + this.Controls.Add(this.dgvCheckInfo); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Name = "FrmCheckInfo"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "监管统计情况"; + this.Load += new System.EventHandler(this.FrmCheckInfo_Load); + ((System.ComponentModel.ISupportInitialize)(this.dgvCheckInfo)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.DataGridView dgvCheckInfo; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckClub; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckProgres; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckCash; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckScore; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckPerson; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckAdvice; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCheckInfo.cs b/SYS.FormUI/AppFunction/FrmCheckInfo.cs new file mode 100644 index 0000000000000000000000000000000000000000..507f37a0dae816f4fb64bc3048eaa16d1513bcde --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCheckInfo.cs @@ -0,0 +1,20 @@ +using SYS.Application; +using System; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmCheckInfo : Form + { + public FrmCheckInfo() + { + InitializeComponent(); + } + + private void FrmCheckInfo_Load(object sender, EventArgs e) + { + dgvCheckInfo.AutoGenerateColumns = false; + dgvCheckInfo.DataSource = new CheckInfoService().SelectCheckInfoAll(); + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmCheckInfo.resx b/SYS.FormUI/AppFunction/FrmCheckInfo.resx new file mode 100644 index 0000000000000000000000000000000000000000..558ca6a52eec018ce8bf65ef6973e13a43491e0a --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCheckInfo.resx @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCheckList.Designer.cs b/SYS.FormUI/AppFunction/FrmCheckList.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..b440c15c90828c78c5588993637f43ac8969f579 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCheckList.Designer.cs @@ -0,0 +1,222 @@ +namespace SYS.FormUI +{ + partial class FrmCheckList + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmCheckList)); + this.dgvCheckInfo = new Sunny.UI.UIDataGridView(); + this.clCheckNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCheckClub = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCheckProgress = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCheckCash = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.CheckScore = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCheckPerson = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCheckAdvice = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + ((System.ComponentModel.ISupportInitialize)(this.dgvCheckInfo)).BeginInit(); + this.SuspendLayout(); + // + // dgvCheckInfo + // + this.dgvCheckInfo.AllowUserToAddRows = false; + this.dgvCheckInfo.AllowUserToDeleteRows = false; + this.dgvCheckInfo.AllowUserToResizeColumns = false; + this.dgvCheckInfo.AllowUserToResizeRows = false; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvCheckInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.dgvCheckInfo.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvCheckInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvCheckInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvCheckInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.dgvCheckInfo.ColumnHeadersHeight = 32; + this.dgvCheckInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvCheckInfo.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.clCheckNo, + this.clCheckClub, + this.clCheckProgress, + this.clCheckCash, + this.CheckScore, + this.clCheckPerson, + this.clCheckAdvice, + this.Column8, + this.Column9, + this.Column10, + this.Column11, + this.Column1}); + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); + dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvCheckInfo.DefaultCellStyle = dataGridViewCellStyle3; + this.dgvCheckInfo.EnableHeadersVisualStyles = false; + this.dgvCheckInfo.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvCheckInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvCheckInfo.Location = new System.Drawing.Point(3, 38); + this.dgvCheckInfo.Name = "dgvCheckInfo"; + this.dgvCheckInfo.RowHeadersVisible = false; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.White; + this.dgvCheckInfo.RowsDefaultCellStyle = dataGridViewCellStyle4; + this.dgvCheckInfo.RowTemplate.Height = 29; + this.dgvCheckInfo.SelectedIndex = -1; + this.dgvCheckInfo.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvCheckInfo.ShowGridLine = true; + this.dgvCheckInfo.Size = new System.Drawing.Size(999, 582); + this.dgvCheckInfo.TabIndex = 2; + // + // clCheckNo + // + this.clCheckNo.DataPropertyName = "CheckNo"; + this.clCheckNo.HeaderText = "监管统计编号"; + this.clCheckNo.Name = "clCheckNo"; + // + // clCheckClub + // + this.clCheckClub.DataPropertyName = "CheckClub"; + this.clCheckClub.HeaderText = "接受监管部门"; + this.clCheckClub.Name = "clCheckClub"; + // + // clCheckProgress + // + this.clCheckProgress.DataPropertyName = "CheckProgress"; + this.clCheckProgress.HeaderText = "总体情况概述"; + this.clCheckProgress.Name = "clCheckProgress"; + // + // clCheckCash + // + this.clCheckCash.DataPropertyName = "CheckCash"; + this.clCheckCash.HeaderText = "部门财务情况"; + this.clCheckCash.Name = "clCheckCash"; + // + // CheckScore + // + this.CheckScore.DataPropertyName = "CheckScore"; + this.CheckScore.HeaderText = "本次得分"; + this.CheckScore.Name = "CheckScore"; + // + // clCheckPerson + // + this.clCheckPerson.DataPropertyName = "CheckPerson"; + this.clCheckPerson.HeaderText = "本次监管负责人"; + this.clCheckPerson.Name = "clCheckPerson"; + // + // clCheckAdvice + // + this.clCheckAdvice.DataPropertyName = "CheckAdvice"; + this.clCheckAdvice.HeaderText = "监管结果建议"; + this.clCheckAdvice.Name = "clCheckAdvice"; + // + // Column8 + // + this.Column8.DataPropertyName = "delete_mk"; + this.Column8.HeaderText = "Column8"; + this.Column8.Name = "Column8"; + this.Column8.Visible = false; + // + // Column9 + // + this.Column9.DataPropertyName = "datains_usr"; + this.Column9.HeaderText = "Column9"; + this.Column9.Name = "Column9"; + this.Column9.Visible = false; + // + // Column10 + // + this.Column10.DataPropertyName = "datains_date"; + this.Column10.HeaderText = "Column10"; + this.Column10.Name = "Column10"; + this.Column10.Visible = false; + // + // Column11 + // + this.Column11.DataPropertyName = "datachg_usr"; + this.Column11.HeaderText = "Column11"; + this.Column11.Name = "Column11"; + this.Column11.Visible = false; + // + // Column1 + // + this.Column1.DataPropertyName = "datachg_date"; + this.Column1.HeaderText = "Column1"; + this.Column1.Name = "Column1"; + this.Column1.Visible = false; + // + // FrmCheckList + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.dgvCheckInfo); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmCheckList"; + this.ShowIcon = true; + this.Text = "监管统计信息"; + this.Load += new System.EventHandler(this.FrmCashList_Load); + ((System.ComponentModel.ISupportInitialize)(this.dgvCheckInfo)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private Sunny.UI.UIDataGridView dgvCheckInfo; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckClub; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckProgress; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckCash; + private System.Windows.Forms.DataGridViewTextBoxColumn CheckScore; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckPerson; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckAdvice; + private System.Windows.Forms.DataGridViewTextBoxColumn Column8; + private System.Windows.Forms.DataGridViewTextBoxColumn Column9; + private System.Windows.Forms.DataGridViewTextBoxColumn Column10; + private System.Windows.Forms.DataGridViewTextBoxColumn Column11; + private System.Windows.Forms.DataGridViewTextBoxColumn Column1; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCheckList.cs b/SYS.FormUI/AppFunction/FrmCheckList.cs new file mode 100644 index 0000000000000000000000000000000000000000..c18aa08ca8adf7691ceb926e63379c41ce88439e --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCheckList.cs @@ -0,0 +1,27 @@ +using Sunny.UI; +using SYS.Application; +using System; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmCheckList : UIForm + { + public FrmCheckList() + { + InitializeComponent(); + } + + + private void FrmCashList_Load(object sender, EventArgs e) + { + foreach (Control item in this.Controls) + { + item.Font = UI_FontUtil.mainFont; + } + + dgvCheckInfo.AutoGenerateColumns = false; + dgvCheckInfo.DataSource = new CheckInfoService().SelectCheckInfoAll(); + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmCheckList.resx b/SYS.FormUI/AppFunction/FrmCheckList.resx new file mode 100644 index 0000000000000000000000000000000000000000..e07a7f25259aaecd8517fdeb758899ce2ebfe310 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCheckList.resx @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAICAAAAEAGADDAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACWElEQVRYR+2XQUgU + YRiGl27dhYhAu0V0DUIP2tUQKqKCAquTSNCxju4tohCEBA+Vl/JmkJBHvVl6DkQv0i2K3Uvgcet5/31n + pt1Zx5nZWSjogZeZ//3e//s/d3XcrZWl1WpdR1voC3pge/Bw2Cn08leauiODg4PvoF0fmILaa3TG8eqg + 6Yia+5wA659Ib8MVdGBb/nf0DJ3z9nLQ6wS6RqM36EfoblivohFHNeBJNO9ygPUhWkSXHMsHGybQC7Tv + XjF4G+iGoymojaP3jsfgfUZz6OhhKE6hbe/pAH8H3XP0WMjeRp+8vQN8DTPlaALmpjMB1k20jK46Uhjt + dY+m2wZYbzqSIDMqolHblaGef55hOyGzWBGVDkD0LNllrrkfQFUPUFfeXLadSekBsOuuxz8t6znlzWAH + iGrC1t85AN4k+oieh1AXUR9dbSVkFaOasNVzAK6ZvxdZZxQegNvUYVz/D/BvD7AQtgH3M7YDrPWfco3S + fVs6bAhvHT21pdxp9JZa6umIP6PegvsF2wmY+qy358BXLsMu9Y16uad67+kslzqhMK2Q4H7Jdt+ol9uq + 77Tt3hBYcVbhW7ZLox5up34rto+G0AXU8B4Rv+9F0d52i3B4Q71dyob8zfa2Nmx86FJutMfbA6zvupQP + 9nQP8cSlY1HW2wKsZ10qBnu7h3iFxl1OoZoyjgdYP3a5HPToGELQ9AOX+EGje3sxrPUF5ZEj/UGjMbTq + 3jF4+gAbPyUj8N6h895eHTTVd8Oe3x2Ehyn9V5MbDtFLrq9depm/oXl00eUC1Gq/AYRGrw/yvI69AAAA + AElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCheckOutForm.Designer.cs b/SYS.FormUI/AppFunction/FrmCheckOutForm.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..8e7f90889e9a979371d13af7bf867a86ded0c4b5 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCheckOutForm.Designer.cs @@ -0,0 +1,1121 @@ +namespace SYS.FormUI +{ + partial class FrmCheckOutForm + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmCheckOutForm)); + this.lblVIPPrice = new System.Windows.Forms.Label(); + this.lable00 = new System.Windows.Forms.Label(); + this.lblVIP = new System.Windows.Forms.Label(); + this.label25 = new System.Windows.Forms.Label(); + this.lblChange = new System.Windows.Forms.Label(); + this.label21 = new System.Windows.Forms.Label(); + this.lblGetReceipts = new System.Windows.Forms.Label(); + this.txtReceipts = new System.Windows.Forms.TextBox(); + this.label18 = new System.Windows.Forms.Label(); + this.label17 = new System.Windows.Forms.Label(); + this.label15 = new System.Windows.Forms.Label(); + this.uiTabControlMenu1 = new Sunny.UI.UITabControlMenu(); + this.tpCheckOut = new System.Windows.Forms.TabPage(); + this.btnBalance = new Sunny.UI.UIButton(); + this.dgvSpendList = new Sunny.UI.UIDataGridView(); + this.lblDay = new System.Windows.Forms.Label(); + this.label29 = new System.Windows.Forms.Label(); + this.dtpCheckTime = new Sunny.UI.UITextBox(); + this.txtRoomNo = new Sunny.UI.UITextBox(); + this.label27 = new System.Windows.Forms.Label(); + this.label28 = new System.Windows.Forms.Label(); + this.CustoNo = new Sunny.UI.UITextBox(); + this.CustoName = new Sunny.UI.UITextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.label24 = new System.Windows.Forms.Label(); + this.tpCustoInfo = new System.Windows.Forms.TabPage(); + this.cboCustoType = new Sunny.UI.UIComboBox(); + this.cboPassportType = new Sunny.UI.UIComboBox(); + this.cboCustoSex = new Sunny.UI.UIComboBox(); + this.txtCustoNo = new Sunny.UI.UITextBox(); + this.txtCustoName = new Sunny.UI.UITextBox(); + this.txtPassportNum = new Sunny.UI.UITextBox(); + this.txtTel = new Sunny.UI.UITextBox(); + this.dtpBirth = new Sunny.UI.UIDatePicker(); + this.txtAddress = new Sunny.UI.UITextBox(); + this.label2 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); + this.label16 = new System.Windows.Forms.Label(); + this.label22 = new System.Windows.Forms.Label(); + this.label30 = new System.Windows.Forms.Label(); + this.label31 = new System.Windows.Forms.Label(); + this.label32 = new System.Windows.Forms.Label(); + this.tpWti = new System.Windows.Forms.TabPage(); + this.dgvWti = new Sunny.UI.UIDataGridView(); + this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clSpendNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clRoomNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCustoNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clStartTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clDealTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWater = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clElectric = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clMarkUser = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.uiTabControlMenu1.SuspendLayout(); + this.tpCheckOut.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dgvSpendList)).BeginInit(); + this.tpCustoInfo.SuspendLayout(); + this.tpWti.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dgvWti)).BeginInit(); + this.SuspendLayout(); + // + // lblVIPPrice + // + this.lblVIPPrice.AutoSize = true; + this.lblVIPPrice.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblVIPPrice.Location = new System.Drawing.Point(565, 379); + this.lblVIPPrice.Name = "lblVIPPrice"; + this.lblVIPPrice.Size = new System.Drawing.Size(40, 20); + this.lblVIPPrice.TabIndex = 28; + this.lblVIPPrice.Text = "0.00"; + // + // lable00 + // + this.lable00.AutoSize = true; + this.lable00.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lable00.Location = new System.Drawing.Point(472, 378); + this.lable00.Name = "lable00"; + this.lable00.Size = new System.Drawing.Size(89, 20); + this.lable00.TabIndex = 26; + this.lable00.Text = "折后金额:"; + // + // lblVIP + // + this.lblVIP.AutoSize = true; + this.lblVIP.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblVIP.Location = new System.Drawing.Point(565, 351); + this.lblVIP.Name = "lblVIP"; + this.lblVIP.Size = new System.Drawing.Size(73, 20); + this.lblVIP.TabIndex = 24; + this.lblVIP.Text = "不 打 折"; + // + // label25 + // + this.label25.AutoSize = true; + this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label25.Location = new System.Drawing.Point(472, 349); + this.label25.Name = "label25"; + this.label25.Size = new System.Drawing.Size(89, 20); + this.label25.TabIndex = 23; + this.label25.Text = "会员折扣:"; + // + // lblChange + // + this.lblChange.AutoSize = true; + this.lblChange.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblChange.Location = new System.Drawing.Point(564, 435); + this.lblChange.Name = "lblChange"; + this.lblChange.Size = new System.Drawing.Size(40, 20); + this.lblChange.TabIndex = 21; + this.lblChange.Text = "0.00"; + // + // label21 + // + this.label21.AutoSize = true; + this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label21.Location = new System.Drawing.Point(471, 436); + this.label21.Name = "label21"; + this.label21.Size = new System.Drawing.Size(89, 20); + this.label21.TabIndex = 20; + this.label21.Text = "找 零:"; + // + // lblGetReceipts + // + this.lblGetReceipts.AutoSize = true; + this.lblGetReceipts.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblGetReceipts.Location = new System.Drawing.Point(564, 407); + this.lblGetReceipts.Name = "lblGetReceipts"; + this.lblGetReceipts.Size = new System.Drawing.Size(40, 20); + this.lblGetReceipts.TabIndex = 19; + this.lblGetReceipts.Text = "0.00"; + // + // txtReceipts + // + this.txtReceipts.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txtReceipts.Location = new System.Drawing.Point(564, 317); + this.txtReceipts.MaxLength = 10; + this.txtReceipts.Name = "txtReceipts"; + this.txtReceipts.Size = new System.Drawing.Size(74, 26); + this.txtReceipts.TabIndex = 16; + this.txtReceipts.TextChanged += new System.EventHandler(this.txtReceipts_TextChanged); + // + // label18 + // + this.label18.AutoSize = true; + this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label18.Location = new System.Drawing.Point(471, 407); + this.label18.Name = "label18"; + this.label18.Size = new System.Drawing.Size(89, 20); + this.label18.TabIndex = 15; + this.label18.Text = "应收金额:"; + // + // label17 + // + this.label17.AutoSize = true; + this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label17.Location = new System.Drawing.Point(471, 320); + this.label17.Name = "label17"; + this.label17.Size = new System.Drawing.Size(89, 20); + this.label17.TabIndex = 14; + this.label17.Text = "实收金额:"; + // + // label15 + // + this.label15.AutoSize = true; + this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label15.ForeColor = System.Drawing.Color.Red; + this.label15.Location = new System.Drawing.Point(3, 514); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(253, 17); + this.label15.TabIndex = 11; + this.label15.Text = "Tips:请提醒客户不要忘记带齐行李哦~"; + // + // uiTabControlMenu1 + // + this.uiTabControlMenu1.Alignment = System.Windows.Forms.TabAlignment.Left; + this.uiTabControlMenu1.Controls.Add(this.tpCheckOut); + this.uiTabControlMenu1.Controls.Add(this.tpCustoInfo); + this.uiTabControlMenu1.Controls.Add(this.tpWti); + this.uiTabControlMenu1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed; + this.uiTabControlMenu1.Font = new System.Drawing.Font("微软雅黑", 12F); + this.uiTabControlMenu1.ItemSize = new System.Drawing.Size(40, 200); + this.uiTabControlMenu1.Location = new System.Drawing.Point(13, 49); + this.uiTabControlMenu1.MenuStyle = Sunny.UI.UIMenuStyle.Custom; + this.uiTabControlMenu1.Multiline = true; + this.uiTabControlMenu1.Name = "uiTabControlMenu1"; + this.uiTabControlMenu1.SelectedIndex = 0; + this.uiTabControlMenu1.Size = new System.Drawing.Size(863, 537); + this.uiTabControlMenu1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed; + this.uiTabControlMenu1.TabBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.uiTabControlMenu1.TabIndex = 13; + this.uiTabControlMenu1.TabSelectedColor = System.Drawing.Color.Snow; + // + // tpCheckOut + // + this.tpCheckOut.Controls.Add(this.btnBalance); + this.tpCheckOut.Controls.Add(this.lblVIPPrice); + this.tpCheckOut.Controls.Add(this.label15); + this.tpCheckOut.Controls.Add(this.dgvSpendList); + this.tpCheckOut.Controls.Add(this.lblDay); + this.tpCheckOut.Controls.Add(this.lable00); + this.tpCheckOut.Controls.Add(this.label29); + this.tpCheckOut.Controls.Add(this.lblVIP); + this.tpCheckOut.Controls.Add(this.dtpCheckTime); + this.tpCheckOut.Controls.Add(this.label25); + this.tpCheckOut.Controls.Add(this.txtRoomNo); + this.tpCheckOut.Controls.Add(this.label27); + this.tpCheckOut.Controls.Add(this.label28); + this.tpCheckOut.Controls.Add(this.lblChange); + this.tpCheckOut.Controls.Add(this.CustoNo); + this.tpCheckOut.Controls.Add(this.label21); + this.tpCheckOut.Controls.Add(this.CustoName); + this.tpCheckOut.Controls.Add(this.lblGetReceipts); + this.tpCheckOut.Controls.Add(this.label1); + this.tpCheckOut.Controls.Add(this.label24); + this.tpCheckOut.Controls.Add(this.label17); + this.tpCheckOut.Controls.Add(this.txtReceipts); + this.tpCheckOut.Controls.Add(this.label18); + this.tpCheckOut.Location = new System.Drawing.Point(201, 0); + this.tpCheckOut.Name = "tpCheckOut"; + this.tpCheckOut.Size = new System.Drawing.Size(662, 537); + this.tpCheckOut.TabIndex = 0; + this.tpCheckOut.Text = "退房结算"; + this.tpCheckOut.UseVisualStyleBackColor = true; + // + // btnBalance + // + this.btnBalance.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnBalance.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnBalance.Location = new System.Drawing.Point(476, 473); + this.btnBalance.MinimumSize = new System.Drawing.Size(1, 1); + this.btnBalance.Name = "btnBalance"; + this.btnBalance.Radius = 30; + this.btnBalance.Size = new System.Drawing.Size(162, 46); + this.btnBalance.Style = Sunny.UI.UIStyle.Custom; + this.btnBalance.TabIndex = 116; + this.btnBalance.Text = "结 算"; + this.btnBalance.Click += new System.EventHandler(this.btnBalance_Click); + // + // dgvSpendList + // + this.dgvSpendList.AllowUserToAddRows = false; + this.dgvSpendList.AllowUserToDeleteRows = false; + this.dgvSpendList.AllowUserToResizeColumns = false; + this.dgvSpendList.AllowUserToResizeRows = false; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvSpendList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.dgvSpendList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvSpendList.BackgroundColor = System.Drawing.Color.White; + this.dgvSpendList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvSpendList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.dgvSpendList.ColumnHeadersHeight = 32; + this.dgvSpendList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvSpendList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.dataGridViewTextBoxColumn1, + this.dataGridViewTextBoxColumn2, + this.dataGridViewTextBoxColumn3, + this.dataGridViewTextBoxColumn4, + this.dataGridViewTextBoxColumn5, + this.dataGridViewTextBoxColumn6, + this.dataGridViewTextBoxColumn7, + this.clSpendNo, + this.Column1, + this.Column2, + this.Column3, + this.Column4, + this.Column8}); + this.dgvSpendList.EnableHeadersVisualStyles = false; + this.dgvSpendList.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvSpendList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvSpendList.Location = new System.Drawing.Point(6, 102); + this.dgvSpendList.Name = "dgvSpendList"; + this.dgvSpendList.ReadOnly = true; + this.dgvSpendList.RowHeadersVisible = false; + dataGridViewCellStyle3.BackColor = System.Drawing.Color.White; + this.dgvSpendList.RowsDefaultCellStyle = dataGridViewCellStyle3; + this.dgvSpendList.RowTemplate.Height = 29; + this.dgvSpendList.SelectedIndex = -1; + this.dgvSpendList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvSpendList.ShowGridLine = true; + this.dgvSpendList.ShowRowErrors = false; + this.dgvSpendList.Size = new System.Drawing.Size(648, 202); + this.dgvSpendList.Style = Sunny.UI.UIStyle.Custom; + this.dgvSpendList.TabIndex = 115; + // + // lblDay + // + this.lblDay.AutoSize = true; + this.lblDay.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblDay.Location = new System.Drawing.Point(568, 65); + this.lblDay.Name = "lblDay"; + this.lblDay.Size = new System.Drawing.Size(45, 25); + this.lblDay.TabIndex = 114; + this.lblDay.Text = "Null"; + // + // label29 + // + this.label29.AutoSize = true; + this.label29.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label29.Location = new System.Drawing.Point(547, 13); + this.label29.Name = "label29"; + this.label29.Size = new System.Drawing.Size(88, 25); + this.label29.TabIndex = 113; + this.label29.Text = "已住天数"; + // + // dtpCheckTime + // + this.dtpCheckTime.Cursor = System.Windows.Forms.Cursors.IBeam; + this.dtpCheckTime.FillColor = System.Drawing.Color.White; + this.dtpCheckTime.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.dtpCheckTime.Location = new System.Drawing.Point(372, 7); + this.dtpCheckTime.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.dtpCheckTime.Maximum = 2147483647D; + this.dtpCheckTime.Minimum = -2147483648D; + this.dtpCheckTime.MinimumSize = new System.Drawing.Size(1, 1); + this.dtpCheckTime.Name = "dtpCheckTime"; + this.dtpCheckTime.Padding = new System.Windows.Forms.Padding(5); + this.dtpCheckTime.Radius = 20; + this.dtpCheckTime.ReadOnly = true; + this.dtpCheckTime.Size = new System.Drawing.Size(168, 35); + this.dtpCheckTime.Style = Sunny.UI.UIStyle.Custom; + this.dtpCheckTime.StyleCustomMode = true; + this.dtpCheckTime.TabIndex = 111; + // + // txtRoomNo + // + this.txtRoomNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtRoomNo.FillColor = System.Drawing.Color.White; + this.txtRoomNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtRoomNo.Location = new System.Drawing.Point(372, 59); + this.txtRoomNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtRoomNo.Maximum = 2147483647D; + this.txtRoomNo.Minimum = -2147483648D; + this.txtRoomNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtRoomNo.Name = "txtRoomNo"; + this.txtRoomNo.Padding = new System.Windows.Forms.Padding(5); + this.txtRoomNo.Radius = 20; + this.txtRoomNo.ReadOnly = true; + this.txtRoomNo.Size = new System.Drawing.Size(168, 35); + this.txtRoomNo.Style = Sunny.UI.UIStyle.Custom; + this.txtRoomNo.StyleCustomMode = true; + this.txtRoomNo.TabIndex = 112; + // + // label27 + // + this.label27.AutoSize = true; + this.label27.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label27.Location = new System.Drawing.Point(281, 65); + this.label27.Name = "label27"; + this.label27.Size = new System.Drawing.Size(88, 25); + this.label27.TabIndex = 110; + this.label27.Text = "房间编号"; + // + // label28 + // + this.label28.AutoSize = true; + this.label28.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label28.Location = new System.Drawing.Point(281, 13); + this.label28.Name = "label28"; + this.label28.Size = new System.Drawing.Size(88, 25); + this.label28.TabIndex = 109; + this.label28.Text = "入住时间"; + // + // CustoNo + // + this.CustoNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.CustoNo.FillColor = System.Drawing.Color.White; + this.CustoNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.CustoNo.Location = new System.Drawing.Point(113, 7); + this.CustoNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.CustoNo.Maximum = 2147483647D; + this.CustoNo.Minimum = -2147483648D; + this.CustoNo.MinimumSize = new System.Drawing.Size(1, 1); + this.CustoNo.Name = "CustoNo"; + this.CustoNo.Padding = new System.Windows.Forms.Padding(5); + this.CustoNo.Radius = 20; + this.CustoNo.ReadOnly = true; + this.CustoNo.Size = new System.Drawing.Size(144, 35); + this.CustoNo.Style = Sunny.UI.UIStyle.Custom; + this.CustoNo.StyleCustomMode = true; + this.CustoNo.TabIndex = 107; + // + // CustoName + // + this.CustoName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.CustoName.FillColor = System.Drawing.Color.White; + this.CustoName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.CustoName.Location = new System.Drawing.Point(113, 59); + this.CustoName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.CustoName.Maximum = 2147483647D; + this.CustoName.Minimum = -2147483648D; + this.CustoName.MinimumSize = new System.Drawing.Size(1, 1); + this.CustoName.Name = "CustoName"; + this.CustoName.Padding = new System.Windows.Forms.Padding(5); + this.CustoName.Radius = 20; + this.CustoName.ReadOnly = true; + this.CustoName.Size = new System.Drawing.Size(144, 35); + this.CustoName.Style = Sunny.UI.UIStyle.Custom; + this.CustoName.StyleCustomMode = true; + this.CustoName.TabIndex = 108; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(22, 65); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(88, 25); + this.label1.TabIndex = 106; + this.label1.Text = "客户姓名"; + // + // label24 + // + this.label24.AutoSize = true; + this.label24.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label24.Location = new System.Drawing.Point(22, 13); + this.label24.Name = "label24"; + this.label24.Size = new System.Drawing.Size(88, 25); + this.label24.TabIndex = 105; + this.label24.Text = "客户编号"; + // + // tpCustoInfo + // + this.tpCustoInfo.Controls.Add(this.cboCustoType); + this.tpCustoInfo.Controls.Add(this.cboPassportType); + this.tpCustoInfo.Controls.Add(this.cboCustoSex); + this.tpCustoInfo.Controls.Add(this.txtCustoNo); + this.tpCustoInfo.Controls.Add(this.txtCustoName); + this.tpCustoInfo.Controls.Add(this.txtPassportNum); + this.tpCustoInfo.Controls.Add(this.txtTel); + this.tpCustoInfo.Controls.Add(this.dtpBirth); + this.tpCustoInfo.Controls.Add(this.txtAddress); + this.tpCustoInfo.Controls.Add(this.label2); + this.tpCustoInfo.Controls.Add(this.label3); + this.tpCustoInfo.Controls.Add(this.label4); + this.tpCustoInfo.Controls.Add(this.label5); + this.tpCustoInfo.Controls.Add(this.label16); + this.tpCustoInfo.Controls.Add(this.label22); + this.tpCustoInfo.Controls.Add(this.label30); + this.tpCustoInfo.Controls.Add(this.label31); + this.tpCustoInfo.Controls.Add(this.label32); + this.tpCustoInfo.Location = new System.Drawing.Point(201, 0); + this.tpCustoInfo.Name = "tpCustoInfo"; + this.tpCustoInfo.Size = new System.Drawing.Size(662, 537); + this.tpCustoInfo.TabIndex = 1; + this.tpCustoInfo.Text = "客户信息"; + this.tpCustoInfo.UseVisualStyleBackColor = true; + // + // cboCustoType + // + this.cboCustoType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboCustoType.FillColor = System.Drawing.Color.White; + this.cboCustoType.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboCustoType.Location = new System.Drawing.Point(436, 8); + this.cboCustoType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboCustoType.MinimumSize = new System.Drawing.Size(63, 0); + this.cboCustoType.Name = "cboCustoType"; + this.cboCustoType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboCustoType.Radius = 20; + this.cboCustoType.ReadOnly = true; + this.cboCustoType.Size = new System.Drawing.Size(203, 35); + this.cboCustoType.Style = Sunny.UI.UIStyle.Custom; + this.cboCustoType.TabIndex = 125; + this.cboCustoType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cboCustoType.Watermark = ""; + // + // cboPassportType + // + this.cboPassportType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboPassportType.FillColor = System.Drawing.Color.White; + this.cboPassportType.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboPassportType.Location = new System.Drawing.Point(436, 59); + this.cboPassportType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboPassportType.MinimumSize = new System.Drawing.Size(63, 0); + this.cboPassportType.Name = "cboPassportType"; + this.cboPassportType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboPassportType.Radius = 20; + this.cboPassportType.ReadOnly = true; + this.cboPassportType.Size = new System.Drawing.Size(203, 35); + this.cboPassportType.Style = Sunny.UI.UIStyle.Custom; + this.cboPassportType.TabIndex = 124; + this.cboPassportType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // cboCustoSex + // + this.cboCustoSex.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboCustoSex.FillColor = System.Drawing.Color.White; + this.cboCustoSex.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboCustoSex.Location = new System.Drawing.Point(133, 113); + this.cboCustoSex.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboCustoSex.MinimumSize = new System.Drawing.Size(63, 0); + this.cboCustoSex.Name = "cboCustoSex"; + this.cboCustoSex.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboCustoSex.Radius = 20; + this.cboCustoSex.ReadOnly = true; + this.cboCustoSex.Size = new System.Drawing.Size(203, 35); + this.cboCustoSex.Style = Sunny.UI.UIStyle.Custom; + this.cboCustoSex.TabIndex = 123; + this.cboCustoSex.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // txtCustoNo + // + this.txtCustoNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoNo.FillColor = System.Drawing.Color.White; + this.txtCustoNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoNo.Location = new System.Drawing.Point(133, 9); + this.txtCustoNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoNo.Maximum = 2147483647D; + this.txtCustoNo.Minimum = -2147483648D; + this.txtCustoNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoNo.Name = "txtCustoNo"; + this.txtCustoNo.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoNo.Radius = 20; + this.txtCustoNo.ReadOnly = true; + this.txtCustoNo.Size = new System.Drawing.Size(203, 35); + this.txtCustoNo.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoNo.StyleCustomMode = true; + this.txtCustoNo.TabIndex = 122; + // + // txtCustoName + // + this.txtCustoName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoName.FillColor = System.Drawing.Color.White; + this.txtCustoName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoName.Location = new System.Drawing.Point(133, 61); + this.txtCustoName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoName.Maximum = 2147483647D; + this.txtCustoName.Minimum = -2147483648D; + this.txtCustoName.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoName.Name = "txtCustoName"; + this.txtCustoName.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoName.Radius = 20; + this.txtCustoName.ReadOnly = true; + this.txtCustoName.Size = new System.Drawing.Size(203, 35); + this.txtCustoName.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoName.StyleCustomMode = true; + this.txtCustoName.TabIndex = 121; + // + // txtPassportNum + // + this.txtPassportNum.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtPassportNum.FillColor = System.Drawing.Color.White; + this.txtPassportNum.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtPassportNum.Location = new System.Drawing.Point(436, 110); + this.txtPassportNum.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtPassportNum.Maximum = 2147483647D; + this.txtPassportNum.Minimum = -2147483648D; + this.txtPassportNum.MinimumSize = new System.Drawing.Size(1, 1); + this.txtPassportNum.Name = "txtPassportNum"; + this.txtPassportNum.Padding = new System.Windows.Forms.Padding(5); + this.txtPassportNum.Radius = 20; + this.txtPassportNum.ReadOnly = true; + this.txtPassportNum.Size = new System.Drawing.Size(203, 35); + this.txtPassportNum.Style = Sunny.UI.UIStyle.Custom; + this.txtPassportNum.StyleCustomMode = true; + this.txtPassportNum.TabIndex = 120; + // + // txtTel + // + this.txtTel.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtTel.FillColor = System.Drawing.Color.White; + this.txtTel.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtTel.Location = new System.Drawing.Point(436, 161); + this.txtTel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtTel.Maximum = 2147483647D; + this.txtTel.Minimum = -2147483648D; + this.txtTel.MinimumSize = new System.Drawing.Size(1, 1); + this.txtTel.Name = "txtTel"; + this.txtTel.Padding = new System.Windows.Forms.Padding(5); + this.txtTel.Radius = 20; + this.txtTel.ReadOnly = true; + this.txtTel.Size = new System.Drawing.Size(203, 35); + this.txtTel.Style = Sunny.UI.UIStyle.Custom; + this.txtTel.StyleCustomMode = true; + this.txtTel.TabIndex = 119; + // + // dtpBirth + // + this.dtpBirth.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.dtpBirth.FillColor = System.Drawing.Color.White; + this.dtpBirth.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); + this.dtpBirth.Location = new System.Drawing.Point(133, 165); + this.dtpBirth.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.dtpBirth.MaxLength = 10; + this.dtpBirth.MinimumSize = new System.Drawing.Size(63, 0); + this.dtpBirth.Name = "dtpBirth"; + this.dtpBirth.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.dtpBirth.Radius = 20; + this.dtpBirth.ReadOnly = true; + this.dtpBirth.Size = new System.Drawing.Size(203, 31); + this.dtpBirth.Style = Sunny.UI.UIStyle.Custom; + this.dtpBirth.SymbolDropDown = 61555; + this.dtpBirth.SymbolNormal = 61555; + this.dtpBirth.TabIndex = 118; + this.dtpBirth.Text = "2020-11-24"; + this.dtpBirth.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.dtpBirth.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); + // + // txtAddress + // + this.txtAddress.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtAddress.FillColor = System.Drawing.Color.White; + this.txtAddress.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtAddress.Location = new System.Drawing.Point(131, 213); + this.txtAddress.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtAddress.Maximum = 2147483647D; + this.txtAddress.Minimum = -2147483648D; + this.txtAddress.MinimumSize = new System.Drawing.Size(1, 1); + this.txtAddress.Name = "txtAddress"; + this.txtAddress.Padding = new System.Windows.Forms.Padding(5); + this.txtAddress.Radius = 20; + this.txtAddress.ReadOnly = true; + this.txtAddress.Size = new System.Drawing.Size(508, 35); + this.txtAddress.Style = Sunny.UI.UIStyle.Custom; + this.txtAddress.StyleCustomMode = true; + this.txtAddress.TabIndex = 117; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(24, 223); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(88, 25); + this.label2.TabIndex = 115; + this.label2.Text = "居住地址"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(343, 168); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(88, 25); + this.label3.TabIndex = 114; + this.label3.Text = "联系方式"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.Location = new System.Drawing.Point(343, 117); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(88, 25); + this.label4.TabIndex = 113; + this.label4.Text = "证件号码"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label5.Location = new System.Drawing.Point(343, 66); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(88, 25); + this.label5.TabIndex = 112; + this.label5.Text = "证件类型"; + // + // label16 + // + this.label16.AutoSize = true; + this.label16.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label16.Location = new System.Drawing.Point(343, 15); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(88, 25); + this.label16.TabIndex = 111; + this.label16.Text = "客户类型"; + // + // label22 + // + this.label22.AutoSize = true; + this.label22.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label22.Location = new System.Drawing.Point(26, 171); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(88, 25); + this.label22.TabIndex = 110; + this.label22.Text = "出生日期"; + // + // label30 + // + this.label30.AutoSize = true; + this.label30.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label30.Location = new System.Drawing.Point(26, 119); + this.label30.Name = "label30"; + this.label30.Size = new System.Drawing.Size(86, 25); + this.label30.TabIndex = 109; + this.label30.Text = "性 别"; + // + // label31 + // + this.label31.AutoSize = true; + this.label31.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label31.Location = new System.Drawing.Point(26, 67); + this.label31.Name = "label31"; + this.label31.Size = new System.Drawing.Size(88, 25); + this.label31.TabIndex = 108; + this.label31.Text = "客户姓名"; + // + // label32 + // + this.label32.AutoSize = true; + this.label32.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label32.Location = new System.Drawing.Point(26, 15); + this.label32.Name = "label32"; + this.label32.Size = new System.Drawing.Size(88, 25); + this.label32.TabIndex = 107; + this.label32.Text = "客户编号"; + // + // tpWti + // + this.tpWti.Controls.Add(this.dgvWti); + this.tpWti.Location = new System.Drawing.Point(201, 0); + this.tpWti.Name = "tpWti"; + this.tpWti.Size = new System.Drawing.Size(662, 537); + this.tpWti.TabIndex = 2; + this.tpWti.Text = "水电情况"; + this.tpWti.UseVisualStyleBackColor = true; + // + // dgvWti + // + this.dgvWti.AllowUserToAddRows = false; + this.dgvWti.AllowUserToDeleteRows = false; + this.dgvWti.AllowUserToResizeColumns = false; + this.dgvWti.AllowUserToResizeRows = false; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvWti.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle4; + this.dgvWti.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvWti.BackgroundColor = System.Drawing.Color.White; + this.dgvWti.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle5.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvWti.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle5; + this.dgvWti.ColumnHeadersHeight = 32; + this.dgvWti.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvWti.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.Column11, + this.clRoomNo, + this.clCustoNo, + this.clStartTime, + this.clDealTime, + this.clWater, + this.clElectric, + this.clMarkUser, + this.Column5, + this.Column6, + this.Column7, + this.Column9, + this.Column10}); + this.dgvWti.EnableHeadersVisualStyles = false; + this.dgvWti.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvWti.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvWti.Location = new System.Drawing.Point(3, 3); + this.dgvWti.Name = "dgvWti"; + this.dgvWti.RowHeadersVisible = false; + dataGridViewCellStyle6.BackColor = System.Drawing.Color.White; + this.dgvWti.RowsDefaultCellStyle = dataGridViewCellStyle6; + this.dgvWti.RowTemplate.Height = 29; + this.dgvWti.SelectedIndex = -1; + this.dgvWti.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvWti.ShowGridLine = true; + this.dgvWti.Size = new System.Drawing.Size(656, 291); + this.dgvWti.Style = Sunny.UI.UIStyle.Custom; + this.dgvWti.TabIndex = 0; + // + // dataGridViewTextBoxColumn1 + // + this.dataGridViewTextBoxColumn1.DataPropertyName = "RoomNo"; + this.dataGridViewTextBoxColumn1.FillWeight = 102.6831F; + this.dataGridViewTextBoxColumn1.HeaderText = "房号"; + this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1"; + this.dataGridViewTextBoxColumn1.ReadOnly = true; + // + // dataGridViewTextBoxColumn2 + // + this.dataGridViewTextBoxColumn2.DataPropertyName = "CustoNo"; + this.dataGridViewTextBoxColumn2.FillWeight = 102.6831F; + this.dataGridViewTextBoxColumn2.HeaderText = "客户编号"; + this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2"; + this.dataGridViewTextBoxColumn2.ReadOnly = true; + // + // dataGridViewTextBoxColumn3 + // + this.dataGridViewTextBoxColumn3.DataPropertyName = "SpendName"; + this.dataGridViewTextBoxColumn3.FillWeight = 102.6831F; + this.dataGridViewTextBoxColumn3.HeaderText = "商品"; + this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3"; + this.dataGridViewTextBoxColumn3.ReadOnly = true; + // + // dataGridViewTextBoxColumn4 + // + this.dataGridViewTextBoxColumn4.DataPropertyName = "SpendAmount"; + this.dataGridViewTextBoxColumn4.FillWeight = 60F; + this.dataGridViewTextBoxColumn4.HeaderText = "数量"; + this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4"; + this.dataGridViewTextBoxColumn4.ReadOnly = true; + // + // dataGridViewTextBoxColumn5 + // + this.dataGridViewTextBoxColumn5.DataPropertyName = "SpendPrice"; + this.dataGridViewTextBoxColumn5.FillWeight = 102.6831F; + this.dataGridViewTextBoxColumn5.HeaderText = "单价(元)"; + this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5"; + this.dataGridViewTextBoxColumn5.ReadOnly = true; + // + // dataGridViewTextBoxColumn6 + // + this.dataGridViewTextBoxColumn6.DataPropertyName = "SpendMoney"; + this.dataGridViewTextBoxColumn6.FillWeight = 102.6831F; + this.dataGridViewTextBoxColumn6.HeaderText = "总额"; + this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6"; + this.dataGridViewTextBoxColumn6.ReadOnly = true; + // + // dataGridViewTextBoxColumn7 + // + this.dataGridViewTextBoxColumn7.DataPropertyName = "SpendTime"; + this.dataGridViewTextBoxColumn7.FillWeight = 102.6831F; + this.dataGridViewTextBoxColumn7.HeaderText = "消费时间"; + this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7"; + this.dataGridViewTextBoxColumn7.ReadOnly = true; + // + // clSpendNo + // + this.clSpendNo.DataPropertyName = "delete_mk"; + this.clSpendNo.HeaderText = "Column1"; + this.clSpendNo.Name = "clSpendNo"; + this.clSpendNo.ReadOnly = true; + this.clSpendNo.Visible = false; + // + // Column1 + // + this.Column1.DataPropertyName = "datains_usr"; + this.Column1.HeaderText = "Column1"; + this.Column1.Name = "Column1"; + this.Column1.ReadOnly = true; + this.Column1.Visible = false; + // + // Column2 + // + this.Column2.DataPropertyName = "datains_date"; + this.Column2.HeaderText = "Column2"; + this.Column2.Name = "Column2"; + this.Column2.ReadOnly = true; + this.Column2.Visible = false; + // + // Column3 + // + this.Column3.DataPropertyName = "datachg_usr"; + this.Column3.HeaderText = "Column3"; + this.Column3.Name = "Column3"; + this.Column3.ReadOnly = true; + this.Column3.Visible = false; + // + // Column4 + // + this.Column4.DataPropertyName = "datachg_date"; + this.Column4.HeaderText = "Column4"; + this.Column4.Name = "Column4"; + this.Column4.ReadOnly = true; + this.Column4.Visible = false; + // + // Column8 + // + this.Column8.DataPropertyName = "MoneyState"; + this.Column8.HeaderText = "Column8"; + this.Column8.Name = "Column8"; + this.Column8.ReadOnly = true; + this.Column8.Visible = false; + // + // Column11 + // + this.Column11.DataPropertyName = "WtiNo"; + this.Column11.HeaderText = "Column11"; + this.Column11.Name = "Column11"; + this.Column11.Visible = false; + // + // clRoomNo + // + this.clRoomNo.DataPropertyName = "RoomNo"; + this.clRoomNo.HeaderText = "房间号"; + this.clRoomNo.Name = "clRoomNo"; + // + // clCustoNo + // + this.clCustoNo.DataPropertyName = "CustoNo"; + this.clCustoNo.HeaderText = "客户编号"; + this.clCustoNo.Name = "clCustoNo"; + // + // clStartTime + // + this.clStartTime.DataPropertyName = "UseDate"; + this.clStartTime.HeaderText = "开始时间"; + this.clStartTime.Name = "clStartTime"; + // + // clDealTime + // + this.clDealTime.DataPropertyName = "EndDate"; + this.clDealTime.HeaderText = "结束时间"; + this.clDealTime.Name = "clDealTime"; + // + // clWater + // + this.clWater.DataPropertyName = "WaterUse"; + this.clWater.HeaderText = "水费"; + this.clWater.Name = "clWater"; + // + // clElectric + // + this.clElectric.DataPropertyName = "PowerUse"; + this.clElectric.HeaderText = "电费"; + this.clElectric.Name = "clElectric"; + // + // clMarkUser + // + this.clMarkUser.DataPropertyName = "Record"; + this.clMarkUser.HeaderText = "记录员"; + this.clMarkUser.Name = "clMarkUser"; + // + // Column5 + // + this.Column5.DataPropertyName = "delete_mk"; + this.Column5.HeaderText = "Column5"; + this.Column5.Name = "Column5"; + this.Column5.Visible = false; + // + // Column6 + // + this.Column6.DataPropertyName = "datains_usr"; + this.Column6.HeaderText = "Column6"; + this.Column6.Name = "Column6"; + this.Column6.Visible = false; + // + // Column7 + // + this.Column7.DataPropertyName = "datains_date"; + this.Column7.HeaderText = "Column7"; + this.Column7.Name = "Column7"; + this.Column7.Visible = false; + // + // Column9 + // + this.Column9.DataPropertyName = "datachg_usr"; + this.Column9.HeaderText = "Column9"; + this.Column9.Name = "Column9"; + this.Column9.Visible = false; + // + // Column10 + // + this.Column10.DataPropertyName = "datachg_date"; + this.Column10.HeaderText = "Column10"; + this.Column10.Name = "Column10"; + this.Column10.Visible = false; + // + // FrmCheckOutForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(888, 603); + this.Controls.Add(this.uiTabControlMenu1); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmCheckOutForm"; + this.ShowIcon = true; + this.Text = "退房结算"; + this.Load += new System.EventHandler(this.FrmCheckOutForm_Load); + this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.FrmCheckOutForm_MouseDown); + this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.FrmCheckOutForm_MouseMove); + this.uiTabControlMenu1.ResumeLayout(false); + this.tpCheckOut.ResumeLayout(false); + this.tpCheckOut.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dgvSpendList)).EndInit(); + this.tpCustoInfo.ResumeLayout(false); + this.tpCustoInfo.PerformLayout(); + this.tpWti.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.dgvWti)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + private System.Windows.Forms.Label label15; + private System.Windows.Forms.TextBox txtReceipts; + private System.Windows.Forms.Label label18; + private System.Windows.Forms.Label label17; + private System.Windows.Forms.Label lblGetReceipts; + private System.Windows.Forms.Label lblChange; + private System.Windows.Forms.Label label21; + private System.Windows.Forms.Label lblVIP; + private System.Windows.Forms.Label label25; + private System.Windows.Forms.Label lblVIPPrice; + private System.Windows.Forms.Label lable00; + private Sunny.UI.UITabControlMenu uiTabControlMenu1; + private System.Windows.Forms.TabPage tpCheckOut; + private System.Windows.Forms.TabPage tpCustoInfo; + private System.Windows.Forms.TabPage tpWti; + private System.Windows.Forms.Label lblDay; + private System.Windows.Forms.Label label29; + private Sunny.UI.UITextBox dtpCheckTime; + private Sunny.UI.UITextBox txtRoomNo; + private System.Windows.Forms.Label label27; + private System.Windows.Forms.Label label28; + private Sunny.UI.UITextBox CustoNo; + private Sunny.UI.UITextBox CustoName; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label24; + private Sunny.UI.UIDataGridView dgvSpendList; + private Sunny.UI.UIButton btnBalance; + private Sunny.UI.UIComboBox cboCustoType; + private Sunny.UI.UIComboBox cboPassportType; + private Sunny.UI.UIComboBox cboCustoSex; + private Sunny.UI.UITextBox txtCustoNo; + private Sunny.UI.UITextBox txtCustoName; + private Sunny.UI.UITextBox txtPassportNum; + private Sunny.UI.UITextBox txtTel; + private Sunny.UI.UIDatePicker dtpBirth; + private Sunny.UI.UITextBox txtAddress; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.Label label16; + private System.Windows.Forms.Label label22; + private System.Windows.Forms.Label label30; + private System.Windows.Forms.Label label31; + private System.Windows.Forms.Label label32; + private Sunny.UI.UIDataGridView dgvWti; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7; + private System.Windows.Forms.DataGridViewTextBoxColumn clSpendNo; + private System.Windows.Forms.DataGridViewTextBoxColumn Column1; + private System.Windows.Forms.DataGridViewTextBoxColumn Column2; + private System.Windows.Forms.DataGridViewTextBoxColumn Column3; + private System.Windows.Forms.DataGridViewTextBoxColumn Column4; + private System.Windows.Forms.DataGridViewTextBoxColumn Column8; + private System.Windows.Forms.DataGridViewTextBoxColumn Column11; + private System.Windows.Forms.DataGridViewTextBoxColumn clRoomNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clCustoNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clStartTime; + private System.Windows.Forms.DataGridViewTextBoxColumn clDealTime; + private System.Windows.Forms.DataGridViewTextBoxColumn clWater; + private System.Windows.Forms.DataGridViewTextBoxColumn clElectric; + private System.Windows.Forms.DataGridViewTextBoxColumn clMarkUser; + private System.Windows.Forms.DataGridViewTextBoxColumn Column5; + private System.Windows.Forms.DataGridViewTextBoxColumn Column6; + private System.Windows.Forms.DataGridViewTextBoxColumn Column7; + private System.Windows.Forms.DataGridViewTextBoxColumn Column9; + private System.Windows.Forms.DataGridViewTextBoxColumn Column10; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCheckOutForm.cs b/SYS.FormUI/AppFunction/FrmCheckOutForm.cs new file mode 100644 index 0000000000000000000000000000000000000000..4b2f8e147b18e86df5d4d08198d4b21e00106b19 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCheckOutForm.cs @@ -0,0 +1,406 @@ +using System; +using System.Drawing; +using System.Windows.Forms; +using SYS.Core; +using SYS.FormUI.Properties; +using System.Collections.Generic; +using Sunny.UI; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class FrmCheckOutForm : UIForm + { + public static string co_CustoNo; + public static string co_RoomNo; + public static string co_CustoName; + public static string co_CustoBirthday; + public static string co_CustoSex; + public static string co_CustoTel; + public static string co_CustoPassportType; + public static string co_CustoAddress; + public static string co_CustoType; + public static string co_CustoID; + public static Wti w; + + public FrmCheckOutForm() + { + InitializeComponent(); + } + + + + #region 记录鼠标和窗体坐标的方法 + private Point mouseOld;//鼠标旧坐标 + private Point formOld;//窗体旧坐标 + #endregion + + #region 记录移动的窗体坐标 + private void FrmCheckOutForm_MouseDown(object sender, MouseEventArgs e) + { + formOld = this.Location; + mouseOld = MousePosition; + } + #endregion + + #region 记录窗体移动的坐标 + private void FrmCheckOutForm_MouseMove(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + Point mouseNew = MousePosition; + int moveX = mouseNew.X - mouseOld.X; + int moveY = mouseNew.Y - mouseOld.Y; + this.Location = new Point(formOld.X + moveX, formOld.Y + moveY); + } + } + #endregion + + #region 窗体加载事件 + private void FrmCheckOutForm_Load(object sender, EventArgs e) + { + foreach (Control item in this.Controls) + { + item.Font = UI_FontUtil.scorllingFont; + } + #region 加载客户类型信息 + List lstSourceGrid = new BaseService().SelectCustoTypeAllCanUse(); + this.cboCustoType.DataSource = lstSourceGrid; + this.cboCustoType.DisplayMember = "TypeName"; + this.cboCustoType.ValueMember = "UserType"; + this.cboCustoType.SelectedIndex = 0; + this.cboCustoType.ReadOnly = true; + #endregion + + #region 加载证件类型信息 + List passPorts = new BaseService().SelectPassPortTypeAllCanUse(); + this.cboPassportType.DataSource = passPorts; + this.cboPassportType.DisplayMember = "PassportName"; + this.cboPassportType.ValueMember = "PassportId"; + this.cboPassportType.SelectedIndex = 0; + #endregion + + #region 加载性别信息 + List listSexType = new BaseService().SelectSexTypeAllCanUse(); + this.cboCustoSex.DataSource = listSexType; + this.cboCustoSex.DisplayMember = "sexName"; + this.cboCustoSex.ValueMember = "sexId"; + this.cboCustoSex.SelectedIndex = 0; + #endregion + + double sum = 0; + txtCustoNo.Text = ucRoomList.rm_CustoNo; + CustoNo.Text = ucRoomList.rm_CustoNo; + txtRoomNo.Text = ucRoomList.rm_RoomNo; + string rn = txtRoomNo.Text.ToString(); + string rs = rn.Substring(0, 2); + + if (ucRoomList.co_CheckTime == null) + { + dtpCheckTime.Text = DateTime.Now.ToString("yyyy年MM月dd日"); + } + else + { + dtpCheckTime.Text = Convert.ToDateTime(ucRoomList.co_CheckTime).ToString("yyyy年MM月dd日"); + } + if (rs == "BD") + { + sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString()) * 300)); + } + if (rs == "BS") + { + sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString()) * 425)); + } + if (rs == "HD") + { + sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString()) * 625)); + } + if (rs == "HS") + { + sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString()) * 660)); + } + if (rs == "QL") + { + sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString()) * 845)); + } + if (rs == "ZT") + { + sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString()) * 1080)); + } + lblDay.Text = Convert.ToString(Convert.ToInt32(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString())); + w = new Wti() + { + CustoNo = txtCustoNo.Text, + EndDate = Convert.ToDateTime(DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"))), + PowerUse = Convert.ToDecimal(Convert.ToInt32(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString()) * 3 * 1), + WaterUse = Convert.ToDecimal(Convert.ToDouble(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString()) * 80 * 0.002), + RoomNo = txtRoomNo.Text, + Record = "admin", + UseDate = Convert.ToDateTime(DateTime.Parse(dtpCheckTime.Text)), + }; + + #region 加载客户信息 + Custo cto = new CustoService().SelectCardInfoByCustoNo(CustoNo.Text.ToString()); + try + { + CustoName.Text = cto.CustoName; + txtCustoName.Text = cto.CustoName; + txtTel.Text = cto.CustoTel; + cboCustoSex.SelectedIndex = cto.CustoSex; + cboCustoType.SelectedIndex = cto.CustoType; + cboPassportType.SelectedIndex = cto.PassportType; + dtpBirth.Value = cto.CustoBirth; + txtPassportNum.Text = cto.CustoID; + } + catch + { + + + } + + + #endregion + + #region 加载消费信息 + string RoomNo = txtRoomNo.Text; + dgvSpendList.DataSource = new SpendService().SelectSpendInfoRoomNo(RoomNo); + dgvSpendList.AutoGenerateColumns = false; + double result = 0; + if (dgvSpendList.Rows.Count == 0) + { + result = 0; + } + else + { + result = Convert.ToDouble(new SpendService().SelectMoneyByRoomNoAndTime(RoomNo, CustoNo.Text.ToString())); + } + + #endregion + + #region 加载水电费信息 + var listWti = new WtiService().SelectWtiInfoAll(); + dgvWti.DataSource = listWti; + dgvWti.AutoGenerateColumns = false; + #endregion + + if (cboCustoType.Text == "钻石会员") + { + double m = result + sum; + lblGetReceipts.Text = m.ToString(); + lblVIPPrice.Text = Convert.ToString(m * 0.60); + lblVIP.Text = "六折"; + } + else if (cboCustoType.Text == "白金会员") + { + + double m = result + sum; + lblGetReceipts.Text = m.ToString(); + lblVIPPrice.Text = Convert.ToString(m * 0.80); + lblVIP.Text = "八折"; + } + else if (cboCustoType.Text == "黄金会员") + { + double m = result + sum; + lblGetReceipts.Text = m.ToString(); + lblVIPPrice.Text = Convert.ToString(m * 0.90); + lblVIP.Text = "九折"; + } + else if (cboCustoType.Text == "普通会员") + { + double m = result + sum; + lblGetReceipts.Text = m.ToString(); + lblVIPPrice.Text = Convert.ToString(m * 0.95); + lblVIP.Text = "九五折"; + } + else if (cboCustoType.Text == "普通用户") + { + //39525 + double m = result + sum; + lblGetReceipts.Text = m.ToString(); + lblVIPPrice.Text = Convert.ToString(m); + lblVIP.Text = "不 打 折"; + + } + + } + #endregion + + #region 关闭 + private void btnClose_Click(object sender, EventArgs e) + { + this.Close(); + } + #endregion + + #region 实收金额文本框值改变时事件 + private void txtReceipts_TextChanged(object sender, EventArgs e) + { + if (txtReceipts.Text != "") + { + try + { + double n = Convert.ToDouble(Convert.ToDecimal(txtReceipts.Text)); + double m = Convert.ToDouble(Convert.ToDecimal(lblGetReceipts.Text)); + double h = Convert.ToDouble(Convert.ToDecimal(lblVIPPrice.Text)); + lblChange.Text = Convert.ToString(n - h); + if (n >= m) + { + + } + } + catch + { + MessageBox.Show("非法输入,请重新输入!", "系统提示", + MessageBoxButtons.OK, MessageBoxIcon.Error); + txtReceipts.Clear(); + txtReceipts.Focus(); + } + } + else + { + lblChange.Text = "-" + lblGetReceipts.Text; + return; + } + } + #endregion + + #region 结算按钮点击事件 + private void btnBalance_Click(object sender, EventArgs e) + { + if (txtReceipts.Text != "")//判断实收金额是否为空 + { + Room r = new RoomService().SelectRoomByRoomNo(txtRoomNo.Text);//根据房间编号查询房间信息 + string checktime = r.CheckTime.ToString();//获取入住时间 + if (dgvSpendList.Rows.Count == 0) + { + bool n = new RoomService().UpdateRoomByRoomNo(txtRoomNo.Text); + if (n == true) + { + new WtiService().InsertWtiInfo(w);//添加水电费信息 + this.Close(); + } + else + { + return; + } + MessageBox.Show("结算成功!", "系统提示"); + FrmRoomManager.Reload(); + + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "帮助" + txtCustoNo.Text + "进行了退房结算操作!"; + o.OperationAccount = LoginInfo.WorkerNo; + o.datains_usr = LoginInfo.WorkerNo; + o.datains_date = DateTime.Now; + #endregion + new OperationlogService().InsertOperationLog(o); + } + else + { + if (new SpendService().UpdateMoneyState(txtRoomNo.Text, checktime) == true) + { + bool n = new RoomService().UpdateRoomByRoomNo(txtRoomNo.Text); + if (n == true) + { + new WtiService().InsertWtiInfo(w);//添加水电费信息 + this.Close(); + } + else + { + return; + } + MessageBox.Show("结算成功!", "系统提示"); + FrmRoomManager.Reload(); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "帮助" + txtCustoNo.Text + "进行了退房结算操作!"; + o.OperationAccount = LoginInfo.WorkerNo; + o.datains_usr = LoginInfo.WorkerNo; + o.datains_date = DateTime.Now; + #endregion + new OperationlogService().InsertOperationLog(o); + } + else + { + MessageBox.Show("结算失败!", "系统提示"); + } + } + } + else + { + MessageBox.Show("实收金额不能为空!", "系统提示"); + } + } + #endregion + + private void btnReceiptsType_Click(object sender, EventArgs e) + { + //pnlMobile.Visible = true; + //pnlCreditCard.Visible = false; + //btnChangePay.Visible = true; + } + + private void btnCreditCard_Click(object sender, EventArgs e) + { + //pnlMobile.Visible = false; + //pnlCreditCard.Visible = true; + //btnChangePay.Visible = false; + } + + + private void btnChangePay_Click(object sender, EventArgs e) + { + //DialogResult ret = MessageBox.Show("请选择支付类型:是:支付宝,否:微信?", "T仔的提醒", MessageBoxButtons.YesNo, MessageBoxIcon.Information); + //if (ret == DialogResult.Yes) + //{ + // pnlMobile.BackgroundImage = Resources._1G_Q__21_3JZZCFW68O7NF; + //} + //else + //{ + // pnlMobile.BackgroundImage = Resources._1545891726; + //} + } + + private void txtCardNo_TextChanged(object sender, EventArgs e) + { + //if (txtCardNo.TextLength == 19 || txtCardNo.TextLength <= 16) + //{ + // lblState.Text = "该卡为有效银行卡,可进行消费"; + // lblState.ForeColor = Color.Green; + //} + //else + //{ + // lblState.Text = "该卡为无效银行卡,不可进行消费"; + // lblState.ForeColor = Color.Red; + //} + } + + private void llbCardReader_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + //txtCardNo.Text = "6212260000000006222"; + //lblReaderState.Text = "卡号读取成功且有效,可继续进行结算操作"; + //lblReaderState.ForeColor = Color.Green; + } + + private void tabControl1_DrawItem(object sender, DrawItemEventArgs e) + { + //Graphics g = e.Graphics; + //Font font = new Font("微软雅黑", 14f, System.Drawing.GraphicsUnit.Pixel); + //SolidBrush brush = new SolidBrush(Color.Black); + //if (e.Index == this.tabControl1.SelectedIndex) + //{ + // brush = new SolidBrush(Color.Blue); + //} + + //RectangleF rectangle = (RectangleF)(tabControl1.GetTabRect(e.Index)); + //RectangleF rectangle2 = new RectangleF(rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height); + //g.FillRectangle(new SolidBrush(SystemColors.ButtonHighlight), rectangle2); + //StringFormat sformat = new StringFormat(); + //sformat.LineAlignment = StringAlignment.Center; + //sformat.Alignment = StringAlignment.Center; + //g.DrawString(((TabControl)sender).TabPages[e.Index].Text, font, brush, rectangle2, sformat); + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmCheckOutForm.resx b/SYS.FormUI/AppFunction/FrmCheckOutForm.resx new file mode 100644 index 0000000000000000000000000000000000000000..90116b1763f0d5d7c41ed3f02f2e7f895e0f53aa --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCheckOutForm.resx @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAICAAAAEAGAAQAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABpUlEQVRYR+WXu0oD + URiEgyCI2KhVsLHzlazE0t4XsAwG7CwlILYiBIkKwQTxBgarvIaFWgpZvzk7ENdsYgh7loAfDDn7/8nM + BJZcKnNFkiS1wWDQRJ1IairDcVlYlIpjU2hW91z0frUuTPJOI5KE67rjQ4GWh32PoqEMZ7U8CkO107Dj + UTRys/5bgX1nHXpUboFcYhTAq4GGd/okii6A1YH8BJ5nHo+n6AICr/PQADifeJxPjALYLeF3KV/B+dir + UWIUEFiu4tmWt+B85FWWWAUEnlV0HxqkjH4ZzVKA526jF7+u/Yce0IeeKzif2iaFwSwFPoPbDPDaL9uk + zFhgB+mdXU+hO/Qe0lO6tklhGfMe2ECPIRY460fJotcpsQrgt45u5S043/Cw4vWQGAWwW8bvSr6my/Wa + 11mKLoDVAl4X8hScn1DV61GKLoBPIyQD51ceNr3Kp+gCWO3i9Yae0ZbH4ym6wCTI2HNWw6PSC4xmzUMB + fTiInkfRUIaClOlRGNY0FCz6ahdJ4T+ByX4relgajs1Cwzpq/WhctOQ93Q/VcqhUvgEg/3fqcsaMWwAA + AABJRU5ErkJggg== + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCustoManager.Designer.cs b/SYS.FormUI/AppFunction/FrmCustoManager.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..50fc7acfafc90daea789daf7aa18397dfe061d7b --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCustoManager.Designer.cs @@ -0,0 +1,347 @@ +namespace SYS.FormUI +{ + partial class FrmCustoManager + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmCustoManager)); + this.dgvCustomerList = new Sunny.UI.UIDataGridView(); + this.CustoNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.CustoName = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.CustoSex = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.CustoTel = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.CustoBirth = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.typeName = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.PassportName = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.CustoAdress = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.gbCustoInfo = new System.Windows.Forms.GroupBox(); + this.txtCardID = new Sunny.UI.UITextBox(); + this.label3 = new System.Windows.Forms.Label(); + this.btnSerach = new Sunny.UI.UIButton(); + this.btnAddCusto = new Sunny.UI.UIButton(); + this.btnExport = new Sunny.UI.UIButton(); + this.btnUpdate = new Sunny.UI.UIButton(); + ((System.ComponentModel.ISupportInitialize)(this.dgvCustomerList)).BeginInit(); + this.gbCustoInfo.SuspendLayout(); + this.SuspendLayout(); + // + // dgvCustomerList + // + this.dgvCustomerList.AllowUserToAddRows = false; + this.dgvCustomerList.AllowUserToDeleteRows = false; + this.dgvCustomerList.AllowUserToResizeColumns = false; + this.dgvCustomerList.AllowUserToResizeRows = false; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvCustomerList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.dgvCustomerList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvCustomerList.BackgroundColor = System.Drawing.Color.White; + this.dgvCustomerList.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.dgvCustomerList.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Raised; + this.dgvCustomerList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvCustomerList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.dgvCustomerList.ColumnHeadersHeight = 32; + this.dgvCustomerList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvCustomerList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.CustoNo, + this.CustoName, + this.CustoSex, + this.CustoTel, + this.CustoBirth, + this.typeName, + this.PassportName, + this.CustoAdress, + this.Column1, + this.Column2, + this.Column3, + this.Column4}); + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); + dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvCustomerList.DefaultCellStyle = dataGridViewCellStyle3; + this.dgvCustomerList.EnableHeadersVisualStyles = false; + this.dgvCustomerList.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvCustomerList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvCustomerList.Location = new System.Drawing.Point(3, 38); + this.dgvCustomerList.Name = "dgvCustomerList"; + this.dgvCustomerList.ReadOnly = true; + this.dgvCustomerList.RowHeadersVisible = false; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.White; + this.dgvCustomerList.RowsDefaultCellStyle = dataGridViewCellStyle4; + this.dgvCustomerList.RowTemplate.Height = 29; + this.dgvCustomerList.SelectedIndex = -1; + this.dgvCustomerList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvCustomerList.ShowRect = false; + this.dgvCustomerList.Size = new System.Drawing.Size(999, 506); + this.dgvCustomerList.TabIndex = 111; + // + // CustoNo + // + this.CustoNo.DataPropertyName = "CustoNo"; + this.CustoNo.HeaderText = "客户编号"; + this.CustoNo.Name = "CustoNo"; + this.CustoNo.ReadOnly = true; + // + // CustoName + // + this.CustoName.DataPropertyName = "CustoName"; + this.CustoName.HeaderText = "客户姓名"; + this.CustoName.Name = "CustoName"; + this.CustoName.ReadOnly = true; + // + // CustoSex + // + this.CustoSex.DataPropertyName = "SexName"; + this.CustoSex.HeaderText = "性别"; + this.CustoSex.Name = "CustoSex"; + this.CustoSex.ReadOnly = true; + // + // CustoTel + // + this.CustoTel.DataPropertyName = "CustoTel"; + this.CustoTel.HeaderText = "联系方式"; + this.CustoTel.Name = "CustoTel"; + this.CustoTel.ReadOnly = true; + // + // CustoBirth + // + this.CustoBirth.DataPropertyName = "CustoBirth"; + this.CustoBirth.HeaderText = "出生日期"; + this.CustoBirth.Name = "CustoBirth"; + this.CustoBirth.ReadOnly = true; + // + // typeName + // + this.typeName.DataPropertyName = "typeName"; + this.typeName.HeaderText = "客户类型"; + this.typeName.Name = "typeName"; + this.typeName.ReadOnly = true; + // + // PassportName + // + this.PassportName.DataPropertyName = "PassportName"; + this.PassportName.HeaderText = "证件类型"; + this.PassportName.Name = "PassportName"; + this.PassportName.ReadOnly = true; + // + // CustoAdress + // + this.CustoAdress.DataPropertyName = "CustoAdress"; + this.CustoAdress.HeaderText = "客户地址"; + this.CustoAdress.Name = "CustoAdress"; + this.CustoAdress.ReadOnly = true; + // + // Column1 + // + this.Column1.DataPropertyName = "PassportType"; + this.Column1.HeaderText = "Column1"; + this.Column1.Name = "Column1"; + this.Column1.ReadOnly = true; + this.Column1.Visible = false; + // + // Column2 + // + this.Column2.DataPropertyName = "CustoType"; + this.Column2.HeaderText = "Column2"; + this.Column2.Name = "Column2"; + this.Column2.ReadOnly = true; + this.Column2.Visible = false; + // + // Column3 + // + this.Column3.DataPropertyName = "CustoID"; + this.Column3.HeaderText = "Column3"; + this.Column3.Name = "Column3"; + this.Column3.ReadOnly = true; + this.Column3.Visible = false; + // + // Column4 + // + this.Column4.DataPropertyName = "CustoSex"; + this.Column4.HeaderText = "Column4"; + this.Column4.Name = "Column4"; + this.Column4.ReadOnly = true; + this.Column4.Visible = false; + // + // gbCustoInfo + // + this.gbCustoInfo.Controls.Add(this.txtCardID); + this.gbCustoInfo.Controls.Add(this.label3); + this.gbCustoInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.gbCustoInfo.Location = new System.Drawing.Point(10, 550); + this.gbCustoInfo.Name = "gbCustoInfo"; + this.gbCustoInfo.Size = new System.Drawing.Size(538, 57); + this.gbCustoInfo.TabIndex = 112; + this.gbCustoInfo.TabStop = false; + this.gbCustoInfo.Text = "条件搜索栏"; + // + // txtCardID + // + this.txtCardID.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCardID.FillColor = System.Drawing.Color.White; + this.txtCardID.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCardID.Location = new System.Drawing.Point(227, 16); + this.txtCardID.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCardID.Maximum = 2147483647D; + this.txtCardID.Minimum = -2147483648D; + this.txtCardID.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCardID.Name = "txtCardID"; + this.txtCardID.Padding = new System.Windows.Forms.Padding(5); + this.txtCardID.Radius = 20; + this.txtCardID.Size = new System.Drawing.Size(204, 33); + this.txtCardID.TabIndex = 88; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(132, 19); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(88, 25); + this.label3.TabIndex = 87; + this.label3.Text = "客户编号"; + // + // btnSerach + // + this.btnSerach.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnSerach.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnSerach.Location = new System.Drawing.Point(559, 558); + this.btnSerach.MinimumSize = new System.Drawing.Size(1, 1); + this.btnSerach.Name = "btnSerach"; + this.btnSerach.Radius = 30; + this.btnSerach.Size = new System.Drawing.Size(103, 49); + this.btnSerach.TabIndex = 113; + this.btnSerach.Text = "搜 索"; + this.btnSerach.Click += new System.EventHandler(this.picSearch_Click_1); + // + // btnAddCusto + // + this.btnAddCusto.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnAddCusto.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnAddCusto.Location = new System.Drawing.Point(668, 558); + this.btnAddCusto.MinimumSize = new System.Drawing.Size(1, 1); + this.btnAddCusto.Name = "btnAddCusto"; + this.btnAddCusto.Radius = 30; + this.btnAddCusto.Size = new System.Drawing.Size(103, 49); + this.btnAddCusto.TabIndex = 114; + this.btnAddCusto.Text = "添加客户"; + this.btnAddCusto.Click += new System.EventHandler(this.picAddCusto_Click_1); + // + // btnExport + // + this.btnExport.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnExport.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnExport.Location = new System.Drawing.Point(780, 558); + this.btnExport.MinimumSize = new System.Drawing.Size(1, 1); + this.btnExport.Name = "btnExport"; + this.btnExport.Radius = 30; + this.btnExport.Size = new System.Drawing.Size(103, 49); + this.btnExport.TabIndex = 115; + this.btnExport.Text = "导出列表"; + this.btnExport.Click += new System.EventHandler(this.picLoadOut_Click_1); + // + // btnUpdate + // + this.btnUpdate.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnUpdate.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnUpdate.Location = new System.Drawing.Point(889, 558); + this.btnUpdate.MinimumSize = new System.Drawing.Size(1, 1); + this.btnUpdate.Name = "btnUpdate"; + this.btnUpdate.Radius = 30; + this.btnUpdate.Size = new System.Drawing.Size(103, 49); + this.btnUpdate.TabIndex = 116; + this.btnUpdate.Text = "修改客户"; + this.btnUpdate.Click += new System.EventHandler(this.picUpdateCusto_Click_1); + // + // FrmCustoManager + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.btnUpdate); + this.Controls.Add(this.btnExport); + this.Controls.Add(this.btnAddCusto); + this.Controls.Add(this.btnSerach); + this.Controls.Add(this.gbCustoInfo); + this.Controls.Add(this.dgvCustomerList); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmCustoManager"; + this.ShowIcon = true; + this.Text = "客户信息管理"; + this.Load += new System.EventHandler(this.FrmCustoManager_Load); + ((System.ComponentModel.ISupportInitialize)(this.dgvCustomerList)).EndInit(); + this.gbCustoInfo.ResumeLayout(false); + this.gbCustoInfo.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + private Sunny.UI.UIDataGridView dgvCustomerList; + private System.Windows.Forms.DataGridViewTextBoxColumn CustoNo; + private System.Windows.Forms.DataGridViewTextBoxColumn CustoName; + private System.Windows.Forms.DataGridViewTextBoxColumn CustoSex; + private System.Windows.Forms.DataGridViewTextBoxColumn CustoTel; + private System.Windows.Forms.DataGridViewTextBoxColumn CustoBirth; + private System.Windows.Forms.DataGridViewTextBoxColumn typeName; + private System.Windows.Forms.DataGridViewTextBoxColumn PassportName; + private System.Windows.Forms.DataGridViewTextBoxColumn CustoAdress; + private System.Windows.Forms.DataGridViewTextBoxColumn Column1; + private System.Windows.Forms.DataGridViewTextBoxColumn Column2; + private System.Windows.Forms.DataGridViewTextBoxColumn Column3; + private System.Windows.Forms.DataGridViewTextBoxColumn Column4; + private System.Windows.Forms.GroupBox gbCustoInfo; + private Sunny.UI.UITextBox txtCardID; + private System.Windows.Forms.Label label3; + private Sunny.UI.UIButton btnSerach; + private Sunny.UI.UIButton btnAddCusto; + private Sunny.UI.UIButton btnExport; + private Sunny.UI.UIButton btnUpdate; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCustoManager.cs b/SYS.FormUI/AppFunction/FrmCustoManager.cs new file mode 100644 index 0000000000000000000000000000000000000000..db2c6026c29dab4913b2269fe761499da842c935 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCustoManager.cs @@ -0,0 +1,182 @@ +using System; +using MySql.Data.MySqlClient; +using System.Windows.Forms; +using SYS.Core; +using SYS.FormUI.Properties; +using System.Collections.Generic; +using SYS.Application; +using Sunny.UI; + +namespace SYS.FormUI +{ + public partial class FrmCustoManager : UIForm + { + public static string cm_CustoNo; + public static string cm_CustoName; + public static int cm_CustoSex; + public static string cm_CustoTel; + public static int cm_PassportType; + public static string cm_CustoID; + public static string cm_CustoAddress; + public static DateTime cm_CustoBirth; + public static int cm_CustoType; + + public delegate void ReloadCustomerList(); + + + //定义委托类型的变量 + public static ReloadCustomerList Reload; + + public FrmCustoManager() + { + InitializeComponent(); + Reload = LoadCustomer; + } + + private void FrmCustoManager_Load(object sender, EventArgs e) + { + foreach (Control item in this.Controls) + { + item.Font = UI_FontUtil.childControlFont; + } + //dgvCustomerList.AutoGenerateColumns = false; + LoadCustomer(); + LoadCustoType(); + //txtCustoNo.ReadOnly = true; + //cboSex.SelectedIndex = 0; + //cboCustoType.SelectedIndex = 3; + } + #region 加载客户类型事件方法 + public void LoadCustoType() + { + //cboCustoType.DataSource = CustoTypeManager.SelectCustoTypesAll(); + //cboCustoType.DisplayMember = "TypeName";//显示的列名 + //cboCustoType.ValueMember = "UserType";//绑定的值 + } + #endregion + + #region 加载用户信息列表 + private void LoadCustomer() + { + + List lstSource = new CustoService().SelectCustoAll(); + dgvCustomerList.AutoGenerateColumns = false; + this.dgvCustomerList.DataSource = lstSource; + } + #endregion + + + #region 添加会员信息事件方法 + private void picAddCusto_Click_1(object sender, EventArgs e) + { + FrmInputs frmInputs = new FrmInputs(); + frmInputs.ShowDialog(); + frmInputs.Text = "添加客户"; + } + #endregion + + #region 修改会员信息事件方法 + private void picUpdateCusto_Click_1(object sender, EventArgs e) + { + if (dgvCustomerList.SelectedRows.Count < 0) + { + UIMessageBox.Show("未选中客户,无法继续操作!", "系统提示", UIStyle.Orange, UIMessageBoxButtons.OK); + return; + } + cm_CustoNo = dgvCustomerList.SelectedRows[0].Cells["CustoNo"].Value.ToString(); + cm_CustoName = dgvCustomerList.SelectedRows[0].Cells["CustoName"].Value.ToString(); + cm_CustoSex = (int)dgvCustomerList.SelectedRows[0].Cells["Column4"].Value; + cm_CustoTel = dgvCustomerList.SelectedRows[0].Cells["CustoTel"].Value.ToString(); + cm_PassportType = (int)dgvCustomerList.SelectedRows[0].Cells["Column1"].Value; + cm_CustoID = dgvCustomerList.SelectedRows[0].Cells["Column3"].Value.ToString(); + cm_CustoAddress = dgvCustomerList.SelectedRows[0].Cells["CustoAdress"].Value.ToString(); + cm_CustoBirth = Convert.ToDateTime(dgvCustomerList.SelectedRows[0].Cells["CustoBirth"].Value); + cm_CustoType = (int)dgvCustomerList.SelectedRows[0].Cells["Column2"].Value; + FrmInputs frmInputs = new FrmInputs(); + frmInputs.Text = "修改客户"; + frmInputs.ShowDialog(); + } + #endregion + + #region 搜索会员信息事件方法 + private void picSearch_Click_1(object sender, EventArgs e) + { + dgvCustomerList.AutoGenerateColumns = false; + dgvCustomerList.DataSource = new CustoService().SelectCardInfoByCustoNo(txtCardID.Text); + } + #endregion + + #region 导出事件方法 + private void picLoadOut_Click_1(object sender, EventArgs e) + { + #region 导出信息保存为Excel表 + DialogResult ret = MessageBox.Show("导出信息为敏感操作,确定要继续导出吗?(此步操作将写入操作日志)", "信息提醒", MessageBoxButtons.YesNo); + if (ret == DialogResult.Yes) + { + + //Response.ContentEncoding = System.Text.Encoding.UTF8; + string fileName = ""; + string saveFileName = ""; + //fileName.Charset = "GB2312"; + SaveFileDialog saveDialog = new SaveFileDialog(); + //saveDialog.DefaultExt = "xls"; + saveDialog.FileName = fileName; + saveDialog.Filter = "2003~2007工作表*.xls|*.xls|2010及以上版本工作表*.xlsx|*.xlsx"; + saveDialog.ShowDialog(); + saveFileName = saveDialog.FileName; + if (saveFileName.IndexOf(":") < 0) return; + Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application(); + if (xlApp == null) + { + UIMessageBox.Show("无法创建Excel对象,您的电脑可能未安装Excel!", "来自T仔的提醒"); + return; + } + Microsoft.Office.Interop.Excel.Workbooks workbooks = xlApp.Workbooks; + Microsoft.Office.Interop.Excel.Workbook workbook = workbooks.Add(Microsoft.Office.Interop.Excel.XlWBATemplate.xlWBATWorksheet); + Microsoft.Office.Interop.Excel.Worksheet worksheet = (Microsoft.Office.Interop.Excel.Worksheet)workbook.Worksheets[1]; + for (int i = 0; i < this.dgvCustomerList.Columns.Count; i++) + { + xlApp.Cells[1, i + 1] = dgvCustomerList.Columns[i].HeaderText; + } + for (int i = 0; i < dgvCustomerList.Rows.Count; i++)//添加每一项 + { + for (int j = 0; j < dgvCustomerList.Columns.Count; j++) + { + xlApp.Cells[i + 2, j + 1] = dgvCustomerList.Rows[i].Cells[j].Value.ToString(); + } + } + System.Windows.Forms.Application.DoEvents(); + worksheet.Columns.EntireColumn.AutoFit();//列宽自适应 + MessageBox.Show(fileName + "信息导出成功", "来自T仔提示", MessageBoxButtons.OK); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerName + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "导出了" + "后台用户信息!"; + o.OperationAccount = LoginInfo.WorkerNo; + o.datains_usr = LoginInfo.WorkerNo; + o.datains_date = DateTime.Now; + #endregion + new OperationlogService().InsertOperationLog(o); + System.Diagnostics.Process.Start("Explorer.exe", saveFileName); + if (saveFileName != "") + { + try + { + workbook.Saved = true; + workbook.SaveCopyAs(saveFileName); //fileSaved = true; + } + catch (Exception ex) + {//fileSaved = false; + MessageBox.Show("导出文件时出错,文件可能正被打开!\n" + ex.Message); + } + } + xlApp.Quit(); + GC.Collect(); + } + #endregion + } + #endregion + + + } +} diff --git a/SYS.FormUI/AppFunction/FrmCustoManager.resx b/SYS.FormUI/AppFunction/FrmCustoManager.resx new file mode 100644 index 0000000000000000000000000000000000000000..9f5a51a5dfa102ed0cc2821260e6540a3e92433a --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCustoManager.resx @@ -0,0 +1,179 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAICAAAAEAGAASBAAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAADp0lEQVRYR7WXWYhP + URzHx5pliGEkSyhJeCCJZHsgpSxZx5pkT0h2CYkHpQYJKeRBliyFEoMiWVIj2bLmwYOdeCDM+HzP/c5/ + TPP3n/u/xrc+nXN+27n/+7/3nHNz4qqkpKQrTIYNcBwOwurS0tJxkOuw/yMmGgsPmSit8N2CPg6vXlF4 + IXN88kQ3oBAKYA7swnzbvg8w1WnVIwqOhMfwFpYwTxO7Kgjfcl+E7lJ7m/9NKkTB/fAN5tmcVvjrw274 + CtttTi4mr02hKfAOTkEXu/4qYtrAK3gBBTYnEwXyYQs8gfE2ZxRxjWErvId1NicTBTqBXrVr0N/mjOKu + 1SN2JvyEQzYnEwX6QDHo9neyOaO4gJrE9qXVw3gZ2tmVvUjuBXq3z0MPmzOKeesQO9IXUASt7MpeJHeD + c3AHhtmcUcQ1ZO6VvoAzUN+u7EVya9gJeguWxinGvM2JOw16FQttTi6KaPnV6vYcRtucVkyu2z/fv/4Z + jLEruagVFiIXvQK97aokQgY57iPNepv/XRTU23DZxV/DNrr9oJ79w2GP/BL94pBYnaLoANAd+OV5NNFT + +AwlHv+AY3Rr0HaEjTDBJXSHujNeDAPoh4uPJYKbkDQD7tP/q/B/oRkMs+k/sO0BTKTbk/asba9p1tPm + eYr0IiCfQBW76cTvoGX5JKyDYTAa1uI+SqsluFCxcUSs7lAjT1dR+PXwHY5CQ/B1GAENHVJJhGnzKogy + qhaxu2kqb+0YW8IBB2lXWwVt7c4oUtorL46ouYimgVMjYdD/rROOAh7TjLOrShFbVxer3DIxfgl7QQua + 6qXE+AQ0c3qqwAo7tafPtatKEatnoli5ZWJ8laazQxSjrfpI5I3EuIhmegigkwu3MWrlWxOMMaVif4r8 + tAcSbGGDc1hKZU69atrHr0J+MMaU66RE/l2annanhF3HtjNRVLnKnBfpf6JdHAxZKCpTLmroYDrI7pSw + t4DzUVS55BiiDq02nQ6Ojy1y7oVKFuM3sMzulHCNwl7h20JjFVgAWmg2OTYrkZcHkyCsdhJ9TTTKIYrR + V5UeuiD6OkFPhTw5d8BX7JVuWzYiv8I6QE0d5x/BXdf/U1q2a4VEnDp2fQyDhFIxagwPpWOI2Ak0dUMy + g5eRObH0+uoB074QS8RuhmgvoPPC9sSiRg/oAJdskk3rgf7rbRB2SIm+zosD6dYJF0BH/51ONImgWOqr + iXEu42lwAVbYrB85FPbBLGKa2oxycn4DnUXgUUEkWqsAAAAASUVORK5CYII= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCustoSpend.Designer.cs b/SYS.FormUI/AppFunction/FrmCustoSpend.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..e0902ad2dbb0b1981beca408db39a7ba77f4f32f --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCustoSpend.Designer.cs @@ -0,0 +1,256 @@ +namespace SYS.FormUI +{ + partial class FrmCustoSpend + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmCustoSpend)); + this.dgvSpendList = new Sunny.UI.UIDataGridView(); + this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clSpendNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + ((System.ComponentModel.ISupportInitialize)(this.dgvSpendList)).BeginInit(); + this.SuspendLayout(); + // + // dgvSpendList + // + this.dgvSpendList.AllowUserToAddRows = false; + this.dgvSpendList.AllowUserToDeleteRows = false; + this.dgvSpendList.AllowUserToResizeColumns = false; + this.dgvSpendList.AllowUserToResizeRows = false; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvSpendList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.dgvSpendList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvSpendList.BackgroundColor = System.Drawing.Color.White; + this.dgvSpendList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvSpendList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.dgvSpendList.ColumnHeadersHeight = 32; + this.dgvSpendList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvSpendList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.dataGridViewTextBoxColumn1, + this.dataGridViewTextBoxColumn2, + this.dataGridViewTextBoxColumn3, + this.dataGridViewTextBoxColumn4, + this.dataGridViewTextBoxColumn5, + this.dataGridViewTextBoxColumn6, + this.dataGridViewTextBoxColumn7, + this.clSpendNo, + this.Column8, + this.Column6, + this.Column7, + this.Column9, + this.Column10}); + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); + dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvSpendList.DefaultCellStyle = dataGridViewCellStyle3; + this.dgvSpendList.EnableHeadersVisualStyles = false; + this.dgvSpendList.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvSpendList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvSpendList.Location = new System.Drawing.Point(3, 38); + this.dgvSpendList.Name = "dgvSpendList"; + this.dgvSpendList.ReadOnly = true; + this.dgvSpendList.RowHeadersVisible = false; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.White; + this.dgvSpendList.RowsDefaultCellStyle = dataGridViewCellStyle4; + this.dgvSpendList.RowTemplate.Height = 29; + this.dgvSpendList.SelectedIndex = -1; + this.dgvSpendList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvSpendList.ShowGridLine = true; + this.dgvSpendList.ShowRowErrors = false; + this.dgvSpendList.Size = new System.Drawing.Size(999, 582); + this.dgvSpendList.Style = Sunny.UI.UIStyle.Custom; + this.dgvSpendList.TabIndex = 16; + // + // dataGridViewTextBoxColumn1 + // + this.dataGridViewTextBoxColumn1.DataPropertyName = "RoomNo"; + this.dataGridViewTextBoxColumn1.FillWeight = 102.6831F; + this.dataGridViewTextBoxColumn1.HeaderText = "房号"; + this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1"; + this.dataGridViewTextBoxColumn1.ReadOnly = true; + // + // dataGridViewTextBoxColumn2 + // + this.dataGridViewTextBoxColumn2.DataPropertyName = "CustoNo"; + this.dataGridViewTextBoxColumn2.FillWeight = 102.6831F; + this.dataGridViewTextBoxColumn2.HeaderText = "客户编号"; + this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2"; + this.dataGridViewTextBoxColumn2.ReadOnly = true; + // + // dataGridViewTextBoxColumn3 + // + this.dataGridViewTextBoxColumn3.DataPropertyName = "SpendName"; + this.dataGridViewTextBoxColumn3.FillWeight = 102.6831F; + this.dataGridViewTextBoxColumn3.HeaderText = "商品"; + this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3"; + this.dataGridViewTextBoxColumn3.ReadOnly = true; + // + // dataGridViewTextBoxColumn4 + // + this.dataGridViewTextBoxColumn4.DataPropertyName = "SpendAmount"; + this.dataGridViewTextBoxColumn4.FillWeight = 60F; + this.dataGridViewTextBoxColumn4.HeaderText = "数量"; + this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4"; + this.dataGridViewTextBoxColumn4.ReadOnly = true; + // + // dataGridViewTextBoxColumn5 + // + this.dataGridViewTextBoxColumn5.DataPropertyName = "SpendPrice"; + this.dataGridViewTextBoxColumn5.FillWeight = 102.6831F; + this.dataGridViewTextBoxColumn5.HeaderText = "单价(元)"; + this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5"; + this.dataGridViewTextBoxColumn5.ReadOnly = true; + // + // dataGridViewTextBoxColumn6 + // + this.dataGridViewTextBoxColumn6.DataPropertyName = "SpendMoney"; + this.dataGridViewTextBoxColumn6.FillWeight = 102.6831F; + this.dataGridViewTextBoxColumn6.HeaderText = "总额"; + this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6"; + this.dataGridViewTextBoxColumn6.ReadOnly = true; + // + // dataGridViewTextBoxColumn7 + // + this.dataGridViewTextBoxColumn7.DataPropertyName = "SpendTime"; + this.dataGridViewTextBoxColumn7.FillWeight = 102.6831F; + this.dataGridViewTextBoxColumn7.HeaderText = "消费时间"; + this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7"; + this.dataGridViewTextBoxColumn7.ReadOnly = true; + // + // clSpendNo + // + this.clSpendNo.DataPropertyName = "delete_mk"; + this.clSpendNo.HeaderText = "Column1"; + this.clSpendNo.Name = "clSpendNo"; + this.clSpendNo.ReadOnly = true; + this.clSpendNo.Visible = false; + // + // Column8 + // + this.Column8.DataPropertyName = "MoneyState"; + this.Column8.HeaderText = "Column8"; + this.Column8.Name = "Column8"; + this.Column8.ReadOnly = true; + this.Column8.Visible = false; + // + // Column6 + // + this.Column6.DataPropertyName = "datains_usr"; + this.Column6.HeaderText = "Column6"; + this.Column6.Name = "Column6"; + this.Column6.ReadOnly = true; + this.Column6.Visible = false; + // + // Column7 + // + this.Column7.DataPropertyName = "datains_date"; + this.Column7.HeaderText = "Column7"; + this.Column7.Name = "Column7"; + this.Column7.ReadOnly = true; + this.Column7.Visible = false; + // + // Column9 + // + this.Column9.DataPropertyName = "datachg_usr"; + this.Column9.HeaderText = "Column9"; + this.Column9.Name = "Column9"; + this.Column9.ReadOnly = true; + this.Column9.Visible = false; + // + // Column10 + // + this.Column10.DataPropertyName = "datachg_date"; + this.Column10.HeaderText = "Column10"; + this.Column10.Name = "Column10"; + this.Column10.ReadOnly = true; + this.Column10.Visible = false; + // + // FrmCustoSpend + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.dgvSpendList); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmCustoSpend"; + this.ShowIcon = true; + this.Style = Sunny.UI.UIStyle.Custom; + this.Text = "顾客消费账单"; + this.Load += new System.EventHandler(this.FrmCustoSpend_Load); + ((System.ComponentModel.ISupportInitialize)(this.dgvSpendList)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private Sunny.UI.UIDataGridView dgvSpendList; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7; + private System.Windows.Forms.DataGridViewTextBoxColumn clSpendNo; + private System.Windows.Forms.DataGridViewTextBoxColumn Column8; + private System.Windows.Forms.DataGridViewTextBoxColumn Column6; + private System.Windows.Forms.DataGridViewTextBoxColumn Column7; + private System.Windows.Forms.DataGridViewTextBoxColumn Column9; + private System.Windows.Forms.DataGridViewTextBoxColumn Column10; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCustoSpend.cs b/SYS.FormUI/AppFunction/FrmCustoSpend.cs new file mode 100644 index 0000000000000000000000000000000000000000..b2e7676cdcbb04de2eaec8b45f1bf014012ad100 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCustoSpend.cs @@ -0,0 +1,25 @@ +using Sunny.UI; +using SYS.Application; +using System; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmCustoSpend : UIForm + { + public FrmCustoSpend() + { + InitializeComponent(); + } + + private void FrmCustoSpend_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.childControlFont; + } + dgvSpendList.AutoGenerateColumns = false; + dgvSpendList.DataSource = new SpendService().SelectSpendInfoAll(); + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmCustoSpend.resx b/SYS.FormUI/AppFunction/FrmCustoSpend.resx new file mode 100644 index 0000000000000000000000000000000000000000..1793903c15ed97c220176e105e5f690f1acbb43e --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCustoSpend.resx @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAICAAAAEAGADqAQAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABf0lEQVRYR+2XMU7D + QBBFXdAgRYiGPjSho8kBQkWRoyDEFRLRI45AScUZOAASp0hFwwWQzZ/l77I2u45nvAEh5Ulf8czOjL+d + lWxX22iaZgJdGDXhGDt1XT9jkAnp5Rg7fhB+UleYlTfOMcNA03k8hDJdiTcAWvPkHCxpg4WVVKcYaSDF + mmXf5BxLYqSBYfN8A8MA8m+StyC9HBNgXmVgJmtGzTgmoDZQmsEGEB8h7P5/JsksjlUZcHEJ4hN240DC + wN/egV3xfwwg3m/CJcJ1Ccksjt1vQp0B5O6ZP2DKgdy15KH0s70HrYFD6AW6Y0pyZ9AHdMX4RPr6QM2D + awaMh/8FyF+yyW0k/D5Bj24RYOlYevuEmvACwlm6PYC1W+gVuoE20CmX1KgNSD7Se3S8YIkKi4EF5d4Z + o/jXDLh8F28Ah9OvTB7U2jehB+vuDjBsIb19Qtu4TSjIENSsGJoxGyjFVgMg+UgtqKyB7JfRDvj5ZSRg + YQ6lXJfUnKcDVfUJcL0q6EftHWEAAAAASUVORK5CYII= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCustomerManager.Designer.cs b/SYS.FormUI/AppFunction/FrmCustomerManager.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..ad435ba52079b576c1cbefed5973e1e6877bd78b --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCustomerManager.Designer.cs @@ -0,0 +1,366 @@ +namespace SYS.FormUI +{ + partial class FrmCustomerManager + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + this.gbCustoInfo = new System.Windows.Forms.GroupBox(); + this.txtCustoNo = new Sunny.UI.UITextBox(); + this.label2 = new System.Windows.Forms.Label(); + this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); + this.dgvCustomerList = new Sunny.UI.UIDataGridView(); + this.btnSerach = new Sunny.UI.UIButton(); + this.btnAddCusto = new Sunny.UI.UIButton(); + this.CustoNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.CustoName = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.CustoSex = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.CustoTel = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.CustoBirth = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.typeName = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.PassportName = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.CustoAdress = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.gbCustoInfo.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dgvCustomerList)).BeginInit(); + this.SuspendLayout(); + // + // gbCustoInfo + // + this.gbCustoInfo.Controls.Add(this.txtCustoNo); + this.gbCustoInfo.Controls.Add(this.label2); + this.gbCustoInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.gbCustoInfo.Location = new System.Drawing.Point(46, 420); + this.gbCustoInfo.Name = "gbCustoInfo"; + this.gbCustoInfo.Size = new System.Drawing.Size(763, 57); + this.gbCustoInfo.TabIndex = 73; + this.gbCustoInfo.TabStop = false; + this.gbCustoInfo.Text = "条件搜索栏"; + // + // txtCustoNo + // + this.txtCustoNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoNo.FillColor = System.Drawing.Color.White; + this.txtCustoNo.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoNo.Location = new System.Drawing.Point(327, 16); + this.txtCustoNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoNo.Maximum = 2147483647D; + this.txtCustoNo.Minimum = -2147483648D; + this.txtCustoNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoNo.Name = "txtCustoNo"; + this.txtCustoNo.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoNo.Radius = 20; + this.txtCustoNo.Size = new System.Drawing.Size(204, 33); + this.txtCustoNo.TabIndex = 88; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(232, 19); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(88, 25); + this.label2.TabIndex = 87; + this.label2.Text = "客户编号"; + // + // toolTip1 + // + this.toolTip1.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info; + this.toolTip1.ToolTipTitle = "获取账号"; + // + // dgvCustomerList + // + this.dgvCustomerList.AllowUserToAddRows = false; + this.dgvCustomerList.AllowUserToDeleteRows = false; + this.dgvCustomerList.AllowUserToResizeColumns = false; + this.dgvCustomerList.AllowUserToResizeRows = false; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvCustomerList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.dgvCustomerList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvCustomerList.BackgroundColor = System.Drawing.Color.White; + this.dgvCustomerList.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.dgvCustomerList.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Raised; + this.dgvCustomerList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvCustomerList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.dgvCustomerList.ColumnHeadersHeight = 32; + this.dgvCustomerList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvCustomerList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.CustoNo, + this.CustoName, + this.CustoSex, + this.CustoTel, + this.CustoBirth, + this.typeName, + this.PassportName, + this.CustoAdress, + this.Column1, + this.Column2, + this.Column3, + this.Column4, + this.Column5, + this.Column6, + this.Column7, + this.Column8, + this.Column9}); + this.dgvCustomerList.EnableHeadersVisualStyles = false; + this.dgvCustomerList.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvCustomerList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvCustomerList.Location = new System.Drawing.Point(12, 12); + this.dgvCustomerList.Name = "dgvCustomerList"; + this.dgvCustomerList.ReadOnly = true; + this.dgvCustomerList.RowHeadersVisible = false; + dataGridViewCellStyle3.BackColor = System.Drawing.Color.White; + this.dgvCustomerList.RowsDefaultCellStyle = dataGridViewCellStyle3; + this.dgvCustomerList.RowTemplate.Height = 29; + this.dgvCustomerList.SelectedIndex = -1; + this.dgvCustomerList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvCustomerList.ShowRect = false; + this.dgvCustomerList.Size = new System.Drawing.Size(1048, 402); + this.dgvCustomerList.Style = Sunny.UI.UIStyle.Custom; + this.dgvCustomerList.TabIndex = 83; + // + // btnSerach + // + this.btnSerach.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnSerach.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnSerach.Location = new System.Drawing.Point(815, 426); + this.btnSerach.MinimumSize = new System.Drawing.Size(1, 1); + this.btnSerach.Name = "btnSerach"; + this.btnSerach.Radius = 30; + this.btnSerach.Size = new System.Drawing.Size(103, 49); + this.btnSerach.TabIndex = 84; + this.btnSerach.Text = "搜 索"; + this.btnSerach.Click += new System.EventHandler(this.btnSerach_BtnClick); + // + // btnAddCusto + // + this.btnAddCusto.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnAddCusto.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnAddCusto.Location = new System.Drawing.Point(924, 426); + this.btnAddCusto.MinimumSize = new System.Drawing.Size(1, 1); + this.btnAddCusto.Name = "btnAddCusto"; + this.btnAddCusto.Radius = 30; + this.btnAddCusto.Size = new System.Drawing.Size(103, 49); + this.btnAddCusto.TabIndex = 85; + this.btnAddCusto.Text = "添加客户"; + this.btnAddCusto.Click += new System.EventHandler(this.btnAddCusto_BtnClick); + // + // CustoNo + // + this.CustoNo.DataPropertyName = "CustoNo"; + this.CustoNo.HeaderText = "客户编号"; + this.CustoNo.Name = "CustoNo"; + this.CustoNo.ReadOnly = true; + // + // CustoName + // + this.CustoName.DataPropertyName = "CustoName"; + this.CustoName.HeaderText = "客户姓名"; + this.CustoName.Name = "CustoName"; + this.CustoName.ReadOnly = true; + // + // CustoSex + // + this.CustoSex.DataPropertyName = "SexName"; + this.CustoSex.HeaderText = "性别"; + this.CustoSex.Name = "CustoSex"; + this.CustoSex.ReadOnly = true; + // + // CustoTel + // + this.CustoTel.DataPropertyName = "CustoTel"; + this.CustoTel.HeaderText = "联系方式"; + this.CustoTel.Name = "CustoTel"; + this.CustoTel.ReadOnly = true; + // + // CustoBirth + // + this.CustoBirth.DataPropertyName = "CustoBirth"; + this.CustoBirth.HeaderText = "出生日期"; + this.CustoBirth.Name = "CustoBirth"; + this.CustoBirth.ReadOnly = true; + // + // typeName + // + this.typeName.DataPropertyName = "typeName"; + this.typeName.HeaderText = "客户类型"; + this.typeName.Name = "typeName"; + this.typeName.ReadOnly = true; + // + // PassportName + // + this.PassportName.DataPropertyName = "PassportName"; + this.PassportName.HeaderText = "证件类型"; + this.PassportName.Name = "PassportName"; + this.PassportName.ReadOnly = true; + // + // CustoAdress + // + this.CustoAdress.DataPropertyName = "CustoAdress"; + this.CustoAdress.HeaderText = "客户地址"; + this.CustoAdress.Name = "CustoAdress"; + this.CustoAdress.ReadOnly = true; + // + // Column1 + // + this.Column1.DataPropertyName = "PassportType"; + this.Column1.HeaderText = "Column1"; + this.Column1.Name = "Column1"; + this.Column1.ReadOnly = true; + this.Column1.Visible = false; + // + // Column2 + // + this.Column2.DataPropertyName = "CustoType"; + this.Column2.HeaderText = "Column2"; + this.Column2.Name = "Column2"; + this.Column2.ReadOnly = true; + this.Column2.Visible = false; + // + // Column3 + // + this.Column3.DataPropertyName = "CustoID"; + this.Column3.HeaderText = "Column3"; + this.Column3.Name = "Column3"; + this.Column3.ReadOnly = true; + this.Column3.Visible = false; + // + // Column4 + // + this.Column4.DataPropertyName = "CustoSex"; + this.Column4.HeaderText = "Column4"; + this.Column4.Name = "Column4"; + this.Column4.ReadOnly = true; + this.Column4.Visible = false; + // + // Column5 + // + this.Column5.DataPropertyName = "delete_mk"; + this.Column5.HeaderText = "Column5"; + this.Column5.Name = "Column5"; + this.Column5.ReadOnly = true; + this.Column5.Visible = false; + // + // Column6 + // + this.Column6.DataPropertyName = "datains_usr"; + this.Column6.HeaderText = "Column6"; + this.Column6.Name = "Column6"; + this.Column6.ReadOnly = true; + this.Column6.Visible = false; + // + // Column7 + // + this.Column7.DataPropertyName = "datains_date"; + this.Column7.HeaderText = "Column7"; + this.Column7.Name = "Column7"; + this.Column7.ReadOnly = true; + this.Column7.Visible = false; + // + // Column8 + // + this.Column8.DataPropertyName = "datachg_usr"; + this.Column8.HeaderText = "Column8"; + this.Column8.Name = "Column8"; + this.Column8.ReadOnly = true; + this.Column8.Visible = false; + // + // Column9 + // + this.Column9.DataPropertyName = "datachg_date"; + this.Column9.HeaderText = "Column9"; + this.Column9.Name = "Column9"; + this.Column9.ReadOnly = true; + this.Column9.Visible = false; + // + // FrmCustomerManager + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(1072, 490); + this.Controls.Add(this.btnAddCusto); + this.Controls.Add(this.btnSerach); + this.Controls.Add(this.dgvCustomerList); + this.Controls.Add(this.gbCustoInfo); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Name = "FrmCustomerManager"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "TS酒店管理系统"; + this.Load += new System.EventHandler(this.FrmCustomerManager_Load); + this.gbCustoInfo.ResumeLayout(false); + this.gbCustoInfo.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dgvCustomerList)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + private System.Windows.Forms.GroupBox gbCustoInfo; + private System.Windows.Forms.ToolTip toolTip1; + private System.Windows.Forms.Label label2; + private Sunny.UI.UIDataGridView dgvCustomerList; + private Sunny.UI.UIButton btnSerach; + private Sunny.UI.UITextBox txtCustoNo; + private Sunny.UI.UIButton btnAddCusto; + private System.Windows.Forms.DataGridViewTextBoxColumn CustoNo; + private System.Windows.Forms.DataGridViewTextBoxColumn CustoName; + private System.Windows.Forms.DataGridViewTextBoxColumn CustoSex; + private System.Windows.Forms.DataGridViewTextBoxColumn CustoTel; + private System.Windows.Forms.DataGridViewTextBoxColumn CustoBirth; + private System.Windows.Forms.DataGridViewTextBoxColumn typeName; + private System.Windows.Forms.DataGridViewTextBoxColumn PassportName; + private System.Windows.Forms.DataGridViewTextBoxColumn CustoAdress; + private System.Windows.Forms.DataGridViewTextBoxColumn Column1; + private System.Windows.Forms.DataGridViewTextBoxColumn Column2; + private System.Windows.Forms.DataGridViewTextBoxColumn Column3; + private System.Windows.Forms.DataGridViewTextBoxColumn Column4; + private System.Windows.Forms.DataGridViewTextBoxColumn Column5; + private System.Windows.Forms.DataGridViewTextBoxColumn Column6; + private System.Windows.Forms.DataGridViewTextBoxColumn Column7; + private System.Windows.Forms.DataGridViewTextBoxColumn Column8; + private System.Windows.Forms.DataGridViewTextBoxColumn Column9; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmCustomerManager.cs b/SYS.FormUI/AppFunction/FrmCustomerManager.cs new file mode 100644 index 0000000000000000000000000000000000000000..ce5d6273740a6074bc53eca4341a6fb68a4352c3 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCustomerManager.cs @@ -0,0 +1,175 @@ +using System; +using MySql.Data.MySqlClient; +using System.Text.RegularExpressions; +using System.Windows.Forms; +using SYS.Core; +using SYS.FormUI.Properties; +using System.Collections.Generic; +using System.Linq; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class FrmCustomerManager : Form + { + public FrmCustomerManager() + { + InitializeComponent(); + } + + #region 用户管理界面加载事件方法 + private void FrmCustomerManager_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.childControlFont; + } + LoadCustomer(); + + } + #endregion + + #region 加载用户信息列表 + private void LoadCustomer() + { + + List lstSource = new CustoService().SelectCustoAll(); + this.dgvCustomerList.DataSource = lstSource; + this.dgvCustomerList.AutoGenerateColumns = false; + } + #endregion + + #region 计算点击次数 + private int n = 0; + #endregion + + #region 隐藏显示信息 + private void picShow_Click(object sender, EventArgs e) + { + //if (n == 0) + //{ + // this.picShow.BackgroundImage = Resources.隐藏; + // n = 1; + // txtCardID.PasswordChar = Convert.ToChar("*"); + + //} + //else if (n == 1) + //{ + // DialogResult ret = MessageBox.Show("证件号码为敏感信息,确定要进行查看吗?(此步操作将写入操作日志)", "信息提醒", MessageBoxButtons.YesNo); + // if (ret == DialogResult.Yes) + // { + // this.picShow.BackgroundImage = Resources.显示; + // n = 0; + // txtCardID.PasswordChar = new char(); + // #region 获取添加操作日志所需的信息 + // Operation o = new Operation(); + // o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + // o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "查看了" + txtCustoNo.Text + "的证件号码!"; + // o.OperationAccount = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName; + // #endregion + // OperationManager.InsertOperationLog(o); + // } + // else + // { + // MessageBox.Show("操作不成功!"); + // } + + //} + } + #endregion + + #region 导出事件方法 + private void picLoadOut_Click(object sender, EventArgs e) + { + #region 导出信息保存为Excel表 + DialogResult ret = MessageBox.Show("导出信息为敏感操作,确定要继续导出吗?(此步操作将写入操作日志)", "信息提醒", MessageBoxButtons.YesNo); + if (ret == DialogResult.Yes) + { + + //Response.ContentEncoding = System.Text.Encoding.UTF8; + string fileName = ""; + string saveFileName = ""; + //fileName.Charset = "GB2312"; + SaveFileDialog saveDialog = new SaveFileDialog(); + //saveDialog.DefaultExt = "xls"; + saveDialog.FileName = fileName; + saveDialog.Filter = "2003~2007工作表*.xls|*.xls|2010及以上版本工作表*.xlsx|*.xlsx"; + saveDialog.ShowDialog(); + saveFileName = saveDialog.FileName; + if (saveFileName.IndexOf(":") < 0) return; + Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application(); + if (xlApp == null) + { + MessageBox.Show("无法创建Excel对象,您的电脑可能未安装Excel!", "来自T仔的提醒"); + return; + } + Microsoft.Office.Interop.Excel.Workbooks workbooks = xlApp.Workbooks; + Microsoft.Office.Interop.Excel.Workbook workbook = workbooks.Add(Microsoft.Office.Interop.Excel.XlWBATemplate.xlWBATWorksheet); + Microsoft.Office.Interop.Excel.Worksheet worksheet = (Microsoft.Office.Interop.Excel.Worksheet)workbook.Worksheets[1]; + for (int i = 0; i < this.dgvCustomerList.Columns.Count; i++) + { + xlApp.Cells[1, i + 1] = dgvCustomerList.Columns[i].HeaderText; + } + for (int i = 0; i < dgvCustomerList.Rows.Count; i++)//添加每一项 + { + for (int j = 0; j < dgvCustomerList.Columns.Count; j++) + { + xlApp.Cells[i + 2, j + 1] = dgvCustomerList.Rows[i].Cells[j].ToString(); + } + } + System.Windows.Forms.Application.DoEvents(); + worksheet.Columns.EntireColumn.AutoFit();//列宽自适应 + MessageBox.Show(fileName + "信息导出成功", "来自T仔提示", MessageBoxButtons.OK); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerName + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "导出了" + "用户信息!"; + o.OperationAccount = LoginInfo.WorkerNo; + o.datains_usr = LoginInfo.WorkerNo; + o.datains_date = DateTime.Now; + #endregion + new OperationlogService().InsertOperationLog(o); + System.Diagnostics.Process.Start("Explorer.exe", saveFileName); + if (saveFileName != "") + { + try + { + workbook.Saved = true; + workbook.SaveCopyAs(saveFileName); //fileSaved = true; + } + catch (Exception ex) + {//fileSaved = false; + MessageBox.Show("导出文件时出错,文件可能正被打开!\n" + ex.Message); + } + } + xlApp.Quit(); + GC.Collect(); + #endregion + } + } + #endregion + + + private void btnSerach_BtnClick(object sender, EventArgs e) + { + if (txtCustoNo.Text != "") + { + //dgvCustomerList.ClearRows(); + var source = new CustoService().SelectCardInfoByCustoNo(txtCustoNo.Text); + dgvCustomerList.DataSource = source; + dgvCustomerList.AutoGenerateColumns = false; + } + else + { + MessageBox.Show("请输入客户编号!"); + } + } + + private void btnAddCusto_BtnClick(object sender, EventArgs e) + { + FrmInputs frmInputs = new FrmInputs(); + frmInputs.ShowDialog(); + } + } + +} diff --git a/SYS.FormUI/AppFunction/FrmCustomerManager.resx b/SYS.FormUI/AppFunction/FrmCustomerManager.resx new file mode 100644 index 0000000000000000000000000000000000000000..03dcc7e485272e2b4af240d004364ea2f0ac9183 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmCustomerManager.resx @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmDepartment.Designer.cs b/SYS.FormUI/AppFunction/FrmDepartment.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..9e9c2318bdd6a437636e02e5639e7c05ca251d8f --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmDepartment.Designer.cs @@ -0,0 +1,465 @@ + +namespace SYS.FormUI +{ + partial class FrmDepartment + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmDepartment)); + this.dgvDeptList = new Sunny.UI.UIDataGridView(); + this.cboDeptParent = new Sunny.UI.UIComboBox(); + this.label1 = new System.Windows.Forms.Label(); + this.btnAddDept = new Sunny.UI.UIButton(); + this.label9 = new System.Windows.Forms.Label(); + this.cboDeptLeader = new Sunny.UI.UIComboBox(); + this.label8 = new System.Windows.Forms.Label(); + this.txtDeptDesc = new Sunny.UI.UITextBox(); + this.label7 = new System.Windows.Forms.Label(); + this.txtDeptName = new Sunny.UI.UITextBox(); + this.label20 = new System.Windows.Forms.Label(); + this.txtDeptNo = new Sunny.UI.UITextBox(); + this.btnUpdateDept = new Sunny.UI.UIButton(); + this.btnDeleteDept = new Sunny.UI.UIButton(); + this.clDeptNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clDeptName = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clDeptDesc = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clDeptDate = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clDeptLeader = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clDeptParent = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + ((System.ComponentModel.ISupportInitialize)(this.dgvDeptList)).BeginInit(); + this.SuspendLayout(); + // + // dgvDeptList + // + this.dgvDeptList.AllowUserToAddRows = false; + this.dgvDeptList.AllowUserToDeleteRows = false; + this.dgvDeptList.AllowUserToResizeColumns = false; + this.dgvDeptList.AllowUserToResizeRows = false; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvDeptList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.dgvDeptList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvDeptList.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvDeptList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvDeptList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.dgvDeptList.ColumnHeadersHeight = 32; + this.dgvDeptList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvDeptList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.clDeptNo, + this.clDeptName, + this.clDeptDesc, + this.clDeptDate, + this.clDeptLeader, + this.clDeptParent, + this.Column1, + this.Column2, + this.Column3, + this.Column4, + this.Column5, + this.Column6, + this.Column7}); + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); + dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvDeptList.DefaultCellStyle = dataGridViewCellStyle3; + this.dgvDeptList.EnableHeadersVisualStyles = false; + this.dgvDeptList.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvDeptList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvDeptList.Location = new System.Drawing.Point(3, 38); + this.dgvDeptList.MultiSelect = false; + this.dgvDeptList.Name = "dgvDeptList"; + this.dgvDeptList.ReadOnly = true; + this.dgvDeptList.RowHeadersVisible = false; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.White; + this.dgvDeptList.RowsDefaultCellStyle = dataGridViewCellStyle4; + this.dgvDeptList.RowTemplate.Height = 29; + this.dgvDeptList.SelectedIndex = -1; + this.dgvDeptList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvDeptList.ShowGridLine = true; + this.dgvDeptList.Size = new System.Drawing.Size(788, 582); + this.dgvDeptList.TabIndex = 0; + this.dgvDeptList.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvDeptList_CellClick); + // + // cboDeptParent + // + this.cboDeptParent.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboDeptParent.FillColor = System.Drawing.Color.White; + this.cboDeptParent.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.cboDeptParent.Location = new System.Drawing.Point(820, 400); + this.cboDeptParent.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboDeptParent.MinimumSize = new System.Drawing.Size(63, 0); + this.cboDeptParent.Name = "cboDeptParent"; + this.cboDeptParent.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboDeptParent.Radius = 20; + this.cboDeptParent.Size = new System.Drawing.Size(165, 29); + this.cboDeptParent.TabIndex = 182; + this.cboDeptParent.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cboDeptParent.Watermark = ""; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(858, 369); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(85, 19); + this.label1.TabIndex = 181; + this.label1.Text = "上级部门"; + // + // btnAddDept + // + this.btnAddDept.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnAddDept.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnAddDept.Location = new System.Drawing.Point(820, 441); + this.btnAddDept.MinimumSize = new System.Drawing.Size(1, 1); + this.btnAddDept.Name = "btnAddDept"; + this.btnAddDept.Radius = 20; + this.btnAddDept.Size = new System.Drawing.Size(165, 33); + this.btnAddDept.TabIndex = 180; + this.btnAddDept.Text = "新增部门"; + this.btnAddDept.Click += new System.EventHandler(this.btnAddDept_Click); + // + // label9 + // + this.label9.AutoSize = true; + this.label9.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label9.Location = new System.Drawing.Point(858, 297); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(85, 19); + this.label9.TabIndex = 175; + this.label9.Text = "部门主管"; + // + // cboDeptLeader + // + this.cboDeptLeader.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboDeptLeader.FillColor = System.Drawing.Color.White; + this.cboDeptLeader.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.cboDeptLeader.Location = new System.Drawing.Point(820, 328); + this.cboDeptLeader.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboDeptLeader.MinimumSize = new System.Drawing.Size(63, 0); + this.cboDeptLeader.Name = "cboDeptLeader"; + this.cboDeptLeader.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboDeptLeader.Radius = 20; + this.cboDeptLeader.Size = new System.Drawing.Size(165, 29); + this.cboDeptLeader.TabIndex = 174; + this.cboDeptLeader.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cboDeptLeader.Watermark = ""; + // + // label8 + // + this.label8.AutoSize = true; + this.label8.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label8.Location = new System.Drawing.Point(858, 225); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(85, 19); + this.label8.TabIndex = 173; + this.label8.Text = "部门描述"; + // + // txtDeptDesc + // + this.txtDeptDesc.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtDeptDesc.FillColor = System.Drawing.Color.White; + this.txtDeptDesc.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtDeptDesc.Location = new System.Drawing.Point(820, 256); + this.txtDeptDesc.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtDeptDesc.Maximum = 2147483647D; + this.txtDeptDesc.Minimum = -2147483648D; + this.txtDeptDesc.MinimumSize = new System.Drawing.Size(1, 1); + this.txtDeptDesc.Name = "txtDeptDesc"; + this.txtDeptDesc.Padding = new System.Windows.Forms.Padding(5); + this.txtDeptDesc.Radius = 20; + this.txtDeptDesc.Size = new System.Drawing.Size(165, 29); + this.txtDeptDesc.Style = Sunny.UI.UIStyle.Custom; + this.txtDeptDesc.StyleCustomMode = true; + this.txtDeptDesc.TabIndex = 172; + // + // label7 + // + this.label7.AutoSize = true; + this.label7.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label7.Location = new System.Drawing.Point(858, 153); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(85, 19); + this.label7.TabIndex = 171; + this.label7.Text = "部门名称"; + // + // txtDeptName + // + this.txtDeptName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtDeptName.FillColor = System.Drawing.Color.White; + this.txtDeptName.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtDeptName.Location = new System.Drawing.Point(820, 184); + this.txtDeptName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtDeptName.Maximum = 2147483647D; + this.txtDeptName.Minimum = -2147483648D; + this.txtDeptName.MinimumSize = new System.Drawing.Size(1, 1); + this.txtDeptName.Name = "txtDeptName"; + this.txtDeptName.Padding = new System.Windows.Forms.Padding(5); + this.txtDeptName.Radius = 20; + this.txtDeptName.Size = new System.Drawing.Size(165, 29); + this.txtDeptName.Style = Sunny.UI.UIStyle.Custom; + this.txtDeptName.StyleCustomMode = true; + this.txtDeptName.TabIndex = 170; + // + // label20 + // + this.label20.AutoSize = true; + this.label20.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label20.Location = new System.Drawing.Point(858, 81); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(85, 19); + this.label20.TabIndex = 169; + this.label20.Text = "部门编号"; + // + // txtDeptNo + // + this.txtDeptNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtDeptNo.FillColor = System.Drawing.Color.White; + this.txtDeptNo.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtDeptNo.Location = new System.Drawing.Point(820, 112); + this.txtDeptNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtDeptNo.Maximum = 2147483647D; + this.txtDeptNo.Minimum = -2147483648D; + this.txtDeptNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtDeptNo.Name = "txtDeptNo"; + this.txtDeptNo.Padding = new System.Windows.Forms.Padding(5); + this.txtDeptNo.Radius = 20; + this.txtDeptNo.ReadOnly = true; + this.txtDeptNo.Size = new System.Drawing.Size(165, 29); + this.txtDeptNo.Style = Sunny.UI.UIStyle.Custom; + this.txtDeptNo.StyleCustomMode = true; + this.txtDeptNo.TabIndex = 168; + // + // btnUpdateDept + // + this.btnUpdateDept.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnUpdateDept.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnUpdateDept.Location = new System.Drawing.Point(820, 486); + this.btnUpdateDept.MinimumSize = new System.Drawing.Size(1, 1); + this.btnUpdateDept.Name = "btnUpdateDept"; + this.btnUpdateDept.Radius = 20; + this.btnUpdateDept.Size = new System.Drawing.Size(165, 33); + this.btnUpdateDept.TabIndex = 183; + this.btnUpdateDept.Text = "更新部门"; + this.btnUpdateDept.Click += new System.EventHandler(this.btnUpdateDept_Click); + // + // btnDeleteDept + // + this.btnDeleteDept.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnDeleteDept.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnDeleteDept.Location = new System.Drawing.Point(820, 531); + this.btnDeleteDept.MinimumSize = new System.Drawing.Size(1, 1); + this.btnDeleteDept.Name = "btnDeleteDept"; + this.btnDeleteDept.Radius = 20; + this.btnDeleteDept.Size = new System.Drawing.Size(165, 33); + this.btnDeleteDept.TabIndex = 184; + this.btnDeleteDept.Text = "删除部门"; + this.btnDeleteDept.Click += new System.EventHandler(this.btnDeleteDept_Click); + // + // clDeptNo + // + this.clDeptNo.DataPropertyName = "dept_no"; + this.clDeptNo.HeaderText = "部门编号"; + this.clDeptNo.Name = "clDeptNo"; + this.clDeptNo.ReadOnly = true; + // + // clDeptName + // + this.clDeptName.DataPropertyName = "dept_name"; + this.clDeptName.HeaderText = "部门名称"; + this.clDeptName.Name = "clDeptName"; + this.clDeptName.ReadOnly = true; + // + // clDeptDesc + // + this.clDeptDesc.DataPropertyName = "dept_desc"; + this.clDeptDesc.HeaderText = "部门描述"; + this.clDeptDesc.Name = "clDeptDesc"; + this.clDeptDesc.ReadOnly = true; + // + // clDeptDate + // + this.clDeptDate.DataPropertyName = "dept_date"; + this.clDeptDate.HeaderText = "部门创建时间"; + this.clDeptDate.Name = "clDeptDate"; + this.clDeptDate.ReadOnly = true; + // + // clDeptLeader + // + this.clDeptLeader.DataPropertyName = "leader_name"; + this.clDeptLeader.HeaderText = "部门主管"; + this.clDeptLeader.Name = "clDeptLeader"; + this.clDeptLeader.ReadOnly = true; + // + // clDeptParent + // + this.clDeptParent.DataPropertyName = "parent_name"; + this.clDeptParent.HeaderText = "上级部门"; + this.clDeptParent.Name = "clDeptParent"; + this.clDeptParent.ReadOnly = true; + // + // Column1 + // + this.Column1.DataPropertyName = "delete_mk"; + this.Column1.HeaderText = "Column1"; + this.Column1.Name = "Column1"; + this.Column1.ReadOnly = true; + this.Column1.Visible = false; + // + // Column2 + // + this.Column2.DataPropertyName = "datains_usr"; + this.Column2.HeaderText = "Column2"; + this.Column2.Name = "Column2"; + this.Column2.ReadOnly = true; + this.Column2.Visible = false; + // + // Column3 + // + this.Column3.DataPropertyName = "datains_date"; + this.Column3.HeaderText = "Column3"; + this.Column3.Name = "Column3"; + this.Column3.ReadOnly = true; + this.Column3.Visible = false; + // + // Column4 + // + this.Column4.DataPropertyName = "datachg_usr"; + this.Column4.HeaderText = "Column4"; + this.Column4.Name = "Column4"; + this.Column4.ReadOnly = true; + this.Column4.Visible = false; + // + // Column5 + // + this.Column5.DataPropertyName = "datachg_date"; + this.Column5.HeaderText = "Column5"; + this.Column5.Name = "Column5"; + this.Column5.ReadOnly = true; + this.Column5.Visible = false; + // + // Column6 + // + this.Column6.DataPropertyName = "dept_leader"; + this.Column6.HeaderText = "Column6"; + this.Column6.Name = "Column6"; + this.Column6.ReadOnly = true; + this.Column6.Visible = false; + // + // Column7 + // + this.Column7.DataPropertyName = "dept_parent"; + this.Column7.HeaderText = "Column7"; + this.Column7.Name = "Column7"; + this.Column7.ReadOnly = true; + this.Column7.Visible = false; + // + // FrmDepartment + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.btnDeleteDept); + this.Controls.Add(this.btnUpdateDept); + this.Controls.Add(this.cboDeptParent); + this.Controls.Add(this.label1); + this.Controls.Add(this.btnAddDept); + this.Controls.Add(this.label9); + this.Controls.Add(this.cboDeptLeader); + this.Controls.Add(this.label8); + this.Controls.Add(this.txtDeptDesc); + this.Controls.Add(this.label7); + this.Controls.Add(this.txtDeptName); + this.Controls.Add(this.label20); + this.Controls.Add(this.txtDeptNo); + this.Controls.Add(this.dgvDeptList); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmDepartment"; + this.ShowIcon = true; + this.Text = "部门信息维护"; + this.Load += new System.EventHandler(this.FrmDepartment_Load); + ((System.ComponentModel.ISupportInitialize)(this.dgvDeptList)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private Sunny.UI.UIDataGridView dgvDeptList; + private Sunny.UI.UIComboBox cboDeptParent; + private System.Windows.Forms.Label label1; + private Sunny.UI.UIButton btnAddDept; + private System.Windows.Forms.Label label9; + private Sunny.UI.UIComboBox cboDeptLeader; + private System.Windows.Forms.Label label8; + private Sunny.UI.UITextBox txtDeptDesc; + private System.Windows.Forms.Label label7; + private Sunny.UI.UITextBox txtDeptName; + private System.Windows.Forms.Label label20; + private Sunny.UI.UITextBox txtDeptNo; + private Sunny.UI.UIButton btnUpdateDept; + private Sunny.UI.UIButton btnDeleteDept; + private System.Windows.Forms.DataGridViewTextBoxColumn clDeptNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clDeptName; + private System.Windows.Forms.DataGridViewTextBoxColumn clDeptDesc; + private System.Windows.Forms.DataGridViewTextBoxColumn clDeptDate; + private System.Windows.Forms.DataGridViewTextBoxColumn clDeptLeader; + private System.Windows.Forms.DataGridViewTextBoxColumn clDeptParent; + private System.Windows.Forms.DataGridViewTextBoxColumn Column1; + private System.Windows.Forms.DataGridViewTextBoxColumn Column2; + private System.Windows.Forms.DataGridViewTextBoxColumn Column3; + private System.Windows.Forms.DataGridViewTextBoxColumn Column4; + private System.Windows.Forms.DataGridViewTextBoxColumn Column5; + private System.Windows.Forms.DataGridViewTextBoxColumn Column6; + private System.Windows.Forms.DataGridViewTextBoxColumn Column7; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmDepartment.cs b/SYS.FormUI/AppFunction/FrmDepartment.cs new file mode 100644 index 0000000000000000000000000000000000000000..dcec4f33fb5d9b0543e7fa68eafff11598d9825a --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmDepartment.cs @@ -0,0 +1,197 @@ +using Sunny.UI; +using SYS.Application; +using SYS.Core; +using SYS.FormUI.Properties; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmDepartment : UIForm + { + public FrmDepartment() + { + InitializeComponent(); + } + + private void FrmDepartment_Load(object sender, EventArgs e) + { + ReloadDeptList(); + } + + public void ReloadDeptList() + { + LoadDept(); + LoadLeader(); + txtDeptNo.Text = new CounterHelper().GetNewId("DeptInfo"); + dgvDeptList.AutoGenerateColumns = false; + dgvDeptList.DataSource = new BaseService().SelectDeptAllCanUse(); + } + + public void LoadDept() + { + cboDeptParent.DataSource = new BaseService().SelectDeptAllCanUse(); + cboDeptParent.DisplayMember = "dept_name"; + cboDeptParent.ValueMember = "dept_no"; + } + + public void LoadLeader() + { + cboDeptLeader.DataSource = new WorkerService().SelectWorkerAll(); + cboDeptLeader.DisplayMember = "WorkerName"; + cboDeptLeader.ValueMember = "WorkerId"; + } + + public bool CheckInput(Dept dept) + { + if (string.IsNullOrWhiteSpace(dept.dept_no)) + { + return false; + } + if (string.IsNullOrWhiteSpace(dept.dept_name)) + { + return false; + } + if (string.IsNullOrWhiteSpace(dept.dept_desc)) + { + return false; + } + return true; + } + + private void btnAddDept_Click(object sender, EventArgs e) + { + Dept dept = new Dept() + { + dept_no = txtDeptNo.Text.Trim(), + dept_name = txtDeptName.Text.Trim(), + dept_desc = txtDeptDesc.Text.Trim(), + dept_parent = cboDeptParent.SelectedValue.ToString(), + dept_date = DateTime.Now, + dept_leader = cboDeptLeader.SelectedValue.ToString() + }; + if (CheckInput(dept)) + { + bool tf = new BaseService().AddDept(dept); + if (tf == false) + { + UIMessageBox.Show("添加失败!或是服务器繁忙所致,请稍后重试!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + return; + } + UIMessageBox.Show("添加成功!", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); + OperationLog operationLog = new OperationLog() + { + OperationTime = DateTime.Now, + Operationlog = AdminInfo.Account + AdminInfo.Name + "于" + DateTime.Now.ToString("yyyy年MM月dd日") + "添加了一个部门,部门编号为" + dept.dept_no, + OperationAccount = AdminInfo.Account, + datains_usr = AdminInfo.Account, + datains_date = DateTime.Now + }; + new OperationlogService().InsertOperationLog(operationLog); + ReloadDeptList(); + return; + } + else + { + UIMessageBox.Show("信息不完整,请检查!", "系统提示", UIStyle.Orange, UIMessageBoxButtons.OK); + return; + } + + } + + private void dgvDeptList_CellClick(object sender, DataGridViewCellEventArgs e) + { + if (dgvDeptList.SelectedRows.Count == 1) + { + txtDeptNo.Text = dgvDeptList.SelectedRows[0].Cells["clDeptNo"].Value.ToString(); + txtDeptName.Text = dgvDeptList.SelectedRows[0].Cells["clDeptName"].Value.ToString(); + txtDeptDesc.Text = dgvDeptList.SelectedRows[0].Cells["clDeptDesc"].Value.ToString(); + } + } + + private void btnUpdateDept_Click(object sender, EventArgs e) + { + Dept dept = new Dept() + { + dept_no = txtDeptNo.Text.Trim(), + dept_name = txtDeptName.Text.Trim(), + dept_desc = txtDeptDesc.Text.Trim(), + dept_parent = cboDeptParent.SelectedValue == null ? "" : cboDeptParent.SelectedValue.ToString(), + dept_leader = cboDeptLeader.SelectedValue == null ? "" : cboDeptLeader.SelectedValue.ToString(), + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }; + if (CheckInput(dept)) + { + bool tf = new BaseService().UpdDept(dept); + if (tf == false) + { + UIMessageBox.Show("修改失败!或是服务器繁忙所致,请稍后重试!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + return; + } + UIMessageBox.Show("修改成功!", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); + OperationLog operationLog = new OperationLog() + { + OperationTime = DateTime.Now, + Operationlog = AdminInfo.Account + AdminInfo.Name + "于" + DateTime.Now.ToString("yyyy年MM月dd日") + "修改了一个部门,部门编号为" + dept.dept_no, + OperationAccount = AdminInfo.Account, + datains_usr = AdminInfo.Account, + datains_date = DateTime.Now + }; + new OperationlogService().InsertOperationLog(operationLog); + ReloadDeptList(); + return; + } + else + { + UIMessageBox.Show("信息不完整,请检查!", "系统提示", UIStyle.Orange, UIMessageBoxButtons.OK); + return; + } + } + + private void btnDeleteDept_Click(object sender, EventArgs e) + { + if (dgvDeptList.SelectedRows.Count == 1) + { + Dept dept = new Dept() + { + dept_no = txtDeptNo.Text.Trim(), + dept_name = txtDeptName.Text.Trim(), + dept_desc = txtDeptDesc.Text.Trim(), + dept_parent = cboDeptParent.SelectedValue.ToString(), + dept_date = DateTime.Now, + dept_leader = cboDeptLeader.SelectedValue.ToString() + }; + bool tf = new BaseService().DelDept(dept); + if (tf == false) + { + UIMessageBox.Show("删除失败!或是服务器繁忙所致,请稍后重试!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + return; + } + UIMessageBox.Show("删除成功!", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); + OperationLog operationLog = new OperationLog() + { + OperationTime = DateTime.Now, + Operationlog = AdminInfo.Account + AdminInfo.Name + "于" + DateTime.Now.ToString("yyyy年MM月dd日") + "修改了一个部门,部门编号为" + dept.dept_no, + OperationAccount = AdminInfo.Account, + datains_usr = AdminInfo.Account, + datains_date = DateTime.Now + }; + new OperationlogService().InsertOperationLog(operationLog); + ReloadDeptList(); + return; + } + + } + } + + + +} diff --git a/SYS.FormUI/AppFunction/FrmDepartment.resx b/SYS.FormUI/AppFunction/FrmDepartment.resx new file mode 100644 index 0000000000000000000000000000000000000000..ac993bf9025f8b87f162e2a0593c84b7911f9832 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmDepartment.resx @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAICAAAAEAGADYAAAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAbUlEQVRYR+2WMQoA + IAwD/f+ndVGHSiiFIILXxcHQxlNLW5vRL8Wqd6yX6vfUgBSEjWXYprcnrBrGAAT+JaAakPrfdr09ofj/ + sc6WxbvP3oJdb0+YdMDjgBiAAAQgAAEIQAACz4xkcmarznhF/QC4XwpL07/nXAAAAABJRU5ErkJggg== + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmEducation.Designer.cs b/SYS.FormUI/AppFunction/FrmEducation.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..7f97e8d53f00b9716e8de1e3bf94f6c0f63a14af --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmEducation.Designer.cs @@ -0,0 +1,69 @@ + +namespace SYS.FormUI +{ + partial class FrmEducation + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmEducation)); + this.flpInformation = new System.Windows.Forms.FlowLayoutPanel(); + this.SuspendLayout(); + // + // flpInformation + // + this.flpInformation.AutoScroll = true; + this.flpInformation.BackColor = System.Drawing.Color.Transparent; + this.flpInformation.Location = new System.Drawing.Point(441, 39); + this.flpInformation.Margin = new System.Windows.Forms.Padding(2); + this.flpInformation.Name = "flpInformation"; + this.flpInformation.Size = new System.Drawing.Size(562, 582); + this.flpInformation.TabIndex = 73; + this.flpInformation.SizeChanged += new System.EventHandler(this.flpInformation_SizeChanged); + // + // FrmEducation + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.flpInformation); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmEducation"; + this.ShowIcon = true; + this.Text = "学历类型维护"; + this.Load += new System.EventHandler(this.FrmEducation_Load); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.FlowLayoutPanel flpInformation; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmEducation.cs b/SYS.FormUI/AppFunction/FrmEducation.cs new file mode 100644 index 0000000000000000000000000000000000000000..b2c4baa0b7e8b6bc942822c0deca413dab7872a0 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmEducation.cs @@ -0,0 +1,158 @@ +using Sunny.UI; +using SYS.Application; +using SYS.Core; +using SYS.FormUI.Properties; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmEducation : UIForm + { + public delegate void OperationEducation(); + + + //定义委托类型的变量 + public static OperationEducation operation; + + public static OperationEducation reload; + + public static OperationEducation Accessed; + + public static OperationEducation insert; + + public FrmEducation() + { + InitializeComponent(); + operation = Visited; + reload = ReloadEducationList; + Accessed = Access; + insert = Insert; + } + ucEducationInformation baseInfo = null; + List educations = null; + public static string info = null; + private void FrmEducation_Load(object sender, EventArgs e) + { + ReloadEducationList(); + } + + + public void ReloadEducationList() + { + flpInformation.Controls.Clear(); + baseInfo = new ucEducationInformation(); + baseInfo.Tag = "学历"; + baseInfo.BackgroundImage = Resources.添加__增加___加; + baseInfo.lbName.Text = "新增学历类型"; + baseInfo.btnOperation.Text = "新增"; + baseInfo.btnOperation.FillColor = Color.FromArgb(80, 160, 255); + baseInfo.btnOperation.FillHoverColor = Color.FromArgb(80, 180, 255); + flpInformation.Controls.Add(baseInfo); + educations = new BaseService().SelectEducationAll(); + for (int i = 0; i < educations.Count; i++) + { + baseInfo = new ucEducationInformation(); + baseInfo.Tag = "学历"; + baseInfo.lbName.Text = "名称:" + educations[i].education_name; + if (educations[i].delete_mk == 1) + { + baseInfo.btnOperation.Text = "恢复"; + baseInfo.btnOperation.FillColor = Color.FromArgb(33, 179, 81); + baseInfo.lbName.BackColor = Color.Red; + baseInfo.btnOperation.FillHoverColor = Color.FromArgb(128, 255, 128); + } + flpInformation.Controls.Add(baseInfo); + } + } + + private void flpInformation_SizeChanged(object sender, EventArgs e) + { + flpInformation.Width = 660; + flpInformation.Height = 582; + } + + public void Visited() + { + //筛选出只与当前学历对应的数据 + Education education = educations.FirstOrDefault(a => a.education_name.Equals(info)); + if (education.education_name.Equals(info)) + { + var _education = new Education() + { + education_no = education.education_no, + delete_mk = 1, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }; + if (_education != null) + { + bool n = new BaseService().DelEducation(_education); + if (n == true) + { + UIMessageBox.ShowSuccess("删除成功!"); + ReloadEducationList(); + } + } + } + } + public void Access() + { + //筛选出只与当前学历对应的数据 + Education education = educations.FirstOrDefault(a => a.education_name.Equals(info)); + if (education.education_name.Equals(info)) + { + var _education = new Education() + { + education_no = education.education_no, + delete_mk = 0, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }; + if (_education != null) + { + bool n = new BaseService().DelEducation(_education); + if (n == true) + { + UIMessageBox.ShowSuccess("恢复成功!"); + ReloadEducationList(); + } + } + } + + } + + public void Insert() + { + if (string.IsNullOrWhiteSpace(info)) + { + UIMessageBox.Show("学历名称不能为空,请检查!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + return; + } + var _education = new Education() + { + education_no = new SYS.Core.CounterHelper().GetNewId("EducationId").ToString(), + education_name = info, + delete_mk = 0, + datains_usr = AdminInfo.Account, + datains_date = DateTime.Now + }; + if (_education != null) + { + bool n = new BaseService().AddEducation(_education); + if (n == true) + { + UIMessageBox.ShowSuccess("新增成功!"); + ReloadEducationList(); + } + } + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmEducation.resx b/SYS.FormUI/AppFunction/FrmEducation.resx new file mode 100644 index 0000000000000000000000000000000000000000..4691df250e9ef86c15e54aba5fdd92af2d104af2 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmEducation.resx @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGACVAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAADKklEQVRYR+2XS0gV + URjHr/SWdCFmD8xCSog2PYhaCOkiIougqFZRES4Me1EEUUEgFBGmQQUlkRS0CaxFQS2KLHpID1RMFFpU + ED2kF1pqWff2+65nLt9Mo3Pm3tvOCz/mfOd8j/+cOXPm3EgkiV80Gs2GcmiFTtgVi8Vyk0gVLoQiGRRb + BNdou3703aKjBMaEy2rpTYEsqKLAN6cy9lPajcrupq8acizT2rmRcB08V4W6sPdiZ3IdB1vhtRpvx95k + l30YL5LMh3r4Lsm5/oEGKPKGMVxA/znoNb4DXK9gLwkthKDJsBteqbt6ib06KBk+S6FFxX3APgj5QbER + gsbiWAq34be5kx+0j8pUByZQDvjvhB41c4+xV8EE3zwMTIIa6FLqb2DPDlNY+xKbBxdVvs/YZ2GGKycd + m6HZs4g2Yk9MtrgTR47x5F4JTZ7822QswkC9R2EtdmGqhb3x1JkGh+Gdqlctz11W9wDco1mS7sI+QhZT + Sx5tPzyMCzAieulooL3wf4kg/1yZceg2NesSApSQ9zhUQfBrY6mU3Lnk2wOJ15q+xvhiNEp6MGq1A+0W + 2MB4pmWdf9zMa72MPA88C3A7fdnxACWgwiyU01z7VMB17CLsjDBC8J9C3CWV5xO2fCemu/JoAerV2e8E + qgQnbAUQ44qn6Eeo9I0fTgBB8lH5qkRIe8tQQvBdA2+Uv+yizakKKCOB7F6/jFh5Ze/TLnaEYC8AeVT9 + qvhNbPkupCaAhPOkEInkIHJXzwb2KTgid6j627DXmvVVkDYBJuEoEspRrNNnjbw1YgZX9+ACT68ANeVT + KXYGvoCcgi7DUGeEwEcg57hiSBwqnVUsi9B5BN6FR/9oKJTCXH3PgVYz4LeibQTYvJIjAkZmIOkZYGXv + ANlGZQ8/AIl322bxmY1L/i8cMjlkjyi3jZVdrxT1z9TuJp/mfTAnKAkxM/GrhBcq/g72rKBY1zgBy6FN + 73jY8hMxV+E8HGf8GNc6kD8sT+CnKiz+HVAWqrja8fIJrgH5Cob6ESM7pIgMd+d+SkmSQ/X1XC9Ak7kr + Obr1gRwupS13+ghOwgrIsrnrv3NISOTeENvRAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmExtendOption.Designer.cs b/SYS.FormUI/AppFunction/FrmExtendOption.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..eb30bfd80b822c0ac5b7c2e53afd5ad03470142b --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmExtendOption.Designer.cs @@ -0,0 +1,114 @@ +namespace SYS.FormUI +{ + partial class FrmExtendOption + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.pnlExtendMID = new System.Windows.Forms.Panel(); + this.picMore = new System.Windows.Forms.PictureBox(); + this.picWeb = new System.Windows.Forms.PictureBox(); + this.picCall = new System.Windows.Forms.PictureBox(); + ((System.ComponentModel.ISupportInitialize)(this.picMore)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.picWeb)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.picCall)).BeginInit(); + this.SuspendLayout(); + // + // pnlExtendMID + // + this.pnlExtendMID.BackColor = System.Drawing.Color.SkyBlue; + this.pnlExtendMID.Location = new System.Drawing.Point(1, 36); + this.pnlExtendMID.Name = "pnlExtendMID"; + this.pnlExtendMID.Size = new System.Drawing.Size(1020, 417); + this.pnlExtendMID.TabIndex = 12; + // + // picMore + // + this.picMore.BackColor = System.Drawing.Color.Transparent; + this.picMore.BackgroundImage = global::SYS.FormUI.Properties.Resources.更多扩展_ib; + this.picMore.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.picMore.Location = new System.Drawing.Point(345, 1); + this.picMore.Name = "picMore"; + this.picMore.Size = new System.Drawing.Size(166, 34); + this.picMore.TabIndex = 11; + this.picMore.TabStop = false; + this.picMore.Click += new System.EventHandler(this.picMore_Click); + // + // picWeb + // + this.picWeb.BackColor = System.Drawing.Color.Transparent; + this.picWeb.BackgroundImage = global::SYS.FormUI.Properties.Resources.网页预约_ib; + this.picWeb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.picWeb.Location = new System.Drawing.Point(173, 1); + this.picWeb.Name = "picWeb"; + this.picWeb.Size = new System.Drawing.Size(166, 34); + this.picWeb.TabIndex = 10; + this.picWeb.TabStop = false; + this.picWeb.Click += new System.EventHandler(this.picWeb_Click); + this.picWeb.MouseEnter += new System.EventHandler(this.picWeb_MouseEnter); + // + // picCall + // + this.picCall.BackColor = System.Drawing.Color.Transparent; + this.picCall.BackgroundImage = global::SYS.FormUI.Properties.Resources.内部飞鸽_ib; + this.picCall.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.picCall.Location = new System.Drawing.Point(1, 1); + this.picCall.Name = "picCall"; + this.picCall.Size = new System.Drawing.Size(166, 34); + this.picCall.TabIndex = 9; + this.picCall.TabStop = false; + this.picCall.Click += new System.EventHandler(this.picCall_Click); + this.picCall.MouseEnter += new System.EventHandler(this.picCall_MouseEnter); + // + // FrmExtendOption + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.SystemColors.Control; + this.ClientSize = new System.Drawing.Size(1033, 456); + this.Controls.Add(this.pnlExtendMID); + this.Controls.Add(this.picMore); + this.Controls.Add(this.picWeb); + this.Controls.Add(this.picCall); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Name = "FrmExtendOption"; + this.Text = "ExtendOption"; + this.Load += new System.EventHandler(this.ExtendOption_Load); + ((System.ComponentModel.ISupportInitialize)(this.picMore)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.picWeb)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.picCall)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.PictureBox picMore; + private System.Windows.Forms.PictureBox picWeb; + private System.Windows.Forms.PictureBox picCall; + private System.Windows.Forms.Panel pnlExtendMID; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmExtendOption.cs b/SYS.FormUI/AppFunction/FrmExtendOption.cs new file mode 100644 index 0000000000000000000000000000000000000000..4baddea8b140168beefefc551131991481b39aa0 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmExtendOption.cs @@ -0,0 +1,59 @@ +using System; +using System.Windows.Forms; +using SYS.FormUI.Properties; + +namespace SYS.FormUI +{ + public partial class FrmExtendOption : Form + { + public FrmExtendOption() + { + InitializeComponent(); + } + + private void picCall_Click(object sender, EventArgs e) + { + picCall.BackgroundImage = Resources.内部飞鸽_ia; + picWeb.BackgroundImage = Resources.网页预约_ib; + picMore.BackgroundImage = Resources.更多扩展_ib; + + } + + private void picCall_MouseEnter(object sender, EventArgs e) + { + + } + + private void ExtendOption_Load(object sender, EventArgs e) + { + + } + + private void picWeb_Click(object sender, EventArgs e) + { + picCall.BackgroundImage = Resources.内部飞鸽_ib; + picWeb.BackgroundImage = Resources.网页预约_ia; + picMore.BackgroundImage = Resources.更多扩展_ib; + pnlExtendMID.Controls.Clear(); + //WebSite frm1 = new WebSite(); + //frm1.TopLevel = false; + //pnlExtendMID.Controls.Add(frm1); + //frm1.Show(); + } + + private void picMore_Click(object sender, EventArgs e) + { + picCall.BackgroundImage = Resources.内部飞鸽_ib; + picWeb.BackgroundImage = Resources.网页预约_ib; + picMore.BackgroundImage = Resources.更多扩展_ia; + MessageBox.Show("更多扩展功能请浏览https://www.jackson.xyz 获取", "来自智能小T的提醒"); + } + + private void picWeb_MouseEnter(object sender, EventArgs e) + { + picCall.BackgroundImage = Resources.内部飞鸽_ib; + picWeb.BackgroundImage = Resources.网页预约_ia; + picMore.BackgroundImage = Resources.更多扩展_ib; + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmExtendOption.resx b/SYS.FormUI/AppFunction/FrmExtendOption.resx new file mode 100644 index 0000000000000000000000000000000000000000..1af7de150c99c12dd67a509fe57c10d63e4eeb04 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmExtendOption.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmGoodOrBad.Designer.cs b/SYS.FormUI/AppFunction/FrmGoodOrBad.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..246e13d3ef14cd867b9f0a70af5aa8a6de6c6c16 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmGoodOrBad.Designer.cs @@ -0,0 +1,469 @@ +namespace SYS.FormUI +{ + partial class FrmGoodOrBad + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmGoodOrBad)); + this.label2 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.lblWorkerNo = new System.Windows.Forms.Label(); + this.lblName = new System.Windows.Forms.Label(); + this.lblDate = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); + this.label6 = new System.Windows.Forms.Label(); + this.label7 = new System.Windows.Forms.Label(); + this.CboType = new Sunny.UI.UIComboBox(); + this.DtpDate = new Sunny.UI.UIDatePicker(); + this.RtbGBInfo = new Sunny.UI.UIRichTextBox(); + this.DgvGoodBadList = new Sunny.UI.UIDataGridView(); + this.label1 = new System.Windows.Forms.Label(); + this.btnAdd = new Sunny.UI.UIButton(); + this.btnClose = new Sunny.UI.UIButton(); + this.clWorkNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clGBType = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clGBInfo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clGBOperation = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clGBTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + ((System.ComponentModel.ISupportInitialize)(this.DgvGoodBadList)).BeginInit(); + this.SuspendLayout(); + // + // label2 + // + this.label2.AutoSize = true; + this.label2.BackColor = System.Drawing.Color.Transparent; + this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label2.Location = new System.Drawing.Point(12, 52); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(105, 24); + this.label2.TabIndex = 2; + this.label2.Text = "员工编号:"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.BackColor = System.Drawing.Color.Transparent; + this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label3.Location = new System.Drawing.Point(207, 52); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(105, 24); + this.label3.TabIndex = 3; + this.label3.Text = "员工姓名:"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.BackColor = System.Drawing.Color.Transparent; + this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label4.Location = new System.Drawing.Point(402, 52); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(105, 24); + this.label4.TabIndex = 3; + this.label4.Text = "入职日期:"; + // + // lblWorkerNo + // + this.lblWorkerNo.AutoSize = true; + this.lblWorkerNo.BackColor = System.Drawing.Color.Transparent; + this.lblWorkerNo.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblWorkerNo.Location = new System.Drawing.Point(119, 52); + this.lblWorkerNo.Name = "lblWorkerNo"; + this.lblWorkerNo.Size = new System.Drawing.Size(86, 24); + this.lblWorkerNo.TabIndex = 4; + this.lblWorkerNo.Text = "员工编号"; + // + // lblName + // + this.lblName.AutoSize = true; + this.lblName.BackColor = System.Drawing.Color.Transparent; + this.lblName.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblName.Location = new System.Drawing.Point(314, 52); + this.lblName.Name = "lblName"; + this.lblName.Size = new System.Drawing.Size(86, 24); + this.lblName.TabIndex = 5; + this.lblName.Text = "员工姓名"; + // + // lblDate + // + this.lblDate.AutoSize = true; + this.lblDate.BackColor = System.Drawing.Color.Transparent; + this.lblDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblDate.Location = new System.Drawing.Point(509, 52); + this.lblDate.Name = "lblDate"; + this.lblDate.Size = new System.Drawing.Size(86, 24); + this.lblDate.TabIndex = 6; + this.lblDate.Text = "入职日期"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.BackColor = System.Drawing.Color.Transparent; + this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label5.Location = new System.Drawing.Point(30, 110); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(105, 24); + this.label5.TabIndex = 8; + this.label5.Text = "奖罚类型:"; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.BackColor = System.Drawing.Color.Transparent; + this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label6.Location = new System.Drawing.Point(30, 153); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(105, 24); + this.label6.TabIndex = 9; + this.label6.Text = "奖罚时间:"; + // + // label7 + // + this.label7.AutoSize = true; + this.label7.BackColor = System.Drawing.Color.Transparent; + this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label7.Location = new System.Drawing.Point(30, 196); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(105, 24); + this.label7.TabIndex = 10; + this.label7.Text = "奖罚情况:"; + // + // CboType + // + this.CboType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.CboType.FillColor = System.Drawing.Color.White; + this.CboType.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.CboType.Location = new System.Drawing.Point(141, 104); + this.CboType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.CboType.MinimumSize = new System.Drawing.Size(63, 0); + this.CboType.Name = "CboType"; + this.CboType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.CboType.Radius = 20; + this.CboType.Size = new System.Drawing.Size(158, 35); + this.CboType.Style = Sunny.UI.UIStyle.Custom; + this.CboType.TabIndex = 107; + this.CboType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // DtpDate + // + this.DtpDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.DtpDate.FillColor = System.Drawing.Color.White; + this.DtpDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); + this.DtpDate.Location = new System.Drawing.Point(141, 152); + this.DtpDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.DtpDate.MaxLength = 10; + this.DtpDate.MinimumSize = new System.Drawing.Size(63, 0); + this.DtpDate.Name = "DtpDate"; + this.DtpDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.DtpDate.Radius = 20; + this.DtpDate.ReadOnly = true; + this.DtpDate.Size = new System.Drawing.Size(158, 31); + this.DtpDate.Style = Sunny.UI.UIStyle.Custom; + this.DtpDate.SymbolDropDown = 61555; + this.DtpDate.SymbolNormal = 61555; + this.DtpDate.TabIndex = 108; + this.DtpDate.Text = "2020-11-24"; + this.DtpDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.DtpDate.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); + // + // RtbGBInfo + // + this.RtbGBInfo.AutoWordSelection = true; + this.RtbGBInfo.FillColor = System.Drawing.Color.White; + this.RtbGBInfo.Font = new System.Drawing.Font("微软雅黑", 12F); + this.RtbGBInfo.Location = new System.Drawing.Point(141, 196); + this.RtbGBInfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.RtbGBInfo.MinimumSize = new System.Drawing.Size(1, 1); + this.RtbGBInfo.Name = "RtbGBInfo"; + this.RtbGBInfo.Padding = new System.Windows.Forms.Padding(2); + this.RtbGBInfo.Radius = 20; + this.RtbGBInfo.Size = new System.Drawing.Size(486, 148); + this.RtbGBInfo.Style = Sunny.UI.UIStyle.Custom; + this.RtbGBInfo.TabIndex = 109; + // + // DgvGoodBadList + // + this.DgvGoodBadList.AllowUserToAddRows = false; + this.DgvGoodBadList.AllowUserToDeleteRows = false; + this.DgvGoodBadList.AllowUserToResizeColumns = false; + this.DgvGoodBadList.AllowUserToResizeRows = false; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.DgvGoodBadList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.DgvGoodBadList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.DgvGoodBadList.BackgroundColor = System.Drawing.Color.White; + this.DgvGoodBadList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.DgvGoodBadList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.DgvGoodBadList.ColumnHeadersHeight = 32; + this.DgvGoodBadList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.DgvGoodBadList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.clWorkNo, + this.clGBType, + this.clGBInfo, + this.clGBOperation, + this.clGBTime, + this.Column1, + this.Column2, + this.Column3, + this.Column4, + this.Column5, + this.Column6, + this.Column7}); + this.DgvGoodBadList.EnableHeadersVisualStyles = false; + this.DgvGoodBadList.Font = new System.Drawing.Font("微软雅黑", 12F); + this.DgvGoodBadList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.DgvGoodBadList.Location = new System.Drawing.Point(34, 390); + this.DgvGoodBadList.MultiSelect = false; + this.DgvGoodBadList.Name = "DgvGoodBadList"; + this.DgvGoodBadList.ReadOnly = true; + this.DgvGoodBadList.RowHeadersVisible = false; + dataGridViewCellStyle3.BackColor = System.Drawing.Color.White; + this.DgvGoodBadList.RowsDefaultCellStyle = dataGridViewCellStyle3; + this.DgvGoodBadList.RowTemplate.Height = 29; + this.DgvGoodBadList.SelectedIndex = -1; + this.DgvGoodBadList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.DgvGoodBadList.ShowGridLine = true; + this.DgvGoodBadList.Size = new System.Drawing.Size(593, 199); + this.DgvGoodBadList.Style = Sunny.UI.UIStyle.Custom; + this.DgvGoodBadList.TabIndex = 3; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.BackColor = System.Drawing.Color.Transparent; + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label1.Location = new System.Drawing.Point(37, 355); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(143, 24); + this.label1.TabIndex = 110; + this.label1.Text = "历史奖罚情况:"; + // + // btnAdd + // + this.btnAdd.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnAdd.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnAdd.Location = new System.Drawing.Point(421, 599); + this.btnAdd.MinimumSize = new System.Drawing.Size(1, 1); + this.btnAdd.Name = "btnAdd"; + this.btnAdd.Radius = 20; + this.btnAdd.Size = new System.Drawing.Size(100, 35); + this.btnAdd.Style = Sunny.UI.UIStyle.Custom; + this.btnAdd.TabIndex = 111; + this.btnAdd.Text = "新 增"; + this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); + // + // btnClose + // + this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnClose.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnClose.Location = new System.Drawing.Point(527, 599); + this.btnClose.MinimumSize = new System.Drawing.Size(1, 1); + this.btnClose.Name = "btnClose"; + this.btnClose.Radius = 20; + this.btnClose.Size = new System.Drawing.Size(100, 35); + this.btnClose.Style = Sunny.UI.UIStyle.Custom; + this.btnClose.TabIndex = 112; + this.btnClose.Text = "关 闭"; + this.btnClose.Click += new System.EventHandler(this.btnClose_Click); + // + // clWorkNo + // + this.clWorkNo.DataPropertyName = "WorkNo"; + this.clWorkNo.HeaderText = "员工编号"; + this.clWorkNo.Name = "clWorkNo"; + this.clWorkNo.ReadOnly = true; + // + // clGBType + // + this.clGBType.DataPropertyName = "TypeName"; + this.clGBType.HeaderText = "奖罚类型"; + this.clGBType.Name = "clGBType"; + this.clGBType.ReadOnly = true; + // + // clGBInfo + // + this.clGBInfo.DataPropertyName = "GBInfo"; + this.clGBInfo.HeaderText = "奖惩信息"; + this.clGBInfo.Name = "clGBInfo"; + this.clGBInfo.ReadOnly = true; + // + // clGBOperation + // + this.clGBOperation.DataPropertyName = "OperationName"; + this.clGBOperation.HeaderText = "奖惩操作人"; + this.clGBOperation.Name = "clGBOperation"; + this.clGBOperation.ReadOnly = true; + // + // clGBTime + // + this.clGBTime.DataPropertyName = "GBTime"; + this.clGBTime.HeaderText = "奖惩时间"; + this.clGBTime.Name = "clGBTime"; + this.clGBTime.ReadOnly = true; + // + // Column1 + // + this.Column1.DataPropertyName = "delete_mk"; + this.Column1.HeaderText = "Column1"; + this.Column1.Name = "Column1"; + this.Column1.ReadOnly = true; + this.Column1.Visible = false; + // + // Column2 + // + this.Column2.DataPropertyName = "datains_date"; + this.Column2.HeaderText = "Column2"; + this.Column2.Name = "Column2"; + this.Column2.ReadOnly = true; + this.Column2.Visible = false; + // + // Column3 + // + this.Column3.DataPropertyName = "datains_usr"; + this.Column3.HeaderText = "Column3"; + this.Column3.Name = "Column3"; + this.Column3.ReadOnly = true; + this.Column3.Visible = false; + // + // Column4 + // + this.Column4.DataPropertyName = "datachg_usr"; + this.Column4.HeaderText = "Column4"; + this.Column4.Name = "Column4"; + this.Column4.ReadOnly = true; + this.Column4.Visible = false; + // + // Column5 + // + this.Column5.DataPropertyName = "datachg_date"; + this.Column5.HeaderText = "Column5"; + this.Column5.Name = "Column5"; + this.Column5.ReadOnly = true; + this.Column5.Visible = false; + // + // Column6 + // + this.Column6.DataPropertyName = "GBType"; + this.Column6.HeaderText = "Column6"; + this.Column6.Name = "Column6"; + this.Column6.ReadOnly = true; + this.Column6.Visible = false; + // + // Column7 + // + this.Column7.DataPropertyName = "GBOperation"; + this.Column7.HeaderText = "Column7"; + this.Column7.Name = "Column7"; + this.Column7.ReadOnly = true; + this.Column7.Visible = false; + // + // FrmGoodOrBad + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(657, 646); + this.ControlBox = false; + this.Controls.Add(this.btnClose); + this.Controls.Add(this.btnAdd); + this.Controls.Add(this.label1); + this.Controls.Add(this.DgvGoodBadList); + this.Controls.Add(this.RtbGBInfo); + this.Controls.Add(this.DtpDate); + this.Controls.Add(this.CboType); + this.Controls.Add(this.label7); + this.Controls.Add(this.label6); + this.Controls.Add(this.label5); + this.Controls.Add(this.lblDate); + this.Controls.Add(this.lblName); + this.Controls.Add(this.lblWorkerNo); + this.Controls.Add(this.label4); + this.Controls.Add(this.label3); + this.Controls.Add(this.label2); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmGoodOrBad"; + this.ShowIcon = true; + this.ShowRadius = false; + this.ShowShadow = true; + this.Style = Sunny.UI.UIStyle.Custom; + this.Text = "员工奖罚情况页"; + this.Load += new System.EventHandler(this.FrmGoodOrBad_Load); + ((System.ComponentModel.ISupportInitialize)(this.DgvGoodBadList)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label lblWorkerNo; + private System.Windows.Forms.Label lblName; + private System.Windows.Forms.Label lblDate; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.Label label6; + private System.Windows.Forms.Label label7; + private Sunny.UI.UIComboBox CboType; + private Sunny.UI.UIDatePicker DtpDate; + private Sunny.UI.UIRichTextBox RtbGBInfo; + private Sunny.UI.UIDataGridView DgvGoodBadList; + private System.Windows.Forms.Label label1; + private Sunny.UI.UIButton btnAdd; + private Sunny.UI.UIButton btnClose; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clGBType; + private System.Windows.Forms.DataGridViewTextBoxColumn clGBInfo; + private System.Windows.Forms.DataGridViewTextBoxColumn clGBOperation; + private System.Windows.Forms.DataGridViewTextBoxColumn clGBTime; + private System.Windows.Forms.DataGridViewTextBoxColumn Column1; + private System.Windows.Forms.DataGridViewTextBoxColumn Column2; + private System.Windows.Forms.DataGridViewTextBoxColumn Column3; + private System.Windows.Forms.DataGridViewTextBoxColumn Column4; + private System.Windows.Forms.DataGridViewTextBoxColumn Column5; + private System.Windows.Forms.DataGridViewTextBoxColumn Column6; + private System.Windows.Forms.DataGridViewTextBoxColumn Column7; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmGoodOrBad.cs b/SYS.FormUI/AppFunction/FrmGoodOrBad.cs new file mode 100644 index 0000000000000000000000000000000000000000..80cceb810a91e49c4126c2fd054a09d4dbcf2a0c --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmGoodOrBad.cs @@ -0,0 +1,121 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using SYS.Core; +using Sunny.UI; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class FrmGoodOrBad : UIForm + { + public FrmGoodOrBad() + { + InitializeComponent(); + } + + + + private void FrmGoodOrBad_Load(object sender, EventArgs e) + { + lblWorkerNo.Text = FrmWorkerManager.wk_WorkerNo; + lblName.Text = FrmWorkerManager.wk_WorkerName; + lblDate.Text = Convert.ToDateTime(FrmWorkerManager.wk_WorkerTime).ToString("yyyy年MM月dd日").Substring(0,9); + DgvGoodBadList.AutoGenerateColumns = false; + DgvGoodBadList.DataSource = new WorkerGoodBadService().SelectAllGoodBadByWorkNo(lblWorkerNo.Text); + CboType.DataSource = new BaseService().SelectGBTypeAll(); + CboType.DisplayMember = "GBName"; + CboType.ValueMember = "GBTypeId"; + } + + public bool CheckInput(WorkerGoodBad workerGoodBad) + { + if (string.IsNullOrWhiteSpace(workerGoodBad.WorkNo)) + { + return false; + } + if (string.IsNullOrWhiteSpace(workerGoodBad.GBType + "")) + { + return false; + } + if (string.IsNullOrWhiteSpace(workerGoodBad.GBInfo)) + { + return false; + } + if (string.IsNullOrWhiteSpace(workerGoodBad.GBTime + "")) + { + return false; + } + if (string.IsNullOrWhiteSpace(workerGoodBad.GBOperation)) + { + return false; + } + return true; + } + + private void btnAdd_Click(object sender, EventArgs e) + { + WorkerGoodBad goodBad = new WorkerGoodBad() + { + WorkNo = lblWorkerNo.Text, + GBType = (int)CboType.SelectedValue, + GBInfo = RtbGBInfo.Text, + GBOperation = AdminInfo.Account, + GBTime = DtpDate.Value, + datains_usr = AdminInfo.Account, + datains_date = DateTime.Now + }; + if (CheckInput(goodBad)) + { + DialogResult dr = MessageBox.Show("确定录入?一旦录入后将无法修改及删除,或会影响员工的晋升!", "录入警告", MessageBoxButtons.YesNo, MessageBoxIcon.Warning); + if (dr == DialogResult.Yes) + { + + + bool n = new WorkerGoodBadService().AddGoodBad(goodBad); + if (n == true) + { + UIMessageBox.Show("新增成功!","系统提示",UIStyle.Green,UIMessageBoxButtons.OK); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = AdminInfo.Account + AdminInfo.Name + "于" + DateTime.Now + "对员工:" + lblName.Text + "进行了奖罚情况录入!"; + o.OperationAccount = LoginInfo.WorkerNo; + o.datains_usr = LoginInfo.WorkerNo; + o.datains_date = DateTime.Now; + new OperationlogService().InsertOperationLog(o); + #endregion + DgvGoodBadList.DataSource = new WorkerGoodBadService().SelectAllGoodBadByWorkNo(lblWorkerNo.Text); + } + else + { + UIMessageBox.Show("或是服务器错误所致!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + return; + } + } + else + { + UIMessageBox.Show("取消录入操作!", "系统提示", UIStyle.Orange, UIMessageBoxButtons.OK); + return; + } + + } + else + { + UIMessageBox.Show("信息不能为空!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + } + + } + + private void btnClose_Click(object sender, EventArgs e) + { + this.Close(); + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmGoodOrBad.resx b/SYS.FormUI/AppFunction/FrmGoodOrBad.resx new file mode 100644 index 0000000000000000000000000000000000000000..36418d5156b333c126c3a578110f184010b1912c --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmGoodOrBad.resx @@ -0,0 +1,444 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAQEAAAAEAIAAoQgAAFgAAACgAAABAAAAAgAAAAAEAIAAAAAAAAEAAACMuAAAjLgAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4+u0A9/rrAPz8+QP9/f0E/Pz7CPz8+hv8/fom/P36J/39 + +if9/foh/f37DP79/QT+/PkD/Pv2Afv79gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPz8+AD8//0A/Pz5Dfz9+x/9/ftJ/f79Yv39/YD9/f2w/f79t/7+ + /b39/f3V/f794/3+/eX+/v3k/v793f7+/sL+/v63/v79sv3+/X39/f1d/f78Mf39+xD6+ukA/f35AAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8/fsA/P36Bf39+xv9/fxI/f38g/39/b/9/f3h/f799f39 + /f/9/f7//v7+//7+/f/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+/v7+ + /uv+/v3G/v79gP3+/DX9/fsJ////APv99wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD5+vcA//79APz8+Qf9/fsq/f38X/39/aL9/v3Z/f79+P39 + /f/9/v3//f3+//7+/v/+/v7//f39//7+/v/+/v3//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+ + /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7s/v79sf7+/VT9/fsN/v7/APv79AAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMvYzwD///8A/fz7E/39/FP9/fyq/f396P39 + /fv9/f3//f79//3+/v/9/f7//f39//39/f/+/f7//v39//7+/f/9/v7//v3+//7+/v/+/v7//v7+//7+ + /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v73/v79tP7+ + /Df8/PcC/f36AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+/z5APr8+AL9/fsl/f38bP39 + /cj9/f33/f39//39/f/9/f3//f39//39/f/9/f7//f39//39/f/+/v7//v39//79/f/+/v3//f3+//7+ + /f/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+ + /v/+/v7//v7+//7+/v/+/v7l/v79af7++wj+/v0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8/PgA+/vvAf39 + +yT9/fyF/f393f39/f79/f3//f39//79/f/9/f3//f39//79/f/9/f3//f39//39/f/9/v3//f39//3+ + /f/+/v3//v39//79/f/+/v7//v7+//7+/v/+/f7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+ + /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/vX+/v2Z/f37FP39/AAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPn5 + 8gD///8A/P38FP39/HD9/f3Z/f39/v39/f/9/f3//f39//39/f/9/f3//f39//39/fb9/f3b/f39y/39 + /Zz9/f2H/f38hP39+3z9/ft7/f38ev39/H79/f2H/v79iP79/a7+/v3U/v797P7+/v7+/f7//v7+//7+ + /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+/f7+ + /ZX9/fsM/f38AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPz8+gD8/PoI/f38WP39/cj9/f36/f39//39/f/9/f3//f39//39/f39/f3n/f38u/39 + /Hz9/fxG/f38G/z9+w/7/PcE+/z3AAAAAAAAAAAAAAAAAAAAAAAAAAAA+/v2AP///wD9/foI/v78Ev39 + /DX9/fxu/f39s/7+/en+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+ + /v/+/v7//v7+//7+/v/+/v75/v7+dP7++gL+/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA+Pn2AP7+/QD8/fwf/f38j/39/fX9/f3//f39//39/f/9/f3+/f396v39 + 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 + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+vIA//ryAP39 + +gL8+/oC/vz5Avv9+QL9/fkC/f35Av3+/wD9/fxr/f39//39/f/9/f3//f39//39/cv9/fsR/f36Af39 + +wL+/fsC/fz4Avz9+gL9/fkC/vv5Avz59QD8+fUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPr89wD+/f8A/f79N/7+/tX+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+3/7+ + /UT+//8A/vz7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA/fz7AP38+xH9/fyY/f38sf39/K/9/fyv/f38sP39/LD9/fyu/f39xv39/f79/f3//f39//39 + /f/9/f3y/f39tf39/a/9/f2v/f39r/39/a/9/f2v/f39sf39/Z39/Psa/fz8AAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP38+ADz7LUA/f39Of7+/tT+/v7//v7+//7+/v/+/v7//v7+//7+ + /v/+/v7//v791v79/UL8//wA/v39AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPz8+wD8/PoV/fz80f39/f/9/f3//f39//39/f/9/f3//f39//39 + /f/9/f3//f39//39/f/9/f3//f39//39/f/9/f3//f39//39/f/9/f3//f39//39/f/9/f38/f39Vv39 + /QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP38+wD9/PoE/f38XP3+/d/+/v7//v7+//7+ + /v/+/v7//v7+//7+/v/+/v7//v79vf39/DT///8A/fz6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8+/gA9/HhAP38/Jv9/f3//f39//39 + /f/9/f3//f39//39/f/9/f3//f39//39/f/9/f3//f39//39/f/9/f3//f39//39/f/9/f3//f39//39 + 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 + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPv5 + 8QD9//8A/Pv4Bf39/Az8/Psc/Pz7O/39/UT9/f1E/f39RP39/UT9/f1E/fz7Pfz8+x/9/v0N/f36C/v6 + 9gH7+vYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//////////////////////////////////////////////////////////////////////// + ///////////////////gAP///////gAAD//////gAAAD/////wAAAAD////8AAAAAD///+AAAAAAH/// + gAAAAAAP//8AAAAAAAf//AAD/AAAA//4AH//wAAD/+AB/wPwAAH/wA/8APwAAf+AP/AAfwAA/wD/8AA/ + gAD+A//wAB/AAPwH//gQH+AA+A//+PwP4AD4P////A/wAPB////gD/AA4PwH/4Af8ADh/Af/AB/wAMH8 + B/4AP/gAw/4D/gD/8ACH/gP8A//wAIf+A/wPH/AAj/4D/gAP8AGP/wH+AAfgAZ//Af8AB+ADH/8B/4AP + wAMf/wD/wB/AB///gP/4/4AH//+A////AA///4D///8AH///gP///gA//8BAAH/8AH//wAAAf/AA///A + AAB/4AH//8AAAH/AA///4AAAPwAH///gAAA+AA////////gAP///////4AB///4///8AAf///gP/8AAH + ////AAAAAB////+AAAAAf////+AAAAP/////+AAAH///////gAH///////////////////////////// + //////////////////////////////////////////////////8= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmInputs.Designer.cs b/SYS.FormUI/AppFunction/FrmInputs.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..97ed6eed3e840ea828297179eb689325e3a4fb4e --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmInputs.Designer.cs @@ -0,0 +1,399 @@ + +namespace SYS.FormUI +{ + partial class FrmInputs + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmInputs)); + this.label2 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); + this.label6 = new System.Windows.Forms.Label(); + this.label7 = new System.Windows.Forms.Label(); + this.label8 = new System.Windows.Forms.Label(); + this.label9 = new System.Windows.Forms.Label(); + this.label10 = new System.Windows.Forms.Label(); + this.btnClose = new Sunny.UI.UIButton(); + this.btnOK = new Sunny.UI.UIButton(); + this.txtCustoAdress = new Sunny.UI.UITextBox(); + this.dtpBirthday = new Sunny.UI.UIDatePicker(); + this.txtTel = new Sunny.UI.UITextBox(); + this.txtCardID = new Sunny.UI.UITextBox(); + this.txtCustoName = new Sunny.UI.UITextBox(); + this.txtCustoNo = new Sunny.UI.UITextBox(); + this.cbSex = new Sunny.UI.UIComboBox(); + this.cbPassportType = new Sunny.UI.UIComboBox(); + this.cbCustoType = new Sunny.UI.UIComboBox(); + this.SuspendLayout(); + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(20, 69); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(88, 25); + this.label2.TabIndex = 23; + this.label2.Text = "客户编号"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(20, 121); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(88, 25); + this.label3.TabIndex = 24; + this.label3.Text = "客户姓名"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.Location = new System.Drawing.Point(20, 173); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(74, 25); + this.label4.TabIndex = 25; + this.label4.Text = "性 别"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label5.Location = new System.Drawing.Point(20, 225); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(88, 25); + this.label5.TabIndex = 26; + this.label5.Text = "出生日期"; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label6.Location = new System.Drawing.Point(399, 69); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(88, 25); + this.label6.TabIndex = 27; + this.label6.Text = "客户类型"; + // + // label7 + // + this.label7.AutoSize = true; + this.label7.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label7.Location = new System.Drawing.Point(399, 120); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(88, 25); + this.label7.TabIndex = 28; + this.label7.Text = "证件类型"; + // + // label8 + // + this.label8.AutoSize = true; + this.label8.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label8.Location = new System.Drawing.Point(399, 171); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(88, 25); + this.label8.TabIndex = 29; + this.label8.Text = "证件号码"; + // + // label9 + // + this.label9.AutoSize = true; + this.label9.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label9.Location = new System.Drawing.Point(399, 222); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(88, 25); + this.label9.TabIndex = 30; + this.label9.Text = "联系方式"; + // + // label10 + // + this.label10.AutoSize = true; + this.label10.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label10.Location = new System.Drawing.Point(18, 277); + this.label10.Name = "label10"; + this.label10.Size = new System.Drawing.Size(88, 25); + this.label10.TabIndex = 32; + this.label10.Text = "居住地址"; + // + // btnClose + // + this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnClose.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnClose.Location = new System.Drawing.Point(426, 313); + this.btnClose.MinimumSize = new System.Drawing.Size(1, 1); + this.btnClose.Name = "btnClose"; + this.btnClose.Radius = 30; + this.btnClose.Size = new System.Drawing.Size(137, 46); + this.btnClose.Style = Sunny.UI.UIStyle.Custom; + this.btnClose.TabIndex = 97; + this.btnClose.Text = "取 消"; + this.btnClose.Click += new System.EventHandler(this.btnClose_BtnClick); + // + // btnOK + // + this.btnOK.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnOK.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnOK.Location = new System.Drawing.Point(203, 313); + this.btnOK.MinimumSize = new System.Drawing.Size(1, 1); + this.btnOK.Name = "btnOK"; + this.btnOK.Radius = 30; + this.btnOK.Size = new System.Drawing.Size(137, 46); + this.btnOK.Style = Sunny.UI.UIStyle.Custom; + this.btnOK.TabIndex = 98; + this.btnOK.Text = "保 存"; + this.btnOK.Click += new System.EventHandler(this.btnOK_BtnClick); + // + // txtCustoAdress + // + this.txtCustoAdress.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoAdress.FillColor = System.Drawing.Color.White; + this.txtCustoAdress.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoAdress.Location = new System.Drawing.Point(125, 267); + this.txtCustoAdress.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoAdress.Maximum = 2147483647D; + this.txtCustoAdress.Minimum = -2147483648D; + this.txtCustoAdress.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoAdress.Name = "txtCustoAdress"; + this.txtCustoAdress.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoAdress.Radius = 20; + this.txtCustoAdress.Size = new System.Drawing.Size(628, 35); + this.txtCustoAdress.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoAdress.StyleCustomMode = true; + this.txtCustoAdress.TabIndex = 99; + // + // dtpBirthday + // + this.dtpBirthday.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.dtpBirthday.FillColor = System.Drawing.Color.White; + this.dtpBirthday.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); + this.dtpBirthday.Location = new System.Drawing.Point(127, 219); + this.dtpBirthday.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.dtpBirthday.MaxLength = 10; + this.dtpBirthday.MinimumSize = new System.Drawing.Size(63, 0); + this.dtpBirthday.Name = "dtpBirthday"; + this.dtpBirthday.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.dtpBirthday.Radius = 20; + this.dtpBirthday.ReadOnly = true; + this.dtpBirthday.Size = new System.Drawing.Size(250, 31); + this.dtpBirthday.Style = Sunny.UI.UIStyle.Custom; + this.dtpBirthday.SymbolDropDown = 61555; + this.dtpBirthday.SymbolNormal = 61555; + this.dtpBirthday.TabIndex = 101; + this.dtpBirthday.Text = "2020-11-24"; + this.dtpBirthday.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.dtpBirthday.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); + // + // txtTel + // + this.txtTel.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtTel.FillColor = System.Drawing.Color.White; + this.txtTel.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtTel.Location = new System.Drawing.Point(503, 215); + this.txtTel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtTel.Maximum = 2147483647D; + this.txtTel.Minimum = -2147483648D; + this.txtTel.MinimumSize = new System.Drawing.Size(1, 1); + this.txtTel.Name = "txtTel"; + this.txtTel.Padding = new System.Windows.Forms.Padding(5); + this.txtTel.Radius = 20; + this.txtTel.Size = new System.Drawing.Size(250, 35); + this.txtTel.Style = Sunny.UI.UIStyle.Custom; + this.txtTel.StyleCustomMode = true; + this.txtTel.TabIndex = 102; + // + // txtCardID + // + this.txtCardID.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCardID.FillColor = System.Drawing.Color.White; + this.txtCardID.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCardID.Location = new System.Drawing.Point(503, 164); + this.txtCardID.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCardID.Maximum = 2147483647D; + this.txtCardID.Minimum = -2147483648D; + this.txtCardID.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCardID.Name = "txtCardID"; + this.txtCardID.Padding = new System.Windows.Forms.Padding(5); + this.txtCardID.Radius = 20; + this.txtCardID.Size = new System.Drawing.Size(250, 35); + this.txtCardID.Style = Sunny.UI.UIStyle.Custom; + this.txtCardID.StyleCustomMode = true; + this.txtCardID.TabIndex = 103; + this.txtCardID.Validated += new System.EventHandler(this.txtCardID_Validated); + // + // txtCustoName + // + this.txtCustoName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoName.FillColor = System.Drawing.Color.White; + this.txtCustoName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoName.Location = new System.Drawing.Point(127, 115); + this.txtCustoName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoName.Maximum = 2147483647D; + this.txtCustoName.Minimum = -2147483648D; + this.txtCustoName.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoName.Name = "txtCustoName"; + this.txtCustoName.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoName.Radius = 20; + this.txtCustoName.Size = new System.Drawing.Size(250, 35); + this.txtCustoName.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoName.StyleCustomMode = true; + this.txtCustoName.TabIndex = 104; + // + // txtCustoNo + // + this.txtCustoNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoNo.FillColor = System.Drawing.Color.White; + this.txtCustoNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoNo.Location = new System.Drawing.Point(127, 63); + this.txtCustoNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoNo.Maximum = 2147483647D; + this.txtCustoNo.Minimum = -2147483648D; + this.txtCustoNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoNo.Name = "txtCustoNo"; + this.txtCustoNo.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoNo.Radius = 20; + this.txtCustoNo.Size = new System.Drawing.Size(250, 35); + this.txtCustoNo.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoNo.StyleCustomMode = true; + this.txtCustoNo.TabIndex = 104; + // + // cbSex + // + this.cbSex.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cbSex.FillColor = System.Drawing.Color.White; + this.cbSex.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cbSex.Location = new System.Drawing.Point(127, 167); + this.cbSex.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cbSex.MinimumSize = new System.Drawing.Size(63, 0); + this.cbSex.Name = "cbSex"; + this.cbSex.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cbSex.Radius = 20; + this.cbSex.Size = new System.Drawing.Size(250, 35); + this.cbSex.Style = Sunny.UI.UIStyle.Custom; + this.cbSex.TabIndex = 105; + this.cbSex.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // cbPassportType + // + this.cbPassportType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cbPassportType.FillColor = System.Drawing.Color.White; + this.cbPassportType.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cbPassportType.Location = new System.Drawing.Point(503, 113); + this.cbPassportType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cbPassportType.MinimumSize = new System.Drawing.Size(63, 0); + this.cbPassportType.Name = "cbPassportType"; + this.cbPassportType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cbPassportType.Radius = 20; + this.cbPassportType.Size = new System.Drawing.Size(250, 35); + this.cbPassportType.Style = Sunny.UI.UIStyle.Custom; + this.cbPassportType.TabIndex = 106; + this.cbPassportType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // cbCustoType + // + this.cbCustoType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cbCustoType.FillColor = System.Drawing.Color.White; + this.cbCustoType.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cbCustoType.Location = new System.Drawing.Point(503, 62); + this.cbCustoType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cbCustoType.MinimumSize = new System.Drawing.Size(63, 0); + this.cbCustoType.Name = "cbCustoType"; + this.cbCustoType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cbCustoType.Radius = 20; + this.cbCustoType.ReadOnly = true; + this.cbCustoType.Size = new System.Drawing.Size(250, 35); + this.cbCustoType.Style = Sunny.UI.UIStyle.Custom; + this.cbCustoType.TabIndex = 106; + this.cbCustoType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cbCustoType.Watermark = ""; + // + // FrmInputs + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(766, 376); + this.Controls.Add(this.cbCustoType); + this.Controls.Add(this.cbPassportType); + this.Controls.Add(this.cbSex); + this.Controls.Add(this.txtCustoNo); + this.Controls.Add(this.txtCustoName); + this.Controls.Add(this.txtCardID); + this.Controls.Add(this.txtTel); + this.Controls.Add(this.dtpBirthday); + this.Controls.Add(this.txtCustoAdress); + this.Controls.Add(this.btnOK); + this.Controls.Add(this.btnClose); + this.Controls.Add(this.label10); + this.Controls.Add(this.label9); + this.Controls.Add(this.label8); + this.Controls.Add(this.label7); + this.Controls.Add(this.label6); + this.Controls.Add(this.label5); + this.Controls.Add(this.label4); + this.Controls.Add(this.label3); + this.Controls.Add(this.label2); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.IsForbidAltF4 = true; + this.Name = "FrmInputs"; + this.ShowIcon = true; + this.ShowRadius = false; + this.ShowRect = false; + this.ShowShadow = true; + this.Style = Sunny.UI.UIStyle.Custom; + this.Text = "添加会员信息"; + this.Load += new System.EventHandler(this.FrmInputs_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.Label label6; + private System.Windows.Forms.Label label7; + private System.Windows.Forms.Label label8; + private System.Windows.Forms.Label label9; + private System.Windows.Forms.Label label10; + private Sunny.UI.UIButton btnClose; + private Sunny.UI.UIButton btnOK; + private Sunny.UI.UITextBox txtCustoAdress; + private Sunny.UI.UIDatePicker dtpBirthday; + private Sunny.UI.UITextBox txtTel; + private Sunny.UI.UITextBox txtCardID; + private Sunny.UI.UITextBox txtCustoName; + private Sunny.UI.UITextBox txtCustoNo; + private Sunny.UI.UIComboBox cbSex; + private Sunny.UI.UIComboBox cbPassportType; + private Sunny.UI.UIComboBox cbCustoType; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmInputs.cs b/SYS.FormUI/AppFunction/FrmInputs.cs new file mode 100644 index 0000000000000000000000000000000000000000..a17af3d597a10db7c787fb182126ac1fed986b4c --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmInputs.cs @@ -0,0 +1,326 @@ +using MySql.Data.MySqlClient; +using Sunny.UI; +using SYS.Application; +using SYS.Core; +using SYS.Core.Util; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Drawing.Text; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmInputs : Sunny.UI.UIForm + { + public FrmInputs() + { + InitializeComponent(); + } + + private void FrmInputs_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.controlFont; + } + + string cardId = new CounterHelper().GetNewId("CustoId"); + txtCustoNo.Text = cardId; + + #region 加载客户类型信息 + List lstSourceGrid = new BaseService().SelectCustoTypeAllCanUse(); + this.cbCustoType.DataSource = lstSourceGrid; + this.cbCustoType.DisplayMember = "TypeName"; + this.cbCustoType.ValueMember = "UserType"; + this.cbCustoType.SelectedIndex = 0; + this.cbCustoType.ReadOnly = true; + #endregion + + #region 加载证件类型信息 + List passPorts = new BaseService().SelectPassPortTypeAllCanUse(); + this.cbPassportType.DataSource = passPorts; + this.cbPassportType.DisplayMember = "PassportName"; + this.cbPassportType.ValueMember = "PassportId"; + this.cbPassportType.SelectedIndex = 0; + #endregion + + #region 加载性别信息 + List listSexType = new BaseService().SelectSexTypeAllCanUse(); + this.cbSex.DataSource = listSexType; + this.cbSex.DisplayMember = "sexName"; + this.cbSex.ValueMember = "sexId"; + this.cbSex.SelectedIndex = 0; + #endregion + + if (this.Text == "修改客户") + { + txtCustoNo.Text = FrmCustoManager.cm_CustoNo; + txtCustoName.Text = FrmCustoManager.cm_CustoName; + txtCustoAdress.Text = FrmCustoManager.cm_CustoAddress; + cbCustoType.SelectedIndex = FrmCustoManager.cm_CustoType; + cbSex.SelectedIndex = FrmCustoManager.cm_CustoSex; + cbPassportType.SelectedIndex = FrmCustoManager.cm_PassportType; + dtpBirthday.Value = FrmCustoManager.cm_CustoBirth; + txtCardID.Text = FrmCustoManager.cm_CustoID; + txtCustoAdress.Text = FrmCustoManager.cm_CustoAddress; + txtTel.Text = FrmCustoManager.cm_CustoTel; + btnOK.Text = "修改"; + this.btnOK.Click -= new EventHandler(btnOK_BtnClick); + this.btnOK.Click += new EventHandler(btnOK_UpdClick); + } + + } + + + private void btnClose_BtnClick(object sender, EventArgs e) + { + this.Close(); + } + public bool CheckInput(Custo custo) + { + if (string.IsNullOrWhiteSpace(custo.CustoNo)) + { + return false; + } + if (string.IsNullOrWhiteSpace(custo.CustoName)) + { + return false; + } + if (string.IsNullOrWhiteSpace(custo.CustoSex + "")) + { + return false; + } + if (string.IsNullOrWhiteSpace(custo.CustoType + "")) + { + return false; + } + if (string.IsNullOrWhiteSpace(custo.CustoBirth + "")) + { + return false; + } + if (string.IsNullOrWhiteSpace(custo.PassportType + "")) + { + return false; + } + if (string.IsNullOrWhiteSpace(custo.CustoID)) + { + return false; + } + if (string.IsNullOrWhiteSpace(custo.CustoAdress)) + { + return false; + } + if (string.IsNullOrWhiteSpace(custo.CustoTel)) + { + return false; + } + return true; + } + private void btnOK_BtnClick(object sender, EventArgs e) + { + Custo custo = new Custo() + { + CustoNo = txtCustoNo.Text, + CustoName = txtCustoName.Text, + CustoSex = cbSex.SelectedIndex, + CustoBirth = dtpBirthday.Value, + CustoType = cbCustoType.SelectedIndex, + PassportType = cbPassportType.SelectedIndex, + CustoID = txtCardID.Text, + CustoTel = txtTel.Text, + CustoAdress = txtCustoAdress.Text, + datains_usr = LoginInfo.WorkerNo == null ? AdminInfo.Account : LoginInfo.WorkerNo, + datains_date = DateTime.Now + + }; + try + { + if (CheckInput(custo)) + { + bool t = new CustoService().InsertCustomerInfo(custo); + if (t == true) + { + UIMessageBox.Show("添加成功","系统提示",UIStyle.Green,UIMessageBoxButtons.OK); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog() + { + OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")), + Operationlog = "编号:" + LoginInfo.WorkerNo + "【" + FrmMain.wk_WorkerName + "】" + "于" + DateTime.Now + "添加了一名客户,客户编号为:" + custo.CustoNo, + OperationAccount = LoginInfo.WorkerNo, + datains_usr = LoginInfo.WorkerNo == null ? AdminInfo.Account : LoginInfo.WorkerNo, + datains_date = DateTime.Now + }; + new OperationlogService().InsertOperationLog(o); + #endregion + FrmCustoManager.Reload(); + } + else + { + UIMessageBox.Show("添加失败", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + } + + foreach (Control Ctrol in this.Controls) + { + if (Ctrol is Sunny.UI.UITextBox) + { + Ctrol.Text = ""; + } + if (Ctrol is Sunny.UI.UIComboBox) + { + this.cbSex.SelectedIndex = 0; + this.cbCustoType.SelectedIndex = 0; + this.cbPassportType.SelectedIndex = 0; + } + } + } + + + } + catch + { + + + } + } + + private void btnOK_UpdClick(object sender, EventArgs e) + { + Custo custo = new Custo() + { + CustoNo = txtCustoNo.Text, + CustoName = txtCustoName.Text, + CustoSex = cbSex.SelectedIndex, + CustoBirth = dtpBirthday.Value, + CustoType = cbCustoType.SelectedIndex, + PassportType = cbPassportType.SelectedIndex, + CustoID = txtCardID.Text, + CustoTel = txtTel.Text, + CustoAdress = txtCustoAdress.Text, + datachg_usr = LoginInfo.WorkerNo == null ? AdminInfo.Account : LoginInfo.WorkerNo, + datachg_date = DateTime.Now + + }; + try + { + if (CheckInput(custo)) + { + //启用MD5对涉密信息进行加密 + var NewID = Md5LockedUtil.MD5Encrypt32(custo.CustoID); + var NewTel = Md5LockedUtil.MD5Encrypt32(custo.CustoTel); + var NewAddress = Md5LockedUtil.MD5Encrypt32(custo.CustoAdress); + custo.CustoID = NewID; + custo.CustoTel = NewTel; + custo.CustoAdress = NewAddress; + bool t = new CustoService().UpdCustomerInfoByCustoNo(custo); + if (t == true) + { + UIMessageBox.Show("修改成功", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog() + { + OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")), + Operationlog = "编号:" + LoginInfo.WorkerNo + "【" + FrmMain.wk_WorkerName + "】" + "于" + DateTime.Now + "修改了一名客户信息,客户编号为:" + custo.CustoNo, + OperationAccount = LoginInfo.WorkerNo, + datains_usr = LoginInfo.WorkerNo == null ? AdminInfo.Account : LoginInfo.WorkerNo, + datains_date = DateTime.Now + }; + new OperationlogService().InsertOperationLog(o); + #endregion + FrmCustoManager.Reload(); + } + else + { + UIMessageBox.Show("修改失败", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + } + + foreach (Control Ctrol in this.Controls) + { + if (Ctrol is Sunny.UI.UITextBox) + { + Ctrol.Text = ""; + } + if (Ctrol is Sunny.UI.UIComboBox) + { + this.cbSex.SelectedIndex = 0; + this.cbCustoType.SelectedIndex = 0; + this.cbPassportType.SelectedIndex = 0; + } + } + } + } + catch + { + + + } + } + + private void txtCardID_Validated(object sender, EventArgs e) + { + //获取得到输入的身份证号码 + string identityCard = txtCardID.Text.Trim(); + if (string.IsNullOrEmpty(identityCard)) + { + //身份证号码不能为空,如果为空返回 + MessageBox.Show("身份证号码不能为空!"); + if (txtCardID.CanFocus) + { + txtCardID.Focus();//设置当前输入焦点为txtCardID_identityCard + } + return; + } + else + { + //身份证号码只能为15位或18位其它不合法 + if (identityCard.Length != 15 && identityCard.Length != 18) + { + MessageBox.Show("身份证号码为15位或18位,请检查!"); + if (txtCardID.CanFocus) + { + txtCardID.Focus(); + } + return; + } + } + string birthday = ""; + string sex = ""; + if (identityCard.Length == 18) + { + var result = new IDCardUtil().SelectCardCode(identityCard); + var address = result.Replace(",", "").ToString(); + birthday = identityCard.Substring(6, 4) + "-" + identityCard.Substring(10, 2) + "-" + identityCard.Substring(12, 2); + sex = identityCard.Substring(14, 3); + txtCustoAdress.Text = address; + //性别代码为偶数是女性奇数为男性 + if (int.Parse(sex) % 2 == 0) + { + cbSex.Text = "女"; + } + else + { + cbSex.Text = "男"; + } + } + try + { + dtpBirthday.Value = Convert.ToDateTime(birthday); + } + catch + { + MessageBox.Show("请正确输入证件号码!"); + } + + cbPassportType.SelectedIndex = 0; + + return; + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmInputs.resx b/SYS.FormUI/AppFunction/FrmInputs.resx new file mode 100644 index 0000000000000000000000000000000000000000..79f7d218268707b7a8a373a6c304f22c06bddaac --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmInputs.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGAAtAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABwklEQVRYR+2WP0sD + QRDF08RCMIWdJEWKgJJOC8UunZUgiI2CiFUaGwm25jtY+QdS2KUSQbGz0k9gp2AlFloI2mhx+lvZC8Ox + t5O72/ICw012Zt57Oze7SaVSfsoOBOhAFEUr2AB7xh6xY7MWAFqHgOjsN+VjYjpCgQx4+5IbwjfsJbHW + K0CRXgrRVEyE/4Dtxtmsb5jXIeK14CIAnxM77ScJzEwIAe3gAiBYEgTrSQJiOyK+nFkAxR1pjh3WBcHA + Eb8S8UZeATFGxwVAF+5NAs937MgI5tnGDvE/bOwyM7kpsLvXBMymHUGx+5lMAlB/G5sAGa053nWT/Luk + ENaesPlM5Hbn3k25ACmYgKyLnWOndgAnM5PnFZCLSCsaZwY0jELxcQTEEy/nJuHv8b2VS4g9Uv/DZ3zH + OW9pJ0DEm7lE+IoAH44rwFzLQQUAuCDIh2ngUmSuI5kGDFhPCFjz5K2Ku2Q/WBcQcG2v2W/8aU8HqsRf + C13JjuFrAPplQW+0XZnLyeZ+4te1fDUOyLZo64FWQP6WyN/U8tU4gKP/gPiLWgE5NezHduFEy/fG7Z2f + +sPkGcYL8QNXLSSiLC47ELoDf09wU3loaIhUAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmMySpace.Designer.cs b/SYS.FormUI/AppFunction/FrmMySpace.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..8e7a65f165f544fe830462f9a62911cd101140fc --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmMySpace.Designer.cs @@ -0,0 +1,538 @@ + +namespace SYS.FormUI +{ + partial class FrmMySpace + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMySpace)); + this.uiTabControlMenu1 = new Sunny.UI.UITabControlMenu(); + this.tpWorkerInfo = new System.Windows.Forms.TabPage(); + this.cboWorkerClub = new Sunny.UI.UIComboBox(); + this.cboWorkerPosition = new Sunny.UI.UIComboBox(); + this.cboSex = new Sunny.UI.UIComboBox(); + this.txtWorkerNo = new Sunny.UI.UITextBox(); + this.txtWorkerName = new Sunny.UI.UITextBox(); + this.txtTel = new Sunny.UI.UITextBox(); + this.txtAddress = new Sunny.UI.UITextBox(); + this.label2 = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); + this.label16 = new System.Windows.Forms.Label(); + this.label30 = new System.Windows.Forms.Label(); + this.label31 = new System.Windows.Forms.Label(); + this.label32 = new System.Windows.Forms.Label(); + this.cbWorkerNation = new Sunny.UI.UIComboBox(); + this.label1 = new System.Windows.Forms.Label(); + this.tpSecurity = new System.Windows.Forms.TabPage(); + this.txtOldPwd = new Sunny.UI.UITextBox(); + this.txtNewPwd = new Sunny.UI.UITextBox(); + this.label4 = new System.Windows.Forms.Label(); + this.label6 = new System.Windows.Forms.Label(); + this.btnUpdWorker = new Sunny.UI.UIButton(); + this.lgCheckOldPwd = new Sunny.UI.UILight(); + this.lgCheckNewPwd = new Sunny.UI.UILight(); + this.lblOldMsg = new Sunny.UI.UILabel(); + this.lblNewMsg = new Sunny.UI.UILabel(); + this.btnUpdPwd = new Sunny.UI.UIButton(); + this.label7 = new System.Windows.Forms.Label(); + this.uiTabControlMenu1.SuspendLayout(); + this.tpWorkerInfo.SuspendLayout(); + this.tpSecurity.SuspendLayout(); + this.SuspendLayout(); + // + // uiTabControlMenu1 + // + this.uiTabControlMenu1.Alignment = System.Windows.Forms.TabAlignment.Left; + this.uiTabControlMenu1.Controls.Add(this.tpWorkerInfo); + this.uiTabControlMenu1.Controls.Add(this.tpSecurity); + this.uiTabControlMenu1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed; + this.uiTabControlMenu1.Font = new System.Drawing.Font("微软雅黑", 12F); + this.uiTabControlMenu1.ItemSize = new System.Drawing.Size(40, 200); + this.uiTabControlMenu1.Location = new System.Drawing.Point(3, 38); + this.uiTabControlMenu1.MenuStyle = Sunny.UI.UIMenuStyle.Custom; + this.uiTabControlMenu1.Multiline = true; + this.uiTabControlMenu1.Name = "uiTabControlMenu1"; + this.uiTabControlMenu1.SelectedIndex = 0; + this.uiTabControlMenu1.Size = new System.Drawing.Size(867, 546); + this.uiTabControlMenu1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed; + this.uiTabControlMenu1.TabBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.uiTabControlMenu1.TabIndex = 14; + this.uiTabControlMenu1.TabSelectedColor = System.Drawing.Color.Snow; + // + // tpWorkerInfo + // + this.tpWorkerInfo.Controls.Add(this.label7); + this.tpWorkerInfo.Controls.Add(this.btnUpdWorker); + this.tpWorkerInfo.Controls.Add(this.cbWorkerNation); + this.tpWorkerInfo.Controls.Add(this.label1); + this.tpWorkerInfo.Controls.Add(this.cboWorkerClub); + this.tpWorkerInfo.Controls.Add(this.cboWorkerPosition); + this.tpWorkerInfo.Controls.Add(this.cboSex); + this.tpWorkerInfo.Controls.Add(this.txtWorkerNo); + this.tpWorkerInfo.Controls.Add(this.txtWorkerName); + this.tpWorkerInfo.Controls.Add(this.txtTel); + this.tpWorkerInfo.Controls.Add(this.txtAddress); + this.tpWorkerInfo.Controls.Add(this.label2); + this.tpWorkerInfo.Controls.Add(this.label5); + this.tpWorkerInfo.Controls.Add(this.label16); + this.tpWorkerInfo.Controls.Add(this.label30); + this.tpWorkerInfo.Controls.Add(this.label31); + this.tpWorkerInfo.Controls.Add(this.label32); + this.tpWorkerInfo.Location = new System.Drawing.Point(201, 0); + this.tpWorkerInfo.Name = "tpWorkerInfo"; + this.tpWorkerInfo.Size = new System.Drawing.Size(666, 546); + this.tpWorkerInfo.TabIndex = 1; + this.tpWorkerInfo.Text = "个人信息"; + this.tpWorkerInfo.UseVisualStyleBackColor = true; + // + // cboWorkerClub + // + this.cboWorkerClub.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboWorkerClub.FillColor = System.Drawing.Color.White; + this.cboWorkerClub.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboWorkerClub.Location = new System.Drawing.Point(435, 9); + this.cboWorkerClub.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboWorkerClub.MinimumSize = new System.Drawing.Size(63, 0); + this.cboWorkerClub.Name = "cboWorkerClub"; + this.cboWorkerClub.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboWorkerClub.Radius = 20; + this.cboWorkerClub.ReadOnly = true; + this.cboWorkerClub.Size = new System.Drawing.Size(203, 35); + this.cboWorkerClub.Style = Sunny.UI.UIStyle.Custom; + this.cboWorkerClub.TabIndex = 125; + this.cboWorkerClub.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cboWorkerClub.Watermark = ""; + // + // cboWorkerPosition + // + this.cboWorkerPosition.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboWorkerPosition.FillColor = System.Drawing.Color.White; + this.cboWorkerPosition.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboWorkerPosition.Location = new System.Drawing.Point(435, 61); + this.cboWorkerPosition.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboWorkerPosition.MinimumSize = new System.Drawing.Size(63, 0); + this.cboWorkerPosition.Name = "cboWorkerPosition"; + this.cboWorkerPosition.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboWorkerPosition.Radius = 20; + this.cboWorkerPosition.ReadOnly = true; + this.cboWorkerPosition.Size = new System.Drawing.Size(203, 35); + this.cboWorkerPosition.Style = Sunny.UI.UIStyle.Custom; + this.cboWorkerPosition.TabIndex = 124; + this.cboWorkerPosition.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // cboSex + // + this.cboSex.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboSex.FillColor = System.Drawing.Color.White; + this.cboSex.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboSex.Location = new System.Drawing.Point(123, 113); + this.cboSex.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboSex.MinimumSize = new System.Drawing.Size(63, 0); + this.cboSex.Name = "cboSex"; + this.cboSex.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboSex.Radius = 20; + this.cboSex.Size = new System.Drawing.Size(203, 35); + this.cboSex.Style = Sunny.UI.UIStyle.Custom; + this.cboSex.TabIndex = 123; + this.cboSex.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // txtWorkerNo + // + this.txtWorkerNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtWorkerNo.FillColor = System.Drawing.Color.White; + this.txtWorkerNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtWorkerNo.Location = new System.Drawing.Point(124, 9); + this.txtWorkerNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtWorkerNo.Maximum = 2147483647D; + this.txtWorkerNo.Minimum = -2147483648D; + this.txtWorkerNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtWorkerNo.Name = "txtWorkerNo"; + this.txtWorkerNo.Padding = new System.Windows.Forms.Padding(5); + this.txtWorkerNo.Radius = 20; + this.txtWorkerNo.ReadOnly = true; + this.txtWorkerNo.Size = new System.Drawing.Size(203, 35); + this.txtWorkerNo.Style = Sunny.UI.UIStyle.Custom; + this.txtWorkerNo.StyleCustomMode = true; + this.txtWorkerNo.TabIndex = 122; + // + // txtWorkerName + // + this.txtWorkerName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtWorkerName.FillColor = System.Drawing.Color.White; + this.txtWorkerName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtWorkerName.Location = new System.Drawing.Point(124, 61); + this.txtWorkerName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtWorkerName.Maximum = 2147483647D; + this.txtWorkerName.Minimum = -2147483648D; + this.txtWorkerName.MinimumSize = new System.Drawing.Size(1, 1); + this.txtWorkerName.Name = "txtWorkerName"; + this.txtWorkerName.Padding = new System.Windows.Forms.Padding(5); + this.txtWorkerName.Radius = 20; + this.txtWorkerName.Size = new System.Drawing.Size(203, 35); + this.txtWorkerName.Style = Sunny.UI.UIStyle.Custom; + this.txtWorkerName.StyleCustomMode = true; + this.txtWorkerName.TabIndex = 121; + // + // txtTel + // + this.txtTel.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtTel.FillColor = System.Drawing.Color.White; + this.txtTel.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtTel.Location = new System.Drawing.Point(124, 161); + this.txtTel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtTel.Maximum = 2147483647D; + this.txtTel.Minimum = -2147483648D; + this.txtTel.MinimumSize = new System.Drawing.Size(1, 1); + this.txtTel.Name = "txtTel"; + this.txtTel.Padding = new System.Windows.Forms.Padding(5); + this.txtTel.Radius = 20; + this.txtTel.Size = new System.Drawing.Size(515, 35); + this.txtTel.Style = Sunny.UI.UIStyle.Custom; + this.txtTel.StyleCustomMode = true; + this.txtTel.TabIndex = 119; + this.txtTel.Watermark = ""; + // + // txtAddress + // + this.txtAddress.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtAddress.FillColor = System.Drawing.Color.White; + this.txtAddress.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtAddress.Location = new System.Drawing.Point(124, 213); + this.txtAddress.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtAddress.Maximum = 2147483647D; + this.txtAddress.Minimum = -2147483648D; + this.txtAddress.MinimumSize = new System.Drawing.Size(1, 1); + this.txtAddress.Name = "txtAddress"; + this.txtAddress.Padding = new System.Windows.Forms.Padding(5); + this.txtAddress.Radius = 20; + this.txtAddress.Size = new System.Drawing.Size(515, 35); + this.txtAddress.Style = Sunny.UI.UIStyle.Custom; + this.txtAddress.StyleCustomMode = true; + this.txtAddress.TabIndex = 117; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(26, 218); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(88, 25); + this.label2.TabIndex = 115; + this.label2.Text = "居住地址"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label5.Location = new System.Drawing.Point(337, 66); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(88, 25); + this.label5.TabIndex = 112; + this.label5.Text = "现任职位"; + // + // label16 + // + this.label16.AutoSize = true; + this.label16.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label16.Location = new System.Drawing.Point(337, 15); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(88, 25); + this.label16.TabIndex = 111; + this.label16.Text = "所在部门"; + // + // label30 + // + this.label30.AutoSize = true; + this.label30.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label30.Location = new System.Drawing.Point(26, 116); + this.label30.Name = "label30"; + this.label30.Size = new System.Drawing.Size(86, 25); + this.label30.TabIndex = 109; + this.label30.Text = "性 别"; + // + // label31 + // + this.label31.AutoSize = true; + this.label31.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label31.Location = new System.Drawing.Point(26, 66); + this.label31.Name = "label31"; + this.label31.Size = new System.Drawing.Size(88, 25); + this.label31.TabIndex = 108; + this.label31.Text = "员工姓名"; + // + // label32 + // + this.label32.AutoSize = true; + this.label32.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label32.Location = new System.Drawing.Point(26, 15); + this.label32.Name = "label32"; + this.label32.Size = new System.Drawing.Size(88, 25); + this.label32.TabIndex = 107; + this.label32.Text = "员工编号"; + // + // cbWorkerNation + // + this.cbWorkerNation.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cbWorkerNation.FillColor = System.Drawing.Color.White; + this.cbWorkerNation.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cbWorkerNation.Location = new System.Drawing.Point(434, 113); + this.cbWorkerNation.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cbWorkerNation.MinimumSize = new System.Drawing.Size(63, 0); + this.cbWorkerNation.Name = "cbWorkerNation"; + this.cbWorkerNation.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cbWorkerNation.Radius = 20; + this.cbWorkerNation.Size = new System.Drawing.Size(203, 35); + this.cbWorkerNation.Style = Sunny.UI.UIStyle.Custom; + this.cbWorkerNation.TabIndex = 129; + this.cbWorkerNation.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cbWorkerNation.SelectedIndexChanged += new System.EventHandler(this.cbWorkerNation_SelectedIndexChanged); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(337, 116); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(86, 25); + this.label1.TabIndex = 128; + this.label1.Text = "民 族"; + // + // tpSecurity + // + this.tpSecurity.Controls.Add(this.btnUpdPwd); + this.tpSecurity.Controls.Add(this.lblNewMsg); + this.tpSecurity.Controls.Add(this.lblOldMsg); + this.tpSecurity.Controls.Add(this.lgCheckNewPwd); + this.tpSecurity.Controls.Add(this.lgCheckOldPwd); + this.tpSecurity.Controls.Add(this.txtOldPwd); + this.tpSecurity.Controls.Add(this.txtNewPwd); + this.tpSecurity.Controls.Add(this.label4); + this.tpSecurity.Controls.Add(this.label6); + this.tpSecurity.Location = new System.Drawing.Point(201, 0); + this.tpSecurity.Name = "tpSecurity"; + this.tpSecurity.Size = new System.Drawing.Size(663, 546); + this.tpSecurity.TabIndex = 2; + this.tpSecurity.Text = "账号安全"; + this.tpSecurity.UseVisualStyleBackColor = true; + this.tpSecurity.Click += new System.EventHandler(this.tpSecurity_Click); + // + // txtOldPwd + // + this.txtOldPwd.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtOldPwd.FillColor = System.Drawing.Color.White; + this.txtOldPwd.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtOldPwd.Location = new System.Drawing.Point(204, 56); + this.txtOldPwd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtOldPwd.Maximum = 2147483647D; + this.txtOldPwd.Minimum = -2147483648D; + this.txtOldPwd.MinimumSize = new System.Drawing.Size(1, 1); + this.txtOldPwd.Name = "txtOldPwd"; + this.txtOldPwd.Padding = new System.Windows.Forms.Padding(5); + this.txtOldPwd.PasswordChar = '*'; + this.txtOldPwd.Radius = 20; + this.txtOldPwd.Size = new System.Drawing.Size(272, 35); + this.txtOldPwd.Style = Sunny.UI.UIStyle.Custom; + this.txtOldPwd.StyleCustomMode = true; + this.txtOldPwd.TabIndex = 126; + this.txtOldPwd.TextChanged += new System.EventHandler(this.txtOldPwd_TextChanged); + this.txtOldPwd.Validated += new System.EventHandler(this.txtOldPwd_Validated); + // + // txtNewPwd + // + this.txtNewPwd.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtNewPwd.FillColor = System.Drawing.Color.White; + this.txtNewPwd.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtNewPwd.Location = new System.Drawing.Point(204, 144); + this.txtNewPwd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtNewPwd.Maximum = 2147483647D; + this.txtNewPwd.Minimum = -2147483648D; + this.txtNewPwd.MinimumSize = new System.Drawing.Size(1, 1); + this.txtNewPwd.Name = "txtNewPwd"; + this.txtNewPwd.Padding = new System.Windows.Forms.Padding(5); + this.txtNewPwd.PasswordChar = '*'; + this.txtNewPwd.Radius = 20; + this.txtNewPwd.Size = new System.Drawing.Size(272, 35); + this.txtNewPwd.Style = Sunny.UI.UIStyle.Custom; + this.txtNewPwd.StyleCustomMode = true; + this.txtNewPwd.TabIndex = 125; + this.txtNewPwd.Validated += new System.EventHandler(this.txtNewPwd_Validated); + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.Location = new System.Drawing.Point(128, 148); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(69, 25); + this.label4.TabIndex = 124; + this.label4.Text = "新密码"; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label6.Location = new System.Drawing.Point(128, 60); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(69, 25); + this.label6.TabIndex = 123; + this.label6.Text = "旧密码"; + // + // btnUpdWorker + // + this.btnUpdWorker.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnUpdWorker.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnUpdWorker.Location = new System.Drawing.Point(530, 267); + this.btnUpdWorker.MinimumSize = new System.Drawing.Size(1, 1); + this.btnUpdWorker.Name = "btnUpdWorker"; + this.btnUpdWorker.Radius = 20; + this.btnUpdWorker.Size = new System.Drawing.Size(109, 42); + this.btnUpdWorker.TabIndex = 130; + this.btnUpdWorker.Text = "修 改"; + this.btnUpdWorker.Click += new System.EventHandler(this.btnUpdWorker_Click); + // + // lgCheckOldPwd + // + this.lgCheckOldPwd.CenterColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(248)))), ((int)(((byte)(232))))); + this.lgCheckOldPwd.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lgCheckOldPwd.Location = new System.Drawing.Point(499, 56); + this.lgCheckOldPwd.MinimumSize = new System.Drawing.Size(1, 1); + this.lgCheckOldPwd.Name = "lgCheckOldPwd"; + this.lgCheckOldPwd.Radius = 35; + this.lgCheckOldPwd.Size = new System.Drawing.Size(35, 35); + this.lgCheckOldPwd.TabIndex = 127; + this.lgCheckOldPwd.Text = "uiLight1"; + this.lgCheckOldPwd.Visible = false; + // + // lgCheckNewPwd + // + this.lgCheckNewPwd.CenterColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(248)))), ((int)(((byte)(232))))); + this.lgCheckNewPwd.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lgCheckNewPwd.Location = new System.Drawing.Point(499, 144); + this.lgCheckNewPwd.MinimumSize = new System.Drawing.Size(1, 1); + this.lgCheckNewPwd.Name = "lgCheckNewPwd"; + this.lgCheckNewPwd.Radius = 35; + this.lgCheckNewPwd.Size = new System.Drawing.Size(35, 35); + this.lgCheckNewPwd.TabIndex = 128; + this.lgCheckNewPwd.Text = "uiLight2"; + this.lgCheckNewPwd.Visible = false; + // + // lblOldMsg + // + this.lblOldMsg.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lblOldMsg.Location = new System.Drawing.Point(209, 105); + this.lblOldMsg.Name = "lblOldMsg"; + this.lblOldMsg.Size = new System.Drawing.Size(267, 23); + this.lblOldMsg.TabIndex = 129; + this.lblOldMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // lblNewMsg + // + this.lblNewMsg.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lblNewMsg.Location = new System.Drawing.Point(209, 196); + this.lblNewMsg.Name = "lblNewMsg"; + this.lblNewMsg.Size = new System.Drawing.Size(267, 23); + this.lblNewMsg.TabIndex = 130; + this.lblNewMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // btnUpdPwd + // + this.btnUpdPwd.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnUpdPwd.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnUpdPwd.Location = new System.Drawing.Point(244, 260); + this.btnUpdPwd.MinimumSize = new System.Drawing.Size(1, 1); + this.btnUpdPwd.Name = "btnUpdPwd"; + this.btnUpdPwd.Radius = 20; + this.btnUpdPwd.Size = new System.Drawing.Size(175, 42); + this.btnUpdPwd.TabIndex = 131; + this.btnUpdPwd.Text = "修 改"; + this.btnUpdPwd.Click += new System.EventHandler(this.btnUpdPwd_Click); + // + // label7 + // + this.label7.AutoSize = true; + this.label7.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label7.Location = new System.Drawing.Point(26, 168); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(88, 25); + this.label7.TabIndex = 131; + this.label7.Text = "联系方式"; + // + // FrmMySpace + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(873, 587); + this.Controls.Add(this.uiTabControlMenu1); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmMySpace"; + this.ShowIcon = true; + this.Text = "个人中心"; + this.Load += new System.EventHandler(this.FrmMySpace_Load); + this.uiTabControlMenu1.ResumeLayout(false); + this.tpWorkerInfo.ResumeLayout(false); + this.tpWorkerInfo.PerformLayout(); + this.tpSecurity.ResumeLayout(false); + this.tpSecurity.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + private Sunny.UI.UITabControlMenu uiTabControlMenu1; + private System.Windows.Forms.TabPage tpWorkerInfo; + private Sunny.UI.UIComboBox cbWorkerNation; + private System.Windows.Forms.Label label1; + private Sunny.UI.UIComboBox cboWorkerClub; + private Sunny.UI.UIComboBox cboWorkerPosition; + private Sunny.UI.UIComboBox cboSex; + private Sunny.UI.UITextBox txtWorkerNo; + private Sunny.UI.UITextBox txtWorkerName; + private Sunny.UI.UITextBox txtTel; + private Sunny.UI.UITextBox txtAddress; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.Label label16; + private System.Windows.Forms.Label label30; + private System.Windows.Forms.Label label31; + private System.Windows.Forms.Label label32; + private System.Windows.Forms.TabPage tpSecurity; + private Sunny.UI.UITextBox txtOldPwd; + private Sunny.UI.UITextBox txtNewPwd; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label label6; + private Sunny.UI.UIButton btnUpdWorker; + private Sunny.UI.UILight lgCheckNewPwd; + private Sunny.UI.UILight lgCheckOldPwd; + private Sunny.UI.UILabel lblOldMsg; + private Sunny.UI.UILabel lblNewMsg; + private Sunny.UI.UIButton btnUpdPwd; + private System.Windows.Forms.Label label7; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmMySpace.cs b/SYS.FormUI/AppFunction/FrmMySpace.cs new file mode 100644 index 0000000000000000000000000000000000000000..ebe0c20c7e499e2325ff77c13feb7142e1a5dc70 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmMySpace.cs @@ -0,0 +1,200 @@ +using Sunny.UI; +using SYS.Application; +using SYS.Core; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Text.RegularExpressions; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmMySpace : UIForm + { + public FrmMySpace() + { + InitializeComponent(); + } + + private void FrmMySpace_Load(object sender, EventArgs e) + { + //加载民族信息 + cbWorkerNation.DataSource = new BaseService().SelectNationAllCanUse(); + cbWorkerNation.DisplayMember = "nation_name"; + cbWorkerNation.ValueMember = "nation_no"; + //加载性别信息 + cboSex.DataSource = new BaseService().SelectSexTypeAllCanUse(); + cboSex.DisplayMember = "sexName"; + cboSex.ValueMember = "sexId"; + LoadData(); + } + + private void tpSecurity_Click(object sender, EventArgs e) + { + + } + + public void LoadData() + { + Worker worker = new WorkerService().SelectWorkerInfoByWorkerId(LoginInfo.WorkerNo); + if (worker != null) + { + txtWorkerNo.Text = worker.WorkerId; + txtWorkerName.Text = worker.WorkerName; + cboSex.SelectedIndex = worker.WorkerSex; + cboWorkerPosition.Text = worker.PositionName; + cboWorkerPosition.SelectedValue = worker.WorkerPosition; + cboWorkerClub.Text = worker.ClubName; + cboWorkerClub.SelectedValue = worker.WorkerClub; + cbWorkerNation.Text = worker.NationName; + cbWorkerNation.SelectedValue = worker.WorkerNation; + txtAddress.Text = worker.WorkerAddress; + txtTel.Text = worker.WorkerTel; + } + } + + private void txtOldPwd_TextChanged(object sender, EventArgs e) + { + if (txtOldPwd.TextLength < 6) + { + lgCheckOldPwd.Visible = true; + lgCheckOldPwd.OnColor = Color.Red; + } + } + + private void txtOldPwd_Validated(object sender, EventArgs e) + { + //校验旧密码是否正确 + var result = new WorkerService().SelectWorkerInfoByWorkerIdAndWorkerPwd(LoginInfo.WorkerNo, txtOldPwd.Text.Trim()); + if (result != null) + { + lgCheckOldPwd.Visible = true; + lgCheckOldPwd.OnColor = Color.Green; + lblOldMsg.ForeColor = Color.Green; + lblOldMsg.Text = "旧密码符合,请继续填写新密码!"; + txtNewPwd.ReadOnly = false; + txtNewPwd.Validated += new EventHandler(txtNewPwd_Validated); + } + else + { + lgCheckOldPwd.Visible = true; + lgCheckOldPwd.OnColor = Color.Red; + lblOldMsg.ForeColor = Color.Red; + lblOldMsg.Text = "旧密码有误,请重试!"; + txtNewPwd.ReadOnly = true; + txtNewPwd.Validated -= new EventHandler(txtNewPwd_Validated); + + } + } + + private void txtNewPwd_Validated(object sender, EventArgs e) + { + string pattern = @"^[A-Za-z0-9]+$"; + Regex regex = new Regex(pattern); + if (regex.IsMatch(txtNewPwd.Text.Trim()) && txtNewPwd.TextLength > 8) + { + lblNewMsg.ForeColor = Color.Green; + lblNewMsg.Text = "密码长度及格式符合要求!"; + lgCheckNewPwd.Visible = true; + lgCheckNewPwd.OnColor = Color.Green; + return; + + } + else + { + lblNewMsg.ForeColor = Color.Red; + lblNewMsg.Text = "密码长度及格式不符合要求,请检查!"; + lgCheckNewPwd.Visible = true; + txtNewPwd.Focus(); + lgCheckNewPwd.OnColor = Color.Red; + return; + } + } + + private void btnUpdPwd_Click(object sender, EventArgs e) + { + bool tf = new WorkerService().UpdWorkerPwdByWorkNo(LoginInfo.WorkerNo, txtNewPwd.Text.Trim()); + if (tf == false) + { + UIMessageBox.Show("服务器繁忙,修改失败!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + return; + } + UIMessageBox.Show("修改成功,系统将在稍后退出,请使用新密码进行登录系统!", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); + FrmMain.CloseMy(); + this.Close(); + return; + } + + public bool CheckInput(Worker worker) + { + if (string.IsNullOrWhiteSpace(worker.WorkerId)) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerName)) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerSex + "")) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerNation)) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerTel)) + { + return false; + } + if (string.IsNullOrWhiteSpace(worker.WorkerAddress)) + { + return false; + } + return true; + } + + private void btnUpdWorker_Click(object sender, EventArgs e) + { + Worker worker = new Worker() + { + WorkerId = txtWorkerNo.Text.Trim(), + WorkerName = txtWorkerName.Text.Trim(), + WorkerSex = cboSex.Text == "男" ? 1 : 0, + WorkerNation = cbWorkerNation.SelectedValue.ToString(), + WorkerTel = txtTel.Text.Trim(), + WorkerAddress = txtAddress.Text.Trim(), + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now + }; + + if (CheckInput(worker)) + { + //加密涉密信息 + var newTel = Md5LockedUtil.MD5Encrypt32(worker.WorkerTel); + var newAddress = Md5LockedUtil.MD5Encrypt32(worker.WorkerAddress); + worker.WorkerTel = newTel; + worker.WorkerAddress = newAddress; + + bool tf = new WorkerService().UpdateWorker(worker); + if (tf == false) + { + UIMessageBox.Show("修改失败!服务器处于繁忙,请稍后再试!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + return; + } + UIMessageBox.Show("修改成功!", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); + LoadData(); + return; + } + } + + private void cbWorkerNation_SelectedIndexChanged(object sender, EventArgs e) + { + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmMySpace.resx b/SYS.FormUI/AppFunction/FrmMySpace.resx new file mode 100644 index 0000000000000000000000000000000000000000..d2312e1315859939e5d5fad97a4ee52144f74601 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmMySpace.resx @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGACFAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAADGklEQVRYR72XMWtU + QRDHAzY24USwCFiIgmC+gK0GES1zkEoCZ6MfwA/gFSmEq3MiKYSAcoQYiV1sAoKNhEtjIwohiCAeSEK8 + 9uLv/9x9zO3tvd3cgQ/+vPd2Z2f+szOzb97MTOY1GAxmwSLogC44BH3wA7w7PT1tgiWe5zNV5omh8AZo + g98YyL028rQnpDC6Ao6tVd5PwA5YBy2wCnbBLyO3NzUBFH4IDK8xdr9KMfOXWHMLXLFyjM+JpOayiCHc + 88Z53gYLWQvHCAVxqyaBsQOzYOpYoqsREGiMdQbBDSPcnMZruxade9KLc5/B9aheJVyucWSvgS1Xgl+5 + v0iVX2X8XakV2a6YJxJtXp6E9ei8m+wMYHHbJF1lwiH7ftxhwNzbM4cNZTVw5Lxfq1LgSix1GFVmuUrU + 5cS/BIf1svG+/h8I6JwoLmzfFYFN99JPbR9yV1PuSyaRQ7OGQEsEuo7AToqA5n1JxYigq5OjA7kvzuZH + ETh0L+s5i5F9VLELWUctNl87m99EoO9eWjkEXN481BkQEMky7nbxmbN5MhEBR2IOJQ2IPEkdQqFjrCtO + XNb9OVMIdAIGR6xKqvSceZG6k9pJn0f67mQlIQsuIPwc9MBNb0AK5Il5f+w8exmStaSYK5ob7p9EoFPG + I0Kd+Ytg38S76cX8mCHwypTYVmwnFC4jsyoCi2ZgpOFg/oFNNpVtjAAy55j7HiRmIxJ/9Y7Fhfw9EVCz + 6bdk5ChGrlxgFhZhsDuAjtuBcRl4ExJgrPiQcVcLd76Y52Xsx4i5p6FikQoJjCG6G8S+bpxol3MYUecb + /RyzYClCIHeozBdVCPjpvD+WzaHdYcA2JGUrxvhlFtlOKdf4UDunjDfer0RLFSHbCZfsU3WdmrfhkY1K + eQTKjtjHOmWgaj4w3svS5Q8YF6+J2nJ0LIBts+0HWcZNjQ/FHWX6MalsWFxF1SUbJMpk7b0S01eH8UQ/ + pPbXTL9n+k3TWPFlNbLK9njC5W6HK1GdE0XfmHkd6WwZKbVcozE5DNdQuAw2QRf433PtiJ41pjn1mLVc + W38BcWWyUzy+d+8AAAAASUVORK5CYII= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmNation.Designer.cs b/SYS.FormUI/AppFunction/FrmNation.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..10c6c61ccf73a33c57330eb93316dbe5f6f313f9 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmNation.Designer.cs @@ -0,0 +1,69 @@ + +namespace SYS.FormUI +{ + partial class FrmNation + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmNation)); + this.flpInformation = new System.Windows.Forms.FlowLayoutPanel(); + this.SuspendLayout(); + // + // flpInformation + // + this.flpInformation.AutoScroll = true; + this.flpInformation.BackColor = System.Drawing.Color.Transparent; + this.flpInformation.Location = new System.Drawing.Point(440, 38); + this.flpInformation.Margin = new System.Windows.Forms.Padding(2); + this.flpInformation.Name = "flpInformation"; + this.flpInformation.Size = new System.Drawing.Size(562, 582); + this.flpInformation.TabIndex = 72; + this.flpInformation.SizeChanged += new System.EventHandler(this.flpInformation_SizeChanged); + // + // FrmNation + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.flpInformation); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmNation"; + this.ShowIcon = true; + this.Text = "民族类型维护"; + this.Load += new System.EventHandler(this.FrmNation_Load); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.FlowLayoutPanel flpInformation; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmNation.cs b/SYS.FormUI/AppFunction/FrmNation.cs new file mode 100644 index 0000000000000000000000000000000000000000..c55c3cc16862505d98073af129de4476f8abef4b --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmNation.cs @@ -0,0 +1,154 @@ +using Sunny.UI; +using SYS.Application; +using SYS.Core; +using SYS.FormUI.Properties; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmNation : UIForm + { + + public delegate void OperationInfo(); + + + //定义委托类型的变量 + public static OperationInfo operation; + + public static OperationInfo reload; + + public static OperationInfo Accessed; + + public static OperationInfo insert; + + public FrmNation() + { + InitializeComponent(); + operation = Visited; + reload = ReloadNationList; + Accessed = Access; + insert = Insert; + } + + ucBaseInformation baseInfo = null; + List nations = null; + public static string info = null; + private void FrmNation_Load(object sender, EventArgs e) + { + ReloadNationList(); + + } + + public void ReloadNationList() + { + flpInformation.Controls.Clear(); + baseInfo = new ucBaseInformation(); + baseInfo.BackgroundImage = Resources.添加__增加___加; + baseInfo.lbName.Text = "新增民族类型"; + baseInfo.btnOperation.Text = "新增"; + baseInfo.btnOperation.FillColor = Color.FromArgb(80, 160, 255); + baseInfo.btnOperation.FillHoverColor = Color.FromArgb(80, 180, 255); + flpInformation.Controls.Add(baseInfo); + nations = new BaseService().SelectNationAll(); + for (int i = 0; i < nations.Count; i++) + { + baseInfo = new ucBaseInformation(); + baseInfo.lbName.Text = "名称:" + nations[i].nation_name; + if (nations[i].delete_mk == 1) + { + baseInfo.btnOperation.Text = "恢复"; + baseInfo.btnOperation.FillColor = Color.FromArgb(33, 179, 81); + baseInfo.lbName.BackColor = Color.Red; + baseInfo.btnOperation.FillHoverColor = Color.FromArgb(128, 255, 128); + } + flpInformation.Controls.Add(baseInfo); + } + } + + private void flpInformation_SizeChanged(object sender, EventArgs e) + { + flpInformation.Width = 660; + flpInformation.Height = 582; + } + + public void Visited() + { + //筛选出只与当前民族对应的数据 + Nation nation = nations.FirstOrDefault(a => a.nation_name.Equals(info)); + if (nation.nation_name.Equals(info)) + { + var _nation = new Nation() + { + nation_no = nation.nation_no, + delete_mk = 1, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }; + if (_nation != null) + { + bool n = new BaseService().DelNation(_nation); + if (n == true) + { + UIMessageBox.ShowSuccess("删除成功!"); + ReloadNationList(); + } + } + } + } + public void Access() + { + //筛选出只与当前民族对应的数据 + Nation nation = nations.FirstOrDefault(a => a.nation_name.Equals(info)); + if (nation.nation_name.Equals(info)) + { + var _nation = new Nation() + { + nation_no = nation.nation_no, + delete_mk = 0, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }; + if (_nation != null) + { + bool n = new BaseService().DelNation(_nation); + if (n == true) + { + UIMessageBox.ShowSuccess("恢复成功!"); + ReloadNationList(); + } + } + } + + } + + public void Insert() + { + var _nation = new Nation() + { + nation_no = new SYS.Core.CounterHelper().GetNewId("NationId").ToString(), + nation_name = info, + delete_mk = 0, + datains_usr = AdminInfo.Account, + datains_date = DateTime.Now + }; + if (_nation != null) + { + bool n = new BaseService().AddNation(_nation); + if (n == true) + { + UIMessageBox.ShowSuccess("新增成功!"); + ReloadNationList(); + } + } + } + + } +} diff --git a/SYS.FormUI/AppFunction/FrmNation.resx b/SYS.FormUI/AppFunction/FrmNation.resx new file mode 100644 index 0000000000000000000000000000000000000000..0bc7da8fedbfc64905ba5a2cfd21bfc64ce1bbee --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmNation.resx @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGADSAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACZ0lEQVRYR7VWTShE + URSeshBZTHYWakpZaFJKSLOYbJQsRFOWkiQphSyUzEYpCysL8lOalYVQFlY2fsqCzcRGWWiQDUmN1Yzv + jPtm7jz3d+5z6/Tmvfvd73z33HPOnVDIYeTz+Vgul9uCpWHfsAfYGb4nYXEHav1SOFqCE+UA5gW2BlBY + z2iBAGk17FMnwJsH9hbWYuFCDQXZmKlzTgQdU4qOCDav9EDhZef6ztRv4NnvLcLvO1sBfjw4toUiZMQk + iBZgfsDVOReVzjIRLHtl/EkCQ8hCUALIX1EAXiIgfxSR43uGC//RvwiAk2UVMeYbWASozgMZ4CwdAV52 + JbunzC2UEJ7tNuWnyKevsvDLdkYlwxIvjt8XQWwbPJN03H8qgLXQMh+0W1gTPtYFIYByDFbvz/wEPl4q + wlWIAjATrhGgRiTauZIYi9aDSj6+mRWFUIJpdubV/5xLBODnWNp+NeXnJWLCUUCxlftzIKIj9ipBh1PM + lzqeKAx04WjIw5iPVyhgXH23/mY4XZFv7CnqdCMsCtSuW2E17J3++QgHMPewDq1zP4DqFPbsZ8W3K0n0 + NiUdNGvtnLtwhiWkUYHgLsXRxFxE7AiiMC2JQkoieNZFQLdAwBOOolkQhahEwCvljIuIAwHxvmUUTl0E + zEh2NuUnVZUporBakQgs7JUk2AfmGnlSXZ8Avs9KBN0RsLSizvcsBZyDq8pIhM65Jwq4Ia50T3SdEvhF + UwHXBmQ3wNQSIYgzOjzNA5fVdkcAegzJBplzCq3xAP+hMgosmejiURpzPmrsmQNCRJvRUehAILLaPadh + xeP+AcFMJca2dDvBAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmNotice.Designer.cs b/SYS.FormUI/AppFunction/FrmNotice.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..4b14d5a2e0b127f444e087b23b01d47b0d9152a6 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmNotice.Designer.cs @@ -0,0 +1,99 @@ + +namespace SYS.FormUI +{ + partial class FrmNotice + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmNotice)); + this.label5 = new System.Windows.Forms.Label(); + this.rtbNoticeContent = new KSharpEditor.KEditor(); + this.dgvNoticeList = new Sunny.UI.UIListBox(); + this.SuspendLayout(); + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label5.Location = new System.Drawing.Point(38, 43); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(131, 33); + this.label5.TabIndex = 110; + this.label5.Text = "历史公告"; + // + // rtbNoticeContent + // + this.rtbNoticeContent.Enabled = false; + this.rtbNoticeContent.Html = "

     

    "; + this.rtbNoticeContent.KEditorEventListener = null; + this.rtbNoticeContent.Location = new System.Drawing.Point(206, 38); + this.rtbNoticeContent.Name = "rtbNoticeContent"; + this.rtbNoticeContent.Size = new System.Drawing.Size(796, 582); + this.rtbNoticeContent.TabIndex = 112; + // + // dgvNoticeList + // + this.dgvNoticeList.FillColor = System.Drawing.Color.White; + this.dgvNoticeList.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvNoticeList.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvNoticeList.Location = new System.Drawing.Point(4, 84); + this.dgvNoticeList.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.dgvNoticeList.MinimumSize = new System.Drawing.Size(1, 1); + this.dgvNoticeList.Name = "dgvNoticeList"; + this.dgvNoticeList.Padding = new System.Windows.Forms.Padding(2); + this.dgvNoticeList.Size = new System.Drawing.Size(195, 534); + this.dgvNoticeList.TabIndex = 113; + this.dgvNoticeList.Text = "uiListBox1"; + this.dgvNoticeList.ItemClick += new System.EventHandler(this.dgvNoticeList_ItemClick); + // + // FrmNotice + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.dgvNoticeList); + this.Controls.Add(this.rtbNoticeContent); + this.Controls.Add(this.label5); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmNotice"; + this.ShowIcon = true; + this.Text = "历史公告"; + this.Load += new System.EventHandler(this.FrmNotice_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.Label label5; + private KSharpEditor.KEditor rtbNoticeContent; + private Sunny.UI.UIListBox dgvNoticeList; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmNotice.cs b/SYS.FormUI/AppFunction/FrmNotice.cs new file mode 100644 index 0000000000000000000000000000000000000000..ca27b9a0fbea43427e621aa09595fdf9a878089d --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmNotice.cs @@ -0,0 +1,48 @@ +using Sunny.UI; +using SYS.Application; +using SYS.Core; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmNotice : UIForm + { + public FrmNotice() + { + InitializeComponent(); + } + + private void FrmNotice_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.controlFont; + } + + List notices = new NoticeService().SelectNoticeAll(); + notices.ForEach(source => + { + dgvNoticeList.Items.Add(source.NoticeNo + ":" + source.Noticetheme); + }); + } + + private void dgvNoticeList_ItemClick(object sender, EventArgs e) + { + //根据:来分割字符串并返回第一项数据即为公告编号 + var str = dgvNoticeList.SelectedItem.ToString().Split(":").First(); + Notice notice = new NoticeService().SelectNoticeByNoticeNo(str); + if (notice != null) + { + rtbNoticeContent.Html = notice.NoticeContent; + } + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmNotice.cs~merged b/SYS.FormUI/AppFunction/FrmNotice.cs~merged new file mode 100644 index 0000000000000000000000000000000000000000..66d35af1de494417edbc9a42b35ee74c09c3bcfc --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmNotice.cs~merged @@ -0,0 +1,27 @@ +using SYS.Manager; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmNotice : Form + { + public FrmNotice() + { + InitializeComponent(); + } + + private void FrmNotice_Load(object sender, EventArgs e) + { + dgvNoticeList.AutoGenerateColumns = false; + dgvNoticeList.DataSource = NoticeManager.SelectNoticeAll(); + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmNotice.cs~merged_0 b/SYS.FormUI/AppFunction/FrmNotice.cs~merged_0 new file mode 100644 index 0000000000000000000000000000000000000000..66d35af1de494417edbc9a42b35ee74c09c3bcfc --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmNotice.cs~merged_0 @@ -0,0 +1,27 @@ +using SYS.Manager; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmNotice : Form + { + public FrmNotice() + { + InitializeComponent(); + } + + private void FrmNotice_Load(object sender, EventArgs e) + { + dgvNoticeList.AutoGenerateColumns = false; + dgvNoticeList.DataSource = NoticeManager.SelectNoticeAll(); + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmNotice.resx b/SYS.FormUI/AppFunction/FrmNotice.resx new file mode 100644 index 0000000000000000000000000000000000000000..e10fc1388e6e3a1cfa7ca3338db279b04d21698f --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmNotice.resx @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGAC6AgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACT0lEQVRYR+2XP2sU + URTF9wNYKBIkGCFgIyFFIBZiZeEnCAnYaCESCBLLgKQwhfoRBBuFVBIL04YggoWFBBut/VNbhEAipNn1 + d+6eN8xkZ3cys1mJkAMn795zz5t3ZnY3m7TO8F+g3W5/EN1WotPprMnPesvScPDFOm4roQDyg/oB2LTT + 3TsyLPqocsjhO9ZdBNMTUF1G5k+OEl046hXWfFQ55OAChddbvXS3lcgFyF4C1V3pHwTQIfKDkwmApM1x + MWYT1AusT+EL+AZuw1X0ybw/7RHcC/UDJKDfj0sMAJ63LDPekgGtfgDK7E5gPFZmu/AZvBwbDPq7cMue + nyyFj6B6zcDxA7CmN9OGftDrUY+HEWguL6PsMPoVew/gnOWhA0j7Da+EycjNC3eLfk8i63tLzQLIrN6I + z3KYjH4BBGabGrDeVC+PetA4QCBMxqAAaAsa4Fl33yiANhUYJmNQAIH5IfyiWp6utUaAKqQArPOWCkD/ + AX+pxhYBtCeG/WDTcQPcsX+P5bblDOif4IFq5vUDUF6jfgxfxbAEzJa85zu8bln6mPXP6imbPQHa9PV8 + zlIP8K/Ab3DKkjT9ata1HqinbBxg0dqypVIwzx8+BRVoH16SxiWavweQ4imgP7TUF3jicPlB9o6nHirA + JNpHzYD+AMnuNgH9Avoj2HO4QN88gIB8Hv2d5oI88Dl8DeNLSKD+w9LzWUcbLkACs+xbLw+0r3AVXrW1 + ACwnEyABz0U4DW/ACct9USvAKFEZAMNLGP+IjIJkmPVRZzgNaLX+ApLAor7CZ5DTAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmOperation.Designer.cs b/SYS.FormUI/AppFunction/FrmOperation.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..6b0aa8838144540a687ec363e95ff55e1e3a56f4 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmOperation.Designer.cs @@ -0,0 +1,196 @@ +namespace SYS.FormUI +{ + partial class FrmOperation + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmOperation)); + this.dgvOperationlog = new Sunny.UI.UIDataGridView(); + this.clOperationTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clOperationlog = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clOperationAccount = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + ((System.ComponentModel.ISupportInitialize)(this.dgvOperationlog)).BeginInit(); + this.SuspendLayout(); + // + // dgvOperationlog + // + this.dgvOperationlog.AllowUserToAddRows = false; + this.dgvOperationlog.AllowUserToDeleteRows = false; + this.dgvOperationlog.AllowUserToResizeColumns = false; + this.dgvOperationlog.AllowUserToResizeRows = false; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvOperationlog.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.dgvOperationlog.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvOperationlog.BackgroundColor = System.Drawing.Color.White; + this.dgvOperationlog.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvOperationlog.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.dgvOperationlog.ColumnHeadersHeight = 32; + this.dgvOperationlog.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvOperationlog.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.clOperationTime, + this.clOperationlog, + this.clOperationAccount, + this.Column1, + this.Column2, + this.Column3, + this.Column4, + this.Column5}); + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); + dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvOperationlog.DefaultCellStyle = dataGridViewCellStyle3; + this.dgvOperationlog.EnableHeadersVisualStyles = false; + this.dgvOperationlog.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvOperationlog.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvOperationlog.Location = new System.Drawing.Point(3, 39); + this.dgvOperationlog.MultiSelect = false; + this.dgvOperationlog.Name = "dgvOperationlog"; + this.dgvOperationlog.ReadOnly = true; + this.dgvOperationlog.RowHeadersVisible = false; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.White; + this.dgvOperationlog.RowsDefaultCellStyle = dataGridViewCellStyle4; + this.dgvOperationlog.RowTemplate.Height = 29; + this.dgvOperationlog.SelectedIndex = -1; + this.dgvOperationlog.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvOperationlog.ShowGridLine = true; + this.dgvOperationlog.Size = new System.Drawing.Size(998, 582); + this.dgvOperationlog.TabIndex = 1; + // + // clOperationTime + // + this.clOperationTime.DataPropertyName = "OperationTime"; + this.clOperationTime.HeaderText = "操作时间"; + this.clOperationTime.Name = "clOperationTime"; + this.clOperationTime.ReadOnly = true; + // + // clOperationlog + // + this.clOperationlog.DataPropertyName = "Operationlog"; + this.clOperationlog.HeaderText = "操作日志"; + this.clOperationlog.Name = "clOperationlog"; + this.clOperationlog.ReadOnly = true; + // + // clOperationAccount + // + this.clOperationAccount.DataPropertyName = "OperationAccount"; + this.clOperationAccount.HeaderText = "操作人"; + this.clOperationAccount.Name = "clOperationAccount"; + this.clOperationAccount.ReadOnly = true; + // + // Column1 + // + this.Column1.DataPropertyName = "delete_mk"; + this.Column1.HeaderText = "Column1"; + this.Column1.Name = "Column1"; + this.Column1.ReadOnly = true; + this.Column1.Visible = false; + // + // Column2 + // + this.Column2.DataPropertyName = "datains_usr"; + this.Column2.HeaderText = "Column2"; + this.Column2.Name = "Column2"; + this.Column2.ReadOnly = true; + this.Column2.Visible = false; + // + // Column3 + // + this.Column3.DataPropertyName = "datains_date"; + this.Column3.HeaderText = "Column3"; + this.Column3.Name = "Column3"; + this.Column3.ReadOnly = true; + this.Column3.Visible = false; + // + // Column4 + // + this.Column4.DataPropertyName = "datachg_usr"; + this.Column4.HeaderText = "Column4"; + this.Column4.Name = "Column4"; + this.Column4.ReadOnly = true; + this.Column4.Visible = false; + // + // Column5 + // + this.Column5.DataPropertyName = "datachg_date"; + this.Column5.HeaderText = "Column5"; + this.Column5.Name = "Column5"; + this.Column5.ReadOnly = true; + this.Column5.Visible = false; + // + // FrmOperation + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.dgvOperationlog); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmOperation"; + this.ShowIcon = true; + this.Text = "员工操作日志"; + this.Load += new System.EventHandler(this.FrmOperation_Load); + ((System.ComponentModel.ISupportInitialize)(this.dgvOperationlog)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private Sunny.UI.UIDataGridView dgvOperationlog; + private System.Windows.Forms.DataGridViewTextBoxColumn clOperationTime; + private System.Windows.Forms.DataGridViewTextBoxColumn clOperationlog; + private System.Windows.Forms.DataGridViewTextBoxColumn clOperationAccount; + private System.Windows.Forms.DataGridViewTextBoxColumn Column1; + private System.Windows.Forms.DataGridViewTextBoxColumn Column2; + private System.Windows.Forms.DataGridViewTextBoxColumn Column3; + private System.Windows.Forms.DataGridViewTextBoxColumn Column4; + private System.Windows.Forms.DataGridViewTextBoxColumn Column5; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmOperation.cs b/SYS.FormUI/AppFunction/FrmOperation.cs new file mode 100644 index 0000000000000000000000000000000000000000..7c94f689883a268d7efeed1c048d555e1cf15e8e --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmOperation.cs @@ -0,0 +1,27 @@ +using Sunny.UI; +using SYS.Application; +using System; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmOperation : UIForm + { + public FrmOperation() + { + InitializeComponent(); + } + + + + private void FrmOperation_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.childControlFont; + } + + dgvOperationlog.DataSource = new OperationlogService().SelectOperationlogAll(); + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmOperation.resx b/SYS.FormUI/AppFunction/FrmOperation.resx new file mode 100644 index 0000000000000000000000000000000000000000..6c08859ee6094b6f791b7d2ab6698a8006013e37 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmOperation.resx @@ -0,0 +1,163 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAICAAAAEAGAAfAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACtElEQVRYR+2XO2gU + YRSFtxAEQVAQxEZEF1cULKKlQrCwsF+wMJDGB4JgITYWbiWIbSJKLCSNsGCCFrYBtRCJSNDCQgiI4gML + RayEXb9z58zOPmbXnVnLfHBz5577mH/IzPyzlQ26abfbjVar9RpfCPc0PKYcDKjHtMmoe1xxuIq3HjJt + aWzUo0bNsFQcDRAOC0PrKgt46bA4yenLL4CT75c5LI7PX3oBE+Pz9yyAK6pij6Xj13GzTv1/dBLhMOCk + 89Lw3yKZMNnjNgwP71/AsuV6uhjzz0VQf5C6phaPPVPsVD7J3IEF3JSGn3d8OoqA45ko6gK54dwXLH2s + m/qjGBu+iCgFhwHhkUSNAVPS8Ncd/8IucrjqeE2+G7QV9zx3vKw4l+gAhx1ouisd/9CStMUozoHcJdw0 + fkne9TXss/OXY0g/SgqHHZD20vRBOfwFa1s4fmptwZr2kRX8NsX9kLvh+nVLvSgpHPZA01nl8B+xqrWp + aEhIr3SXfB7k9KL67frBPcOJ3AUImh+45L4lafcwvR/2WBoJtXPJiHbTUoYToxZwCPuqGvwZy4Wg77j7 + X1nKUEI4zIVG3WAa8A7baXls6Km5f/A+UEI47EDxZmQ932HE8XLCz7lkbGjb7t6fljKUEA4DCk9hn5zK + o9C3A/Wb1MTMP5YylBAOAwoXpOFf4GbxM9gd7A2mm6/oAnZ43ndLGUoIhwGF6Wb0BKtZLg0zqp733lKG + EsJhQHiAYl19wPFVp0pB/1HPGf8poHgrFv8KwfEadgUr/BTQnn47LlnKUEI4HICmE9gjl2mIdrxb2GGX + jAWt2if2OcxIxg5fQAolxxhwO6lOIF7ETrqkHAxIf5CMdWdTt5uea/gf0ZVQ/muJYbHPj+CcSweg9zym + nbD8DxOhAQxKv2T6mWz4BrlUKn8Ba/iixBMATzQAAAAASUVORK5CYII= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmPosition.Designer.cs b/SYS.FormUI/AppFunction/FrmPosition.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..bddd12b2e402d7959c850b0fcc2ffa872fb139b6 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmPosition.Designer.cs @@ -0,0 +1,68 @@ + +namespace SYS.FormUI +{ + partial class FrmPosition + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmPosition)); + this.flpInformation = new System.Windows.Forms.FlowLayoutPanel(); + this.SuspendLayout(); + // + // flpInformation + // + this.flpInformation.AutoScroll = true; + this.flpInformation.BackColor = System.Drawing.Color.Transparent; + this.flpInformation.Location = new System.Drawing.Point(441, 37); + this.flpInformation.Margin = new System.Windows.Forms.Padding(2); + this.flpInformation.Name = "flpInformation"; + this.flpInformation.Size = new System.Drawing.Size(562, 582); + this.flpInformation.TabIndex = 73; + // + // FrmPosition + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.flpInformation); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmPosition"; + this.ShowIcon = true; + this.Text = "职位类型维护"; + this.Load += new System.EventHandler(this.FrmPosition_Load); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.FlowLayoutPanel flpInformation; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmPosition.cs b/SYS.FormUI/AppFunction/FrmPosition.cs new file mode 100644 index 0000000000000000000000000000000000000000..7e037cd63518132f17ebed194735478fdca4ad74 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmPosition.cs @@ -0,0 +1,151 @@ +using Sunny.UI; +using SYS.Application; +using SYS.Core; +using SYS.FormUI.Properties; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmPosition : UIForm + { + public delegate void PositionInfo(); + + + //定义委托类型的变量 + public static PositionInfo operation; + + public static PositionInfo reload; + + public static PositionInfo Accessed; + + public static PositionInfo insert; + + public FrmPosition() + { + InitializeComponent(); + operation = Visited; + reload = ReloadPositionList; + Accessed = Access; + insert = Insert; + } + + ucPositionInformation baseInfo = null; + List positions = null; + public static string info = null; + private void FrmPosition_Load(object sender, EventArgs e) + { + ReloadPositionList(); + } + + public void ReloadPositionList() + { + flpInformation.Controls.Clear(); + baseInfo = new ucPositionInformation(); + baseInfo.BackgroundImage = Resources.添加__增加___加; + baseInfo.lbName.Text = "新增职位类型"; + baseInfo.btnOperation.Text = "新增"; + baseInfo.btnOperation.FillColor = Color.FromArgb(80, 160, 255); + baseInfo.btnOperation.FillHoverColor = Color.FromArgb(80, 180, 255); + flpInformation.Controls.Add(baseInfo); + positions = new BaseService().SelectPositionAll(); + for (int i = 0; i < positions.Count; i++) + { + baseInfo = new ucPositionInformation(); + baseInfo.lbName.Text = "名称:" + positions[i].position_name; + if (positions[i].delete_mk == 1) + { + baseInfo.btnOperation.Text = "恢复"; + baseInfo.btnOperation.FillColor = Color.FromArgb(33, 179, 81); + baseInfo.lbName.BackColor = Color.Red; + baseInfo.btnOperation.FillHoverColor = Color.FromArgb(128, 255, 128); + } + flpInformation.Controls.Add(baseInfo); + } + } + + private void flpInformation_SizeChanged(object sender, EventArgs e) + { + flpInformation.Width = 660; + flpInformation.Height = 582; + } + + public void Visited() + { + //筛选出只与当前职位对应的数据 + Position position = positions.FirstOrDefault(a => a.position_name.Equals(info)); + if (position.position_name.Equals(info)) + { + var _position = new Position() + { + position_no = position.position_no, + delete_mk = 1, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }; + if (_position != null) + { + bool n = new BaseService().DelPosition(_position); + if (n == true) + { + UIMessageBox.ShowSuccess("删除成功!"); + ReloadPositionList(); + } + } + } + } + public void Access() + { + //筛选出只与当前职位对应的数据 + Position position = positions.FirstOrDefault(a => a.position_name.Equals(info)); + if (position.position_name.Equals(info)) + { + var _position = new Position() + { + position_no = position.position_no, + delete_mk = 0, + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }; + if (_position != null) + { + bool n = new BaseService().DelPosition(_position); + if (n == true) + { + UIMessageBox.ShowSuccess("恢复成功!"); + ReloadPositionList(); + } + } + } + + } + + public void Insert() + { + var _position = new Position() + { + position_no = new SYS.Core.CounterHelper().GetNewId("PositionId").ToString(), + position_name = info, + delete_mk = 0, + datains_usr = AdminInfo.Account, + datains_date = DateTime.Now + }; + if (_position != null) + { + bool n = new BaseService().AddPosition(_position); + if (n == true) + { + UIMessageBox.ShowSuccess("新增成功!"); + ReloadPositionList(); + } + } + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmPosition.resx b/SYS.FormUI/AppFunction/FrmPosition.resx new file mode 100644 index 0000000000000000000000000000000000000000..016a058e3889ad3dde5bc4ab2b35c88c0fe9cdde --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmPosition.resx @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGACVAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACKklEQVRYR+1XPUsD + QRBNZyt2EguxkGCVTsuAiAhBsLBKE0VSW4md9wM0CYIEQRBsUqXQQoxNCr9KEextFMQmoIVd9M3xVjZ3 + uf0wKRQNDLfZefP27dzs3F0q5fjrdDpjsArs6cPwg/8eVha8I7UdBrK0WhPjR1jLYG0Nm7azOyCwWENI + cS04wFOAlohvuOCNGLV7XJs+ZMzQs09MTyx2kmNKAx8yxAQS5xPzL+BnZwBFteVzPwU/0Br40wIybCo1 + z1uwh6y9+sQkYkF0A3uHjboQQnAG2BfYhQveitFa6wPGRTYnaVAxw6LbsFs2r5KV3BWgOpvpSRjxeXVO + Jx3Y2QhsOrJzWVfPRBb/h50I+wVpz4lcv1xd8R5p9oI6i+SxM710ePu8uqIS4KzYApR3A6sAgFZh+wqs + vXJVMZ75jhjpG1InipM1MxHjUg+OpBsK/xts0UcE8HUDXxO+8ZAPg2Wm/FrG0UVAtEv/pasAxFQYcxxt + VvAd0nce8mHiiBP5pAWAqRGzYBMB7BKxBwa+HWanKAKsBaKdd2t3A98GyWPZVIIk/RTZGLgAEIcvoyLa + lC0KaA1cgFbQv0dA1XbPsKs7YrIORbjC9K4bijBPvkCOofrwkE+vco9jc0XCum1xnqpZ4k/BNxmNkQLE + /Akx86oXZDHZpqrYhV0xRpYkCASbikTrqOHzQ5s/64qHcwq2xioOpJhoBVyHXHavYxAzJ/0jKkD6Duzr + I/cTHFHxdL04ZCYAAAAASUVORK5CYII= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmReserList.Designer.cs b/SYS.FormUI/AppFunction/FrmReserList.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..1a58d34e90be62d5aa9f36b59c3c3345f4c9b7fd --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmReserList.Designer.cs @@ -0,0 +1,513 @@ +namespace SYS.FormUI +{ + partial class FrmReserList + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmReserList)); + this.dgvReserList = new Sunny.UI.UIDataGridView(); + this.clReserNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCustoNm = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clTel = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clway = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clRoomNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clStartTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clDealTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clReserMemo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.cbCustoType = new Sunny.UI.UIComboBox(); + this.cbPassportType = new Sunny.UI.UIComboBox(); + this.cbSex = new Sunny.UI.UIComboBox(); + this.txtCustoNo = new Sunny.UI.UITextBox(); + this.txtCustoName = new Sunny.UI.UITextBox(); + this.txtCardID = new Sunny.UI.UITextBox(); + this.txtTel = new Sunny.UI.UITextBox(); + this.dtpBirthday = new Sunny.UI.UIDatePicker(); + this.txtCustoAdress = new Sunny.UI.UITextBox(); + this.picGetCustoNo = new System.Windows.Forms.PictureBox(); + this.label10 = new System.Windows.Forms.Label(); + this.label9 = new System.Windows.Forms.Label(); + this.label8 = new System.Windows.Forms.Label(); + this.label7 = new System.Windows.Forms.Label(); + this.label6 = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.btnSelect = new Sunny.UI.UIButton(); + ((System.ComponentModel.ISupportInitialize)(this.dgvReserList)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.picGetCustoNo)).BeginInit(); + this.SuspendLayout(); + // + // dgvReserList + // + this.dgvReserList.AllowUserToAddRows = false; + this.dgvReserList.AllowUserToDeleteRows = false; + this.dgvReserList.AllowUserToResizeColumns = false; + this.dgvReserList.AllowUserToResizeRows = false; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvReserList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.dgvReserList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvReserList.BackgroundColor = System.Drawing.Color.White; + this.dgvReserList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvReserList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.dgvReserList.ColumnHeadersHeight = 32; + this.dgvReserList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvReserList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.clReserNo, + this.clCustoNm, + this.clTel, + this.clway, + this.clRoomNo, + this.clStartTime, + this.clDealTime, + this.clReserMemo}); + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); + dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvReserList.DefaultCellStyle = dataGridViewCellStyle3; + this.dgvReserList.EnableHeadersVisualStyles = false; + this.dgvReserList.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvReserList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvReserList.Location = new System.Drawing.Point(18, 104); + this.dgvReserList.Name = "dgvReserList"; + this.dgvReserList.RowHeadersVisible = false; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.White; + this.dgvReserList.RowsDefaultCellStyle = dataGridViewCellStyle4; + this.dgvReserList.RowTemplate.Height = 29; + this.dgvReserList.SelectedIndex = -1; + this.dgvReserList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvReserList.ShowGridLine = true; + this.dgvReserList.Size = new System.Drawing.Size(726, 169); + this.dgvReserList.TabIndex = 113; + this.dgvReserList.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvReserList_CellClick); + // + // clReserNo + // + this.clReserNo.DataPropertyName = "ReserId"; + this.clReserNo.HeaderText = "预约编号"; + this.clReserNo.Name = "clReserNo"; + // + // clCustoNm + // + this.clCustoNm.DataPropertyName = "CustoName"; + this.clCustoNm.HeaderText = "客户姓名"; + this.clCustoNm.Name = "clCustoNm"; + // + // clTel + // + this.clTel.DataPropertyName = "CustoTel"; + this.clTel.HeaderText = "预约电话"; + this.clTel.Name = "clTel"; + // + // clway + // + this.clway.DataPropertyName = "ReserWay"; + this.clway.HeaderText = "预约方式"; + this.clway.Name = "clway"; + // + // clRoomNo + // + this.clRoomNo.DataPropertyName = "ReserRoom"; + this.clRoomNo.HeaderText = "预约房号"; + this.clRoomNo.Name = "clRoomNo"; + // + // clStartTime + // + this.clStartTime.DataPropertyName = "ReserDate"; + this.clStartTime.HeaderText = "开始时间"; + this.clStartTime.Name = "clStartTime"; + // + // clDealTime + // + this.clDealTime.DataPropertyName = "ReserEndDay"; + this.clDealTime.HeaderText = "截止时间"; + this.clDealTime.Name = "clDealTime"; + // + // clReserMemo + // + this.clReserMemo.DataPropertyName = "ReserRemark"; + this.clReserMemo.HeaderText = "预约备注"; + this.clReserMemo.Name = "clReserMemo"; + // + // cbCustoType + // + this.cbCustoType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cbCustoType.FillColor = System.Drawing.Color.White; + this.cbCustoType.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cbCustoType.Location = new System.Drawing.Point(499, 290); + this.cbCustoType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cbCustoType.MinimumSize = new System.Drawing.Size(63, 0); + this.cbCustoType.Name = "cbCustoType"; + this.cbCustoType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cbCustoType.Radius = 20; + this.cbCustoType.Size = new System.Drawing.Size(250, 35); + this.cbCustoType.TabIndex = 134; + this.cbCustoType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cbCustoType.Watermark = ""; + // + // cbPassportType + // + this.cbPassportType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cbPassportType.FillColor = System.Drawing.Color.White; + this.cbPassportType.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cbPassportType.Location = new System.Drawing.Point(499, 341); + this.cbPassportType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cbPassportType.MinimumSize = new System.Drawing.Size(63, 0); + this.cbPassportType.Name = "cbPassportType"; + this.cbPassportType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cbPassportType.Radius = 20; + this.cbPassportType.Size = new System.Drawing.Size(250, 35); + this.cbPassportType.TabIndex = 133; + this.cbPassportType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // cbSex + // + this.cbSex.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cbSex.FillColor = System.Drawing.Color.White; + this.cbSex.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cbSex.Location = new System.Drawing.Point(123, 397); + this.cbSex.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cbSex.MinimumSize = new System.Drawing.Size(63, 0); + this.cbSex.Name = "cbSex"; + this.cbSex.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cbSex.Radius = 20; + this.cbSex.Size = new System.Drawing.Size(250, 35); + this.cbSex.TabIndex = 132; + this.cbSex.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // txtCustoNo + // + this.txtCustoNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoNo.FillColor = System.Drawing.Color.White; + this.txtCustoNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoNo.Location = new System.Drawing.Point(123, 293); + this.txtCustoNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoNo.Maximum = 2147483647D; + this.txtCustoNo.Minimum = -2147483648D; + this.txtCustoNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoNo.Name = "txtCustoNo"; + this.txtCustoNo.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoNo.Radius = 20; + this.txtCustoNo.Size = new System.Drawing.Size(250, 35); + this.txtCustoNo.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoNo.StyleCustomMode = true; + this.txtCustoNo.TabIndex = 131; + // + // txtCustoName + // + this.txtCustoName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoName.FillColor = System.Drawing.Color.White; + this.txtCustoName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoName.Location = new System.Drawing.Point(123, 345); + this.txtCustoName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoName.Maximum = 2147483647D; + this.txtCustoName.Minimum = -2147483648D; + this.txtCustoName.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoName.Name = "txtCustoName"; + this.txtCustoName.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoName.Radius = 20; + this.txtCustoName.Size = new System.Drawing.Size(250, 35); + this.txtCustoName.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoName.StyleCustomMode = true; + this.txtCustoName.TabIndex = 130; + // + // txtCardID + // + this.txtCardID.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCardID.FillColor = System.Drawing.Color.White; + this.txtCardID.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCardID.Location = new System.Drawing.Point(499, 392); + this.txtCardID.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCardID.Maximum = 2147483647D; + this.txtCardID.Minimum = -2147483648D; + this.txtCardID.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCardID.Name = "txtCardID"; + this.txtCardID.Padding = new System.Windows.Forms.Padding(5); + this.txtCardID.Radius = 20; + this.txtCardID.Size = new System.Drawing.Size(250, 35); + this.txtCardID.Style = Sunny.UI.UIStyle.Custom; + this.txtCardID.StyleCustomMode = true; + this.txtCardID.TabIndex = 129; + this.txtCardID.Validated += new System.EventHandler(this.txtCardID_Validated); + // + // txtTel + // + this.txtTel.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtTel.FillColor = System.Drawing.Color.White; + this.txtTel.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtTel.Location = new System.Drawing.Point(499, 443); + this.txtTel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtTel.Maximum = 2147483647D; + this.txtTel.Minimum = -2147483648D; + this.txtTel.MinimumSize = new System.Drawing.Size(1, 1); + this.txtTel.Name = "txtTel"; + this.txtTel.Padding = new System.Windows.Forms.Padding(5); + this.txtTel.Radius = 20; + this.txtTel.Size = new System.Drawing.Size(250, 35); + this.txtTel.Style = Sunny.UI.UIStyle.Custom; + this.txtTel.StyleCustomMode = true; + this.txtTel.TabIndex = 128; + // + // dtpBirthday + // + this.dtpBirthday.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.dtpBirthday.FillColor = System.Drawing.Color.White; + this.dtpBirthday.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); + this.dtpBirthday.Location = new System.Drawing.Point(123, 449); + this.dtpBirthday.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.dtpBirthday.MaxLength = 10; + this.dtpBirthday.MinimumSize = new System.Drawing.Size(63, 0); + this.dtpBirthday.Name = "dtpBirthday"; + this.dtpBirthday.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.dtpBirthday.Radius = 20; + this.dtpBirthday.ReadOnly = true; + this.dtpBirthday.Size = new System.Drawing.Size(250, 31); + this.dtpBirthday.SymbolDropDown = 61555; + this.dtpBirthday.SymbolNormal = 61555; + this.dtpBirthday.TabIndex = 127; + this.dtpBirthday.Text = "2020-11-24"; + this.dtpBirthday.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.dtpBirthday.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); + // + // txtCustoAdress + // + this.txtCustoAdress.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoAdress.FillColor = System.Drawing.Color.White; + this.txtCustoAdress.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoAdress.Location = new System.Drawing.Point(121, 497); + this.txtCustoAdress.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoAdress.Maximum = 2147483647D; + this.txtCustoAdress.Minimum = -2147483648D; + this.txtCustoAdress.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoAdress.Name = "txtCustoAdress"; + this.txtCustoAdress.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoAdress.Radius = 20; + this.txtCustoAdress.Size = new System.Drawing.Size(628, 35); + this.txtCustoAdress.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoAdress.StyleCustomMode = true; + this.txtCustoAdress.TabIndex = 126; + // + // picGetCustoNo + // + this.picGetCustoNo.BackColor = System.Drawing.Color.Transparent; + this.picGetCustoNo.BackgroundImage = global::SYS.FormUI.Properties.Resources.获取用户编号; + this.picGetCustoNo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.picGetCustoNo.Location = new System.Drawing.Point(376, 298); + this.picGetCustoNo.Name = "picGetCustoNo"; + this.picGetCustoNo.Size = new System.Drawing.Size(21, 20); + this.picGetCustoNo.TabIndex = 123; + this.picGetCustoNo.TabStop = false; + // + // label10 + // + this.label10.AutoSize = true; + this.label10.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label10.Location = new System.Drawing.Point(14, 505); + this.label10.Name = "label10"; + this.label10.Size = new System.Drawing.Size(88, 25); + this.label10.TabIndex = 122; + this.label10.Text = "居住地址"; + // + // label9 + // + this.label9.AutoSize = true; + this.label9.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label9.Location = new System.Drawing.Point(403, 450); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(88, 25); + this.label9.TabIndex = 121; + this.label9.Text = "联系方式"; + // + // label8 + // + this.label8.AutoSize = true; + this.label8.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label8.Location = new System.Drawing.Point(403, 399); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(88, 25); + this.label8.TabIndex = 120; + this.label8.Text = "证件号码"; + // + // label7 + // + this.label7.AutoSize = true; + this.label7.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label7.Location = new System.Drawing.Point(403, 348); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(88, 25); + this.label7.TabIndex = 119; + this.label7.Text = "证件类型"; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label6.Location = new System.Drawing.Point(403, 297); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(88, 25); + this.label6.TabIndex = 118; + this.label6.Text = "客户类型"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label5.Location = new System.Drawing.Point(16, 453); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(88, 25); + this.label5.TabIndex = 117; + this.label5.Text = "出生日期"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.Location = new System.Drawing.Point(16, 401); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(86, 25); + this.label4.TabIndex = 116; + this.label4.Text = "性 别"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(16, 349); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(88, 25); + this.label3.TabIndex = 115; + this.label3.Text = "客户姓名"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(16, 297); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(88, 25); + this.label2.TabIndex = 114; + this.label2.Text = "客户编号"; + // + // btnSelect + // + this.btnSelect.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnSelect.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnSelect.Location = new System.Drawing.Point(19, 48); + this.btnSelect.MinimumSize = new System.Drawing.Size(1, 1); + this.btnSelect.Name = "btnSelect"; + this.btnSelect.Radius = 15; + this.btnSelect.Size = new System.Drawing.Size(146, 44); + this.btnSelect.TabIndex = 135; + this.btnSelect.Text = "入住并注册"; + this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click); + // + // FrmReserList + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.ClientSize = new System.Drawing.Size(763, 556); + this.Controls.Add(this.btnSelect); + this.Controls.Add(this.cbCustoType); + this.Controls.Add(this.cbPassportType); + this.Controls.Add(this.cbSex); + this.Controls.Add(this.txtCustoNo); + this.Controls.Add(this.txtCustoName); + this.Controls.Add(this.txtCardID); + this.Controls.Add(this.txtTel); + this.Controls.Add(this.dtpBirthday); + this.Controls.Add(this.txtCustoAdress); + this.Controls.Add(this.picGetCustoNo); + this.Controls.Add(this.label10); + this.Controls.Add(this.label9); + this.Controls.Add(this.label8); + this.Controls.Add(this.label7); + this.Controls.Add(this.label6); + this.Controls.Add(this.label5); + this.Controls.Add(this.label4); + this.Controls.Add(this.label3); + this.Controls.Add(this.label2); + this.Controls.Add(this.dgvReserList); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Name = "FrmReserList"; + this.ShowIcon = true; + this.Text = "预约列表"; + this.Load += new System.EventHandler(this.FrmReserList_Load); + ((System.ComponentModel.ISupportInitialize)(this.dgvReserList)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.picGetCustoNo)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private Sunny.UI.UIDataGridView dgvReserList; + private System.Windows.Forms.DataGridViewTextBoxColumn clReserNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clCustoNm; + private System.Windows.Forms.DataGridViewTextBoxColumn clTel; + private System.Windows.Forms.DataGridViewTextBoxColumn clway; + private System.Windows.Forms.DataGridViewTextBoxColumn clRoomNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clStartTime; + private System.Windows.Forms.DataGridViewTextBoxColumn clDealTime; + private System.Windows.Forms.DataGridViewTextBoxColumn clReserMemo; + private Sunny.UI.UIComboBox cbCustoType; + private Sunny.UI.UIComboBox cbPassportType; + private Sunny.UI.UIComboBox cbSex; + private Sunny.UI.UITextBox txtCustoNo; + private Sunny.UI.UITextBox txtCustoName; + private Sunny.UI.UITextBox txtCardID; + private Sunny.UI.UITextBox txtTel; + private Sunny.UI.UIDatePicker dtpBirthday; + private Sunny.UI.UITextBox txtCustoAdress; + private System.Windows.Forms.PictureBox picGetCustoNo; + private System.Windows.Forms.Label label10; + private System.Windows.Forms.Label label9; + private System.Windows.Forms.Label label8; + private System.Windows.Forms.Label label7; + private System.Windows.Forms.Label label6; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label2; + private Sunny.UI.UIButton btnSelect; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmReserList.cs b/SYS.FormUI/AppFunction/FrmReserList.cs new file mode 100644 index 0000000000000000000000000000000000000000..f213036e95e545dd729d9f8d05d16d131229fa04 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmReserList.cs @@ -0,0 +1,166 @@ +using System; +using MySql.Data.MySqlClient; +using System.Windows.Forms; +using SYS.Core; +using Sunny.UI; +using System.Transactions; +using SYS.Core.Util; +using System.Collections.Generic; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class FrmReserList : UIForm + { + public FrmReserList() + { + InitializeComponent(); + } + + + + private void FrmReserList_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.controlFont; + } + //cbCustoType.SelectedIndex = 0; + dgvReserList.AutoGenerateColumns = false; + dgvReserList.DataSource = new ReserService().SelectReserAll(); + + #region 加载客户类型信息 + List lstSourceGrid = new BaseService().SelectCustoTypeAllCanUse(); + this.cbCustoType.DataSource = lstSourceGrid; + this.cbCustoType.DisplayMember = "TypeName"; + this.cbCustoType.ValueMember = "UserType"; + this.cbCustoType.SelectedIndex = 0; + this.cbCustoType.ReadOnly = true; + #endregion + + #region 加载证件类型信息 + List passPorts = new BaseService().SelectPassPortTypeAllCanUse(); + this.cbPassportType.DataSource = passPorts; + this.cbPassportType.DisplayMember = "PassportName"; + this.cbPassportType.ValueMember = "PassportId"; + this.cbPassportType.SelectedIndex = 0; + #endregion + + #region 加载性别信息 + List listSexType = new BaseService().SelectSexTypeAllCanUse(); + this.cbSex.DataSource = listSexType; + this.cbSex.DisplayMember = "sexName"; + this.cbSex.ValueMember = "sexId"; + this.cbSex.SelectedIndex = 0; + #endregion + } + + private void btnClose_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void btnSelect_Click(object sender, EventArgs e) + { + using (TransactionScope scope = new TransactionScope()) + { + Custo custo = new Custo() + { + CustoNo = txtCustoNo.Text.Trim(), + CustoName = txtCustoName.Text.Trim(), + CustoSex = cbSex.SelectedIndex, + CustoTel = txtTel.Text.Trim(), + PassportType = cbPassportType.SelectedIndex, + CustoID = txtCardID.Text.Trim(), + CustoAdress = txtCustoAdress.Text.Trim(), + CustoBirth = dtpBirthday.Value, + CustoType = cbCustoType.SelectedIndex + }; + new CustoService().InsertCustomerInfo(custo); + + Room r = new Room() + { + CheckTime = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")), + CustoNo = custo.CustoNo, + RoomStateId = 1, + RoomNo = dgvReserList.SelectedRows[0].Cells["clRoomNo"].Value.ToString() + }; + + new RoomService().UpdateRoomInfo(r); + new ReserService().DeleteReserInfo(dgvReserList.SelectedRows[0].Cells["clReserNo"].Value.ToString()); + scope.Complete(); + } + MessageBox.Show("操作成功"); + dgvReserList.AutoGenerateColumns = false; + dgvReserList.DataSource = new ReserService().SelectReserAll(); + + } + + private void dgvReserList_CellClick(object sender, DataGridViewCellEventArgs e) + { + string custoNo = new CounterHelper().GetNewId("ReserId"); + txtCustoNo.Text = custoNo; + txtCustoName.Text = dgvReserList.SelectedRows[0].Cells["clCustoNm"].Value.ToString(); + txtTel.Text = dgvReserList.SelectedRows[0].Cells["clTel"].Value.ToString(); + + } + + private void txtCardID_Validated(object sender, EventArgs e) + { + //获取得到输入的身份证号码 + string identityCard = txtCardID.Text.Trim(); + if (string.IsNullOrEmpty(identityCard)) + { + //身份证号码不能为空,如果为空返回 + MessageBox.Show("身份证号码不能为空!"); + if (txtCardID.CanFocus) + { + txtCardID.Focus();//设置当前输入焦点为txtCardID_identityCard + } + return; + } + else + { + //身份证号码只能为15位或18位其它不合法 + if (identityCard.Length != 15 && identityCard.Length != 18) + { + MessageBox.Show("身份证号码为15位或18位,请检查!"); + if (txtCardID.CanFocus) + { + txtCardID.Focus(); + } + return; + } + } + string birthday = ""; + string sex = ""; + if (identityCard.Length == 18) + { + var result = new IDCardUtil().SelectCardCode(identityCard); + var address = result.Replace(",","").ToString(); + birthday = identityCard.Substring(6, 4) + "-" + identityCard.Substring(10, 2) + "-" + identityCard.Substring(12, 2); + sex = identityCard.Substring(14, 3); + txtCustoAdress.Text = address; + //性别代码为偶数是女性奇数为男性 + if (int.Parse(sex) % 2 == 0) + { + cbSex.Text = "女"; + } + else + { + cbSex.Text = "男"; + } + } + try + { + dtpBirthday.Value = Convert.ToDateTime(birthday); + } + catch + { + MessageBox.Show("请正确输入证件号码!"); + } + //cbPassportType.SelectedIndex = 0; + + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmReserList.resx b/SYS.FormUI/AppFunction/FrmReserList.resx new file mode 100644 index 0000000000000000000000000000000000000000..44781380a0eae9231c6c47532cdd09fc60b59161 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmReserList.resx @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAICAAAAEAGAAzAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACyElEQVRYR+2WPWgU + URSFFyy08AcsIukCGlhEhLgEiUEIiIGIjUUKUSFWCiIWsdDKVLEUYqOSTrEIIQZBURACQSxEEhALwwZk + C0FQCBrTyY7ffXP2sW9ndnZ2Nd1+cHhvzj33zmSYzUyhS6dUq9UD6AQ6GEXRbtnbBycaRTfRY7TOSQPw + yugeOqmW/wdDH+g8mZD7bHm2U+xX0QZaRMNuULvQeBxV4vGeObxJ1hHWi6y3WF+6ShSV0Hi8DbFZGpsP + Gu6o18HxQ5aSyk0h9ynuCMGfVaQ1hO3B8nB8Q6WWkN1QWwD+M0VaQ3hFfZGs3NC7qNZGphTJhgH1t35c + dm7oH1ZvgMrZ0DyqvN2y57ITUNuJ+tEg6pHtwbOHdxa9YJT7y9lfZ7/PBZpB6LY7O7A/KzsA/yr6qlgN + +2UMKRKAfwi5XwnrJdnpEJhXcF1WAP4pq2dQVNRDzx7VbO687HQIfFFwQZYHexf+mtUN9kssE7UeI63P + wC+r/lFWEoq9bkpM4onFK8YlN8g/Hxz2xa7zK7ID8O1irf5DVhKKx9yUmMQFUB9UzZiQ7aC2aibrb1kB + +LUL+CUrCfUdBP5YENIuoEc1G2S3vc981hFnAv57F26A0gfV38hKh8A7BV/JCqA0Z/Ua5PwzYXB8V1EP + 3l6VrT4tOx0C9xX8ifbL9uANuUlNUCyAnjMq29zzstMhcEVZC1+QHUCpSG0BVdAWWkHXVE5A7VE80c08 + IjsdAgNoU+EnsjuGGYfRd81blp0NQf/fEPK9QJrALP9qZj8muzV2teqzxtOy24I+99Mz2M/Izo96HQyY + Rr0qZUK81HDyskrtQaM9D1uaY4PsBWTfekcVCcC3L2T7avJw/FblzmFI8Glm4H1DS3VyD249eNlvvnZg + 2DmU+BRPg9xrlHqX/gmG2mvVvoQn0VO0hjbRMppBl9GA4l265KRQ+As8ytgqx877sQAAAABJRU5ErkJg + gg== + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmReserManager.Designer.cs b/SYS.FormUI/AppFunction/FrmReserManager.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..9dc03a6028ee6e019e1cf6a85e0fb6e5bd95783d --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmReserManager.Designer.cs @@ -0,0 +1,303 @@ +namespace SYS.FormUI +{ + partial class FrmReserManager + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmReserManager)); + this.btnReserList = new Sunny.UI.UIButton(); + this.txtCustoName = new Sunny.UI.UITextBox(); + this.txtCustoTel = new Sunny.UI.UITextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.label9 = new System.Windows.Forms.Label(); + this.cboReserWay = new Sunny.UI.UIComboBox(); + this.label10 = new System.Windows.Forms.Label(); + this.cboReserRoomNo = new Sunny.UI.UIComboBox(); + this.label11 = new System.Windows.Forms.Label(); + this.dtpBouDate = new Sunny.UI.UIDatePicker(); + this.label12 = new System.Windows.Forms.Label(); + this.dtpEndDate = new Sunny.UI.UIDatePicker(); + this.label13 = new System.Windows.Forms.Label(); + this.btnReser = new Sunny.UI.UIButton(); + this.SuspendLayout(); + // + // btnReserList + // + this.btnReserList.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnReserList.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnReserList.Location = new System.Drawing.Point(89, 50); + this.btnReserList.MinimumSize = new System.Drawing.Size(1, 1); + this.btnReserList.Name = "btnReserList"; + this.btnReserList.Radius = 15; + this.btnReserList.Size = new System.Drawing.Size(136, 35); + this.btnReserList.Style = Sunny.UI.UIStyle.Custom; + this.btnReserList.TabIndex = 72; + this.btnReserList.Text = "查看预约列表"; + this.btnReserList.Click += new System.EventHandler(this.btnReserList_Click); + // + // txtCustoName + // + this.txtCustoName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoName.FillColor = System.Drawing.Color.White; + this.txtCustoName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoName.Location = new System.Drawing.Point(122, 94); + this.txtCustoName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoName.Maximum = 2147483647D; + this.txtCustoName.Minimum = -2147483648D; + this.txtCustoName.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoName.Name = "txtCustoName"; + this.txtCustoName.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoName.Radius = 20; + this.txtCustoName.Size = new System.Drawing.Size(159, 35); + this.txtCustoName.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoName.StyleCustomMode = true; + this.txtCustoName.TabIndex = 107; + // + // txtCustoTel + // + this.txtCustoTel.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoTel.FillColor = System.Drawing.Color.White; + this.txtCustoTel.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoTel.Location = new System.Drawing.Point(122, 147); + this.txtCustoTel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoTel.Maximum = 2147483647D; + this.txtCustoTel.Minimum = -2147483648D; + this.txtCustoTel.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoTel.Name = "txtCustoTel"; + this.txtCustoTel.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoTel.Radius = 20; + this.txtCustoTel.Size = new System.Drawing.Size(159, 35); + this.txtCustoTel.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoTel.StyleCustomMode = true; + this.txtCustoTel.TabIndex = 108; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(30, 151); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(88, 25); + this.label1.TabIndex = 106; + this.label1.Text = "预约号码"; + // + // label9 + // + this.label9.AutoSize = true; + this.label9.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label9.Location = new System.Drawing.Point(30, 99); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(88, 25); + this.label9.TabIndex = 105; + this.label9.Text = "客户姓名"; + // + // cboReserWay + // + this.cboReserWay.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboReserWay.FillColor = System.Drawing.Color.White; + this.cboReserWay.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboReserWay.Items.AddRange(new object[] { + "前台", + "小程序", + "电话"}); + this.cboReserWay.Location = new System.Drawing.Point(122, 200); + this.cboReserWay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboReserWay.MinimumSize = new System.Drawing.Size(63, 0); + this.cboReserWay.Name = "cboReserWay"; + this.cboReserWay.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboReserWay.Radius = 20; + this.cboReserWay.ReadOnly = true; + this.cboReserWay.Size = new System.Drawing.Size(159, 35); + this.cboReserWay.Style = Sunny.UI.UIStyle.Custom; + this.cboReserWay.TabIndex = 110; + this.cboReserWay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cboReserWay.Watermark = ""; + // + // label10 + // + this.label10.AutoSize = true; + this.label10.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label10.Location = new System.Drawing.Point(33, 203); + this.label10.Name = "label10"; + this.label10.Size = new System.Drawing.Size(88, 25); + this.label10.TabIndex = 109; + this.label10.Text = "预约渠道"; + // + // cboReserRoomNo + // + this.cboReserRoomNo.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboReserRoomNo.FillColor = System.Drawing.Color.White; + this.cboReserRoomNo.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboReserRoomNo.Location = new System.Drawing.Point(122, 253); + this.cboReserRoomNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboReserRoomNo.MinimumSize = new System.Drawing.Size(63, 0); + this.cboReserRoomNo.Name = "cboReserRoomNo"; + this.cboReserRoomNo.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboReserRoomNo.Radius = 20; + this.cboReserRoomNo.Size = new System.Drawing.Size(159, 35); + this.cboReserRoomNo.Style = Sunny.UI.UIStyle.Custom; + this.cboReserRoomNo.TabIndex = 112; + this.cboReserRoomNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cboReserRoomNo.Watermark = ""; + // + // label11 + // + this.label11.AutoSize = true; + this.label11.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label11.Location = new System.Drawing.Point(33, 255); + this.label11.Name = "label11"; + this.label11.Size = new System.Drawing.Size(88, 25); + this.label11.TabIndex = 111; + this.label11.Text = "预约房号"; + // + // dtpBouDate + // + this.dtpBouDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.dtpBouDate.FillColor = System.Drawing.Color.White; + this.dtpBouDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); + this.dtpBouDate.Location = new System.Drawing.Point(119, 306); + this.dtpBouDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.dtpBouDate.MaxLength = 10; + this.dtpBouDate.MinimumSize = new System.Drawing.Size(63, 0); + this.dtpBouDate.Name = "dtpBouDate"; + this.dtpBouDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.dtpBouDate.Radius = 20; + this.dtpBouDate.Size = new System.Drawing.Size(162, 31); + this.dtpBouDate.Style = Sunny.UI.UIStyle.Custom; + this.dtpBouDate.SymbolDropDown = 61555; + this.dtpBouDate.SymbolNormal = 61555; + this.dtpBouDate.TabIndex = 114; + this.dtpBouDate.Text = "2020-11-24"; + this.dtpBouDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.dtpBouDate.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); + this.dtpBouDate.ValueChanged += new Sunny.UI.UIDatePicker.OnDateTimeChanged(this.dtpBouDate_ValueChanged); + // + // label12 + // + this.label12.AutoSize = true; + this.label12.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label12.Location = new System.Drawing.Point(30, 307); + this.label12.Name = "label12"; + this.label12.Size = new System.Drawing.Size(88, 25); + this.label12.TabIndex = 113; + this.label12.Text = "预约起始"; + // + // dtpEndDate + // + this.dtpEndDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.dtpEndDate.FillColor = System.Drawing.Color.White; + this.dtpEndDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); + this.dtpEndDate.Location = new System.Drawing.Point(122, 355); + this.dtpEndDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.dtpEndDate.MaxLength = 10; + this.dtpEndDate.MinimumSize = new System.Drawing.Size(63, 0); + this.dtpEndDate.Name = "dtpEndDate"; + this.dtpEndDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.dtpEndDate.Radius = 20; + this.dtpEndDate.ReadOnly = true; + this.dtpEndDate.Size = new System.Drawing.Size(162, 31); + this.dtpEndDate.Style = Sunny.UI.UIStyle.Custom; + this.dtpEndDate.SymbolDropDown = 61555; + this.dtpEndDate.SymbolNormal = 61555; + this.dtpEndDate.TabIndex = 116; + this.dtpEndDate.Text = "2020-11-24"; + this.dtpEndDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.dtpEndDate.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); + // + // label13 + // + this.label13.AutoSize = true; + this.label13.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label13.Location = new System.Drawing.Point(33, 359); + this.label13.Name = "label13"; + this.label13.Size = new System.Drawing.Size(88, 25); + this.label13.TabIndex = 115; + this.label13.Text = "预约止日"; + // + // btnReser + // + this.btnReser.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnReser.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnReser.Location = new System.Drawing.Point(109, 411); + this.btnReser.MinimumSize = new System.Drawing.Size(1, 1); + this.btnReser.Name = "btnReser"; + this.btnReser.Radius = 15; + this.btnReser.Size = new System.Drawing.Size(97, 35); + this.btnReser.Style = Sunny.UI.UIStyle.Custom; + this.btnReser.TabIndex = 117; + this.btnReser.Text = "预约"; + this.btnReser.Click += new System.EventHandler(this.btnReser_Click); + // + // FrmReserManager + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.ClientSize = new System.Drawing.Size(315, 476); + this.Controls.Add(this.btnReser); + this.Controls.Add(this.dtpEndDate); + this.Controls.Add(this.label13); + this.Controls.Add(this.dtpBouDate); + this.Controls.Add(this.label12); + this.Controls.Add(this.cboReserRoomNo); + this.Controls.Add(this.label11); + this.Controls.Add(this.cboReserWay); + this.Controls.Add(this.label10); + this.Controls.Add(this.txtCustoName); + this.Controls.Add(this.txtCustoTel); + this.Controls.Add(this.label1); + this.Controls.Add(this.label9); + this.Controls.Add(this.btnReserList); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Name = "FrmReserManager"; + this.ShowIcon = true; + this.Style = Sunny.UI.UIStyle.Custom; + this.Text = "预约管理"; + this.Load += new System.EventHandler(this.FrmRoomManager_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private Sunny.UI.UIButton btnReserList; + private Sunny.UI.UITextBox txtCustoName; + private Sunny.UI.UITextBox txtCustoTel; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label9; + private Sunny.UI.UIComboBox cboReserWay; + private System.Windows.Forms.Label label10; + private Sunny.UI.UIComboBox cboReserRoomNo; + private System.Windows.Forms.Label label11; + private Sunny.UI.UIDatePicker dtpBouDate; + private System.Windows.Forms.Label label12; + private Sunny.UI.UIDatePicker dtpEndDate; + private System.Windows.Forms.Label label13; + private Sunny.UI.UIButton btnReser; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmReserManager.cs b/SYS.FormUI/AppFunction/FrmReserManager.cs new file mode 100644 index 0000000000000000000000000000000000000000..a0f46c50bd571110a1a7e498456794c6fd8f1b6c --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmReserManager.cs @@ -0,0 +1,87 @@ +using System; +using System.Windows.Forms; +using SYS.Core; +using Sunny.UI; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class FrmReserManager : UIForm + { + public FrmReserManager() + { + InitializeComponent(); + #region 防止背景闪屏方法 + this.DoubleBuffered = true;//设置本窗体 + SetStyle(ControlStyles.UserPaint, true); + SetStyle(ControlStyles.AllPaintingInWmPaint, true); // 禁止擦除背景. + SetStyle(ControlStyles.DoubleBuffer, true); // 双缓冲 + #endregion + } + + private void btnReser_Click(object sender, EventArgs e) + { + Random random = new Random(); + string reserid = ""; + reserid = new CounterHelper().GetNewId("ReserId"); + Reser reser = new Reser() + { + ReserId = reserid, + CustoName = txtCustoName.Text.Trim(), + CustoTel = txtCustoTel.Text.Trim(), + ReserWay = cboReserWay.Text, + ReserRoom = cboReserRoomNo.Text, + ReserDate = dtpBouDate.Value, + ReserEndDay = dtpEndDate.Value + }; + Room room = new Room() + { + RoomNo = cboReserRoomNo.Text, + RoomStateId = 4 + }; + bool result1 = new ReserService().InserReserInfo(reser); + bool result2 = new RoomService().UpdateRoomInfoWithReser(room); + + if (result1 == true && result2 == true) + { + MessageBox.Show("预约成功!请在指定时间内进行登记入住"); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "帮助" + txtCustoTel.Text + "进行了预订房间操作!"; + o.OperationAccount = LoginInfo.WorkerNo; + o.datains_usr = LoginInfo.WorkerNo; + o.datains_date = DateTime.Now; + #endregion + new OperationlogService().InsertOperationLog(o); + this.Close(); + } + + + } + + private void FrmRoomManager_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.controlFont; + } + cboReserWay.SelectedIndex = 0; + cboReserRoomNo.DataSource = new RoomService().SelectCanUseRoomAll(); + cboReserRoomNo.DisplayMember = "RoomNo"; + cboReserRoomNo.ValueMember = "RoomNo"; + cboReserRoomNo.Text = ucRoomList.co_RoomNo; + } + + private void btnReserList_Click(object sender, EventArgs e) + { + FrmReserList frm = new FrmReserList(); + frm.Show(); + } + + private void dtpBouDate_ValueChanged(object sender, DateTime value) + { + dtpEndDate.Value = DateTime.Now.AddDays(3); + } + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmReserManager.resx b/SYS.FormUI/AppFunction/FrmReserManager.resx new file mode 100644 index 0000000000000000000000000000000000000000..16bf37dc3e2f046e67220b0f69e2ae1284b5c2da --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmReserManager.resx @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGACeAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACM0lEQVRYR+1WPUsD + QRRMFVAsJBjEzlqISNJZpbBQlBDtRBCxEBREa5ukFUEkICIiKbSx8esPiFYKafxA7AQbS1tBSJwNe8dk + 3a+QS0BI4JHbvdmZ2bdvHxeLdX//NQPVajWJGO2Y/1qtNgbBNcQR4hXj4FeUZkr4322LIRBvIr5INHzE + /CkGWXqXxdwIYiESMyC6UIUx94G4wnwR0SeEMC4g1hFDhM+3ZELdNcb7iJSLlAxkXFjjewiVAyI8/yCW + VTDmXkToSDA/KDNjxNjEp0lcpDutES9wIerI5BGFxeqVDXGGiHcysNEKuczSk5e4TNk2id+aFjazO2An + 5E2adRoB8JIM5CIyUCHOHqsJGHgjcMIEFtfOVQPBWmBvAqxVHKA4kVZsYNWAPBLRF8IgAwngV/Gu37X7 + FO3+sAkDaq+qj0WXFBx47MXzgTDtykDG1wBwIVarTgaUbJmbk9JGrUcgdyb6vmjB9VCPQVcDQsOVhXBD + ABuL0HmdJABkw5RVbdds4ILoOaU07ytkua5LZKDk5IOBRVrw7FzgAIDvgfimvPiwgBuH9TY4bsoZid95 + icviWuHK9l5IQOw8xxwY++2eKndPIZjzNSJvAxez/f5bCqjhiovGghhH/OnnAA6IXSPuFeNlX+NaHBcR + nee3qBO8Ex+ox4hHXTPC/ElL4nQcWyDjL2FT8wta8DXwM5GIByRgjoN0HlE27PYT73YQk5EKm8hk287g + P41IdkS0K9KODPwCkMNEwXdpotAAAAAASUVORK5CYII= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmRestoreDatabase.Designer.cs b/SYS.FormUI/AppFunction/FrmRestoreDatabase.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..8a2e905f005935e5390cbec21a25c657fe888245 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmRestoreDatabase.Designer.cs @@ -0,0 +1,196 @@ +namespace SYS.FormUI +{ + partial class FrmRestoreDatabase + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmRestoreDatabase)); + this.label4 = new System.Windows.Forms.Label(); + this.btnCancel = new System.Windows.Forms.Button(); + this.btnStart = new System.Windows.Forms.Button(); + this.btnLook = new System.Windows.Forms.Button(); + this.txtBackUpName = new System.Windows.Forms.TextBox(); + this.txtBackUpPath = new System.Windows.Forms.TextBox(); + this.label3 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.label1 = new System.Windows.Forms.Label(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.SuspendLayout(); + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.ForeColor = System.Drawing.Color.Red; + this.label4.Location = new System.Drawing.Point(235, 70); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(154, 22); + this.label4.TabIndex = 19; + this.label4.Text = "请勿保存于桌面!!"; + // + // btnCancel + // + this.btnCancel.BackColor = System.Drawing.Color.SkyBlue; + this.btnCancel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnCancel.BackgroundImage"))); + this.btnCancel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.btnCancel.Font = new System.Drawing.Font("苹方-简", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnCancel.Location = new System.Drawing.Point(208, 156); + this.btnCancel.Name = "btnCancel"; + this.btnCancel.Size = new System.Drawing.Size(75, 35); + this.btnCancel.TabIndex = 18; + this.btnCancel.Text = "关闭"; + this.btnCancel.UseVisualStyleBackColor = false; + this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); + // + // btnStart + // + this.btnStart.BackColor = System.Drawing.Color.SkyBlue; + this.btnStart.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnStart.BackgroundImage"))); + this.btnStart.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.btnStart.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.btnStart.Font = new System.Drawing.Font("苹方-简", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnStart.Location = new System.Drawing.Point(112, 156); + this.btnStart.Name = "btnStart"; + this.btnStart.Size = new System.Drawing.Size(75, 35); + this.btnStart.TabIndex = 17; + this.btnStart.Text = "开始还原"; + this.btnStart.UseVisualStyleBackColor = false; + this.btnStart.Click += new System.EventHandler(this.btnStart_Click); + // + // btnLook + // + this.btnLook.BackColor = System.Drawing.Color.SkyBlue; + this.btnLook.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnLook.BackgroundImage"))); + this.btnLook.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.btnLook.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.btnLook.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnLook.Location = new System.Drawing.Point(250, 112); + this.btnLook.Name = "btnLook"; + this.btnLook.Size = new System.Drawing.Size(75, 30); + this.btnLook.TabIndex = 16; + this.btnLook.Text = "浏览..."; + this.btnLook.UseVisualStyleBackColor = false; + this.btnLook.Click += new System.EventHandler(this.btnLook_Click); + // + // txtBackUpName + // + this.txtBackUpName.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtBackUpName.Location = new System.Drawing.Point(112, 67); + this.txtBackUpName.Name = "txtBackUpName"; + this.txtBackUpName.Size = new System.Drawing.Size(117, 30); + this.txtBackUpName.TabIndex = 15; + // + // txtBackUpPath + // + this.txtBackUpPath.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtBackUpPath.Location = new System.Drawing.Point(112, 112); + this.txtBackUpPath.Name = "txtBackUpPath"; + this.txtBackUpPath.Size = new System.Drawing.Size(117, 30); + this.txtBackUpPath.TabIndex = 14; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(41, 115); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(74, 22); + this.label3.TabIndex = 13; + this.label3.Text = "源目录:"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(5, 70); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(106, 22); + this.label2.TabIndex = 12; + this.label2.Text = "还原数据库:"; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.BackColor = System.Drawing.Color.Transparent; + this.label1.Font = new System.Drawing.Font("苹方-简", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(7, 9); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(90, 22); + this.label1.TabIndex = 10; + this.label1.Text = "数据库还原"; + // + // pictureBox1 + // + this.pictureBox1.BackColor = System.Drawing.Color.Transparent; + this.pictureBox1.Location = new System.Drawing.Point(1, 1); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(100, 36); + this.pictureBox1.TabIndex = 11; + this.pictureBox1.TabStop = false; + // + // FrmRestoreDatabase + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.SkyBlue; + this.ClientSize = new System.Drawing.Size(394, 222); + this.Controls.Add(this.label4); + this.Controls.Add(this.btnCancel); + this.Controls.Add(this.btnStart); + this.Controls.Add(this.btnLook); + this.Controls.Add(this.txtBackUpName); + this.Controls.Add(this.txtBackUpPath); + this.Controls.Add(this.label3); + this.Controls.Add(this.label2); + this.Controls.Add(this.label1); + this.Controls.Add(this.pictureBox1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Name = "FrmRestoreDatabase"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "FrmRestoreDatabase"; + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Button btnCancel; + private System.Windows.Forms.Button btnStart; + private System.Windows.Forms.Button btnLook; + private System.Windows.Forms.TextBox txtBackUpName; + private System.Windows.Forms.TextBox txtBackUpPath; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.PictureBox pictureBox1; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmRestoreDatabase.cs b/SYS.FormUI/AppFunction/FrmRestoreDatabase.cs new file mode 100644 index 0000000000000000000000000000000000000000..8bf063c9df49f679656ebdc1884921e926b1843b --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmRestoreDatabase.cs @@ -0,0 +1,59 @@ +using SYS.Core; +using System; +using System.Data; +using MySql.Data.MySqlClient; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmRestoreDatabase : Form + { + public FrmRestoreDatabase() + { + InitializeComponent(); + } + + private void btnLook_Click(object sender, EventArgs e) + { + FolderBrowserDialog fbd = new FolderBrowserDialog(); + fbd.RootFolder = System.Environment.SpecialFolder.Desktop; + fbd.SelectedPath = "C:"; + fbd.ShowNewFolderButton = true; + fbd.Description = "请选择源目录:"; + if (fbd.ShowDialog() == DialogResult.OK) + { + string Path = fbd.SelectedPath; + txtBackUpPath.Text = Path; + } + } + + private void btnStart_Click(object sender, EventArgs e) + { + string strDB = txtBackUpName.Text.ToString().Trim(); + MySqlConnection con = DBHelper.GetConnection(); + MySqlCommand cmdBK = new MySqlCommand(); + cmdBK.CommandType = CommandType.Text; + cmdBK.Connection = con; + cmdBK.CommandText = "restore database TSHotelDB from disk='" + txtBackUpPath.Text + ".bak'"; + try + { + con.Open(); + cmdBK.ExecuteNonQuery(); + MessageBox.Show("还原成功!"); + } + catch (Exception) + { + MessageBox.Show("还原失败,遇到未知错误!"); + } + finally + { + con.Close(); + } + } + + private void btnCancel_Click(object sender, EventArgs e) + { + this.Close(); + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmRestoreDatabase.resx b/SYS.FormUI/AppFunction/FrmRestoreDatabase.resx new file mode 100644 index 0000000000000000000000000000000000000000..3f66a2f78c6bbba069920ad2bf0a80b6e5487d88 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmRestoreDatabase.resx @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + Qk3OBwAAAAAAAJ4BAAAoAAAARwAAABYAAAABAAgAAAAAAAAAAAASCwAAEgsAAFoAAABaAAAAAAAA//// + ////+O7///bq///w3f//6s///+jL///mx///5MP//+K////gu///3bb//9uy///Zrv//1aX//9Kh/5V6 + WP///Pn//9Cc/7STa///05///9Sf///Vo///16n//92z///Xov//2ab//9in/5yGaP//2qv/nYdq///c + r///37f//+K7/7Ccgv//+fH/m4Vm/56Kbf//5L///+bD///oxv//6cr//+vO///58P+wnHz///Hb///2 + 5//w7OX/s551///46v//+Ov///rw//Ds5P//+u////vy//Xiq///7LP/9OKr///66v//++z/trOk/7e0 + pv//9Lr///W6///0u///9bz/8+zD///2vP/07LT///a9///3vf//9r7///e////3wP+3taf/9e61///4 + vv/z7LX///jA///4wf//+ML///nE///6xv//+8f///vI///95/+5uKv///vE///7xv/W6u7/WTwkEBAQ + EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQ + EBAkPFkAPRM3Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+ + Pj4+Pj4+Pj4+Pj4+P0ZLMD0AHDkSFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU + FBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFRk4RBwAEEAWDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8P + Dw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8aTBAAEEEbDg4ODg4ODg4ODg4ODg4O + Dg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4bQxAAEEUdFxcX + FxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcX + FxcdRRAAEEUfDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0N + DQ0NDQ0NDQ0NDQ0NDQ0fRRAAEEcYDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM + DAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwYRxAAEEggCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsL + CwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsgSBAAEEghCgoKCgoKCgoKCgoKCgoK + CgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgohSBAAEEkmCQkJ + CQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJ + CQkmSRAAEE4nCAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI + CAgICAgICAgICAgICAgnThAAEE8oBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcH + BwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcoTxAAEFApBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYG + BgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYpUBAAEFAqBQUFBQUFBQUFBQUFBQUF + BQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUqUBAAEFEtBAQE + BAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE + BAQtURAAEFIuAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD + AwMDAwMDAwMDAwMDAwMuUhAAEFgxAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC + AgICAgICAgICAgICAgICAgICAgICAgICAgIyUxAAEFc6KyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj + IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyM1VBAAHk1VOzMzMzMzMzMzMzMzMzMz + MzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzYRQh4ASiw0AQEB + AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB + AQEvIkoAWVYlEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQ + EBAQEBAQEBAQEBAQEBAlVlkA + + + + + Qk3OBwAAAAAAAJ4BAAAoAAAARwAAABYAAAABAAgAAAAAAAAAAAASCwAAEgsAAFoAAABaAAAAAAAA//// + ////+O7///bq///w3f//6s///+jL///mx///5MP//+K////gu///3bb//9uy///Zrv//1aX//9Kh/5V6 + WP///Pn//9Cc/7STa///05///9Sf///Vo///16n//92z///Xov//2ab//9in/5yGaP//2qv/nYdq///c + r///37f//+K7/7Ccgv//+fH/m4Vm/56Kbf//5L///+bD///oxv//6cr//+vO///58P+wnHz///Hb///2 + 5//w7OX/s551///46v//+Ov///rw//Ds5P//+u////vy//Xiq///7LP/9OKr///66v//++z/trOk/7e0 + pv//9Lr///W6///0u///9bz/8+zD///2vP/07LT///a9///3vf//9r7///e////3wP+3taf/9e61///4 + vv/z7LX///jA///4wf//+ML///nE///6xv//+8f///vI///95/+5uKv///vE///7xv/W6u7/WTwkEBAQ + EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQ + EBAkPFkAPRM3Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+ + Pj4+Pj4+Pj4+Pj4+P0ZLMD0AHDkSFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU + FBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFRk4RBwAEEAWDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8P + Dw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8aTBAAEEEbDg4ODg4ODg4ODg4ODg4O + Dg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4bQxAAEEUdFxcX + FxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcX + FxcdRRAAEEUfDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0N + DQ0NDQ0NDQ0NDQ0NDQ0fRRAAEEcYDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM + DAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwYRxAAEEggCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsL + CwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsgSBAAEEghCgoKCgoKCgoKCgoKCgoK + CgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgohSBAAEEkmCQkJ + CQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJ + CQkmSRAAEE4nCAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI + CAgICAgICAgICAgICAgnThAAEE8oBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcH + BwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcoTxAAEFApBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYG + BgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYpUBAAEFAqBQUFBQUFBQUFBQUFBQUF + BQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUqUBAAEFEtBAQE + BAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE + BAQtURAAEFIuAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD + AwMDAwMDAwMDAwMDAwMuUhAAEFgxAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC + AgICAgICAgICAgICAgICAgICAgICAgICAgIyUxAAEFc6KyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj + IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyM1VBAAHk1VOzMzMzMzMzMzMzMzMzMz + MzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzYRQh4ASiw0AQEB + AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB + AQEvIkoAWVYlEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQ + EBAQEBAQEBAQEBAQEBAlVlkA + + + + + Qk3OBwAAAAAAAJ4BAAAoAAAARwAAABYAAAABAAgAAAAAAAAAAAASCwAAEgsAAFoAAABaAAAAAAAA//// + ////+O7///bq///w3f//6s///+jL///mx///5MP//+K////gu///3bb//9uy///Zrv//1aX//9Kh/5V6 + WP///Pn//9Cc/7STa///05///9Sf///Vo///16n//92z///Xov//2ab//9in/5yGaP//2qv/nYdq///c + r///37f//+K7/7Ccgv//+fH/m4Vm/56Kbf//5L///+bD///oxv//6cr//+vO///58P+wnHz///Hb///2 + 5//w7OX/s551///46v//+Ov///rw//Ds5P//+u////vy//Xiq///7LP/9OKr///66v//++z/trOk/7e0 + pv//9Lr///W6///0u///9bz/8+zD///2vP/07LT///a9///3vf//9r7///e////3wP+3taf/9e61///4 + vv/z7LX///jA///4wf//+ML///nE///6xv//+8f///vI///95/+5uKv///vE///7xv/W6u7/WTwkEBAQ + EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQ + EBAkPFkAPRM3Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+ + Pj4+Pj4+Pj4+Pj4+P0ZLMD0AHDkSFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU + FBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFRk4RBwAEEAWDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8P + Dw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8aTBAAEEEbDg4ODg4ODg4ODg4ODg4O + Dg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4bQxAAEEUdFxcX + FxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcX + FxcdRRAAEEUfDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0N + DQ0NDQ0NDQ0NDQ0NDQ0fRRAAEEcYDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM + DAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwYRxAAEEggCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsL + CwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsgSBAAEEghCgoKCgoKCgoKCgoKCgoK + CgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgohSBAAEEkmCQkJ + CQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJ + CQkmSRAAEE4nCAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgI + CAgICAgICAgICAgICAgnThAAEE8oBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcH + BwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcoTxAAEFApBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYG + BgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYpUBAAEFAqBQUFBQUFBQUFBQUFBQUF + BQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUqUBAAEFEtBAQE + BAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE + BAQtURAAEFIuAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD + AwMDAwMDAwMDAwMDAwMuUhAAEFgxAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC + AgICAgICAgICAgICAgICAgICAgICAgICAgIyUxAAEFc6KyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj + IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyM1VBAAHk1VOzMzMzMzMzMzMzMzMzMz + MzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzYRQh4ASiw0AQEB + AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB + AQEvIkoAWVYlEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQ + EBAQEBAQEBAQEBAQEBAlVlkA + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmRoomManager.Designer.cs b/SYS.FormUI/AppFunction/FrmRoomManager.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..83896da44a41e8377c487cf56441b3589db78cc1 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmRoomManager.Designer.cs @@ -0,0 +1,526 @@ +namespace SYS.FormUI +{ + partial class FrmRoomManager + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.flpRoom = new System.Windows.Forms.FlowLayoutPanel(); + this.pnlRoomState = new System.Windows.Forms.Panel(); + this.lblReser = new System.Windows.Forms.Label(); + this.lblFix = new System.Windows.Forms.Label(); + this.lblNotClear = new System.Windows.Forms.Label(); + this.lblCheck = new System.Windows.Forms.Label(); + this.lblCanUse = new System.Windows.Forms.Label(); + this.pnlRoomInfo = new System.Windows.Forms.Panel(); + this.lblRoomState = new System.Windows.Forms.Label(); + this.label11 = new System.Windows.Forms.Label(); + this.lblRoomNo = new System.Windows.Forms.Label(); + this.lblCustoNo = new System.Windows.Forms.Label(); + this.lblRoomPosition = new System.Windows.Forms.Label(); + this.lblCheckTime = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.label1 = new System.Windows.Forms.Label(); + this.tmrGetData = new System.Windows.Forms.Timer(this.components); + this.btnAll = new Sunny.UI.UIButton(); + this.btnBD = new Sunny.UI.UIButton(); + this.btnBS = new Sunny.UI.UIButton(); + this.btnHD = new Sunny.UI.UIButton(); + this.btnHS = new Sunny.UI.UIButton(); + this.btnQL = new Sunny.UI.UIButton(); + this.btnZT = new Sunny.UI.UIButton(); + this.picRefrech = new System.Windows.Forms.PictureBox(); + this.pictureBox5 = new System.Windows.Forms.PictureBox(); + this.pictureBox4 = new System.Windows.Forms.PictureBox(); + this.pictureBox3 = new System.Windows.Forms.PictureBox(); + this.pictureBox2 = new System.Windows.Forms.PictureBox(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.pnlRoomState.SuspendLayout(); + this.pnlRoomInfo.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.picRefrech)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.SuspendLayout(); + // + // flpRoom + // + this.flpRoom.AutoScroll = true; + this.flpRoom.BackColor = System.Drawing.Color.Transparent; + this.flpRoom.Location = new System.Drawing.Point(227, 59); + this.flpRoom.Name = "flpRoom"; + this.flpRoom.Size = new System.Drawing.Size(838, 424); + this.flpRoom.TabIndex = 71; + // + // pnlRoomState + // + this.pnlRoomState.BackColor = System.Drawing.Color.Transparent; + this.pnlRoomState.Controls.Add(this.lblReser); + this.pnlRoomState.Controls.Add(this.lblFix); + this.pnlRoomState.Controls.Add(this.pictureBox5); + this.pnlRoomState.Controls.Add(this.pictureBox4); + this.pnlRoomState.Controls.Add(this.lblNotClear); + this.pnlRoomState.Controls.Add(this.lblCheck); + this.pnlRoomState.Controls.Add(this.lblCanUse); + this.pnlRoomState.Controls.Add(this.pictureBox3); + this.pnlRoomState.Controls.Add(this.pictureBox2); + this.pnlRoomState.Controls.Add(this.pictureBox1); + this.pnlRoomState.Location = new System.Drawing.Point(2, 3); + this.pnlRoomState.Name = "pnlRoomState"; + this.pnlRoomState.Size = new System.Drawing.Size(219, 259); + this.pnlRoomState.TabIndex = 5; + // + // lblReser + // + this.lblReser.AutoSize = true; + this.lblReser.BackColor = System.Drawing.Color.RoyalBlue; + this.lblReser.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblReser.ForeColor = System.Drawing.Color.White; + this.lblReser.Location = new System.Drawing.Point(176, 222); + this.lblReser.Name = "lblReser"; + this.lblReser.Size = new System.Drawing.Size(19, 20); + this.lblReser.TabIndex = 14; + this.lblReser.Text = "0"; + // + // lblFix + // + this.lblFix.AutoSize = true; + this.lblFix.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(95)))), ((int)(((byte)(167)))), ((int)(((byte)(203))))); + this.lblFix.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblFix.ForeColor = System.Drawing.Color.White; + this.lblFix.Location = new System.Drawing.Point(176, 171); + this.lblFix.Name = "lblFix"; + this.lblFix.Size = new System.Drawing.Size(19, 20); + this.lblFix.TabIndex = 13; + this.lblFix.Text = "0"; + // + // lblNotClear + // + this.lblNotClear.AutoSize = true; + this.lblNotClear.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(155)))), ((int)(((byte)(138))))); + this.lblNotClear.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblNotClear.ForeColor = System.Drawing.Color.White; + this.lblNotClear.Location = new System.Drawing.Point(176, 119); + this.lblNotClear.Name = "lblNotClear"; + this.lblNotClear.Size = new System.Drawing.Size(19, 20); + this.lblNotClear.TabIndex = 11; + this.lblNotClear.Text = "0"; + // + // lblCheck + // + this.lblCheck.AutoSize = true; + this.lblCheck.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(108)))), ((int)(((byte)(195)))), ((int)(((byte)(96))))); + this.lblCheck.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblCheck.ForeColor = System.Drawing.Color.White; + this.lblCheck.Location = new System.Drawing.Point(176, 67); + this.lblCheck.Name = "lblCheck"; + this.lblCheck.Size = new System.Drawing.Size(19, 20); + this.lblCheck.TabIndex = 10; + this.lblCheck.Text = "0"; + // + // lblCanUse + // + this.lblCanUse.AutoSize = true; + this.lblCanUse.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(255)))), ((int)(((byte)(204))))); + this.lblCanUse.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblCanUse.ForeColor = System.Drawing.Color.White; + this.lblCanUse.Location = new System.Drawing.Point(176, 14); + this.lblCanUse.Name = "lblCanUse"; + this.lblCanUse.Size = new System.Drawing.Size(19, 20); + this.lblCanUse.TabIndex = 9; + this.lblCanUse.Text = "0"; + // + // pnlRoomInfo + // + this.pnlRoomInfo.BackColor = System.Drawing.Color.Transparent; + this.pnlRoomInfo.Controls.Add(this.lblRoomState); + this.pnlRoomInfo.Controls.Add(this.label11); + this.pnlRoomInfo.Controls.Add(this.lblRoomNo); + this.pnlRoomInfo.Controls.Add(this.lblCustoNo); + this.pnlRoomInfo.Controls.Add(this.lblRoomPosition); + this.pnlRoomInfo.Controls.Add(this.lblCheckTime); + this.pnlRoomInfo.Controls.Add(this.label4); + this.pnlRoomInfo.Controls.Add(this.label3); + this.pnlRoomInfo.Controls.Add(this.label2); + this.pnlRoomInfo.Controls.Add(this.label1); + this.pnlRoomInfo.Location = new System.Drawing.Point(2, 268); + this.pnlRoomInfo.Name = "pnlRoomInfo"; + this.pnlRoomInfo.Size = new System.Drawing.Size(219, 215); + this.pnlRoomInfo.TabIndex = 72; + // + // lblRoomState + // + this.lblRoomState.AutoSize = true; + this.lblRoomState.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblRoomState.Location = new System.Drawing.Point(104, 190); + this.lblRoomState.Name = "lblRoomState"; + this.lblRoomState.Size = new System.Drawing.Size(10, 15); + this.lblRoomState.TabIndex = 16; + this.lblRoomState.Text = " "; + // + // label11 + // + this.label11.AutoSize = true; + this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label11.Location = new System.Drawing.Point(1, 190); + this.label11.Name = "label11"; + this.label11.Size = new System.Drawing.Size(67, 15); + this.label11.TabIndex = 15; + this.label11.Text = "房间状态:"; + // + // lblRoomNo + // + this.lblRoomNo.AutoSize = true; + this.lblRoomNo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblRoomNo.Location = new System.Drawing.Point(104, 10); + this.lblRoomNo.Name = "lblRoomNo"; + this.lblRoomNo.Size = new System.Drawing.Size(10, 15); + this.lblRoomNo.TabIndex = 14; + this.lblRoomNo.Text = " "; + // + // lblCustoNo + // + this.lblCustoNo.AutoSize = true; + this.lblCustoNo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblCustoNo.Location = new System.Drawing.Point(104, 55); + this.lblCustoNo.Name = "lblCustoNo"; + this.lblCustoNo.Size = new System.Drawing.Size(10, 15); + this.lblCustoNo.TabIndex = 12; + this.lblCustoNo.Text = " "; + // + // lblRoomPosition + // + this.lblRoomPosition.AutoSize = true; + this.lblRoomPosition.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblRoomPosition.Location = new System.Drawing.Point(104, 145); + this.lblRoomPosition.Name = "lblRoomPosition"; + this.lblRoomPosition.Size = new System.Drawing.Size(10, 15); + this.lblRoomPosition.TabIndex = 10; + this.lblRoomPosition.Text = " "; + // + // lblCheckTime + // + this.lblCheckTime.AutoSize = true; + this.lblCheckTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblCheckTime.Location = new System.Drawing.Point(104, 100); + this.lblCheckTime.Name = "lblCheckTime"; + this.lblCheckTime.Size = new System.Drawing.Size(10, 15); + this.lblCheckTime.TabIndex = 9; + this.lblCheckTime.Text = " "; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.Location = new System.Drawing.Point(1, 145); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(67, 15); + this.label4.TabIndex = 3; + this.label4.Text = "所在区域:"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(1, 100); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(67, 15); + this.label3.TabIndex = 2; + this.label3.Text = "入住时间:"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(1, 55); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(67, 15); + this.label2.TabIndex = 1; + this.label2.Text = "客户编号:"; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(1, 10); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(67, 15); + this.label1.TabIndex = 0; + this.label1.Text = "房间号码:"; + // + // tmrGetData + // + this.tmrGetData.Enabled = true; + this.tmrGetData.Interval = 500; + this.tmrGetData.Tick += new System.EventHandler(this.tmrGetData_Tick); + // + // btnAll + // + this.btnAll.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnAll.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnAll.Location = new System.Drawing.Point(233, 13); + this.btnAll.MinimumSize = new System.Drawing.Size(1, 1); + this.btnAll.Name = "btnAll"; + this.btnAll.Size = new System.Drawing.Size(108, 31); + this.btnAll.TabIndex = 0; + this.btnAll.Text = "全部房间"; + this.btnAll.Click += new System.EventHandler(this.btnAll_Click); + // + // btnBD + // + this.btnBD.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnBD.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnBD.Location = new System.Drawing.Point(346, 13); + this.btnBD.MinimumSize = new System.Drawing.Size(1, 1); + this.btnBD.Name = "btnBD"; + this.btnBD.Size = new System.Drawing.Size(108, 31); + this.btnBD.TabIndex = 1; + this.btnBD.Text = "标准单人间"; + this.btnBD.Click += new System.EventHandler(this.btnBD_Click); + // + // btnBS + // + this.btnBS.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnBS.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnBS.Location = new System.Drawing.Point(459, 13); + this.btnBS.MinimumSize = new System.Drawing.Size(1, 1); + this.btnBS.Name = "btnBS"; + this.btnBS.Size = new System.Drawing.Size(108, 31); + this.btnBS.TabIndex = 2; + this.btnBS.Text = "标准双人间"; + this.btnBS.Click += new System.EventHandler(this.btnBS_Click); + // + // btnHD + // + this.btnHD.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnHD.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnHD.Location = new System.Drawing.Point(572, 13); + this.btnHD.MinimumSize = new System.Drawing.Size(1, 1); + this.btnHD.Name = "btnHD"; + this.btnHD.Size = new System.Drawing.Size(108, 31); + this.btnHD.TabIndex = 3; + this.btnHD.Text = "豪华单人间"; + this.btnHD.Click += new System.EventHandler(this.btnHD_Click); + // + // btnHS + // + this.btnHS.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnHS.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnHS.Location = new System.Drawing.Point(685, 13); + this.btnHS.MinimumSize = new System.Drawing.Size(1, 1); + this.btnHS.Name = "btnHS"; + this.btnHS.Size = new System.Drawing.Size(108, 31); + this.btnHS.TabIndex = 4; + this.btnHS.Text = "豪华双人间"; + this.btnHS.Click += new System.EventHandler(this.btnHS_Click); + // + // btnQL + // + this.btnQL.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnQL.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnQL.Location = new System.Drawing.Point(798, 13); + this.btnQL.MinimumSize = new System.Drawing.Size(1, 1); + this.btnQL.Name = "btnQL"; + this.btnQL.Size = new System.Drawing.Size(108, 31); + this.btnQL.TabIndex = 5; + this.btnQL.Text = "情侣套房"; + this.btnQL.Click += new System.EventHandler(this.btnQL_Click); + // + // btnZT + // + this.btnZT.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnZT.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnZT.Location = new System.Drawing.Point(911, 13); + this.btnZT.MinimumSize = new System.Drawing.Size(1, 1); + this.btnZT.Name = "btnZT"; + this.btnZT.Size = new System.Drawing.Size(108, 31); + this.btnZT.TabIndex = 6; + this.btnZT.Text = "总统套房"; + this.btnZT.Click += new System.EventHandler(this.btnZT_Click); + // + // picRefrech + // + this.picRefrech.BackColor = System.Drawing.Color.Transparent; + this.picRefrech.BackgroundImage = global::SYS.FormUI.Properties.Resources.获取用户编号; + this.picRefrech.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.picRefrech.Location = new System.Drawing.Point(1024, 14); + this.picRefrech.Name = "picRefrech"; + this.picRefrech.Size = new System.Drawing.Size(32, 29); + this.picRefrech.TabIndex = 94; + this.picRefrech.TabStop = false; + this.picRefrech.Click += new System.EventHandler(this.picRefrech_Click); + // + // pictureBox5 + // + this.pictureBox5.BackColor = System.Drawing.Color.White; + this.pictureBox5.BackgroundImage = global::SYS.FormUI.Properties.Resources.预约房icon; + this.pictureBox5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox5.Location = new System.Drawing.Point(4, 212); + this.pictureBox5.Name = "pictureBox5"; + this.pictureBox5.Size = new System.Drawing.Size(212, 41); + this.pictureBox5.TabIndex = 12; + this.pictureBox5.TabStop = false; + this.pictureBox5.Click += new System.EventHandler(this.pictureBox5_Click); + this.pictureBox5.MouseLeave += new System.EventHandler(this.pictureBox5_MouseLeave); + this.pictureBox5.MouseHover += new System.EventHandler(this.pictureBox5_MouseHover); + // + // pictureBox4 + // + this.pictureBox4.BackColor = System.Drawing.Color.White; + this.pictureBox4.BackgroundImage = global::SYS.FormUI.Properties.Resources.维修房icon; + this.pictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox4.Location = new System.Drawing.Point(5, 160); + this.pictureBox4.Name = "pictureBox4"; + this.pictureBox4.Size = new System.Drawing.Size(212, 41); + this.pictureBox4.TabIndex = 12; + this.pictureBox4.TabStop = false; + this.pictureBox4.Click += new System.EventHandler(this.pictureBox4_Click); + this.pictureBox4.MouseLeave += new System.EventHandler(this.pictureBox4_MouseLeave); + this.pictureBox4.MouseHover += new System.EventHandler(this.pictureBox4_MouseHover); + // + // pictureBox3 + // + this.pictureBox3.BackColor = System.Drawing.Color.White; + this.pictureBox3.BackgroundImage = global::SYS.FormUI.Properties.Resources.脏房icon1; + this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox3.Location = new System.Drawing.Point(4, 108); + this.pictureBox3.Name = "pictureBox3"; + this.pictureBox3.Size = new System.Drawing.Size(212, 41); + this.pictureBox3.TabIndex = 7; + this.pictureBox3.TabStop = false; + this.pictureBox3.Click += new System.EventHandler(this.pictureBox3_Click); + this.pictureBox3.MouseLeave += new System.EventHandler(this.pictureBox3_MouseLeave); + this.pictureBox3.MouseHover += new System.EventHandler(this.pictureBox3_MouseHover); + // + // pictureBox2 + // + this.pictureBox2.BackColor = System.Drawing.Color.WhiteSmoke; + this.pictureBox2.BackgroundImage = global::SYS.FormUI.Properties.Resources.已住房icon; + this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox2.Location = new System.Drawing.Point(4, 56); + this.pictureBox2.Name = "pictureBox2"; + this.pictureBox2.Size = new System.Drawing.Size(212, 41); + this.pictureBox2.TabIndex = 6; + this.pictureBox2.TabStop = false; + this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click); + this.pictureBox2.MouseLeave += new System.EventHandler(this.pictureBox2_MouseLeave); + this.pictureBox2.MouseHover += new System.EventHandler(this.pictureBox2_MouseHover); + // + // pictureBox1 + // + this.pictureBox1.BackColor = System.Drawing.Color.White; + this.pictureBox1.BackgroundImage = global::SYS.FormUI.Properties.Resources.可住房icon; + this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox1.Location = new System.Drawing.Point(4, 3); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(212, 42); + this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox1.TabIndex = 5; + this.pictureBox1.TabStop = false; + this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click); + this.pictureBox1.MouseLeave += new System.EventHandler(this.pictureBox1_MouseLeave); + this.pictureBox1.MouseHover += new System.EventHandler(this.pictureBox1_MouseHover); + // + // FrmRoomManager + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.ClientSize = new System.Drawing.Size(1072, 490); + this.Controls.Add(this.btnZT); + this.Controls.Add(this.btnQL); + this.Controls.Add(this.btnHS); + this.Controls.Add(this.btnHD); + this.Controls.Add(this.btnBS); + this.Controls.Add(this.btnBD); + this.Controls.Add(this.btnAll); + this.Controls.Add(this.picRefrech); + this.Controls.Add(this.pnlRoomInfo); + this.Controls.Add(this.pnlRoomState); + this.Controls.Add(this.flpRoom); + this.DoubleBuffered = true; + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Name = "FrmRoomManager"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "FrmRoomManager"; + this.TransparencyKey = System.Drawing.Color.White; + this.Load += new System.EventHandler(this.FrmRoomManager_Load); + this.pnlRoomState.ResumeLayout(false); + this.pnlRoomState.PerformLayout(); + this.pnlRoomInfo.ResumeLayout(false); + this.pnlRoomInfo.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.picRefrech)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + public System.Windows.Forms.FlowLayoutPanel pe; + private System.Windows.Forms.FlowLayoutPanel flpRoom; + private System.Windows.Forms.Panel pnlRoomState; + private System.Windows.Forms.PictureBox pictureBox3; + private System.Windows.Forms.PictureBox pictureBox2; + private System.Windows.Forms.PictureBox pictureBox1; + public System.Windows.Forms.Label lblNotClear; + public System.Windows.Forms.Label lblCheck; + public System.Windows.Forms.Label lblCanUse; + private System.Windows.Forms.Panel pnlRoomInfo; + private System.Windows.Forms.Label lblRoomState; + private System.Windows.Forms.Label label11; + private System.Windows.Forms.Label lblRoomNo; + private System.Windows.Forms.Label lblCustoNo; + private System.Windows.Forms.Label lblRoomPosition; + private System.Windows.Forms.Label lblCheckTime; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Timer tmrGetData; + private System.Windows.Forms.PictureBox picRefrech; + public System.Windows.Forms.Label lblFix; + private System.Windows.Forms.PictureBox pictureBox4; + private System.Windows.Forms.PictureBox pictureBox5; + public System.Windows.Forms.Label lblReser; + private Sunny.UI.UIButton btnAll; + private Sunny.UI.UIButton btnBD; + private Sunny.UI.UIButton btnBS; + private Sunny.UI.UIButton btnHD; + private Sunny.UI.UIButton btnHS; + private Sunny.UI.UIButton btnQL; + private Sunny.UI.UIButton btnZT; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmRoomManager.cs b/SYS.FormUI/AppFunction/FrmRoomManager.cs new file mode 100644 index 0000000000000000000000000000000000000000..3b3cd2c28123b80616fa1533b565a8a9f9f9e76b --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmRoomManager.cs @@ -0,0 +1,277 @@ +using System; +using System.Collections.Generic; +using System.Windows.Forms; +using SYS.Core; +using SYS.FormUI.Properties; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class FrmRoomManager : Form + { + public static string co_CustoNo; + public static string co_RoomNo; + public static string co_CustoName; + public static string co_CheckTime; + public static string co_Day; + + + public delegate void ReLoadRoomList(); + + + //定义委托类型的变量 + public static ReLoadRoomList Reload; + + + + public FrmRoomManager() + { + InitializeComponent(); + Reload = LoadRoom; + + + } + + List romsty = null; + ucRoomList romt = null; + #region 房间加载事件方法 + private void FrmRoomManager_Load(object sender, EventArgs e) + { + + foreach (Control item in this.pnlRoomInfo.Controls) + { + if (item.GetType().ToString() == "System.Windows.Forms.Label") + { + item.Font = UI_FontUtil.childControlFont; + } + } + + romsty = new RoomService().SelectRoomAll(); + for (int i = 0; i < romsty.Count; i++) + { + romt = new ucRoomList(); + romt.lblRoomNo.Text = romsty[i].RoomNo; + romt.lblCustoNo.Text = romsty[i].CustoNo; + romt.lblRoomType.Text = romsty[i].RoomName; + romt.romCustoInfo = romsty[i]; + flpRoom.Controls.Add(romt); + } + + } + #endregion + + private void tmrGetData_Tick(object sender, EventArgs e) + { + lblCanUse.Text = new RoomService().SelectCanUseRoomAllByRoomState().ToString(); + lblCheck.Text = new RoomService().SelectNotUseRoomAllByRoomState().ToString(); + lblNotClear.Text = new RoomService().SelectNotClearRoomAllByRoomState().ToString(); + lblFix.Text = new RoomService().SelectFixingRoomAllByRoomState().ToString(); + lblReser.Text = new RoomService().SelectReseredRoomAllByRoomState().ToString(); + lblRoomNo.Text = ucRoomList.co_RoomNo; + lblCustoNo.Text = ucRoomList.co_CustoNo; + lblRoomPosition.Text = ucRoomList.co_RoomPosition; + if (ucRoomList.co_CheckTime == DateTime.MinValue.ToString()) + { + lblCheckTime.Text = ""; + } + else + { + lblCheckTime.Text = Convert.ToDateTime(ucRoomList.co_CheckTime).ToShortDateString(); + } + + lblRoomState.Text = ucRoomList.co_RoomState; + } + + private void btnAll_Click(object sender, EventArgs e) + { + flpRoom.Controls.Clear(); + romsty = new RoomService().SelectRoomAll(); + for (int i = 0; i < romsty.Count; i++) + { + romt = new ucRoomList(); + romt.lblRoomNo.Text = romsty[i].RoomNo; + romt.lblCustoNo.Text = romsty[i].CustoNo; + romt.lblRoomType.Text = romsty[i].RoomName; + romt.romCustoInfo = romsty[i]; + flpRoom.Controls.Add(romt); + + } + } + + private void btnBD_Click(object sender, EventArgs e) + { + LoadData(btnBD.Text); + } + + private void LoadData(string typeName) + { + flpRoom.Controls.Clear(); + romsty = new RoomService().SelectRoomByTypeName(typeName); + for (int i = 0; i < romsty.Count; i++) + { + romt = new ucRoomList(); + romt.lblRoomNo.Text = romsty[i].RoomNo; + romt.lblCustoNo.Text = romsty[i].CustoNo; + romt.lblRoomType.Text = romsty[i].RoomName; + romt.romCustoInfo = romsty[i]; + flpRoom.Controls.Add(romt); + + } + lblCanUse.Text = new RoomService().SelectCanUseRoomAllByRoomState().ToString(); + lblCheck.Text = new RoomService().SelectNotUseRoomAllByRoomState().ToString(); + lblNotClear.Text = new RoomService().SelectNotClearRoomAllByRoomState().ToString(); + lblFix.Text = new RoomService().SelectFixingRoomAllByRoomState().ToString(); + lblReser.Text = new RoomService().SelectReseredRoomAllByRoomState().ToString(); + } + + private void btnBS_Click(object sender, EventArgs e) + { + + LoadData(btnBS.Text); + } + + private void btnHD_Click(object sender, EventArgs e) + { + LoadData(btnHD.Text); + } + + private void btnHS_Click(object sender, EventArgs e) + { + LoadData(btnHS.Text); + } + + private void btnQL_Click(object sender, EventArgs e) + { + LoadData(btnQL.Text); + } + + private void btnZT_Click(object sender, EventArgs e) + { + LoadData(btnZT.Text); + } + + private void picRefrech_Click(object sender, EventArgs e) + { + LoadRoom(); + } + + + private void LoadRoomByState(int stateid) + { + flpRoom.Controls.Clear(); + romsty = new RoomService().SelectRoomByRoomState(stateid); + for (int i = 0; i < romsty.Count; i++) + { + romt = new ucRoomList(); + romt.lblRoomNo.Text = romsty[i].RoomNo; + romt.lblCustoNo.Text = romsty[i].CustoNo; + romt.lblRoomType.Text = romsty[i].RoomName; + romt.romCustoInfo = romsty[i]; + flpRoom.Controls.Add(romt); + + } + lblRoomNo.Text = ""; + lblRoomPosition.Text = ""; + lblRoomState.Text = ""; + lblCustoNo.Text = ""; + lblCheckTime.Text = ""; + } + + private void LoadRoom() + { + flpRoom.Controls.Clear(); + romsty = new RoomService().SelectRoomAll(); + for (int i = 0; i < romsty.Count; i++) + { + romt = new ucRoomList(); + romt.lblRoomNo.Text = romsty[i].RoomNo; + romt.lblCustoNo.Text = romsty[i].CustoNo; + romt.lblRoomType.Text = romsty[i].RoomName; + romt.romCustoInfo = romsty[i]; + flpRoom.Controls.Add(romt); + + } + lblRoomNo.Text = ""; + lblRoomPosition.Text = ""; + lblRoomState.Text = ""; + lblCustoNo.Text = ""; + lblCheckTime.Text = ""; + } + + private void pictureBox1_Click(object sender, EventArgs e) + { + LoadRoomByState(0); + } + + private void pictureBox1_MouseHover(object sender, EventArgs e) + { + pictureBox1.BackgroundImage = Resources.可住房_hover_icon; + } + + private void pictureBox2_MouseHover(object sender, EventArgs e) + { + pictureBox2.BackgroundImage = Resources.已住房_hover_icon; + } + + private void pictureBox3_MouseHover(object sender, EventArgs e) + { + pictureBox3.BackgroundImage = Resources.脏房_hover_icon; + } + + private void pictureBox4_MouseHover(object sender, EventArgs e) + { + pictureBox4.BackgroundImage = Resources.维修房_hover_icon; + } + + private void pictureBox4_MouseLeave(object sender, EventArgs e) + { + pictureBox4.BackgroundImage = Resources.维修房icon; + } + + private void pictureBox3_MouseLeave(object sender, EventArgs e) + { + pictureBox3.BackgroundImage = Resources.脏房icon1; + } + + private void pictureBox2_MouseLeave(object sender, EventArgs e) + { + pictureBox2.BackgroundImage = Resources.已住房icon; + } + + private void pictureBox1_MouseLeave(object sender, EventArgs e) + { + pictureBox1.BackgroundImage = Resources.可住房icon; + } + + private void pictureBox5_MouseHover(object sender, EventArgs e) + { + pictureBox5.BackgroundImage = Resources.预约房_hover_icon; + } + + private void pictureBox5_MouseLeave(object sender, EventArgs e) + { + pictureBox5.BackgroundImage = Resources.预约房icon; + } + + private void pictureBox2_Click(object sender, EventArgs e) + { + flpRoom.Controls.Clear(); + LoadRoomByState(1); + } + + private void pictureBox3_Click(object sender, EventArgs e) + { + LoadRoomByState(3); + } + + private void pictureBox4_Click(object sender, EventArgs e) + { + LoadRoomByState(2); + } + + private void pictureBox5_Click(object sender, EventArgs e) + { + LoadRoomByState(4); + } + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmRoomManager.resx b/SYS.FormUI/AppFunction/FrmRoomManager.resx new file mode 100644 index 0000000000000000000000000000000000000000..2ec4d3a73644353c2f82ae1d7a2444366d18ec1a --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmRoomManager.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmRoomMap.Designer.cs b/SYS.FormUI/AppFunction/FrmRoomMap.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..a14c6a96716ff09a821b593a5bf66b4aa6c4526c --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmRoomMap.Designer.cs @@ -0,0 +1,67 @@ + +namespace SYS.FormUI.AppFunction +{ + partial class FrmRoomMap + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmRoomMap)); + this.flpRoom = new System.Windows.Forms.FlowLayoutPanel(); + this.SuspendLayout(); + // + // flpRoom + // + this.flpRoom.AutoScroll = true; + this.flpRoom.BackColor = System.Drawing.Color.Transparent; + this.flpRoom.Location = new System.Drawing.Point(83, 99); + this.flpRoom.Name = "flpRoom"; + this.flpRoom.Size = new System.Drawing.Size(838, 424); + this.flpRoom.TabIndex = 72; + // + // FrmRoomMap + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.flpRoom); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmRoomMap"; + this.ShowIcon = true; + this.Text = "房态图一览"; + this.Load += new System.EventHandler(this.FrmRoomMap_Load); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.FlowLayoutPanel flpRoom; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmRoomMap.cs b/SYS.FormUI/AppFunction/FrmRoomMap.cs new file mode 100644 index 0000000000000000000000000000000000000000..03359292f98c435d866b0f2804b94e047447324f --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmRoomMap.cs @@ -0,0 +1,45 @@ +using Sunny.UI; +using SYS.Application; +using SYS.Core; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI.AppFunction +{ + public partial class FrmRoomMap : UIForm + { + public FrmRoomMap() + { + InitializeComponent(); + } + ucRoomList romt = null; + private void FrmRoomMap_Load(object sender, EventArgs e) + { + LoadRoom(); + } + + public void LoadRoom() + { + flpRoom.Controls.Clear(); + List rooms = new RoomService().SelectRoomAll(); + for (int i = 0; i < rooms.Count; i++) + { + romt = new ucRoomList(); + romt.lblRoomNo.Text = rooms[i].RoomNo; + romt.lblCustoNo.Text = rooms[i].CustoNo; + romt.lblRoomType.Text = rooms[i].RoomName; + romt.romCustoInfo = rooms[i]; + flpRoom.Controls.Add(romt); + } + } + + + } +} diff --git a/SYS.FormUI/AppFunction/FrmRoomMap.resx b/SYS.FormUI/AppFunction/FrmRoomMap.resx new file mode 100644 index 0000000000000000000000000000000000000000..c5681534de3a6b6828f9f852621f24026d8d692a --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmRoomMap.resx @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGAAfAQAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAtElEQVRYR+2WQQrC + MBBFc3Pd9QxewEVB8AaeQ3Bb8BRJZ9KXXc1UiA3UeTCkIZ+ZR7JpKKSUxhjjW9afIjMmqTtjFzjbnTxc + bdj3YFSBic3u6JN3u/6CC/QXcLgJE+Jmntj2vqwm9HUBF3CBAwo43IQJ8fZPwGpCXxc4oID8Gj/5rkLf + pgIy+6UCF/ZV6NtaYNgczkGB7UeIfdUzIzYnqZvUY62IaW71vBSxWu4qs8/E/p4QZs+OmxjDgilLAAAA + AElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmRoomStateManager.Designer.cs b/SYS.FormUI/AppFunction/FrmRoomStateManager.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..94e2f13560c3135e49d1d5b20eb0bdf51de83fca --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmRoomStateManager.Designer.cs @@ -0,0 +1,141 @@ +namespace SYS.FormUI +{ + partial class FrmRoomStateManager + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmRoomStateManager)); + this.txtRoomNo = new Sunny.UI.UITextBox(); + this.label2 = new System.Windows.Forms.Label(); + this.label1 = new System.Windows.Forms.Label(); + this.cboState = new Sunny.UI.UIComboBox(); + this.btnOk = new Sunny.UI.UIButton(); + this.SuspendLayout(); + // + // txtRoomNo + // + this.txtRoomNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtRoomNo.FillColor = System.Drawing.Color.White; + this.txtRoomNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtRoomNo.Location = new System.Drawing.Point(121, 48); + this.txtRoomNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtRoomNo.Maximum = 2147483647D; + this.txtRoomNo.Minimum = -2147483648D; + this.txtRoomNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtRoomNo.Name = "txtRoomNo"; + this.txtRoomNo.Padding = new System.Windows.Forms.Padding(5); + this.txtRoomNo.Radius = 20; + this.txtRoomNo.Size = new System.Drawing.Size(158, 35); + this.txtRoomNo.Style = Sunny.UI.UIStyle.Custom; + this.txtRoomNo.StyleCustomMode = true; + this.txtRoomNo.TabIndex = 133; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(29, 54); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(88, 25); + this.label2.TabIndex = 132; + this.label2.Text = "客户编号"; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(29, 106); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(88, 25); + this.label1.TabIndex = 134; + this.label1.Text = "房间状态"; + // + // cboState + // + this.cboState.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboState.FillColor = System.Drawing.Color.White; + this.cboState.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboState.Items.AddRange(new object[] { + "前台", + "小程序", + "电话"}); + this.cboState.Location = new System.Drawing.Point(121, 101); + this.cboState.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboState.MinimumSize = new System.Drawing.Size(63, 0); + this.cboState.Name = "cboState"; + this.cboState.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboState.Radius = 20; + this.cboState.Size = new System.Drawing.Size(158, 35); + this.cboState.TabIndex = 135; + this.cboState.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cboState.Watermark = ""; + // + // btnOk + // + this.btnOk.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnOk.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnOk.Location = new System.Drawing.Point(196, 148); + this.btnOk.MinimumSize = new System.Drawing.Size(1, 1); + this.btnOk.Name = "btnOk"; + this.btnOk.Radius = 15; + this.btnOk.Size = new System.Drawing.Size(84, 35); + this.btnOk.TabIndex = 136; + this.btnOk.Text = "修改"; + this.btnOk.Click += new System.EventHandler(this.btnOk_Click); + // + // FrmRoomStateManager + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(308, 196); + this.Controls.Add(this.btnOk); + this.Controls.Add(this.cboState); + this.Controls.Add(this.label1); + this.Controls.Add(this.txtRoomNo); + this.Controls.Add(this.label2); + this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmRoomStateManager"; + this.ShowIcon = true; + this.Text = "修改房间状态"; + this.Load += new System.EventHandler(this.FrmRoomStateManager_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private Sunny.UI.UITextBox txtRoomNo; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label1; + private Sunny.UI.UIComboBox cboState; + private Sunny.UI.UIButton btnOk; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmRoomStateManager.cs b/SYS.FormUI/AppFunction/FrmRoomStateManager.cs new file mode 100644 index 0000000000000000000000000000000000000000..d15151a627e7b736898de658ea23e139639d697b --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmRoomStateManager.cs @@ -0,0 +1,53 @@ +using System; +using System.Windows.Forms; +using SYS.Core; +using Sunny.UI; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class FrmRoomStateManager : UIForm + { + public FrmRoomStateManager() + { + InitializeComponent(); + } + + #region 窗体加载事件 + private void FrmRoomStateManager_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.controlFont; + } + txtRoomNo.Text = ucRoomList.rm_RoomNo; + cboState.DataSource = new RoomService().SelectRoomStateAll(); + cboState.DisplayMember = "RoomStateName"; + cboState.ValueMember = "RoomStateId"; + } + #endregion + + #region 确定按钮点击事件 + private void btnOk_Click(object sender, EventArgs e) + { + if (cboState.SelectedIndex != 1) + { + if (new RoomService().UpdateRoomStateByRoomNo(txtRoomNo.Text, cboState.SelectedIndex) == true) + { + UIMessageBox.Show("房间" + txtRoomNo.Text + "成功修改为" + cboState.Text, "修改提示"); + FrmRoomManager.Reload(); + this.Close(); + } + else + { + UIMessageBox.Show("修改失败", "来自小T的提示"); + } + } + else + { + MessageBox.Show("不能设置已住状态", "来自小T的提示"); + } + } + #endregion + } +} diff --git a/SYS.FormUI/AppFunction/FrmRoomStateManager.resx b/SYS.FormUI/AppFunction/FrmRoomStateManager.resx new file mode 100644 index 0000000000000000000000000000000000000000..2905aa69ba94518122d5acdb3415dece1c790849 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmRoomStateManager.resx @@ -0,0 +1,408 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAQEAAAAEAIAAoQgAAFgAAACgAAABAAAAAgAAAAAEAIAAAAAAAAEAAACMuAAAjLgAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4+u0A9/rrAPz8+QP9/f0E/Pz7CPz8+hv8/fom/P36J/39 + +if9/foh/f37DP79/QT+/PkD/Pv2Afv79gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPz8+AD8//0A/Pz5Dfz9+x/9/ftJ/f79Yv39/YD9/f2w/f79t/7+ + /b39/f3V/f794/3+/eX+/v3k/v793f7+/sL+/v63/v79sv3+/X39/f1d/f78Mf39+xD6+ukA/f35AAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8/fsA/P36Bf39+xv9/fxI/f38g/39/b/9/f3h/f799f39 + /f/9/f7//v7+//7+/f/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+/v7+ + /uv+/v3G/v79gP3+/DX9/fsJ////APv99wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD5+vcA//79APz8+Qf9/fsq/f38X/39/aL9/v3Z/f79+P39 + /f/9/v3//f3+//7+/v/+/v7//f39//7+/v/+/v3//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+ + /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7s/v79sf7+/VT9/fsN/v7/APv79AAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMvYzwD///8A/fz7E/39/FP9/fyq/f396P39 + /fv9/f3//f79//3+/v/9/f7//f39//39/f/+/f7//v39//7+/f/9/v7//v3+//7+/v/+/v7//v7+//7+ + /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v73/v79tP7+ + /Df8/PcC/f36AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+/z5APr8+AL9/fsl/f38bP39 + /cj9/f33/f39//39/f/9/f3//f39//39/f/9/f7//f39//39/f/+/v7//v39//79/f/+/v3//f3+//7+ + /f/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+ + /v/+/v7//v7+//7+/v/+/v7l/v79af7++wj+/v0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8/PgA+/vvAf39 + +yT9/fyF/f393f39/f79/f3//f39//79/f/9/f3//f39//79/f/9/f3//f39//39/f/9/v3//f39//3+ + /f/+/v3//v39//79/f/+/v7//v7+//7+/v/+/f7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+ + /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/vX+/v2Z/f37FP39/AAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPn5 + 8gD///8A/P38FP39/HD9/f3Z/f39/v39/f/9/f3//f39//39/f/9/f3//f39//39/fb9/f3b/f39y/39 + /Zz9/f2H/f38hP39+3z9/ft7/f38ev39/H79/f2H/v79iP79/a7+/v3U/v797P7+/v7+/f7//v7+//7+ + /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+/f7+ + /ZX9/fsM/f38AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPz8+gD8/PoI/f38WP39/cj9/f36/f39//39/f/9/f3//f39//39/f39/f3n/f38u/39 + /Hz9/fxG/f38G/z9+w/7/PcE+/z3AAAAAAAAAAAAAAAAAAAAAAAAAAAA+/v2AP///wD9/foI/v78Ev39 + /DX9/fxu/f39s/7+/en+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+ + /v/+/v7//v7+//7+/v/+/v75/v7+dP7++gL+/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA+Pn2AP7+/QD8/fwf/f38j/39/fX9/f3//f39//39/f/9/f3+/f396v39 + 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 + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+vIA//ryAP39 + +gL8+/oC/vz5Avv9+QL9/fkC/f35Av3+/wD9/fxr/f39//39/f/9/f3//f39//39/cv9/fsR/f36Af39 + +wL+/fsC/fz4Avz9+gL9/fkC/vv5Avz59QD8+fUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPr89wD+/f8A/f79N/7+/tX+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+3/7+ + /UT+//8A/vz7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA/fz7AP38+xH9/fyY/f38sf39/K/9/fyv/f38sP39/LD9/fyu/f39xv39/f79/f3//f39//39 + /f/9/f3y/f39tf39/a/9/f2v/f39r/39/a/9/f2v/f39sf39/Z39/Psa/fz8AAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP38+ADz7LUA/f39Of7+/tT+/v7//v7+//7+/v/+/v7//v7+//7+ + /v/+/v7//v791v79/UL8//wA/v39AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPz8+wD8/PoV/fz80f39/f/9/f3//f39//39/f/9/f3//f39//39 + /f/9/f3//f39//39/f/9/f3//f39//39/f/9/f3//f39//39/f/9/f3//f39//39/f/9/f38/f39Vv39 + /QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP38+wD9/PoE/f38XP3+/d/+/v7//v7+//7+ + /v/+/v7//v7+//7+/v/+/v7//v79vf39/DT///8A/fz6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8+/gA9/HhAP38/Jv9/f3//f39//39 + /f/9/f3//f39//39/f/9/f3//f39//39/f/9/f3//f39//39/f/9/f3//f39//39/f/9/f3//f39//39 + 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 + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPv5 + 8QD9//8A/Pv4Bf39/Az8/Psc/Pz7O/39/UT9/f1E/f39RP39/UT9/f1E/fz7Pfz8+x/9/v0N/f36C/v6 + 9gH7+vYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//////////////////////////////////////////////////////////////////////// + ///////////////////gAP///////gAAD//////gAAAD/////wAAAAD////8AAAAAD///+AAAAAAH/// + gAAAAAAP//8AAAAAAAf//AAD/AAAA//4AH//wAAD/+AB/wPwAAH/wA/8APwAAf+AP/AAfwAA/wD/8AA/ + gAD+A//wAB/AAPwH//gQH+AA+A//+PwP4AD4P////A/wAPB////gD/AA4PwH/4Af8ADh/Af/AB/wAMH8 + B/4AP/gAw/4D/gD/8ACH/gP8A//wAIf+A/wPH/AAj/4D/gAP8AGP/wH+AAfgAZ//Af8AB+ADH/8B/4AP + wAMf/wD/wB/AB///gP/4/4AH//+A////AA///4D///8AH///gP///gA//8BAAH/8AH//wAAAf/AA///A + AAB/4AH//8AAAH/AA///4AAAPwAH///gAAA+AA////////gAP///////4AB///4///8AAf///gP/8AAH + ////AAAAAB////+AAAAAf////+AAAAP/////+AAAH///////gAH///////////////////////////// + //////////////////////////////////////////////////8= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmSelectCustoInfo.Designer.cs b/SYS.FormUI/AppFunction/FrmSelectCustoInfo.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..3058ffb3e6ec67677b0eb5a9721b58f3fe6b5d1f --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmSelectCustoInfo.Designer.cs @@ -0,0 +1,368 @@ +namespace SYS.FormUI +{ + partial class FrmSelectCustoInfo + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSelectCustoInfo)); + this.cbCustoType = new Sunny.UI.UIComboBox(); + this.cbPassportType = new Sunny.UI.UIComboBox(); + this.cbSex = new Sunny.UI.UIComboBox(); + this.txtCustoNo = new Sunny.UI.UITextBox(); + this.txtCustoName = new Sunny.UI.UITextBox(); + this.txtCardID = new Sunny.UI.UITextBox(); + this.txtCustoTel = new Sunny.UI.UITextBox(); + this.dtpBirthday = new Sunny.UI.UIDatePicker(); + this.txtCustoAdress = new Sunny.UI.UITextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); + this.label15 = new System.Windows.Forms.Label(); + this.label16 = new System.Windows.Forms.Label(); + this.label17 = new System.Windows.Forms.Label(); + this.label18 = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // cbCustoType + // + this.cbCustoType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cbCustoType.FillColor = System.Drawing.Color.White; + this.cbCustoType.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cbCustoType.Location = new System.Drawing.Point(512, 49); + this.cbCustoType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cbCustoType.MinimumSize = new System.Drawing.Size(63, 0); + this.cbCustoType.Name = "cbCustoType"; + this.cbCustoType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cbCustoType.Radius = 20; + this.cbCustoType.ReadOnly = true; + this.cbCustoType.Size = new System.Drawing.Size(250, 35); + this.cbCustoType.Style = Sunny.UI.UIStyle.Custom; + this.cbCustoType.TabIndex = 128; + this.cbCustoType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.cbCustoType.Watermark = ""; + // + // cbPassportType + // + this.cbPassportType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cbPassportType.FillColor = System.Drawing.Color.White; + this.cbPassportType.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cbPassportType.Location = new System.Drawing.Point(512, 100); + this.cbPassportType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cbPassportType.MinimumSize = new System.Drawing.Size(63, 0); + this.cbPassportType.Name = "cbPassportType"; + this.cbPassportType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cbPassportType.Radius = 20; + this.cbPassportType.ReadOnly = true; + this.cbPassportType.Size = new System.Drawing.Size(250, 35); + this.cbPassportType.Style = Sunny.UI.UIStyle.Custom; + this.cbPassportType.TabIndex = 127; + this.cbPassportType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // cbSex + // + this.cbSex.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cbSex.FillColor = System.Drawing.Color.White; + this.cbSex.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cbSex.Location = new System.Drawing.Point(136, 154); + this.cbSex.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cbSex.MinimumSize = new System.Drawing.Size(63, 0); + this.cbSex.Name = "cbSex"; + this.cbSex.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cbSex.Radius = 20; + this.cbSex.ReadOnly = true; + this.cbSex.Size = new System.Drawing.Size(250, 35); + this.cbSex.Style = Sunny.UI.UIStyle.Custom; + this.cbSex.TabIndex = 126; + this.cbSex.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // txtCustoNo + // + this.txtCustoNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoNo.FillColor = System.Drawing.Color.White; + this.txtCustoNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoNo.Location = new System.Drawing.Point(136, 50); + this.txtCustoNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoNo.Maximum = 2147483647D; + this.txtCustoNo.Minimum = -2147483648D; + this.txtCustoNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoNo.Name = "txtCustoNo"; + this.txtCustoNo.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoNo.Radius = 20; + this.txtCustoNo.ReadOnly = true; + this.txtCustoNo.Size = new System.Drawing.Size(250, 35); + this.txtCustoNo.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoNo.StyleCustomMode = true; + this.txtCustoNo.TabIndex = 125; + // + // txtCustoName + // + this.txtCustoName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoName.FillColor = System.Drawing.Color.White; + this.txtCustoName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoName.Location = new System.Drawing.Point(136, 102); + this.txtCustoName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoName.Maximum = 2147483647D; + this.txtCustoName.Minimum = -2147483648D; + this.txtCustoName.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoName.Name = "txtCustoName"; + this.txtCustoName.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoName.Radius = 20; + this.txtCustoName.ReadOnly = true; + this.txtCustoName.Size = new System.Drawing.Size(250, 35); + this.txtCustoName.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoName.StyleCustomMode = true; + this.txtCustoName.TabIndex = 124; + // + // txtCardID + // + this.txtCardID.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCardID.FillColor = System.Drawing.Color.White; + this.txtCardID.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCardID.Location = new System.Drawing.Point(512, 151); + this.txtCardID.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCardID.Maximum = 2147483647D; + this.txtCardID.Minimum = -2147483648D; + this.txtCardID.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCardID.Name = "txtCardID"; + this.txtCardID.Padding = new System.Windows.Forms.Padding(5); + this.txtCardID.Radius = 20; + this.txtCardID.ReadOnly = true; + this.txtCardID.Size = new System.Drawing.Size(250, 35); + this.txtCardID.Style = Sunny.UI.UIStyle.Custom; + this.txtCardID.StyleCustomMode = true; + this.txtCardID.TabIndex = 123; + // + // txtCustoTel + // + this.txtCustoTel.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoTel.FillColor = System.Drawing.Color.White; + this.txtCustoTel.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoTel.Location = new System.Drawing.Point(512, 202); + this.txtCustoTel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoTel.Maximum = 2147483647D; + this.txtCustoTel.Minimum = -2147483648D; + this.txtCustoTel.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoTel.Name = "txtCustoTel"; + this.txtCustoTel.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoTel.Radius = 20; + this.txtCustoTel.ReadOnly = true; + this.txtCustoTel.Size = new System.Drawing.Size(250, 35); + this.txtCustoTel.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoTel.StyleCustomMode = true; + this.txtCustoTel.TabIndex = 122; + // + // dtpBirthday + // + this.dtpBirthday.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.dtpBirthday.FillColor = System.Drawing.Color.White; + this.dtpBirthday.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); + this.dtpBirthday.Location = new System.Drawing.Point(136, 206); + this.dtpBirthday.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.dtpBirthday.MaxLength = 10; + this.dtpBirthday.MinimumSize = new System.Drawing.Size(63, 0); + this.dtpBirthday.Name = "dtpBirthday"; + this.dtpBirthday.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.dtpBirthday.Radius = 20; + this.dtpBirthday.ReadOnly = true; + this.dtpBirthday.Size = new System.Drawing.Size(250, 31); + this.dtpBirthday.Style = Sunny.UI.UIStyle.Custom; + this.dtpBirthday.SymbolDropDown = 61555; + this.dtpBirthday.SymbolNormal = 61555; + this.dtpBirthday.TabIndex = 121; + this.dtpBirthday.Text = "2020-11-24"; + this.dtpBirthday.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.dtpBirthday.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); + // + // txtCustoAdress + // + this.txtCustoAdress.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoAdress.FillColor = System.Drawing.Color.White; + this.txtCustoAdress.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoAdress.Location = new System.Drawing.Point(134, 254); + this.txtCustoAdress.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoAdress.Maximum = 2147483647D; + this.txtCustoAdress.Minimum = -2147483648D; + this.txtCustoAdress.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoAdress.Name = "txtCustoAdress"; + this.txtCustoAdress.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoAdress.Radius = 20; + this.txtCustoAdress.ReadOnly = true; + this.txtCustoAdress.Size = new System.Drawing.Size(628, 35); + this.txtCustoAdress.Style = Sunny.UI.UIStyle.Custom; + this.txtCustoAdress.StyleCustomMode = true; + this.txtCustoAdress.TabIndex = 120; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(27, 264); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(88, 25); + this.label1.TabIndex = 118; + this.label1.Text = "居住地址"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(408, 209); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(88, 25); + this.label2.TabIndex = 117; + this.label2.Text = "联系方式"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(408, 158); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(88, 25); + this.label3.TabIndex = 116; + this.label3.Text = "证件号码"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.Location = new System.Drawing.Point(408, 107); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(88, 25); + this.label4.TabIndex = 115; + this.label4.Text = "证件类型"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label5.Location = new System.Drawing.Point(408, 56); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(88, 25); + this.label5.TabIndex = 114; + this.label5.Text = "客户类型"; + // + // label15 + // + this.label15.AutoSize = true; + this.label15.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label15.Location = new System.Drawing.Point(29, 212); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(88, 25); + this.label15.TabIndex = 113; + this.label15.Text = "出生日期"; + // + // label16 + // + this.label16.AutoSize = true; + this.label16.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label16.Location = new System.Drawing.Point(29, 160); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(86, 25); + this.label16.TabIndex = 112; + this.label16.Text = "性 别"; + // + // label17 + // + this.label17.AutoSize = true; + this.label17.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label17.Location = new System.Drawing.Point(29, 108); + this.label17.Name = "label17"; + this.label17.Size = new System.Drawing.Size(88, 25); + this.label17.TabIndex = 111; + this.label17.Text = "客户姓名"; + // + // label18 + // + this.label18.AutoSize = true; + this.label18.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label18.Location = new System.Drawing.Point(29, 56); + this.label18.Name = "label18"; + this.label18.Size = new System.Drawing.Size(88, 25); + this.label18.TabIndex = 110; + this.label18.Text = "客户编号"; + // + // FrmSelectCustoInfo + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(787, 316); + this.Controls.Add(this.cbCustoType); + this.Controls.Add(this.cbPassportType); + this.Controls.Add(this.cbSex); + this.Controls.Add(this.txtCustoNo); + this.Controls.Add(this.txtCustoName); + this.Controls.Add(this.txtCardID); + this.Controls.Add(this.txtCustoTel); + this.Controls.Add(this.dtpBirthday); + this.Controls.Add(this.txtCustoAdress); + this.Controls.Add(this.label1); + this.Controls.Add(this.label2); + this.Controls.Add(this.label3); + this.Controls.Add(this.label4); + this.Controls.Add(this.label5); + this.Controls.Add(this.label15); + this.Controls.Add(this.label16); + this.Controls.Add(this.label17); + this.Controls.Add(this.label18); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmSelectCustoInfo"; + this.ShowIcon = true; + this.Style = Sunny.UI.UIStyle.Custom; + this.Text = "客户信息"; + this.Load += new System.EventHandler(this.FrmSelectCustoInfo_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private Sunny.UI.UIComboBox cbCustoType; + private Sunny.UI.UIComboBox cbPassportType; + private Sunny.UI.UIComboBox cbSex; + private Sunny.UI.UITextBox txtCustoNo; + private Sunny.UI.UITextBox txtCustoName; + private Sunny.UI.UITextBox txtCardID; + private Sunny.UI.UITextBox txtCustoTel; + private Sunny.UI.UIDatePicker dtpBirthday; + private Sunny.UI.UITextBox txtCustoAdress; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.Label label15; + private System.Windows.Forms.Label label16; + private System.Windows.Forms.Label label17; + private System.Windows.Forms.Label label18; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmSelectCustoInfo.cs b/SYS.FormUI/AppFunction/FrmSelectCustoInfo.cs new file mode 100644 index 0000000000000000000000000000000000000000..258ace2bcf8ec8e074b1b24ceedec8f528d82713 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmSelectCustoInfo.cs @@ -0,0 +1,74 @@ +using System; +using System.Windows.Forms; +using SYS.Core; +using Sunny.UI; +using System.Collections.Generic; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class FrmSelectCustoInfo : UIForm + { + public FrmSelectCustoInfo() + { + InitializeComponent(); + } + + #region 存放客户信息类 + public static string co_CustoNo; + public static string co_RoomNo; + public static string co_CustoName; + public static string co_CustoBirthday; + public static string co_CustoSex; + public static string co_CustoTel; + public static string co_CustoPassportType; + public static string co_CustoAddress; + public static string co_CustoType; + public static string co_CustoID; + #endregion + + private void FrmSelectCustoInfo_Load(object sender, EventArgs e) + { + + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.controlFont; + } + #region 加载客户类型信息 + List lstSourceGrid = new BaseService().SelectCustoTypeAllCanUse(); + this.cbCustoType.DataSource = lstSourceGrid; + this.cbCustoType.DisplayMember = "TypeName"; + this.cbCustoType.ValueMember = "UserType"; + this.cbCustoType.SelectedIndex = 0; + this.cbCustoType.ReadOnly = true; + #endregion + + #region 加载证件类型信息 + List passPorts = new BaseService().SelectPassPortTypeAllCanUse(); + this.cbPassportType.DataSource = passPorts; + this.cbPassportType.DisplayMember = "PassportName"; + this.cbPassportType.ValueMember = "PassportId"; + this.cbPassportType.SelectedIndex = 0; + #endregion + + #region 加载性别信息 + List listSexType = new BaseService().SelectSexTypeAllCanUse(); + this.cbSex.DataSource = listSexType; + this.cbSex.DisplayMember = "sexName"; + this.cbSex.ValueMember = "sexId"; + this.cbSex.SelectedIndex = 0; + #endregion + + txtCustoNo.Text = ucRoomList.rm_CustoNo; + Custo c = new CustoService().SelectCardInfoByCustoNo(txtCustoNo.Text); + txtCustoAdress.Text = c.CustoAdress; + txtCustoName.Text = c.CustoName; + txtCardID.Text = c.CustoID; + txtCustoTel.Text = c.CustoTel; + cbSex.Text = c.CustoSex == 1 ? "男" : "女"; + cbCustoType.SelectedIndex = c.CustoType; + cbPassportType.SelectedIndex = c.PassportType; + dtpBirthday.Value = c.CustoBirth; + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmSelectCustoInfo.resx b/SYS.FormUI/AppFunction/FrmSelectCustoInfo.resx new file mode 100644 index 0000000000000000000000000000000000000000..e5b2e7fb654858eab67f6a44c1ca7a62c305933d --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmSelectCustoInfo.resx @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGACoAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACPUlEQVRYR9WXPUsc + URSGBSOIBGxSWEgQbMISZRVMLAxaJOAfEBKwsrC2VEynoGBnSCmks7GRKIEUa/ADQRKiEkhAYQUL0RQq + fsc4yfOOx2WRndm7wzKrLzycO+e8Z+7BmdlxyiTP88bh6F9MYq8rmIV6bd5n+djF3hMa4Dv8gXVyX+KA + vRbgFHbLSGiS39DpX48YxJYP2e+X9r77A1BOUhuAMXjF8QMrRRbncBuAXBOk5ZFYH0K3lSOLUzkPkFI9 + W+T0uFabJZLozz8AxwnVAtRvNl8cV+Ofvi4FC88mPGXpNECParlEbcZsvkg9IvfpuhosPNuEJBR9gCpy + w8Scz/0NeCaglrXTAK2q5RK1EbNFEqdwuwkpfVU9W/iOCY/NEkn0Ow/wEg7kkfCcw7CVM6KkS6DfihTM + hfAebw2ED8C6BT7CJLyGafiMtZc4BCusu6BCfmLxbkIO61gvKy+x/gmD8Abm4dLyO4Q26yneY6gI58rn + E7636ilUtIb+BUaVcxE9Kf+MBYrW0AE+KOcien5YTwXrBmjPQxPeSgi9BKvKucoGKN5NSCz5AIvKuQjv + iQ2gS9BI7AgDTzMx/BJwWPKbUL8D+tW6Ui1I1DfghX/GAkV78ABx6P4MQKkcnlBrt5Sz6HkOz+ivtFRG + 5JwH0JtL/0zIk7C0k/CnQe+LDktlRC7SAK2WdhJ+twFYbIE+zdbg9vt7CfZlJH7LyrtwBhegT7/bNb1V + T2BPA5T241Ri8Q7i/Dz/C1Oe59X/B1LSzyjWxYdSAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmSellThing.Designer.cs b/SYS.FormUI/AppFunction/FrmSellThing.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..70c2baa447d5ddecb4d6574efe6674f14bc2af7c --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmSellThing.Designer.cs @@ -0,0 +1,730 @@ +namespace SYS.FormUI +{ + partial class FrmSellThing + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSellThing)); + this.groupBox2 = new System.Windows.Forms.GroupBox(); + this.txtPrice = new Sunny.UI.UITextBox(); + this.uiLabel6 = new Sunny.UI.UILabel(); + this.nudNum = new Sunny.UI.UIDoubleUpDown(); + this.uiLabel5 = new Sunny.UI.UILabel(); + this.txtSellName = new Sunny.UI.UITextBox(); + this.uiLabel4 = new Sunny.UI.UILabel(); + this.txtSellNo = new Sunny.UI.UITextBox(); + this.uiLabel3 = new Sunny.UI.UILabel(); + this.dgvRoomSell = new Sunny.UI.UIDataGridView(); + this.dgvSellthing = new Sunny.UI.UIDataGridView(); + this.clSellNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clSellName = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clSellPrice = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clFormat = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clStock = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.btnAdd = new Sunny.UI.UIButton(); + this.btnCancel = new Sunny.UI.UIButton(); + this.btnFind = new Sunny.UI.UIButton(); + this.txtFind = new Sunny.UI.UITextBox(); + this.uiLabel1 = new Sunny.UI.UILabel(); + this.uiLabel2 = new Sunny.UI.UILabel(); + this.txtRoomNo = new Sunny.UI.UITextBox(); + this.lblState = new Sunny.UI.UILabel(); + this.btnCheck = new Sunny.UI.UIButton(); + this.clRoomNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCustoNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clSpendName = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clSpendAmount = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clSpendPrice = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clSpendMoney = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clSpendTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clSpendNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.groupBox2.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dgvRoomSell)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.dgvSellthing)).BeginInit(); + this.SuspendLayout(); + // + // groupBox2 + // + this.groupBox2.Controls.Add(this.txtPrice); + this.groupBox2.Controls.Add(this.uiLabel6); + this.groupBox2.Controls.Add(this.nudNum); + this.groupBox2.Controls.Add(this.uiLabel5); + this.groupBox2.Controls.Add(this.txtSellName); + this.groupBox2.Controls.Add(this.uiLabel4); + this.groupBox2.Controls.Add(this.txtSellNo); + this.groupBox2.Controls.Add(this.uiLabel3); + this.groupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.groupBox2.Location = new System.Drawing.Point(617, 88); + this.groupBox2.Name = "groupBox2"; + this.groupBox2.Size = new System.Drawing.Size(452, 123); + this.groupBox2.TabIndex = 5; + this.groupBox2.TabStop = false; + this.groupBox2.Text = "订购中心"; + // + // txtPrice + // + this.txtPrice.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtPrice.FillColor = System.Drawing.Color.White; + this.txtPrice.Font = new System.Drawing.Font("微软雅黑", 12F); + this.txtPrice.Location = new System.Drawing.Point(310, 74); + this.txtPrice.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtPrice.Maximum = 2147483647D; + this.txtPrice.Minimum = -2147483648D; + this.txtPrice.MinimumSize = new System.Drawing.Size(1, 1); + this.txtPrice.Name = "txtPrice"; + this.txtPrice.Padding = new System.Windows.Forms.Padding(5); + this.txtPrice.Radius = 20; + this.txtPrice.ReadOnly = true; + this.txtPrice.Size = new System.Drawing.Size(116, 29); + this.txtPrice.Style = Sunny.UI.UIStyle.Custom; + this.txtPrice.TabIndex = 30; + // + // uiLabel6 + // + this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 12F); + this.uiLabel6.Location = new System.Drawing.Point(258, 74); + this.uiLabel6.Name = "uiLabel6"; + this.uiLabel6.Size = new System.Drawing.Size(61, 29); + this.uiLabel6.Style = Sunny.UI.UIStyle.Custom; + this.uiLabel6.TabIndex = 29; + this.uiLabel6.Text = "单价:"; + this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // nudNum + // + this.nudNum.AutoValidate = System.Windows.Forms.AutoValidate.Disable; + this.nudNum.Decimal = 0; + this.nudNum.Font = new System.Drawing.Font("新宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.nudNum.Location = new System.Drawing.Point(310, 30); + this.nudNum.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.nudNum.Maximum = 9999D; + this.nudNum.Minimum = 0D; + this.nudNum.MinimumSize = new System.Drawing.Size(100, 0); + this.nudNum.Name = "nudNum"; + this.nudNum.Radius = 20; + this.nudNum.Size = new System.Drawing.Size(116, 29); + this.nudNum.Step = 1D; + this.nudNum.Style = Sunny.UI.UIStyle.Custom; + this.nudNum.StyleCustomMode = true; + this.nudNum.TabIndex = 25; + this.nudNum.Text = null; + this.nudNum.Value = 0D; + this.nudNum.ValueChanged += new Sunny.UI.UIDoubleUpDown.OnValueChanged(this.nudNum_ValueChanged); + // + // uiLabel5 + // + this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 12F); + this.uiLabel5.Location = new System.Drawing.Point(258, 30); + this.uiLabel5.Name = "uiLabel5"; + this.uiLabel5.Size = new System.Drawing.Size(61, 29); + this.uiLabel5.Style = Sunny.UI.UIStyle.Custom; + this.uiLabel5.TabIndex = 28; + this.uiLabel5.Text = "数量:"; + this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // txtSellName + // + this.txtSellName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtSellName.FillColor = System.Drawing.Color.White; + this.txtSellName.Font = new System.Drawing.Font("微软雅黑", 12F); + this.txtSellName.Location = new System.Drawing.Point(107, 74); + this.txtSellName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtSellName.Maximum = 2147483647D; + this.txtSellName.Minimum = -2147483648D; + this.txtSellName.MinimumSize = new System.Drawing.Size(1, 1); + this.txtSellName.Name = "txtSellName"; + this.txtSellName.Padding = new System.Windows.Forms.Padding(5); + this.txtSellName.Radius = 20; + this.txtSellName.ReadOnly = true; + this.txtSellName.Size = new System.Drawing.Size(145, 29); + this.txtSellName.Style = Sunny.UI.UIStyle.Custom; + this.txtSellName.TabIndex = 27; + // + // uiLabel4 + // + this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 12F); + this.uiLabel4.Location = new System.Drawing.Point(26, 73); + this.uiLabel4.Name = "uiLabel4"; + this.uiLabel4.Size = new System.Drawing.Size(92, 29); + this.uiLabel4.Style = Sunny.UI.UIStyle.Custom; + this.uiLabel4.TabIndex = 26; + this.uiLabel4.Text = "商品名称:"; + this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // txtSellNo + // + this.txtSellNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtSellNo.FillColor = System.Drawing.Color.White; + this.txtSellNo.Font = new System.Drawing.Font("微软雅黑", 12F); + this.txtSellNo.Location = new System.Drawing.Point(107, 30); + this.txtSellNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtSellNo.Maximum = 2147483647D; + this.txtSellNo.Minimum = -2147483648D; + this.txtSellNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtSellNo.Name = "txtSellNo"; + this.txtSellNo.Padding = new System.Windows.Forms.Padding(5); + this.txtSellNo.Radius = 20; + this.txtSellNo.ReadOnly = true; + this.txtSellNo.Size = new System.Drawing.Size(145, 29); + this.txtSellNo.Style = Sunny.UI.UIStyle.Custom; + this.txtSellNo.TabIndex = 25; + // + // uiLabel3 + // + this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 12F); + this.uiLabel3.Location = new System.Drawing.Point(26, 29); + this.uiLabel3.Name = "uiLabel3"; + this.uiLabel3.Size = new System.Drawing.Size(92, 29); + this.uiLabel3.Style = Sunny.UI.UIStyle.Custom; + this.uiLabel3.TabIndex = 23; + this.uiLabel3.Text = "商品编号:"; + this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // dgvRoomSell + // + this.dgvRoomSell.AllowUserToAddRows = false; + this.dgvRoomSell.AllowUserToDeleteRows = false; + this.dgvRoomSell.AllowUserToResizeColumns = false; + this.dgvRoomSell.AllowUserToResizeRows = false; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvRoomSell.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.dgvRoomSell.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvRoomSell.BackgroundColor = System.Drawing.Color.White; + this.dgvRoomSell.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvRoomSell.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.dgvRoomSell.ColumnHeadersHeight = 32; + this.dgvRoomSell.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvRoomSell.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.clRoomNo, + this.clCustoNo, + this.clSpendName, + this.clSpendAmount, + this.clSpendPrice, + this.clSpendMoney, + this.clSpendTime, + this.clSpendNo, + this.Column8, + this.Column6, + this.Column7, + this.Column9, + this.Column10}); + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); + dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvRoomSell.DefaultCellStyle = dataGridViewCellStyle3; + this.dgvRoomSell.EnableHeadersVisualStyles = false; + this.dgvRoomSell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvRoomSell.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvRoomSell.Location = new System.Drawing.Point(496, 218); + this.dgvRoomSell.Name = "dgvRoomSell"; + this.dgvRoomSell.ReadOnly = true; + this.dgvRoomSell.RowHeadersVisible = false; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.White; + this.dgvRoomSell.RowsDefaultCellStyle = dataGridViewCellStyle4; + this.dgvRoomSell.RowTemplate.Height = 29; + this.dgvRoomSell.SelectedIndex = -1; + this.dgvRoomSell.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvRoomSell.ShowGridLine = true; + this.dgvRoomSell.ShowRowErrors = false; + this.dgvRoomSell.Size = new System.Drawing.Size(573, 269); + this.dgvRoomSell.Style = Sunny.UI.UIStyle.Custom; + this.dgvRoomSell.TabIndex = 15; + // + // dgvSellthing + // + this.dgvSellthing.AllowUserToAddRows = false; + this.dgvSellthing.AllowUserToDeleteRows = false; + this.dgvSellthing.AllowUserToResizeColumns = false; + this.dgvSellthing.AllowUserToResizeRows = false; + dataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvSellthing.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle5; + this.dgvSellthing.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvSellthing.BackgroundColor = System.Drawing.Color.White; + this.dgvSellthing.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle6.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle6.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvSellthing.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle6; + this.dgvSellthing.ColumnHeadersHeight = 32; + this.dgvSellthing.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvSellthing.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.clSellNo, + this.Column1, + this.Column2, + this.Column3, + this.Column4, + this.Column5, + this.clSellName, + this.clSellPrice, + this.clFormat, + this.clStock}); + dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle7.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); + dataGridViewCellStyle7.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvSellthing.DefaultCellStyle = dataGridViewCellStyle7; + this.dgvSellthing.EnableHeadersVisualStyles = false; + this.dgvSellthing.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvSellthing.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvSellthing.Location = new System.Drawing.Point(2, 88); + this.dgvSellthing.Name = "dgvSellthing"; + this.dgvSellthing.ReadOnly = true; + this.dgvSellthing.RowHeadersVisible = false; + dataGridViewCellStyle8.BackColor = System.Drawing.Color.White; + this.dgvSellthing.RowsDefaultCellStyle = dataGridViewCellStyle8; + this.dgvSellthing.RowTemplate.Height = 29; + this.dgvSellthing.SelectedIndex = -1; + this.dgvSellthing.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvSellthing.ShowGridLine = true; + this.dgvSellthing.Size = new System.Drawing.Size(488, 399); + this.dgvSellthing.Style = Sunny.UI.UIStyle.Custom; + this.dgvSellthing.TabIndex = 16; + this.dgvSellthing.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvSellthing_CellClick); + // + // clSellNo + // + this.clSellNo.DataPropertyName = "SellNo"; + this.clSellNo.HeaderText = "商品编号"; + this.clSellNo.Name = "clSellNo"; + this.clSellNo.ReadOnly = true; + // + // Column1 + // + this.Column1.DataPropertyName = "delete_mk"; + this.Column1.HeaderText = "Column1"; + this.Column1.Name = "Column1"; + this.Column1.ReadOnly = true; + this.Column1.Visible = false; + // + // Column2 + // + this.Column2.DataPropertyName = "datains_usr"; + this.Column2.HeaderText = "Column2"; + this.Column2.Name = "Column2"; + this.Column2.ReadOnly = true; + this.Column2.Visible = false; + // + // Column3 + // + this.Column3.DataPropertyName = "datains_date"; + this.Column3.HeaderText = "Column3"; + this.Column3.Name = "Column3"; + this.Column3.ReadOnly = true; + this.Column3.Visible = false; + // + // Column4 + // + this.Column4.DataPropertyName = "datachg_usr"; + this.Column4.HeaderText = "Column4"; + this.Column4.Name = "Column4"; + this.Column4.ReadOnly = true; + this.Column4.Visible = false; + // + // Column5 + // + this.Column5.DataPropertyName = "datachg_date"; + this.Column5.HeaderText = "Column5"; + this.Column5.Name = "Column5"; + this.Column5.ReadOnly = true; + this.Column5.Visible = false; + // + // clSellName + // + this.clSellName.DataPropertyName = "SellName"; + this.clSellName.HeaderText = "商品名称"; + this.clSellName.Name = "clSellName"; + this.clSellName.ReadOnly = true; + // + // clSellPrice + // + this.clSellPrice.DataPropertyName = "SellPrice"; + this.clSellPrice.HeaderText = "价格(元)"; + this.clSellPrice.Name = "clSellPrice"; + this.clSellPrice.ReadOnly = true; + // + // clFormat + // + this.clFormat.DataPropertyName = "format"; + this.clFormat.HeaderText = "规格"; + this.clFormat.Name = "clFormat"; + this.clFormat.ReadOnly = true; + // + // clStock + // + this.clStock.DataPropertyName = "Stock"; + this.clStock.FillWeight = 60F; + this.clStock.HeaderText = "库存"; + this.clStock.Name = "clStock"; + this.clStock.ReadOnly = true; + // + // btnAdd + // + this.btnAdd.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnAdd.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnAdd.Location = new System.Drawing.Point(496, 88); + this.btnAdd.MinimumSize = new System.Drawing.Size(1, 1); + this.btnAdd.Name = "btnAdd"; + this.btnAdd.Radius = 20; + this.btnAdd.Size = new System.Drawing.Size(115, 39); + this.btnAdd.Style = Sunny.UI.UIStyle.Custom; + this.btnAdd.TabIndex = 17; + this.btnAdd.Text = "确定添加"; + this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); + // + // btnCancel + // + this.btnCancel.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnCancel.Location = new System.Drawing.Point(496, 176); + this.btnCancel.MinimumSize = new System.Drawing.Size(1, 1); + this.btnCancel.Name = "btnCancel"; + this.btnCancel.Radius = 20; + this.btnCancel.Size = new System.Drawing.Size(115, 35); + this.btnCancel.Style = Sunny.UI.UIStyle.Custom; + this.btnCancel.TabIndex = 18; + this.btnCancel.Text = "撤回添加"; + this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); + // + // btnFind + // + this.btnFind.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnFind.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnFind.Location = new System.Drawing.Point(414, 49); + this.btnFind.MinimumSize = new System.Drawing.Size(1, 1); + this.btnFind.Name = "btnFind"; + this.btnFind.Radius = 20; + this.btnFind.Size = new System.Drawing.Size(101, 28); + this.btnFind.Style = Sunny.UI.UIStyle.Custom; + this.btnFind.TabIndex = 19; + this.btnFind.Text = "查 找"; + this.btnFind.Click += new System.EventHandler(this.btnFind_Click); + // + // txtFind + // + this.txtFind.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtFind.FillColor = System.Drawing.Color.White; + this.txtFind.Font = new System.Drawing.Font("微软雅黑", 12F); + this.txtFind.Location = new System.Drawing.Point(210, 49); + this.txtFind.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtFind.Maximum = 2147483647D; + this.txtFind.Minimum = -2147483648D; + this.txtFind.MinimumSize = new System.Drawing.Size(1, 1); + this.txtFind.Name = "txtFind"; + this.txtFind.Padding = new System.Windows.Forms.Padding(5); + this.txtFind.Radius = 20; + this.txtFind.Size = new System.Drawing.Size(197, 29); + this.txtFind.Style = Sunny.UI.UIStyle.Custom; + this.txtFind.TabIndex = 20; + // + // uiLabel1 + // + this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 12F); + this.uiLabel1.Location = new System.Drawing.Point(78, 49); + this.uiLabel1.Name = "uiLabel1"; + this.uiLabel1.Size = new System.Drawing.Size(125, 29); + this.uiLabel1.Style = Sunny.UI.UIStyle.Custom; + this.uiLabel1.TabIndex = 21; + this.uiLabel1.Text = "要查找的商品:"; + this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // uiLabel2 + // + this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 12F); + this.uiLabel2.Location = new System.Drawing.Point(544, 48); + this.uiLabel2.Name = "uiLabel2"; + this.uiLabel2.Size = new System.Drawing.Size(92, 29); + this.uiLabel2.Style = Sunny.UI.UIStyle.Custom; + this.uiLabel2.TabIndex = 22; + this.uiLabel2.Text = "消费房号:"; + this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // txtRoomNo + // + this.txtRoomNo.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource; + this.txtRoomNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtRoomNo.FillColor = System.Drawing.Color.White; + this.txtRoomNo.Font = new System.Drawing.Font("微软雅黑", 12F); + this.txtRoomNo.Location = new System.Drawing.Point(634, 48); + this.txtRoomNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtRoomNo.Maximum = 2147483647D; + this.txtRoomNo.Minimum = -2147483648D; + this.txtRoomNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtRoomNo.Name = "txtRoomNo"; + this.txtRoomNo.Padding = new System.Windows.Forms.Padding(5); + this.txtRoomNo.Radius = 20; + this.txtRoomNo.Size = new System.Drawing.Size(134, 29); + this.txtRoomNo.Style = Sunny.UI.UIStyle.Custom; + this.txtRoomNo.TabIndex = 23; + this.txtRoomNo.TextChanged += new System.EventHandler(this.txtRoomNo_TextChanged); + this.txtRoomNo.Validated += new System.EventHandler(this.txtRoomNo_Validated); + // + // lblState + // + this.lblState.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lblState.Location = new System.Drawing.Point(864, 49); + this.lblState.Name = "lblState"; + this.lblState.Size = new System.Drawing.Size(130, 29); + this.lblState.Style = Sunny.UI.UIStyle.Custom; + this.lblState.TabIndex = 24; + this.lblState.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.lblState.Click += new System.EventHandler(this.lblState_Click); + // + // btnCheck + // + this.btnCheck.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnCheck.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnCheck.Location = new System.Drawing.Point(775, 49); + this.btnCheck.MinimumSize = new System.Drawing.Size(1, 1); + this.btnCheck.Name = "btnCheck"; + this.btnCheck.Radius = 20; + this.btnCheck.Size = new System.Drawing.Size(83, 28); + this.btnCheck.Style = Sunny.UI.UIStyle.Custom; + this.btnCheck.TabIndex = 25; + this.btnCheck.Text = "可否消费"; + this.btnCheck.Click += new System.EventHandler(this.btnCheck_Click); + // + // clRoomNo + // + this.clRoomNo.DataPropertyName = "RoomNo"; + this.clRoomNo.FillWeight = 102.6831F; + this.clRoomNo.HeaderText = "房号"; + this.clRoomNo.Name = "clRoomNo"; + this.clRoomNo.ReadOnly = true; + // + // clCustoNo + // + this.clCustoNo.DataPropertyName = "CustoNo"; + this.clCustoNo.FillWeight = 102.6831F; + this.clCustoNo.HeaderText = "客户编号"; + this.clCustoNo.Name = "clCustoNo"; + this.clCustoNo.ReadOnly = true; + // + // clSpendName + // + this.clSpendName.DataPropertyName = "SpendName"; + this.clSpendName.FillWeight = 102.6831F; + this.clSpendName.HeaderText = "商品"; + this.clSpendName.Name = "clSpendName"; + this.clSpendName.ReadOnly = true; + // + // clSpendAmount + // + this.clSpendAmount.DataPropertyName = "SpendAmount"; + this.clSpendAmount.FillWeight = 60F; + this.clSpendAmount.HeaderText = "数量"; + this.clSpendAmount.Name = "clSpendAmount"; + this.clSpendAmount.ReadOnly = true; + // + // clSpendPrice + // + this.clSpendPrice.DataPropertyName = "SpendPrice"; + this.clSpendPrice.FillWeight = 102.6831F; + this.clSpendPrice.HeaderText = "单价"; + this.clSpendPrice.Name = "clSpendPrice"; + this.clSpendPrice.ReadOnly = true; + // + // clSpendMoney + // + this.clSpendMoney.DataPropertyName = "SpendMoney"; + this.clSpendMoney.FillWeight = 102.6831F; + this.clSpendMoney.HeaderText = "总额"; + this.clSpendMoney.Name = "clSpendMoney"; + this.clSpendMoney.ReadOnly = true; + // + // clSpendTime + // + this.clSpendTime.DataPropertyName = "SpendTime"; + this.clSpendTime.FillWeight = 102.6831F; + this.clSpendTime.HeaderText = "消费时间"; + this.clSpendTime.Name = "clSpendTime"; + this.clSpendTime.ReadOnly = true; + // + // clSpendNo + // + this.clSpendNo.DataPropertyName = "delete_mk"; + this.clSpendNo.HeaderText = "Column1"; + this.clSpendNo.Name = "clSpendNo"; + this.clSpendNo.ReadOnly = true; + this.clSpendNo.Visible = false; + // + // Column8 + // + this.Column8.DataPropertyName = "MoneyState"; + this.Column8.HeaderText = "Column8"; + this.Column8.Name = "Column8"; + this.Column8.ReadOnly = true; + this.Column8.Visible = false; + // + // Column6 + // + this.Column6.DataPropertyName = "datains_usr"; + this.Column6.HeaderText = "Column6"; + this.Column6.Name = "Column6"; + this.Column6.ReadOnly = true; + this.Column6.Visible = false; + // + // Column7 + // + this.Column7.DataPropertyName = "datains_date"; + this.Column7.HeaderText = "Column7"; + this.Column7.Name = "Column7"; + this.Column7.ReadOnly = true; + this.Column7.Visible = false; + // + // Column9 + // + this.Column9.DataPropertyName = "datachg_usr"; + this.Column9.HeaderText = "Column9"; + this.Column9.Name = "Column9"; + this.Column9.ReadOnly = true; + this.Column9.Visible = false; + // + // Column10 + // + this.Column10.DataPropertyName = "datachg_date"; + this.Column10.HeaderText = "Column10"; + this.Column10.Name = "Column10"; + this.Column10.ReadOnly = true; + this.Column10.Visible = false; + // + // FrmSellThing + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(1072, 490); + this.Controls.Add(this.btnCheck); + this.Controls.Add(this.lblState); + this.Controls.Add(this.txtRoomNo); + this.Controls.Add(this.uiLabel2); + this.Controls.Add(this.uiLabel1); + this.Controls.Add(this.txtFind); + this.Controls.Add(this.btnFind); + this.Controls.Add(this.btnCancel); + this.Controls.Add(this.btnAdd); + this.Controls.Add(this.dgvRoomSell); + this.Controls.Add(this.groupBox2); + this.Controls.Add(this.dgvSellthing); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.IsForbidAltF4 = true; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmSellThing"; + this.ShowIcon = true; + this.Style = Sunny.UI.UIStyle.Custom; + this.Text = "商品消费"; + this.Activated += new System.EventHandler(this.FrmSellThing_Activated); + this.Load += new System.EventHandler(this.FrmSellThing_Load); + this.groupBox2.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.dgvRoomSell)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.dgvSellthing)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + private System.Windows.Forms.GroupBox groupBox2; + private Sunny.UI.UIDataGridView dgvRoomSell; + private Sunny.UI.UIDataGridView dgvSellthing; + private Sunny.UI.UIButton btnAdd; + private Sunny.UI.UIButton btnCancel; + private Sunny.UI.UIButton btnFind; + private Sunny.UI.UITextBox txtFind; + private Sunny.UI.UITextBox txtPrice; + private Sunny.UI.UILabel uiLabel6; + private Sunny.UI.UIDoubleUpDown nudNum; + private Sunny.UI.UILabel uiLabel5; + private Sunny.UI.UITextBox txtSellName; + private Sunny.UI.UILabel uiLabel4; + private Sunny.UI.UITextBox txtSellNo; + private Sunny.UI.UILabel uiLabel3; + private Sunny.UI.UILabel uiLabel1; + private Sunny.UI.UILabel uiLabel2; + private Sunny.UI.UITextBox txtRoomNo; + private Sunny.UI.UILabel lblState; + private System.Windows.Forms.DataGridViewTextBoxColumn clSellNo; + private System.Windows.Forms.DataGridViewTextBoxColumn Column1; + private System.Windows.Forms.DataGridViewTextBoxColumn Column2; + private System.Windows.Forms.DataGridViewTextBoxColumn Column3; + private System.Windows.Forms.DataGridViewTextBoxColumn Column4; + private System.Windows.Forms.DataGridViewTextBoxColumn Column5; + private System.Windows.Forms.DataGridViewTextBoxColumn clSellName; + private System.Windows.Forms.DataGridViewTextBoxColumn clSellPrice; + private System.Windows.Forms.DataGridViewTextBoxColumn clFormat; + private System.Windows.Forms.DataGridViewTextBoxColumn clStock; + private Sunny.UI.UIButton btnCheck; + private System.Windows.Forms.DataGridViewTextBoxColumn clRoomNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clCustoNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clSpendName; + private System.Windows.Forms.DataGridViewTextBoxColumn clSpendAmount; + private System.Windows.Forms.DataGridViewTextBoxColumn clSpendPrice; + private System.Windows.Forms.DataGridViewTextBoxColumn clSpendMoney; + private System.Windows.Forms.DataGridViewTextBoxColumn clSpendTime; + private System.Windows.Forms.DataGridViewTextBoxColumn clSpendNo; + private System.Windows.Forms.DataGridViewTextBoxColumn Column8; + private System.Windows.Forms.DataGridViewTextBoxColumn Column6; + private System.Windows.Forms.DataGridViewTextBoxColumn Column7; + private System.Windows.Forms.DataGridViewTextBoxColumn Column9; + private System.Windows.Forms.DataGridViewTextBoxColumn Column10; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmSellThing.cs b/SYS.FormUI/AppFunction/FrmSellThing.cs new file mode 100644 index 0000000000000000000000000000000000000000..07bd06adb8420c8bee3c361cfe36689ad4036824 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmSellThing.cs @@ -0,0 +1,279 @@ +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Windows.Forms; +using SYS.Core; +using Sunny.UI; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class FrmSellThing : Sunny.UI.UIForm + { + private int rs = 0;//用于判断房间是否可消费 + + public FrmSellThing() + { + InitializeComponent(); + } + + #region 窗体加载事件 + private void FrmSellThing_Load(object sender, EventArgs e) + { + + List roms = new RoomService().SelectRoomByStateAll(); + for (int i = 0; i < roms.Count; i++) + { + txtRoomNo.AutoCompleteCustomSource.Add(roms[i].RoomNo); + } + LoadSellThingInfo(); + + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.childControlFont; + } + + } + #endregion + + #region 查询事件 + private void btnFind_Click(object sender, EventArgs e) + { + LoadThingByName(); + } + #endregion + + + #region 查询文本框更改事件 + + private void LoadThingByName() + { + + List lstSource = new SellService().SelectSellThingByName(txtFind.Text); + this.dgvSellthing.DataSource = lstSource; + this.dgvSellthing.AutoGenerateColumns = false; + } + #endregion + + + #region 根据客户编号加载消费信息的方法 + private void LoadSpendInfoByRoomNo(string room) + { + List lstSource = new SpendService().SelectSpendByRoomNo(room); + this.dgvRoomSell.DataSource = lstSource; + this.dgvRoomSell.AutoGenerateColumns = false; + } + + private void LoadSpendInfoByCustoNo(string custoNo) + { + List lstSource = new SpendService().SelectSpendByCustoNo(custoNo); + this.dgvRoomSell.DataSource = lstSource; + this.dgvRoomSell.AutoGenerateColumns = false; + } + #endregion + + #region 商品加载事件方法 + public void LoadSellThingInfo() + { + List lstSource = new SellService().SelectSellThingAll(); + this.dgvSellthing.DataSource = lstSource; + this.dgvSellthing.AutoGenerateColumns = false; + + } + #endregion + + #region 判断输入的完整性的方法 + public bool CheckInput() + { + if (txtRoomNo.Text == "") + { + MessageBox.Show("消费房间不能为空", "提示信息", MessageBoxButtons.OKCancel, MessageBoxIcon.Error); + txtRoomNo.Focus(); + return false; + } + if (txtSellNo.Text == "") + { + MessageBox.Show("商品编号不能为空", "提示信息", MessageBoxButtons.OKCancel, MessageBoxIcon.Error); + txtSellNo.Focus(); + return false; + } + if (txtSellName.Text == "") + { + MessageBox.Show("商品名称不能为空", "提示信息", MessageBoxButtons.OKCancel, MessageBoxIcon.Error); + txtSellName.Focus(); + return false; + } + if (txtPrice.Text == "") + { + MessageBox.Show("商品单价不能为空", "提示信息", MessageBoxButtons.OKCancel, MessageBoxIcon.Error); + txtPrice.Focus(); + return false; + } + if (nudNum.Value <= 0) + { + MessageBox.Show("数量不能小于0", "提示信息", MessageBoxButtons.OKCancel, MessageBoxIcon.Error); + txtPrice.Focus(); + return false; + } + return true; + } + #endregion + + #region 添加事件 + private void btnAdd_Click(object sender, EventArgs e) + { + if (rs == 1)//判断房间编号是否可消费 + { + if (CheckInput()) + { + SellThing st = new SellService().SelectSellThingByNo(txtSellNo.Text); + + Room r = new RoomService().SelectRoomByRoomNo(txtRoomNo.Text); + Spend s = new Spend() + { + RoomNo = txtRoomNo.Text, + SpendName = txtSellName.Text, + SpendAmount = (int)nudNum.Value, + CustoNo = r.CustoNo, + SpendPrice = Convert.ToDecimal(txtPrice.Text), + SpendMoney = Convert.ToDecimal(Convert.ToDouble(txtPrice.Text) * nudNum.Value), + SpendTime = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")), + MoneyState = "未结算", + }; + bool m = new SpendService().InsertSpendInfo(s); + if (m == true) + { + string Stock = (st.Stock - nudNum.Value).ToString(); + bool n = new SellService().UpdateSellThing(Stock, st.SellNo); + UIMessageBox.Show("添加成功","系统提示",UIStyle.Green,UIMessageBoxButtons.OK,true); + LoadSpendInfoByCustoNo(r.CustoNo); + LoadSellThingInfo(); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "帮助" + s.CustoNo + "进行了消费商品:" + txtSellName.Text + "操作!"; + o.OperationAccount = LoginInfo.WorkerNo; + o.datains_usr = LoginInfo.WorkerNo; + o.datains_date = DateTime.Now; + #endregion + new OperationlogService().InsertOperationLog(o); + } + else + { + MessageBox.Show("添加失败"); + } + } + } + } + #endregion + + #region 撤回消费事件 + private void btnCancel_Click(object sender, EventArgs e) + { + + if (dgvRoomSell.SelectedRows.Count > 0) + { + if(UIMessageDialog.ShowMessageDialog("你确定要删除该消费记录吗?", UILocalize.WarningTitle, true,Style)) + { + string time = dgvRoomSell.SelectedRows[0].Cells["clSpendTime"].Value.ToString(); + string name = dgvRoomSell.SelectedRows[0].Cells["clSpendName"].Value.ToString(); + string price = dgvRoomSell.SelectedRows[0].Cells["clSpendPrice"].Value.ToString(); + SellThing s = new SellService().SelectSellThingByNameAndPrice(name, price); + decimal num = Convert.ToDecimal(dgvRoomSell.SelectedRows[0].Cells["clSpendAmount"].Value.ToString()); + string Stock = (s.Stock + num).ToString(); + if (new SellService().DeleteSellThing(txtRoomNo.Text, time) == true) + { + + bool n = new SellService().UpdateSellThing(Stock, s.SellNo); + UIMessageTip.ShowOk("撤销成功!",1000); + LoadSpendInfoByRoomNo(txtRoomNo.Text); + LoadSellThingInfo(); + } + } + else + { + UIMessageTip.ShowError("操作取消!",1000); + } + } + else + { + MessageBox.Show("请选择要删除的消费记录!", "提示信息"); + } + } + #endregion + + + private void dgvSellthing_CellClick(object sender, DataGridViewCellEventArgs e) + { + txtSellNo.Text = dgvSellthing.SelectedRows[0].Cells["clSellNo"].Value.ToString(); + txtSellName.Text = dgvSellthing.SelectedRows[0].Cells["clSellName"].Value.ToString(); + txtPrice.Text = dgvSellthing.SelectedRows[0].Cells["clSellPrice"].Value.ToString(); + } + + + private void nudNum_ValueChanged(object sender, double value) + { + if (nudNum.Value < 0) + { + nudNum.Value = 0; + } + } + + private void txtRoomNo_Validated(object sender, EventArgs e) + { + + } + + private void txtRoomNo_TextChanged(object sender, EventArgs e) + { + + } + + private void btnCheck_Click(object sender, EventArgs e) + { + string room = txtRoomNo.Text; + Room r = new RoomService().SelectRoomByRoomNo(room); + if (txtRoomNo.Text == "") + { + lblState.Text = ""; + } + else if (r == null) + { + lblState.Text = "该房间不存在"; + lblState.ForeColor = Color.Red; + rs = 0; + //LoadSpendInfo(); + //清空 + } + else if (r != null) + { + if (r.RoomStateId == 1) + { + lblState.Text = "该房间可消费"; + lblState.ForeColor = Color.Black; + LoadSpendInfoByRoomNo(room); + rs = 1; + } + else + { + lblState.Text = "该房间不可消费"; + lblState.ForeColor = Color.Red; + rs = 0; + this.dgvSellthing.DataSource = null; + //LoadSpendInfo(); + //清空 + } + } + } + + private void lblState_Click(object sender, EventArgs e) + { + + } + + private void FrmSellThing_Activated(object sender, EventArgs e) + { + + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmSellThing.resx b/SYS.FormUI/AppFunction/FrmSellThing.resx new file mode 100644 index 0000000000000000000000000000000000000000..11f6e380be83fad89c12d03cbf7fd9be8230cf50 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmSellThing.resx @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAICAAAAEAGAA4AgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABzUlEQVRYR+2WPyxD + URTGG5MYWAy1SCWCRWKRYCqzyWIQgwQJ6VKLwWJHIpHGQEhEYiQiEYmktRjExmYwMWAwVWIovxvntcfT + P/e2z5NIX/IN975zvu9755x720ik/tQrIBXI5XJXH76HvdvQCoTYut+AWbPfEYoJhCZA2oNnhvV0KAa0 + COI9CGelAgehGzCCGLgUA09/ZSCl2tAZugkqMKMMJI0B1vEgYPUxZg6UgRNpy2axk+K412RlQARvZA7e + ZD3kKPYtnKq+W4uL4J5iaK+hDR7NtauBhGrDglNy4YYdVBzbThwktqoKZJySCwYWFcesMwd9u/cInJO/ + 7hM9uH3OHBAcqi+I2hAQ30LeAJgCpzLIjza5P2IgGFc9TPgDeBclZhjMgw1wwd6r/7Swf1aVAZl8jy8D + 0SRYA+fg2eZYEncHVqo2QPKLpVDWVMD0HSTBKOgmt6FqcbkPtoqU9AHyI7AExkAvMY01CZVKhnwE7IA5 + 0A+af0WoTlqpAvQ4Rvl3zXCViyVu2aASn/N7hPO3IgLxYgTE7Kt749hZpMwgdumTYCpRwkDeJDHB/p2D + MC3XqhGJlTCwqiqQCqwCHhHkFX9QZFbaAhf/l4SfVRCNgJ8sOisAAAAASUVORK5CYII= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmSellThingManager.Designer.cs b/SYS.FormUI/AppFunction/FrmSellThingManager.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..b672e91eafeb06ef197df5da01d2b443edf95467 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmSellThingManager.Designer.cs @@ -0,0 +1,482 @@ +namespace SYS.FormUI +{ + partial class FrmSellThingManager + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSellThingManager)); + this.uiLabel1 = new Sunny.UI.UILabel(); + this.txtFind = new Sunny.UI.UITextBox(); + this.btnFind = new Sunny.UI.UIButton(); + this.btnAddSellThing = new Sunny.UI.UIButton(); + this.btnUpdateSellthing = new Sunny.UI.UIButton(); + this.btnDeleteSellThing = new Sunny.UI.UIButton(); + this.dgvSellthing = new Sunny.UI.UIDataGridView(); + this.clSellNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clSellName = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clSellPrice = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clFormat = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clStock = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.txtStock = new Sunny.UI.UIDoubleUpDown(); + this.label4 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.txtformat = new Sunny.UI.UITextBox(); + this.label2 = new System.Windows.Forms.Label(); + this.txtSellPrice = new Sunny.UI.UITextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.txtSellName = new Sunny.UI.UITextBox(); + this.label20 = new System.Windows.Forms.Label(); + this.txtSellNo = new Sunny.UI.UITextBox(); + ((System.ComponentModel.ISupportInitialize)(this.dgvSellthing)).BeginInit(); + this.SuspendLayout(); + // + // uiLabel1 + // + this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 12F); + this.uiLabel1.Location = new System.Drawing.Point(173, 45); + this.uiLabel1.Name = "uiLabel1"; + this.uiLabel1.Size = new System.Drawing.Size(125, 29); + this.uiLabel1.TabIndex = 114; + this.uiLabel1.Text = "要查找的商品:"; + this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // txtFind + // + this.txtFind.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtFind.FillColor = System.Drawing.Color.White; + this.txtFind.Font = new System.Drawing.Font("微软雅黑", 12F); + this.txtFind.Location = new System.Drawing.Point(305, 45); + this.txtFind.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtFind.Maximum = 2147483647D; + this.txtFind.Minimum = -2147483648D; + this.txtFind.MinimumSize = new System.Drawing.Size(1, 1); + this.txtFind.Name = "txtFind"; + this.txtFind.Padding = new System.Windows.Forms.Padding(5); + this.txtFind.Radius = 20; + this.txtFind.Size = new System.Drawing.Size(197, 29); + this.txtFind.TabIndex = 113; + // + // btnFind + // + this.btnFind.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnFind.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnFind.Location = new System.Drawing.Point(509, 45); + this.btnFind.MinimumSize = new System.Drawing.Size(1, 1); + this.btnFind.Name = "btnFind"; + this.btnFind.Radius = 20; + this.btnFind.Size = new System.Drawing.Size(101, 28); + this.btnFind.TabIndex = 112; + this.btnFind.Text = "查 找"; + this.btnFind.Click += new System.EventHandler(this.btnFind_Click); + // + // btnAddSellThing + // + this.btnAddSellThing.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnAddSellThing.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnAddSellThing.Location = new System.Drawing.Point(818, 489); + this.btnAddSellThing.MinimumSize = new System.Drawing.Size(1, 1); + this.btnAddSellThing.Name = "btnAddSellThing"; + this.btnAddSellThing.Radius = 20; + this.btnAddSellThing.Size = new System.Drawing.Size(176, 37); + this.btnAddSellThing.TabIndex = 115; + this.btnAddSellThing.Text = "新增商品信息"; + this.btnAddSellThing.Click += new System.EventHandler(this.btnAddSellThing_Click); + // + // btnUpdateSellthing + // + this.btnUpdateSellthing.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnUpdateSellthing.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnUpdateSellthing.Location = new System.Drawing.Point(818, 532); + this.btnUpdateSellthing.MinimumSize = new System.Drawing.Size(1, 1); + this.btnUpdateSellthing.Name = "btnUpdateSellthing"; + this.btnUpdateSellthing.Radius = 20; + this.btnUpdateSellthing.Size = new System.Drawing.Size(176, 37); + this.btnUpdateSellthing.TabIndex = 116; + this.btnUpdateSellthing.Text = "修改商品信息"; + this.btnUpdateSellthing.Click += new System.EventHandler(this.btnUpdateSellthing_Click); + // + // btnDeleteSellThing + // + this.btnDeleteSellThing.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnDeleteSellThing.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnDeleteSellThing.Location = new System.Drawing.Point(818, 575); + this.btnDeleteSellThing.MinimumSize = new System.Drawing.Size(1, 1); + this.btnDeleteSellThing.Name = "btnDeleteSellThing"; + this.btnDeleteSellThing.Radius = 20; + this.btnDeleteSellThing.Size = new System.Drawing.Size(176, 37); + this.btnDeleteSellThing.TabIndex = 117; + this.btnDeleteSellThing.Text = "删除商品信息"; + this.btnDeleteSellThing.Click += new System.EventHandler(this.btnDeleteSellThing_Click); + // + // dgvSellthing + // + this.dgvSellthing.AllowUserToAddRows = false; + this.dgvSellthing.AllowUserToDeleteRows = false; + this.dgvSellthing.AllowUserToResizeColumns = false; + this.dgvSellthing.AllowUserToResizeRows = false; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvSellthing.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.dgvSellthing.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvSellthing.BackgroundColor = System.Drawing.Color.White; + this.dgvSellthing.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvSellthing.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.dgvSellthing.ColumnHeadersHeight = 32; + this.dgvSellthing.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvSellthing.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.clSellNo, + this.Column1, + this.Column2, + this.Column3, + this.Column4, + this.Column5, + this.clSellName, + this.clSellPrice, + this.clFormat, + this.clStock}); + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); + dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvSellthing.DefaultCellStyle = dataGridViewCellStyle3; + this.dgvSellthing.EnableHeadersVisualStyles = false; + this.dgvSellthing.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvSellthing.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvSellthing.Location = new System.Drawing.Point(3, 82); + this.dgvSellthing.Name = "dgvSellthing"; + this.dgvSellthing.ReadOnly = true; + this.dgvSellthing.RowHeadersVisible = false; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.White; + this.dgvSellthing.RowsDefaultCellStyle = dataGridViewCellStyle4; + this.dgvSellthing.RowTemplate.Height = 29; + this.dgvSellthing.SelectedIndex = -1; + this.dgvSellthing.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvSellthing.ShowGridLine = true; + this.dgvSellthing.Size = new System.Drawing.Size(803, 538); + this.dgvSellthing.TabIndex = 118; + this.dgvSellthing.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvSellthing_CellClick); + // + // clSellNo + // + this.clSellNo.DataPropertyName = "SellNo"; + this.clSellNo.HeaderText = "商品编号"; + this.clSellNo.Name = "clSellNo"; + this.clSellNo.ReadOnly = true; + // + // Column1 + // + this.Column1.DataPropertyName = "delete_mk"; + this.Column1.HeaderText = "Column1"; + this.Column1.Name = "Column1"; + this.Column1.ReadOnly = true; + this.Column1.Visible = false; + // + // Column2 + // + this.Column2.DataPropertyName = "datains_usr"; + this.Column2.HeaderText = "Column2"; + this.Column2.Name = "Column2"; + this.Column2.ReadOnly = true; + this.Column2.Visible = false; + // + // Column3 + // + this.Column3.DataPropertyName = "datains_date"; + this.Column3.HeaderText = "Column3"; + this.Column3.Name = "Column3"; + this.Column3.ReadOnly = true; + this.Column3.Visible = false; + // + // Column4 + // + this.Column4.DataPropertyName = "datachg_usr"; + this.Column4.HeaderText = "Column4"; + this.Column4.Name = "Column4"; + this.Column4.ReadOnly = true; + this.Column4.Visible = false; + // + // Column5 + // + this.Column5.DataPropertyName = "datachg_date"; + this.Column5.HeaderText = "Column5"; + this.Column5.Name = "Column5"; + this.Column5.ReadOnly = true; + this.Column5.Visible = false; + // + // clSellName + // + this.clSellName.DataPropertyName = "SellName"; + this.clSellName.HeaderText = "商品名称"; + this.clSellName.Name = "clSellName"; + this.clSellName.ReadOnly = true; + // + // clSellPrice + // + this.clSellPrice.DataPropertyName = "SellPrice"; + this.clSellPrice.HeaderText = "价格(元)"; + this.clSellPrice.Name = "clSellPrice"; + this.clSellPrice.ReadOnly = true; + // + // clFormat + // + this.clFormat.DataPropertyName = "format"; + this.clFormat.HeaderText = "规格"; + this.clFormat.Name = "clFormat"; + this.clFormat.ReadOnly = true; + // + // clStock + // + this.clStock.DataPropertyName = "Stock"; + this.clStock.FillWeight = 60F; + this.clStock.HeaderText = "库存"; + this.clStock.Name = "clStock"; + this.clStock.ReadOnly = true; + // + // txtStock + // + this.txtStock.Decimal = 0; + this.txtStock.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.txtStock.Location = new System.Drawing.Point(825, 422); + this.txtStock.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtStock.MinimumSize = new System.Drawing.Size(100, 0); + this.txtStock.Name = "txtStock"; + this.txtStock.Radius = 20; + this.txtStock.Size = new System.Drawing.Size(165, 35); + this.txtStock.Step = 1D; + this.txtStock.TabIndex = 158; + this.txtStock.Text = null; + this.txtStock.Value = 0D; + this.txtStock.ValueChanged += new Sunny.UI.UIDoubleUpDown.OnValueChanged(this.txtStock_ValueChanged); + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.Location = new System.Drawing.Point(863, 388); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(88, 25); + this.label4.TabIndex = 157; + this.label4.Text = "商品库存"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(863, 310); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(88, 25); + this.label3.TabIndex = 156; + this.label3.Text = "商品规格"; + // + // txtformat + // + this.txtformat.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtformat.FillColor = System.Drawing.Color.White; + this.txtformat.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtformat.Location = new System.Drawing.Point(825, 344); + this.txtformat.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtformat.Maximum = 2147483647D; + this.txtformat.Minimum = -2147483648D; + this.txtformat.MinimumSize = new System.Drawing.Size(1, 1); + this.txtformat.Name = "txtformat"; + this.txtformat.Padding = new System.Windows.Forms.Padding(5); + this.txtformat.Radius = 20; + this.txtformat.Size = new System.Drawing.Size(165, 35); + this.txtformat.Style = Sunny.UI.UIStyle.Custom; + this.txtformat.StyleCustomMode = true; + this.txtformat.TabIndex = 155; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(863, 232); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(88, 25); + this.label2.TabIndex = 154; + this.label2.Text = "商品价格"; + // + // txtSellPrice + // + this.txtSellPrice.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtSellPrice.FillColor = System.Drawing.Color.White; + this.txtSellPrice.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtSellPrice.Location = new System.Drawing.Point(825, 266); + this.txtSellPrice.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtSellPrice.Maximum = 2147483647D; + this.txtSellPrice.Minimum = -2147483648D; + this.txtSellPrice.MinimumSize = new System.Drawing.Size(1, 1); + this.txtSellPrice.Name = "txtSellPrice"; + this.txtSellPrice.Padding = new System.Windows.Forms.Padding(5); + this.txtSellPrice.Radius = 20; + this.txtSellPrice.Size = new System.Drawing.Size(165, 35); + this.txtSellPrice.Style = Sunny.UI.UIStyle.Custom; + this.txtSellPrice.StyleCustomMode = true; + this.txtSellPrice.TabIndex = 153; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(863, 154); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(88, 25); + this.label1.TabIndex = 152; + this.label1.Text = "商品名称"; + // + // txtSellName + // + this.txtSellName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtSellName.FillColor = System.Drawing.Color.White; + this.txtSellName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtSellName.Location = new System.Drawing.Point(825, 188); + this.txtSellName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtSellName.Maximum = 2147483647D; + this.txtSellName.Minimum = -2147483648D; + this.txtSellName.MinimumSize = new System.Drawing.Size(1, 1); + this.txtSellName.Name = "txtSellName"; + this.txtSellName.Padding = new System.Windows.Forms.Padding(5); + this.txtSellName.Radius = 20; + this.txtSellName.Size = new System.Drawing.Size(165, 35); + this.txtSellName.Style = Sunny.UI.UIStyle.Custom; + this.txtSellName.StyleCustomMode = true; + this.txtSellName.TabIndex = 151; + // + // label20 + // + this.label20.AutoSize = true; + this.label20.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label20.Location = new System.Drawing.Point(863, 82); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(88, 25); + this.label20.TabIndex = 150; + this.label20.Text = "商品编号"; + // + // txtSellNo + // + this.txtSellNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtSellNo.FillColor = System.Drawing.Color.White; + this.txtSellNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtSellNo.Location = new System.Drawing.Point(825, 110); + this.txtSellNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtSellNo.Maximum = 2147483647D; + this.txtSellNo.Minimum = -2147483648D; + this.txtSellNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtSellNo.Name = "txtSellNo"; + this.txtSellNo.Padding = new System.Windows.Forms.Padding(5); + this.txtSellNo.Radius = 20; + this.txtSellNo.ReadOnly = true; + this.txtSellNo.Size = new System.Drawing.Size(165, 35); + this.txtSellNo.Style = Sunny.UI.UIStyle.Custom; + this.txtSellNo.StyleCustomMode = true; + this.txtSellNo.TabIndex = 149; + // + // FrmSellThingManager + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.txtStock); + this.Controls.Add(this.label4); + this.Controls.Add(this.label3); + this.Controls.Add(this.txtformat); + this.Controls.Add(this.label2); + this.Controls.Add(this.txtSellPrice); + this.Controls.Add(this.label1); + this.Controls.Add(this.txtSellName); + this.Controls.Add(this.label20); + this.Controls.Add(this.txtSellNo); + this.Controls.Add(this.dgvSellthing); + this.Controls.Add(this.btnDeleteSellThing); + this.Controls.Add(this.btnUpdateSellthing); + this.Controls.Add(this.btnAddSellThing); + this.Controls.Add(this.uiLabel1); + this.Controls.Add(this.txtFind); + this.Controls.Add(this.btnFind); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmSellThingManager"; + this.ShowIcon = true; + this.Text = "商品管理"; + this.Load += new System.EventHandler(this.FrmSellThingManager_Load); + ((System.ComponentModel.ISupportInitialize)(this.dgvSellthing)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private Sunny.UI.UILabel uiLabel1; + private Sunny.UI.UITextBox txtFind; + private Sunny.UI.UIButton btnFind; + private Sunny.UI.UIButton btnAddSellThing; + private Sunny.UI.UIButton btnUpdateSellthing; + private Sunny.UI.UIButton btnDeleteSellThing; + private Sunny.UI.UIDataGridView dgvSellthing; + private System.Windows.Forms.DataGridViewTextBoxColumn clSellNo; + private System.Windows.Forms.DataGridViewTextBoxColumn Column1; + private System.Windows.Forms.DataGridViewTextBoxColumn Column2; + private System.Windows.Forms.DataGridViewTextBoxColumn Column3; + private System.Windows.Forms.DataGridViewTextBoxColumn Column4; + private System.Windows.Forms.DataGridViewTextBoxColumn Column5; + private System.Windows.Forms.DataGridViewTextBoxColumn clSellName; + private System.Windows.Forms.DataGridViewTextBoxColumn clSellPrice; + private System.Windows.Forms.DataGridViewTextBoxColumn clFormat; + private System.Windows.Forms.DataGridViewTextBoxColumn clStock; + private Sunny.UI.UIDoubleUpDown txtStock; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label label3; + private Sunny.UI.UITextBox txtformat; + private System.Windows.Forms.Label label2; + private Sunny.UI.UITextBox txtSellPrice; + private System.Windows.Forms.Label label1; + private Sunny.UI.UITextBox txtSellName; + private System.Windows.Forms.Label label20; + private Sunny.UI.UITextBox txtSellNo; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmSellThingManager.cs b/SYS.FormUI/AppFunction/FrmSellThingManager.cs new file mode 100644 index 0000000000000000000000000000000000000000..949f2d38db165091ce2793e9d40c2679d7c3558a --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmSellThingManager.cs @@ -0,0 +1,154 @@ +using System; +using MySql.Data.MySqlClient; +using System.Windows.Forms; +using SYS.Core; +using SYS.FormUI.Properties; +using SYS.Application; +using Sunny.UI; + +namespace SYS.FormUI +{ + public partial class FrmSellThingManager : UIForm + { + public FrmSellThingManager() + { + InitializeComponent(); + } + + public static SellThing st; + + public void LoadData() + { + dgvSellthing.AutoGenerateColumns = false; + dgvSellthing.DataSource = new SellService().SelectSellThingAll(); + } + + private void FrmSellThingManager_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.childControlFont; + } + string SellId = new CounterHelper().GetNewId("SellId"); + txtSellNo.Text = SellId; + dgvSellthing.DataSource = new SellService().SelectSellThingAll(); + dgvSellthing.AutoGenerateColumns = false; + } + + private void btnFind_Click(object sender, EventArgs e) + { + dgvSellthing.DataSource = new SellService().SelectSellThingByName(txtFind.Text); + } + + private void btnDeleteSellThing_Click(object sender, EventArgs e) + { + bool n = new SellService().DeleteSellThingBySellNo(txtSellNo.Text.Trim()); + UIMessageBox.ShowSuccess("删除商品成功!"); + LoadData(); + return; + } + + public bool CheckInput(SellThing sellThing) + { + if(string.IsNullOrWhiteSpace(sellThing.SellNo)) + { + return false; + } + if (string.IsNullOrWhiteSpace(sellThing.SellName)) + { + return false; + } + if (string.IsNullOrWhiteSpace(sellThing.SellPrice + "")) + { + return false; + } + if (string.IsNullOrWhiteSpace(sellThing.Stock + "")) + { + return false; + } + return true; + } + + private void btnAddSellThing_Click(object sender, EventArgs e) + { + st = new SellThing() + { + SellNo = txtSellNo.Text, + SellName = string.IsNullOrWhiteSpace(txtSellName.Text) ? "" : txtSellName.Text, + SellPrice = string.IsNullOrWhiteSpace(txtSellPrice.Text) ? 0 : Convert.ToDecimal(txtSellPrice.Text), + format = string.IsNullOrWhiteSpace(txtformat.Text) ? "" : Convert.ToString(txtformat.Text), + Stock = txtStock.Value == 0 ? 0 : Convert.ToInt32(txtStock.Value), + datains_usr = AdminInfo.Account, + datains_date = DateTime.Now + }; + if (CheckInput(st)) + { + var SellThing = new SellService().SelectSellInfoBySellNo(st.SellNo); + if (SellThing != null && SellThing.SellName.Equals(st.SellName) && SellThing.format.Equals(st.format)) + { + UIMessageBox.ShowError("信息已存在,请检查!"); + return; + } + + new SellService().InsertSellThing(st); + UIMessageBox.Show("添加商品成功","系统提示",UIStyle.Green,UIMessageBoxButtons.OK); + LoadData(); + string SellId = new CounterHelper().GetNewId("SellId"); + txtSellNo.Text = SellId; + } + else + { + UIMessageBox.ShowError("信息不完整,请检查!"); + return; + string SellId = new CounterHelper().GetNewId("SellId"); + txtSellNo.Text = SellId; + } + + } + + private void dgvSellthing_CellClick(object sender, DataGridViewCellEventArgs e) + { + txtSellNo.Text = dgvSellthing.SelectedRows[0].Cells["clSellNo"].Value.ToString(); + txtSellName.Text = dgvSellthing.SelectedRows[0].Cells["clSellName"].Value.ToString(); + txtSellPrice.Text = dgvSellthing.SelectedRows[0].Cells["clSellPrice"].Value.ToString(); + txtformat.Text = dgvSellthing.SelectedRows[0].Cells["clFormat"].Value.ToString(); + txtStock.Value = Convert.ToDouble(dgvSellthing.SelectedRows[0].Cells["clStock"].Value); + } + + private void txtStock_ValueChanged(object sender, double value) + { + //对数量步进器做限制,当小于0时使其一直保持0 + if (txtStock.Value <= 0) + { + txtStock.Value = 0; + } + } + + private void btnUpdateSellthing_Click(object sender, EventArgs e) + { + st = new SellThing() + { + SellNo = txtSellNo.Text, + SellName = string.IsNullOrWhiteSpace(txtSellName.Text) ? "" : txtSellName.Text, + SellPrice = string.IsNullOrWhiteSpace(txtSellPrice.Text) ? 0 : Convert.ToDecimal(txtSellPrice.Text), + format = string.IsNullOrWhiteSpace(txtformat.Text) ? "" : Convert.ToString(txtformat.Text), + Stock = txtStock.Value == 0 ? 0 : Convert.ToInt32(txtStock.Value), + datachg_usr = AdminInfo.Account, + datachg_date = DateTime.Now + }; + if (CheckInput(st)) + { + new SellService().UpdateSellthingInfo(st); + UIMessageBox.Show("修改商品成功","系统提示",UIStyle.Green,UIMessageBoxButtons.OK); + LoadData(); + } + else + { + UIMessageBox.Show("信息不完整,请检查!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + return; + } + } + } +} + + diff --git a/SYS.FormUI/AppFunction/FrmSellThingManager.resx b/SYS.FormUI/AppFunction/FrmSellThingManager.resx new file mode 100644 index 0000000000000000000000000000000000000000..9ca2b7774767587dcc00e67c0e10250ad85fd8e4 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmSellThingManager.resx @@ -0,0 +1,166 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAICAAAAEAGABPAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAB5ElEQVRYR+2XO0sD + URSEU1ooiAhqJ2KTv2CVShDSWFgIYiOC2EaCnWks7BWLdCIWWitiY2ejCHYRLKz8GYnfbGZ9ZDfZ3TxA + YT8Y7t575sw9a2GSQk4nzWZzudVq1bqoZFss1Oc7/L+kbFvjsbErBNzbGguWnv2mZvtvCF+xQayhUqds + 7Ulcn0T+OnrlWS+yYvs3HB50LQ4Jssu6A6J/BR22a18T1zUUWrQlM+Qs0H/Cuh/mIpE4gBoCCLixJTO0 + X7ZTgpw6S7oBMJ/6WTzZkhlyHpyhAc5ZUg8wha7DvS2ZUa8ClKXMcA+9B9Cehi1tWA8DQx/Qe+yMLe2V + rT0kD8A6SeMHegwMfUDvizKUpb2ydQEkDyBoDt+g6qPU0FNx77GPsg/A8xgBdzpk3fRxIng33HOrDB9n + H0AQMoeeVWA9Ypl2KYJq9ognNOtSAPvsAwhCi+hKRdYGqqIy0nAzaBntoYY9V6jo9i+UrTpEB6Ah+FcM + kQFC8Gyjd/siqCaP7RGwDDaAwDchD2sFXaAztIOWOB+3LRb16QLof4BBUHb7inyAfIB8gD8+wJqPhg53 + rPqO2AH0gySAZ31F17RDE5m76I1n5cf/QKEWfiCNkujb/8Rvr0FSCb++uqfVyH5z/FcKhU9oLRkC0uto + CQAAAABJRU5ErkJggg== + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmSexType.Designer.cs b/SYS.FormUI/AppFunction/FrmSexType.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..cf6280736b11acb70d33225fa08af2cd9c17a0a8 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmSexType.Designer.cs @@ -0,0 +1,53 @@ + +namespace SYS.FormUI +{ + partial class FrmSexType + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSexType)); + this.SuspendLayout(); + // + // FrmSexType + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1005, 623); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmSexType"; + this.ShowIcon = true; + this.Text = "性别类型维护"; + this.Load += new System.EventHandler(this.FrmSexType_Load); + this.ResumeLayout(false); + + } + + #endregion + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmSexType.cs b/SYS.FormUI/AppFunction/FrmSexType.cs new file mode 100644 index 0000000000000000000000000000000000000000..6360056cd588d190d7bea44d4789b5f7609dea1c --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmSexType.cs @@ -0,0 +1,26 @@ +using Sunny.UI; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmSexType : UIForm + { + public FrmSexType() + { + InitializeComponent(); + } + + private void FrmSexType_Load(object sender, EventArgs e) + { + + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmSexType.resx b/SYS.FormUI/AppFunction/FrmSexType.resx new file mode 100644 index 0000000000000000000000000000000000000000..93e341b2909ba2ad11f17d30028192089c854958 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmSexType.resx @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGAAbAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACsElEQVRYR+2WPWhU + QRSFg50IUYNiRMEUQTBV/EEQLWxiCiEosoWIEAgRGyVpxNgkhRFEFBElRYiCgoQtDIYggmAgSKogCHbW + YmGjWNmsfvdxZpm8fW/vvIAW4sJhZueeOffsfXfmbUfH/09BBRqNxikwAebBMzAGBv5KsUh041fJh9jz + P2oi5CXRLDgKuljbwXgcrIZ4ign4+8Gy7QN97h5Ir5RgqowMZ9I4jPfbCRLfB95HP+hjWxMEhyS87DmF + uyju2SIuse5QLatAkgmI10Qc9gzAu1RWKda3ofVW8XowwHhTposrYc2lTT2eAbi9IUHMZX1z9BjrFgsG + NL9bagLiEwV7Ewz0ids8EXzfhMZC3lhsQCZmCk1AvKzAlQQD4+KOBy77R0qqkvVArlJPtX+huY7AkchZ + Z5tT0AnXnuNPcCgnPJLfl69AZNgutsF1fBbmy5orEIlPyegdr1L5HnD5GDiN+DcleGPdrobrYT7MfEWx + D8z3uoK5JkzhW9ceAK9ViZaB2BLYlSS2EQNRqWtkrwcHJL0HjqUmjp51SxNW0ggGKm0SGcMD0UW0vuFS + BTdigKTToZfiZ8j6d/AgNXfGq2ogutC+svc6qLE2BK7a8VUTf2oxQcA6/WQBgoeWWP4k8H1CCd4xL7xL + iK9JMLuqm5+yrvfWo2Y7SNIfVnqvxFFfXIwN2BvOLpkMkCYNkYGiWC0yMKpfP+YZgHdC3IceN7kHMPtI + Zvs9Ubh7ZOCFx61i4KVEuzxRDGwRd8njVjGQ/ZFF/IInCie8+KY9brIBcp+RgRVPFAO3xD3ncZMNmBDC + 4WV1vkzYbkclf+wm10W0xqbVFDLC3eHU2LvDup1xJ+N2cJj5XHSqtqZoVuaQZHc450V3CLEvZqaycNUN + ukcWGT8LNr9t1aiq9e/zfwPLObkLEXoTMAAAAABJRU5ErkJggg== + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmUnLockSystem.Designer.cs b/SYS.FormUI/AppFunction/FrmUnLockSystem.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..94c0c3fd06bfaa1810566364467d3e337e8d3262 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmUnLockSystem.Designer.cs @@ -0,0 +1,125 @@ +namespace SYS.FormUI +{ + partial class FrmUnLockSystem + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.label1 = new System.Windows.Forms.Label(); + this.txtUnLockPwd = new System.Windows.Forms.TextBox(); + this.timer1 = new System.Windows.Forms.Timer(this.components); + this.btnUnLock = new Sunny.UI.UIButton(); + this.SuspendLayout(); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.BackColor = System.Drawing.Color.Transparent; + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label1.ForeColor = System.Drawing.Color.Red; + this.label1.Location = new System.Drawing.Point(54, 37); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(410, 24); + this.label1.TabIndex = 0; + this.label1.Text = "当前系统已锁定,请输入超管密码进行解锁!"; + // + // txtUnLockPwd + // + this.txtUnLockPwd.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtUnLockPwd.Location = new System.Drawing.Point(121, 86); + this.txtUnLockPwd.Name = "txtUnLockPwd"; + this.txtUnLockPwd.PasswordChar = '*'; + this.txtUnLockPwd.Size = new System.Drawing.Size(259, 29); + this.txtUnLockPwd.TabIndex = 1; + this.txtUnLockPwd.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtUnLockPwd_KeyDown); + // + // timer1 + // + this.timer1.Tick += new System.EventHandler(this.timer1_Tick); + // + // btnUnLock + // + this.btnUnLock.BackColor = System.Drawing.Color.Transparent; + this.btnUnLock.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnUnLock.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.btnUnLock.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(127)))), ((int)(((byte)(128))))); + this.btnUnLock.FillPressColor = System.Drawing.Color.FromArgb(((int)(((byte)(202)))), ((int)(((byte)(87)))), ((int)(((byte)(89))))); + this.btnUnLock.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(202)))), ((int)(((byte)(87)))), ((int)(((byte)(89))))); + this.btnUnLock.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnUnLock.Location = new System.Drawing.Point(199, 127); + this.btnUnLock.MinimumSize = new System.Drawing.Size(1, 1); + this.btnUnLock.Name = "btnUnLock"; + this.btnUnLock.Radius = 20; + this.btnUnLock.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.btnUnLock.RectHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(127)))), ((int)(((byte)(128))))); + this.btnUnLock.RectPressColor = System.Drawing.Color.FromArgb(((int)(((byte)(202)))), ((int)(((byte)(87)))), ((int)(((byte)(89))))); + this.btnUnLock.RectSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(202)))), ((int)(((byte)(87)))), ((int)(((byte)(89))))); + this.btnUnLock.Size = new System.Drawing.Size(101, 40); + this.btnUnLock.Style = Sunny.UI.UIStyle.Red; + this.btnUnLock.TabIndex = 113; + this.btnUnLock.Text = "解 锁"; + this.btnUnLock.Click += new System.EventHandler(this.btnUnLock_Click); + // + // FrmUnLockSystem + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackgroundImage = global::SYS.FormUI.Properties.Resources._770e7b52ecafc807247aad51bb6c6b43; + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.ClientSize = new System.Drawing.Size(498, 179); + this.Controls.Add(this.btnUnLock); + this.Controls.Add(this.txtUnLockPwd); + this.Controls.Add(this.label1); + this.IsForbidAltF4 = true; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmUnLockSystem"; + this.Padding = new System.Windows.Forms.Padding(0); + this.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.ShowInTaskbar = false; + this.ShowTitle = false; + this.Style = Sunny.UI.UIStyle.Custom; + this.Text = "系统已锁定!"; + this.TitleColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.Deactivate += new System.EventHandler(this.FrmUnLockSystem_Deactivate); + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmUnLockSystem_FormClosing); + this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmUnLockSystem_FormClosed); + this.Load += new System.EventHandler(this.FrmUnLockSystem_Load); + this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmUnLockSystem_KeyDown); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label label1; + private System.Windows.Forms.TextBox txtUnLockPwd; + private System.Windows.Forms.Timer timer1; + private Sunny.UI.UIButton btnUnLock; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmUnLockSystem.cs b/SYS.FormUI/AppFunction/FrmUnLockSystem.cs new file mode 100644 index 0000000000000000000000000000000000000000..f94f3409f47bcbde08f9896432611fa00e3c0291 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmUnLockSystem.cs @@ -0,0 +1,155 @@ +using System; +using System.Diagnostics; +using System.IO; +using System.Reflection; +using System.Runtime.InteropServices; +using System.Windows.Forms; +using Sunny.UI; +using SYS.Application; +using SYS.Core; + +namespace SYS.FormUI +{ + public partial class FrmUnLockSystem : UIForm + { + + public FrmUnLockSystem() + { + InitializeComponent(); + } + + private const int SC_CLOSE = 0xF060; + + private const int MF_ENABLED = 0x00000000; + + private const int MF_GRAYED = 0x00000001; + + private const int MF_DISABLED = 0x00000002; + + + + [DllImport("user32.dll", EntryPoint = "GetSystemMenu")] + + private static extern IntPtr GetSystemMenu(IntPtr hWnd, int bRevert); + + [DllImport("User32.dll")] + + public static extern bool EnableMenuItem(IntPtr hMenu, int uIDEnableItem, int uEnable); + + private void FrmUnLockSystem_FormClosing(object sender, FormClosingEventArgs e) + { + //HookStop(); + } + + private void FrmUnLockSystem_Deactivate(object sender, EventArgs e) + { + + } + + private void btnUnLock_Click(object sender, EventArgs e) + { + var account = new AdminService().SelectAdminPwdByAccount(AdminInfo.Account); + if (account != null) + { + if (account.AdminPassword != txtUnLockPwd.Text.Trim()) + { + MessageBox.Show("密码错误! 请输入当前超管密码解锁!"); + txtUnLockPwd.Text = ""; + txtUnLockPwd.Focus(); + return; + } + this.Close(); + string regPath = System.Windows.Forms.Application.StartupPath + @"\启用任务管理器.reg"; + ExecuteReg(regPath); + + + } + + } + + + private void FrmUnLockSystem_FormClosed(object sender, FormClosedEventArgs e) + { + + } + + private void txtUnLockPwd_KeyDown(object sender, KeyEventArgs e) + { + + } + + private void FrmUnLockSystem_Load(object sender, EventArgs e) + { + string regPath = System.Windows.Forms.Application.StartupPath + @"\禁用任务管理器.reg"; + ExecuteReg(regPath); + //FrmMain.Stop(); + //HookStart(); + Process[] ps = Process.GetProcessesByName("TS酒店管理系统"); + if (ps.Length < 0) + { + foreach (Process p in ps) + p.Kill(); + FrmMain.Start(); + } + IntPtr hMenu = GetSystemMenu(this.Handle, 0); + EnableMenuItem(hMenu, SC_CLOSE, MF_DISABLED | MF_GRAYED); + } + + protected override CreateParams CreateParams + { + get + { + const int CS_NOCLOSE = 0x200; + CreateParams cp = base.CreateParams; + cp.ClassStyle = cp.ClassStyle | CS_NOCLOSE; + return cp; + } + + } + + protected override void WndProc(ref Message m) + { + base.WndProc(ref m); + if (m.Msg == 0x84 && m.Result == (IntPtr)2) // 不让拖动标题栏 + { + m.Result = (IntPtr)1; + } + if (m.Msg == 0xA3) // 双击标题栏无反应 + { + m.WParam = System.IntPtr.Zero; + } + } + + /// + /// 执行注册表导入 + /// + /// 注册表文件路径 + public void ExecuteReg(string regPath) + { + if (File.Exists(regPath)) + { + regPath = @"""" + regPath + @""""; + Process.Start("regedit", string.Format(" /s {0}", regPath)); + } + } + + private void FrmUnLockSystem_KeyDown(object sender, KeyEventArgs e) + { + if (e.KeyCode == Keys.F4 && e.Modifiers == Keys.Alt) + { + MessageBox.Show("请输入解锁密码!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); + e.Handled = true; + } + } + + private void timer1_Tick(object sender, EventArgs e) + { + + } + + private void btnUnLock_Click_1(object sender, EventArgs e) + { + + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmUnLockSystem.resx b/SYS.FormUI/AppFunction/FrmUnLockSystem.resx new file mode 100644 index 0000000000000000000000000000000000000000..1f666f268bc6af87ca66d64b28d790bd5214274e --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmUnLockSystem.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmUpLoadNotice.Designer.cs b/SYS.FormUI/AppFunction/FrmUpLoadNotice.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..c4b85e4100a1c4f3140d0a72e6c959de0fee83c6 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmUpLoadNotice.Designer.cs @@ -0,0 +1,217 @@ +namespace SYS.FormUI +{ + partial class FrmUpLoadNotice + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmUpLoadNotice)); + this.rtbNoticeContent = new KSharpEditor.KEditor(); + this.txtNoticeTheme = new Sunny.UI.UITextBox(); + this.label5 = new System.Windows.Forms.Label(); + this.label8 = new System.Windows.Forms.Label(); + this.dtpUpLoadDate = new Sunny.UI.UIDatePicker(); + this.label1 = new System.Windows.Forms.Label(); + this.cboSelectClub = new Sunny.UI.UIComboBox(); + this.btnUpLoad = new Sunny.UI.UIButton(); + this.label2 = new System.Windows.Forms.Label(); + this.cbNoticeType = new Sunny.UI.UIComboBox(); + this.SuspendLayout(); + // + // rtbNoticeContent + // + this.rtbNoticeContent.Html = "

     

    "; + this.rtbNoticeContent.KEditorEventListener = null; + this.rtbNoticeContent.Location = new System.Drawing.Point(6, 99); + this.rtbNoticeContent.Name = "rtbNoticeContent"; + this.rtbNoticeContent.Size = new System.Drawing.Size(992, 475); + this.rtbNoticeContent.TabIndex = 24; + // + // txtNoticeTheme + // + this.txtNoticeTheme.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtNoticeTheme.FillColor = System.Drawing.Color.White; + this.txtNoticeTheme.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtNoticeTheme.Location = new System.Drawing.Point(113, 50); + this.txtNoticeTheme.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtNoticeTheme.Maximum = 2147483647D; + this.txtNoticeTheme.Minimum = -2147483648D; + this.txtNoticeTheme.MinimumSize = new System.Drawing.Size(1, 1); + this.txtNoticeTheme.Name = "txtNoticeTheme"; + this.txtNoticeTheme.Padding = new System.Windows.Forms.Padding(5); + this.txtNoticeTheme.Radius = 20; + this.txtNoticeTheme.Size = new System.Drawing.Size(297, 35); + this.txtNoticeTheme.Style = Sunny.UI.UIStyle.Custom; + this.txtNoticeTheme.StyleCustomMode = true; + this.txtNoticeTheme.TabIndex = 112; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label5.Location = new System.Drawing.Point(12, 56); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(88, 25); + this.label5.TabIndex = 111; + this.label5.Text = "公告主题"; + // + // label8 + // + this.label8.AutoSize = true; + this.label8.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label8.Location = new System.Drawing.Point(702, 56); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(88, 25); + this.label8.TabIndex = 113; + this.label8.Text = "发布日期"; + // + // dtpUpLoadDate + // + this.dtpUpLoadDate.FillColor = System.Drawing.Color.White; + this.dtpUpLoadDate.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.dtpUpLoadDate.Location = new System.Drawing.Point(803, 50); + this.dtpUpLoadDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.dtpUpLoadDate.MaxLength = 10; + this.dtpUpLoadDate.MinimumSize = new System.Drawing.Size(63, 0); + this.dtpUpLoadDate.Name = "dtpUpLoadDate"; + this.dtpUpLoadDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.dtpUpLoadDate.Radius = 20; + this.dtpUpLoadDate.Size = new System.Drawing.Size(188, 35); + this.dtpUpLoadDate.SymbolDropDown = 61555; + this.dtpUpLoadDate.SymbolNormal = 61555; + this.dtpUpLoadDate.TabIndex = 115; + this.dtpUpLoadDate.Text = "2021-02-13"; + this.dtpUpLoadDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.dtpUpLoadDate.Value = new System.DateTime(2021, 2, 13, 0, 0, 0, 0); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(423, 56); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(88, 25); + this.label1.TabIndex = 116; + this.label1.Text = "发布部门"; + // + // cboSelectClub + // + this.cboSelectClub.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cboSelectClub.FillColor = System.Drawing.Color.White; + this.cboSelectClub.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cboSelectClub.Location = new System.Drawing.Point(524, 50); + this.cboSelectClub.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cboSelectClub.MinimumSize = new System.Drawing.Size(63, 0); + this.cboSelectClub.Name = "cboSelectClub"; + this.cboSelectClub.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cboSelectClub.Radius = 20; + this.cboSelectClub.Size = new System.Drawing.Size(165, 35); + this.cboSelectClub.TabIndex = 118; + this.cboSelectClub.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // btnUpLoad + // + this.btnUpLoad.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnUpLoad.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnUpLoad.Location = new System.Drawing.Point(857, 582); + this.btnUpLoad.MinimumSize = new System.Drawing.Size(1, 1); + this.btnUpLoad.Name = "btnUpLoad"; + this.btnUpLoad.Radius = 20; + this.btnUpLoad.Size = new System.Drawing.Size(139, 35); + this.btnUpLoad.TabIndex = 119; + this.btnUpLoad.Text = "发布任命公告"; + this.btnUpLoad.Click += new System.EventHandler(this.btnUpLoad_Click); + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(594, 586); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(88, 25); + this.label2.TabIndex = 120; + this.label2.Text = "公告类型"; + // + // cbNoticeType + // + this.cbNoticeType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.cbNoticeType.FillColor = System.Drawing.Color.White; + this.cbNoticeType.Font = new System.Drawing.Font("微软雅黑", 15.75F); + this.cbNoticeType.Items.AddRange(new object[] { + "人事变动", + "普通公告"}); + this.cbNoticeType.Location = new System.Drawing.Point(685, 582); + this.cbNoticeType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cbNoticeType.MinimumSize = new System.Drawing.Size(63, 0); + this.cbNoticeType.Name = "cbNoticeType"; + this.cbNoticeType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.cbNoticeType.Radius = 20; + this.cbNoticeType.Size = new System.Drawing.Size(165, 35); + this.cbNoticeType.TabIndex = 121; + this.cbNoticeType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + // + // FrmUpLoadNotice + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.cbNoticeType); + this.Controls.Add(this.label2); + this.Controls.Add(this.btnUpLoad); + this.Controls.Add(this.cboSelectClub); + this.Controls.Add(this.label1); + this.Controls.Add(this.dtpUpLoadDate); + this.Controls.Add(this.label8); + this.Controls.Add(this.txtNoticeTheme); + this.Controls.Add(this.label5); + this.Controls.Add(this.rtbNoticeContent); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmUpLoadNotice"; + this.ShowIcon = true; + this.Text = "上传任命公告"; + this.Load += new System.EventHandler(this.FrmUpLoad_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private KSharpEditor.KEditor rtbNoticeContent; + private Sunny.UI.UITextBox txtNoticeTheme; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.Label label8; + private Sunny.UI.UIDatePicker dtpUpLoadDate; + private System.Windows.Forms.Label label1; + private Sunny.UI.UIComboBox cboSelectClub; + private Sunny.UI.UIButton btnUpLoad; + private System.Windows.Forms.Label label2; + private Sunny.UI.UIComboBox cbNoticeType; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmUpLoadNotice.cs b/SYS.FormUI/AppFunction/FrmUpLoadNotice.cs new file mode 100644 index 0000000000000000000000000000000000000000..6fc8be51d79a6687b5abbdeed3a34faca6a6691c --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmUpLoadNotice.cs @@ -0,0 +1,110 @@ +using System; +using MySql.Data.MySqlClient; +using System.Windows.Forms; +using SYS.Core; +using SYS.Application; +using Sunny.UI; + +namespace SYS.FormUI +{ + public partial class FrmUpLoadNotice : UIForm + { + public FrmUpLoadNotice() + { + InitializeComponent(); + } + + public bool CheckInput(string Content) + { + if (string.IsNullOrWhiteSpace(Content)) + { + return false; + } + + if (Content.Contains("alert") || Content.Contains("ALERT")) + { + return false; + } + return true; + } + + private void btnUpLoad_Click(object sender, EventArgs e) + { + if (CheckInput(rtbNoticeContent.Html)) + { + Notice notice = new Notice() + { + NoticeNo = new CounterHelper().GetNewId("NoticeId"), + Noticetheme = txtNoticeTheme.Text.Trim(), + NoticeContent = rtbNoticeContent.Html, + NoticeTime = dtpUpLoadDate.Value, + NoticeClub = cboSelectClub.SelectedValue.ToString(), + datains_usr = AdminInfo.Account, + datains_date = DateTime.Now + }; + + switch (cbNoticeType.Text) + { + case "人事变动": + notice.NoticeTypeName = "PersonnelChanges"; + break; + case "普通公告": + notice.NoticeTypeName = "GeneralNotice"; + break; + } + + bool n = new NoticeService().InsertNotice(notice); + MessageBox.Show("上传成功!"); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = AdminInfo.Account + AdminInfo.Name + "于" + DateTime.Now + "进行了上传公告操作!编号为:" + notice.NoticeNo; + o.OperationAccount = AdminInfo.Account + AdminInfo.Name; + o.datains_usr = AdminInfo.Account; + o.datains_date = DateTime.Now; + #endregion + new OperationlogService().InsertOperationLog(o); + } + else + { + UIMessageBox.ShowWarning("含有非法操作字符!"); + return; + } + foreach (Control Ctrol in this.Controls) + { + if (Ctrol is TextBox) + { + Ctrol.Text = ""; + } + if (Ctrol is KSharpEditor.KEditor) + { + Ctrol.Text = ""; + } + } + } + + + + private void FrmUpLoad_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.controlFont; + } + cboSelectClub.DataSource = new BaseService().SelectDeptAll(); + cboSelectClub.DisplayMember = "dept_name"; + cboSelectClub.ValueMember = "dept_no"; + + } + + private void dgvNoticeList_CellClick(object sender, DataGridViewCellEventArgs e) + { + //txtUpLoadNo.Text = dgvNoticeList.SelectedRows[0].Cells["clNoticeNo"].Value.ToString(); + //txtNoticeTheme.Text = dgvNoticeList.SelectedRows[0].Cells["clNoticetheme"].Value.ToString(); + //rtbNoticeContent.Text = dgvNoticeList.SelectedRows[0].Cells["clNoticeContent"].Value.ToString(); + //cboSelectClub.Text= dgvNoticeList.SelectedRows[0].Cells["clNoticeClub"].ToString(); + //txtNoticePerson.Text= dgvNoticeList.SelectedRows[0].Cells["clNoticePerson"].ToString(); + } + + } +} diff --git a/SYS.FormUI/AppFunction/FrmUpLoadNotice.resx b/SYS.FormUI/AppFunction/FrmUpLoadNotice.resx new file mode 100644 index 0000000000000000000000000000000000000000..ff0b57c3e734d5e5ec1cb7c0cb589bd1474974cc --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmUpLoadNotice.resx @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAGABgAQAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAA9UlEQVRYR2NgGAWj + ITCUQ+D///8NIDwgfvj3718O0HIwALKz6OoIoIURMMuR6FC6OAJouSsQ/0B3AEgMiJ1o6gigBYZA/ASL + 72FR8Rgor08TRwANlgXi87gsR0oPZ4HqZKjqCKDhXEBDdxOyHMkRu4DqOanmCGh2I9Z+mLpV1HSAA9BU + dIzuIHR5A6o5AJtB6LbT1LKR5QBg6p0PxF2EgpTUKCDWXAaYwdR2ALHmEu0AoI/0kHKGMbEOJqSOaAcQ + NAhNAdVDYNQBNA8BLEUvtuKYFDFwMiDocFJrHFLVE3QAtMDYD6SpjkG1KkEHjCoYDQF6hwAACPEOjtb4 + ucoAAAAASUVORK5CYII= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmWorkerCheckInfo.Designer.cs b/SYS.FormUI/AppFunction/FrmWorkerCheckInfo.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..7076fedc6e1faf6b8e6ee8be3260ff1baa188c6f --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmWorkerCheckInfo.Designer.cs @@ -0,0 +1,225 @@ +namespace SYS.FormUI +{ + partial class FrmWorkerCheckInfo + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmWorkerCheckInfo)); + this.lblWorkerInfo = new System.Windows.Forms.Label(); + this.DgvCheckInfoList = new Sunny.UI.UIDataGridView(); + this.clWorkerNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCheckTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCheckWay = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCheckState = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + ((System.ComponentModel.ISupportInitialize)(this.DgvCheckInfoList)).BeginInit(); + this.SuspendLayout(); + // + // lblWorkerInfo + // + this.lblWorkerInfo.AutoSize = true; + this.lblWorkerInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblWorkerInfo.Location = new System.Drawing.Point(12, 50); + this.lblWorkerInfo.Name = "lblWorkerInfo"; + this.lblWorkerInfo.Size = new System.Drawing.Size(60, 24); + this.lblWorkerInfo.TabIndex = 1; + this.lblWorkerInfo.Text = "label1"; + // + // DgvCheckInfoList + // + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.DgvCheckInfoList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.DgvCheckInfoList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.DgvCheckInfoList.BackgroundColor = System.Drawing.Color.White; + this.DgvCheckInfoList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.DgvCheckInfoList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.DgvCheckInfoList.ColumnHeadersHeight = 32; + this.DgvCheckInfoList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.DgvCheckInfoList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.clWorkerNo, + this.clCheckTime, + this.clCheckWay, + this.clCheckState, + this.Column1, + this.Column2, + this.Column3, + this.Column4, + this.Column5, + this.Column6}); + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); + dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.DgvCheckInfoList.DefaultCellStyle = dataGridViewCellStyle3; + this.DgvCheckInfoList.EnableHeadersVisualStyles = false; + this.DgvCheckInfoList.Font = new System.Drawing.Font("微软雅黑", 12F); + this.DgvCheckInfoList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.DgvCheckInfoList.Location = new System.Drawing.Point(3, 88); + this.DgvCheckInfoList.Name = "DgvCheckInfoList"; + this.DgvCheckInfoList.ReadOnly = true; + this.DgvCheckInfoList.RowHeadersVisible = false; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.White; + this.DgvCheckInfoList.RowsDefaultCellStyle = dataGridViewCellStyle4; + this.DgvCheckInfoList.RowTemplate.Height = 29; + this.DgvCheckInfoList.SelectedIndex = -1; + this.DgvCheckInfoList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.DgvCheckInfoList.ShowGridLine = true; + this.DgvCheckInfoList.Size = new System.Drawing.Size(550, 154); + this.DgvCheckInfoList.TabIndex = 2; + // + // clWorkerNo + // + this.clWorkerNo.DataPropertyName = "WorkerNo"; + this.clWorkerNo.HeaderText = "员工编号"; + this.clWorkerNo.Name = "clWorkerNo"; + this.clWorkerNo.ReadOnly = true; + // + // clCheckTime + // + this.clCheckTime.DataPropertyName = "CheckTime"; + this.clCheckTime.HeaderText = "打卡时间"; + this.clCheckTime.Name = "clCheckTime"; + this.clCheckTime.ReadOnly = true; + // + // clCheckWay + // + this.clCheckWay.DataPropertyName = "CheckWay"; + this.clCheckWay.HeaderText = "打卡方式"; + this.clCheckWay.Name = "clCheckWay"; + this.clCheckWay.ReadOnly = true; + // + // clCheckState + // + this.clCheckState.DataPropertyName = "CheckStateNm"; + this.clCheckState.HeaderText = "打卡状态"; + this.clCheckState.Name = "clCheckState"; + this.clCheckState.ReadOnly = true; + // + // Column1 + // + this.Column1.DataPropertyName = "delete_mk"; + this.Column1.HeaderText = "Column1"; + this.Column1.Name = "Column1"; + this.Column1.ReadOnly = true; + this.Column1.Visible = false; + // + // Column2 + // + this.Column2.DataPropertyName = "datains_date"; + this.Column2.HeaderText = "Column2"; + this.Column2.Name = "Column2"; + this.Column2.ReadOnly = true; + this.Column2.Visible = false; + // + // Column3 + // + this.Column3.DataPropertyName = "datains_usr"; + this.Column3.HeaderText = "Column3"; + this.Column3.Name = "Column3"; + this.Column3.ReadOnly = true; + this.Column3.Visible = false; + // + // Column4 + // + this.Column4.DataPropertyName = "datachg_usr"; + this.Column4.HeaderText = "Column4"; + this.Column4.Name = "Column4"; + this.Column4.ReadOnly = true; + this.Column4.Visible = false; + // + // Column5 + // + this.Column5.DataPropertyName = "datachg_date"; + this.Column5.HeaderText = "Column5"; + this.Column5.Name = "Column5"; + this.Column5.ReadOnly = true; + this.Column5.Visible = false; + // + // Column6 + // + this.Column6.DataPropertyName = "CheckState"; + this.Column6.HeaderText = "Column6"; + this.Column6.Name = "Column6"; + this.Column6.ReadOnly = true; + this.Column6.Visible = false; + // + // FrmWorkerCheckInfo + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(556, 247); + this.Controls.Add(this.DgvCheckInfoList); + this.Controls.Add(this.lblWorkerInfo); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.IsForbidAltF4 = true; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmWorkerCheckInfo"; + this.ShowIcon = true; + this.Text = "员工打卡考勤记录查看页"; + this.Load += new System.EventHandler(this.FrmWorkerCheckInfo_Load); + ((System.ComponentModel.ISupportInitialize)(this.DgvCheckInfoList)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.Label lblWorkerInfo; + private Sunny.UI.UIDataGridView DgvCheckInfoList; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckTime; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckWay; + private System.Windows.Forms.DataGridViewTextBoxColumn clCheckState; + private System.Windows.Forms.DataGridViewTextBoxColumn Column1; + private System.Windows.Forms.DataGridViewTextBoxColumn Column2; + private System.Windows.Forms.DataGridViewTextBoxColumn Column3; + private System.Windows.Forms.DataGridViewTextBoxColumn Column4; + private System.Windows.Forms.DataGridViewTextBoxColumn Column5; + private System.Windows.Forms.DataGridViewTextBoxColumn Column6; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmWorkerCheckInfo.cs b/SYS.FormUI/AppFunction/FrmWorkerCheckInfo.cs new file mode 100644 index 0000000000000000000000000000000000000000..15069fc20a20aeaebf737f87b23e73c311b36d62 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmWorkerCheckInfo.cs @@ -0,0 +1,34 @@ +using Sunny.UI; +using SYS.Application; +using System; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmWorkerCheckInfo : UIForm + { + public FrmWorkerCheckInfo() + { + InitializeComponent(); + + } + + + + private void FrmWorkerCheckInfo_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.childControlFont; + } + lblWorkerInfo.Text = "以下为员工编号:" + FrmChangeWorker.wk_WorkerNo + "员工姓名:" + FrmChangeWorker.wk_WorkerName + "的所有打卡考勤记录:"; + DgvCheckInfoList.AutoGenerateColumns = false; + DgvCheckInfoList.DataSource = new WorkerCheckService().SelectCheckInfoByWorkerNo(FrmChangeWorker.wk_WorkerNo); + } + + private void btnClose_Click(object sender, EventArgs e) + { + this.Close(); + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmWorkerCheckInfo.resx b/SYS.FormUI/AppFunction/FrmWorkerCheckInfo.resx new file mode 100644 index 0000000000000000000000000000000000000000..e27cac3008617319284bf41f9d9a219dea27833d --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmWorkerCheckInfo.resx @@ -0,0 +1,169 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAICAAAAEAGAAdAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACsklEQVRYR72Wv2sU + YRCGr7MwlYVdIAgWarRLE4jaqAg2FoLpxEIiWChipeA11hERLESCgs0JNv4BQUJQEBTFRnIoRAQLraI2 + wp3PTN79bjfft+4PLz4w3M6878x8d7nbTacJg8FgbjgcdnldJfrEhsKuV6XNyT4+GDpPvGBBLcxrPWr/ + Nxj0VHMbY70a0w4G9DWrAPXfxGviIbFIvJEUgdbXuGbQ+F0zAtRWiFkuJ2QLUJsizqHbd6GAzZKtHvT0 + NltHMOSx5Erw3lNbnp7kv0PzLTUEqJ2SHKB2gviE3FWpAPU93pzDZktOg2Ga+CG/Q74guQD1m9KXVYpA + O+xDhM0mpiXHIN6R1yFfkhSBVnkAA/22DxO2Q1IM4pp8flpepiRFoNc9wCTx07wG12uSiiAckschfykp + CXqtAxh4XvlQYbskjaB4WrpD/kBSEixd+eoc4JF5M2yXpBEUF6Q75BclJcGSHcCeA3b4oxZczxA7ZXPI + r5o3gzz+YlP0jzSDPPrp5cHiByjhgmwOuR0uT/zTtVNJdMhvSEqC5cymM0lhAbMuq+6QX5I0guLW78AT + SaVgs9uvf/T5kBxg1hL1APlZSSMo7pfukKd/Li1gVuFhRX5MUhGE9/I45OcltYYZxzXOIf8qKQZxUT6H + /Iuk1jDjrcY55NclxSCmngWlt+Mq6L2rMQFq+ySnwZB6Gjb+U9Azr/YAtfJ3n4FpBxH9h0NtmZiVrRQ8 + u4n7agtQeyZLNZj3qi9FD/0KEe7nXO8iThLXiI/yBah9IA7IXg8aCs/yFHg+E+EJmgJ9nZjR2GbQeFBz + WkH/N+KIxrWDAZOa1wj6fvES3RVbwaAJn9qM8SzPw7va0PAqxr88g0Osa0kZ27c8g0O807KtbP/yDA7x + XEsz/t/yDJbaTcnuAy2Xdzp/ANB/XdlFHw2iAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmWorkerManager.Designer.cs b/SYS.FormUI/AppFunction/FrmWorkerManager.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..7b37ce5e279b8aaddd071c844cf4f3be7fb83e49 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmWorkerManager.Designer.cs @@ -0,0 +1,400 @@ +namespace SYS.FormUI +{ + partial class FrmWorkerManager + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmWorkerManager)); + this.dgvWorkerList = new Sunny.UI.UIDataGridView(); + this.clWorkerNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWorkerPwd = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWorkerName = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWorkerBirthday = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWorkerSex = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWorkerTel = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWorkerClub = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWorkerNation = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWorkerAddress = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWorkerPosition = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWorkerCardID = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWorkerTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWorkerFace = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWorkerEducation = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.btnRefush = new Sunny.UI.UIButton(); + this.btnAddWorker = new Sunny.UI.UIButton(); + ((System.ComponentModel.ISupportInitialize)(this.dgvWorkerList)).BeginInit(); + this.SuspendLayout(); + // + // dgvWorkerList + // + this.dgvWorkerList.AllowUserToAddRows = false; + this.dgvWorkerList.AllowUserToDeleteRows = false; + this.dgvWorkerList.AllowUserToResizeColumns = false; + this.dgvWorkerList.AllowUserToResizeRows = false; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvWorkerList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.dgvWorkerList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvWorkerList.BackgroundColor = System.Drawing.Color.White; + this.dgvWorkerList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvWorkerList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.dgvWorkerList.ColumnHeadersHeight = 32; + this.dgvWorkerList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvWorkerList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.clWorkerNo, + this.clWorkerPwd, + this.Column7, + this.Column8, + this.Column9, + this.Column10, + this.Column1, + this.Column2, + this.Column3, + this.Column4, + this.Column5, + this.Column6, + this.clWorkerName, + this.clWorkerBirthday, + this.clWorkerSex, + this.clWorkerTel, + this.clWorkerClub, + this.clWorkerNation, + this.clWorkerAddress, + this.clWorkerPosition, + this.clWorkerCardID, + this.clWorkerTime, + this.clWorkerFace, + this.clWorkerEducation}); + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); + dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvWorkerList.DefaultCellStyle = dataGridViewCellStyle3; + this.dgvWorkerList.EnableHeadersVisualStyles = false; + this.dgvWorkerList.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvWorkerList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvWorkerList.Location = new System.Drawing.Point(3, 38); + this.dgvWorkerList.Name = "dgvWorkerList"; + this.dgvWorkerList.ReadOnly = true; + this.dgvWorkerList.RowHeadersVisible = false; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.White; + this.dgvWorkerList.RowsDefaultCellStyle = dataGridViewCellStyle4; + this.dgvWorkerList.RowTemplate.Height = 29; + this.dgvWorkerList.SelectedIndex = -1; + this.dgvWorkerList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvWorkerList.ShowGridLine = true; + this.dgvWorkerList.Size = new System.Drawing.Size(999, 540); + this.dgvWorkerList.Style = Sunny.UI.UIStyle.Custom; + this.dgvWorkerList.TabIndex = 3; + this.dgvWorkerList.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvWorkerList_CellClick); + // + // clWorkerNo + // + this.clWorkerNo.DataPropertyName = "WorkerId"; + this.clWorkerNo.HeaderText = "工号"; + this.clWorkerNo.Name = "clWorkerNo"; + this.clWorkerNo.ReadOnly = true; + // + // clWorkerPwd + // + this.clWorkerPwd.DataPropertyName = "WorkerPwd"; + this.clWorkerPwd.HeaderText = "Column11"; + this.clWorkerPwd.Name = "clWorkerPwd"; + this.clWorkerPwd.ReadOnly = true; + this.clWorkerPwd.Visible = false; + // + // Column7 + // + this.Column7.DataPropertyName = "datains_usr"; + this.Column7.HeaderText = "Column7"; + this.Column7.Name = "Column7"; + this.Column7.ReadOnly = true; + this.Column7.Visible = false; + // + // Column8 + // + this.Column8.DataPropertyName = "datains_date"; + this.Column8.HeaderText = "Column8"; + this.Column8.Name = "Column8"; + this.Column8.ReadOnly = true; + this.Column8.Visible = false; + // + // Column9 + // + this.Column9.DataPropertyName = "datachg_usr"; + this.Column9.HeaderText = "Column9"; + this.Column9.Name = "Column9"; + this.Column9.ReadOnly = true; + this.Column9.Visible = false; + // + // Column10 + // + this.Column10.DataPropertyName = "datachg_date"; + this.Column10.HeaderText = "Column10"; + this.Column10.Name = "Column10"; + this.Column10.ReadOnly = true; + this.Column10.Visible = false; + // + // Column1 + // + this.Column1.DataPropertyName = "delete_mk"; + this.Column1.HeaderText = "Column1"; + this.Column1.Name = "Column1"; + this.Column1.ReadOnly = true; + this.Column1.Visible = false; + // + // Column2 + // + this.Column2.DataPropertyName = "WorkerSex"; + this.Column2.HeaderText = "Column2"; + this.Column2.Name = "Column2"; + this.Column2.ReadOnly = true; + this.Column2.Visible = false; + // + // Column3 + // + this.Column3.DataPropertyName = "WorkerNation"; + this.Column3.HeaderText = "Column3"; + this.Column3.Name = "Column3"; + this.Column3.ReadOnly = true; + this.Column3.Visible = false; + // + // Column4 + // + this.Column4.DataPropertyName = "WorkerPosition"; + this.Column4.HeaderText = "Column4"; + this.Column4.Name = "Column4"; + this.Column4.ReadOnly = true; + this.Column4.Visible = false; + // + // Column5 + // + this.Column5.DataPropertyName = "WorkerClub"; + this.Column5.HeaderText = "Column5"; + this.Column5.Name = "Column5"; + this.Column5.ReadOnly = true; + this.Column5.Visible = false; + // + // Column6 + // + this.Column6.DataPropertyName = "WorkerEducation"; + this.Column6.HeaderText = "Column6"; + this.Column6.Name = "Column6"; + this.Column6.ReadOnly = true; + this.Column6.Visible = false; + // + // clWorkerName + // + this.clWorkerName.DataPropertyName = "WorkerName"; + this.clWorkerName.HeaderText = "名字"; + this.clWorkerName.Name = "clWorkerName"; + this.clWorkerName.ReadOnly = true; + // + // clWorkerBirthday + // + this.clWorkerBirthday.DataPropertyName = "WorkerBirthday"; + this.clWorkerBirthday.HeaderText = "出生日期"; + this.clWorkerBirthday.Name = "clWorkerBirthday"; + this.clWorkerBirthday.ReadOnly = true; + // + // clWorkerSex + // + this.clWorkerSex.DataPropertyName = "WorkerSexName"; + this.clWorkerSex.HeaderText = "性别"; + this.clWorkerSex.Name = "clWorkerSex"; + this.clWorkerSex.ReadOnly = true; + // + // clWorkerTel + // + this.clWorkerTel.DataPropertyName = "WorkerTel"; + this.clWorkerTel.HeaderText = "联系方式"; + this.clWorkerTel.Name = "clWorkerTel"; + this.clWorkerTel.ReadOnly = true; + this.clWorkerTel.Visible = false; + // + // clWorkerClub + // + this.clWorkerClub.DataPropertyName = "ClubName"; + this.clWorkerClub.HeaderText = "部门"; + this.clWorkerClub.Name = "clWorkerClub"; + this.clWorkerClub.ReadOnly = true; + // + // clWorkerNation + // + this.clWorkerNation.DataPropertyName = "NationName"; + this.clWorkerNation.HeaderText = "民族"; + this.clWorkerNation.Name = "clWorkerNation"; + this.clWorkerNation.ReadOnly = true; + // + // clWorkerAddress + // + this.clWorkerAddress.DataPropertyName = "WorkerAddress"; + this.clWorkerAddress.HeaderText = "居住地址"; + this.clWorkerAddress.Name = "clWorkerAddress"; + this.clWorkerAddress.ReadOnly = true; + this.clWorkerAddress.Visible = false; + // + // clWorkerPosition + // + this.clWorkerPosition.DataPropertyName = "PositionName"; + this.clWorkerPosition.HeaderText = "职位"; + this.clWorkerPosition.Name = "clWorkerPosition"; + this.clWorkerPosition.ReadOnly = true; + // + // clWorkerCardID + // + this.clWorkerCardID.DataPropertyName = "CardID"; + this.clWorkerCardID.HeaderText = "证件号码"; + this.clWorkerCardID.Name = "clWorkerCardID"; + this.clWorkerCardID.ReadOnly = true; + this.clWorkerCardID.Visible = false; + // + // clWorkerTime + // + this.clWorkerTime.DataPropertyName = "WorkerTime"; + this.clWorkerTime.HeaderText = "入职时间"; + this.clWorkerTime.Name = "clWorkerTime"; + this.clWorkerTime.ReadOnly = true; + // + // clWorkerFace + // + this.clWorkerFace.DataPropertyName = "WorkerFace"; + this.clWorkerFace.HeaderText = "面貌"; + this.clWorkerFace.Name = "clWorkerFace"; + this.clWorkerFace.ReadOnly = true; + // + // clWorkerEducation + // + this.clWorkerEducation.DataPropertyName = "EducationName"; + this.clWorkerEducation.HeaderText = "学历"; + this.clWorkerEducation.Name = "clWorkerEducation"; + this.clWorkerEducation.ReadOnly = true; + // + // btnRefush + // + this.btnRefush.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnRefush.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnRefush.Location = new System.Drawing.Point(818, 584); + this.btnRefush.MinimumSize = new System.Drawing.Size(1, 1); + this.btnRefush.Name = "btnRefush"; + this.btnRefush.Radius = 30; + this.btnRefush.Size = new System.Drawing.Size(88, 30); + this.btnRefush.Style = Sunny.UI.UIStyle.Custom; + this.btnRefush.TabIndex = 99; + this.btnRefush.Text = "刷新列表"; + this.btnRefush.Click += new System.EventHandler(this.btnRefush_Click); + // + // btnAddWorker + // + this.btnAddWorker.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnAddWorker.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnAddWorker.Location = new System.Drawing.Point(912, 584); + this.btnAddWorker.MinimumSize = new System.Drawing.Size(1, 1); + this.btnAddWorker.Name = "btnAddWorker"; + this.btnAddWorker.Radius = 30; + this.btnAddWorker.Size = new System.Drawing.Size(86, 30); + this.btnAddWorker.Style = Sunny.UI.UIStyle.Custom; + this.btnAddWorker.TabIndex = 100; + this.btnAddWorker.Text = "添加员工"; + this.btnAddWorker.Click += new System.EventHandler(this.btnAddWorker_Click); + // + // FrmWorkerManager + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.btnAddWorker); + this.Controls.Add(this.btnRefush); + this.Controls.Add(this.dgvWorkerList); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmWorkerManager"; + this.ShowIcon = true; + this.Style = Sunny.UI.UIStyle.Custom; + this.Text = "员工管理"; + this.Load += new System.EventHandler(this.FrmTopChange_Load); + ((System.ComponentModel.ISupportInitialize)(this.dgvWorkerList)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + private Sunny.UI.UIDataGridView dgvWorkerList; + private Sunny.UI.UIButton btnRefush; + private Sunny.UI.UIButton btnAddWorker; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerPwd; + private System.Windows.Forms.DataGridViewTextBoxColumn Column7; + private System.Windows.Forms.DataGridViewTextBoxColumn Column8; + private System.Windows.Forms.DataGridViewTextBoxColumn Column9; + private System.Windows.Forms.DataGridViewTextBoxColumn Column10; + private System.Windows.Forms.DataGridViewTextBoxColumn Column1; + private System.Windows.Forms.DataGridViewTextBoxColumn Column2; + private System.Windows.Forms.DataGridViewTextBoxColumn Column3; + private System.Windows.Forms.DataGridViewTextBoxColumn Column4; + private System.Windows.Forms.DataGridViewTextBoxColumn Column5; + private System.Windows.Forms.DataGridViewTextBoxColumn Column6; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerName; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerBirthday; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerSex; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerTel; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerClub; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerNation; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerAddress; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerPosition; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerCardID; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerTime; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerFace; + private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerEducation; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmWorkerManager.cs b/SYS.FormUI/AppFunction/FrmWorkerManager.cs new file mode 100644 index 0000000000000000000000000000000000000000..3db31e4f9bca563cd5d8465b2da82cfff4ecf145 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmWorkerManager.cs @@ -0,0 +1,96 @@ +using System; +using System.ComponentModel; +using System.Windows.Forms; +using Sunny.UI; +using SYS.Application; +using SYS.Core; + +namespace SYS.FormUI +{ + public partial class FrmWorkerManager : UIForm + { + public static string wk_WorkerNo; + public static string wk_WorkerName; + public static string wk_WorkerBirthday; + public static string wk_WorkerSex; + public static string wk_WorkerTel; + public static string wk_WorkerClub; + public static string wk_WorkerAddress; + public static string wk_WorkerPosition; + public static string wk_WorkerID; + public static string wk_WorkerPwd; + public static string wk_WorkerTime; + public static string wk_WorkerFace; + public static string wk_WorkerNation; + public static string wk_WorkerEducation; + + public delegate void ReLoadWorkerList(); + + + //定义委托类型的变量 + public static ReLoadWorkerList Reload; + + public FrmWorkerManager() + { + InitializeComponent(); + Reload = LoadWorker; + } + + private void LoadWorker() + { + dgvWorkerList.DataSource = new WorkerService().SelectWorkerAll(); + } + + private void FrmTopChange_Load(object sender, EventArgs e) + { + foreach (Control item in this.Controls) + { + item.Font = UI_FontUtil.childControlFont; + } + dgvWorkerList.AutoGenerateColumns = false; + dgvWorkerList.DataSource = new WorkerService().SelectWorkerAll(); + if (AdminInfo.Type != "总经理" && AdminInfo.Type != "人力资源部经理") + { + btnAddWorker.Enabled = false; + btnAddWorker.Text = "权限不足"; + } + } + + private void dgvWorkerList_CellClick(object sender, DataGridViewCellEventArgs e) + { + if (dgvWorkerList.Rows.Count > 1) + { + wk_WorkerNo = dgvWorkerList.SelectedRows[0].Cells["clWorkerNo"].Value.ToString(); + wk_WorkerName = dgvWorkerList.SelectedRows[0].Cells["clWorkerName"].Value.ToString(); + wk_WorkerBirthday = dgvWorkerList.SelectedRows[0].Cells["clWorkerBirthday"].Value.ToString(); + wk_WorkerSex = dgvWorkerList.SelectedRows[0].Cells["clWorkerSex"].Value.ToString(); + wk_WorkerTel = dgvWorkerList.SelectedRows[0].Cells["clWorkerTel"].Value.ToString(); + wk_WorkerClub = dgvWorkerList.SelectedRows[0].Cells["clWorkerClub"].Value.ToString(); + wk_WorkerAddress = dgvWorkerList.SelectedRows[0].Cells["clWorkerAddress"].Value.ToString(); + wk_WorkerPosition = dgvWorkerList.SelectedRows[0].Cells["clWorkerPosition"].Value.ToString(); + wk_WorkerID = dgvWorkerList.SelectedRows[0].Cells["clWorkerCardID"].Value.ToString(); + wk_WorkerPwd = dgvWorkerList.SelectedRows[0].Cells["clWorkerPwd"].Value.ToString(); + wk_WorkerTime = dgvWorkerList.SelectedRows[0].Cells["clWorkerTime"].Value.ToString(); + wk_WorkerFace = dgvWorkerList.SelectedRows[0].Cells["clWorkerFace"].Value.ToString(); + wk_WorkerEducation = dgvWorkerList.SelectedRows[0].Cells["clWorkerEducation"].Value.ToString(); + wk_WorkerNation = dgvWorkerList.SelectedRows[0].Cells["clWorkerNation"].Value.ToString(); + FrmChangeWorker aff = new FrmChangeWorker(); + aff.ShowDialog(); + + } + } + + + + private void btnAddWorker_Click(object sender, EventArgs e) + { + FrmAddWorker frm = new FrmAddWorker(); + frm.Show(); + } + + private void btnRefush_Click(object sender, EventArgs e) + { + LoadWorker(); + } + } +} diff --git a/SYS.FormUI/AppFunction/FrmWorkerManager.resx b/SYS.FormUI/AppFunction/FrmWorkerManager.resx new file mode 100644 index 0000000000000000000000000000000000000000..78026153533a054e37e32339932c68a6b822e0f3 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmWorkerManager.resx @@ -0,0 +1,209 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAICAAAAEAGAC3AgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACTElEQVRYR92WvUsD + QRDFbUT/ALURRBBEgq19qohiKdikCCiCWqulqS3FUrCyCYiQSrFPFSJCMGUKsRIMCilUSHxP5o5xyWUm + MSn0YMjt7pvfvLv9uIyM/MWr3W4vtFqtLOJMIsu+oT8Lik0jLlGs48UxaoZiBOC9pMJhP7UDNQHgvC6C + 9jXaOcSsRE76YhlzBmYC1EJEBngzCcwxZbQwEAOAbiho3oJCf6TMblh6cxzAUwLx+2aKRUCt5Jx6cxJ1 + gN0LrOaFIacmOffenG4GGgIreWEwUJKchjenm4ErgdW9MBioS86VN6ebgUOBvQOcsoDUIN4l59DSm+OA + ZdSqrloJ0FeVPmPpXeOAFhW0gvZcmMg+REXpii64RwTwWHASNtF3jtiS4H0z0Ix52G4NCkwibsNzP2xT + Q60b3KsQ8F3EHeJDve4P6dvtlde3HsVHUXSRwfu+Qb9JRPGppHyYSqvpSf+mTpyLgsuIE8RNBNdg9K9F + bYzzcx1duahfa3oyhcSzTgtQQzBeRhSg/T4Jg13BPn7Wy70WXgLwNYA9yDbcUU+8be0QNb7tNhEUfkG7 + YzIMHSCelT6PNo/lFPryasc8U+syECReWElaz0Wo3o5ekHmL8z0Ol6vqaVx/rwLD8YdL3kKEcxuIvumP + yJywXHNqUOhJTwHfgoSeAmq6rwEIZgD7JAy/+1ZxjhM6sEWIoutq0cR72zLCLSa7g1vux8WtyTFqLA7n + /1gZMP+EqENmxXEQxZpEI2ruOIfjpuMOAmFEzxHviH5Y/zvnC8vWZZB6XAnDAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmWtiInfo.Designer.cs b/SYS.FormUI/AppFunction/FrmWtiInfo.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..6d74f3670090ab23362d0658c86fe13bb01ae900 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmWtiInfo.Designer.cs @@ -0,0 +1,252 @@ +namespace SYS.FormUI +{ + partial class FrmWtiInfo + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmWtiInfo)); + this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components); + this.dgvWti = new Sunny.UI.UIDataGridView(); + this.clWtiNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clRoomNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clUseDate = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clEndDate = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clWaterUse = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clPowerUse = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clRecord = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.clCustoNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + ((System.ComponentModel.ISupportInitialize)(this.dgvWti)).BeginInit(); + this.SuspendLayout(); + // + // dgvWti + // + this.dgvWti.AllowUserToAddRows = false; + this.dgvWti.AllowUserToDeleteRows = false; + this.dgvWti.AllowUserToResizeColumns = false; + this.dgvWti.AllowUserToResizeRows = false; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvWti.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.dgvWti.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvWti.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.dgvWti.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Sunken; + this.dgvWti.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dgvWti.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.dgvWti.ColumnHeadersHeight = 32; + this.dgvWti.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; + this.dgvWti.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.clWtiNo, + this.clRoomNo, + this.clUseDate, + this.clEndDate, + this.clWaterUse, + this.clPowerUse, + this.clRecord, + this.clCustoNo, + this.Column7, + this.Column8, + this.Column9, + this.Column10, + this.Column11}); + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); + dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); + dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); + dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvWti.DefaultCellStyle = dataGridViewCellStyle3; + this.dgvWti.EnableHeadersVisualStyles = false; + this.dgvWti.Font = new System.Drawing.Font("微软雅黑", 12F); + this.dgvWti.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.dgvWti.Location = new System.Drawing.Point(12, 48); + this.dgvWti.MultiSelect = false; + this.dgvWti.Name = "dgvWti"; + this.dgvWti.ReadOnly = true; + this.dgvWti.RowHeadersVisible = false; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.White; + this.dgvWti.RowsDefaultCellStyle = dataGridViewCellStyle4; + this.dgvWti.RowTemplate.Height = 29; + this.dgvWti.SelectedIndex = -1; + this.dgvWti.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvWti.Size = new System.Drawing.Size(981, 563); + this.dgvWti.Style = Sunny.UI.UIStyle.Custom; + this.dgvWti.TabIndex = 58; + // + // clWtiNo + // + this.clWtiNo.DataPropertyName = "WtiNo"; + this.clWtiNo.HeaderText = "记录编号"; + this.clWtiNo.Name = "clWtiNo"; + this.clWtiNo.ReadOnly = true; + // + // clRoomNo + // + this.clRoomNo.DataPropertyName = "RoomNo"; + this.clRoomNo.HeaderText = "房号"; + this.clRoomNo.Name = "clRoomNo"; + this.clRoomNo.ReadOnly = true; + // + // clUseDate + // + this.clUseDate.DataPropertyName = "UseDate"; + this.clUseDate.HeaderText = "开始使用时间"; + this.clUseDate.Name = "clUseDate"; + this.clUseDate.ReadOnly = true; + // + // clEndDate + // + this.clEndDate.DataPropertyName = "EndDate"; + this.clEndDate.HeaderText = "结束使用时间"; + this.clEndDate.Name = "clEndDate"; + this.clEndDate.ReadOnly = true; + // + // clWaterUse + // + this.clWaterUse.DataPropertyName = "WaterUse"; + this.clWaterUse.HeaderText = "水费"; + this.clWaterUse.Name = "clWaterUse"; + this.clWaterUse.ReadOnly = true; + // + // clPowerUse + // + this.clPowerUse.DataPropertyName = "PowerUse"; + this.clPowerUse.HeaderText = "电费"; + this.clPowerUse.Name = "clPowerUse"; + this.clPowerUse.ReadOnly = true; + // + // clRecord + // + this.clRecord.DataPropertyName = "Record"; + this.clRecord.HeaderText = "记录员"; + this.clRecord.Name = "clRecord"; + this.clRecord.ReadOnly = true; + // + // clCustoNo + // + this.clCustoNo.DataPropertyName = "CustoNo"; + this.clCustoNo.HeaderText = "客户编号"; + this.clCustoNo.Name = "clCustoNo"; + this.clCustoNo.ReadOnly = true; + // + // Column7 + // + this.Column7.DataPropertyName = "delete_mk"; + this.Column7.HeaderText = "Column7"; + this.Column7.Name = "Column7"; + this.Column7.ReadOnly = true; + this.Column7.Visible = false; + // + // Column8 + // + this.Column8.DataPropertyName = "datains_usr"; + this.Column8.HeaderText = "Column8"; + this.Column8.Name = "Column8"; + this.Column8.ReadOnly = true; + this.Column8.Visible = false; + // + // Column9 + // + this.Column9.DataPropertyName = "datains_date"; + this.Column9.HeaderText = "Column9"; + this.Column9.Name = "Column9"; + this.Column9.ReadOnly = true; + this.Column9.Visible = false; + // + // Column10 + // + this.Column10.DataPropertyName = "datachg_usr"; + this.Column10.HeaderText = "Column10"; + this.Column10.Name = "Column10"; + this.Column10.ReadOnly = true; + this.Column10.Visible = false; + // + // Column11 + // + this.Column11.DataPropertyName = "datachg_date"; + this.Column11.HeaderText = "Column11"; + this.Column11.Name = "Column11"; + this.Column11.ReadOnly = true; + this.Column11.Visible = false; + // + // FrmWtiInfo + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(1005, 623); + this.ControlBox = false; + this.Controls.Add(this.dgvWti); + this.ForeColor = System.Drawing.SystemColors.ControlText; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmWtiInfo"; + this.ShowIcon = true; + this.ShowInTaskbar = false; + this.Style = Sunny.UI.UIStyle.Custom; + this.Text = "水电信息"; + this.Load += new System.EventHandler(this.WtiInfo_Load); + ((System.ComponentModel.ISupportInitialize)(this.dgvWti)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + private System.Windows.Forms.ToolTip ToolTip1; + private Sunny.UI.UIDataGridView dgvWti; + private System.Windows.Forms.DataGridViewTextBoxColumn clWtiNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clRoomNo; + private System.Windows.Forms.DataGridViewTextBoxColumn clUseDate; + private System.Windows.Forms.DataGridViewTextBoxColumn clEndDate; + private System.Windows.Forms.DataGridViewTextBoxColumn clWaterUse; + private System.Windows.Forms.DataGridViewTextBoxColumn clPowerUse; + private System.Windows.Forms.DataGridViewTextBoxColumn clRecord; + private System.Windows.Forms.DataGridViewTextBoxColumn clCustoNo; + private System.Windows.Forms.DataGridViewTextBoxColumn Column7; + private System.Windows.Forms.DataGridViewTextBoxColumn Column8; + private System.Windows.Forms.DataGridViewTextBoxColumn Column9; + private System.Windows.Forms.DataGridViewTextBoxColumn Column10; + private System.Windows.Forms.DataGridViewTextBoxColumn Column11; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppFunction/FrmWtiInfo.cs b/SYS.FormUI/AppFunction/FrmWtiInfo.cs new file mode 100644 index 0000000000000000000000000000000000000000..5e733c9de8ded1e7ab10a36d807d928f5e73ada6 --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmWtiInfo.cs @@ -0,0 +1,39 @@ +using System; +using System.Windows.Forms; +using Sunny.UI; +using SYS.Application; +using SYS.Core; + +namespace SYS.FormUI +{ + public partial class FrmWtiInfo : UIForm + { + public FrmWtiInfo() + { + InitializeComponent(); + } + + #region 窗体加载事件 + private void WtiInfo_Load(object sender, EventArgs e) + { + foreach (Control item in this.Controls) + { + item.Font = UI_FontUtil.childControlFont; + } + LoadWtiInfo();//加载水电费信息 + } + #endregion + + #region 加载水电费信息到Dgv + /// + /// 加载水电费信息到Dgv + /// + private void LoadWtiInfo() + { + //将水电费信息加载到Dgv + dgvWti.DataSource = new WtiService().SelectWtiInfoAll(); + } + #endregion + + } +} diff --git a/SYS.FormUI/AppFunction/FrmWtiInfo.resx b/SYS.FormUI/AppFunction/FrmWtiInfo.resx new file mode 100644 index 0000000000000000000000000000000000000000..0bea5558fddb6c7dc780c0f07b5a72ff7ffb1c6d --- /dev/null +++ b/SYS.FormUI/AppFunction/FrmWtiInfo.resx @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAICAAAAEAGABIAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAC3UlEQVRYR+2XTYhN + YRzGbynZ+FoIzdhZTMrCQtPULJTEwsdExEImE0WEZsQCV9LMRmYx7HyUFE0iX3Wj2MjMgiYSQpMiC5HY + WLkzv+fc50z3eM+5c+81YzW/ejr3ff7P+3/PnI/33slNUS/FYnEJeoVO2fp/sOjykTIYn3Vp8mGx9V50 + EC1ERzwuODJ5sMgOL9ZjK4LxSvs/bU08ND+gReCkrQT408j8UsDWxKFF1Rj6baVCfQ4n8VFBW/8ODbeo + IVRcPIZ8IxrSBFv1Q6Ol0dJVLh5Dvom579EXW7VDE93TD+gNarAdQO1y2gnir9WZc7xnqzaYeFMNoM1W + AJkT6AdKvBUx+IfVgGNtmxUT8p7YbSuA2nZnHqM1tgOoXXJuna3KEJyFhpnzzFYAtVYyv9FBNYcZLgVQ + m01uAD20VRmC+0s9R3bbSkC9Ab1GvWRWKOhSJmSj5wHabWVD+CnBzL+e+n10y5+7kG5BuR5ZjdEEw/gO + GvAwHU0qnWj6bkf9HBpC823pEusqjInaMNrl8hh4HdT1LCy2FUJxm0PBa4fXifTEt9gKoHYbnfEwAf48 + 995rK4TiIYVgga0IxtG9pp5Hx9BxpFcw74jmnkZ3PQxQT/fYZyuE+maHmm1FMNaPj7/vtfTN9a3oHVoU + TUiBWrN7b7IVQr1JIThqKxMy+uJ5gpahP2iVS6moZ9SZNWylQyO9sy89zIRGbeQuohco+7Ia9USV3wJB + KNoFIXUfiCHXi66hPluZqFepZfrblYDQXJq+5Zi5Fwgyeh0feFgR9SI7yHG6rcoQ3kNYZJ4xmQLKfOhi + 6NGvRmQ32KoOJlz3xCu2aoKp+k0Qf6OOf+nTKGugS7ja9riQ7UCfNZHjTtv1QY92mnx3swscWl0KoL4R + FZx9jhL7Sd3QSBvRVTUWfNZ/RHoDetB5pC34q2ufUBcfq3vgaoHGLagble+GN1Af6mRRfRnNdHyKKsjl + RgFVYJ7sdNzyagAAAABJRU5ErkJggg== + + + \ No newline at end of file diff --git a/SYS.FormUI/AppInterface/FrmAdminEnter.Designer.cs b/SYS.FormUI/AppInterface/FrmAdminEnter.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..feb0fc98db8ae5e7938cefafc568ece98e1fdafe --- /dev/null +++ b/SYS.FormUI/AppInterface/FrmAdminEnter.Designer.cs @@ -0,0 +1,217 @@ +namespace SYS.FormUI +{ + partial class FrmAdminEnter + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAdminEnter)); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.txtAccount = new Sunny.UI.UITextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.txtPassword = new Sunny.UI.UITextBox(); + this.label3 = new System.Windows.Forms.Label(); + this.swSecurity = new Sunny.UI.UISwitch(); + this.label2 = new System.Windows.Forms.Label(); + this.uiToolTip1 = new Sunny.UI.UIToolTip(this.components); + this.pictureBox2 = new System.Windows.Forms.PictureBox(); + this.btnCheckIn = new Sunny.UI.UIButton(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); + this.SuspendLayout(); + // + // pictureBox1 + // + this.pictureBox1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.BackgroundImage"))); + this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox1.Location = new System.Drawing.Point(3, 38); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(694, 354); + this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; + this.pictureBox1.TabIndex = 12; + this.pictureBox1.TabStop = false; + // + // txtAccount + // + this.txtAccount.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtAccount.FillColor = System.Drawing.Color.White; + this.txtAccount.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtAccount.Location = new System.Drawing.Point(309, 409); + this.txtAccount.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtAccount.Maximum = 100D; + this.txtAccount.MaxLength = 20; + this.txtAccount.Minimum = 0D; + this.txtAccount.MinimumSize = new System.Drawing.Size(1, 1); + this.txtAccount.Name = "txtAccount"; + this.txtAccount.Padding = new System.Windows.Forms.Padding(5); + this.txtAccount.Radius = 20; + this.txtAccount.Size = new System.Drawing.Size(208, 35); + this.txtAccount.Style = Sunny.UI.UIStyle.Custom; + this.txtAccount.StyleCustomMode = true; + this.txtAccount.TabIndex = 106; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(202, 414); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(107, 25); + this.label1.TabIndex = 105; + this.label1.Text = "管理员账号"; + // + // txtPassword + // + this.txtPassword.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtPassword.FillColor = System.Drawing.Color.White; + this.txtPassword.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtPassword.Location = new System.Drawing.Point(309, 463); + this.txtPassword.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtPassword.Maximum = 2147483647D; + this.txtPassword.MaxLength = 20; + this.txtPassword.Minimum = -2147483648D; + this.txtPassword.MinimumSize = new System.Drawing.Size(1, 1); + this.txtPassword.Name = "txtPassword"; + this.txtPassword.Padding = new System.Windows.Forms.Padding(5); + this.txtPassword.PasswordChar = '*'; + this.txtPassword.Radius = 20; + this.txtPassword.Size = new System.Drawing.Size(208, 35); + this.txtPassword.Style = Sunny.UI.UIStyle.Custom; + this.txtPassword.StyleCustomMode = true; + this.txtPassword.TabIndex = 108; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(202, 468); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(107, 25); + this.label3.TabIndex = 107; + this.label3.Text = "管理员密码"; + // + // swSecurity + // + this.swSecurity.Active = true; + this.swSecurity.Enabled = false; + this.swSecurity.Font = new System.Drawing.Font("微软雅黑", 12F); + this.swSecurity.Location = new System.Drawing.Point(311, 517); + this.swSecurity.MinimumSize = new System.Drawing.Size(1, 1); + this.swSecurity.Name = "swSecurity"; + this.swSecurity.Size = new System.Drawing.Size(95, 35); + this.swSecurity.Style = Sunny.UI.UIStyle.Custom; + this.swSecurity.TabIndex = 109; + this.swSecurity.Text = "uiSwitch1"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(183, 521); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(126, 25); + this.label2.TabIndex = 110; + this.label2.Text = "进入安全模式"; + // + // uiToolTip1 + // + this.uiToolTip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(54)))), ((int)(((byte)(54)))), ((int)(((byte)(54))))); + this.uiToolTip1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(239)))), ((int)(((byte)(239))))); + this.uiToolTip1.OwnerDraw = true; + this.uiToolTip1.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info; + this.uiToolTip1.ToolTipTitle = "安全模式:"; + // + // pictureBox2 + // + this.pictureBox2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox2.BackgroundImage"))); + this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox2.Location = new System.Drawing.Point(474, 517); + this.pictureBox2.Name = "pictureBox2"; + this.pictureBox2.Size = new System.Drawing.Size(43, 35); + this.pictureBox2.TabIndex = 111; + this.pictureBox2.TabStop = false; + this.uiToolTip1.SetToolTip(this.pictureBox2, "进入安全模式,意味着你所进行的所有操作\r\n将会被系统如实地记录在后台数据库中(超级管\r\n理员除外),默认进入安全模式!"); + // + // btnCheckIn + // + this.btnCheckIn.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnCheckIn.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnCheckIn.Location = new System.Drawing.Point(240, 576); + this.btnCheckIn.MinimumSize = new System.Drawing.Size(1, 1); + this.btnCheckIn.Name = "btnCheckIn"; + this.btnCheckIn.Radius = 20; + this.btnCheckIn.Size = new System.Drawing.Size(220, 54); + this.btnCheckIn.Style = Sunny.UI.UIStyle.Custom; + this.btnCheckIn.TabIndex = 112; + this.btnCheckIn.Text = "登 录"; + this.btnCheckIn.Click += new System.EventHandler(this.btnCheckIn_Click); + // + // FrmAdminEnter + // + this.AcceptButton = this.btnCheckIn; + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.ClientSize = new System.Drawing.Size(700, 654); + this.Controls.Add(this.btnCheckIn); + this.Controls.Add(this.pictureBox2); + this.Controls.Add(this.label2); + this.Controls.Add(this.swSecurity); + this.Controls.Add(this.txtPassword); + this.Controls.Add(this.label3); + this.Controls.Add(this.txtAccount); + this.Controls.Add(this.label1); + this.Controls.Add(this.pictureBox1); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.IsForbidAltF4 = true; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "FrmAdminEnter"; + this.ShowIcon = true; + this.Style = Sunny.UI.UIStyle.Custom; + this.Text = "超级管理员安全系统"; + this.Load += new System.EventHandler(this.FrmAdminEnter_Load); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.PictureBox pictureBox1; + private Sunny.UI.UITextBox txtAccount; + private System.Windows.Forms.Label label1; + private Sunny.UI.UITextBox txtPassword; + private System.Windows.Forms.Label label3; + private Sunny.UI.UISwitch swSecurity; + private System.Windows.Forms.Label label2; + private Sunny.UI.UIToolTip uiToolTip1; + private System.Windows.Forms.PictureBox pictureBox2; + private Sunny.UI.UIButton btnCheckIn; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppInterface/FrmAdminEnter.cs b/SYS.FormUI/AppInterface/FrmAdminEnter.cs new file mode 100644 index 0000000000000000000000000000000000000000..6b6424c0186af170f342ae52428964cfe69bacd2 --- /dev/null +++ b/SYS.FormUI/AppInterface/FrmAdminEnter.cs @@ -0,0 +1,86 @@ +using System; +using System.Windows.Forms; +using SYS.Core; +using Sunny.UI; +using System.Text.RegularExpressions; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class FrmAdminEnter : UIForm + { + public FrmAdminEnter() + { + InitializeComponent(); + } + + private void btnCheckIn_Click(object sender, EventArgs e) + { + string account = txtAccount.Text.Trim();//获取超管账号 + string pass = txtPassword.Text.Trim();//获取超管密码 + if (!CheckInputString(account, pass)) + { + UIMessageDialog.ShowErrorDialog(this, "错误提示", "账号或密码包含除字母数字外的字符,请检查!", UIStyle.Red); + return; + } + Admin a = new AdminService().SelectMangerByPass(account,pass); + if (a != null)//判断超管是否存在 + { + AdminInfo.Type = a.AdminType; + AdminInfo.Name = a.AdminName; + AdminInfo.Account = a.AdminAccount; + FrmBackgroundSystem fm = new FrmBackgroundSystem(); + fm.Show();//打开主窗体 + this.Hide();//隐藏登录窗体 + } + else + { + UIMessageDialog.ShowErrorDialog(this, "错误提示", "账号或密码有误,请检查!", UIStyle.Red); + return; + } + } + + + private void btnCancel_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void FrmAdminEnter_Load(object sender, EventArgs e) + { + txtAccount.Text = "admin"; + txtPassword.Text = "admin"; + } + + /// + /// 检查输入的字符是否包含非法字符 + /// + /// + /// + /// + public bool CheckInputString(string adminaccount,string adminpassword) + { + if (string.IsNullOrWhiteSpace(adminaccount)) + { + return false; + } + + if (string.IsNullOrWhiteSpace(adminpassword)) + { + return false; + } + + if (!string.IsNullOrWhiteSpace(adminaccount) && !string.IsNullOrWhiteSpace(adminpassword)) + { + string pattern = @"^[A-Za-z0-9]+$"; + Regex regex = new Regex(pattern); + if (!regex.IsMatch(adminaccount) || !regex.IsMatch(adminpassword)) + { + return false; + } + } + return true; + } + + } +} diff --git a/SYS.FormUI/AppInterface/FrmAdminEnter.resx b/SYS.FormUI/AppInterface/FrmAdminEnter.resx new file mode 100644 index 0000000000000000000000000000000000000000..f043a522c9e41d193c2709d23f70b8c0253a8f3c --- /dev/null +++ b/SYS.FormUI/AppInterface/FrmAdminEnter.resx @@ -0,0 +1,1783 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + 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 + LiIiIiIiIqK+qMrjVjiCK8nM4gslHgMXERERERERUV9U5WlRxsfGF0o8s/hCicfARURERERERNQ38S6K + NjDdSAnHwEVERERERETUNzFw2cB0IyUcAxcRERERERFR38TAZQPTjZRwDFxEREREREREfRMDlw1MN1LC + MXDtzWwiIiIiIiJKeWbv50gwcNnAdCMlHAPXXoxVvyjHziEiIiIiIqJUxsi1RwxcNjDdSAnHwEVERERE + RES9Umb0YwauPWHgsoHpRko4Bq49yJzlwYjX3DjuxYiXiYiIiIiIKJUc+2KbemzDyDfcGFPlwYmcshiP + gcsGphsp4Ri44kSHuI6e6cHhT7Vi8PQWDJnRggPudxEREREREVGKGHqfC4OmOzH8AReOerYNo2d5cNLb + Xr3UjNl7vf0UA5cNTDdSwjFwxYkGrlFvenDgQy1w5DbDkdeMtEIiIiIiIiJKCUXqfdpkJbcJ/Yqbccij + rXqQwinvMnDFYeCygelGSjgGrjgnzlWigeuBFqRlN8EhCtQvTyIiIiIiIrKfxK18JasJ/QqbcfAjLRgV + DVzq/ZzZe739FAOXDUw3UsIxcMWRuLU7cD3YgrScSOCSX6BERERERERkv0IlNnA92oJRsxi4TDBw2cB0 + IyUcA1ecXwWuh1qQltukh73qX6BERERERERkv+gUxRxjiuLBv2Pg2gMGLhuYbqSEY+CKw8BFRERERESU + 4hi4rGLgsoHpRko4Bq44DFxEREREREQpjoHLKgYuG5hupIRj4IrDwEVERERERJTiGLisYuCygelGSjgG + rjgMXERERERERCmOgcsqBi4bmG6khGPgisPARURERERElOIYuKxi4LKB6UZKOAauOAxcREREREREKY6B + yyoGLhuYbqSEY+CKw8BFRERERESU4hi4rGLgsoHpRko4Bq44DFxEREREREQpjoHLKgYuG5hupIRj4IrD + wEVERERERJTiGLisYuCygelGSjgGrjgMXERERERERCmOgcsqBi4bmG6khGPgisPARURERERElOIYuKxi + 4LKB6UZKOAauOAxcREREREREKY6ByyoGLhuYbqSEY+CKw8BFRERERESU4hi4rGLgsoHpRko4Bq44DFxE + REREREQpjoHLKgYuG5hupIRj4IrDwEVERERERJTiGLisYuCygelGSjgGrjgMXERERERERCmOgcsqBi4b + mG6khGPgisPARURERERElOIYuKxi4LKB6UZKOAauOAxcREREREREKY6ByyoGLhuYbqSEY+CKw8BFRERE + RESU4hi4rGLgsoHpRko4Bq44DFxEREREREQpjoHLKgYuG5hupIRj4IrDwEVERERERJTiGLisYuCygelG + SjgGrjgMXERERERERCmOgcsqBi4bmG6khGPgisPARURERERElOIYuKxi4LKB6UZKOAauOAxcRERERERE + KY6ByyoGLhuYbqSEY+CKw8BFRERERESU4hi4rGLgsoHpRko4Bq44DFxEREREREQpjoHLKgYuG5hupIRj + 4IrDwEVERERERJTiGLisYuCygelGSjgGrjgMXERERERERCmOgcsqBi4bmG6khGPgisPARURERERElOIY + uKxi4LKB6UZKOAauOAxcREREREREKY6ByyoGLhuYbqSEY+CKw8BFRERERESU4hi4rGLgsoHpRko4Bq44 + DFxEREREREQpjoHLKgYuG5hupIRj4IrDwEVERERERJTiGLisYuCygelGSjgGrjgMXERERERERCmOgcsq + Bi4bmG6khGPgisPARURERERElOIYuKxi4LKB6UZKOAauOAxcREREREREKY6ByyoGLhuYbqSEY+CKw8BF + RERERESU4hi4rGLgsoHpRko4Bq44DFxEREREREQpjoHLKgYuG5hupIRj4IrDwEVERERERJTiGLisYuCy + gelGSjgGrjgMXERERERERCmOgcsqBi4bmG6khGPgisPARURERERElOIYuKxi4LKB6UZKOAauOAxcRERk + K7lg70vMniMREVF3yb8xDFxWMHDZwHQjJRwDVxwGLiIiShq5MI+3t//Wm+zpeUS3ExERdQcDl1UMXDYw + 3UgJx8AVh4GLiIhMxY5Ksko+Ty6+C0zkR/59iacu1B3ZSlYvJ89Bnkv888tT5Lmb7ZNoADPbl2Zijw8R + Ee1f5N8BBi4rGLhsYLqREo6BKw4DFxHRfkoukvdE4kv+PuTtQ/zfL2hCmnqMl65kKP3V9+3N+ql9lq6e + Y7p6/PVzjAQus/0if86NPMaL/XuxYuNYPLPjTEREfQMDl1UMXDYw3UgJx8AVh4GLiGg/ER0BJBfH0UgS + TwKKjDgSMhopTlqEjFZKm9T4W9mNSFefm6G+V4a6+NaPkY8HljsxdKoLw6cZhqmPh6nHg+914YgHW3D0 + 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 + TkSuQmCC + + + + 17, 17 + + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAJDSURBVFhH7Zc/TxtBEMXdUYUiUpSWmoIqTSIh0SIhnx3JVZpUFEkFdDTQUPGncIcE2IeQi8g1 + EpWbJF06GsS34AsM7y1vzeL1nfdsEIrETxrJfjszN3s7Nz7X3vivqJ/bp6xj242uDWA3sDsZPw+aXftZ + z21J7s8HLrqMC/Rhlmh9xih8Nhod2x1JfomdfoO+ElqzY61Gbr9CX/jtK810IHF7mBDJm7l91lIh9Bkp + 5EpL1UAgz/lhJ9id5GQQt+XjYR3JaWDnhz5Y0tQMi8htR1I5ajhf+ZbkCNzqtSy3HzjnjbKjcb2hfEmN + CceHbsc5SooYbbYK/n1J4+Ez7BMW7Yq30vvAerAD3IVrfs+6diS3J7jGVAxnieQYDhLnWLCb1bbNYf0f + ffgoSq5lZ/ZF2rWkCKxf0oeDTFIMHFznT+r61om910dHdmGLjKNJimDB8hlIisEiR6pxsEhKAv6njMNF + fkuKYE4VcCMpBouc65UKCHvia9fqkiOCAu4kxXDROSUWAN91JWXTbkoeS2oBlY4Avn/l/11SIUEBpUeQ + 1IQeJUwqOKkJ4VT6GI4C3x4fvfqpvZNUCHwnP4YpgyikdWYfsPsFfS0keRAROE0cxR74/HFJe/ZR0liY + SwWUj2KS+mNEsHu+rBzr61gq/xgRJB6+iEiaGp8HhexJSgNBt0HwTC8kZROyFAb6JDzHlMZ0Dfd45rRb + LU0Hb12QjOZeSvkDtHph8zR+dmf99MKcD22lmQ015uu8loe82h+TN16OWu0eHcfWduBDinYAAAAASUVO + RK5CYII= + + + + + AAABAAEAICAAAAEAGABcAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAB8UlEQVRYR+2XPUgD + QRCFUwUkhX+IIAhBFMTCQlC00lKxUfuAhaCglUXAzsIIIgFRUEQshHRi6V8hCmKlEDCdTcogKAgRBAN3 + fhMnkCLJ7V4EEe/gMRN23pu3e7d3m1AouOpYAdd1x8BqHRL+qDRtdhwnBrLkLnEL9PlTs2DRKwxmafao + jXPkacn1d4rYayFZuRSRKYTnQRwkwA44Bs/aKEOeJO8SBfIFcAXedTyt9dvEFTAnxkHUyByFN6VZlUeE + zsFENRHGeoA0fa3El2fGyAAC1zqTafJR0A/ajcjfKxKRW0EcAZOyGmrIzoBpQ6862SmBgb+1AqVd4HVv + Tcetn4HAQLACv74CvDovdN+GTZ/0WnXoreurfdhID8KREozf/x4G9nRCxa+n54WBTTUw6FlsUIDeqepF + DMqLX7OYEuJGhBpFaHXIOQJcGmtR3K1L9mBMqlKI1r5OZtxKC5KcivKyI4gtVmQthreszQ/88OVWHKpA + ylZATk7K/SRGbfnFeohNCO2q0Bn5gJcQNa1gTTn3vpuXN0IwoYJ58sVqJhgbAjmtzZK3eRk2GpcznuwM + kFHxWzECOkWAOANOwAvjb8SNH2te7hDxRoTliF5QIwXyD90x8gflrmTKaGZ+i2goJ94lICvxBJJATs8N + fjX/L+8LhmH/b8WhH/UAAAAASUVORK5CYII= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppInterface/FrmLogin.Designer.cs b/SYS.FormUI/AppInterface/FrmLogin.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..0808df48a60209640187e21a252dd4f816874bef --- /dev/null +++ b/SYS.FormUI/AppInterface/FrmLogin.Designer.cs @@ -0,0 +1,176 @@ +namespace SYS.FormUI +{ + partial class FrmLogin + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows 窗体设计器生成的代码 + + /// + /// 设计器支持所需的方法 - 不要修改 + /// 使用代码编辑器修改此方法的内容。 + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmLogin)); + this.label2 = new System.Windows.Forms.Label(); + this.picMin = new System.Windows.Forms.PictureBox(); + this.picClose = new System.Windows.Forms.PictureBox(); + this.picLogin = new Sunny.UI.UIButton(); + this.txtWorkerId = new Sunny.UI.UITextBox(); + this.txtWorkerPwd = new Sunny.UI.UITextBox(); + ((System.ComponentModel.ISupportInitialize)(this.picMin)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.picClose)).BeginInit(); + this.SuspendLayout(); + // + // label2 + // + this.label2.AutoSize = true; + this.label2.BackColor = System.Drawing.Color.Transparent; + this.label2.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(397, 204); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(29, 20); + this.label2.TabIndex = 5; + this.label2.Text = " "; + // + // picMin + // + this.picMin.BackColor = System.Drawing.Color.Transparent; + this.picMin.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("picMin.BackgroundImage"))); + this.picMin.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.picMin.Location = new System.Drawing.Point(746, -1); + this.picMin.Name = "picMin"; + this.picMin.Size = new System.Drawing.Size(35, 35); + this.picMin.TabIndex = 6; + this.picMin.TabStop = false; + this.picMin.Click += new System.EventHandler(this.picMin_Click); + // + // picClose + // + this.picClose.BackColor = System.Drawing.Color.Transparent; + this.picClose.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("picClose.BackgroundImage"))); + this.picClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.picClose.Location = new System.Drawing.Point(787, -1); + this.picClose.Name = "picClose"; + this.picClose.Size = new System.Drawing.Size(35, 35); + this.picClose.TabIndex = 7; + this.picClose.TabStop = false; + this.picClose.Click += new System.EventHandler(this.picClose_Click); + // + // picLogin + // + this.picLogin.BackColor = System.Drawing.Color.Transparent; + this.picLogin.Cursor = System.Windows.Forms.Cursors.Hand; + this.picLogin.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.picLogin.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.picLogin.Font = new System.Drawing.Font("微软雅黑", 12F); + this.picLogin.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.picLogin.Location = new System.Drawing.Point(581, 313); + this.picLogin.MinimumSize = new System.Drawing.Size(1, 1); + this.picLogin.Name = "picLogin"; + this.picLogin.Radius = 30; + this.picLogin.RectHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.picLogin.Size = new System.Drawing.Size(184, 60); + this.picLogin.Style = Sunny.UI.UIStyle.LightBlue; + this.picLogin.TabIndex = 15; + this.picLogin.Text = "登 录"; + this.picLogin.Click += new System.EventHandler(this.picLogin_Click); + // + // txtWorkerId + // + this.txtWorkerId.BackColor = System.Drawing.Color.Transparent; + this.txtWorkerId.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper; + this.txtWorkerId.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtWorkerId.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.txtWorkerId.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtWorkerId.Location = new System.Drawing.Point(581, 164); + this.txtWorkerId.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtWorkerId.Maximum = 2147483647D; + this.txtWorkerId.Minimum = -2147483648D; + this.txtWorkerId.MinimumSize = new System.Drawing.Size(1, 1); + this.txtWorkerId.Name = "txtWorkerId"; + this.txtWorkerId.Padding = new System.Windows.Forms.Padding(5); + this.txtWorkerId.Radius = 20; + this.txtWorkerId.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.txtWorkerId.Size = new System.Drawing.Size(214, 35); + this.txtWorkerId.Style = Sunny.UI.UIStyle.Custom; + this.txtWorkerId.TabIndex = 16; + this.txtWorkerId.Text = "WK010"; + // + // txtWorkerPwd + // + this.txtWorkerPwd.BackColor = System.Drawing.Color.Transparent; + this.txtWorkerPwd.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtWorkerPwd.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.txtWorkerPwd.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtWorkerPwd.Location = new System.Drawing.Point(581, 227); + this.txtWorkerPwd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtWorkerPwd.Maximum = 2147483647D; + this.txtWorkerPwd.Minimum = -2147483648D; + this.txtWorkerPwd.MinimumSize = new System.Drawing.Size(1, 1); + this.txtWorkerPwd.Name = "txtWorkerPwd"; + this.txtWorkerPwd.Padding = new System.Windows.Forms.Padding(5); + this.txtWorkerPwd.PasswordChar = '*'; + this.txtWorkerPwd.Radius = 20; + this.txtWorkerPwd.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.txtWorkerPwd.Size = new System.Drawing.Size(214, 35); + this.txtWorkerPwd.Style = Sunny.UI.UIStyle.Custom; + this.txtWorkerPwd.TabIndex = 17; + this.txtWorkerPwd.Text = "admin"; + // + // FrmLogin + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage"))); + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.ClientSize = new System.Drawing.Size(822, 429); + this.Controls.Add(this.txtWorkerPwd); + this.Controls.Add(this.txtWorkerId); + this.Controls.Add(this.picLogin); + this.Controls.Add(this.picClose); + this.Controls.Add(this.picMin); + this.Controls.Add(this.label2); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Name = "FrmLogin"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "TS酒店管理系统"; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmLogin_FormClosing); + this.Load += new System.EventHandler(this.FrmLogin_Load); + this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.FrmLogin_MouseDown); + this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.FrmLogin_MouseMove); + ((System.ComponentModel.ISupportInitialize)(this.picMin)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.picClose)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.Label label2; + private System.Windows.Forms.PictureBox picMin; + private System.Windows.Forms.PictureBox picClose; + private Sunny.UI.UIButton picLogin; + private Sunny.UI.UITextBox txtWorkerId; + private Sunny.UI.UITextBox txtWorkerPwd; + } +} + diff --git a/SYS.FormUI/AppInterface/FrmLogin.cs b/SYS.FormUI/AppInterface/FrmLogin.cs new file mode 100644 index 0000000000000000000000000000000000000000..a9cfca72e7a75aa5ebc2d0260370c2ac6f0eb457 --- /dev/null +++ b/SYS.FormUI/AppInterface/FrmLogin.cs @@ -0,0 +1,223 @@ +using System; +using System.Drawing; +using System.Threading; +using System.Windows.Forms; +using SYS.Core; +using SYS.FormUI.Properties; +using System.Collections.Generic; +using Sunny.UI; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class FrmLogin : Form + { + //FrmStart f = null; + public FrmLogin(/*FrmStart frm*/) + { + InitializeComponent(); + //f = frm; + #region 防止背景闪屏方法 + this.DoubleBuffered = true;//设置本窗体 + SetStyle(ControlStyles.UserPaint, true); + SetStyle(ControlStyles.AllPaintingInWmPaint, true); // 禁止擦除背景. + SetStyle(ControlStyles.DoubleBuffer, true); // 双缓冲 + #endregion + } + + #region 记录鼠标和窗体坐标的方法 + private Point mouseOld;//鼠标旧坐标 + private Point formOld;//窗体旧坐标 + #endregion + + #region 调用淡出淡入效果函数 + [System.Runtime.InteropServices.DllImport("user32.dll")] + #endregion + + #region 窗体淡出淡入方法 + protected static extern bool AnimateWindow(IntPtr hWnd, int dwTime, int dwFlags); + + /**********************************************************************************************/ + //dwflag的取值如下 + public const Int32 AW_HOR_POSITIVE = 0x00000001; //从左到右显示 + public const Int32 AW_HOR_NEGATIVE = 0x00000002; //从右到左显示 + public const Int32 AW_VER_POSITIVE = 0x00000004; //从上到下显示 + public const Int32 AW_VER_NEGATIVE = 0x00000008; //从下到上显示 + + //若使用了AW_HIDE标志,则使窗口向内重叠,即收缩窗口;否则使窗口向外扩展,即展开窗口 + public const Int32 AW_CENTER = 0x00000010; + public const Int32 AW_HIDE = 0x00010000; //隐藏窗口,缺省则显示窗口 + public const Int32 AW_ACTIVATE = 0x00020000; //激活窗口。在使用了AW_HIDE标志后不能使用这个标志 + + //使用滑动类型。缺省则为滚动动画类型。当使用AW_CENTER标志时,这个标志就被忽略 + public const Int32 AW_SLIDE = 0x00040000; + public const Int32 AW_BLEND = 0x00080000; //透明度从高到低 + + #endregion + + #region 记录移动的窗体坐标 + private void FrmLogin_MouseDown(object sender, MouseEventArgs e) + { + formOld = this.Location; + mouseOld = MousePosition; + } + #endregion + + #region 记录窗体移动的坐标 + private void FrmLogin_MouseMove(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + Point mouseNew = MousePosition; + int moveX = mouseNew.X - mouseOld.X; + int moveY = mouseNew.Y - mouseOld.Y; + this.Location = new Point(formOld.X + moveX, formOld.Y + moveY); + } + } + #endregion + + #region 最小化窗体事件方法 + private void picMin_Click(object sender, EventArgs e) + { + this.WindowState = FormWindowState.Minimized; + + } + #endregion + + #region 关闭窗体事件方法 + private void picClose_Click(object sender, EventArgs e) + { + //f.Close(); + System.Windows.Forms.Application.Exit(); + } + #endregion + + #region 窗体打开时淡入效果 + private void FrmLogin_Load(object sender, EventArgs e) + { + //FrmTopSkyLogo frm = new FrmTopSkyLogo(); + //frm.ShowDialog(); + + CheckUpdate(); + txtWorkerId.Text = "WK010"; + txtWorkerPwd.Text = "admin"; + AnimateWindow(this.Handle, 800, AW_BLEND | AW_CENTER | AW_ACTIVATE); + //CheckUpdate(); + } + #endregion + + #region 判断版本号 + private void CheckUpdate() + { + var newversion = new ApplicationVersionUtil().CheckBaseVersion(); + + string version = System.Windows.Forms.Application.ProductVersion.ToString(); + if (newversion.base_version != version) + { + UIMessageDialog.ShowErrorDialog(this, "系统提醒", "旧版已停止使用,请到github或gitee仓库更新最新发行版!"); + System.Windows.Forms.Application.Exit(); + this.Visible = false; + //调用系统默认的浏览器 + System.Diagnostics.Process.Start("https://gitee.com/java-and-net/TopskyHotelManagerSystem/releases"); + } + else + { + UIMessageDialog.ShowSuccessDialog(this, "系统提醒", "当前已为最新版本,无需更新!"); + } + } + #endregion + + #region 窗体关闭时淡出效果 + private void FrmLogin_FormClosing(object sender, FormClosingEventArgs e) + { + AnimateWindow(this.Handle, 800, AW_CENTER | AW_BLEND | AW_HIDE); + } + #endregion + + #region 检验输入完整性 + /// + /// 检验输入完整性 + /// + /// + private bool CheckInput() + { + if (txtWorkerId.Text == "") + { + MessageBox.Show("请输入员工编号!", "输入提示"); + txtWorkerId.Focus(); + return false; + } + if (txtWorkerPwd.Text == "") + { + MessageBox.Show("请输入员工密码!", "输入提示"); + txtWorkerPwd.Focus(); + return false; + } + return true; + } + #endregion + + + + #region 登录图片点击事件 + private void picLogin_Click(object sender, EventArgs e) + { + //picLogin.BackgroundImage = Resources.Login_b; + try + { + if (CheckInput())//检验输入完整性 + { + string id = txtWorkerId.Text;//获取员工编号 + string pwd = txtWorkerPwd.Text;//获取员工密码 + Worker w = new WorkerService().SelectWorkerInfoByWorkerId(id); + if (w != null)//判断员工编号是否存在 + { + w = new WorkerService().SelectWorkerInfoByWorkerIdAndWorkerPwd(id, pwd); + if (w != null) //判断员工密码是否正确 + { + LoginInfo.WorkerNo = w.WorkerId; + LoginInfo.WorkerName = w.WorkerName; + LoginInfo.WorkerClub = w.WorkerClub; + LoginInfo.WorkerPosition = w.WorkerPosition; + + FrmMain frm = new FrmMain(this); + this.Hide();//隐藏登录窗体 + frm.Show();//打开主窗体 + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = txtWorkerId.Text + "于" + DateTime.Now + "登入了系统!"; + o.OperationAccount = txtWorkerId.Text; + o.datains_usr = LoginInfo.WorkerNo; + o.datains_date = DateTime.Now; + #endregion + new OperationlogService().InsertOperationLog(o); + } + else + { + MessageBox.Show("密码错误!", "来自小T提示"); + txtWorkerPwd.Focus();//聚焦 + } + } + else + { + MessageBox.Show("该员工编号不存在!", "来自小T提示"); + txtWorkerId.Focus();//聚焦 + } + } + } + catch(Exception ex) + { + Console.WriteLine(ex); + MessageBox.Show("请连接好数据库!", "温馨提示"); + } + } + #endregion + + + private void picLogin_Click_1(object sender, EventArgs e) + { + + } + } +} diff --git a/SYS.FormUI/AppInterface/FrmLogin.resx b/SYS.FormUI/AppInterface/FrmLogin.resx new file mode 100644 index 0000000000000000000000000000000000000000..5fa9562647679a69886969b0fe7d32d655757eca --- /dev/null +++ b/SYS.FormUI/AppInterface/FrmLogin.resx @@ -0,0 +1,7963 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + 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 + + + + True + + + + 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 + AAAAAAAAFklFQyBodHRwOi8vd3d3LmllYy5jaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAABkZXNjAAAAAAAAAC5JRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBz + cGFjZSAtIHNSR0IAAAAAAAAAAAAAAC5JRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFj + ZSAtIHNSR0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAsUmVmZXJlbmNlIFZpZXdpbmcg + Q29uZGl0aW9uIGluIElFQzYxOTY2LTIuMQAAAAAAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRp + dGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHZpZXcAAAAAABOk/gAU + Xy4AEM8UAAPtzAAEEwsAA1yeAAAAAVhZWiAAAAAAAEwJVgBQAAAAVx/nbWVhcwAAAAAAAAABAAAAAAAA + AAAAAAAAAAAAAAAAAo8AAAACc2lnIAAAAABDUlQgY3VydgAAAAAAAAQAAAAABQAKAA8AFAAZAB4AIwAo + AC0AMgA3ADsAQABFAEoATwBUAFkAXgBjAGgAbQByAHcAfACBAIYAiwCQAJUAmgCfAKQAqQCuALIAtwC8 + AMEAxgDLANAA1QDbAOAA5QDrAPAA9gD7AQEBBwENARMBGQEfASUBKwEyATgBPgFFAUwBUgFZAWABZwFu + AXUBfAGDAYsBkgGaAaEBqQGxAbkBwQHJAdEB2QHhAekB8gH6AgMCDAIUAh0CJgIvAjgCQQJLAlQCXQJn + AnECegKEAo4CmAKiAqwCtgLBAssC1QLgAusC9QMAAwsDFgMhAy0DOANDA08DWgNmA3IDfgOKA5YDogOu + A7oDxwPTA+AD7AP5BAYEEwQgBC0EOwRIBFUEYwRxBH4EjASaBKgEtgTEBNME4QTwBP4FDQUcBSsFOgVJ + BVgFZwV3BYYFlgWmBbUFxQXVBeUF9gYGBhYGJwY3BkgGWQZqBnsGjAadBq8GwAbRBuMG9QcHBxkHKwc9 + B08HYQd0B4YHmQesB78H0gflB/gICwgfCDIIRghaCG4IggiWCKoIvgjSCOcI+wkQCSUJOglPCWQJeQmP + CaQJugnPCeUJ+woRCicKPQpUCmoKgQqYCq4KxQrcCvMLCwsiCzkLUQtpC4ALmAuwC8gL4Qv5DBIMKgxD + DFwMdQyODKcMwAzZDPMNDQ0mDUANWg10DY4NqQ3DDd4N+A4TDi4OSQ5kDn8Omw62DtIO7g8JDyUPQQ9e + D3oPlg+zD88P7BAJECYQQxBhEH4QmxC5ENcQ9RETETERTxFtEYwRqhHJEegSBxImEkUSZBKEEqMSwxLj + EwMTIxNDE2MTgxOkE8UT5RQGFCcUSRRqFIsUrRTOFPAVEhU0FVYVeBWbFb0V4BYDFiYWSRZsFo8WshbW + FvoXHRdBF2UXiReuF9IX9xgbGEAYZRiKGK8Y1Rj6GSAZRRlrGZEZtxndGgQaKhpRGncanhrFGuwbFBs7 + G2MbihuyG9ocAhwqHFIcexyjHMwc9R0eHUcdcB2ZHcMd7B4WHkAeah6UHr4e6R8THz4faR+UH78f6iAV + IEEgbCCYIMQg8CEcIUghdSGhIc4h+yInIlUigiKvIt0jCiM4I2YjlCPCI/AkHyRNJHwkqyTaJQklOCVo + JZclxyX3JicmVyaHJrcm6CcYJ0kneierJ9woDSg/KHEooijUKQYpOClrKZ0p0CoCKjUqaCqbKs8rAis2 + K2krnSvRLAUsOSxuLKIs1y0MLUEtdi2rLeEuFi5MLoIuty7uLyQvWi+RL8cv/jA1MGwwpDDbMRIxSjGC + Mbox8jIqMmMymzLUMw0zRjN/M7gz8TQrNGU0njTYNRM1TTWHNcI1/TY3NnI2rjbpNyQ3YDecN9c4FDhQ + OIw4yDkFOUI5fzm8Ofk6Njp0OrI67zstO2s7qjvoPCc8ZTykPOM9Ij1hPaE94D4gPmA+oD7gPyE/YT+i + P+JAI0BkQKZA50EpQWpBrEHuQjBCckK1QvdDOkN9Q8BEA0RHRIpEzkUSRVVFmkXeRiJGZ0arRvBHNUd7 + R8BIBUhLSJFI10kdSWNJqUnwSjdKfUrESwxLU0uaS+JMKkxyTLpNAk1KTZNN3E4lTm5Ot08AT0lPk0/d + UCdQcVC7UQZRUFGbUeZSMVJ8UsdTE1NfU6pT9lRCVI9U21UoVXVVwlYPVlxWqVb3V0RXklfgWC9YfVjL + WRpZaVm4WgdaVlqmWvVbRVuVW+VcNVyGXNZdJ114XcleGl5sXr1fD19hX7NgBWBXYKpg/GFPYaJh9WJJ + Ypxi8GNDY5dj62RAZJRk6WU9ZZJl52Y9ZpJm6Gc9Z5Nn6Wg/aJZo7GlDaZpp8WpIap9q92tPa6dr/2xX + bK9tCG1gbbluEm5rbsRvHm94b9FwK3CGcOBxOnGVcfByS3KmcwFzXXO4dBR0cHTMdSh1hXXhdj52m3b4 + d1Z3s3gReG54zHkqeYl553pGeqV7BHtje8J8IXyBfOF9QX2hfgF+Yn7CfyN/hH/lgEeAqIEKgWuBzYIw + gpKC9INXg7qEHYSAhOOFR4Wrhg6GcobXhzuHn4gEiGmIzokziZmJ/opkisqLMIuWi/yMY4zKjTGNmI3/ + jmaOzo82j56QBpBukNaRP5GokhGSepLjk02TtpQglIqU9JVflcmWNJaflwqXdZfgmEyYuJkkmZCZ/Jpo + mtWbQpuvnByciZz3nWSd0p5Anq6fHZ+Ln/qgaaDYoUehtqImopajBqN2o+akVqTHpTilqaYapoum/adu + p+CoUqjEqTepqaocqo+rAqt1q+msXKzQrUStuK4trqGvFq+LsACwdbDqsWCx1rJLssKzOLOutCW0nLUT + tYq2AbZ5tvC3aLfguFm40blKucK6O7q1uy67p7whvJu9Fb2Pvgq+hL7/v3q/9cBwwOzBZ8Hjwl/C28NY + w9TEUcTOxUvFyMZGxsPHQce/yD3IvMk6ybnKOMq3yzbLtsw1zLXNNc21zjbOts83z7jQOdC60TzRvtI/ + 0sHTRNPG1EnUy9VO1dHWVdbY11zX4Nhk2OjZbNnx2nba+9uA3AXcit0Q3ZbeHN6i3ynfr+A24L3hROHM + 4lPi2+Nj4+vkc+T85YTmDeaW5x/nqegy6LzpRunQ6lvq5etw6/vshu0R7ZzuKO6070DvzPBY8OXxcvH/ + 8ozzGfOn9DT0wvVQ9d72bfb794r4Gfio+Tj5x/pX+uf7d/wH/Jj9Kf26/kv+3P9t////2wBDAAEBAQEB + AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAQEBAQEBAgICAgICAgICAgICAgIDAwMDAwMDAwMDAwMDAwP/ + 2wBDAQEBAQEBAQIBAQIDAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD + AwMDAwMDAwP/wAARCALQBVYDAREAAhEBAxEB/8QAHwAAAAYCAwEAAAAAAAAAAAAABwgGBQQJAwoCAQAL + /8QAtRAAAgEDBAEDAwIDAwMCBgl1AQIDBBEFEgYhBxMiAAgxFEEyIxUJUUIWYSQzF1JxgRhikSVDobHw + JjRyChnB0TUn4VM2gvGSokRUc0VGN0djKFVWVxqywtLi8mSDdJOEZaOzw9PjKThm83UqOTpISUpYWVpn + aGlqdnd4eXqFhoeIiYqUlZaXmJmapKWmp6ipqrS1tre4ubrExcbHyMnK1NXW19jZ2uTl5ufo6er09fb3 + +Pn6/8QAHwEAAAYDAQEBAAAAAAAAAAAABgUEAwcCCAEJAAoL/8QAtREAAgEDAgQEAwUEBAQGBgVtAQID + EQQhEgUxBgAiE0FRBzJhFHEIQoEjkRVSoWIWMwmxJMHRQ3LwF+GCNCWSUxhjRPGisiY1GVQ2RWQnCnOD + k0Z0wtLi8lVldVY3hIWjs8PT4/MpGpSktMTU5PSVpbXF1eX1KEdXZjh2hpamtsbW5vZnd4eXp7fH1+f3 + SFhoeIiYqLjI2Oj4OUlZaXmJmam5ydnp+So6SlpqeoqaqrrK2ur6/90ABACr/9oADAMBAAIRAxEAPwDX + bnFQlXWKKmewlqBcTSnUfKfUTfkk8k++9iIhRTQcB5fLrn2SanPU2mNV5B/lM/8Am0vaaTj+n5920J6D + 9nTE5NRnp4LVNv8AgTPYDm00h0gfX6H3tUTUKgfs6T6npWvXpXaJI2jqqlmItpMko4P9Oferox0wB+wd + P27NXj1F/iFTCCn3E3q54lk/21wfaBJIxig/YOjZk8XNcdZkyhnqYwaipJS2v92Sx/2N/dw8bMFAGfkO + k88TxwvJXgK9KAwSvGGiqZ7seR5pWIH1+oPt82SSdwA/Z0Hkvlpq6Tuajq4DHJ95Oo4GnyyH9P8AsfaD + cLeO2g8IgevD16Mdtdp7vWD8uoUGWno3QR1M7Rn6nyyfX/Xv7YsWjW3YgDHy6ONxt5JF8IefShp9wuzR + I8812awPlf8A1uefZvbTQle8D9g6C11s8uomp6VlM89VJrSpl8cAH+7Xubi55v7FNrNE1sqgCv2Doolt + 5IIzGScdOatUKdXnm445lfi/Nzz7cEcdahR+wdEsmtZK1PXTSVL2PnnsP+br/wC8c+7eFF/AP2Dr2p/4 + j1lRqnSo+4nvb/jrJ/r+0zxx6j2j9g6trf1P7es8JqNZ/wAon+guTM4B9vQLGspNBw9B1vWfU/t6kWqf + +O8v/U6T/ivtbrT+EfsHWtXzP+r8+soqKgAD7ibgWv5JPp/t/aUxx1rpH7B03retanrNFWTxByZ5uR/x + 0f8AA/Fj7bkjjoO0fs6srt6nqMat5CWaafUTYgTSXA/xIP19teEn8A/Z1fWfU/t67/cufFPPc2/3bKV0 + sLt+fae6jQLwH7B1e3ZmPE9TvLPAqMs8xhHK/uyct/aJufZRKiasAfs6MyzlRpJ6zwk1wZzPMG0m/wC6 + /JH9OfdNCeg/Z1SklKZ6hVNLIGQx1M1xEx/zsnNuT+faS4RK8B+zpXZs5bJ6YYJ8qKhy883hRtNzK/0/ + 2/sqWaK2lAIGels+oqDU8OppFRVycVEwOv8ASJXt/W/J9jGy3OAw+EAKtjgOg/OsjHJPUlZaqImMzzXH + 6f3ZB/sLk+zWCKMYCj9nSKssfEnrn9zUfieYf9PX/wCK+15jjx2j9g6q8pZqgn9vXvuqr/lZn/6nSf8A + FfftEf8AAP2Dr2pvU9dNPVSW/wApqLqb/wCef/iT71oT+AfsHVdX9I/6vz6iVBqdI/yicW/5uuRz/wAh + e/aE/gH7B17V/SP+r8+pKvUosLeecgA/7tf8j/g3v2hP4B+wde1f0j/q/Pr01VVeMeOon8usf7tk5T+1 + +fftCfwD9g69q/pH/V+fXJnqGmVlqKjSYxz5mANhz79oT+AfsHXtX9I/6vz6b3+5Dv8A5RPyDb91/r/S + /v2hP4B+wde1f0j/AKvz67H3BVf35z6R9JX+oN/e9Cfwj9g6rqb166K1Jupmn54/zsnv2hP4R+wde1N6 + 9eZ6sKIjUz+hl/3dJbk/W9/ftEf8I/YOt6j/ABH/AFfn1zJqtbj7io+v/HZ/6f6/vWhP4B+wdb1f0j/q + /PqBqqrkGoqPqf8Ad0v0/wCSh73oj/gH7B1bU3qeuSzVKD/Pzc/0kcjj/G/tp446/CP2da1P6nr0pnZU + b7mexP08sv4Ptrw1/hH7B1rW/qf9X59cWepSYMKmcrp+gkl/p+effvDX+EfsHXtb+p/1fn1k+5qP+O83 + /U2Qf8T7djjjA+EfsHW9bep6itrMhY1M+ote3kkt/h+fdysdDVR+zqoZq8epF6n/AJWJ/wDqdJ/0d7T+ + HH/CP2dOam9T11ao/wCO03/U1/8Ao73rQv8ACP2da8ST+I/z6hS/dWe089+f92uPz734UX8A/YOt6m9T + 1Gb7nUP8pm/QP93Pbn/C/v3hRfwD9g69qb1PXpBVeIf5RUfX/jq1/wCp/Pv3hRfwD9g69qb1PXT1FW6A + LUT3soH70n+wFwfevBj/AIR+wdOwM/iDPXv8o8wtUzBtFn/em+pF7jn3fw4/4R+wdL9Z9T/q/PqCZahX + Kfc1HBN/3pb8n+t/ftCfwj9g69rPUu8//K1N/wBT5P8Ao737Qn8I/YOvaz1gmNTcf5XMf6Hzy/7HgH37 + RH/CP2Dr2s+p/b1gmE8yp/lM37dv93Tfj/ar+/aE/hH7B17WeuFS1Wnj0zVBLJoP+UPwDxzz7rpj9B+z + qus+vXcMlbAmiSpm1Fi3+el+jHj8+7eHH/CP2Dq2s+p/1fn1HKzkk/cT8kn/AD8v/R3v2hP4R+wde1nr + hIa1beOplC/27zSfT/Yn37w4z8Sj9g6vG7Z6i1EtSBeOrkKqQdXml/Vp55v734Uf8I/YOndZ64xVVXPL + JJ9zUAhbXMslhxxfn37wo/4R+wde1nrm81WEi/dnkBv9JpBbnm1j794Uf8I/YOvaz1DjeqM5meqnVVbQ + UMr3Ck8839+8OP8AhH7OvBmqDXrxkqo52L1kvFxD++9tB+pPPvWhP4R+wdK/qPn/AIOupZqpyl6mcR2t + IfO55/HvwjQ8VH7Ok8shZqg9RXqKg1UUa1M7iwUHzSAABLfS/vZjj/hH7B1RGbWMnrPK1SAP8onHP/Ha + T+n+ufevDT+EfsHS3U3r1Hkap8QP3M36v+O0n9bf19+8NP4R+wde1N69Y6g1Q0y/cT2lVVFpn/1vpf37 + w0/hH7B17U3r1HRqzyKBU1Gmx12nf/YA8+/eGn8I/YOvam9eutc6geCSoZg3qbzyjj/Wv794afwj9g69 + qb16ymqqbEfcz3PA/dk+p/2PtqVE0fCP2Dp2NyGqT10qVSt+5V1H27gNcTyH9z+z+fabw4/4R+zp3xxx + r1HJqhUgfcznji08n0/w59+8OP8AhH7B1vWTmvWWTzuUVqicjVfmeT+z6hbn228SkqKDj6dUkY6ePQH9 + rVdVQY+mV6ydqbIVFWz06zS3ppXUKkha9/V/Q+wH7iyRQ2AwP2dSXyHreWnRsv5anUnXGEx3cnzb78yV + dLsX434hqXp/ZEtRU0h7M7hyNOy4qOCq4LQ0DlZJDG2nize8UW5fvObtzjs7BKgsfEf/AH2i5J/PgOpe + 5n5hiksY7UkamUKacdPkDQ/nw6rp+XPbO8u4ac763VkZZ8/kM/UZDKPE5gihFdUNJT00aobMI1IS4/pf + 2W/eDuoYORLHYIqA2rn7afPpv2t202W63c34XVaV8/5D8uikYhMllI/t6erqxHFLH5J/uJj4yxuCovz/ + AI+8TdsgaTZGI/i/y9TnfuvgDHRtuhOi9z/IbtXZnTO0dwU2Ey24ZKyqyG4M1l1x+PxWMxqJJkcm9RVM + E1JGSyR3uxFh7lblu1CKGIJNBj506CW5c03MMDTFaKlBw4+nV0sfy7+L38pzJY3bfwzyNV233w+DyeG7 + B+RuSnniiTJSx/b1WDpNq1MiwtGr6lWdfqBf3Ko5JtNxih3XmhhHHBQiCoyONS3z6j59wvea7aVYk0CP + gaEaq+nrTqjL5L/Jjsn5Fb4qt/bzyj1OWyU9ZJVyQBqZZPO5kZliiYgcn2FfcP3ZW5t4ti2eMCCGiADN + F+3oRck8vjbzIZDqYitfKvmOixz5bJSxxK9VVBYBa4qJwBf6X59xLd7t9QNK9DLqE1TlalhFT1FfMzfh + JKhlJ/xdD7Dsizyy+IAaDpyKMMdR6UtBtXcleA89ZV0sYXUQamYsq2tqCk+zOLZp7xPFUGi56OowvhlQ + R6dKSkwYotIqspWFSeHNRKouP688ezeDarhmoAei27towDnPXcogpZiIq6rdpjZUjqZZWb/FVVrn/b+z + CXl7c7s+FboTX0B6bW5sbXbDDMQGqT+XUmOPcrDwQ4fd1XPUkzU6U2Myk006Ri5aGJBdksLlhwPbMnJG + 7WqmWRGx8j/gp0X2lxt71UOPyIP+Xpd4jpTvncuNwedwfXXYFRg9xVpx+3cnHgtwyQ5es16JIqF0iKys + jelhGTb8+34eRb67XWxAA45yPmR5D7ety7xt9m2WFR0ZXO/y7vmztDYbb93X1TmdvbWTI4jFJWZOpraO + ebJ7hkEONokhqlVi8jfUWGn2KIfb3ld9lRNxmf6kVLqis1PTgOHz6Drc68pLuTxXjVkp+3oUJf5R3z/x + WzNx9k5jY+IwOztm4Ofce4MjV70o0mpcQlP5pDDSuxaSQqRaMC5PHtAvttyzJaaLSeWOUntPhuf8KgdJ + z7g8sQ3oO2kGdsAA1/w06W/WH8kT+YZ3Hs2fsDb239pU+24cJBnYays7Dx1JJNj6im/iEUj08hJUtCQx + BIsTb3qL282+0ZUvdwlQv8IELGvy4dJ5fdG0S6VbYGRgaNVQB/hJND9nSf6y/kofzFO8sDHurrzZ23az + AM9ZFS1k2/aGnaZ8XUvSTlo3LEDyRtoJAuOR7Nbj292zb2KX+4yJqHb+ixrXh+HozX3MsLp9BqX/ABCg + FP59F4H8vL5l1e4anDYzZDZfIf32l6zP8LzbVySbvpADUUdI8F/KiXu0iqQPz7CO6e1iC8LrdtKlNVGQ + pSvA/D/l6Mouatk8IvfkBCSM4z5dBplfhv8ALbFblz+3m6o3vX5TaGZbbe4Vw2PzWVpqfLg6Xp2npImG + r8W/3j2/Z+zktwFAkCq+QS1MeoqOHRdd8/ck2SAyyKBT1zjoA89s3s3b2SymJzm0N7Y2vwdXNR5CnmxO + ZRqGsUeqlqNaAoQPVZgDb8eye/5L5psCYPodEaEhZVYvrA/FQDoTW+68v30KXEEylJFDDIGD+fSKmrMh + CHU11fCR+3LBO88c0bj6642II/2PsLvsd6GP1pmuKcE8Jl0H1rTPS6O32mZgTLjiCM16bVkr2fWa6s8b + E/7unsQBYsOfZJenf7Oq2Q8If08Y/OnT99FBBEGtTr6lY3LZPF1Dymsq7MDCGaaYjnkA8+zizjgg0vK2 + SATn8R49F1wkkkY0Cnn05DceZhkDU2RqdM5tKvnlAb/Dk8exPY82DZyfpQG10r+XTEO2x7k/hz4K8OrB + fhF89OwPiTm94LQ0S7m2b2RtbLbP3htepqTGK6Gvpmipq2OuLhozTu3lAU+r6H3NHJ3uNFdtBBdINKyK + wNOBrk8fTqJvc/2oteYUV2cxyxFWRwTTtNdNADx9egy+RfWlMlc/ZvUmTym5+qNzzLVUeWpzVSVeHrJo + xV5WmytHFdqeOGpaWGOSWwfTwfZ57v8AtHBzRdpzbsp1qgD9pr5VPAHoU8ob9JtER2u8IWdFCkHGqgCi + lfM+nQdbBylZUY6eA1lT/k8sclzPPeRb2D2J/Psy9o+aZ+YbK4sbtNLba4hGKVFOinmm38K7juf9/An+ + fS5eWt8j/wCVVP6i3/AmU21f7H3N17CHjDU/l0G1+IdRWnq/Kb1VVe1+Jnv/AL37Kfp/kOl2evLLWkv/ + AJXUi68gVMo5/wBYn2nmgGrh17poqJK1XB+7rNN7f5+b88/g+2WgFMDqw7j03Ma0mpP3lUUQBh/lMv1/ + 1Q59lN1FUEU6d6iTT1zxqxrKkcW/4ETfX8/n2ljQKlCOlcPwdX7f8J9ug8pvH5Db/wDkJlJcgMD09tKb + bOHlTJtFDW7x7BhkopKSqofU08MGLiq5W1MqrLJA4DtYoC+d71YrKOxWmqVtRx+FeGfmSP59Fe9T6YRA + Pxmv5DrcC9xf0Geve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 17r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/d + e697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3X + uve/de697917r3v3Xuve/de697917r3v3Xuv/9DXrrqcrX1Sr6ozUTXbni0p49974/7JfsHXPo8epMNO + 4kjH+0Hj/W5HPu3TEvl04CBwF8Z1O5sw/p70TQV6ZPA9cquOoFGilPV6ze/q449lV1MdPTlv/l6TskdQ + ysXXQEAKNfkt+PYcnu2V+49CGFPESo6xRtUU4DNGPI/J/rf20Nw0HxCeGetz2xeB09R0pcflFktIGsyj + QyfTSRwePYj2zeDOR0HRsxAA6Ys3XSTq0QGsA3U/0I5+vum/z1bUOBA6Mdss1guwn59M1LJIXRZ11huA + w5C/j1H2S29wRZOehJdIqyrIenaCAwzLVMNUa3AH+P549u2l46AfPopu5I1bHQgYSaPxqHkIZrm1uLn8 + cexZt94zaVrjoK3qK8rOo49LCBRIfF9YiL6+fqObH2MoxWHxOgveRhQdPU6GmYhgVuFNl0/kf7D3vou6 + 6aBla4FyvqA/x/p7TP8AGerDrk0QbSFGoW8ktvqrf0496U0Nevdcwbj0oygcc/1H1968U/xdex1waMgy + Of7XP+35PtSO4A9MdYSUA9Z4P+8+6zcB06nWJBE0sujlQDb/AFx9efafq3UqF4xMYGYAuL3P40jTf2zd + jFenLX4h/q8+s0lTTK0kbOCEAsPxf9R9lEnxdCKzCyIa+XTZDXhDN4zZVI02P9OOfbfSloU0H7D09wys + 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 + elqa1vsc5SGbUI3p3k8l0te3PHvIT2i9xbmxs22PmA6/GqBXNKkjzPp0AeaeXmnaO/hOh7Xux+MChpgZ + /PpvzPW9d1D2RuXryvyFJlpMbDTSwZCgnjqaSqpJYRUQPDNH6W9LDVb6Hj3IdpsG38tbwRt4AF9SU08+ + ia/3b99WUF8BQKWUj0I49ZwCGsf1XJP+sWuPcreFrthIfToqXj1wl8Yc8H6fi3+w+nsq+l/1f6h0vII4 + 9N08LM4KlgSpBA/1/bEsIV6de6jTKBTsx55+l+efbRjBFB1YfF03IqFZBISoKg/jn/A+yu7hDDV0503N + BqJ0NdL2HNhx/h7JZAFcgdLov7Mdb9P8rb47P8bfhh1TtfJ0klJu7eOPPZu84pqiGrkp81vSJMjT45Zo + VUKtLRfawmIagsgkszFixg/mO++v3aWRTVEOhfsXFfzNT9lOghuU/j3bEcFwPy6sO9kfSHr3v3Xuve/d + e697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3X + uve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917 + r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6 + 97917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv + e/de697917r/0aAqmExVNVEeS1RLpvb8Sn6++9sf9mv2D/B1z7JAJp1KjhOpPTzawP8Ar/i/u/Wjpbj0 + 4wQMHe1rj8nmzW9+6bYIEJoOHWOeGZkHqY883HqAJ5t7QXUKkcOkdtLqNR1DegHiIYN+oEWH09kctooB + JWvQmsLyOOIrJk16g1FA7BSVH0FjYX/23smliXhTHn0se+gdCigVPUVaI0xLRpfX9dN/9h7dT9L+y7ek + YJHDqNPSvIXQLpeUWTn6H6X93kZ5syMT0/CUXvbDevWWLHNCnhYeprXNuR/Xj3WJNJ0A9p8unJ5taHOe + pqRgqIGANmAtz/yUPajQijhTouIDYbPTtRR/at61JXSGBF7cjUeR7PrAhI0I49F1yiAmg4dL6icP4YkI + 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 + e79nZ+OleizuLwc4kiw80pUyLC6jS2lr+1HJXuVHabC7cyuLu5eRmRn+JQx8ug9zB7cWu4W7fuOP6V1B + o0da1HVk24dm/A/+ZLv3q7ZXR+B218R+wsjhq1t2aDFi9p1uejo9OPx38Sr1CmOSQAsw5F/cswbXy5zr + ywZbxBI0NXUj+0Nfw0GTT06hiy3/ANwvbAN+8FfcLeZ9OakxgHiKHgfn1UJ338X+w/j3v7eW1N2Yxspi + toZqfb43tg1nyGzMrVxJ5QcVnk/amuhBOluD9be4G529odx2YncttDLGwDr6gEV4Vrjzx1kRyXzZs/Oc + EZknFtI6k+HUBgRihH29FuhrZYalJAFEnkbSUZlIVTxYj8j8ewLb82LyrYxndI9c1fjPHj0Ib7ZR4DVl + DgVxx6NVtzcWO3FgtqU8cElRuXCLWw7iy0oZnqcdKxNMrzG9ynAAJ95Z8j7+nONja30ZqYQFr9ueof3m + w+luJDCnhxyZAHmw4np9ngf0up9NxpYHkgcAgD3PABhtND+Y6CzySeKuk+eesAiYTsXa40m1zqv/AIey + dUk8sdGfiP6nqP8AQm34Jt7TzatXd0ohJKZ6bqhHJIudLEenj1D/AGHtOzNpOenummSB7yLf8cXvwB/S + /tOVU/EK9W1Ho7f8t/45TfJf5fdSdf1Acbaw+Yj7A3p46g00zbU2ZUw5Sup4ZlilAaolFPTDUFuJCA6v + p9gjm++TbbOaePDMNK/6ZsfyGem7idoLdmB+X5nr6BSqqKqIqoiKFRFAVVVRZVVRwABwAPcBdBjrl791 + 7r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de + 697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xu + ve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r//0qGpadqmsqp1UXSpmGk35/cI+nvven9mv2DrnMXOo58+uTRzqFcgKFYf + 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 + 5qZmn6uqvjh2xiMbvjq7dObo5ptw5lRUbj2kauQR12YwjBCfL4voWb3Pewe5+ycy2v0G8OPEC6DXj/g6 + i/fPaiZLluYNsc2kqgyBVNA2kYGT5niOgz+Z3xw6/wCkd301V07vCLsPrHM4jFZbD7jinjqZKOprolln + w2YaI6Y6qJmOqP6hbe4s93/bO2vtiXerTEakn/Vno09vuY9/3m3Me9xeHKrFSAKAgYrw6Lp1nmmgyhhh + bxR1ckcNRGNI182KuD+P6e0Ps1zZabW0eywsD3CtPXh0MOcbG2ezF1CPhU1PRjKxY0cpqZWBsqngD+gH + vOO6fxrOOQeYHUH2T+NM3ovTY8Mi+pibmw9o/Bbo0r1heBvGWAK2Nr/09lV6uiYA+nSuDKdR2F7auSP6 + /wBfaN+HTw6gVcXovGLMTzb8j/H211vra0/4T+/HZ9rdTdj/ACRzMZ/iHaGXGydojy6kg2rsyslXM1Xh + MSlZKnJs8TMJHUrTLbSdYMI+5G4eLui7cpxENTf6ZgKD8lz+fRRuUoJWEeWT9vWw97jfos697917r3v3 + Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69791 + 7r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de + 697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xu + ve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r//Tojmkf7irVVKH7max+n1lN/fe6P8As1+wf4OubLV1H7epkNLLPYMx8drupIvf + 8WHt9FByeqdco6ZjJ49JCxsShFyQSPbgVRRh17j2ngenKlhcB3I1MOFYsC1vyPbd3NIEr08ttCmV6y6Z + GkC/ixuCf6H/AG/svEhMZJ416MbaZ4UIj6ztSKdOoD66f9b+h9kF5raTT5HpTHdS6hXrB9oYiXY+i6hf + 0/n6+0/0qevSrx2+X8+pIx5nBIAdVc6T+Txq9rreHTH0knnbXnrtaYxxBNChXJDX03JHHNvb/hBsMMdM + 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 + qnXvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6 + 91737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuv + de9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3 + Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691 + 737r3Xvfuvde9+691737r3Xvfuvdf//Uo+q0jSqnVU5MszyWAuCZW+l/x773p/ZJ9g65sN8bfb1zhgl1 + LKSRYWQL+Qf6+3o/Pqp6kCNl1OLauT/sPbnW1+IdSqYSWI0j1C5t/wAR7S3f9mOlXUx4CGBVbEryCR+f + ZLLNok0N0oi4dSDAXjFxwwsbWBF/6e3ViV+78+rkmh64/aWVU0s6ggnVY/T629+MakZ6b8TpxgQxnxxo + dIOpublXY/19uxwkrVeHSeSYa+7j10aYM7rpNk5Fx+T/AF9vx27agjdNyXKrGSOPWalo1LMxZ/TYgaz/ + AMR7W/TL69I/qT/q/wCL6c1gN9QIF/wf979vRppSijpJJNqck9ZpaFGjYMyf6o2P9B7syVFGHVRcGNtY + PTEtHCZHi8ZBD8W/STf6HV7JrqBdVOja1vqrq6Yq7HhZXW0Y9bDTbkfkew/LbDxTT16OVuAyhm6T6QPB + UmUDUVbTY8i39Tq90CeB3jrTSBxpHTzNTwVSBUdEnYA2P+9+ze1mNKjj031HTEMCGURnx8ObHm3AJ9rP + DY93r1QyMD9nSf3PE7uBE0ZjZArkA8WHOn2UbshVY6+p6MtsYuzg+g6i4rWsYhDIRYjUeBx/U+0lr/lH + W7n4j1NnoprKWI1g/uab25Nh7e+nl9Okvjx8euUdCIVEwVmZiAbiw/wvb2pt4GAOsdNTTFqaenpKct4S + YzpZPUPzb6n6e1PhLpp0x4uKdO9JFH5EjVGVFuwUn6n/ABPt62gGrotuZ8V6ny6IjIACZHGvi9uObC/s + 6RNC06LUcvUnrLQxu+nSvjMjXa3HP159uqKsB6nrTmiFvl0oZkjmh8Lrd1AF7cWHNx73c24U6W6paz/i + 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 + v/bG9MPKiR3J+IUHUazp9BzBcRycWqB+fUWodlkBkQFG4b/Af1FvYqu8R9eAoKdYwNcV0T0+TQo+l10X + U+yluPT0fDpueN1lVQOCRf6H/Yf8j90PA9PR/GOrof5Hfx6n7O+U+Q7by9AJtp9D4CTL0s8pnQPv3cyy + YjbUMICGKURUoyNVIGcFHWBtJ1Blij3H3QWm0LYoe+5ah/0i5b9p0gfn1a/k0Q6Bxb/B1uL+4I6JOve/ + de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3 + Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69791 + 7r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de + 697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xu + ve/de697917r3v3Xuve/de697917r//VpN8BWsrJZReZpJkVTyLCQ/j33vT+zX7B1zXPxH7epdPHYNrH + 1IsB+Ofp7ej8+tHrmdSsFZfSzaYzxzf8+3OtdTBEKeyEXfUv+HA/r7pJGJRpPT/jydTxGWCkjSSPpcC9 + v9f2WT7XG8gkBNR0/DKWUk9TEhuEuAARf/itre1UcIA0Dz6u7nQfs6yeBV1Bbm/HIJ4/r7e+ni9Oiqa5 + kj4dSFpTTGMINXkOptXIN+felh0ii8OkhupJO5uPWRYjIxZR6Tw17/j88+3I4zrHTUk7BCT1Lih8V9MQ + bVa+ofS39be1vhr0jFw/n1liRmYgr9LXt7ejiQoK9aMrHPXOch4mUrosFYPzyQbAe/PCgXHVlPinQ3n1 + gWC8YMiqpPKsosdI+gPtJJaRyfF0pQGMUU9Qa3GxeMSqFaVmvYjUfpz7Kp9uiViy9H0NxH4ahjmnSZrK + EpqIX6kk8cC/B49kt3ACmn0PT8cyO+lTnpJVaTwsXUHUi2BHHpA59ln1MtsKR9KaitOp+KyL6milN1t6 + r39iGLcB4Sk8aDpC0c2okcOslbDjXVxICWlvosf0kG/su3Wf6mNB/CT0Y7W7xyP4nmB0kq6kMJ0xa04X + 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 + ecmlTevrgKFjkdOLjW8odRyun6f8k8H3Jsv6ooekUc5frFIzrFpRAFhFx6fyDz9fZfNEqSaR0sDECnTf + JyFlI9SjVb8F/re3tlkGk9XSQhget2n+UT8fX6J+Guya/L0C0W8u45pe2NygtUNMlJuCFItm0Uq1Ko8T + R4aKikmg02jnkmALEl2xh5+3Ndx5ilSI1jt/0l+1fj/42WofMAdJruYzS1Pljq0D2C+kvXvfuvde9+69 + 1737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvd + e9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X + vfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6917 + 37r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9 + +691737r3Xvfuvde9+691//WphmWQ1M8jpcmont/h+4fqPfe9P7JPsHXNhvjb7eucaM9zbTb/Yfm3t6P + z6qes8UbFrMNWkXXi9rc/j251rpzQeWMl1tKNRv+bL+PfuvdTI4ZJV1LHcBb88f7b21Jx6qbjwTp6kBW + LqgW909Jv9W/pf3VPiHWvq/EOn16zJHpcqRd+NS88D8Hj2/0nuuA6lPKzyqpjACBRq/1/bsURkXUOkKc + Os6RNqjKppVybi31Fr30+3BDQaj16T4D1I8Z/wBSP949udIOvITGxOng2/p/T8e34v7MdW68bONLxkqd + XAP0P4Pvb/CevVIyOveNtIRBdl50nmyfk+2Otaz6/wA+uYpYzaTlvQQFvxdh9be6TQVXV6jqhnuK9vDp + pq6PyoTGoZuTb+yB/h/yL2QXNtpXHRltE0v1R8XhTpJ1GNEwlIWxTi1v8fYeu7dgajoR+MPXptbF6byi + MghfpYj2iCyAUHR4hTw1OOHUiiw8lawIjN1P5sLf48+19hAZZGDjgOkN9ci3RWXzPU6r286x6vCHYG30 + H49mP0S+nRZ+8x69I7I4qSin8selSrAn8hVHPPsI3VvPFcBs8ehDaywbhAX40HS7x1X97RwqArIqW1Aa + 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 + hYEYkH7epdd0j21jI3nyXXe8MfAJoqRHqtuZtFkrajmnpELUwuzngAe0Ev3eebtZcMtG4fqp/n6uL/bq + ZkH7em/JdM9p46jlr8v17vDH0NOuqorajbWchggsLlpXemAF/wDEj2V7x7G8y8u2f7zvypjqFxIrGp+Q + z06l/Y6tMcgqfn0jKrZubpii1ODztPKsX3Exlw+ThWKmPMczeSFbKRzq+n+PsAXnJ24276CjVOeBp+2l + Oje3lgeneDXpM+KfyeFW0qXCB9X6bi1+PYP3FriGQWwqCpoft6uUjDnhjp2pVraENNBM7DUYGaRZLE/6 + nS45B9iWzs912yxN9GpJmGkYPTEnhORrpjqXJQ1VfJG6JJUzzAKkNPG7vqB5RYowWY/0AHsltG397onc + EbRniDTpXHdWscen/UOoOQ2zXUdFPkZYXSkhnFM0jA8VZXWYHQC6kfkNb2Hb2wlJY0pk/wCHqkVwrvRT + 0nIoX0n1W+nF+T/gPaG3tmiLBxx6XlyQM9d6RyNJNr3Nlv8A6/tVo+XVajrpJ2hFxzyPr/r392hu2gz0 + z0udr5N6Oq84mEUcp0VEZ+rx6fxb+ns0S5ubuZXiOFweqSadPdw6N9sJJ322YpPXA07Twsg0iRS2pfp7 + 6DexGsbJJr/gP+DqCeeGiW6HrXpTzXYv6SLW+v8AxHuWhwH2dBaDgP8AV5dNpnZIHGgsW4+t/qOOfae6 + +MfYOjDoxXw76Hn+S/yX6j6ZME7YfdW5oajdk9MJw1LsvAQvnt2StUQMhhL0NNNBDLqGmaSMKdTKpDfM + m6rsmx3G48GRez5ux0p9vcQSPQHrRbSNXp19AejpKbH0lLQUUEdNR0VPBSUlNCgjhp6amiEMEESLwqoi + hVA+gHvEZmZ2LMak5P29IiamvUn3rr3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737 + r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6 + 91737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuv + de9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3 + 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 + R8WkjH20PQn7W6N27uHove/a9Z2DBR7z2/n6PEbf6xgxc9fk91Uk7hK7NxVNPfxRQAlmuv0H1A9x9awe + LM8d8TblQaAjBPl5V/n08FZyIoBq+fp0WeSIRSOj/qjYgra1mBsRb/D2Qz28iVB9T0omBjbQvd8+jC/G + 3D9Z7g3XuDCdnVjUUFZtXLf3SqVDsv8Ae1YCcTC0a/q1yWFvY89v7eG73I7NMwBnIKsfwn06DvMd++3b + edwWMuE+IDyHmejA9eUeRx+HqMLloZIa/EzPS1izRtE6VXLqpicAgMliOPfQH2xs22a3ewB1mlCR1BnN + LJuEiX0T6Y3IKg+Y6U/jHJYfqHHPI/r7k/w/n0WJJo6bpoVUaePUdV/9549syW2ttVelySeItadbJn8h + T4+NS0Ha/wAls3Q05OQeDq3YVQ6QSVCU9I6ZrfFbG92dFkkONpk/ST45rgqVPuAvdvdx4sGxRE9v6sn2 + ntQfl3H8x1SU+XWx57hbpnr3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv + e/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3 + v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697 + 917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/ + de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r/9CouqotVVU8j/PVB+g/ + Dnj33bj+AfYOuc44n7eo6wgxGy2uxtzxYfm/tdb8D0104xxgMr6eNJH09v8ADq3xY6coYCdRs3II/wBb + /Ye/dN+DH6dT4ogEAsBYc+/dWVQooOsvjDHU6glLaP0n/e/d4/jHXm+E9TpKdigYpYt6l/PP49vdIusr + UwlCsLgABSADbUOC3tXD8HSaX4+u0gKSRyKp9ClbgWvz+q59vr8XTLfCephZQxIT/OACT6n6e3emOuzT + hjeO6xlhpB1ED02J9+6Lp/7Q9cvGtn0ryim5H5/1vbkfxdM9Yoo2mDFbDSber2q631jniC3BFzdQT9f9 + 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 + Pyj7M3b2dX7nyO4s5SVuNzWRhxWPpcpkIqfFjGVZgpKeGjim0F4kRQgCgk/Tn30jg9/tr5r5Y5Z5Q32B + IEhVV8SgBJUUqTxNadRnvHKVvc6l0A1PoP8AN1cz0Vv35k0eF238xPkvnJcT0d0Ph6veXWe1d/yasj2F + umCi/wBxNCu3dwMZXhlNj5gpFvp7l3feceUN35al2y72+Or9viwgIdIFAWZKZp6mvURWnJ/LE/ibdYTl + bl2KtpOFzmlOP59NPV/zz+K/8wbt+nj+d/Su2aOlpdr5ynx+awSUuMTFVWaq2nTIpDRohkanUhVDLfj2 + CLrYNpvNktbPZrsTSzU0RyEN4QAypJLcRgnP59AfceSeZfaW6beNhu5JobuSkgqx4GoPlQfZ0CuR/lyb + i2/Sd3/JP4Sb0wO+OtNmtuvbdNtXcNdRUOUp9pZPBlcnm4MTXeqWSFHYxAJqZgCD7iz3K9i7OaaGO1Ux + XDxhwqCqawalSyrx/wBVOpN5b9+jYGGz31Sjy1Uy041wopX1x1QPn9l57buSyFJufCZTCV41TinzGOqs + ZLN5m1rLDHWohKuCGUgWIPHvHvd/bu+gtHmKEFKg49Py6ya2DfNuu4fEZ1kDAEEEHj6+nXHYkn8G3nty + pZFeaOtino2LWENTG+uGVh+dJA4PuM+V5Lna+bUMlRpOPyPSXekjuthulHmafl0fil3Hkd25DN7qy00E + mRzsiCvigjjiWOfHp9tFIqx8AsoBNvfSD2V3WLezcsxqVQ/yHWPnNNpJYWVqq4XUP2dZG0yppQaSg1c/ + 1H459yx0XdRKPHV2dymPw+KpZKvJ5SvpMXj6SPR5KvIV1QtJSU8ZkKi7yMqC7AfkkDn3SWRIY2llNFQE + k/IZPS62+Drf1+K/SWO+Ovx86r6ex9PDBLtDa1FDm3heGUVe6ckWy+6q1qmGOES+XIT1LLKY1LLpuB9P + eFPMG6vve83G5ua+K5K/JBhBTNKKBjptjU16MD7J+tde9+691737r3Xvfuvde9+691737r3Xvfuvde9+ + 691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfu + vde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r + 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 + viXB8lPkTurdO3+nd3w4rLRYCvz+5Tms4+GwMmCwVH5MgchPLIIFYwrZFces8exnyx94f6Dcv3LvWplZ + guV1U1Y4nqOd09q+Wb3R48Y1Rg6MUoePED16N7mO9OgP5gm5Ns9a/JSixHVG7uvdnZbbsfce36Wkkqd5 + 7k29RNi8ZDlKWFBFHEPFGEl51Wv+fcu3FjyrzFaTWGz/ABS5UMAtGb4iD9ueo8n27nXkK5S9t5PGhdqP + GCTRMEfnTGK9Ur9r9Tbj6j3emLzZhVJZKqr21k4JhJDlMTT1zQU9csi8B5FAfQP6+8OfdX2w3z263eK7 + 3OMMLlGkj8M6+wHiaAUPy6n7lzmWw5q2v/ddU6TplDChDkcKHyHr0NvVFbDVPWUwqWndKeKqYn8SOulr + +5W+6xur313eOGoNJGlsH9h6DvuLawQbfDA1NaEHHQt1UJhiDqfq1jYc6T/re8teoticSnSvVnv8oPoF + e4vlrt7dVfHr210vRt2HlEWSaA1GVQvj9q05IheORPvWSWWnaVC6RtbWgkX3HPujvY2rll7RP7S7Phr8 + lOXPHHaKA0ND+XS5apHpPW5N7xV6r1737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69 + 1737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvd + e9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X + vfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6917 + 37r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X//Sqzqo + dNRUPb0CeXVxzp1m59914nXwl+wf4Oud7DuPWYQpKqmG5i/s34ufoeD7rLNpI09eWMOc9SoVfVHEqFit + rm2rj63v7YFwajq/gL5dPAQA8KHLDTb/AHs+1usdNU6l0MdPE7S6mJYGykcE/T37WOm3Qk1HTgkAHkY8 + mQkr/tIP9NXvavkU6baNtJB6kPjykanUTI9rXt9P6j2o8Z+k/wBPF69TGgURRKBqYAHm1wP7XsxtpC0P + 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 + n8C6U2fx7bSzRmwzyRioSGtEcbGJyhDWYg2PtND7Y83K7RNJbSqy4ImSn5VYH9nS079t8yAwuo/PoPc7 + hMnt/wCwx2e+/pK8RNK2IyEZpqnGPqMXjqYJiHQsACNYv7KZ+U05fmDbnBNIW/3wniZ+0Hy6VQXUFwCx + INMYz0lZBUK37bRujBmssisdP+pUf19lS3O5+336W3wm8S4OqpGoqGzQ8aEcCPLpUdvhlXXGR0I/WOw9 + x9n7qxmxtuRUrZ/MxVc9Ka6XwUyQ0EBqZRLL/ZOlTb2v2OynfmeyumkLG+Y6k4+H58PLoovYmskMpPb6 + cKnqzT+VzkdubF+QuewO+YqSuweSxGW29XbWqZ5I8XvHcEwagxuFys8frShefiaVTwpJ9m3udt42DfoJ + rL4mdCafb0H5bl5ZY3aukEfs6rz7MkmwXaHYdFDTUlDHQbz3HSyYrF1MkmNoYVy8rR0WOqVIZ4oQRGjX + 5AHseQ+4F1tU6OGrgV/YP8HQivoNsvIwsgBPEE/6vLoYOqd39f8AY+Xyu1e9MpW1FMNsy4rrnJeJZXwu + dMdsfAz86Y2cqpZj7mXkHnHYfcfnqz2Hm0qUNuwQtwHH16A24bW3Lx+s2Je1u6UDz/L/AA9cNp9c7t6h + 7Kymwd746oxWaGNhyq00yuGqMVWR/cY+tp9QBZHjIYMBb2E+R+Sty5b98tysbE0sUqwphStTTol5nvE3 + nbFvoDVR2n5MBkdDJUsksAXk3b08e8rTk9R5Y/2nW3d/Jz6CHUfxYpt95Fb7i7vyibydtc2iDa1FT/w3 + a1IlPPFEY2K/c1LsAwk8qlXaMR2xa91d6G58ymzj+CzHh/a5NXPE/IUxSnAGvRoxr1bR7jPqvXvfuvde + 9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xv + fuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69173 + 7r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+ + 691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfu + vde9+691737r3Xvfuvde9+691737r3Xvfuvdf//TrDqFcyVCMjrrqJB6hxp8hF/fcSMv4a48h1zxkidW + OodTqeBYho03WwCW/J/1z7ZmWXBHSqzQOGb06mRU8sEgnUgxPw4Lcrf0/Q+0wk0sAD0rkSJQV8+nqlpk + kkRwR4+fV/Un6e13ifLota1nXiOnOnoU9Hp/JA/2/Hv3ifLpyCCQgkjpwko3jUkrwBqBt+Pr7tHLRwen + Ht30Go6zmmldIHWMkBebgX44sNPsxUu/w56RLbl/hHWRqcs+kKTYc/W/0/1PtbDI0cemuem5rZ1FGHXF + aYl5Wt6RYEj/AB9rrcv4gby6D9zAytUDrr7QWueHt6S35P8AQezde/4c9ImdUy3DrHoWSBk+st7FTb/W + +v8AvHuqo6y1cdIpQXcyrlT1FMKgoDb/AIrf2YxsNNPPpDMRoZPPrBJGhIII44Nv6/7D290j64TU6ERj + 6ElQCeSD78qseHXuuEkaKoh9LMv1Yi/+sOfftJPaePVJNWk6ePUMU7mJgAGBYlfp73o+XTFJf9VOpAjC + qoIOsADn6XA/HtWkb6eHSsMKCvWOWOSQaY20WILfjUOOPae5jfQKjrf1HgZBpXpsyNGJZPLp5EQhZh+F + b6+yKe2nYnt6r9d/S6ZZsHriMRb0xi4BJ/IufZHMjFsDoS20hWjH06ZYcHTRN5CutlkuBz/W5vf2kFtI + xJ09G37xjgjOk8elDTwJNVJAYLKWMg9PAVV/V7uLWWo7egte3120wKVIqK/ZXrnU6qdJo6dQxY2DED6X + 59m0MRi+IU6euLmNo6IepVFDwkbsHkazEDnQPrb2e2zRsulDWnRNM6hgWPTq0Si6i2pR9Pxf2IbUII+k + zyIVOk9c2S5XWLALbn+o/si/tzpF1x0wiQazYEXHAte/vYUnh17qVI0YRrMC31A920N6dN+NFXTXPUNW + UXVhcOLX59P+Pv3hv6db1r69eaCFG8aWYAXva/1HH19uqCFz1cOlOvaI7HnTwf6X/wBbj3brTspjx1jV + I9Cjji9hcf1/x976TdcRS3bUB6Sb35vb/Ye9dLEB0DruWJClgV5P+H/Ee/dePaKnruOJVQk3C3/px/vP + v3Wta+vUddLswXkA2J/w9+69qT/UeuKxhQdK8lz9P9T/AF9+6pKwKinXZ4Ok/X+nvfSfrq6sdNib/wCw + 966V6kAr14eFZBqP0BF7j37r2tfX+fXQSLSSCdJ1H8+/de1r6/z6gvGnjLpY2PA/P+PPv3VdaevWLQro + yEEs1tIH5559+6ZlqZFK9cVXxxi4ICix4sL/ANPful0ciaTny65GOFo9R/W34t+D7Y8N/TpPUeo6jLFG + IpQQLv8ApH9f9j794b+nXh3Co6zIsIRIyRqAta/5/wAfdkVganpxMOCeoc0Sq2q4A/4r7c6V+Inr1g0o + GCaLki9yfrf/AB9+694ievXNoXAJtYf4n3V/h694ievWLTc2HJ/w9s9Oak9euiRYj8gG9xx9OPe5EMaC + V/hPTBvrZZPCLZHWCGPUGZgQmkjng+2FmjY0B6VsQsXjt8Hr1kmEKxLq/sggKBZvrp90+qgrSuemzNGF + 1E46hzwLoSwJbTccWOm/09qm2u9Ki4oNDZH2dOLJGVDVweowQsCWRgoseRY3P09p4o2WQhyMenTEl1bq + Mt1y8SH/ABH+3H+9+3CyrxPTqMsgqmR1waOONU/J1Hjk/q4HtGY3JJA6osiM5UHI6xyU6+Mx3DOg1qWH + +q+g9Pvfhv6dPgacnz6wxUpaIMz6Tqaw44sbg+/eG/p16o6wmnQlkvpkJvM1gA/5Gn+vv3hv6deqOuD0 + yqQFOokE/wC2/wBj794b+nXqjqNJBHEoKrdmIv8A0v8AT6n37w39OvVHXMxJGzO0ZKlUUWsdLW+vv3hv + 6deqOo01PGBpD3Zrkfm3HurKVND1vrMkCiEXuulfVf8ANuD7117rBKsLKDb6cnkcf6/v3XuuISMAXI4H + P09sOjFqjrXWRoFkKuPTb8Xvf23pb+HqyYcE9YZKa5UWNzccKf8AiPe6P6dLfET16jywqUAW+pb3H15/ + w9+FfPqwIIqOuAN/wR/rj37r3WOVFkU/kj6W9+691FMcemIA8qRfn6Af63v3XupbpE4shBIIN73/ADb3 + 7pdZNGsjGU0Gk9N2Q8iUtZFGo1y0k6RNew88qGOP/eSPaORHLVp59Ut5EW5rwHSa+Y2+sHF070T1Ds+l + rMbTbH2xJkd6QVEZgOR3hmZC1dWxIOHVlIs9z7iYbLeWL313vKhfFclD/wAL8h1I3tvJ/WC9kluq+FA1 + AT5U8+qpcvMIsc9K8CRUMFXGZWHE9bLIbLSxg/VieAP6+4c3O6LbgREf00qesnLbTJEIYO5I816dvkL8 + bu1+haDpXfPbm25tpYzuLb53Tsvb9dBJSZ9dsQSAQZPK0MpJTzA6oTYahzb3irz5eWd/zP8AVRNWOtNX + lUCpyPTof7BJHcKbe0YO6mhoa9Ne0+8Mptzam/NqYDD4yfH9j4aHbeVydctqzG4rUfupMeQP1ycBuR9P + Yfvd3V9JjfK9Gd6knjA0NP8AL0gNhyS0tflKGSS4jZPGicr+1HoUr/iQOfcp+yG9Xa7vdRltIbT0Euep + Vj22CCNQzSVr8unaqrYqXcVcrFtP2MUrqD6mdvqp/wAfcsbyLSTmf6h5cpRuPmOiu12FbrZIi/a6kEj5 + dJ3IvU19ZFUwDwRy03jaNvTIUUmyhT7jDmLe7i75ke9K9nCp/Z0fQxxxyUj4dMlS1NjpYQtbpj8BM9J5 + AryuWJjBS/8AX2GvpP39ulbhCp4KT8JH29LJYyyeIgwOPRgtnfE75F9ibTg3rszo3sGr2QmSo8dPvRtu + VTbbXJV8lqWCXJXCWYn8X9iyXaNv2ci0n0tIVJEYoWYDjipNPXora7jhYSO40DjSuB+zq2vb38jHsLb/ + AEtuDvL5KfITo7qfG0uzqnPYjYUG9IYN+VVdDGJKPGVeHnYFWmB/TpJP9fe9mls90uPorHZZZCCKyeEQ + gXzzU9Fe4bvaU/xCRZGpwwf5evS5+PWxf5G/Su2MPufvjffcvc3Z8FNHPlNnx4qmyWxoapYvI9PDLApY + rey8/j2N9u5U5u3UN+5Y7exsQSpLnTIHH4gD0Sz7nuqUWVCregAAP206TPT381H4a/GzOb4HXvwc6m7D + +/3RWZDatdvvEVQmxuMExOOgiEaHSIxpYA/m/tTuPLMN1Im07xvckNsKCTwmGo04keterNt97dwB7hVI + fjU5p6dFq7S/nD9zZLt3tTtDrjrLrjrWTtvBY3bddh9uQAUWDxGLbVHRYz7hBpV/q3F/8fcfcwXHInK9 + 1Gu3JJd+EMyOO5qHicGp6OrLluGS2EcjFacAOkR2F/OL+c/Zud673XVdu5fama6pxrY/ZFRgHok/gccs + Ip6o0ymGwMqKA97+77XzLyzcWjT29sqR3Bq6sKFiPXp08t28YKajjhXoPe1f5p/zx7yxFJhe0/k92HuT + E4mtpcxj8ZU1dE1PBl6F9dDXoIoVPkiIBUn2Yyb7y7tNo03L9rFBcNQFhxp58fXpuXl22daSkyAEEAnH + 8ukRW/zA/mHntt5PbGX+SPYuTxGWpPDkcbVZGHwVcbfVZFVBcgfT2ut+filuAViDgYOKg/s6ak5Z29pv + FRABWtKmn2celVg/5gvyqx20ZNmRd774j29X4z+DVtF95EI6nHMmg0cyaL6GHpYX+ns/t/c3b4rOMT2U + ckijL0yT61p0GZ+TQ96/h1VCeAOPy/4vqR1N/ME+VPT9IaHZXe+9sDiIqh44MXQVsK0sCVDEThVZDYC9 + x/ifbEXuLs1/K8VzZxCqkgsKZ9OHRhccmRPCohOlhQY8/nx6S+K/mKfLvr3sw722X8gd8YHK43cL7lga + krKcRnMVo01dfaSMjXIpIc29xLvXPM1zfyRXqRvbt26T8OkcBw4dH21cp2cNqscigOPx1Nf8NOjefH7+ + dd83end27l3dg+481lX3fnRnd1Y3Iy0UkGUzLt68hUL4GJdx6WI/HseW3MPtLe2UNrf2WoKoFApKr66e + g9d8mMkry2xNST+f2/LoxHT/APPU7p2T252d2Dvfrbrrthu0clDltyrvKFJRNWxwLSmJRDAfQsSqq2A+ + nsQIntbvVp+6rFJbcIBpaNcoP8g6JL7Zdz222W4FWcsaqeBFMZrx6F3p3+ZR/L07Y7n7N3R8t/hh1n/C + ewcouVirNq4aeqr8FFFSJTmjoY9AAQsha1h9fZ4+wWv7uhsuT9zCSQpSsxA1nNWf5/mOia7vOa9uj8dI + wyMaFQeHp0qdhfEH+SZ3Md09x53uzdXUGUrcxuDcGyOqozSUOCixFFCz4nF1sEw1oZpAoKra4PsONyTv + e2ziPl+2h3WBh+tI5JdZGPfpAqCB5V6Ktk5/5+SeS23G2YAE6WVajT5Z9Oqn1/l0d312O358hej98bAy + m2tsUOe3xNQ7c3AJ9xYLb8mYfGYrCSUS6rVdVHp0wWBIPuP4+RjsPNH7xc/qSsQsdK6CBWg7sfbnqV9v + 52sr+AQ7qpiYAfFjVXiRjok2Q6b+Uuzd5Y+nrut+xNh70y0BzuFORwdfichWQTxffCajFWqlhIp1gj+v + 09hnfeTeb+cN/wDFtrYvEODCjCo8hRj5/wA+hJFvHLSW/jtcKyjHH/DwPQQ7wwO6dtZQxbopKqDNZHVV + 18dahSrhq2lJnNYpvZ2a7H/X9kHMnLV/y/cLDzAn0zGgo2OjWyt7bdIRNtriRB5jpHio+2tU6tFRHVRP + EFYrqMTB1lBH+pYX9h/e7k7DaR8w7E9buEgIB5rWtejKGztZdvmDn9VcAfI4PVgtN2PL2/jNh7yz2Wye + 4e4MMV25uOvrQGpE2JR0ngxiGZAP3I7BVFvp7y+5D5nfd+V9u3ewXxdymZVufMqp4k9Q3e2K7Z9bbvUQ + EFkB/i9ejF/H/qat7r7t6s6pxkMMz763ljMVN9ya1KdMRFIa/Nyzy48NMoSihnYulrWuXQAsJd5i3WDZ + dsub6U/2SMRSla8FpXFdRAz5+vDoAWLrrx1vm7ewOM2tgMJtnCwGlw+3sRjsHiqYu0hgx2Ko0oaKJpH5 + YrHGoLE3J5PPvCueaS5ne4mNXkYsT6kmp/n0adPHtrr3Xvfuvde9+691737r3Xvfuvde9+691737r3Xv + fuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69173 + 7r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+ + 691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfu + vde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r + 3Xvfuvdf/9Sub7VpnkLkcTT6lvz/AJw++38dwPDWp8h1gBd8T9nXKCCZpCqKLKeC34Uf097luA3VduPa + 9fXp/iokambWALkCwFrn6C3sjuJqNjo2Fo7jxAOs9PRGMrF420/UWHH+sffv3l8+rRRSzGi9KqkoVKoX + Urpb6H+h+hPtXb30boWY9L4trnZCxHT9UYmoXxyGxiAD6eCSvt1ryHSSDw63NtU4hZqHh1np8bOVDBV0 + vwEb0/7G3t+03NV8+iI2dxF3Up1gNEn3Lait9Njp/Bvci/s4W6Exqueiu8aUPRusE9LDECiG9zzo/Ps3 + guNK6eg5cLLJJp8j03TQA6V1LqHK/X/Wtb2bW0wQ6h0V3UJ+HqHPTaA8iqdZCqbDkc/X2YltRr0mC6Lc + L1HlgGtf8Rzx9OPd4/i6KZvjbqEaYAMOQdQYfg2/rYe1PSfrqoij1RsCNQKkW9qI/gHWx1xWCJEkknVg + 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 + SJ4vNJZJZRqeW6uxIbnj+vuN7bfN4LajOQTxyej7ctvJUKPhx+zpup8gYKvzoJ0PmDxlamoW8mvXc2fn + nn2aDm212YpNvuueNmoigsaMM1pXpy4sXkshrpkUPavClPTo7my/lN2dgcVT4Sl3Vm6fGjHfavRrlK7w + yRgfVlMvH+sOPeSXIn3gIttt0Tb7NCFH40FeHzB6hHffb2C5mMkda1rg46OPtv8AmufMfbGIwOyKXvLd + tJg6BaWakoRLFPDUU9AQ1HTSLPqukdgAP9v7I5Pdr265y3No952GGCTWwMgUgkk0JwBx6Lh7O3g/UtJG + g1ZqHOD65/2Oj8bm/wCFBPyU7W2XhOqe3sTtztPrzFVOIzeexebpcYjbmg22y1C4av8At4Qwhk0aZCpv + b2s3nlf7v/Ltul5HYlri/R1SRS5EDEfHprpqDkEjq6cnc4cvFY7jcWvhMRpBNfDA8qjgPt6VOwfkt/KI + +eG9ti7Z+QXxv2r8ZITXbkye6t29ZUctbUZbKVuO8GKxUnmQKYITZ1YD9XHsst9h5muNpaPkTcUv3oqx + wzlFUD8RJArqp5V49GzX297MyNeFlj8yKk8cdZ8R/Ic+J/cfdNXvv42/Jht7/HnZHZ+14twbOzONAzm4 + dsQVNDmtx4ZMjjqmOSk+7ppKmipnNMxDI7axpYpFvMfKr2Miw8+2Ji3JkLqIj+kDVgur1yATQ4BHE06E + VtzxIIXjiXW9CA5oGUkdpp5/5c+nW03HHHDHHFEiRRRIscUcahI440XSiIi8AAAAAfQeyLoGE1yeufvf + Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69791 + 7r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de + 697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6xTTQ00MtRUS + xU9PTxSTTzzSLFDDDEpeWWWVyFVVUEsxNgOT70SAKnAHXgCTQdcaapp6ynp6yjqIaqkqoYqmlqqaVJ6e + pp50EsFRTzxEq6OpDI6kgggg29+BDAMpqDwPXiCpocEdZ/e+vde9+691737r3Xvfuvde9+691737r3Xv + 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 + zuebvdDlmO3tbzeYVtiMJGWBUeg9M9A+x3XeLiNUS2YH5jox1Juf+VLjem8jm6X4V5CKfH7DWkp5K/B0 + UjCuXH+P+JTnVzIGIdn/AK+yp/cfnSfc49tbflAkNa6zUL6fb8+hEIt4MQcQmv2dOHQPXX8uLbHx82Nk + exPgjvGjOcoMpmINz57BUMsmfiqp3qYZaaqVzqiKkCIH6D2o3LnLnSx3FbS35iUq9KEu1R9p60E3jGqF + vnjqsTq7Y38pXemU7L3JvHojtSao/wBmApMXT4nAPTQQ0W2mk00lBjoi4CRiUfvr+Rf2U8wbkNvvgkN3 + FJNOgJdjWsh4sfkenRe7uhEZgOPl5dG8+HX8v7+U38sOx+/6fbnSvc9fX4/eFVSbZ25SVdKI8HtSgplF + TMacyqFfyhySPx7TXnP25ctSQfRPbOzoFl1rUa/VfQdOJa7hvKPHOGhEQ1AjFfl0hJv5MP8AKm7F7n7o + 2xUdk736pO09y0WLx2H3BnBBJjKNoI/u5K2NJfyxYJYn2eXvvRLsu3W8+57fHK7r+oyL21PCn5U6Ltqs + d1ubtrWKcqqnFQD/ADIr0AmA/wCE7Pxk7h7H7gxXU3zY68xW3NlZSDD7Qos3mZjnMlDJTiSauqJVmXVF + r9I9mW48+SbfYWs8u1tIbtPEJQAiMHyb506btd33O1eTx2HYxFaAVI9KDoq9Z/wml+YedTf1b1L2J192 + TQbK3DPhMemBmSSpzcENOZ/uKdp5xfgaLk/X3q4l9tZIY7nmF5bKeVdSDuCn5GmK/LrU3PkqywwyRGTW + SMUwfsp0lv5Sn8tnu/G/NfFb67y6oz22eu+hKnPbkx+4s9R1VLht09j7dyBwO3qHbk8RCTS0GQL18zan + jU0hjYanFgpe7DYxXUd/YzBogcKctkVB+zga0+XRvvXM9rLsLW9qw8WeikCnapy1ftGPzPp1uS+3uow6 + 97917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv + e/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3 + v3Xuve/de697917r3v3Xuve/de6Lz3n8sfjX8aqKqqe8+7ut+tqyn27Wbqpttbi3Xiafe2cwdD5Ulq9r + 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 + 791Xr3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6rG/mE/y0NrfOqv6w39i+ + 2t39Gd29Myyv192HtvHU24MdAs2eodwQtmdvPUY+qepoZ6JpcTV4/L0b08s8kky1YWKOMJ8y8qQ8wtDc + LM0E8HwOBqGSDlaqainaQwpU1DYoJuXuZpdiEsDRLPDN8ak0PAjDUIoa9wKmoAApmo37W6v+ckm0aHr/ + ALP+Zmw85hGwVdgtw9g9a/GZ+t+/MqtXgJ8VDmcNvbJb2zu18Vko6mSGvNXFsaYF4ysUcOoOm4dk3jQI + bu+VloQzJDolPbQEMZWRSDmvhMPIAdUm3bafEM1rZsrVqqvNrjHdUgqI1dgRiniD1JPQ99O9NdbdB7Aw + vWPU+16TaezsH9zLT0EE1XXVldkK+c1eUzmdzOTkmrMhkKyZmnrK+tnlnmkJaSRj7P7GxtdttltLNNEa + +WSSTxJJqSTxJJJPRLeXtzuFw11dsXdvP5eQAGAB5AYHQn+1nSbr3v3Xuve/de697917r3v3Xuve/de6 + 97917r3v3Xuve/de697917r3v3XuqZ+vP5VvZHxj+UHYHyL+F/y5rOosN2rXZfKb/wCm+zuoKTuHZOdq + sxnq3cP8Mepxm4Ns1C47HzVlsPa2SpVV0fKVCVNQjx8vJE9jukm4bLeeCstS0ckfiKSSTSodDpFe38Q/ + jNT0N35vhvdujsN3tBM0VAsiSaGFABWhVxqNO78J/gFB0eLI/HHdfcmZ2TuD5c9i7b7mXrXdcm89kda7 + A66yHUvR9LuWGio4dv7r3ZsfP7h3dk8/mMPNDXy4ubIbgOPhNbI4xf3MNPUxn0ewePIk27yCcxNqVFQx + xVxpZkLyF2Wh0kvpz8FQCCWTeVhR4trjMIkUKzsweSmahWCRhVaorRNWPioSOjbexH0Rde9+691737r3 + Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X//RTyxSCWQW + 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 + ZXOk/P0/b0XrO93dvbmfFJlOxszK+3lZ8RpylajY0u2qWOAiX06v6ra3sQJ7ScoDbDBstoZJ6rRdJyPP + 8PROt1dwfpM5p9vSdzHZnaGegmxuS7D3pXY6ZjI1KNwZp6RiEBYmDylGB+hNufclp7VWVjsXi2+10lC1 + 4Ctaf6XqyMZn/Vf+fTFjsvuXD1Zrdu5zdmJywjtHW7erctQVcr6dR1VmPKt+eRq/1/Zdb+2++7nYxKtm + y1BoNJxn1C9b08vIG+opq/EcH+Rx1mlr941jyB8/v2d5JBNL46zOtJI8vEpIFyDe5a/1/wBj7U2vtTv0 + KlPpX4eSt/kXpppNhjUGGmoYBOn/AC9N8lNuulmWGkqt50gcGVoaQ5inaQn61EsEQBLH6lyOfaO/9od9 + nqRaP/vLf9A9UjuthAKkKRXJJXj+fTe1VuOlMjjJbtoJZNSGQ1GVp5amIc66hlsZbnixvb2l3LkndIre + OD6Nx4S0Paw/wrnpQpyTGw0nh9ny/wBjrJQ7o37h6mesxu7d2UFeFjikrIcvlo55EJ9MXnjcMQo/sX9l + c3t3fbvDHBPYNII21UKnHzFV/wAHW8Fq1GPQ06E7Z/yH+QOxt0Q772x2luvG7xp6cYsZibN5P7k0SepK + R5pZAxUXvYm3Pum9e2kj2Qh/dmR/R/2OqiOPXStR8j0tsp8yfk3ld/UfZub7Mq85vOjgihTM1sktW6Us + JDJAwkf+o9hi95Tit7cDuqo8kYUp5cDw6UJfRt2emOtl7+RJhOwfkp2F3B84+5iuWy2FooOnOvMnLjqq + ijeuq4IcpvbKY52fwyaKdaGiaRVYqZZkDC7gnvt3szWRubx60YhV1Aj11EV/Z1H/ALh7immDbouJ73p+ + xR/h/YOtnH3KPUXde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xv + fuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69173 + 7r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+ + 691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfu + 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 + YbcEUuJptxQUqZPcVbTNFi6iVogOIXIbnjj2UblyBzBtlvr3/nQPI5qCLVMKfy6FMW8c4X9vHcQQeEpS + oXVXj/m6Rmzfk/8AyRd3x/H7BZ34c4/FU+Mym4cp2vkEz0jPWT1gM9DRm3JSNzZT9OPaHbuU+bzaXbbf + zKl3I4AtgYEWh8yft9OqXm9c17eqvPEafiNTmvy+XRgN6r/wnc7WyeyMPtjquo61psxuIjcOXo6mrmko + cbGQqRekXtI1xq/A9oT7Ye9N1aSPeX8Up0/prRKM38+PRNNz/vFmxZ4nAHE0bA9esPb38tD+R12Rurrj + YPRvyZzm0s1vXOfaV0lDhIcrW05a38OxtGteY4TLWSMtPH5JEXUQWZRdgpi2P3L2Ha5ZeY+TLSdYULmX + x1FVVas7Kq1pTuxUnyBPEzsfdLbJZkSSaQ6iF+FqajjzNDnq8H4u/GfrT4idK7U6I6miyf8Ac/ab5aoh + rs7UQVmdzOSzeUly+UzGZqqaKGJp5pZjxFCiIipGiKiKBB+5Xq7jfSXqQR2wcikUQ0xoAAAFBJPlkkkk + 1JJJ6pf30+43TXdwas1PyAFAP2dGC9oekfXvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691 + 737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde + 9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xv + fuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69173 + 7r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+ + 691737r3Xvfuvde9+691737r3Xvfuvdf/9PjIxWSSXTqCu3H5sW+o9/QGgrGv2D/AAdcrJJF8QivmenS + hji1XmJAexAJ/SD/AF9tzcR05DMpwD06x645HRX1RcWHB4bj6+2GzGx+XR3BOuju6nQW8n9Prf8A4r7I + fCXpXbTefl0oaaURFiBZ9Hp5P+sq+/eEvR/DdFIites0dRqljDXBLf7A+/eEvSFrsJMp869T53MY0f2i + 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 + ve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuv/UkilAkklveJQVMYN/UzG3Hv6A0+BfsH+Drky7EOft + 6mLS3dCH0hhwL8gn6Bh7rKpNCOrR1BqOn6khitpkf1L6SSeCPrbV7YKtQ46OopeyjcenWCBWlW9iOeeb + /wCNvaMQLTh0rtZSprw6exToIwn6XPINzwP6XHv3gr/D0ve7IWkZ65Cl4Ckjm1mIHP8Aj799OPT/AAdF + bzv4wI9epqFJi6nl0TSHP6iF4Bv794K/w9auZ3Zjpz001MQRiWDBSOOL3/wv7MrMaItKevSDxiIyHND1 + AqECQyuvBstuD9Pz7bv7qe3t9cC6mBGB9vSayjtru9FvcMAhDcfUDHXCmieWGOUr+6jkBW51BhpKtf8A + BF/ae8iE15JYTJWC5hZZPTIoR/Poqtru/Oxpu2VurG5rGPMqjVBHyx1XzsDI0vSnyY7X67yGuDbu/IYd + 5bVjAtGlXINVXFEp4Gpr8Ae+d3sdfN7ZfeS3r2wmPg2omLWqnAkWTuqo8+Pl10k94LWL3O+7lsvuZCvj + XTQgXRGTGY8Uf04efRscjv3CYfDtmshW+ODT5HWSy6Qn1QA/m3vpLe3FpE0hkcL4ZAbPAnhXrnDBtVxu + tzDYKppKCyn1pxp0TzsP5exUFFlTtT1VUolp6GZ/SY2IKGRuOB+Qfce7xzJ9Mx+kfUPkepJ2T2nW7xcY + r69VS767Cz+589Llc5kqnIVVRqjqRM5YaA5ZPGL/AEubce4/3Tf7q6FGrnj1MXKfJlptRMDgBY8A+vSp + we76agoII6Sbx1bt+6FdgPF+VIU/n2/s1/8AR/4yW7iKdMb5sn1d6bcJWMZrTHQhHuhqJKKTI1BT+GlX + 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 + W1H3CuIJljGr6AgEp+bexEl3ewxhUiOkcDToktgYbdUkBqvHrDjpooQwlkYm/wCoj6qP6+2ZN4ehWRaf + b07LF9QpjB0+fUbL1lPNDIsbrqDFluR9f6+yWfchQlR01tlnMJwHwOmDVeE8jUVt+Pofr/xHtNFO89Wl + jx9nQhIdXKgYHXqH0zqVKrpH1Y2HJ+l/ai3k0zhlXh0xOjSppOOnmSqkdmQzLaRSD+4b6h9PZ1fbnJ9P + pVa/l0jTbxUMTw63ev8AhPZ8ZP8ARH8Rct3lnaDwbu+R+5HzFFLPTz09ZT9bbKmqNv7RpXE55Spqzlcn + FIiqJIamA8hQffuW7Fba1a5OWmNfsAwB+2p/PqLuc7zxdyFmhqsAof8ATHJ/YKD8ur9fYk6CHXvfuvde + 9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xv + fuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69173 + 7r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+ + 691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfu + vde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691/9VS + U8CJPMz/AOb8pv8A0+p5/p7+gNPgX7B/g65Mv8Z+09OEkMbynxgW0j/C/HJ9udKbatDTrLS0qhZFJAYk + lVIN2Frgj3V/hPT56dqWMxBbOLngDVyD7SY6c8Zf4unqONnXk8gabErcG3049+x17xl/i6zeq2jWbfT6 + j/e/esdX8X59eEbx8/1t+bD/AA9+x17xfn1GqYzPoQsLA83P0Pt1DpFR0X3JDvXj1gkpAyFD9P8AVc2s + B9efb6TaWDDojP8AuUv29JzPZiDBonme0k3+YB41FR/r+2Li7SFdbdCKziM71H2dVXfLjMVY3XszsumP + hyG0stT46tlp+PLja19CiQ/nT9fp75g/fFlk9t/erlL3Ztx2XMkas3kApA/1Y66Vfc3tYfcb2q5w9rZj + 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 + qHtX/Vj3GuKBLV1Q/CAMfYM9PrOjRDWe7zr1MIAW6orW9NjqF/8ADm3t4e1/PN13XNu+k/Lz/b0kRI5p + tGsIONTw6wvQowS8MQ51E3Xj/D0n6+3j7Sc3KKm2kA+z/Z6NoIISKG7QH7esctOyldFLCVNh9VJte3PP + skvPa/3FRysdtNp8u3H+Hq6zbSO0zy1HGgwfs+XTbVQOwXTFGOf91Bib/i9/ZLH7e+4Fs5KwyGppw8/T + jx6uZbAf2UjsfPXwp8uhO6H6V3V8gO6Osek9oRS/3j7P3rt/Z1DUikmq4sUmYyCU9dna2CAq7UuOpjNX + VZDDTDE7EixIu3JvPkYMlwjRotNRNMCtCTn5/wCbpPd7haWlrJdScEUn9nl+Z6+n/wBd7E211dsHZXWu + zcfHitpbA2pt/Zm2sbF+iiwW2sVFh8XTAnklIYUBY8k3J5PsbxxrFGsSCgUAD7B1j/PNJcTPcSmrOSxP + zJqelj7c6a697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 17r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/d + e697917r3v3Xuv/WW329hPxqJL+k/k6vf0Bp8C/YP8HXJl/jP2nqcILtF6Ql41v/AIm9ube3OlFtwPWZ + oLuJRz42CAcfT/C/vR00OelBYFTnp2WFg6MIVGhg5sPrY+0fReD6dO4gLFpCoUv6uLC/uhZRjrerrg1O + QDcW+h5/234978RP9Veq16mT0zeOJlP9NX+I/wAL+2klGog9a1/PqIaeO5dQOByf6c8t7fDkYPThyvUW + VWdSqm1za/403uTx/h7cU0yeiaQlZQ48j0WXueqrmD1cXk8OPssIX63Qepv9b2FeYbiWJSFB6HGwrE5B + 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 + 697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xu + ve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r//XE37c + mc2+nkb8fTm9j7+gNPgX7B/g65Lyf2h+09TYqY6pNfNgLfi3+sfdJTkU6pVuA6nR03oHH15/H1/r9fbN + T1vV8/8AV+zp2SnbQPUfqCf9659perdSZackR2Y/X6A/7H3UMD17qQIRJpJPpW1/pz/Tg+2i9MevXqVF + OucsLFGC30Aeg2PP+t70rgHPHpjptlEcRJMscS+MCeSbiNR9f7X59qBIFj1PwHDrayam+mTj0EeV7SxO + P3TT7fRoq2BotdVWU9vHSyX/AM3Jx7bN9brII65PSv8AdsogI05PWXds+1q+meHJ1dII8jGy09SjFKcj + RqjW3+qJ4PtvcfDlsyooft49N7XaXUV5gmnVYnb8sFNmgsc6qKF1kYqxEUdPE+lAQP8AVLe/uG+arD9/ + cmbxy7GPijao8mx5+vWQPJ1w+w8ybLvcpNVlUg+a58vTqtTt+iXFZ/KpTaDTVVTHkKd0/U1LVepWBP8A + tV/fNf2H3M8jc3XfJF2xHiyOyqeA0nyHXSn3o2/+t+ybfzrajEUaIzDi2oeZ6AWSqBcxnkueD9bfi3vM + bfLpZNxtpENASOHWN/hUHhkVPUOqnCQsLXK8X+p/w59ll81byQjhX/J0YooRAvp0zmpJtyT/AE/2/wDr + e2YnCPqY9UmBZKDqHK3kdW/oLfp9qfHX/V/xXSXw39D12jFAjAg6WsP+I9ug1FelyhdIx1L+5L+kkjUb + f61/p7djYoSet0HXJY9A06rkckki/P8Are3zNXjTrdeuLcKbC3+8fm349l3jpXr3TWw9TekD6W/x/wAf + aeZ1cinl17SzfD11/sf949s9vW/Cf/V/xfUiwJAIBF7WP09qLVj4lOtdOWNID8E+QG6qPpb8exHblqYP + SG64L9nQpbbDU00FbVMQNbAC/Fv8PZ7FUgKM46Am4E1JHxDo9PxQz1JjO1MHl3qWgSlZ5W9WlWTT+4rW + /HsYcpP4N+uo0z1HXOsQuNlkLgMacT1sHY40tdQ0eQplDU1bHHVQyKDZopVDEkj/AB9zuJ9YqDXHWFt1 + A0dy6jHceuckT3bxj1XOkX/3j27rFMnphYyGqeuH27EXk1a9PI+n4/HHvYkAwOnPy67lpdaQxglSliSL + KTzb1e/BwCT178uoU1PrmWUXAX0kfg/gn3dWHw9aPDh121EY5/rcSAG34/17j3cShl6p1lNLDMdNxqjI + 1AfQEfg+2/EK56RSRuZSadY1prRzXt9ToH9P6293L1YHq0CMHLHrA8FtHH9jm/verj0r6geCawBA0+S1 + /qCL8c+1Ykj8jmnRcfiP29ZpqcgD0kXP1sD9PdY5a8evceoM0J1Ri7fX8jn2+kgI8utdYpaQgEJYoT6h + /T26so/F0zXrl9mAq2CA/wDGvdRN3Eder1HNI1prEjUQDb6HV/r+3RKuOvV6jSUYSPxE/jV/rqPx7t4o + 49PVPUU06pG9T/uyT0Jb6af9j7uktTpHDj1sHzHWIUpSMBvSwHqIt9T+fb3iljXr3WOKmAb8/wDIX4/2 + /u7TMwp1voJvkbvncuwvjp23Q7armxX9+8ZR7e3BkqZzDk0wvl1yUFFUKDZZTxIp4K8e4s9yPbyz914b + fl/cG0x2reMM41DzORmnQ35Dmkh3xGiNCcV+XVL3QvSmE7DizPZHZVa22Og+tpb7gzVzSjeedpF89NsH + a0pKk109vUtipufeI3vJz7cxyWns5ygKh/0ZZY/iovq3+z1l2ri3t47mQAac6jx6Df5E90ZnuLdL7grY + 6XbG0dt4qDA9fbMp4zBjdkbYpVCU0aUSjTFXzRKJK10Hrkufazkjk3bOWoFO9aTKoprf4gR519embTbp + ru7G4g9gfV/pvlxpp8xjpKdZdG7z7AxeX3BS08W1dhY/bsm+v707kXTQbr2zQ5eLB5f+EPcMZoJZgxuL + gA8eyrmvnSK35gm2/aj40YVO7jWo4V+XQn3XeUuCLZj4f4SowVIHnjz4dK/f/wAh+ruls1UYfqiOs7U7 + M2/vrZWb2b2vvArnMN/AKTCpRZDbonkBkMEE5P28f0UAf09xTeT3t1uy0TQGOaCgP29JrLlKXcbcXMzN + HGytqC/Fjhio4+Z6MLsvEZvf/X+5O0d45CozNGm9KuTD7CpZS2LoNyZ6lNXkcjiMe3pjjZjqbj2PNq2W + O7GkqGr68AeovvNuNhuGhlFR21PxFa8GPRQe+d47/wB4du9Qybnz2Y3DR7S2tJisUMpWmpG3cRBOFFDQ + av8ANItvSo9iS62YNbJYwqEZRmmOpf8AbjbrQ7Pu3iN/bDtr5Gnl0ZLZHyqXpjdcOT2PgMBU7jm2Rk9p + SZLdlCKxdOaqEq/vopQp/eUoEVvqASPanb/bk7vbi0kYpnVqrQ48uPQS5a5ae0229kkcyO0uATXGeHTd + 2fv3u75AV1L1RT7ayG5+x63YeXr9zUWNiVs+dkAnMzzCRwo+zp4lLwrf0xi3su5k5d23lq0/UlDBfMno + QcobRLZ7r4zppUn+fp9vVaLdFnIddZvs2j2/m5OqNs7gTaOX30DH/CMfuaqBkgwlVLq1edlB0AC3uHr6 + 12uZCRIKvmlfLqdzdlG0EcOgh3p1Xm9rvj5MrTV2AlraGDKbepMkjGqyeDqh/kmQplS5Mcg5ViPp7AN7 + Y2tl+rC2ok0p0+l4X7SKefQUVOFy1LO6VUM87RMCJU+ml+Va/wDrewzcyIK6wD040iV7DTqZgszmtvLk + hgczk8I2ahbG5aDHVL0qZrFmUVDUGTSMjyws6gsjcH21Nt8ciB4xpJyaAZ+3rXiFgFfuFPOuPs6Pzsv5 + n5Hd67q2x8gsDjN60PY9B1j13XbyqKQVGb626i2N4qapxOwa+Rb0VRJToVUqQL+wzf7dcR0KkjPkevSW + aTlfB/BWvzr0rd3/ABP2t3TBV9j/ABGzA3Rh8/uHeFbgOn66oWs7J2D1BsWnWOo3rvnyOEaGdlZo3Tkg + /n2qs96+hXQ5qemzI1mnh1wP8J8vt6rtymEraKsipa6nrMdL4papFlVo66noNTQLWxSOOI5bHR/h7Nfr + odxNHUEn16VWs2pCktCf8Py/Lz6sj+O3dWJ+QG0aP4u9/VompTDj6XqTsfJMWzW081hYTQ4Dbj5Ngpjw + 8sLO9TTK1mkCH8e37LaJIrtdxhYqIeNOGfXoB882Vxs2w3HOFgS01mwpGODA5wPVfI+XQn/DD+L/ABc+ + c2R6d7Nl/hW1uwYJ9lZ6okvHQ5SirIWqdu7mxzLqHjlaNPE2r6H3MHs7eSbrztbeDh450/MA/wCXqMPe + WG290/ZqHmaE6722UOwHxgr8SnhgeeOruN2U3hgq6Ao86rJ9v9yebpGSkDROfoGSx99b75BcHX8h+WOs + D9ouCjAkceiwV2Sw+1s3JT1OSMbzzo6U2sgSuvqA0i/PsNzOlk/hkZOehzBG15H4oNAMU6mbg3nuHc0y + 0eHSaGkqYhTRE2Gvxj93Vce0s98zwPGhIqKdKbexWO4SVgDpNep2Nnr6Hb8n3YE8VFTyUwhIu0vkIDON + X+p97tyyWX6hJ+3ovmtzNvAljFBXy6IvuKYbm7Cq9so9g9R/nn/zGhF1SAX/ACPYRvX13B8x1ONkwj2F + G/ECc+fUCp6xl+4rJaV1qKaNyInS5iJBsb8+0ItjXWBjpmPdTFau7MajpKHZs0Ne6+FGkRo3LyKCiIps + 1j+L3978JTxHQktN/UWVQehz692djv7w0WP8PDRGrmBHpV2W/wDX6e1W0w6b8mmPToC8y3huommUnu6N + XiNtYNF+2inp0q6WP7qSie15HU3D6QbHV7G4kjEwWg4dR5JE7W+oE1r0CXYuQwtdU5amyBWjnjULR0U7 + Aa5VFtSL/T2Ht1dakADoX7Dby0GSPn0SDfqCjmeCnWFYJovKGUAHX/S/sJX8iiOmOpV2yFiE19329APX + 6C7Cc+scst/Sf9gfYC3NiAADTPUh2K6Rk4pw8uk88MEj6rk/Xn/jfsn1N6npf1Aqaen1KdDr61PkHpsQ + 1wxP9Pyfd4R4++QofIdLLxgluGXhTI6tG+JW5dm/E3Z+R+W2aoMTuztXuRazqH4+YOqi+4m68y1Mghzn + Ys8Ml/HIAR9jOq3U359kO97TbPzslvONKEoW9JB/D8x69AbfNzl3PaZLC0OloQWemMf6vLoJNw02V3Lv + TfOZ3Pmps5nK22dz2VrpjUV9fXykS1DTztYsX4UE/gexJudythvKLENChaKBgAU8uiSwi1ctMhya/n0C + vzEyJ3h05s4U2NSixODmnqqZfGEeaYRCNm/1zb3ix7p28w2RmuGLlnNNRqck9S/7bI0dA2OHRHOqNhT7 + v2tkJZoJ9L5SmihRltDpXmR5UJFwB7DPIXLkm4bT4oWmk9TLucsbJHUevQ+by2Pj8DisS4Zpa6GKOhSt + pjaKCiP9hCSbW9zVtPLCQFJJgFQEF2HEL5mvQUuZVY+FLkHFDwHSY2vsvcXY2Tx2D2DtTKb7zFZXpRUm + NxNHJLUz1kjeKngjMqhdbN9OfcjvHyHBCbraYpWjUVNwxBRfUnzoOgNYQWVpv7hpKimBXq2/aX8i75zZ + 7r09o9o4vFfHzZkc+Kaeo7Mhip9FPXyBUrofBNcCNTqkNvp7Cd9vvK5v4Y4bxd5kkHbHbVLRKPJqj8uk + FzzFa2U8sZPYzGh+Y8h0N9N/LW/l0dA737D2n8nvkm/bmQwnXOE3nspemNwPT0uQ3LkF8lVisis8h8gT + kBL+ziHlf3C5pMM/LkI2mxMhW4F2O/wRxZaHFfLovl53itbd65bT2/b6dHy6i+fn8qL40bFxlH0t8QKX + c+8qHGpCct2pgKPOVEmUEXhlmeazHSTyPYlj+7nv24o8l5zLHHBqJQQuVankCa/4Oo23Dn68mulEMZB8 + /T/B0W/a/wDPy7u6/pt8bM606/6r65xVfurI5jFvtXBnE5CCOr5Sm8kUR9K/gexFYe0PtNFMJed9xkvL + hKAqHrGVHAkE01fPprc9432TbVtoQQr9xYcRXy6rf7S/mtfLzcXZtfvk937+oqzPUUdJkUodxVkUE9LB + UNLHS2CD0oSSo/HsXS8zewfL8C7Bsu3xzS58JZEDIG4EkUp0o2z2tud+2CeeW6l8Vs/GQc+WCD0T/tb5 + T9tdzz01XvjfG59zDH1XlhbL5KSuFLIX1F0adbg/4+y+591Nv21Qm3WkVtp4eEgWlPsHQh2D2l/d1rpu + HL1FO9mby/pMeg43D3RuXcWD/hmUydVXUn20tI0UzKzyAi0VgyjgWPsr3v3qu7jYgqMQ+e4Hu/b0Z2XI + 6bdeh40BVCCMdFwh3DUR1tNIJFaSl8wjj0x20h9NrW9wYnu/u8939LNcygGv4j/m6khtutpLNofBSrkE + mmehO3PvaWnyHipZSIaqipKh2j0f50wKsi3t+LexFZ+5N8DUXcv+9nopPLkBwYUP5dM9bufJ/wAPw9XT + VLEh5YAW5Kml/dueP8fZbe+4LmV5JZ3JPEk/7HW4eXofEp4S09KY6Vu26/G1/W3Y1fkcxNTbiw+W29Nt + PDiUq2XatqimWBQgBxGlmP8AT2VW/uOTOUEpr9v+x0ILXl+EElYlwPTpQ9YbizKTb8mkq6qkochsvMU1 + dPBII6R6uCIvR0dWAPUrHgL/AF9kW683S3jVE7mmRnh9nSO125obqgQUr0juqcxl6nf+yIMhS15oqsy0 + FQND6SKulMN7gWsPqOfp7LOYPcWxls47dblg6KAe7NR646NIdn8KVi0QFTUY6S3WOdbE997IgpJ5pKun + 7UpaIxRxTyzyBs81LHTU8caEtI91VQASTYD2CrjnmM2mi2uW1k/xd3+Do8bZYzEZJACOABGKdfRB+DXQ + UXxy+OWztjzQQxbjzNRlt+7zeAVgWXdO86w5WqiZa4mQNS05pqJrhQTCWCRg6FE4uLi4ije6YswUDJqf + WlfzPUEbtNFPuErwCiA0WnoMV/Pj0bv37ov697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3X + uve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917 + r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6 + 97917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv + e/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3 + v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6/9AYY4DqkP1szfT8f7f39AIaka/YP8HXJh/7 + U/aep8EBZX+v+8fnj6+2ZXFRq6afj1JELXWW5snoI/H+xHttnA7T59V6cI4GDfU2t9L8e0xYAV6e6zeM + 3jVg7XLWsRb9P9PbZbBIx1vrtainDCnWRPIeY1LgFrN+4Lf4e6lHI8Q8PPr1RQjrnPVNGTSJp8sqhlDC + /B5Nre6KqsdZ8umOih/LnelXsraOOfHVzJW1kyeenp5CsggX/OOQPx7KdzvHhDAYFOhFyntQ3TeVTjWn + VVQ+RGWx2Tq2B8kVWSkkkoLzMG4Yq5H1HuLr3mKS3udVeB6yFfkWNdCaeI6WO5O5s1k8Dh6dMiyjVqjB + Y6kj+oN/Zx/WhpbQEnoP/wBSlhvaafPoBt4b7nrYq96it+4aSmalZgx1lgp0sxP9PZRs+6hLu5lk+G4B + H8uhM2xm5eG0Qd1sQegM3XN/eHY2EzB5rKU1ODnJ5kL0LGSn13/rf3zD9yrd+XvvGW15bdqyCT7M/wAu + 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 + aZr3EX3h/wDpzO8f9Qn/AGnW3WXP3D//ABKzlX/qZ/8Adn3DrY/98u+vo1697917r3v3Xuve/de69791 + 7r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de + 697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xu + ve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917qv7vz/AJmZmP8AqDw/ + /usi95L+2v8AyqMH+ml/6uN1i77l/wDK3T/6SL/q2vQNex70Auve/de697917r3v3Xuve/de6//SMKBK + 1TqVbx63utr6jfk++8UcreGtfQdcnHFXP29PFPSuxNzcN9ARwvH1PtqWWhHTD4I6lin8jqq/WOU34/A+ + nPtozAAnpvPU9BL5AWtb9J4AHtH4ppTr1Oi0/KPdVDtDruqeWuEeQkcIIY30PKr30hdBB491n3EWlpI7 + efD/AC9GGzbX9du6N5AU6qVoKWPdsuikrmOQfXPJASVOk+u+v+vuIruSS+u/HB+E16yGaCLa7MRkUqOh + Ox3Y1dtrHYpZstKGwVYvkg8za5IY3AkLvq9Q/wAD7EO2bvJZtqc56D99sUe4W3iIPLp87Z+WdDXUk+L2 + 1FGv32MBq60Mg8dRJHokugbn2J5uc7cWRtyRq/1fPoI7fyVczbh9YB21p+z8uqrN1Vldla+oms0qyzPN + IwYnXI7XL/n/AA9xVut5HcytKOskeWdue1gRXHAdJs5WamieCr1eNb+OMEj12tYH2UeKCOl7W4+tqPXo + P6mouX0akaSS8gLFrgtq/HsPb9em2kt3rgnoVRvG6izPFelp11VH++9FSST+GkzFDW4uUkXUyVMWmLV/ + Xn6e4Y+8dt0fM3IUtnEKupSQevZnqYfay+fYua7WcntYFD/tsdITedDJQZiojNwkkkySEiyiVZTED6v8 + AD7hz7sW7S3m0XttMSfAwPyx0KPvI7KNt3WyuIRQ3GftqK9IaSnCMbrexJvyL25ufeQ0cwkUOPP/AD9R + XGjJGqNxAHUd4lexAAY/n+o/1vb6uSaHq+kdYXQoQD+QD/t/bnW+opkIYi4+p449sazXrdOuowSSU4JW + 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 + abrGmWhVArkeYWkcJJpwoxPop4dF+3T/AHC+e5v3CbHd+U5pe2O8lneSJWOFMhe4vUQVpqLxKgHGRBkD + r8ffkhtf5BbfrpqSin2zvbbkq0e8tkZJycjhKvW0BnpzIsbTUruroJDGjo4McqI1tUle3vP+288WbtEh + t7y3IWe3f4o2rSoqAWQkEVoCCCrAGlYA9/Pu/cyexu9wx3Uq7js+4DXYbhEP0rhKBtLAFgkyqysVDMro + Q8bstdI41P6j/wAF/wCiB7laHgOsfvLpP1P9r/Y/8T7M4/PpMemWX8/7D/ocezKP4fz6abgOjW/A7/sr + Tqf/AFt9f++0zXuIvvD/APTmd4/6hP8AtOtusufuH/8AiVnKv/Uz/wC7PuHWx/75d9fRr1737r3Xvfuv + de9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3 + Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691 + 737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Vfvff8A + zMzMf9QeH/8AdZF7yX9tf+VRg/00v/VxusXfczPN85/oRf8AVtegb9j3oBde9+691737r3Xvfuvde9+6 + 91//03nAfLj4z52aQYns3FqweVCKmWjgIdW0stpJf6++zsPuFsEiKviL5ef+z1zS3P265jhr4cbD8j/m + 6FrCdkdf5tDPht+bZqlZAyE5nFqWP9kFRJ7PrXmbY9wFY5Fopzkf5+g0nK+/WuoXyMSfhwf83Qj0MmNq + I0lpM5gp5pBrZYMtRTa2Yfp/bY/X3t92sGJVHFPtH+fovn2jdEbUsZoOOD05/YzADmKS4N1hlEo5+nqT + 3tbmynwhFekFzBeoaxoafYeq7vmdtLL7igx7UonYxvIGp1EhRwi/rNgV4/p7Lt7srmSPxLd/0qZHz6GH + IG6Wm37kP3xHUasE4x1XjLg8ztF1aiSV62ppyRpRwYii2aO4A+vuL7zc/wB3lrOBDrfAPoeshd6i27fk + judpIESZcV8ukidpbwzXnmENQXZJJZUKyLpjVdTkXH59vWzXP02u9BLAdJYPp44zBCwC9Bxldl1VFjZq + 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 + T7OYeB6Tyf2Z6Yar/iD/ANC+ze2+H/V8umH4n7eqy/5iu6s9V7P606E2jUtT7h7+35j9rzvGzB129Q1l + OK9JAnqEclVU0XlINjEsqm4Yj3HvulfXUm3WfK1g1Jd1nWM/80wVr+RZkr6qGHn1md9y7l7Z7bmbffeD + mSPXZcnbfJdqCMG5dJPDIrjUsUU+jzEjRsMgdG62B15trqvY23dg7Roo6HBbbxkGPpVVFWWrlRdVVkq1 + 1/XUVMpeeeQ8s7Mfcu7Bs9lsW2QbVt66IoVCj1J82PqzGrMfMk9Yo8986b97hc233OXMkpmvL+VpHJJo + gJokSD8McSBY41GFRQOnir/P+x/4n2KovPoGSfF1Vx8icVD0F8oOn+/duxpjcN2PmTsPs6npVEFLWS1z + RwDKVMa2VpJIGFS30vLRLIbszEwfztbpyN7j7RzzYDw4dwk+mvAMKxag1kepU6z6tCGOSSegvsXuU3vj + 93Dmz2P35jcXnL9v+89od+54xFrbwUJqQqyDwh6R3jIKKqgWHVP6j/wX/oge8nYeA653+XSfqf7X+x/4 + n2Zx+fSY9Msv5/2H/Q49mUfw/n003AdGt+B3/ZWnU/8Arb6/99pmvcRfeH/6czvH/UJ/2nW3WXP3D/8A + xKzlX/qZ/wDdn3DrY/8AfLvr6Neve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 17r3v3Xuve/de697917r3v3Xuve/de6r+77/AOZmZj/qExH/ALrY/eS/tr/yqUH+mk/4+3WL3ubjm+cf + 0Y/+OL0DXse9AHr3v3Xuve/de697917r3v3Xuv/U0pKm/wB3X+Orro3+8qSGjyFajA+ZvxHIPcv2/N29 + K3xt+0/5+lsvK+03ABZV4eg/zdPmJ3dvDCAfwrdWboSBpGjJZBrKBwQDL7Xy+4vMm2Mot3aj8cn/AD9F + M/tty/fnVIijR8h/m6FLAfJP5CbaZJML2ruGHxkFL1FRJbTyB65fZpbe83MMMeiVmqfmf8/RJee0/LbV + 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 + Ps6j8+iw9Msv5/2H/Q49mUfw/n003AdGt+B3/ZWnU/8Arb6/99pmvcRfeH/6czvH/UJ/2nW3WXP3D/8A + xKzlX/qZ/wDdn3DrY/8AfLvr6Neve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 17r3v3Xuve/de697917r3v3Xuve/de6r+78/5mZmP+oTEf8Autj95L+2v/KpQf6aT/j56xd9y/8AlbZ/ + 9JF/1bXoGvY96AXXvfuvde9+691737r3Xvfuvdf/1dJ+tRYshXlWY3q6rg202Mxv/vPuTw6xt2qOjCPW + qjuPDrDYyfmwH9Pb63i6dLRKft6tL4slKOV+zqWjhEUcEqDyfT+P8PaGVYZGDFAKdJvo3eRWMrYPXPzh + o9RAOogEf4H3cpG/BQOjeS3Mn4yOu5YKaojWNwVQrpdY2ZfJfgX08n2T3ZeKYJCxWo8ui59vWO4ErSFh + T4Tw6wfZwRS/cJJVIYhqBSrqlKLGuoBFVx9PbRO7LG0sN7KNOQtTQ/I56W+Dt9yypLbIK4JoK9X/AP8A + JM3tkdpbm3zsHOV9RU4rtTFnPbajqZpJ2NXjP+BCRCQsQf8AAW95dewW87w7RxXTmhOc9Y7+9WxbRDZy + TQICQpxTq/3e2Gpcvia6PJIhpoaBmjMgUAVAFrX/ANf3mvJFHJa0Y93n1gzZSFNyaVBpFeA4dEor+uIZ + ZjKVHlqImkhjUAqYgTbn/Ye4/vtpj+p8RCa9SzZXf6SznivQcZPoOoqahK8UfjTyhnUKAroxuSfaCTaD + Jk1HRpHvssfwgdCVQfHKmqqNatKaMQ+NNP7Y+qjn6+1lvyzE8QZ2NT0zNzFL4xc0r9vTZS/HKhTJyffU + ytQzqXjm0LpDj6Lf2+vLFqro7uQFYH8x5dI9y5xvIbQrAoZnIQ58jxP5dEp+YXW52TiNnZWelWGPE7mq + Y4lChY/t50QQG3+vyPfNv79fLUfInu1yr7iWJMgnlQOpFEGhlbj+XXRL7m3MS82ch7/7f3BpphYhhlqs + CKU6d8T1omVaiqaRVljyNHRVMQtzaoiUyD/efebLxJvC2m7WuRexxyNTgKqOHWI11Tary+224ej2csiC + vnRjSvz6FXMfGamrMXNJDTNJJHR+QftjVI4W7Jx9efZzuXKMUUa+AxYnJ6BcXN16pLSKKVoM9Ef3t0rk + cb5BHQ6ESUhkYWZSG+hB9hefZBAaPXoebNvqXgHiUH2dFzzmzqyinbywWiBKqSOSw4t7KDYMWNeHRqm6 + 6XIShz0lKvadL9uL0t3kLXIUEjj3q42pHQAscdHtjurOxWQDA6RU+2Z/C0aLpRWa1xpPH/IvZLLYoD2k + 9H8UyPxPSTrMLVQo0bxgsWFlv9bH21PbeGupM9HviR0GRw6aTjpIgR4Q3+qu1yD/AIe0MaeMSJsU4dUk + nAIC5r1CNO4ndTZVB4+n4/2n249tDpOT0pjRZAa9SqWnkMpXx/VT/T2nihSM0rjplowB0908Eyi6Rk+s + D6W/Nr+1LtTEZ8uqqlTQ9LbH4dqkMYbHSAZENiefr7Qm4cSKnkePS4WaeG0gJqox0IW39rPWzU0MEF0L + opYg8s3AVb+09zO5m8KDI4dKILaN4PFuDpPp0YLB9a161SUkuOZHMiFVKkNo4PPtbZxTxXy6hxHSdrey + mtXlMhFKjq/z4K9Jz4LALuKrp9C+BRTeQadYkSxNj/T3Pey37x2QUjjTrEr3MKxzyGM6iK0HVgU9CqP6 + AVeHlrD9VuLn2IYp9WT59QBcwPI/jsKHqEafUrSlRrvp02sLjjge1Pi6e0cOkd0Cx8R+PUGanGtRa4It + Zhx6hf28k9TToglVlbt6gvRR2l0xglDpA/qrcksfanxn/b0x+t6dQDRyL6UUKit9eOR+Qfb4lWmevVk9 + OsNVTuhRfSVtckG5v/sfbkUqluqTqXXSeHUR6b0l+eOOLke1ImzQdJPAX16wNSsYjYG9uSb2971/P+fS + U0BI9OoklMY4lYFWYnkWvx+fb0UgLFSevUB49YHTSgLBdd/pb8j29qzjh1XSOsK0TFwXIBkF1AUH6839 + 61rxHW9K+nWCaGRXX6rpN/qPV/rn3YaTw69oXy6xtEGYu36rNf6H6f1HtyifPr2gdQ2j9IdP0A2Nz+Tw + fbtRwr1rQOukjZgwtxcjn/be91zk9e0DqPPC8Glo1BtqLKf9a9+PbkaJKChYiuK9NSIArH5dRIdt1G8a + qDa8U38Pl3KzYdq9bKcdTVw8FXVqx+njjLNf2V79PJtnLt1NC3iGKNjU8SaGnTW3RmfcrRGxqdf8I61u + vkF31S7/APlX2xsXasz0vUfQWNfqLrnCU2kRT5Khm8W5ctTUyW11OSq9bgkEsTYH3hz7IpAYty3PmH/F + ZPqnYXY/tglSfDz+HrO/nvZo7jl7bmLE0jUE/kKU6d9sdV7A6LxUHb3yMovvs5kqinresulXjeWXK+Bf + vqXJb6oD+7RqZQqXItpN/eued/3n3I3sctcpqRtoOm6vF/tNI8/TPW4zFtGzwJEdTmlPl0Snu7vvf3eF + XWjeleMZt6iTNw7J2LipAu3tl0mZyAyeTwuJkg0mWFpkVryX5At7HXLftrabDtxS0JvCRxkGTQUHSmxl + +ouBNXgf29Fa29RVpKlWSmp5JCiyzuElaXT4TTwazdnJPpX6kc+zTaLS2juJ7S+payRCuheFDkH8+hTe + pZGzWdpCJWrVRwFPPoyvWXxO3dvSuxVR/CFxVFX71wuysnmt1iTF47C12cgFVS1tbVS+iOMwHyKzfX2D + rjmIxXktzbN4jwGioeDeWeglNzHeW8T2WAhBNa8QPToZ3j+O/wAfcjsPK74yk3Z+69odtbp2z2V1tHDF + WbSy+zMXTtS4nJ01dTjVIJZrOCOCOfaW65q3K9h0MgidjxHl0SbYd53zcZI5I9NuUBR811efQEZT5Wdk + w4Tbe19hYuk69xHV+/d5djdd7kwoSXK0tRuOqZqWhdZh+ilhcwxBvwfZ5tlxYyQMJ5iWI7l8jT/P0O7T + ke3jv/3i0z0kVVKkYFPP8/PpAdXY/Pb57X66rdwVmRzFPuzsLH5jcsI8kiT1tVlI3y2XlgU6fK4LF/Tx + +PeN3vNzcYNpntLm5+ltozqWTVTuA7Vr6HrKb272/ZFlUyxKzCMipAr/AIOjX/zFoNobe+TObr9r0clP + tGpxtHiduFfLGtT/AAyhWCslLgg21gkW9w97Ccy3e93s+5bpPHKkB7QzijU9c9b9wdstLe2M1hEpPVTl + FutNuDf1FS4+hq5N4UTYr+K1c7JPhqMz+eU0Md9LMzDm4v7mndIXmnmvokFJiWouVz/CfTqPY44bi2ia + Y6WAFR6H06QWEyeW2/XQZjE5WqpmeSSlhnjq5UmlhcaKpdYcMocXBVSB7jq72kyTF2qpr5dKLgRtF4af + 4AP8HRnOtvmZ3X07vTp3MYfMnc+C+P8Aldz5fqfY+ZSD+7+3MhvKiekz1VTkIxZpi/k/c1eoC1vaFto4 + 0Yn5dJ4oo9IVjSvE8fsoKdGG677/APjVvzEdP7B7/wBkHbGC2duDuDsfuvtXatA+Q3r2RuXecVVldobd + qaHTZ6SgqnhhVk+i8+09xaSWgLR1PTjRSMtfLhT/AC9J5/iDhOzMDtTJ9Z9h7bz+6Mn1RvLuns7C5/K0 + tDQbG21t/J/abdwOKlSxfJ1kLIxpH9Wrge0e37rfxyOhQU6shktycVrjomG6+p947DqKWPdG2s3tevfD + 0W4Hoc/j58YaXCZUXw9XWLUWKCoX1Qk8MDcexDDuEMi0lAFenRdShgCo49JCiyeRoGirMdU1GJyVPKnh + r6SaWGQwpIJfHG0bAFCwB1fn3ebb7C5GiOQgnrV7JGVqo1D/AFf4OrWOnfkfsD5T7exXRHy5mjp90S00 + +3+vfkAsMH94qHITrr2/BmJI0EUMGOEYo6d2+qSG/Psp+hutovY7uyJk0mucA9Afc4N0tv8AdlsymYoD + rhb4T6EmgqaZ+XDpGYvDdrfCrv3D5/MKtPltoVWNzOF3FRSGXHbt22ZRT1IoaliVn8tG0glVQQCbe8iO + VN8XmGIQbnGqMAKU/wAPQH3GXZeftomsA/1F2FdJLc8IWA4jzBU8Ogz7y3htLfPbfZW8diUbY7Z269zH + O4OhaHwvSffRiSshMVhpUSlyOPcyWSWu1QCK0cuDnPRpyPtVxsXI8djuTF5EGgk8TQ4P7OgbeqKMebgE + 3ve3+wt78t0ZTqlFD0J7a0EcC6/xZH2dRklVGJBJJcuvH0P9Pb/1xWMxjz6f8GMHV1JSpEh5P0F+Df8A + w/PtuO9kj4DpPParN8RI6caWt/cZJAWjZSLqAfx9B7MVvnuLbw3FM+XVFso0TRU9cJTG37qEB7kD6Em3 + 5BHtsOVQxrwPSuMCNPDUcfPpqlE7MZpLFYzYWP1BPq91Vinn0iksI5W1FiOuaVIeYILpGAQtv8frf3cy + Pbk3KZZvLpyxjW2uWI7h8+lxtXNz7eytLkKGr+zngk8yTLIUkOk3VITcXv8A4ezja7+S0nXdKVK4p5Z6 + JOZrOLeY2smGktmo+XV3fxU+XeI3ZhIcDvx0oq6laCgxddKdLVCDh2mJ+h9zXy7zNYeEDcMFJ6xm5l5I + vLS6M9qpbPp0b3Kdt7ChkqEos7RVAix89TFP50a00Sn9u4Fr3/Hsxn3q2MzMjAgnHQdGz7nTujoekbtL + tDbG5dqS5WHIxVNfRmaaoonI83kR7BPGBex/HthtztZlKu1KZ6am2bcSo7PPoA981tfu5q+vrVBSoa+L + xy6rpbh7RjngfT2Uw3W33EvhSPQdCHbLbcoFAEfVfHa+0oMTS5DNAmFfvY4poCpWRGvdiUPsF3IsdveZ + om1VYnPUsbKb2+CrMunSAMdBTtHvSu6LzFXubbu0MTuXO7hx8uMjhyvFPTYl4jBVIzEEBnBvb/D3j57p + bVab9HaTs5RrdyRT59C6PltN7mja9naFbA+IAvCQ+jfIdLP42dK9lfIrc2H696p2++4t7bwzbholSSTC + 4aSSpM8n946uI/5JSx6/RI1hwfY02XcE2Dk796ua6RSh4n7PXpveJ7S7uwhoNHA/4K9Wp9jfHn4C/wAu + XYfY+M+SmYo/kx8qsntbMY/EdZY8x5zq3aOUymP0Q5Kn3DQgt9zSSHhHPBHPsH7tf85838tmIwfR2mXL + ZEjD+HSfIjpBsO5XUW9JOsYZ66flSuDXzPWrhs3fO5aLM0e38dWSYzC5DOVs1TjqZlEUv3EjusD/AJ0o + pCD/AFveMnL+97rtm9TbE6jQ7mredK9ZJvELqNZH8x0qqPE/7g99R06tJPDkcfVKJ3eyf5SWlKsx/HsW + rJE+8C0mc0qD/sdXhUWqPQA1U9O5meWkla5ZHjjcEE8SaAHa/wDjb3kXtMs6befpbhokp8IyOHz6i25V + Yrmqjz/y9J9HC0lTYMCyyKUUm7sRa/8Ar+wreXE0m3XFvG5RWY6qZ1H1PR/9THVJCgqB0jZQIyZSF1aW + bTe/F7c/7b3FdtYxRzMtPEZq0r155xdMFYac+XSnxEjTTQSsUgVaaP8ASfrx9Df2ONkO3WbA7iNA+R6Y + u7eOM9hr1zztTFMKQU8rSywzlpo+bhP8APb3NN/sl66Q7dPpVQDSua/Z1u0osBdlqa46wVNQZYGSniYr + 4wGJB408j6e6XDX9xsr3DgiKADuPw0+Z8unrWJWuVuSull4DqPE1SsUQMdi6BTcnkX91t7+2bb9fiR1p + /EOmJ4fqL6khpXpujppo2eYAgeRgCAPZDBaT3d417EynV6HHSqW2iNx9PU6QOPTbW0U09WqCQgMmol+F + v+Rc+y3c13i3n1iNWA+fRnHDbRxeFbNqY+XWJKeSnZYlLs0zaV0xlr2H+v8AT2lRd0nyYgOk7mdeKig6 + zGieXnzOmtXFzwNd7EX/AMPdwLdTouJURx8QLAEH7OmV+pL6xCxBPEKTjqCaGSLWv3ClvGpjJItrJtZi + fx7bntpbyIx7TNEZhnLgY8/Pow1SOO6GQD/Sno3nwD+Ltd8sPlv0106VMuHyu56XcG+2EQqqem692s65 + rdck0ZdLrUQQmija/Ek0d1YXBIbbZuYri8VLqWHwg3focE0rmgBrnh0j3Xcf3Vtkt0YmUgUUladx+HJ+ + efy6+lJRUdJjqOkx9BTw0lDQ00FHR0lPGsVPS0lLEIKengiSwVERQqqOAAB7koAAUHUFEliWbJPUn3vr + XXvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Tbl/wDi21n/ + ACyP/Qw966ib31/6dFv3/PMf+Pp0ENV+lv8AW/4p7fi+LrkI/DpOVX1P+x/4n2cw8D0nk/sz0w1X/EH/ + AKF9m9t8P+r5dMPxP29Vb/zC8ZWbMyPQHySxlNJP/od7HoYdxpCpaR9u5uup6n93/aPLStSi5/VVAfn3 + GvufDJt0m1c4RKT+77hRJT/fbsp/ZVdP2v1nD9zW+teaLPnL2Nv5An9Z9skNsW4C5gjkXHz0yiX/AEsB + Pl0fijyePzeKoMziaqKtxmWx9JlMdWwMGgq6Cvp1qqSpgcfVZI3VlP8AQ+5zsp4rmCO5gYMkihlI4FWF + QR8iDXrB7cNvvNq3Cfa9yjMVxbSPFKjCjJJGxR1YeRVgQfmOm2r/AD/sf+J9nkXn0WSfF1Wb8z5R2j2v + 8e/jpi2NRNlt1pvvd8UR1mg29i1kp0nmVfoWpVyjgNb9Kf6oe4W91j/WbmfYfb+3OozTi5nA/DElRU/a + gmOfQeo6zy+6Yh9tfbHnv3+3IeGlrZHbbEtjxLqYqxVSeNJjZqaVwz/wno+8yBPSoAVQFAH9AtgB7yVg + AAFOsAJTqOthUnphqf7X+x/4n2aR+fTB6ZZfz/sP+hx7Mo/h/PppuA6Nb8Dv+ytOp/8AW31/77TNe4i+ + 8P8A9OZ3j/qE/wC0626y5+4f/wCJWcq/9TP/ALs+4dbH/vl319GvXvfuvde9+691737r3Xvfuvde9+69 + 1737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvd + e9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X + vfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3XvfuvdV+99/wDMzMx/1CYj/wB1sfvJ + f21/5VKD/TSf8fPWLvuX/wArbP8A6SL/AKtr0Dfse9ALr3v3Xuve/de697917r3v3Xuv/9bSZyS+Ovrp + Llj95Uix+nMze5KPxHoxX4B1HhlYg3t9ePeut9ciGP8Aa+v+H+39+691zDDSE1fVwb251A+9dPeK3r1I + YaBHYkEA2X/kH6W9lV9/bL9nXtRbJ6yxGSoAj/bXyxuFa9rHQdOr2qtioYGT4Qc9aLaVLDy6ty+GO/KT + a2L6K7E28rJXdWb7psNvRmGnyYjM1Ap6kwm3qHqF+D7yc9p9wt4pl8E+fUI+6FnLe7c5pxB62rd2y0mX + iSjpIzJRZemgrY5IxqAjq4RUof8AbML+8zdruvHsFlOScdYK3lm+3bm0L4PH9vQSz7Mr6eaEwRJM8JAQ + Sf2YAbsD7sbcNOHbh0dxbl4NoVrnpfY3b/8AF9UTUgjp0hVb+IKTKPSwH+HtSUt1y/Sf95t6fz6VX9zp + 6SjaGNm8UOghTpGtT+oH3RLq3HYOiu6vpmnYjp6j2zRy0EUc9Ohj1AgMOQT/AEH+v7SX10hhkK+Qr+zq + sF27zxpJwLDog/8AMO6vGX+Pm4czFBHJU7fymLyAcDmOhil1TaOf6Dn3hV9+rZ4ua/Zq23uFay7dIHB8 + 6Ng/sI6zQ/u++Zp7H303TZLtqQzRUp5Y/wCL6Cr4r7XqN5dadeb6iQT0Qxv2dQhALfdQEokbLx+APx7l + X7q24Lzh7U7ZfXjVkgtlBr6rUf5OgZ96i2m5O91tyhg7Yrm5Yr8wadWKYDaEElBTF6SPyoJXYMvBB+oH + ufdultZI3aUA0bT1BG8XjQNHbj4mAboqPaXTZyOTrZ6ehRRNMQsSINDyk/X6+yjeNoS5NYh0r2zf5oVw + 1D0RbtPoaejrmjlpY4AYPIE06QJr+pfr7CdzsSwjhnod7dvpnZdR4joquV63qaSbQKI6LMCCnqupsWAv + 9PZE9mKnHQ1Tczbor149B/V7CkbyBKb1FyVBH1N+bXPsmutv7uHRvbb6fwnrDT9PyZZmgFMFqxYi6Cyj + 8/n20u3LJhR0Y/1hH8XSWzvReSopZkFJNIgBDSKn0/1iDx7QXuxyR6TGOPT8HMiITrboPa7p2uiA8cLs + ACTqUK+r6gHn2h/c89OGPy6PbfmWArx6SUmy6zGjyVMUqMGdQrLYAJ/sfZdc7bcW+SOja23uGdqV6k0W + El1rHoUFm8lz9bfX6+y1QwB1dHSSJJpK+XQl4Xbz0zspiA1qRc3H6hb2U3L0FfSvR7bdw0+p6NZ0jsSP + +9m2jX04qsTJlIGrAULWViCpNj+D7QbfuMf1SmX16Xbht8htG8MVx1dBi/jRjs9uTb+VxdCpociihjoF + tWkIGHq/p7Hcl3bSXiSRnAUDoAJY3qWro9eJ6tR2l14Nk7QxmJp4BEtJDHA5ACs7A6ixFz/X2Pdv3GJo + ljBz5dY5c7bHdSbl3jBrXrLX0MYfSihiVu7EX5/p/wAR7EVrfeRPUWbrtLW1TTpgnoWLPEoNjpN+OD+T + z7OI7gMgc9A+6twQSOoM9CA5B5KW/wBcC1h7ejmJAI6Ip4ckdQjRFHdhpPkDAhjb/BbD2/43z6Y+nX/V + /wAV1CNJ41ZJBwb2YWF7+3lnwCD1r6dP9X/FdN02PMwBW4aMW0/Xj8e1cdyA2ek1zEEj1D16gNQycxst + uebfj2pEwPcD0gx1xMJVSChZV/Vx9QP6+/a6nj0XSfGfy6b1pFne6qYzqIOrgc82Ht2Kbw6nj1rrFLTI + hMTI7kE+tRcf617e3BdPxHXuuCxxL/V3HC3H0/w597a4NKL17rDLT/mwPI4/3u3t6K5rjqqtXrAYgG0K + puo9RPCkHmwHt8SV49W6iSUcQRibrGoJKrxcqP6e3PF+fXs9N/jkjQyeMBCwVQAPUL/W3txGBHHry4FO + vaC45HFjb8cgce7vIRGQvGnWmWoI9eosYlpWeaKY02ilrDJVKbSQxCnbWyH/ABHB9l8RWbbZhdjVXiDw + P2/Z1q2j8DcrXNO5f8PWvz0T01tbpXId0fLjtfC0+Yqd09obpxvx962y0Zdt9Z+nr38m88tR3YtjaFxr + jqFWwkFj7wTuri93z3UuPbDZKrBcVkZl8ifIf8X1n5zLcW8Xt9Z3T/EFUD9nRJO4d3br37vHcO9955mf + N7syfnWfIVUgZKSj8mo42jMdl8MAsq8XCj3lbyBybtntPtl7sW5gPJfJQMeIPGtc9ACGaW9tLdyaiuT0 + j+vfjxv/ALYc5DB4hqXaWPahny288nG0O06HG5LJxY6fL/xNWChYpZVErHge44509y4uU4zbWNHK4x/x + XQitX8Nia0p0cbK9T9G/HXqvdu5KiKDtXfFDS7t2DmoKwCt2nhd6YfdEdVtfd20qqInXBUUEUiNMeCWt + +fcU7JzDu/Ou4z7+xaPUKFRiugUp9h6D1/vl7Jv77TbUKnR3fIju/n0m92Yjunsv4/4D5KVu/wDZ1Bg+ + 7d1/wodH4LLoZ8O+x8KcVQ5/PYlLSQs8cY8L2F7j2m5Zs7645hma4BVSSTXh9nT2+WoglS01eJoNA3rU + 8fs6qZ3DMX3FLLBDUyZAyiknCI7zNUxKY5ECufx/Z9jW/wBomyUHWS3K9jscHKviOF8QCo+2nT9i9r7n + zMD49pYsdDJS6RPOwieCOQ6lkqS59NzwT7POXuUpZY1lkNNfHoN3+/2tvbAAiuejidCbRh6/xcO6MhV5 + CtpsPJUUr56iAmpcZm69C6UlROLhZGQM0K/kD29vPslyXzWy7fziPEtHYMVGWLDgaV4dNW3O15t1v9RZ + VrXSKdCz2J1vnO3+xuu+qodt7ryXZ249vV2a2ziM9jZU14KPGPmzmTGLMUmpkaUPexHPtNzLyP8Ad09p + NmFlttkWeUZovE+Y889LoOf9y3SsU+c0/P8AzdEcoui6bdOxu1eyqLa+vZfSmXbDdi5wU8hpsZlZ5TDB + RRTg2DuQSqkG49w/cbnsrRKlmPDhYVjU4IXyBHRoDdFBIv4uAH+ToMt0/Gfc+Mo+vnOyN3w1Ha2Irtwd + X4mPFyDIbuxVMQ1RkMFAW/fiRTqZltYewLuV5Z/gIwc9LbGSeWRg9SAOi85nYdbi5q2P75RUYp2FfBVS + qlRRPG3jkpKuO90mVuCp9lX1Vv0ZgA5p0y+Cvows1RHLdI2Zzb/J0U8KYiPrf6n23P4MiZ8x0aoV0jPT + RiNzZfAVNbPt/I1OMORenXMJSyshyMVNUfcx01QAeUZwGIHHsklso1qyY1ceqysCAaVpw+XVhvX3zsmy + letD8p9oY7t3a+4NzbXz+7d1V1OlXvSLbmxcO+P2p19jxGqoMYH0GVbX45PsN3trcBzoBoPT/N59NLa6 + 0pXu8ulRuv4m9e944d98fFfeSZ7LzUdFldw9XZmeJdwru7dTy10G0uvcTCVaposdTRk1F7lLc+1Fj9VA + QZa+ufL5dEzahJSXgMY8/n/s8eiE5vZ+49l5Wfbe6cVW4jIwustRj8jE1NO9NDJeOvgS9zEzi8T35t7H + W0XtpcqYJaEkin59GMW5W+1WsxoC0naPzHVw/Q2Zi+Z/TWW+NG+p4T2ns3bNTuTojec9vvslLi6f7iu2 + XX1IC8SKpEMeq5t7kbb9mvLQpJaAkEih9Pl9nWKnPOy3Ps1vcHuVZvqi3OVY7iKvaFkahkpnIr6dVj11 + HkcTXVWJydO9BkcZPU47K4+VQk9FXUspp54JY+bEMpNvckWE07Gkpx1kBuEtvue0Rvtv9n2nHAggHpmn + 9LizXBXUSefx7M7i7CsAx8ujO9CeFbqnlGK/b1w9tLdKzBfXpAeB65o2gk/qv+CB7Uaz69M9SY6iRUtH + pFibf8U9q4boxpor17r33BcLGTpF7lhw1/p9fb0d47OFr1vrK0wIjiLXBPrP/BT7V+OfXrWepwFOW0Iq + aroL8BeTaxPtUra41r1VRpLN69WqfD34ybM33tTcGbzVFDlqymplkp4skPTTTzIW/wAgswuvHHuReXNk + i3CHRJgU1fs6j/ft3ltbrXFk1p0VTd+3ptt7p3FHh5J6ZMZmpoYIVuoVonKaUAP0t7KrmyS3vzawyefr + 0uIeex+pmj8vToO62s3aj08dPn8nTxTSSmVUkIvrbUQb/j2XT317bzNApJCmnSu12Lbri2Sd1ALCp6hT + 7s39tipqanBbmyVG1XDaYRzBQxQekj/G/wBfaC73m+hhLVPTx5W22ftQAkZ6w0HcvcM+hzuvICSCJmSf + zL50v6SDYf4ew3acw3v1h7j1U8tWcQppFekXuHsDf+YlKZfMz1yzAyTI8gYyup9JYAfX3653u4lJEhzX + o22XZYE1OBQdPnWm0s921vDZmxaWoSHLbx3RjtuU1ZVOEo8XT1koWsydfLceOGGPUxe/BA9hndGkubZy + 2dOR1XdHh25JXU07ST8wOr6exe4evPh/isL8bPhXWmkbbNG8HY/yQKxx7031uGtp1bIYmKt0tHLj4ZdU + cLIb2v7kD2/5bG78u/W7mTJVaLEcolD8Q/pHz6x23/d7y53F2t+0E17cf7HVFPcWWymQ3TuKpy1XNX5D + IU9TXVdbUyO89ZWTs0k08hcnmQ8n2ec9b7Dt2yvHElKLpp9gp1MfI0EN0yeoofz6I3tGcHdmDllVV8eY + JklcgC7MQsZP+9e+fG2bg19zjI8gpRjT9vWQZKCBFXyGehboaXLZGfsjF08cyPVTI9E6C6a0bWYif6W9 + imWwvZuYvEjBoKH9nTTk+GxPoepeOo6z+Hw081PL5Eg0ytGt1BvpYn/Yj3kny1FNc7eR8uouvf8Ack/b + 1goNv5GrDMVWOBywUsAGYKx9Vh7QPtc3gTaBgsels8ugIPl1HpNqxTTzwP5Jp0kYGwLIEHJsb/X2RW3L + kwD3CrUpnpg3YQavTruXGUGPZ5ZZ/FDDEIwZWCxvIPoi3P4/Ps2sOV/30wW6OgH+XVhP9SAy5r5efUZ6 + OApFLStRNLMpkE8ckbRtp5MZIJPA/wAPabftl23lq4Gwxbc10zAP9UFJAr+DVwx6dK7OZY7nwH+37K9C + 5tXoTuXfmFyWZ2F1N2BvDCUFE1XUZ3b2AqK/DIka6pnkrI/SAv5/P+HtTt3Jsm4WEh3HdhBYkfqw6wCw + /hC1rXpReXsNtOvcBU/P/N0cfqz+UJ/MR7Yo8PWbc+NnYmNoMtAlVj6zcO2qyip3oDF5lrHkLj9tlN1b + 8j3ay5b9oYn+kuN1CUIWhYfs49Bi93y3t7vS9W86qcV/Yeh06J/kLfObvyh3TksE3XW2sVs7c1dtTPPu + vMtjZoM5jz/laRIzC8S34e/1/Huu4cv8j7FzCbSC5ungZQUMS6lavmp1ZH5fn0YTb9bybYt2tTWua0/n + pP8Ag6HLI/8ACcLvnF9hYbrveHyN+O2AyGQ27LuOrq6jfEMUNLSwxGUwRvJLzILeoH8e6SDlVLZ9ztYr + +V42KrG8RGryrTj+fRTbcxOEN3FSg8/SvqadN+0/5EWyanYmw93br+Z3TtHkd677fakdBid54+ZsJjaH + MPjK+vyGtyY2ZULxA8EEezS0W1mmuI1s5l8CIPXSQGJFdKZoWHD1r0xPzvPHTUgIJPH/AC/Lo8m8P5BX + 8uvrrZe6MxuP51HNZfA4OtraKgwGaw9YtdXxRXpoI1BJIdr3t7Emw3LbikMEPJEE5fHj3CuGb+k5Dflj + onf3JmhdkNzImj8KAU+wY6g9Yfyif5LdRsXbW4N7/NDsKXLZOhWfLUFDVYpI6Ca58tPoi0kWIsAfr7Ey + 8v8AOL3r22wci7WxUYcs3cPP4mrQdPze5reAum6uFJ8qcB+zqwP+Xh8Evhb8f48v3X8am3JvHL7mTc+x + 4+wt411TUV/93sduqTz43EY2QCCkSRqamE7wXMviQs1wVEWc6R7nY7mdp3bbLXbJ4tLNHboB8SAir5Yg + g1pgZ8xQ9F91zRuG/WqrLPJJDWoV/UVFSPMjND1aX7BnRZ1737r3Xvfuvde9+691737r3Xvfuvde9+69 + 1737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Tbl/+LbWf8sj/wBDD3rqJvfX/p0W/f8APMf+Pp0E + NV+lv9b/AIp7fi+LrkI/DpOVX1P+x/4n2cw8D0nk/sz0w1X/ABB/6F9m9t8P+r5dMPxP29Fg+R24+j06 + 73Vsjuneu2Ns4Ld2FqsVUU2VytJDldNQhamyGKxoLVMs1NKqVEDRQtpkRT+PZZzLe8tjaJtt5juY4Yrh + CpDMA2eDKuWJU0YUBoQOpc9mNj92G512/mr2s2q6v7zbZ0lVoYnaGqnujmloIkSRC0cgd1qjMOq2vhL8 + vtobTo63oDsfeuNmxO08nWY7rLsupFXjtvZjby1jLR4vJ1OVSJ6EC4egesCL43FMxRooxJHPtb7i7bt6 + tylvN0pjgYrbXJqsbx1NFYsAU9Yy9BQ6DQqtczfva/dk5n5juYvejkTapVudxiSXddrTRLcwXOgF5Ykh + LCc/huFgLtrUzqGWSQoebuD5MdQdR7Xq9wZnd+Fy1Z9pPNhttbfylDlc9n50jLx09DR0byFYybeSqlCw + xr6nYcAzXvvP3LHLO3tfX10kjaSUijdXkkIGAqqTQermiqMk9YX+2v3ffdH3Q5ki2PZ9rntotarPd3MM + kNtbKTQtJI6qCwzphSssh7VXiRXl8Qe1etN19kdid3ds9j7Xxvbu+644XAbay9XJjINtbWi0eCjxuQyy + R0ztKI4KeJIpi4ihu13nce4o9pOZeXNx5ivubuaNwhj3W9bw4opGKCGEUoqM4CEtRVADEhUzl26zQ+9j + 7Z+4nLXt7sPs97Ycv3lxytssYuLm7gQTNd3h1apJYoWeVQhaSV2eMIZJaLRIUPVpLyxTxrNA6TQyoskU + sMiyQzRyJdJI3UkFSOQQbH3ltbOrqroQa5BBqCPUHz65cTxSwyNDMpR0JDKwIIIwQQcgg4IPDpmqf7X+ + x/4n2aR+fSY9Msv5/wBh/wBDj2ZR/D+fTTcB0a34Hf8AZWnU/wDrb6/99pmvcRfeH/6czvH/AFCf9p1t + 1lz9w/8A8Ss5V/6mf/dn3DrY/wDfLvr6Neve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de6r977/5mZmP+oTE/wDuujHvJf21/wCVSg/00n/Hz1i7 + 7l/8rbP/AKSL/q2vQN+x70Auve/de697917r3v3Xuve/de6//9fSXyDiaurgBp/yyp+v+EzfS/uSj8R6 + MV+AdYY0KAgm9z711vrJ7917rsgAcnj214vy6Z8P59Z1cO0bi+lCVKkkEsOR9PZfcr4koceQ6diGkEN1 + yXRG3kXWxGr0ixsxPFh/X3WTU1u8S4ZhQHq0svgRtO+QuejtfDLNpUbl3f1jPJNHT7wwElZiI7gXzGOU + 1KFF/wBWSotz7lT2d3MpeG2mPdH/ADp0FPcO0Wy2SG/K61uAOH4a9bg3xJ3HB2Z8eOtt0TyO+ZxmNm2p + nFY3lir8HIaeU1PA9YUC/HvOPlXmf6qzERjKlWIyPTrBL3a2f9xcyl4mEiPDG+P6Xl+XRhmwaCaWS19Q + IQC9wfx/vj7G731IxQcegBCBd7dJcKaFaY6e8JSpLGQYEpzDNoJ0lQ4X83P9fZZLeM1T0V6Z/Xp9egE4 + XQLksQwHHAPsvkmcOQD0+rUFHFT1xraA/bv44hqgsdABuxv9Ap9+WVpFeJjQOrCv2jpPdS+GizqP7N1b + 7QDkdFZ+Q2263e3UnZWFmicLLtLLytDb9MtLStLCWXj6+4e93+XPr/YTc9unYPJEruD6hamnWQfsJzZF + yD7z7Tv4Quu+OluAP9DMhC6jxpSvRUP5WdfBuHo/cuDmsZNmb7npmgblY6SqhEMRA/oHVvyfcOfcd5xT + cOQLrZghje2fT6YFf83U+/3jfLzcn82bZcsfG8TSWYZqWoa/z6tMOKRDHTU8dgqMCy34/F9XvLbZp3Nl + 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 + 3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Tbl/+LbWf8sj/wBDD3rqJvfX/p0W + /f8APMf+Pp0ENV+lv9b/AIp7fi+LrkI/DpOVX1P+x/4n2cw8D0nk/sz0FWc6165zOan3HmNg7Kyu4KiB + KSoz2S2pgq/Mz0sSjxU02UqYGnaNQAFRnIFhYce1Ee07Xcym6ntonlIoXaNCxHpqIJp8q9CGz525z2zb + F2Xbd3vbezRi6wRXU8cKua1YRLIEDGpqwWprx6TVT1j1sL2692OP8f7p4H+v5tT+zKHZtoIzaQ/84k/6 + B6oefOeeP76vv+yu4/62dMk/WnXAQ26/2OP9bauCH+wNoPZxDsmzaR/ikP8Azij/AOgemv6+c8VzvV// + ANldx/1s6YKnrfrsXtsLZY+v02vgx/X/AJsezWDYtk/5Q4P+cUf/AED0nPPnPinu3q//AOyy4/62dMc/ + XXXw4GxNmj1fUbYwn+P48Hsyj2DYtQ/xKD/nDH/0D0yefue+J3q//wCyy4/62dNJ2LsijnjqaTZu1aWp + p5ElgqKfbmIgnimAuJIpYoQysD9CDf2eW2w7JE6zxWcCspqCIowQfUELUHpHc87863UDW1zvF7JG4oyN + dTsrA8QymQgg+YIp1Nqf7X+x/wCJ9iePz6CR6ZZfz/sP+hx7Mo/h/PppuA6Nb8Dv+ytOp/8AW31/77TN + e4i+8P8A9OZ3j/qE/wC0626y5+4f/wCJWcq/9TP/ALs+4dbH/vl319GvXvfuvde9+691737r3Xvfuvde + 9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xv + fuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69173 + 7r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3XvfuvdV/d+f8zMzH/UHh//AHWR + +8l/bX/lUYP9NJ/x9usXvcz/AJW6b/SRf9W16Br2PegD1737r3Xvfuvde9+691737r3X/9HSVqzpr6/V + /wArdULf4eVv6e5HaVak9GKmij7OuKsGvb8e/Kwbh1vrl7t17rn7S9V6yJwD/r+2njLGo6dTh1jnP+T1 + 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 + xbt+tFO0cPArmlfXHSeUM8uuBqL9vTNSxzVZEFPT5ipkjRU8EGLylQxgtrUiSGJgRc+3ouQtvgs3s9wn + ozChNCKfn059XLEmqWQafmw/yn/D0pNudUdmbvq2pNode7szdT5PEyU+AzTKsmnVoZxTEKbWNifZxs/s + 7fX9F2G5RjwGp1H/AB4jpM28WSUBYZ9CD/gPQ87V+AHzM3rurG7X278e96ZHcmVx7V1BjFoqimknoB+q + rvURKAv+v7L975K2fl67kseatyiju4v7QAhgK8MrUH8unDv9pGugMR+Q/wCgh0YLcP8AJR/mYYDaibtz + nxp3Lj8NUZDH46ET5DHwyy1mTmENHTgS6bFmNuW9h5Nl9uN0DWce8oTpLHSr1oMk4Wv8ui48yWkMwlZj + Q4yB/wBBdCVsX/hPx/Mq3lPuKCu6jGz4dq7e/vJlXy+cwUhjo3UtFD4y19RAP09kB5H9sEuIpH3skTNp + SiSGp9Ph6cHOVo5bwRr0AknhQDz49GX6R/4TZfK3c23Nkdm9w7uwfWPWW4cnFHWTQJjtxZ2aiR5ZWpaC + hppk/enSndEkkZVj1BzqI0MILa65L2u5uNlsrhrqW3FAuhlDCoyXZcAV9SccM9bvubYo7SK4itifEFVY + utD86AE+XW3pt3b+G2nt/BbV27j6bEbf21h8Zt/BYqjjWGjxmGw1EmOxePpYl4WOGCNI0UcBQB7Juoxd + 2kcu5qWJJPzPHp59+6r1737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfu + vde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r + 3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69 + 1737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvd + e9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X + vfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X/09JqsUrkq0sLD7uqFz/y2b3ITI2o + 46MF+EdYz7vGCK162OuvbnW+s8c4iYto13UrYhvz+efafQ3p1qnXf6pA68i/5sLfkj3ogjB6urACh6yK + haenJAKCtpC5JFgoqVLEn/W9vWoja6jWX4Swr9nWpDqhbRkkY6uGyO3sjt/sHrHs7F5EUu3qLZuGgycj + /wDATKU1XAsJpVjayIVueb+8oeWo4I9r/wAXNV6iDfnjjuvDf+09OgG3elb0L8ttp9kwuEwm6c5SVNOY + yEglxGQsterMNKsGBsfUR7jPfmuNu50G+zjRYuqosnkXHEU6FOxQNuewNtUA13aksY/MIeBr1uDfyvsz + C+yeyOvpq41Qw+4E3btimMmsQbT3DEklKtOCf0LKJf0C3+PucoLrxIILqM1jYYPrjrE/nvariO6uKJmI + 93y6tGSh0L+i4bgAf2rc8X9mBug2QeHUWiKQitOsookYXNueCLj/AHv3U3BU0694T+nUSXHqHDBAACOe + P+Iv7dF3RO49NTRyaOHXE0Y1uAB+DyD/ALx7oL6PSDXpJ4T+nVB384jb7YPsT49dii6U1Nk6SllnQFH1 + YrJx1GryqB+kP/X3gF966K6233G5Y5xkXRZwkpJL/CS9QCPz9euqP3DrmDfvZnnLkVG17hMzPDB5smjJ + B8v2dXy42elzWE2rmaV1kpK/auAnilUhku+LjLEMtwST+b+80OR755OXoZZDmYB1+akAg9c6/cCzay50 + udt06ZLZmSRf4WB4dOcNFCwv6Tyf9cfn6exa10fI9BRYpK8Osc2PVwWe1ktpOnn/AG3tv6p/TqvhP6dQ + /wCHK62RdZ4Jt/T68W/HtyC77jqNOqsjIMilepT0MYiVCvKryv8AxW3uwuu456rUUr03viYpdTW9YX0f + 1Fv8fdIbvTlz59e6Z67CxyxIWjGtGs50qSf6MdQ9mI3J42IjODx6ZmVmACD7eoDY00MjOkVw6lpGRRYF + RxbSPav6yGVO9sjpnw5PTpnp8NnIp55zN/kdcwCalFxqNtIJ96W9hYDWeHRlbA9OePweWxmXihjZv4fM + pdoWBLK1/Vdv8T7rNe2kkJqe4dH9u8UIpKaHy6FihjbSoeMqL255tbi9vYTuyTJVM9G8U60GhuPSnoYQ + jpobxSGVfGb2uwa4HHsMbncSDarp4xUqj/4D0POUr9LTckiuH06iAPnXo0fce8qihq9qYmNzag23iwD6 + gfI8QZ72P+PvGn2OEfMabju051KtzLED8x5dZG8yX77VaRwE6WZAwHyPn0h4KufMBS2siNAVub6mZfqo + 9zC1pDtM8s7miN1GMW9XE0UgmJCHiegF+SNXXbQ64rUo6hqHJZxZKUSqjNLFSzjQWQrZlJ+gPs85fVry + 7MtuNUSEVPkOgbc7dJfXIaAah69UYbx3H2ZsEPWYqvykdFBOWoTJPVSl66X/ADkj6jyLc8+5Vi5itIG+ + jjIcL8h0/Ly2dGop5dVX/IjeG7N0ZqtqsrkqiuyFT5Z5FmaWUxSEESKutjpFvwfYjXe53t/01oBTooj5 + dVboFlxnqvbc1I5n8kmsyOratN+SDz73HuFvJT6l6dCG2gnsyfAXoH8uniubEC5sTyTb6e3GfUC0Jqh4 + HowW1unb6mVaas16SE1RKrPZQwCkkA2IW/Bv70zMgq3SsFGNK56T1dVRGK8Nw0jaWBUX54J9XtvxPn08 + tvI4qgr0wn0Pb6Ecjn6L7Qs8uskdHUcCBADxp1JjkkQqSh0SkIDe5JP0sPamzMxc0FcdMXtu5jHgipB6 + eqaL7apkZpGAjjBijUMRKxHqXj2uZ2Hl0ULqV9MwpTrLW1cjrDH4RDriaVhwP1G9ww9qfqHX4sdUhn+s + YiPNMdMMYBmBn1LGCb3JYEr9Ab+2ZbkPRwcLx+XS9IpYFPgCtePS329R5DM1dNTY9S4lqY1SOP8AUFLa + CfRz/U+zPbZZbhgsHdQivQV3iR4o38YU7T/g6tDo8ltTYe3dtbdadnybrStWSsbJAJlDSlmawJHuQ2nh + QAseoMlhnmYiJa5PQjeXYm88jjHOcpBS0rJT1MemFSQo0rfk/n3uO9tqHS1emV2/cI6+JHSvDoKe09mb + FonrclidywTihkDLSI8SOJy+r0sGvx72+4RxIZo8soqB6kcOr/Q3df7PoLOo9iL2923sDZlTl0pcdld2 + 0X8cydROiiHB0k4qsoWlckA+FWC3/P09gjnDe7rd9jlR1Ky6TRR69DLa3s7KDRdto6Mn/MiqN2b97p6+ + zW03jp+pup8bFsraeJhKQY2hxWOkWFco0I/aeep0mQzWDc8n3CPIPtzcwF983OPRd6yRKx4KcgVI8vt6 + WvuW2XVk8FpJqeuB0FOyfj9vLuuuzOYw0a7R6x241JLvjsjPuKGnxuNlI/idXRUuRC/dCOPU48JN7cex + Lzf7mDl9PpYZfrb0YhAzRvtqadEtrtEIar4mJGgeZPQVbr+Rnx2+O9RntpfHzF0/au/5qCvoJu6K1UXG + UeZxO54MptTPU236u62+1geJ0UeoNz7x0vd95n5t3kJvsbRjVnNft8+pau9vubva4kcZWlR9nHyI/b0T + /cXf3YnaW9YM9vrdFTlJcpXbszv2OMebE4zFVm56s5XMQQ4yF/GIJZ/WIVXSP6e5s5Q5P2+3ukDmqKME + /P19eijdeVbO7gaS3cGaQIHXTntxg0x+XRfc8JqrIVFZj8fJX5Jg8b6I2RHpnHqMagWWx+p9ijmvl2BI + zNt4DuOHAdC3l20Ww2l7K8QID5kiuOnmj683XuMUcjxvT2jp0jCRvUz6SPVHFTopZz/goJ9k+1bbfIw8 + VAPzHWrrcrCyyjjoe9k/GpK+Xb8iYurzybl3DTbRxNRUCWhospuquP7OCaadBHHILEtc3W3I9iyIbNAo + +qkAkHxCladBm55ogkkeOGTvXJFOjkbM2/iuldrdr7xrNpbboMn0/uyLrDcWFrazEVlR/eeopZKlpKOO + UhpI4fGYzJH6SSPYl2i65fG4RWtqQ8roXrTgoIB/PPRPe3O9blblYQWrkDOR0uc1vHrbefcfQPUGa7j2 + nt7Z+/MTRbl3bvim23QNTbBlq8K+WfEVUEHEzBl+3N+dRv8AX2F/cPm6J9peHY49VypZQgxUg0rWvn09 + sdpzDYTGXdIikWDUk8P9joluLh6s3LRfLTPZftTG4vJdLZGsj6U26cF9xUdtZObImkozTvYmnRov3P6C + 9veMl5zZNbR+FtQZ7s/26gHsfzFRx6mqaWE2EExNFZQQeo0nSOM3lH8SNr7c7H25mO0vkpU7goN47Nqa + Shxf+h2pxMgFHJk8jPZJfukLOPJ9LW9xzfblPLM9zdqVm8wQcjicno2294niorV0ip+zoHN0fFLdTba3 + Vvak21S5nZm3O9j8c6Lc9DkaZqjdnaTsy0FJQYeAGXwylGtMgKe0P7ySvc1D6dK1kR38KNqnj0WzeXSu + c2lm85j8vQ5DDZva+Skwm56JqCrno8Nn0Fnw0leI/Eai17Rag5+un3aTcLGWmiSp+zq0bxKe88Og7r8V + uimjo6cRs6Yx3ejW5iqKUyfuvVSxGzKbi9mAPstkhjuSfDzTo7sr6IXCeE1R+I+g6j5jJU9d/D8jaajy + sUNq6rh1xVM0wNvuoJ1s0ch/1YN/af8Ad9RpI/2ehBvsu23dsjQODItK46MZ0t8ye4emlfEUmdh3ZsSu + xcmCym19y0q5rz7bqKxMhXY/HS5BmFLNUTxx+SeMAsBY39opNsvLYf4ulfz6AkwhVtS8T5+QPr0dqn2n + 8U/nJFWf6Nami6J77y1QuWyW2shPDPj945PJQeWubHzSHxUcdJULHSCJbavJqH09sWt1utrdoJFKKcce + g9ul5ebNcR7+QZo7WtU8mB/F6cOirpsHsLo7ctRsHe1Bkdj72wO68fLSuv3EkSVVDWrItfjMrEFRxrVS + GhY3HF/eRfJu97Ixghu5gruyqRThXoL75ullzPBd7hBS5W6heIwmlEDimqhJGOjHfJ/set757Xl37Pgl + wObXa239sbnZCjjdWYwlIsEu6v276GnABYE3/r7mnfdks4Wrt5EgH+DoFe3PL9hyPyrFstjKWKliFzjU + a6fy6LfV7fnjLeVXMsd1MYU8r9A17eyO3J0aT5Y6lcuTHGXGk6R00Jhyrh21AA3YfhRfjj28dX4OPl15 + PDLgOaCuehFwlFJDTRxuTURM/kuLoVutyLexHtclypAlFOi/d0sKEI3T+2KjeJmj9KlixFr2v+fYnEjU + HQfijhZK16R1bHJHNJGnCuLAgC5/1re6u7aSRx6c8GI/CanpPiKojdWYG2s2B1c8+0+qb06r4TenUyWq + MSyNMAmiJpXXVdRGn5uPe7URpHeS3PaCv+Tqsfi/VNDAKsY2UD+keA6PP8JqmlyTbtjr4nFLkMINITUx + KxxubMV/rx9fcVclzQzc0XAhaqeHJ1lzvoP+sfyrBxmspaTj+DUcft6IJ2XEke9s5HJ64INySIBbSREa + uyJx/h7xh3mr8/OsWTrP+HrLCUrJ7WpT/fQ/wdKHd0uIgqqSSNrLAKVlGrlSUBaO/wDr+5M503nY9tsb + Oz3GUrPOtFUKWqfmRw/PrGfli8l5X58tt43D9G2eEhX41P2dLXbT5TdhkqhHU6Wp0R41jmaKnM5EcbNG + AQqpb1OeBf2/t8FrtG2x3u8SJBFcjRAWZQXkI7VoSCK9CO/3i65hjfa7HU0sl2kgFDmME1bo4WZ+MPYf + SdfsWn7HwZwZ7E29T7y27DXEViy4LIRlqCRHkQDTJYnSL2/Pt/7qHPPJPv7z7vHKvI98u5S7AzjcFwot + zGe+pJNaflXqCfvLbNzLtGxLNKjJbj4mrw/Lrlitg4tKWqkqMfjAzzuXlFDTKQyMfSbL7z1seQ+WLJ2u + LBlYMSQQB/m6wU3jmm7NpFFExIVQAan/AD9LDb3Wu25qXJ7nrcBRZum2NisjvGtwUaU9K2eocVEW/hf3 + AWyh2Kk3NuPcF/eL36z5G9vpr6d/C+obwkIFaseAx69SR7GQ7rzpvV7s1qhlnEQZFrxA+I+fTD8V9s7k + t2BK2VoKPI9lU2E7ApsfixTyx4LFZivni/hDJSXVJBHCq/S4tf8APuM/YXdLrduQ7y0kNbuIGV0JysZ4 + N+zy6Y9ybN9q3a32q6XRcOwRF9WB4V62VId0dT9PdQ/GXuzvjfWFxe2sRtvd1LWYuKuohkKuamoo/sqO + spI5FlZ5SCPI4/w/HuBOfeWdz3/mAQWSNLFWpOfXqWuStytbPdVa8fQNIFfmAOtOv+Yn3r1p8ufkmYer + adMBtyTcOQyNNM6l0p6CpYXDKrHVcLqHsu2nZrex3ZdrRv1ARUenQyaR1v7m8izHIQVPr1IwmJ2vi6vD + 0iURzUhx0VFFXRutOn7Mf7czRj6i4/PvJmDYY7WzjMqhS1APmT1ptxKglj0gt45Lde4txNQw1GdMc1JT + mHGYv+IQ0iJFM0SRLJTej6C59ybyzZywwG1hXvA4DoB8xz28SrcXLaVOAfn0KfSnwQ+W/wAjt3vhupep + MpvWrp4KWSstPJoxq1chigNXVvE6qW/o5Hslu9y2XZN3D8yTfTj5itR8ug427230hiiertkY8v29WIUf + /Cev5ut2HsvYHYsu1OrareWEzWepZchuLCSLR43A0/3dcWEix+q3Gm1yfaLf/cDlKaEblyxI14Ld1UhY + 2FWJoPXHSex3pbaTwNybR4g8z5ftHQ+de/ySviBitg7H378h/nLtvES5zfMm2cnt2jxNPUSwww1JpJG8 + 9NyLlTZvbd0fdPetwkTaNmeZUjDhtVASeCivn69FV1zhy9C7Q212NYNCADgDz6O92J8NP5Cvxq683dWK + 9V3duSi21WR4WKny8mPNZkoacsJ1uRbURf2v2Llb7zM80byyx7Nt5w6vGshVvNq0zjy6Bl57l28t61js + 0xuHH28ep/Tvzv8A5RvV2xMB/oq+EuJrM1S4OKQNmcvi8lI2Thg0MJnrLlryAmx9jS89i+cOZpS+784w + vH/CltoLDzFRwPz6KNy9wN+QLYyWrI8nnUmvQO9afz0sT1dnuy9qbG6C62wEdbuqs3HQVFZtjblbJQw1 + UKolGkr2uFtxb2if2F9t57iOy37dp53jAUrFK8Rb81NR16K85yt4RfR22oNk+emn2j/AegN7G/n8/Jp+ + 48Dv/bdVsba0MeGk27LQ0mzcQjGkVtUaRSQONJN/qD7FMftV7Dct2w2K52uedFOrVLdNI5J9XbJH29Or + uXNW5Q/XGM6uFB59Fw+Xv8635cdvdc1uGq+zVx9PBlKDMQQY+lelEVXQuJqWZfBP/ZIHFve59q9l+UrR + 985Y2bw7pBoDO4ddD4YFTxqPPpdytYcxbtv8VnusZWAhiTXzAx1XfXfzOPlxnsvm8pke5d1vNubb9Dhc + ytJmcxSRVkVOgZFEUdTYAj6/19hO0532KCZAm3QBIsrVEND68OpXbkyArpVjk/6h1sB/yJ9y9v8Aa+ze + zuy99bw3nmtjYCspNg7Mx+ey+arcRNm5dOe3NWY+OrrHiZqWNqOJv8lsvmIjkv5UBL7l877XzBtdrte2 + WUNuwcyyyJGiu9AVQEhdQHcxI1UJAqMDoG3mx2u17m7oG8QDTUuxWhpWi8BkD9nWwP7hjr3Xvfuvde9+ + 691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfu + vde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r + 3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69 + 1737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvd + e9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X + vfuvde9+691737r3Xvfuvde9+691/9TShr/+B9Z/1F1H/W4+5Mk+M9GKcB1D90631737r3XRso9XA+nP + +29+691IpgWUleQG+v8AQn+p9syfF1o9c0WeWRKYQtLJU1VNFBCL6ppJZlVEUjn6n8e9W6a7hE9WHVWb + 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 + K/b6flw6hPeLwX25S3C/CTRf9KMD9vH8+jl+3ui3r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xu + ve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6//V + 0n8mWSsrWAPFZUfj/m8fclsQTUdGK/AOoKymS5IPA/pY/X6W91631lH1H+uP979+691zkTyLp+vIP/G/ + fiaZPXupdEoijZeB6yefz/jz7TTEGTtPWulfsbxVG/NlebSaePdGL8hIUjStSCLj82/p7UWCk38OvhqH + Se6BFtIy8adWy4ehyexPkDnt15jNePbW7I6LEUtNO4iirlrqQRrNLExAj8Rtaw9z5sfiK2AdNePl1Ge5 + CFlLMRq/n0Ie0dq7Q2huTe3RWZ15OHuDE5TcFXKys8cNRAhmpUAFwFYEWYDn2N7W2hvri4hqCix1B8q0 + /wAPQI3LVa/T3gxI8gWnnQHo4v8AwnQ3c+2vkN8j+pcm7NiNu4quy1DM4DGCpWseNoIkb9N0VRdQL+4z + 5VuZ33G8s/NXoo9RqzT7B0MfdmkXJca8DKq/njrbB3Buipo2SbF0vlx8sM9ZLK11CeFNTn/Y29zHte2x + XSf4y1GqAPXPDHWKCwLQVHl0EG2N9Z/ecdfncPVu0mQqXwuOoD6Ysd4n0SVKNfkj68+xBuOyWO2g27EV + QaicVJ9OtrEhz0utx9k4DqXALU7wzMc1RSQBpfVGZ8lU/Uh0Y3H9OPYetNhuN8uVjtEIV65IoAB8+k13 + pgiMiGpHl0XPcHzo2Bt/DtkpDFOXjkkFCrqywhrlAWDX/P59ige2zg0aTos+tk9P8H+fqtP5h/LnCfJX + 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 + mE41eVUceRR/qWuPYZivbqRYotLUBGc9HM6Kho3RvegumuxNx9jbmyuIoKOHBT1Jhauy1R/DYmcU6O32 + fkAWQc/VfeTnscj23MbyuCFI4nh1FXu5JbNsKpC4dq8Aan+XRkd7dWUe0NzbcrNy7xhoJaulyEQx+Gki + yHkaNAXF4ufeRW5bns9tupu9wj1yqOygqadRdsl2jbCbCdKqxqTTAr5V6APvmp68ptu4hqigrsqlPkZZ + adsnBNSNV+jTJo1fUf1t7hD3G3Hl7fJBLPC0ToaqWBFD5HPUse39/a7ORt9ggYTYYjNAfWnQQ0O7MfJs + +ohxeCo8VR08MMtE8cutpGMvrV1b6afx7I9piP0eqJ9QpxBr0bqyxbvcalpxyfPp3yGYyElEXkygS1Em + nUEUhTDqCkn8e/blX+rjuHGvU2K56DW0yNFfSOqHLny6JZVZnPVEtT/lVdP45ZiVjjk0BfKbFDGbG/uC + 4OZL6y8SPu4n16k8xeKFZ1waZ/L7MdO2EwddkGByFLkYYpElmjqDHOWllC3jja/0BPHsP3V5d7hciVw3 + 8+vUZTpVaj7OszbZysUVPWLiZ3kRjdJPOAPV6SbezOeaZLJUqajqzQyL2hDT7OnippM3kaUQNjDGUCqH + YNcXH9PdI9x8GxZ5TUV4dWjhlLgFD+zqy7+T78Q6/wCQfzX6zjz+Khruv+qag9q74WemoMhRT0u25BNg + MTXUdebPFXZQ0lNIyI5VCxGk2ZVW03sd/deEiUC5OOAHD/N+fRHzZdNtmzuxGl5OxftbjT7Fqftp19Ar + 2L+oQ697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 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 + Xuk/ur/j3st/1CN/0MPai0/3JT7eoi9+f+nP7/8A88p/4+nRaZ/7X++/s+xjH5dcefLpmm/tf67f737X + x/D+zpnppm+rf7H/AIn2awfF/q+fTb/D0kNy53EbZxOT3BuDJUWGwmHo6mvyeUyEyU1FRUVNGZZ6monk + ICqqgkk+1M13bWVu11duI40FWZjQAdGGzbJuvMW5w7Jsdu91d3LhI4o11O7E4AH+EmgHEkDqvR/mZv8A + 7cyFXR/Ffo3MdmYGkqZKOTs7eNc2zuv53jkMTy4iV1NTXRK4Ks8C244+vsCLz/u28TmHk3bWukU0M0p0 + R/lwJH51+XWXg+67yR7f2Ed/7/8ANsWy3Eqhl2+zUXN4Ac0c0ZUNPVCvox67yPZvzw2tB/Fc/wBB9R70 + x0Z1VOK683tm6PPxxKdcjwf3mTwSMF+gBBJ4A59rjv3ufZDx7nabeeMZKwyMHp8tTN/gPSa29tvueb/J + +79m513Tb7hsJJf2sTQFjgavCiQgV8ywA8z0InSvyi2B3XW5TasFLm9j9l4CIy7i6z3rQtiN1YyJHEZq + 4qWXiopyWXTPFdSGB9i7lLn3Z+ZZWsQGtbyP4oJRpfHHT/EB+R+XUU+7/wB3Hnb2mtIt/d4d32O5p4O4 + 2beJA1eAkpUxsc0qSpphq46H+b6N/sP97HuSYvLrHuTh01S/n/kL2si4/s6YPTZL/a/1l9mMfw/n023A + dGu+B/8A2Vj1T/r77/8Afa5n3D33hf8ApzW8/wDUJ/2nW3WXP3D/APxKzlb/AKmf/dn3DrY798v+vo16 + 97917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv + e/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3 + v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697 + 917qv7vz/mZmY/6g8P8A+6yL3kv7a/8AKowf6aX/AKuN1i77l/8AK3T/AOki/wCra9A17HvQC697917r + 3v3Xuve/de697917r//Q0o8iGNdXBOT93VWH/T1jx7kBviPRgPhH2dQ1Egv5BY34/wCJ96691yAFxx+R + 73qb1631kkcIuo/1A/31vdSAePWuuo6hbG/PJ+h/4r7bwsgI630NfQ2TzWJ7X2ZmNsUoqsxQ18Tx0unU + sixHVUu6/wCoRLk+xJtH/JQt/wDTj/L0xegfSyBsjSerlu5NtYfeG3Nud0TTSyU20xNmVjpSDK+XpW1i + NBx6i4YAW9zbb/2vUd3PbGFU0Hp07dgZbMbw602l2/svxYujjoIc5uWSr1R5ORqFDHJQIRa5b+lvYus2 + juLEWSqDISTXzp0FrxjDPGxP6eodvlX16H3+Tt8PqT5G9Pd/byYOqvvhloZBYWrjV+WfWda8jUL8ezzY + LuLlu/ieQ+HqJwPPFeg57pxG/FtMO5VHA8OHWwZ8cPiTF1Zj56TceCpMj5Z1qI6xINc8SpwQjlzawFz7 + Ee+c3RXSskUv2VOOo3sljiodAFerNtm4mnocXS0FJLJNRuihYmN3pxfhLfj3CG+Sm4uJLpzpqfLgfs6P + I76IsISo6VVVtyIOAqs4FzYi4tb629o7fcP0tPAdGJt42h8QqB16HFwxgolOQw+jBDYf1592e41HVUdM + rDGRkdM+5MD/ABDbm6ccVBWu23nKUJawYzY91tp/x9lV1IkiTwsAVdfhPA1BGf29JYY5I9xs7yKqtFcp + 3DiBqHWtj/JlzNTtz5s9/wDVwlCY/dWCzdTV07GxlqNvZCSSNUHq5XVc8+8K/u2TDbebOYLZgNSznT/R + Gs4HXS/72tvFuntfsN3Cgr4SEnzJ0DPWzrR0fji8a8oLFGtyVP1HvN24nDx6k8x1zX22PVtk6HLAmh8x + 06xU8baVVG1Gy6gOC34J9ohOwGT15IP01rxp1JONf/X/ANcfT/W96Fx69PRwAk0HXhRlBpK3YfQ3H+w9 + 28aua9KPB+X8usC066gAWHP0/wBj/j799QfT/V+3pJ4C1+HqLPTL5nPBtb8/T/b+3oZ+IJ614CHBXrCc + eWN1VbH/AFz7fNyNJFeq/Sx/w9OUFEircg2vyORfj6e0TTy6snrYt0HBesjUikqFQEHk8XsRzb3oy6h3 + npTDAukgL1jdAQylAebcgAj3ZTkZx1S4grbuAM06CPvmSHEdA95Zdo1BxvVW76hGA5WUY1tBH+N/ZHvb + sV1KeIofmKcPs6FHJsFPc3aY5BVFi1BTwDU+IfPoOPj3s2ll6A6PyEtIhq5tgY6unAX6/dKagBuf9qB9 + m/Je6TWezNaI2lA5oPIfZ0r58Qzc3Xsj9xL8T9nS43hs+BoFyyAUUcCMskSARrUuR6fIL8+xZDurNSFp + DkjNeAr0EWg0gvGg1AGn29UG/wA3nsDO7H6z6960o2njyPbW6448fj1t5qmjpJAy/bqAbqW/xHtX7mzW + O48uJa2sgEiMoJU5IoK16GnssLrbb27n3OLxA1dOsVp9nVe/Wdb2f1V8kvjd0Tu2bwde7uw++u8MZBWk + iKGvxO23p6tqQc+tWWx9X1/HuEtq1cvbi1+zEwMooPKo49SDul1HzBaT7REoW4Qkkj4qHh1rv/JHso7n + 7j7LztH/AJRR1W787HGJ/U6rFXurO3A+oHB9gjmy5tt43wbysa6UDDh6inUk+0G5TbByrc7FuUhlR3Xs + c1Bo1Rj5dT/jRuOngO9mhXHxT5GOlip2jBWudIXEzmPj9ANz/r+5s+71eQM05ZQacK+XUX+/Oi6vIBYD + wa8dGB0ZCGpxtXUVNRXGRCsDCIrxMZmPOr/XPvKkSNJ+oDx6gcwSIBFISSONesCVYlQ0+v8AyTTYIhs/ + kvcMw971MfPpPNEFSqYNenybJ08+P+1WQmQR6Qkjc3VbA397oDnpZapIoqDQ/LoMq/GwrLpn0oXF4wBY + E3vcj3vs/Eo6ECpIyhq8fn02VdHFPTmkjJ8w5RQLXa3I0/8AE+0d5bpMgCqAQfLpwu8RrIajpOybfhgW + Nzdjq9f6Sur8i3tELB14Hq4vZF7lYjrtsefWz/pVGbUfwFW49XvZUAUp0rhlkLAlj00fd0rNGEKXdQv1 + 59H4F/e/0wcgHpdcRlkWmesk9JA6AvKV1WuLjhf8PdhJp8gOk3hP0+Ymh+6asZJkEdFCphjv65Wt9dPv + XiH16dp0G+bqJ2q0DRSQuJGWU206/wCh4/HsvvnJZaHy6NLDwxE+oAmvUdBVSoxpg0lg2r6N+ebj2Vza + niZK8RTpLLHquQaYB6Frqfaddkd1bOkhlkiq4t27dmiZjYRquTjLqTf+0OD73u0CbZssFxQLwqem92Id + NMWOtk3OdQZvvHcO5KXE5zH7D6ooabEnsDtrcM32mKSroKNVq8Dg8kpH+XAArEh/NvYf5i9zbXYY4YNh + t1bdWQadI7qfs6jHmG3tvp2muY1Yj8Tcfs6LX2l3r190nszdW1/ixtFKepoKN4artfe9KF3nW5DHm8VZ + iMjGGBUyDywk/wCB9oLD2/5l9ydvm5k55nkjuIBqiiY4YnypUdRtt+8xNuMdjbjSJGpQfL/J1Srl977u + 7JxdZuLsndGb3rumtyNdWVVZlp/upRNV1XlqNTWHMjepv8fY25Y5Ps9nsh4sCB/WmepRisYY5vEVQD/g + PQLQ4rJ1GdEtNjDFGs9VClSIyBE5iZk1t/r+9T7FBcbw10x0kgDHy6Gu32tbETPMQM4rgU65U3XlfnKy + jpHzPhkyEphjgpJLVFXUsfVSQhjyXb02/r7R71YRCIwGcgfb05BzZb7JdpcufFWA6ihyG05oR0P+zfi7 + lM/U7aqaXaGYr6bMbupeusblK+lDYtd8Tp5V29PIG/zgT1lP6fn2SWe32Fv3zv4gGfy6Jb73MNzeVWFY + xqN0QBT9NsaeHDoZ6Dq3CbSwlFurOZ7r/bdNRd80vQmewckzQbmxlYXb+NbtMVyFx1KqMDL+Gtz7F1nz + HtUDiyihB0rqBpg/L7ekF5vV9fRGWFCA4Lj7Dkf7HS1n+SfT/SM/euLx3Ye5crufZu7P7p9MZLalYr4n + cW3Y4mFTm8zIVYyB3C+Nx+D7E23c6QWd1HOEVUI7uOocMDHQZg5a3ne5FMjN4bVJr5EE0/l/h66yPzx6 + R3j2J8dGys/a+Y652rksXWd1YnJGOasz1fND/l0OIj0APEZToQH+wfYZ9wuY5902iaKBwjsT4bLxCn1+ + fQys+W5dui/VAOK0PyFOi7RfID4/YHsf5j5bc+1d2VlJv7G5yg+MOIhp0MGzsxXZPzUNZmYiP2jDB6QR + 9PeN7b/ve631tttrK4MA0uQctTzPUo+Eo22BVAHYM9Bhj+1vjZldgfFrYled94/sWDsvJn5VbtkMaY2f + YlXXo1BHtWptfzx0+u9/7VvYO33ftxu+ZZdmumOmJNQB9R59CDbkjELFBmnHz6Wm7uv/AI0ZjE997m6/ + 7Hr6eag+RGz+tvjttrdVcq5DNdVbsqVpanfO7IFPrWiZtc0w/St/Yfu2cDJ63akPcUap48emrsD4Rbiw + T90ZHbe8euextu9Ldl7K6jmze2Kp65ewd3dgQJJhY9kSF/340kkWOW9+bi49nmmEwI4TTVQa+fDosS6R + ZWUcdRFB9vRbN/fGXtnrbI7sptx9fbhpjs7dy7B3RX0lCFxeN31Uxeem2iHLHTWMvIi/oPr7RG7Fv3Mc + Nw6MDIkoAjABHHouOTw9VjKytoq2T7PIUs8dNUUEpdKqiq3b1UdQn4cfke7DdFHA9Nsa06TVaKpZpYZ4 + 5TFHqETPbSWC+q5H+HtNJeWt72hF6VVQ5NOhf6N707X6Pyi7j6v3tuDatXS1VO/2+Lq2p8dVmJShp8iC + rXRkLIR/qSfZVcbdErhEASvCnRduOzcv79Edv3KNDcSV8NzxWooTX86/b1bJsre3x3/mPYym667OxG3e + ifk4I5abYu/dvRDD7M3lkXINJS7xrGCNLLK/oTSeSfa5LO8Sjo5VuIP4aD16xv5n23nP2Cuf3xZPLu+2 + qwd0k73RSe4oM0C8a+nRdM/1bvHo3du5OqOzsLNhd6bIqjRZWmqomhirYAb0mUoQxOqnnWzxtc3B95ze + 3Mxm5BiklyaZr0cJzbb75ZJ7iWBFwtye2M5ArxFKDh9nSCy2cqZWR6dVCavFpYWCpexKgexbK6lY6D8P + QjgszDAt0zEm6HiU/gr+EenSVyZmqGRo3Q2P/JR/px7TsNSFR59Pr2MG9Ooa0aEMZnVWZW1BD9D/AF59 + ovpG/jPS76v+iOnKgp6GjpxJCUkcxk6m/Vf6n0+7qRCBGxqemm1TN4gwOmqurHqNTvYRLfUf6f0F/biX + EaurHhUdNtBK1F4dw/w9M0kaQmKrjtIL+PQ/MY8vCsw/3r2UWcH7s5z3Lc7vvgW2LBG+EECtR0c311Hf + 7Jd7dbrplW4iUMPiocUH29WKbzy2e6l+P3VnSfV1Cu4OzO99lbjG78Tjk82Qk25u94KrHII7H99UgfTy + Pz748WfLm7e/H3ht/wB2iMklrZ3IeIHKKIq6lXhjrq9z1zDtPsX92jaNkaKOG7vrJVkcCjlpB8THPQP/ + AAKSuwXbs2OzeElq8vi8hU0NTini11uMqYnCStXR/wBlk+h/pf3nt7TTRz87wwUotjDJGV8qig6xY5Hu + I09hN+gfukvJFkDHjQEnHSP+Yx8Xbu+Z3oYaCRslI0cUKFBFG66gp/x/r7ij3ujK8+JMPhyflx6yB5Cn + Z/Y+wuCxMyyBQ/4gv8NfTpAGvD7OwKfciZ/sNHjViTGPwjAe8m9mv1n5TsIjkCFcdYM89QCTnfcFQBf1 + vL5gdMuN23NkBA88yJ94Shp4jeT7el5mYKP9cewxue4RQ6UQAdw6Ee1bJHDbRzyKDqIHQ3de0eDpqWF4 + Y1+/q4p0jophepgQelnnT8A249yZyiRfxgQ4NPLqJPcd/ouYI1pRD5eXSN7QrMbjdumryaS01IMisSOo + KlC5sIpv9c+xhzGsVry1JJfKJNPm2egLy4lvLfyyRRirMTj06LmNy7QkSfxZB4qwkGjm8gBSQcaVNvqf + oPcQHmzY4uWjbRW0YmmJUMBn9vUhJZSySFQSB6evR9/iBXY/aWyMjWjCLT9p5Dc0ddhNyPDZqLakb3mo + 1n5t5wT5B+Rb2GfbfYr/AG3fn3dpWCvWmeFfToHc5bdFNbfTyRiRKg0bIr/q4dHAwNZka/I01VWytVvN + NU1M889yrVE5+gI/PHHvJ7b0RYmN9cGSue49BSTYYFnSWzhWNhTKih6JB/McNNkaDpuGiljqMou4Kqnn + pCdVTDrkVYl0r9EJ+nvGn38NvFc7ZLbGtC1aeWepl5Pt/BsZqjJK1Pmft6dsL11T47C0cm7d67RxKUtF + Dk6jHCraLICGaEWiWO/67exNtE7z8mxSwsdSgGo4np69ZhcAAkDUOh4+PP8AMcpPg9Vb7quhduZLdu9N + 70FNhDXbjh+5wBemYtTy07pG506mNzxx7SDnb6WL6W6Svnn1GR0vv+WDub1WQ0I9ejK9GfID+YB/Mhrt + 9UVX2NtvrrC7LEk+TXDV0lBNTy1NO8niogVS1goBHsWcu3V3zHZXG5wExrF20XHlXoJ3W1xbHdJYyd7P + nOetdLs/tzuXK7o3Xgd5dm7u3GMHnMlh5oMhk5ainkGOrnpg+jgfVbiw/wBj7xY3nmzfbXe762lvptK6 + gF1ClK4HDod7XaWaaJDGuM8OnXbHXkO5aWddw5mZ5p9vV+Wxn7up/vKdNdPA9z+f6exHtfKHMG82NrzB + Fcy+Hgmhwft6I49wtBu1wrIKCtOtgf5QCHN/ycfhZXvEXm2/ufNYmRAL+ERU3rKW+hI+vuW+d1gm5YE2 + hfEVAur8WB59U5G3A3++3CK2pRUU8h1rDZOgpf4hU6TLYzSn1f11n3ifbWj3Am1VJ8v29CKa48K6mSQ4 + BwOmJo4llCReU2LFrc3tz6h7IdwiMCFODDp6Fg9JF4dNdQAJSACBwbH6/wBefdbbvgBfJ6dm+PrY7/4T + ffF7/SP8k98/JTcONE+2uhNufwfa09RTwS083ZO/KeWgjmgaW5ElBiFrXLKt1aohIYe5M9udrW43J9yd + e23FFNPxuKftC1/aOo49wdz+n25NuQ905qfXQuf2E0/Yet3P3NnUNde9+691737r3Xvfuvde9+691737 + r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Se3X/x7uW/ + 6hT/ANDr7UWn+5Kfb1Efvx/05/f/APnlP/H06LVP/a/339n2MY/Lrjx5dM039r/Xb/e/a+P4f2dM9M8v + ++/5Jb2awfF/q+fTb/D1Vp8znyXcnfXQfxTqq6qoett21mQ3v2fT0kz0026MPtUwVWO23JURDUtPLO48 + 6arPwD9BeL+dZJ975lsOUQxWCQh5afiHl+wV/M9Z/fdktNu9tvZrmn38MKzbpaq1tYlgD4TEEMQD5ltJ + r6LTzPVguKweG2ziMfgcBi6LD4fFU0VHj8bjoIqSjpKamQRQwwU8QCqqqAAAPc0bdZ22326WdmgjjjAA + UCgH+rz6wP5g37d+Z93uN+364e6u7li8kkjFmYmp4nyHAAYAwOuFR9D/AK5/6GHs5i+IdEfn1XJ8+thp + hdmYv5KbItgu3ulsrj8tiM/QgRTZjbk1WIs/tnNqgH3VLNAXYRS3Ctci1z7in3Y2ZLSxi5y2z9G9s3Xv + XBZf6VONPn5Y6zp+5dz3PvG/XfsXzbW92DfLeZfAk7lilC4Mdfg1VzTgQGGejl7S3FFu7aOA3PAqpFm8 + TQ5IIreRV+4jDuoewuAbi9vcxcvbid22a23IihmjViPmRn+fWHfuHyyOS+dt05YRtQsbmWIH1VW7f5U6 + cJfz/wAhexFFx/Z0Cj02S/2v9ZfZjH8P59NtwHRrvgf/ANlY9U/6++//AH2uZ9w994X/AKc1vP8A1Cf9 + p1t1lz9w/wD8Ss5W/wCpn/3Z9w62O/fL/r6Neve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 17r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/d + e697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3X + uve/de697917r3v3Xuve/de697917r3v3Xuve/de6r+78/5mZmP+oPD/APutj95L+2v/ACqUH+mk/wCP + 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 + Xb/e/a+P4f2dM9EZ7p+Zm3+s+0Yemdq9b7+7h7GhxiZjObe2HS0zy7eoKmniqaGWvqa0rGWmjnR0RWvp + Nz9R7Dm687Q7Vun7mtLWW7uAAWWOgoCARxrXBHWTPtx92XdueOQv9cvf98seXtmd3jinuyx8Vkd43ACk + aaOjDJzSoHRE96dndtbo+T3XPfCfFDvKkwOxttZrCVmGkoKA5mvqsqYGjqKdFfxCOIwm6s4LX/FrewVc + 7lvlzzdb8zLtFyEhUKUp3H7DSnWV3LvKXtlsnsBuvs5Lz/s73O4TmZbgOREgr8LKW1En1HD59GXl+Zm/ + Wvb4d/IVeT+rHYb88/8AHb3IKe4O9Bs7Ddn9n/QPWNp+69yJ/wCFO2H/AKqf9B9N0vzG34b3+IPyBUH+ + uPwx/N/p5vamP3D3riOXrz+X/QPVW+69yEOPufsP/VT/AKD6An5E939ld0dQ7x64xPxX7xxOT3JQfZ0e + RyePxox9JIfrPVfbys5AB/Sqm/8AUeyTnDmbmDmjl+XZoNhu4mkIoxAIFPkAD1LXsZ7U+23tF7lWPPW4 + e4uyXkNqH1RRsyu2oUFCzED5n+XTjtP5Ubu6q6v29jNz/F/u2nodm4Gjo83mYqDHtQQx0UZFTWRlnEjJ + YFgNN7cf4+zbZvcLdOV+X7e13HYbxY7WNVeXAUU/FkcPtPRDzl923lP3U9yNx3Xln3C2WS43a4klgtau + ZWLUISoamrywD9nR3th792z2hszAb+2dXjJ7d3HTSVWNqxG8TOIKqSgqoponAZXinilhkUjhlI9zjy7v + VnzFtUG9bcSYZwStRQ4YqwI+TKR+XWEHuByNvvtrzjfcjczIqXu3uqSBW1KdcayoynzDRujD7adP8v8A + a/1l9ieP4fz6BLcB0a74H/8AZWPVP+vvv/32uZ9w994X/pzW8/8AUJ/2nW3WXP3D/wDxKzlb/qZ/92fc + Otjv3y/6+jXr3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + 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 + dUVuMbI7Lpc8u/OzVaOKpo16/wBjac5mqTJRTG3hyUqU2GuATqrE4+pCDlrbH3beobSYVUNqf5ImSD9t + Av8AtuirmDcf3PsctwO16FU/0zYB/IVb8uvpRRxpEiRRIsccaLHHGihEjRBpREVeAABYAe8j+GB1jxxz + 1z97691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3 + Xvfuvde9+691737r3XvfuvdJ/dX/AB72W/6hT/vLj2otP9yU+3qI/fn/AKc/v/8Azyn/AI+nRaZ/7X++ + /s+xjH5dcePLpmm/tf67f737Xx/D+zpnqpDDvIn81bsbSzIj9XbbWTSSnkA21ibI9v1D/A+48sjT3WuT + /wAJT/q3H1nzvqqfuEbFqFabldU+X+OXfVoNR/0f7meH4uuf46QG994ba2DtvL7t3hmKLA7cwdLJWZHI + 18yw09NAnCcnlndiEjRQWZiFAJPu99udjs9m24bjIIoo+LH+QHqT5Do+5T5Q5j575gg5Y5TtXvL25NEj + Tj82JNAqqMsxNAOiz9S/MroLvPck20Nibsmk3ElIa6lxmcx8+HqMpTo58zYsVRtMyKC7op1BfVawNiXl + 73G5W5hvf3fYzMsp+EOunXT+E1NfsND1MnuT91b3k9rdgPM/MljHJZLTxZLeUS+DXA8UaVKiuNQDLXie + jIyfp/2C/wC9e5Ng4/l1jZ0APyOLDpDs8o5RhszPAMrMp5xsh+o9hzn4kcmbhT/fLf4Opl+7uqt728uB + hX/HYeP+nHQJ/BAD/ZSunwBZRj90fTj676yh9pPZz/p3W2fZL/2kS9DL76H/AIktzT/zUs/+7dadGql/ + tf6y+5Zj+H8+sWm4Do13wP8A+yseqf8AX33/AO+1zPuHvvC/9Oa3n/qE/wC0626y5+4f/wCJWcrf9TP/ + ALs+4dbHfvl/19GvXvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6917 + 37r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9 + +691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvf + 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 + 697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xu + ve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6r+77/5mZmP+oTEf+62P3kv7a/8AKpQf6aT/ + AI+esXfcv/lbZ/8ASRf9W16Br2PegF1737r3Xvfuvde9+691737r3X//1NKfIOfv636f8C6n+v8Ax2b3 + IDfEel6/COm+SpMZta5N/wBP+HtiRyjAjrfXJW8gVghs/wCb82/BHtnxG69Xr1v9f37xG69XrwZUN/z+ + L/0HIvb2uiAltmL8Qeno1ApMOI6GPqvKU9JW1ELsCmQEARWPphYMQzsD9b/4+xDsj0iKjzHRRfv4zeK3 + FeHSvy6TbX3E+VxKMBlKiIzAXAjiU2cEiw5+vuQtjl8Fhp6JpGmm+M9LPfKxjC4vcuNPkeoFPFV1ETXa + 97GMsv8AT88+5a27dmAtZ65tn1ofn0HtwW5W4YJlSP59Hm+D3ya3Z8T+x+qu59mZKFdxU8lbNj6GZFn+ + 3pKUB55pwzLfz30BWP495E7bf7bzpsN7sHNcn+J7oircUNMLwoa46gXmy03Kw3Rd82iMLewGsZ0+fnim + etqXrT+cB8/N/dVZHuvG7U27WbIxuep9t1TznFUlT/Fp5dQo0p5XDklWWxH09wtf/dn9hl3RLK2mm8SR + Syr4rkaV868Py6C937p+9EEJCqmPPwxXPT73D/P47f6Llrth9gde0EW+KjZ38YiVaqimSjOWoz9pI+mY + A6b6rW93T7pXttO9pu9veN4St8NTUhTkVp58K9Fm3+83uzBcWtjuKBkuZxG7FOCtg0PlSuOqS+iO9uwd + nb/2j8ncHmJtv7x3fujM7np6mKR4aPPwVdc1RkcXPCjKjXBKgsxt7MffPfuVLiO25Juyq2trEoQVAP6Y + 7c1r5dZI+13tjzRdScxz8uxM8Ns0UgOkmhkNX8j1vUfHvtGHvjpTr7tyHHNi/wC+OGp6upo2byBKuMGC + rcPc3DOrEc+8HBLGbiSKI1RSdP2Vx0PrPbVzbXwpOvEfPzx0Kj08zSmy8JMuhrfpswN7+7vOsU0aD8YN + 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 + loWcZ77khfnoGWP54U/Jz1vPe5F6iPr3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69791 + 7r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuk/ur/j3stb/lVP/Q49qLT/ + AHJT7eoj9+f+nP7/AP8APKf+Pp0Wmf8Atf77+z7GMfl1x48umab+1/rt/vftfH8P7Omeicd2/Dbqfuze + NH2HlMhvrY++6ahGNn3Z1puVdrZjK49EjjhpMtNJT1KTLEsSLGSgZQLBrceyTdOSdo32+/eczywz0ALw + voJAAArVW4AUxTrIT23+8z7he2XKrcl7fBYbntepnW23G2NzHGzMzsUCyxfEzFjq1ZOKdAzP/Lu66Q3/ + ANNvyhb6tpbtqAg2/rbGD21H7a7Yf+J19/2UD/rX0MB98fnP/pl+WP8AuUt/21dN0/8AL568Vyw7p+TX + +t/pXhK3HB4OM9qofa7aGw1/f/8AZQP+tfVG++bzqpo3K3K//cpb/tq6bp/gB19fjuf5LhV4AHasAH1+ + lzjPayP2q2lW/wCSjuH/AGUj/rX02fvm85/9MtyuP+pQ3/bV03yfATr1EsvcfyTP1Os9pwkj/kIY32uT + 2l2g/wDLS3H/ALKh/wBa+mz98/nUceVuV/8AuUN/21dNFZ8AOs6ymlocn2l8hMtjqhdFbjMh2ZHPQ10J + 9LQVUa49SUIJB0sDybH2+3szy/cp4V1f7hIh4o1yCrfIgxZ6et/vue4e3zC823l3lq1nWuiWLa3SRD6o + wuqg/wAvl0bPa+09v7F23iNo7UxtPiMBgqX7PGY+mULFTwmRppDx9WeR3kdjyzMWPJ9yzsu1WOx7fDtW + 2p4cEIoq+lSWP5kkk/M9Yp84c277z5zLd838zTm4vr1w8shAFSFCKABwCoqqo8lUDqfL/a/1l9iGP4fz + 6CzcB0a74H/9lY9U/wCvvv8A99rmfcPfeF/6c1vP/UJ/2nW3WXP3D/8AxKzlb/qZ/wDdn3DrY798v+vo + 1697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3X + uve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917 + 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 + 9zL1jkSSaniepXvfXuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917 + r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6 + 97917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv + e/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3 + v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697 + 917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv/Q + 0lap2Sqr0cgyfeVNrG/HnJ9i5pBqPS5PgH2DqHI1rG173P8AT8259ts2rq3XlNypP5IPugNSB69e6cA6 + csW0gAEk/UD6H2zc3C28vhEVPy6sq6jTp92viIsxWy11RII6HFQSzfX11EumyoF/I9yPyTy9BeSDdLsV + CnTTzp0RcxXXgW/0C/EwrXy6M7RUFHuHr+mrFQQ1VG02JyUEI1NS8XoKgDi2vm59zFvGy7bdbZJPaLpa + NKiuOHQM2W/ezuRbz9xkNBT59A7E1VsHJQVixsMbEt6lEF/vJ5H0glebn3DVdLiNjk9Dsmhp0/7qx2K3 + ZuHYYknioqPcedxGJzeRZgn8IoshVLFLVu/9n7dCzAn6H23fXMMA+jfubjXyz05pLQ6vn0cqLpb4p7Y/ + mabU+OGD7U3Dub4j0G69pYncfZk8sEtdk6XIY2lqs5LBUD0uI6iaWIc/RfbVrcaLRlK0c8PTolv2FpG0 + 75C5x1sd/wAz3+XZ/LZ+Hn8v/t/t7Ym6Nubg7hzlFh6HqTBU1dFNm6LK10tzLLQK7OirTmOV2ZAAT9fa + CHcbl7rwNB0KDVjSh9KefrXqlvPDdxh0OW8s4+3FOtKalzWYqIKJpp5LhaF5iCP3GV1aR/8Akr2bzBNx + thaRYkXiTw6NLs37WkNvYsFMZyT59WZdKb1pt8fIvrHI5+phWswFHtampRPJ/wAolBUxhES/5b8j2Hdy + guLHb2tyQWqOhBaTQ3c0S3QqVGfmR19afraWMdcbBiKaSdjbXkQD9IEuGhZQFH+B9gKCO4+rLStUdauI + p5bwXFuQI9WR0/zhWgMp4MTLquP1FW5t7XvbM4eBTmQ6h1eN9G9+Ef8ARI8dabH/AApULJ8h+rWjK+Wo + 62xUx/roTNliCPeKXvtEP61bNcH4Yn0n7akjrK77ts6W3Ie92cgq0jkA/ao62tvi3M+Q+MHx7rWBOrqb + aGoki/oxcSj/AHr3k/sriSyjK+YU/wDGR1jPuiC23u8tX4mVh/l6G+WNLq/0X6/04P4Hs8Gpjx6ThaCg + 8uulhRyQv+8396KkcetkU49c0MSjSRcglb2/pz7tpf1611xf7YqfVYEfUf2b+7AyA168RTj0XHde58+l + RU4TFU8ceWlqJUpdN9U6MLRuw/oPrf2c2LRgt4orXh0ivG0aSR0C++exdz5bEx0NLnKXETYilnOVlWo8 + ctTLQKTNTwrb1NcEW9nNtb24kVlXGoE9IZW1xsoGSCB1rB/MDfvaG2N8ZHeu48jXVRo8nkH2lDI7ssM0 + 0XqlZebejSbW95D8oJtcjLJox9nUI8zvdbWCsp6qrRNzbojy9WM1O9dmKpq5aVpiY4auqctO2m/51fn3 + J1xeW8TrcWUdEjFGFOJ6jhnO5Rs71NDToA9zvksPKMRXLJS1D1Mkcqn03CtZ5rN/ZP8AX2YWG4ybpPG8 + S00kEg9I4hb2aOsynI9Oga7VkFPP0XTRMXSp31uivlkJBUpBhNKlCf6Ee4K9zdzm3Hm2Czs10GNxWuBx + 6m/2/g2202Gaa6Ut4immPl0Ku3Nx0uPpzJSshmYGV1J5uDbgf6/19zxLdXSWds02f01XHrTqLBtdqk1x + FEKd7P8At6cu4t556o+P3YmHp8hNDjK3ECStpRI3gqp2uqNMrfXTxb3j17+y/urk68nul1CQLSnzPUwe + xrrufOVnFb1BiZq1+Q6s0+GXzIoa/wDku7F+JgxkFFmtr9vbNzM+YYyIWwtVvNKuqkK6dJYG92ve3uE/ + bjlWSy5fl5sLahJFINA9HXj61r1JPMu5W11zZNZIKGNzWvyPW8ttrOYPO7e2y+Lr8dlKMbL2wkUtLKZf + IY8VHGxuo+gP1PsGy7ku0bPDeTwuyyMVFBWlD0v21ju11La2zafCySccc9ZajH+VWmK+m2jQgYxku2hV + /wCDfm3swuLq3G2LfkEaytF88n0+XTkiNAHYsGCcadVafbY3KfzjcaKU01ZLQfEqoWRoW1pE3966iIqC + PoR9G9i6/vYLfYY1lU6pOHRfb30U8/08a0Pr1ZG+EpqdQ9a0EJYvoa50DTcjX/xHsF2jTzTGFeA6NLlP + AUKSOgz3K1Hl8ZX4fD5aBppkcSrRuDVwKh5ZVtx7VyG522TxrpSUOMevTohWS3EmsZPr0BVLsyKKoePL + TS1reIhklN1jYiyTAKf1W+vsximguE1EU+3pq4t2th4hofs6Lt2H8Iuv+1Kpq3Pz1k7VilElkW0lNAKj + ySRx2Yekn/ePZzFzNJboI4zTTgfl0SPYbdeGoQhjxx59Jbcfwj6N6r623Dm1ooaF8LQTS0NY6aazI1nA + jpscGY+SVvwvtBvHOV8Yo4kl0l2px4Y6VbTymsm729jBQNdtoU+QpnPRjepekpNxYXa+VXC02y9tHbGN + aB6aIQbmyKtEGmXI0zmw8n+A9x/dXu/bmZZoLhVERzVuP2dCuKW02a7vNvuFLNY4YrkE/Lqwbp3rjr3r + mqnz+ExsdJkqmiSmqazx6aieNPUYHubXJ/H9fcW3fJnJ9jzcvPV4yvuGmgYGvHj0xv3NW+bvtce2Xcbt + Gcrg00n4f5dCPu3ee2DDUFszQ0i0lO1VNHUTaHiVY9conWxsQL8exBBcwXO5NeRGpegP2DpPsm2zWluT + 4TVfjjqtPtz56fHXqWTBy7v3Zj6yLdGWqcXTph6kTvSUtPIUlrKhfGdNmFgfcvbftk26QKsDgGnmeifd + LmSKUK0LcQCaYHz/AC6DHt/+ZH8aeudrV2Vxu7o9z5JcRHW4vH4aZKwVUlZHqpKSZVjPrAtrX8exryry + Lul7uIsZGUHjUnHSbc9y2nal1Szq2PI1616/kB/NM7d7Kx2Twe0snLsvGZGpqVyMtHIKepp6NwVSGEMg + 5/1Q9zftPIf0rOk2k6COon5h57srqVE24kgAhj8+qlcv2e2V3BUVmay1Xm8rWL4qnI1UrSPOI08cWpvp + x9f9f3JG37Xt1tF4Wjv8jTz6ju/Xcb1vGR6KOIPGnXHa+dpKPc+2ZKetFLVPnKMPLDJZ5o3nAkid/wDm + 4vpb/A+wpzqqx8mXu9yf2dodLDzJ4Y6N+VYDJeqG4V6v9+TnY+29udZbRORyNP8A3il2jjUw2GSVftlj + ko1EUdVfkf0HvHbk263PZgu820yraTnXor3V+zqUObtjF9HHAzqqaBUE/wCTqlKo+MW7e5d25Ddb7C3R + kYZIaGnmeqxcj7XoUyMwijjpqkMOCxDv/hz7Eu68+bBuW7QXF4pZIidYpkinljpNse3w7HstwtuQe0YH + nnp5q/i7t/bWKr23dvjq/ZNLtykmqqzDYLNKm5ZocTumm2zlYI6KQkmbxTPUwr+Ql/YU273C2ht2uU5f + jeOtaVFP8nSvmKaeTabaTSRgdFm3XvP4abXzuQ2nR7q7A3tuE0faOFin+0jqaGLL4rcYpevskZUXhZ8W + HnqGvxKB7K9m5xvt136TZ3ak/HV5UORn5dR7zTJzGYxc2zfpALQE/LPQDdl/Mvqva77qw+wunNvT1NfV + dT5zE5DL0ksMmOn69pom3DFG4WwGYqIy1Vf9QY2v7Vcx3u+bRukcEsoIbzB6I+W+WOat1Iur2cCHOpdX + keHn0lewPnB2jl9s1Nbtbb2A2em4O1sd31joMACBgt64yJYMTR0OtOKeAKGW/wCfx7GUV7uzbT4zTKQR + kV6N7fkHVf8A6zgiuM8K/n0UbLfIb5Cb4zGfj3NvvdFTR7w7DTs/cePvH9jVdi31Q7mICi80dyFYWFvx + 7Ldi3q8N3qD5XA+z06GTco2cEC2zR6go4jz6xb0g3jvPLVOYzO56/IZXMzLXbgqKqpYS5KrtoWWsKEXN + uB7GFzvm6a1MDVaoGPTo0tNu2K2thbxxESLmtOHr+3pNT9Z5F6egrHq4ZKh8tSU1NTVFVLrkphOoZkUP + +oNYC3sy5jl3OTZBJdNUU/ydE0t7a3E5tbKJg/CtPPoQO8sVSnsGCgpykv8ACtsYqimpqtmstRNAslTA + tzcgnn/X945cwW088OocKdSDsBEUIhlHcooeipJnpNm7vqcnhwI8jTuUpljHqp5G/QhHNmB5HsC/SDUs + c41Co6NNvvl23cJpnyHQqAPInoRc3uvclV46yLN1sdXnDHVbip3lbTkqpfXHPVXN2KsARf8Ap7GktjYp + Zq2k0p6dE17do1w0oBoelHQ/ILuumqN4UtR2Pumobfu2MXs7exeWORdz7WwdVFU4Pb+QYqb01OYoyira + xUewqltdo5KHFcfZ0XRWsisz0oGyPz6MjQ/Mv5EVNDuKXcG+6vdkXYknX9Dvugzk0TJVYLqWSJthYBgk + d/tYkhSMgWOn639uXDXKKvz6SHbboyGRCB0vIf5ieflyFXkOxfj91XvmDIdr5HtXL/d08tQ+Sys2EOEw + +3ZREn/ACkGmZLfRh9PaTxrtcnps2V4p01+X+rPTjhfkR8IuwaDG4nsfp/J7GyVFjMTi63J7Gw7ytkcm + J5avcGXlZ15nZnSGH+qj3pr91pTOOqXFjfW5q5BHQsH4ifDPtd0qOi/kHkNmZmprsLKMN2fkKfB0uJbL + 0L1r6dRBU00qJEb/AE1e11hugDFZa9BzcNwu4GBW1uJ1QVZoU1Ko9GPlXy6AXtP+Xv8AKLacGWzFDSYv + ujBiCrnlzHWzy7k8VJE9pKmeSFyAL2sfZnLuUnhMUFcHooX3k5c2meO0vHjt3c6aTHS1SaYFK16Kvsbc + lF1tUUtFvfblS288LvHH170ctPbNY/F0cZWShqKZr6b/AFKn2eWNzdwbQl9Mao3l5jqVF33dtz29m5Tl + jQMMs5oW9aevUX5Nblrd390bc3ZUUdTjFzOLwL4yOvj+3qHpfuNNLNIlh+2t+Db8eyq9j8W+juwaKwGD + x6YtBtosjDt6sspJ8csKAy+ZX1B9evVeHTNb/wArtzeOaUYyNcs9XJRS66M1dPT+WmaFvyzta/s8ItZI + 6gZAr0xbW93C2WwePQB0kP7ClwqkxlJB9Gb1G+r/ABta/tMJvUdGWk9GSjj6RHw7r/IJx8jD2jGaOdVK + xjYMafvRmX/X/HuMdwO9tz+XgYC0ESgCudfr0Pdvt7KXlIJgT+Ixqf4ei1ALJFLGWIDwyHUP1BRy3uRZ + rq+n0QzMM0r0ALm4W0laEitejAybJ312PsqiraHJ4fBYDD7Wgkno6qp+3hyNJjxpinUG2qY34H59mO4t + +7Nr8eTuAFcZ69tVgb66AVgKkcekvhcNmNmoMZWVNPVwVNNT18dTTSeQQJWKSyO1jZkA+ntPyRup3BvF + hVlDE8cHp3ma03Da5nZZAVUYoehrzGxdwde7M2huXcLLj8dvyDJyYKjDFMtXYWpj/Yyc1OTzBIb+Nx9f + YhaXTzD4V38E0boPtPA9Rxacx3V7vMe2KCCrqS3l+3obt25T4703xT6TxnXW291VfcDZ3cP+lPJZfHeL + BNAjn+Ffw+qX9fH6/wCnuYNy2prjkGDYw60hKupr6Zav+TqnKVzMnu7uLymtIiP5dbS//Cc/4oYH5R/F + XvOn3VgqbB7XrdyfwPF1QiZKjNZKOkcTPIrMNSQsRpI/r7LN05/uth22KKOIuunSDTFAOIxnoF8wWcm4 + czo8TBaMTnHnw6v0+O/8sv8Als/AfZ1FnO0MT1zlOwKdJsvnN2dhywjJUtdWP52WlheRvRHbRGSp/r7h + y93nmXmq9dbPWFatAPT59Skj2dpPardMDJKRGFz8R4HgcfbToLvkv/woM/l4/FjCbo2Ns5cluerjx+Sx + 2Mi2Rilfbs+WqKY0sKiqgR9QDMuo2+nsR7D7Mcz7y31VxPFCARh3z+XCnXv612L7xdbDDGxltVJc07T8 + h69fPJ+Wu4H3H2Hmd4CAwHdf8V3QtOQVWOLMVr5KOFgPpZXAIt7yL5ntZDtttYKQWhjVCfIkClR8ug5y + +aTyXHkzE9Ek7Rx/+j9NpzRt96m7sDDuCN39QoxK5T7SH6+kEfT3CnNFs2zwW1zN3BmPDj0MIG+unKx4 + MdOs3Qm/RiO5Ots/VItLSYrd+Emqn+n+TmsVnZmt+AD7KuU9xgg5g/eT4Q+Xn1fcbdpotB8urgP5v3y1 + 6v7d+SuV7C6unqc7trb9PjMXU5GpQGGunrtu0tFULTyhFDBXjYfT2r535igMKiA6HBP8+lnLii3hYXGe + qL5+z9xTjLU1FlKmLH5Msho/IPFRwF7pDSpbgewevMm4HY7i1EtS4xnh08m2RS3DTIAB5/Po5f8AL776 + 3V1J3rsaWnzuTodirmA249s0j3os/LU/8CXqISDqfgXA9m3s7u+5bVvSzPLWMuKivqc9B/mG3ie2kVh3 + qOPoB0YP+YnumDfXdE3ZG3nWGj3DnqORMYeEp6kBUZo0ABu6gB+Pcw++sU218wbdeyHWm4ldFM0rTj6d + NcnbjGm0MpB4HooNb3NV9O5TaO4drSzDeO3Ny/3ix8ygGKlhSJQscb2PDNqB9l3M3OY5L3O1tbgMx8EV + 0/PpPYWS7vbXA4Uk8+ir757CyG9925zdmRqKmarzWTq8k5lcyGKaskM07RsfpdiePeNPMe83O872+5qx + Ck1A+XQzkhjk2+OyAylK+nSKpqyVZWZGtK5P7pJ1C/159l1pe3NnM00TEFuPW5oo5rZLZh8P7Op0UlRM + Wgp/Nql1GWGInTULH6mlbRa9vrz7W7FuF3tl01xrJV61APmevTKklNIppAHW2h/wms+O7V1P3H8rs/Qx + slB4+lOu53MEp+5kWm3N2FXFJFMkcsUf8GpoJVYakmqkNx7lT28sTPcXW+yDDHw4/wDjz/mO0fmeos9w + txKpDtKHifFf/jqD7PiP5L1the5V6i/r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 17r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/d + e697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3X + uve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917 + r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6 + 97917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv + e/de697917r3v3Xuv//R0hqya2QrCw9IrKkH/qc3sUt8R6Xr8I6zRlG5Ork+m3/Gveut9ZfAzJqBNiOL + n/iPdXOmNn9B17rBDTyTzmmnuEJGt1/TY/S59q+XtufdJ1lYVHRZNdCHJPQhU00NPS0lPRQtGVjkV9AI + 1kgaPJb/AB49zRZRrtaLBHitD0Htwk+tfxR5CnQ29V1M9LX1m3pnV5N145wqyfRa+nBkpUX/AGs/pX2L + ZbrXtE6r5oeiiwtdW7W4Hm46H+Dpil7O29HVYaXxV1PTtRZbG1ZAmx2cik0aZIgRpX+0PeM+97lLZT5P + UwPtA1E08+iWdt7NzfVu6JtkZVp3eMLUQSVB/bqi6avRYm4/HvVvuTX6i4bjw/Z0W3sP0pMXyr0isNvO + gxvhgioEiqY0YRyxIdUVUW4nvbhgbEH2fQz1TPHoN30PjxmI+fQlbl7y3tvJoKXe+6cxu1YwsdJT5qp+ + 5dCIhAjxLpHIQBf9YD3YSkCnVbKx+mA+XSSp9xUS1tHbGgwwTwmaNY1Fo/KAyAe39vuALkqejMimOj77 + C2Zht7dv9Wbq6+rUgqU3JtLHZ3DSvprIonrYvIYIgRYE/wCHtjdW+pkMQ8+lm3/7lL9h6+tRhZMpSbN2 + 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 + MbQjho3i/Xo859Dn+o9w97jQ/wC6e3Y+THoUbLT6uanoOgKw8D0xE1PJK0spglpx/aSSNvSR/t/eOj7v + PZ3hCetOjS7YZr5dDLvzam6sVs3cabhxlTivINuZqkpZYzGjUuQZ0gqFW/8Aa0k39ifetk3CaNbitcA/ + tHXtpoYm09FiBaLQ2koTpuP6kG/sEOtxao0L41dGMblCxHS22dvjJ7Q3JiNwUKoZsXMs8Eb38Rb+3IRb + 9Vvz7XbFusmzziVTgEH9h6LL21W6icebAjqzveG0ZN77F+O298tlaOmxXcHYlHiZJlk0SYZIp0EzyEka + SSx5sPeVHPt+nM1nyzuDGqgof2U6D+yWjWds9s3EVH8+gN/mG7G6p6n7ipOs+s8lk8xPtfbWOj3bkauR + ZUXO1a/cTUsLgn0hGVrX/I9xz703cF1zTCsGRHCoP29HWy2v0sco/iavVfD/AKj/ALD/AHr3B0n9oejn + roGwNuG/sn+nunXun3AUuTyuSoMbiPNLl66qp8fQQw/5yonrplpIqaK/9p3ZVX2utlLCi5YnqjsiDU3l + 19Nz4I/G2h+JPxM6U6JgiRMttPaNPWbyqAYJHrd/blmfcm9p2qadUEqJkaqogpnIuKeOJL2Ue8nNi21d + p2mGxHFFq3zdst/MkD5AdY373uLbruk18eDt2/6UYX+QBPzr0bn2b9FfXvfuvde9+691737r3Xvfuvde + 9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xv + fuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69173 + 7r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+ + 691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfu + vde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r + 3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvdf/S0cMgJhka3g2FZUf8G4mP59ilviPRgiNpHUun + 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 + AHN7Mf7lKRF8z1V339Vx7jkGehWmRtwwtURrTLpx0aim4FJGP0gfj3lDu1xBc7Rb36sKSRq37R0n2iKW + 3laK4FJASG+3oinb+68XuvC9bYinpaiOfalDWYnIyEjxzuJi0ckfvHf3I5n2W42+3s4HrIjNUV6F+020 + sM0ksooGAp0AVZVjH+CJFljCHSJrixIOogH/AA9wMGs5Jy8nCtel08TSElehwyvae4uw9ibkx+aq1q2x + OJwtHSzyFnqzRYmR2p45HsL6dR9ipeZpZ7MoOIFB+WB07t8TWysJPPotBX9pGkbk8EG91JFz7AcsstxM + zS4p1uQSayR1jEiNPCp4jFtTfS4/P+8e25o1UExZqOrCOqnVx6ObR9mtN8dMTsZsvBOuyN7x7o23CWLZ + KkascCdVcjhRo9A/r7m635it7nlPZ7aNqy2n9oPTPSRbaQSajxJ6K9vXcmY3ruHN7nzlZ93l8lNDNkKq + Vi81TIsSwIzvYXsiKPp+Pcb7xux3Hdbi6maupu37BToxIRB29Ij6/wCNuTbn/G/shlYM9R1vrokD6+2+ + vdXPfyMPi5H8ifnDsjP5qgNbszomFu4NxrJ9uaaTJYKqjg2PQVENQrCUTZd6aZowvqigkJNhYjvkHbRu + O9oXFUg/UPpg0UfZqz9nQQ513H6DZXVDR5+wfnliPsWv7evoLe8huoH697917r3v3Xuve/de697917r3 + v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697 + 917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/ + de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3 + Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69791 + 7r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de + 697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv/09HCtaQ5Ot1A2+7qvqeP88fYsf4z0aR/ + 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 + tFwv7cn7COoR5+3IXm7izjPZbin+3bLfswPtB6vt9yD0Buve/de697917r3v3Xuve/de697917r3v3Xu + ve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 17r3v3Xuve/de697917r3v3Xuve/de697917r//U0c69kGSrbkD/ACyp/wCtzEexfPDLAx8ddPRxHGzR + hkFRTqVisfLk8hDTrq+3Dj7hVuOCeDf2o2jbv3teq0K6xGc/LoPbxewRuqK+aHHQwTYymxePjSiI0Urs + 7EtdpR/xzP5PubltforOlKY6DDzM0gpkV6TtI6lWqBARVCUlYwAfID9Y0Ufk/wBfZF0b+LH/ABdPvhx8 + NbSTvTlIpZaWnqICeVdmJdXP5C8XB9sNFcTTBYULL59JbieBTUtTpwnytNPkKynaNndA0lOoJEMEo9JZ + FPHI+lvZvDbSrLHbXC6VkIB+zptWgugYg1Q2D0LHS2cgwO+8PWZVlGFyyPgMzTzsGR6DJ/suxDG3pJFi + fYrYzwxnbIVrCcV8uiCW2hsLsfTmuemjuDrWq2737H1/uHKJiNsZCiklwu4XiY0lJhJ4TURhAoAJUEC4 + PuC+eLWy2Xf2t42opRWwMVPHh0OrG4M8AaQ93Rc6GLKpWVasauopaSWqp8dOryLHVxRTtFFOFI+jABvY + Ma9hkQi0bW/kKU6X+G4XVTHQhYnbO4aulzc0+QFJW4ijmyUkUqlxLA0YKxxi36v9b2m8Tcf99nqnSJwG + TybZeiliarjaCoheOb98B5iL6gtvbwS4KeLKhFetAhTqbHRx+jfkZmeq+29r9pfZUkm7+rM7Bu3bFZPT + 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 + qDFcfZ1Qgk8OsyY0RU87+VHVw2kcHxD/AFva2rMoQ9e0k8epmE8xqoEM8aPSxlFlCqr6JODE0n1I/wAL + +zeeQLbaUNSB0VRQOt1wwTXpQV8kC1UUKxAtKGaeS4XlRwW/r/h7KUV3XuNOlb2/hymVBlj1Dq6mnWM1 + AtMYwAifTxBP1Pc/19vrEIv1FOeHS6OoeJzx1CvyHr0xUUzy1M8oUeGRHWUHT/m2HJF/p7UoiSsC7UPV + t5jQ7xFND3AUNR5dQMlkUSiSAKBrcMHIAusZsFJ9sWV09uzBV88dVlmbUSB59JKWZbalIHqJIFuAfpx7 + dMsk0hZx0z4kspowwOucdfKkZVJFCjUArC5/w5b3vrWk8COpGMySwTvNOTZoHib63sOVA+v59mFmyJGQ + xpnp7p5SagqIZZ5IysshPjJaxsF+ov7Qy/2rD16qwJGOmeepeNWSB4442OmViAXJt+H9+EchFQOqqv8A + F0JnX8jS7K7GjlluFocZZD/qVqH5U+xbsrqtiyNg9XqK06DWrMFNVsYXOnShe5Ju2gfS/sKTAiZ6+p6q + wJIA6a6irNQzaj+k8XsP8PbfVQCCD0NXxo6R3B8ku/upOidsLJ/Fuz98YTawqITFqxuMqqoTZ/Nt5iFK + UGPjqa2QH6rEwAJ49me2bdPuV9FYxChlYLX0BNSf9qKnpjcLyPbrGW+lwIlLfaaYH+2OOvqMbI2dgevN + mbT2Ftaijx22tlbbwm1cBQQokcdJh8Bjo8XjqdVjAHpiiQGw5PPvKmCGO2gS3iFFjUKB8gKDrGieaS4m + eeU1ZyWJ9STU9Kj29031737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfu + vde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r + 3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69 + 1737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvd + e9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X + 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 + vvKCyUm/kf5H/B1gruRElkpA/F0wyVdBDDI7TeOolk8ZPqJZW+oI/wBb26M8OiC7rXiemaihMixG5NBR + VEzQzsbvLr5Ju3PHtV47R/aePSWCJZASfI9ccrXQYyjFWkhnWrEll1MWVWW1hbkW9qLeZ5Zgo6ee3RVL + dBFVT1cpU6ptUjMygM5Og8qLH2dLQE16SdOcVc6JT0pDB7gsHDFtR/xPttVPjF/XrXQkQ04otsaxKWWK + cSSlSQZPILlCR/T2WSf8lSP7OvdIfITQ1kBihUuCyzQzmS7XY3kQ3549mpFDTrfXCN44ZFpi5T7hVuPU + fqPqD/j7117rI8NTAWhg163UqdUhsEPLGx9+691M29Sw1GuH7rx1Mkn7zs3CrFzpA9+691Nz7zwvHKUP + jRRaUMfWF4Dn/X9+6900tl6OppnpZm0SMLBx9dX+p49+p17pqpaqsiqFguRE6vGGNxdSPSOf6+9gYqPL + r3TZUtUtrikGqOnLBWva3P0B927K4691woo4ZZtEwLXF1UG3I/x9u9a66qKd3mcrH4lHpVRyLDi9x791 + 7rFHpD+sXAB4+vNvfuvddCadgFU2VP0i1re/de6zIfqZjfUwFr/T6Em3szh4D7eveXQ0df0kM+1e0qeI + +iHB0dUr39R8Ds7AD2a2n9kadUPn0DNZLHNIkiG5MUYf/BgtreyG6y9er9RBH/bvb88m319plNCD17rZ + /wD+E0/xf/vX23218sM/j2fEdXYZesthTzLTSU8u994065DdNbAHUypUY7ELBBqUqpTJkeojiWvbTbzc + Xc27SDEQ0L/p2y37Fp/vXUa+4u5eFaxbWhzKdbf6VcL+1s/7Xrc09zN1EXXvfuvde9+691737r3Xvfuv + de9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3 + Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691 + 737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde + 9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xv + 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 + 6XBIv9B7kGxQ/Vu5HHrH+QlttVvn0l6MvUh6iSQv9tKoVGU+rnkW/PHtVMBH2KKVHRHcgkHB6N/1R0lg + 99bI3vvrcW6/7obd2lDj6DEY+nhWurdxZnLSCJaf7QAuqhj6nAsB9fZhttqs8TNJjPnjoolu2tG00IB+ + WOgU3P15XYzK5nHyimd8PLUEQioheFKWlsJmL/TU2pTb2ZDbhH3Ka09OqJuJcgMMNivQX01ClKZWmgEs + rytNTsRbxQrwYyp/p71kY4dLOoORiiaNJfGonVZqgTCw+g9KW9spUXBB4UHXunaDIBMBRQxo00c0ckte + SDxIeFNvaOVVO4IxORw610jaSjfXLEVZY5EleMhtXANx7MSamvVqHqbTRMJI5pYiUiEVPHq4vYHnn/Ye + /da641LVlWzaXCMQQzf7T9AOPfuvdOGJxa06o8rSMGkUyclGvf8AA+vv3W6Hp9zU4e9LHBeGqSNQ5uRp + Qem7H6e/da6DCeKWOrkWOO5Q3/Nrf1B93BDLk9e6nx1Qnim+4ISWBUkULYk6PpYj/X91p6de6kytDV08 + MUcYPijdp3BOppD+kkD3rr3SeVHhmTRwX9INvy3HHt5W1da6yutYrMjNynp5NiQOfduvdcIL+ZPybn/H + 8e/de6xt9f8Ab/8AQx96PEde66Nwf8QfZnF8HXuh56ejSfHdnU7m6HZdbKBf6tChYcn2a2WYzTPXugbh + oYZo3cyNC3jUxoEYtIxNgOfwf6+yG6AEmOvdcosFlKiZo3hKDR5CxuFAHIANvr/h7SFlAJqMfPr3X0nv + 5YfxeX4ifCfpXqevojR70qcAN99leVKYVZ3/AL5Iz+coKuWmVRIcYssOIhc3Yw0kd2JF/eUHKe1HZ9ht + 7RxSQrrk9db9xH+1qF+wDrHXmXcv3rvM10pqgOlP9KuAf9t8X2no/vsR9EXXvfuvde9+691737r3Xvfu + vde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r + 3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69 + 1737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvd + e9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X + vfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6917 + 37r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X/9fR+TflXjqmsp49MxgnrYFj + a1mfzNYlv9j7K21qxoSOrW0INKjrlDnKqpipBDTpGlFMcgZCRZqxjfTc/Ue0s1wLegBoW6PE2h7wa/JO + lvT9lmhoVp5o1rq5lkqJppI1WOAvwYlc/X2aW25T0A1HOOJ/z9O+CluNDKD5dK3D7nj3HjMheCKeoWOJ + IVsgNPqPK3X2fwPJQdx/aeiy5A0nHQqRYXEeFVFFGFQhD9PU6oCxP+xPs1LyA1DH9p6Ytz2kfPrlJhcT + BGW+zRgCXFj+dB5NvdlknLAa2/af8/TrBApNB+zrFtbCY6eiEopkbXO+r9w/oMhACD/D3W6NzpqJG/af + 8/Ttm8TN3KP2DoQI9r7fmkaEUSfoQEeQgAn8WHsOTG6Fzq8RqD+kf8/Qhjgt5rfUyKT9g/zdQcdtbbdR + ks6TTKEgeGlgtI/6YxqewH0+vs1iu7iOOiyMD/pj/n6RJt0K3Ky6AQPKg6VNNtzblvGaUhYgTGfLJbVb + 6m59lV7dX8gJSd8f0m/z9Gvg21a+Ev7B/m6RU+2MHU7kqaJzUCjp8WJoYlmmAWea/wBSDz7Ptp3S7g2+ + NZJ3qP6Tf5+kVxY20lWEa5+Q/wA3Ro9sxDGbTw0rzw09BRUIFTU1EiwRRw67IWkew1f0B9mK7rDcSiOd + qjiSeiy32TxbkKooKHh0+1GTxyU6T1FVHHRxKdFQXAU6kLxhD9Dqv7Mr7fNpS0EesV/LoxPKc0vwk9Ib + r4GiwFPUNaY1NVW1D6SJARPUvoLD/Wt7DOxEObqWM1VqkH5U6J92gNrdW9ofwEA/t6MDn4tG18PTC37t + IlmS1gJJNWi4/wBb3z59wC0/uoik1IkX/j3XSrkiVIPZiR6U7T/g6pH728GR7d3oZrl48nHAD6/pDEB9 + R7z629gm2WYP8C/4Oua29SeLut4y/wAbf4elX0FtfDZTLbglr4DPHQ0UVyfoombx3APuPPc/efpdBQ0+ + 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 + P09PPtk3J2+dZWOEPSq32z63a7fSKE06CjcsGKpM5uqTH1bVOIoslWLiqoIv+WUEr/sySAcKbC1vdX3A + 3l8GI4n9nVZ9oazFT5dBvkp6WRiIwAtljIJsSG+vHsx3Gni6l9B1S3NYu759KOpq6KgVKWOlAjWhjjlh + tbyNIhJYf8V9koBN0rHp7pN4eek88jshuGMYjbgpp/Fj7NOt9OFbPSyERquhUUtZQVtYXv790ikALk06 + YY53ljLU9P5Re3kF72B/oPfutw4kqOpeQmr6oo1Kv25p0TyKPSGAHJJ9+6WdOdVUSVWLgIkjMg4msw1h + QvFl976RP8Z6QTR1Kh2MxW7SLosCxB/3n3aq+nVOm9qeojJk0lRbnUCNXP5Hu2pSKHr3WakrHpJXlVWJ + mXx6DwCTxz7c6105M6QSx/dU3+eKtETq9J/JHuj1pjr3TbWxTmplK3Ck3Fz+PdVK0z1vrhRpI9XBHH/n + GksoP+tY29u9a64To8UrwyCzxswYWsQSbm/v3XusPv3Xuh96JjWat7BpJD/wI6+z7x/4yRUpZBb2JuWO + 68dePaevdIzaCDIZFUeCGdkoVRo6giJB45WVHQn6n/D2Dd5LrJOQaHWfy6UW2VNerQ/5Unxjr/kx84Oq + 9n5ymln2VsfMHujfBjSleJttddV1NXUuKqo6pGWWmyOWkxWLqUC6vDUuVKkXC72+2ld+5otoKExwDxJP + 9LGQc+up9KH5Hog5v3MbVsE8i4aQeGn+mbFfyTUR81HX0JveX/WN/Xvfuvde9+691737r3Xvfuvde9+6 + 91737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuv + de9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3 + Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691 + 737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde + 9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xv + 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 + 4deFCKjrMKGjp8b/ABNkjWd5vI5Y2LqR6SR7Mut9I9qyora0pTUb1U5ZkWClRpZGh/LaE597Ar1ZVU5A + qes3309FqgigemctoNNKmmSBm4IdTyP9j711sqFStKdTkmVYJIp5bzshu1xcAj9Pv3VOkQamemqWjDtp + dlXknkXsDx7uq1Svn0hk+M9OU8c33bSIrzRrArAQgO6gjmQr/Qfk+9AVx59V6k0rjKI6BJdES6pKlwoV + R9byFbgfTi/vxFDTr3UabH/bsGcS+J4i9NLo9FRGDZJoWHDC/BI9v9a6yNLDW/ZNUySaqJNMkekEuqng + r/X3VzQde6bsr5o6n0ltEtpUNjfS4AUH/Wt7oqgip631xxD6MvjHP4rqcH/WaQKw9u9a6ct3wiDcuXhV + dISpNgOLBlDfj37r3Sc9+690PXx/Al3VuOFmcCbYu5UGgEkk0fAI/p7EvK3+5r/6U/4evHoO6CqR3gpI + EipagV82qrLWJgeUoVe/+pte3sI7wD9TclsgscfPpTBwPW7x/wAJ+fjw2yPj1vf5C5mC+Y7o3F/dra0z + mnlUbE62q6jE1VdSyBRLE9bnZMpBVRM5VloKZwAeTMHstshtNln3uUd12+lPlHESCR6FpC4P+kXqGfcr + c/H3KPa4z2266m/08lDQ/Ymkj/THrYF9zV1GvXvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+ + 691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfu + vde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r + 3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69 + 1737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvd + e9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X + vfuvde9+691737r3Xvfuvde9+691737r3Xvfuvdf/9HRswNJtqKp3HWbgWthmRqxMJJToWievWZvXKT/ + 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 + XSxxKeWU8W9pLbXc3KQ1zXPW5JFhtJnf0wfTrFvfZlbs3P8A93stRzRZalp4xk6LIRLHPj60Lqq6OaNi + SrRgqbH+vteYNO6iFuHp1Ta7qKTbHkfuauD0FtHHGuQonVxqSuhcqOeFnFre20LtIRTAPTnSk37HH/fL + LC2kPLTSenljqiXyaf8AYX9qZwo06R5daFaZ6SuVTHx10i4t5pKILGY2qABLrKAyBh/QG9vbSCrgdb6H + T40KkvYlZDIxAn2juSFQLEuxoCVFj/rexLy8Au7so4UP+Tr3UTqnrzLdrdlbT6t2fSUtdvPsPfWL2Ptu + jrZ/t6eTO7r3DFgMPBLNpYxo1RPH5JNPoW7H6ewvuVhd7jvZs7LDSyKgHkWY0FfzPTNxcx2ls91KaJGp + c/YBU/yHX07el+q9u9HdSda9O7T8rbc6y2RtvZOKqKhIErK+n27iosacrkftlRGqqt42qap1Ua5ZHa3P + vLTbLCDatvg222+CBFQV4kKAKn5nifUk9Yz3t3Lf3kt7N8UrFj8qmtB8hwHy6E32u6Tde9+691737r3X + vfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6917 + 37r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9 + +691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvf + uvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737 + r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6 + 91737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691//0tG/PYyS + pyeRjirKeKhFVVCGNn9CEzm5t/X2R29ZtUh4gnqTprFoofDiHEdRMXs5Z3jSSspnedtMBjcm0qm48lj9 + D7TybmkJK9ElnypcXMzBh8R6d6/beTo4g89bR00LOYNBfSpdOCefdY91EriNc16M73kuWzUSAUHUfD7c + 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 + E8vxpftL5o7+73zNFHLtX40YPJVOMlaQBqjsrsySv2xtaJ6SSNknhp8TDuGqdldWgqUonAJYEC/kPbBd + 8yXO4OKi2JI/071Vfy06yfQ6egF7g7j9JtKWCGj3DUP+kShb/jWgfMaut4D3NnUK9e9+691737r3Xvfu + vde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r + 3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69 + 1737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvd + e9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X + vfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6917 + 37r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X//T0Vtx + JWQ5SpWqjeCN6qoemW2kTReVtL29loCRFlTgSepHuZtwjlQNwFOlVtE1iJOY1hLGESGSQAinpojeWVW/ + DW+h9kW6W0JTUeJrSnQ02i8ZCslRUcep255qSpho44J2ip9Bq5BXvreokk4UU/8Ah7TbTCBI7ScVHl8u + m+Z98naNYoqZ6D+CMU9aj6ldWItoH6XJ9NvZjM4mgPkegRYy7qN2RHoVqOjlruGPG4PHVDpIBHh6mEyX + vGZ1iVhE5H5a/HuNIfE+qdCeLYHy6yYSCNOXw6jvI6S6bknydPGppQuqNWyNUFAKTK2qGG/+t+PYxha0 + Szdm+MDHUJXtlfXe4BIxUlsdLGizkCQVXkUJVRSQKghGkGBVu4f+pPsnG6Yqz8ehSnLF9HbmSdc9KGl3 + JQVdPNOvkhSCMy1KOwBhQLYX/wBf2f7FfQySfrHHQT3Hb7pULxijA9Xy/wDCcHaOA7E/mMbSp9y4ykzG + F2/092luCLG5GJZ4Y6unxN6WvljfiysRoPPPsj5hgseYN3j2G9Gu0mrrFaYUV446Lb1r+22Ca4kNHGkD + 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 + 97917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuu + ClyX1KoUMBGVcsXTQCWdSo0nVqFgW4AN7kgbNKCn5/7Gc4p6elMVLaGUs4kUAA9pDEkrpXLAqNJ1ahpB + caQragWKrz966c697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/ + de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3 + Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69791 + 7r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv/9TS + XzG3o9wDJ5GfL0tL/D1qNEEykyVOmdrU9N/Qj8+wibwxSFSKmp6nWW0XcLcPFTgOoNLg6mlp4athPS4m + rhaKCoLm0pA5XjnST+D7R3F0rsqk6mrw9Ok9lY3EUcxphOk7lKSsqKuKljdKx4IEkd1H7cMZPoisfz/r + ezBALZNTYrw6D8sMt1dKhyAwr+3pVYTF4qi1vl4nEZVFh5FxO3I+vsnubiR5PDj/AD+zoZJawwzicjhT + pdxZalSWAVdRHLR08rVQpXbV5UQC6KDx9PZXc7dJUSxjiOhonMERsTbg8D1NXINV1EkVBRS43A1lSJYj + UEO8xFrgt/T+l/ZdODGlNWpyKaR5DpTsMFu9yl7IMRtqJ+XSljrsPRUtZQ6warypMGk9UkptaMxt/qb/ + AFHsvaCcgEjHUhbhuW2XFmfBpU9J+SmWooqupikmi01UQzcIazMkJ1Ikf+D3+g9mNs8sFK+nb+fr1HsN + nBfIxArk16OP8SPlp2f8Quxc5vPr6s+wy+/dg7r68pchTftVsGP3BjhSiloZ1BMcz3IVv6+0V3bS3bi5 + QkNGRX7K5PQa3+0t4oWtHFQ3AfMcOiF19dHlclVS5PI1DZMZ2vra6srJWl85ra6Spqqio/LtrYhj+T7G + NnZPIxnZe1guKcKADoji3tLK1WANSnQvbNi21k6KWOSmlky0VRGYtVPN5GpybI1PHp1aSbWAHsj31twS + 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 + 43M8cjQvHt7ZVI2drFE4jlC+aSKGmFwtzIFDq5U+xryLbG65kRfIAsfsH+z0Qcy3427ZLi4/ERpX7W7R + +ytfy6+kCiJGixxqqIiqiIihURFFlVVHAAHAA95F9Y79cvfuvde9+691737r3Xvfuvde9+691737r3Xv + fuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69173 + 7r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+ + 691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfu + vde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r + 3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69 + 1737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X//1dJ7HVflrqlq4RmlWoy0 + MMNkP+VGTV5JP8D+B7Ad9B4chKVqTx+XU4cvbh4KCI0Ip1nysskdPQ08DGeSeLVT04a8NJSyG3qH6dX+ + 8+0cKAvrfy/mej3cL42kZjtgGE3xfLpiyGKXGPDLHXxy1EIhMwUhWkacftKwb+ns4eeWcAFcDgfToKLJ + FbTeI3nx6z1NQkENPU5aRHaSRmp5FYaC68FCntOLUPIzjiRnpbJu+1Oukyfz6jUlP/HNFajslMrVrTKG + 0lY7Lob1fj6+1Mtw0Mf04WtB0xHJZzAvDJVa5z59K6j3BQIqY2orEpqRqVaF6lzdYPG1/Iovwfpcj2H5 + 9taR/HAqwyB6noS2e+/TWzWAI0SjST6D169W5fFVdbO6TrXyY6ljhFVAPGiUEP8AbdT+pj/X6+3o7O6e + 3BdaEnh8+njuFpa2/hrLqoPXpQU2+cPk3ooJYFpZaN4qqpqFcLFVUkS+iKZB+pm/x9tPYuU/UHHH2Hpz + ZeY5I1KRUIrXqJTbwwNRvGkrNyPNNt+ihqJJYKSVoHgmjW9B4JFPpZTySP6+1gsRFAfBFXOB/l6JeY91 + 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 + BkN5VcXUXX0zM6um3MJUQ53fFasDKFKVNeMdTxSqx5pJk4ubzJ7YbWUgn3mTjLSNfsXLftOkf7U9RF7j + biTNDtKn4B4j/wCmNQv7BU/mOtpL3K/UY9e9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X + vfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6917 + 37r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9 + +691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvf + uvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737 + r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6 + 91737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvdf/9bRSnyU0eTydPQRyCCoq6hNGp3KgTtd + gfwT+T7KbmOBmJYDiepCtJJowpSvl0opczjMfhJMRPFJPl6upiqkyIlIFKicinVb/T/Aeyf6V5ZRNGO1 + RkevR4u5RiMx3B7icdM8OPyGfjyWTEjLBSPGKiTWVVJiLQgX/wAPa+Ex26aJPTHRRdeLctpT8RoesE+J + yLeKgEj1CwBakOztpiv62BLf19srOgYykUrinTJ5XkBChq/n1nlq6mkrI9bGGlq08HjjawjBH7t9PHH1 + 9+hgWWI0GQePTE0M20OLcGoYV6hZWkpppwaKsLUPoERBIZy3DvpJ/B9rIohGCaZPSV7uZhknHz6OR1Z8 + XMPvz4bdyfJle0MXgdy9Qbnx236XrKUQPld5UVeQZsjCX/cCRk2YAW9mq2kLWxkbz6D0u9XpuhBU+nn0 + Vynx0EUb/fE+eaOOaRhIR4TJGHjhsPwt/YXuBSbwk4DqRNhleCARynuJr1CxktA2XqKLJ2npnpJ9A1qt + 6lF/YYt/tvajSbeAzoKletX8/wBVfLb1rqx0bf4k/HnrHt2oyk/ana1F1xi63cGG2xtPzQLPNXbrqajy + 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 + xeA6d2hguvc/QUy4k4rb2DpJFwGBmjj0k+MNKpuoDcG3sN7obpLhkkNTQHHoRjof7FNYz2a39uuhSSCD + xqDQ9E46q+MVLuHZOZpjR1tRBk6uSKWpgSeanWj1E+Joo0Klrj9X19lm0PNJuYB9D0Y8xRRy7G06DOpe + gxXY2I6Q7U2xlMrinoKfF02WlqZXiZPFSxxFcfJdlXkkD/H2e3ImrVeneQp4NtuVnmxwPSZ7o7s2jujv + 7rbfG03bOyt1tRbfzs9TGyJBloZ2/YdpSRZVtzf2M+QaC7Jk9eqe5W4We77tF4ZBr0Tj5r7ow24tz7bl + o8THhsiMfTHLPTaZVaaJDd9UNxZr/wBfY35jWC4Ajg+KoOPTqHOZ4CLpYl4ADonVNj6CGALUzVJSVEnZ + ftZ3KvquU4HPsKHbpuI4dBr6b/V/qPU6OGgnq2kFLUrTAxxc000RZPy4JX2tGzSkAkcekV7UMv8AR6Gb + qyLE0O9tnTDHIafH7giqYVq41kWadTqj8olFiv8Ag3Hs02nbhaXayzD7OhjtyxvAofh0ZX5KfIio3+lV + tmaFJ8Zha6lpmOkIEqYRaKBQSbgf1A9inmeaK6sVi9OhLbRQ+fRcsN21Pjtl5fZdY0UlA5opKCMxIXjk + gkZ5E8t/o4Nj7A2uFRmmOhLeCzK1SlaDpwO5MZV9lbC3fW0lPTbbgocbDVrHFHHDAVUoRJGvD3a1zb2/ + ZXdtFuMMTUpJ0HptvaeF2UdoB6Ml2Bisn2HSYPaW3aGnrMlvfdmG29tiipo1jNZX57KRYzEw6ogxHkll + Rf08X9yJvVramCOOMBnlKqOGS2B1HzpFYl7iTtRAzN/pVy38ut9v449N4b4+dFdVdMYGJI6Hr3ZWE2/N + IrCQ1uVgpBJnMnJKqpqaqrXnqGbSLl/oPp7lja7GPbNvhsY+ESgfafM/manrFPeNxfdt0n3F/wDRnZgP + QV7R+QoOhr9r+i3r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697 + 917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/ + de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3 + Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69791 + 7r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de + 697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xu + ve/de697917r3v3Xuve/de697917r//X0ZqXOY3G5TIRigjqRJVVfkeSRQFHmYceyieyeRiC/mepCTdb + YRAJFTh59IfKVYkcLAvp1MC19RUs2oG/+HtXZxx28UiyDUW4H0p0SbjfNPcxCLtGehPoqygOz1oILRTT + kSV7swRnkp+Uk/x9ktzDI1wsitj06GVuYrezLy5JHHpFS5ydwUhqtSyMI2BABMacKdXt1LUD4x0Vfvee + nx9Q8060bwpFOJxLBHK5v+hzywH+8e19omhCCPPouvb0SyAyZNOm9p2UwTMW8iC4WxUCK3AA+h9vlRIN + AxXz6TM8ccRuKVK5p6jpxxe48jTSypRVlZT01Y/29bRpVzxUdXG5sxno0YIxH9WU+/M5ghMQ9OPRVaWy + 312J/hFQadKKSF6monN2pjFELuSSJGRfStj/AF+nsjD6zrOa9SC8QM/iKdI0gU6b4MXRx1iTT1LklTJP + pUlI2bgQhh9farx1Mfh6cdMW1kq7kl5K2pVJJX16VYzVOa2lfHRT4ioxoT+G1UNXNppsnCf8nrvt1YAu + xPBtcf191f6Roinh5YUPzHSLma6trmuhKDoRt77+ynZFfsnb2UyeSrq/buLcZbI5nL1lb9zkZF1v9vHX + SOsQsBylvaXbtvhsJ5blVBEnAAUAHQb5U5ejuN3e+eSit+H7PLoEMxk2nlqrIjzwSqgOqwRUbQWX+twP + ZlY6YlddNS/A+nQn31bcXIjs+yQH4vs49YYcwxp0hWTxosgZY731P+L/AOAPtFJafqmU56UtudxNYi0E + lMcenifLTUVFokjKSeiVp0YsfRyfUP8AX97Ta0lIkrx6fF9cbLYpI7awR0naKu+6yMFZ5bxJUo4V24LB + tR1X9r5YYLe30BKnhXojtNznvb/6zVRf4ehIymbqMiJI5HKxROpUxRk+pls0qafqFH+w9h2Gxt4pjKwq + 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 + TLVLjmmVlaZa9vWkJiFyAb/q9hWdZEgacGoFehHY65+X/wB/yP2ltOj516tN+PX8q7v35L9eRzbFyu0p + Ny1NDBlNtYus3PjKWrbDwm+iaCQF0YkfQi4944c//eB2XkPe7Fd4t5BESRqVWbIPnTh1k7yv7I22/wDI + Q5puN2FqLigVNIYg0x5efR//AOVV8MO1cN876zaPfGAoKCq+LG3qXf8Alaegyi5Wik3TnZJcL1/EKqn1 + xP6kra8KzAhqYWH1tmj7O837P7r21vzNtutYbYBgpUgMSCqk6vQitPVesIPf3bW5HsztIn8WW8YpUeSL + Qtmg4jSPzPW3f7yO6xE697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3 + Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69791 + 7r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de + 697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xu + ve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r/0NByvYjIV1j/AMplUP8AYedvbMg7ifmejdJaAH5d + dUsjrOkxAeNOXRjwSP8AX9tPTQR1dTrvI2Pl0o6nJpPGY/CAGgZVIYgRufzx7RFCSGPkehJe3gSIKeBF + OmF/AzqKe5HiVSPoTJ+T7WeG/RL4iAYPUWuSWIASKyalBS5NiD+fV7cjQq1D0U7jIxuQBwp1KarnrDTl + ka8UCwpZbAgfRjb3piFr8un7UzzUj/ix0pP4JS4/F0mSnqQlRNIzBY7ORpN1DKv09pS5lBHkej+KzFiQ + 5xTqG2TnqX+3FR6ZXUl2GgXQem9/bYgVBw6Um+J4N1mfItTUn2avdpJ/KamwLawbBeT9P8ffhGpOqnWm + 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 + +pX2n3Tvds5YttkJJRBkVP5efW7b/J46x3Ttf4gbc7Z7HyFVnOzPkbWv2xn83XyvPW1O2a+P7TrumLyc + rH/CUhrFjBIV6mQ3JJJy29qeXLXlrky2tLWBbcSAyaV9G+Gv2rQ/n1hL7x83T83c5SzSMSlsBCo9CMv9 + veSK+YUdWr+5J6inr3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 17r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/d + e697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3X + uve/de697917r3v3Xuve/de697917r3v3Xuv/9HQXr7nJV5/pW1V+P8Am+w90l+Ijq+oqQCc467pYmlq + IkZ9EcjWZ/oFv+T7YJGkhePRrZW8onUPwbh1OqXjpVmp9RZmbTG1vqB+W9sLGzSBvIcent41xBVPDpsi + PjkBHDAG3q+n5v7NBGDkHopS5Qmo6k1EslUIlmZppF9KXFyFH0C+6SRkdynpVH4UxBIz0pMRTzRI1VOi + NTUxUvHJwzof7IHsvmaqMlckY6E+32yRyJcSDsU1P2DqLmKqGoR3gjVIDPdEQkrGG/Fvx7YtY3X4znp/ + edytJkPhigr/AC6aoIldPUGjDL+21vqf9f2uYoTQdEFuJJo9cXw1pnrpwyxmKePSyE2bkMAOR9fdV0n4 + etzRziI6qdQLjQbs3k1Wb+hW/wCfd+i5QwX9Xj1Ngx8dfVRRRSiNJb2eU6AWUXIJPtTGo0jUenJLfxO9 + OoXh8Ujxkln1NGrIdV2JsAD/AI+6yAAalPDpI0QKaCKknoScbioMbjYKuvqV11AssEbAyo2m6mRB9PZR + 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 + MUuM2vi4mzm88pFNofTJDi6arkg1DS0oRSQWB9nux2G838q7PbOEW4dPF/5pqasf9MFDafn09ue87Zs+ + 13+8MKiND4SkcXI0qPsL0B9B19JHD4nHYDEYrBYiliocThcdQ4nF0MChIKPHY2mWjoqWFF4CRxIqKB9A + PeTSIsaCNBQKAAPkMDrDySR5ZGlkNWYkk+pJqT05e79V697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 17r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/d + e697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3X + uve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r/9LQXyNjkMkL/wDK + ZV3P9LTt7q3x/meqn4x+XT3DRwR4pqySW8jsEghP0YD6vb+o9pagEg+fQsjjHhJMeAHTHUM1QQ7AkDgH + +gHA93WqmvSDcHN0Ps67o6eWrqkgXSjP6QW4XV+NR9uNIqivRbb2jM+elPQ4mekllkkWKQw+QaxYx6ol + DPyf9ce0U9w1QF8+hJYWaL2kefSglWmqMZkELutalN5UjphriYj/AFRPsrE0xuU1fCTTPQtmgjTZ5ynx + KlcdITGiUNE0yF4XkEbx3HqP0C2/rf2bylK0XoD2MbXCjxPPqTMDDUss6FFUkCBtSlBe4Ur+Pe4q6elc + sa2snhLgceuVVUvVeao8cSCdRGq3sQE4BF/bvTEj6kPSfAGoAmwvY/7fm/vfl0XH4q+XTpJHHGIysoZQ + upQp5Dfkc+/eJRtJ8ul0TBlA9OpuPpIZpjJIfDEo1o4ty68hQT+fdJJQUKjoxs7BLiQFhQceplXP9xJe + k8lQ6LrqEI+oXgsAP6D2lCAnU2Olt9ehE8GI8MdYsoaeOaCOhkDB4AZmv6Udhc8f4e1MfwDollv5VjAb + jTpNlWkMsbsSEIOschmvxp9vqxTuHn0Hbq8lddLZz0p9uYmOtLSVNQI6OAhmsfWW+ulAfz7QXUwQ18+h + hsFiLxQH4dOk88tM00FK7iFn1yawAdCDjT/xPtOEDCrefS+SbRI0Y/Cafs6jNk8jFHFUyVlTEXYfbEWA + aNOBpJ/p7dWBZW0gVp0y154SnNK9Q81SSFsfMaqKY1cQkmKSBmVi9/X/AI/19qY1EXxdB+/bxWqD0947 + KQYmaV6kwVctVB9q0SnXCISOHb/agPbNK1NOl9vOAVFemiryNHTzzFA70yRlaSKcWMbMvqsv9L/T3eOI + SVB6Z3i7aIxBemiKeYuAj3SazlVN9P8AW/8AiPb5tY+B49Vt9xkAOeI6nlK1ASGLBlI9PqBFr3/1vbUs + UcQr1aK4eaq9KjbmAXJU5nhSqlyik+Glpl1+Ug2cyKf8Pp7KNw3BbUgAgL5k+XSuOK5qCgOel5jdiZGm + r6STP4isxSLPG0a5GEwNUqTqK2J5Uj6/4eyd93VQZIJA4AqaZ4fl0IbPZDdkCRaE9WZ7N7xw+1KfYy5z + 47dXSY3b+36Ojo6cQzNkN2riMocpFlsnCwOqWc/suR/Y9prPmJbuMvqwPXpy62A20hhjFa9HExv8wToD + Lbu673jnfgP1oK/YO46/N5Cjx2DrGp94x5GgjoY8RlwFGqnpSnmhsL6yfbr77siw67sqXr5+nS2y5Q3m + VwbeoX5f8X0Wb5A9z9efKv8AmNdW7n2V1HF0xsnf+9di7ZpeuqShlocfiGqK2KnmqqennswVnuVP+PvR + k2febKVVoEI7mHkOHRurcw7DPHC2qQ1wp8/OnUL5O7k7Oou++y9sY7rDcVXjtjbmzm1MRWJi5ZEkhp2N + IKiN/wAxhfUDf3EsvLfLMV6UG4IAxqavnB6njaucOZ5dh8EWZyP4ccOq+xtjK0iCPI4ep/iVVlTLLjVh + JqapvNrZBH+SPyB7HDbpAjfT2sgaIKKPXHD16fsuWpN05di3S+i8OdmbUtMihx0YLDbp3hQxwUOL6/ro + 4vB4RRw0UhkZEFyxX+p/PsGXdjthv/3hcSLRa5rjOOhXte93HJu3G8tozI0dF0041xw6UUG+d+U1OKX/ + AESZuN4y2iU4uUW1+sk/7Hn3qax5fm+KeMg/Ppw+9+8jhZH/AHn/AGOmGrzm7DJU1UvV2eeoyE8FXN5c + VL4hLTH9vQR/re1MVrZNALcTqIhgUPl0jf3H3CSU3/0PdJk9vn+zp7TtTeUehajqOqMZJDlsbIJCdNkL + D/X+vtE3Ju0XjaRc6DxrXpYPeHeWQ2v0OKfw/wCx02be33vzbsK0SdRLkSKuorVlmoJSxjqpzIYiR/S9 + vddz5O2i8qDfhTpA+L0FOizZvcbebO+E/wBCTmvw/OvRSd6bH3rvfszIYjB7UrTujNmqyC7UxtKz1USR + 0zVUhjpuD6UBf/W59zBsJj2/a4bfXqCKqhvUCmfz6x+572y93X3Du9x8PS9xEz6fSorTo+f8niu6y2V3 + l2Zn+8eisz3Zg8ds+owtLtrG4SbMvhdwJU6Wqq6nhuYgtihJ/PsbWe67Ztkokv6BXGK+ZJr/AIOoh2Tb + d2j2q6fb6gtMVanyrWvV4WZ7d+B+cmko94fA3dO2KOCUtjqzaey8jJXyyk3Zckr8Kt/cibPzByzKo+Ho + NXm081285lOrqtf+YvV/DOv60wFb8beu+1Oud/R5h5d1Qb2wU+FwUmOWK8Bxcz21kPa4915uteXzba41 + XIr+0dG3LO48w+NpdmwadUVb5r67M0dKtVN5Ho0YWiJcPGzaiCR/jz7hzaxbwTSm2GkMeh5zQLy8sYfq + iTpBp0EEVCzSQj6LNOsSN/Us31PsUpcARMPkf8HUXw2JM6qfNgP59Hj2rlKfAYWgxNMvipUpImmAJu9W + y3eQX/r7gbmWH943hlGSD1mdsk67NyckceKqOkt2HUDNS4pSHkWOGRBYXILm9vZxsR+mtSg41HSPcv8A + d1YxTS50KQOmDAURqcRk6KaL1ROjFiLaFibUNJP9beztpgJQV8+iTbtpjjV2I4AnoUqbILFDjyqC0UUR + UnjhV+nsKb1EJbnHR5s14IWFenDI5wz+GUIiRKUjc/RQNQF29pmtPCjCnoXT7mJUoD5dAr25hqhNzM7B + mSsoaWZJGFrBkHKH+lvY65auAttp8+sfed7Iz3fi+hr0GD08eNqX+2YojLAoRf7V0uzm/wDU+z+YmZKD + oGwKID0/UFYXkCNIbfT1Hn+vHsukhAND0IrG6jaIauPQ4bJzxx1PUxO0EvkkjI+5Yggabege2pYg0ZQd + CWO6gIFD0L+NnkyMlNDG8WssJIWY+iJfqQh9o/oR0/8AUw+vQV9xU0sGWw5nnhmkbGT2MD6mA8g4f+nt + rwSjEH16J78i8/Rj8uggBhLCx+v+qJ/21h7U+OQmnzHSa2tPCHhkdZ/GnHpHNj6T+P6X968ZulRt1I6b + ZgQzD8+pQP8AYW/3x9qYpQyE9Wvrf+yp8ujD7Vsu38cG+qxrqBHP+29x5ukga+FPXqZ+X46bdAf6XSN3 + nj5qrL088c5jiMSlkB/UyKFFx7krlj4B9h6iX3L/AOVnT7P8/TNRYmVr6KiZNdy+lv8AH6C59iGY56j6 + W6kDt9p6mQ7WylVVRvBXywsJFIcvpMQifyJInP11AH2WLJpcnryXMpBHT8dxdk/xKoem3zm4Z4E8UssM + 4JKgWYJf/AC3tam5iIE6vLpl4JpiGA8+k5LuDfEUuVOT3VkskuRgannkrHDPNGw9Hmvf6fT2XRbispya + 9GE+3y3H9pwp0W3cuNkoKlFKKqSiRwE5jB13NiPZtbS8Seghu+2rt4AGNYJ/Z0y0GOapkZkVjoXXJ9LW + A5t7VeKNQ+3or2yxafU/pno2nXvZG4MY9BTYOulxUkONgpi8RCM8UXCtyPx7Dm9RCa46kfYJPCtc9Gs2 + N3nvnDby2TmcpuWtrqbBZ3H5CNpZbSotHUpO8UQUfRivP+PtBuvL0V3y+8rDINOjbbOYpbbdxZxH4hXp + m/mLfM3dXya7TzG4qnKV0xqqKDFsKiQ+X+HwQqhhddIFjpH49lnI/LcNvFJORTTn9nSDnrmO4WlqcCUa + adVTT8ELbhQov/iF59yNFnu+3qHrkUpToTuostUYTeWLyVJJJHPBBX2aMkOA0RU6SPd9wtFvLIRno85L + u2s97eVTTsPSEzkzVWSylWxJNTkquZtX11NMSzH29YwiG1JPFRQdEe53Jut0mk9WJ6lbc8yVsvgu03iE + iqnLf6k/X/X9ppoTOKdGvLlyILwfb0ezaUuRfa+36er8kZpYI159LeJuRcezDbrYxJ4Y6F++7gxlPd5D + o1/xS713j8avlX8fO5No09ZkM7gcpnsPBR0iGWeox2ag8EyxLYkkA/09g/nSBvoZCOr7HcvcyRW75BYH + q13rntGt3DtPvjdu6aesjqq/tisq6Wlq0KZDH/xWZqqeR4rekEtYH2IvZuCu13PUgc4XIgmtfy6fMGu3 + tw4Lf0+A+/lyeS2Zmo62GpQeL7Smo2FRFFa1yxsfch8zKF26Eeg6I9hfxTuMg82P+DrWMzGPU0lSxVUm + krKoGJv0/tVjrIR/wXj2F0Hi7eoH8Q6i2XLy/wCmP+Dpvq8V5KqBGhRgkEpNrkeTQDF+fp7W20FBq6I7 + r4u3piXb85gewQMGhj4JIs73t9fajwVrXp5JwEA+XXCLaYM0szq7aalIYkVSTGw/tML3A96e1SRSD5dX + Emv8usVNtqsqaivkpIS5kyNRDrN/83Aq3Nr/AIufe9n2yLxSOt9Y32tJJAS0HqnrYaNODYq/1vc/S/vx + hXUR8+tdbQv/AAnc+LH2Ob7q+U24MeEONCdLbAlk8g/yqdKbcvYOQjhYaCFj/g9LBOhJ9dVHceoGSeQN + sCmbcmH9Bf8Ajzf8+5+3qJfczdWCQ7MhwT4rj5Cqp/z8SPsPW1F7kzqIuve/de697917r3v3Xuve/de6 + 97917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv + e/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3 + v3Xuve/de697917r3v3XuuJazqlm9Ss2oKdA0kCzN+Cb8D82P9Pe6Yr02XAkEdDkE1pgUIFCeAJ1YHmA + fQ9cveunOve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/ + de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3 + Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69791 + 7r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv/09B7KUzLlMghUgtWVQAI + 59U7W+ntl5AWJ9D0oNncl1Gk5p07Ojw4hqKWnvPqWWKUixjU8lb/AOPui957c9Cnti25kf4hw6hUcySL + UpKirJNCIo1tYKy/Vx7uyMvRJYa5pWD+Y6nY3HohaV6iNZNLGIFrG/0LX/w9saJpRVFNOjODwIWpIaHr + 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 + e9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X + vfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6917 + 37r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9 + +691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvf + uvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvdf/1NCrL1rzZeummT1CsqGugsCB + OeT7SNGKsFPn0fLcswBNcDrHNV1MuuRjIFcAqT9APpYH3qFhHVR59Pq7zRPq4dZ8fT0cdNUtVxVDVc3/ + AADKHhApuS49vPKpQ1OemdvtyuvXxA6f9u7WyGfnEkYdINTxJM4/bZl48YI/Psnu94G2gKWyfLoW7By2 + 29sJCOHSkyuxmxU9Un3UVQlEUmaKIktISLSFQD/Y4v7aj3YM4lY1J6El/wAnPaOIk4UrQevSyxe1MHkN + v/e0tFWzZPHQRvkApvDJIz6ogqk/7A+w1unME8d/FEWChyRU/LoT7DyZC1nJMRUqK9Qtwfw0pDVxUEWP + aOWl+9o9CpOklOA3oA+ga3Ps3jvZLuIxqa8aHomvrGPb7gNSnn095rIPu6Cgy0lKIInoqikkhRdKxUFI + oUTr9LX/ACfZZbw3dkzQRVIqCKep49L2Swv4Be3NNXA140HDpCVdTT4j+H5rDwyJFjYYqauJPplrpHYa + bfkadNx7PbNbtyUuK6Sfyp0Frzd7TbpfGszRk4U6RsevIT1FXUSAJOs1TovpUSMxPhA/3oezNYVGFxTo + Fnd5tyviHJOo+fz6lVOemfwQVEQaWlpPtonUWAiPIDH/AA9pntVZixOD/h6NL3mbbdtiG3XdsJJIxSpA + zXqRVZ/HQ4+OhpY2LyU6CtT1GNqlTfyLf2ps7WJLkTS5Wh6SXHMm37jtRs9tt/CnJB1UpgcfLz6R9TVS + SFWgjK8kEf1BH19nBbbTxHRGTu5WgJPXa0uTqXjCUlQ66Qq6R6WJPFh7LZXtwzaXFK4+zqyR7xOfCoSB + 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 + 0I9n3NrXaijfLp13N2rLn6lt1YZc7R02YnmrI62tqFbKz1TNqmaaoUcgHn2cct2aWwBbou3LdGmXUfPq + Hje4+y8ZGyY3c+cSF1kEoesYlvKtneKwNhbi3sU3O4IGaIHA6TfWubdQfIdBhXZJKiKrmqlmIqFkkrJG + N3cVLAhpGP8AauCR7IJZtXd6npBHdGaUofLrmtDGS1TT5Gnf7l4iEmbV4kK2jSQf1Nva21mFKHpHdcD9 + v+Xpwalrq+s0vJStJHCurxiyvMq2Gof1A9qDKteizw2+KnSXrYsj/FKcvHNCkUqxixtGzR8gqF/r7qbp + Y8jpdZR6mavp1BrJ5ochkTyIxVxMb/XySCzE/wC29+N5GOJ6YuoSG4dWr/yZvj7D8kPnB1u2YpGrdk9J + UdT3fuOFpWigev2nkqaLZlNKPGyS+TO1GOlamZl8kENR9VRlIo5Rs13HeIyRVIh4h/2uF/a1PyB6BnOl + 8ds2KTTh5/0l+xhVj/vFc+Rp1vte5t6gPr3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 17r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/d + e697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3X + uve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r/9XRlnqKGgy+VTE0 + EdejZWsljWaMTEQGUgLz/sfZZIxDnUfPodwbbE6hoO/Hl021FTE1BNjainjCtUNURyxoFeCSTl4WP14/ + A90qa1HVzbxW8LoxoW8umSlpGQ62fXFVCSKndtRZCv5t7uCGdQcCuek9lEWLgfiFAPXocOvMXkno6rE/ + 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 + 10sW913h/BlAToZbRtdvMi3AIYr04iVa7xEBVRV0oqgjj/G/tNa3THFc9Jd0t1WoXz6nGkj0EK7RSqnL + A2+o+ot7EKzlbQSD4j0HYbIzSFZBQdMNbizW0MkE2QZgzhg7MxLMrfo4/r9PZfHJWbxZM/b0uuLMRWxR + DXh1zoMN9rEIabIVDU6BTBTTStIkbkXfxKeAD/h7efcmgOqM9IBYOw7h1LDZDHNrSpjck+pWuRGDwAV/ + p7TJfTyTFmB7jXpU+3jRQdQd85ojC0NBSRpPXVhtlZadNKr4OYVT+gNze49mlzJ+krqfPopa0a3bxNOD + joOsRXVPnpqSSSWno6lwtZPKT+1p/QyH8W9qLWYUGeim6V2rRfPpcxUErhlx2cMjIeJBI4Jt9GJPtRrN + a16VLbTaB2+XT5hsNuGsq0iaoCQRRu01ZUXaJUUXJFvz/Q+0d7cNGiknpZaQMC3iCnQf1u6aqiyVXRmO + Kop1qColddTyCJuJNf8AQ/j2g+qdhUnpFd+DwkND1u7f8J+vj3/o7+JOY74zGNSj3N8jNzvXY2QipilH + W3XtVV7b2sstFUonheoyUmcrVkjLLUUstHLqZQlsh/b3bvptoa/cd1ycf6RKqv8AxrWa+aleoB9ydzF3 + vK7fGapaqAf9O4DN+xdA+TBur5/Y/wCo7697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv + e/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3 + v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697 + 917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/ + de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3 + Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69791 + 7r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6/9bR1wUBOWyaQQsl + XV1tXHEZI2KRRPO125H49hTdJn8bV+EE/t6mbk3bY7O00vkkefp1BrNv7iqK55IMW0gkZ21XjWOXnR5O + fauK5QwrrNOi7etpae+rEMA+vTlj9p5VXMNZU0tGksflkaUxlKYKb3Uj+v8Ah7o10Gqo88dKbbbzAyyM + QNJBr9nSwrtwy0tB9nJuagi8CvTRJTU5hlSHSFJWRD/b9ldttCatQUnPma9CfdOZhMtFYD7MdI6HP4SI + EZGTKZKHQqMqV8kcT6STEjRk86Tc+zQ7XJpBoB86Z6Cbb2oJOsivz66rd341x4Mfi44CiiSSepCTO5H+ + 67n8+9DbJTQk4HpjptuYDFV0NSMiuc9RZOwMzBQPTwfZxROCCqwKsgv+fIPdxtmck0+3pn+ut/8Awf8A + GekxJuzLPHpkrawg2IRaiQcHnTe/0/w9vCzVDSg/MdafmiWaAyTYb0GOoM+WnmIY1VVIBe7Goclf8LE+ + 7wQhJAzAfs6Crbo892AGbNfPqBLWsbetpDzcsdTf4XJ9rTpGdI6U/USD8R/b10sysuogAg/0UfX/AB9t + 1dJNSDpNIbXUZZTVjxr10ZwASWCi/wBbXYH8ce1RuLi4X6eQ0U5/Z1RdzsiwiPXvuI1X1v5LkWIIP+w9 + XtrwI/XqwltpcDrLJVQyRxhL6gLWsTwD9OPaYxaXNOHRY26bp45toU1IpouPLrlBFPLIBHE5J/T+05uf + 9T9OPegYQaTNQfb0bpa7zdgARHP9E/5ulSu1Nx5KOIQYip5tpdrnUPwACPp7b+r2tDRZAfz6P7TkjfL5 + a+E37D/m6WND1LuitRRNAKVtIUCUA3JH0AI9h+456sbeUwo4Ok06G9l7U312FRkzQVx5/s6VmO6AyDSo + 9XkIY9YF0aJgbfU249lN7z/AUAQ16Gm0+wnisz3dVFBT5/y6V8fRGOpLSTSvUD6FNVv8LgkeypufAck9 + Hv8AwP8AYfxH9vSxx/TuBpoCz0wkPp0+QqTb/DUPYVl53uZXJ1efl0LbT2c2yHTUA0A9OlBFsegpAq0c + NCIuPKGp42kFuByR7R3PMktzTWzY+fQgg5HstlGmBFbxOOB5dTYNv01NKZAlLyQWHgX6D/Ye0R3c0oGP + 7ela7IgYfprx/hHTtLRsY2aFYVRbMAkKhgR/re0P7wkJoSf29H/0EP8AAv7P9jrFS49WDyypEC8akakU + 39VuL+9vetWlTj59My20cRAVRn5dZaijp6YsWeEa4rWMYJUkfS49tieRjQEnqixrqGB1COOo42RWlWXy + IHUBRdGP0Pt0XEnHpX4J1aaD9nWCTEiofxENYi4+trfUDj25FuJjSnz68LAy93Drqk2xLUMwLBShI/BN + vxdTf3eTdaghfPqsmz+KpT16zjaqRysaiYG/KLzpY/6n2wdyalAOkY5YA64SYqjhYxyQnUvAIP0uOLe3 + EupZF1AkV62dojtz4RUGny64ihi1AMoUfggKD/gxKe7a5DwPW0s0t2EgAx1l8bFxFBZU0nXJwQrfge6B + 8cenfFWtaD9nUOoxkyoL1JP6hcEk88fj27FcAylKdEV7tpndpV/FnqGNurN+9UTN4rXsx/3mx9r/AKgw + xh6dFtttdLgk+nXI4qlUDQgdR/bKqf8AeT7odxYcR0Zfu4dcjQU7L9VZQP0rcNf+in24HJ7qnPl5dJGV + UYrpFRitM/t64T09PYII10sgXRYFgP8AFh7vGxDZP7eqi1W6Omgxnh00Ghp6cllAN+bWbgk8+3/H1Y1d + a/dFB3KD+XXQx8U6l1ZlZeQQW4/1/dRNp+HpH+6WqRQddpjVLBpNIjjB161GqTn8f0Pvf1Zj4Gtempdp + IpqAPUSShVyzR0/jgFyrsAS1vr/j7sb2lBXJ6Z/dS+g6w/ZJPTvMxSKBLEseGJB4AA559qvGX063+6T6 + ddU2NhnjWZk0x/Qk3Go2tcWtb2xNeGNgoJ6TT7RUg9ZJMMTHJ9tAPGFIJJ4It/X3WPcKSDWTx9emv3P/ + AKsf5uocOMmnj1SRiOlg4Y6ALr/rD2cHelr179zP6ddQ496gudSpSQtqRQLgj3o7xQ08/wDV+XTMu1Mr + UqR8q46jpi6irMzawIhe1l+qjgabe7DdmZhFU56afalKGg6bkiR2mVZbeMaBYH6jhgfbvjgeXSAbU3nT + 9nSy2hQ00kVXPPUD0SCCBSjXFxru3+29k+63xiURr9vR3tG00erAHp4qcTRV9SxqHjqI2jtIqR6R4Qbn + gf4e2bLc3WE1well1tS/UjA67eN8NDBDRPJJSi7U1OhZRHH+AAPagbozVqc9eG1itKD9nQI9gtvDO501 + dJj5xSRUsVLTkC+p9N3A9jnbZNuaxjedwXOTnqLd9h3WLdpkgXtFKY6QP2G91PgShmZvqAYv6f4n2tUb + UzfEP29E0o3oJXR/I/5uvfwzflixoZQg+voUc/4ke3tG1DtLD9vSWm9VyuPsP+brC+299VTako2CAE8q + L2I/pb26b/aAgjZhRccei3d9q3u5ZH0EDiKA/wA8dDBs7L7oxWFgx9VgKusmpjJEswl0gRM12spHsg3B + NpvGw4ArXj1JWyPu1ltMYeOprTh0qVzuY1Xh27UzObMVlnVgG/PB9la7ftIb4x0afvLc/wCA/s6ljdG5 + KZ45aPAVNHUrYq0MoR2kHIYOvP19oLvadtvBoLDOM9GQ5k3MKECnAp1Ly/YnZm45cLHuC81Bha2nmihl + XVKqrMJGbyN+dI912nl7aOXLS9ax+K5WjGta09Ok7bjf7puFsbmtIWqOrQNqbswO6+vMxksZUxNURYNo + RRmVFnWpEFrvra55H194u71y/cLzD47qVAkB/KvWUu17ui7MsYb8J8/l0FHXNEu8aeeHKxJV0lLTaioR + VdahHINy3PHsUc17jJZzJcISpwMYxToO7ao3OJkaj5PHPQe9nfGXbG50nmxeNafISCWUmACMwKBzey8k + /X2J+WPdNbBo4XfGOJ/2egNzh7brukJdIlqoPBQP8nVde8+k85tT7qbGRzV1PTSMz2R1els1irKygtY/ + 095IbZz5a7vAqFgCesTd99urnaZpWCmgBP8Aqx0HONrZ/NNGoZPt1VJgwZP3bfWx59iy3lRiM4Oeo4RJ + rbOnh8unnzVXlufoR9Tc8EXvb2/csEcBDxHSiK8Y5PU5Zqnjk3tcsL/Qfi/tHcSFoHU+Y69JfFELcKZx + jz6nTZMfwikaYny0NWIac6uWgkuDqv8AX2HBD5dS3dboLvlaCKuSB9vSXhNSK2q0xhwhve/FzzpFvZtt + QVZQB0Dd9hEW2rajiRX556cqmmqaujmaGCVjSSRPUyA3AWU2JP8AX3fcx+pQ9N8sHwYDHXPz6nQ001DG + BKhjUorqT/iPpx7atYjWvTV3LW8P9E9ZP4nqubDm4Jtz7OVBVQD0nmbVISPPqOJdZEYtZjcccD/XA90l + HZTpsNRqnPWSPh1N7c/63tPo+XTviL6dcZVBdyfXzexNwf8AD22bnwjoA4db8QdYD41Ul6dWB4NwL3/1 + z799YT1SRBcr4dOGemuQ012/yNTzYWAt/jx739Yem/3aPhp1l0JYADwKSLlFCW/rcj2qG4NQDrVNPaBw + 6c6fcWVowtLFIGpo2cvxZ2iI0lW/r7be4a4op8urLAZwV6w9OdD72777n676g2jGq7k7P31gNm46aeGo + qKXHTbhyqUUuXyC0qu60lFE7VVXIAfHDHI5sFJ9rtstZdxvodugHfK6op8hqIyf6IBqfl0C+YbNNutJ9 + znbsgVnYeZ0jA+00ov8AS6+np1l15tjqPrjYPVWyqOSg2f1rszbOw9rUU08lVPTbf2lhYcDh4aiqlu8s + gp4I/JK5LO12Ykkn3l9a20VnbR2kAokSqij5KAB/IdYjXNxLd3Ml1MavIzM32sST/M9Lj2o6Z697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 17r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/d + e697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3X + uve/de697917r3v3Xuve/de6/9fRpyvYeZjrq+Kn+2pj93UgBIItYXzNa0g9k15tMZnJk4V6HkfNZtUC + p6DpNVG7s3VEeSqf1EgqjmMgH6qCp9rF2kFF00/zdUl5paTvJ6Y5spkJHmJqJgL2IMzHg/gm/u37vWPi + Bjomm5olZtAJo3TcKmWS2tmYC+nUSf8AX5Pu6qIzUDraXTydpPTiKkKoWwH0Fv1/i1/arx16blidmqM1 + 6jtUtdlsQCeb3XVf3VplKkDj1RAYmDvwXJ67+4+nHH+JJHtJrlHSv962R4U6iTSa3JHAtYj/AF/dst3M + Oiu6nW6n8SA9tKdYkuSAL2/wBt/vHvxFePVI4CjCVvL0FepKQyF9P7hb+yojdtR+tuB72KHzH7R/n6U+ + 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 + cj8k73PGgDMe316A/N3L1vd10qP1Mft/Lqtff3SqxVz11LTmknlmYGphiPjqZP7N4o1sP9j7yD2PmyWd + grn7M/7PWP8AzP7bQ2aEotPs/wCK6L7lMDksI8i19I8aiXxtOgZ1cfQPZRx7ky3vzdRh618uoU3HYRZ3 + HhhTnPA/5um8lFBKsulQbHUBcf0t7eMpcaD59FtxtFbZx8ukZWZZ4qr/ACgCSigcSyxAhQ4Q8AH22lsD + QDj05u95Jt2128Q4dvDp9oa6gr6SpyETijZahHSnZwzSRn6ICT/t/amyi8O8MZxTpRcXQvyjDzUdLLDV + 0LUmaklaKmWnpYxFqkQiqaXkLYn6j25eqpulHHr1oTFcKOHSayW4qd4ooZplacBQwBHpU/p5J9rLWJXN + KdEl3KVvCPn1xWtp9AIkjA0/6pb/AO29vSjTKU6WE1z1COQpk9XmVfxcf8a9+RdbU6pI3hpr65LlaT/d + lQNR/TwL/wDJvt7wx6dMCc+fXMZXHjkT6mH0Gkcm/wDj78NqV/1MCvVfGfrh/GqP6Sm6/jhfrf8AoPev + 3MnqOnY7sxNrbrg2Xxv9hrD+oUk/7C/u/wC50+X7V6eO6U+HruozNAQq+NmJFr2JJ/Fzb2hO3HWVqOva + tfcPPqC+TphbTEQfoeSCB/X209s1uBXz60bj6bv9eti//hOz8dhv7vbsT5LZrGucH0tt07U2fUTrVIkv + YHYFNLSVtZRzWEU32OESuhqYmJZGr6d7D0kyp7UbR9Tuk28SCq266E/5qPWp/JKgj+kD1DnvDzB4W0w7 + LCaNctrf/mnGcD5VehB/osOtxv3P/WOfXvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69173 + 7r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+ + 691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfu + vde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r + 3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+69 + 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 + 3+26sI9izoG9e9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvd + e9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X + vfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6917 + 37r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9 + +691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvf + uvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737 + r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691/9HQdrYpJcpXDxlj97VW0XP1mYj6e25D + RiR69KrSIXhCjj1NiwuRnssNJJqI9No2sb/4+0cl4luQZDpr/Po4/qjulw4+nQkHj0pKHrzOVZjeZI6c + MQdev1EFv7St/t/aObfLdUYqagDoS7d7a75OVZlIFRXB4dCRD09QwwQVFbkSzSBC8SKGCkn6Egewqebg + 2EFOh5be2JkNCKj/AFfLp/o+u9rUhV5VVpEtZr3Df8gge25OZHmQgGg6F21e2m3WwrdKNVcVHl+zpUUF + NjaaQPRWi0OIighRgUXi9yPYfvdxuJY2Sp7h0PLHlzYIAIo1XWcDA4/s6UMGQp4mZR/mFPkb0aNT/UN7 + IXiuSoIJqehHaxWO2N+oo/YOnKKvZ5PKjkqySFUKkLYDhr/n35LWJl1XJ7ujYc0rHB4FqBpHCnr1D+4V + 5JlZn9YubX/r7tJBAqakORw6J492urm7CP8ACePTnA9NCoVgbSBbOfToK3sV9ozbyufn0ci9jhBI6nfe + iIPaovYqA6DW5/oCnIHuv0zI+ginVJt7VQQT035TOBCkXkkLsVsniuhB/JYe34LXWpb06IZd2Ej+HXpu + kq5qmUeapnMIUFl8P0Ueq1/arwBo00z69N/Wt69RpczTxHxw+f1sCjrAdWgcfT3pbRmzg0639d0642o8 + wkmLGWMcATqISL/Ww9sz29B29KLbc/Ak1HpyWugpCZpKoqo4MUaBri3+1e0wgLmi9LDvoHn1gly6uPLj + 4Ax/UXclb3/qPe/AAfTIada8USfqDzz1hjapaoE89NC2tU4MttFuTYfn350REoD0zPKV0kdOstRTq141 + aNgtuBcA2+t/aeuadLLWcgdZIa7VADFo0AsCXspH+wPvxFDTpb9enWE1EksKR3REElywI4S/Iv7uiq1e + k1xcLLQjy6hV1bHFOFppCyMFDohuL/n1D254NQadJy5UU66NQ8hVeY/UGLarkgcgWHtKEUZOekn1h9Ou + hk6H7gwLG80xUqWYMAL8Fbr/ALz7WQWjGOp6ST7gyuBXy6wVOQqImR5UjChdCxIysfGONRvzx7fFkAc9 + JzuEo4nrNjqh1Z5qWFYGkX1TMV1N+f0t7cMROCf9X7OqfXn1HUepyksVUY1mNTWMoJYE6dN7heOPe/ph + StevfXt6j9vUmOrqrlqmZaZZBYRx6ZCxB5/1vdfp19em33AlSK9QznoQWp42mDDiaVoCoA/TdQfdjasF + DVwek31vzPWAZLFRl46iSatc2bhGAIHOn0e/fSucr1763SKZ6ysajJoaq/2dHJZIUBHk0pxyp5Hu4i8M + 04nz6q9y066F8+pEMPhVftk1ovok1sfz9W59tmIsanpqlx8/9X59TFMKBoYXE04IcWkvz9dPHuvgfPow + ju2jjEbHh1nM1RURDymOFQbsmqwuo+lz794Hz69JetpoT1HNcQ3ijiRUIYPMh1Nf6eoe/GA+XSf60/Pq + E89HTVAk5abTdGI+rH8e7eCdNK9PCRiK149YlZa4tU1asmhgoiN7Nb829uRQ6Sa9J7y4aNFJ9esE1XSz + SLTRAxKFtOVU/tqP7Sfk+39IHAdIv3h8uu45KalSRQwYsrabn1MTyGP9PaoQGlemfr264+GJ5Yp5ZtWq + MEqWLcg39Q96MDfh6tHdO9aHrDVypVSxQrUsVe4YAALHp+g4/r714DdOGd6EE+R6kw5Glx8EiaC0areV + 9Klv9gPfvpz6jol+sPr/AKv29NkNR5ZZKh+TIuuO62Aj/s2A/wB59qYIaA1699YfXriZoquWKkaQXnJa + ZmNvHoNwGP8Ajb2o+nHp/q/3nr31gOKnqe6QQkMSoXkEAqbgL6Rb3rwR6dW8RvXpmiZIVLBlcVLl+W+o + XlR/sPaiKJdNB0kaV/rwvy6xztDP4U+4IdpDL/Z4UDke3REB1S/lZXUjiOuLVjaCARMVk0qx0pYEfi3v + Xgr69JPr5vUdLHCuhx8E2sQy6pOFu3Ja9/8AY+yW6jH1ZA+XRlbXrGEFj69OVRWxwmmkZWZlYKL8k6uB + z7MYYAUz59O/WN69Z/vXhSX0sCzEkkfVT+Pr7t9EnV/qj6/6v2dNZrQqtHpAOtp/8RGPqAPd/ox6fy6T + NeDV3dRDkULicBhCh1uNJsV+n9PdPpF9evfVfLrkMoAjxhW/du/6T+lvoo9++kX1699V8uocVXJDOYPW + DKdS3X6A8/n2+IlAoOvfVfLqd5HiVpgpYoL6QL6/8Le6Swhlp176o+XUT76GpYxu7IzC7x6BZSfxz7Y+ + nHp/g6r9VJ16Kq+0JjgGpCSCXAUi/JAv799OPT/B1sXROTnrDUv54mdFRZY7MCCoLEckED376cen+DrX + 1UnXQrpKunIECXVdB/TxY2Jv799OPT/B1v6s0J6bxDKi28hWMHn1f2mN7An2/wDSJxpjpHbvOX49ZauI + NHFMalwVNyFW9yfqSR714VvEhSQZPCvRr400citU9LPaG78rt2sNZjZ5QjGJKqmLsEnjjNhwTxb/AA9h + bctmW7U6RwB6Hu0c1NAojJ446P3gOxcBuna7VlJPA1ZHRxQTUssixuk49LGJb3bn2B59oMKk9DKDeBMw + HQt4HFQLjo5r3neCIyxn+p5HB9hS/gnS8RVJGOjX6yExlXpU9ILs+hpaelxMlPGkj1Bq45Y3VFDSq44v + b+l/Yp2tbnxY6k0qOiC8S2lDEgGo6LFuzrvCbhikqaOBPPpVJKKRFCySfRlDkX/23uTNtv5LIgseo33z + lyK8UhF4/Loou9+kqCkkqJqenOOnWQ66dyyQTsTYhHcf717H1hvSXFsJPnTqKt15TFnKyBeIB6BGXbYx + NSYZYTTyISYmjLyK4B5BJ9qZb8TxGBfPoGrYfR3iucBepICcAEll+pItz/h7LPp5PXo1NzDXiOuasS5U + 8+mwJtxx7UpbSFft6Ya7jDEdcTG/+JH+8/7xf3sWrgUz1qK6jZ6cOu1DJ+bH8cHj/H6e7m1k4V6U+NH8 + upycorEXNrk25uPdhIyDRXh1r6iP067BgfhwAL3HI+v04Ht+GR3bSemLh0mTQvr1hmpVkP7cgVLC6iwG + r6sfaivSDwB69YF/bsBay8H+ht730wcGnp1YP/K/+OX+zR/M/qTY2Qxy12zttZUdj9gLItQKY7U2XImT + lop5KcXX76q+0oF1MBefkn6EVck7N+++ZILZxWND4j/6ReIPyY0Uf6boJc9b7/V/la6ukNJZB4Uf+mfF + R81GpvsXr6FfvLbrDPr3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de + 697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xu + ve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6/9LSnp8Nt6mrsqaWlilC + 1VSbmxKkyn1n+nuO7i/3fxDWQpk8esjtq2Xl6AK9vag4GQK9T4a+jgR2KxMKe9jThXU/izt+PaC7e/uW + USSVPlXoVpuFjtShY4NQbzAqBT16zw5uKpdVpaOpnaQEifwnx3X66HXg/wCPtI9peJGTI+BxHS2HnGlI + YoyofA7fXp9p0yEhYPST6NN2jELnRpFy4H9B+fZRJHGlGB+w+vRil9fA0Qmo9PLqDUU9KZCJMlJDcEmN + iF/4KbH8f6/tfagMlSnDp795y6dNy1T8+pEFdjceojNVFLIwFyzi5T+h93mtllQkIa+WPPpr9628Li4J + FUzx6yNn8czNTiFlVRqLBbKw4+je0X0NxoDnz6tLzlZXH9smrrFJuGFxamEsaKNI9PqH5K+7pt4GJgCT + 59Jv3nHc/rWfYpxpHr69SaWume3jp8jJKbAK1OxDfm3u72kKLqYAAefSyxu5/qlGon5dSP4pDKphaeoi + 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 + geOQPa2InwgD0RTQMspCjA6lRv6AzC/Nibfn/Ye6ylglRx6uI09OshKPywFx+P8Ail/abxJPXq/hRenX + YR78FvGfwPpb2oWNGUMRUnqnhp6dcJo00Dj6MP8AYD/D3dI0Q1UdUf8ATFUx1FB0/QAf7D/ivtzpvx5P + XrhNMgZVB+oAP/Ee9dPhUYaiM9bhf/CeP42jZfR3YXyVzdAIc13FnP7pbQmkFQs0ew9k1LR11QiyBUC1 + uXadSU1XFIh1fgZB+0mzfTbZNvUo7rltKf6RDk/7Zq1/0vWM3vTvaXO7w7Hbnstl1vTh4kgwP9qlP96P + WxZ7l7qFOve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/ + de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3 + Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69791 + 7r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de + 697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xu + ve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r/09Menl2tt+or61Isvk5nXIU9TCYB + JSvUPIRCwYfW3Or3HV6LzdrgtMgj7qjT1lNa3djy/aBLY+L2gHV1Fxmepjj6vG4jbVEz1zQTPNkIpEMb + RsTMqH+hHulxtLz3Mdy8jDwxQAcD8z0jt+bPDtJLEwowdtWo8RXy6g5DceXpZ6SCnTC4+mp0lRUopQCR + KdUjupA5B+nswh2yoLNVi3H7OiS+34l1CkKF4U8uokW6suzlKrNJTQt54mkglXyNFOAsim4/AHHvx2eA + xhfDBCnAPAdMHme8WUyiYgsKGh49NNTV7QhEZqsvl62o0CCNlVHjKpdr3H+vx7UfQyhaIgGemW5gZsvK + T02w7uw9E0i0+OSs03KvWqQSoPoUge1MW1SsvdjonuOY42fSGr6nrBJv+rnVtOMoIQwCro/sC97rYW93 + GyKzZHSY8xlK0PU3E72qTVR0hoceqlbmaS66yDcajb2xe7CgTUpOOjXZ+bm+oEchx5dKeTeGfaumlmyV + HQoZ45QKGVSsVlCmNdQ+lhf2iXaITHoKah8/X16NZeZrpbnxklKn5Hy67pMxi6SdGp56rM1Yl85eUa6c + lm1SqWX/ABPtPc7SzLooFFPLo423nOSKhkPiEevStjyuQqn118WPhikf/J6cPZ1ib9N19h+72fwlqhPz + PQs27nI3s3hMoA9On+GZmQUqMiAn/dLXUr+R7IpbYxHWx/b0M7S4S5iNBwPXNaMxnyeAsRexYG5/HHtM + 71FA/SkNGPLqUjVIjfWviVuLIPUy/T1D3pY9D1Q168ZKilOsMMQ9ZjppGci7eRODf/H26zECjEdUrH8/ + 5dSWgSRfHIZFdB+mMXt+LX9siXQe3PXtD6dXWVIKci0kLOYgxDutwbD+vvX1EgNABTrfhLWurqAEqKwS + Bf24QfSFJDFb/g+1eBxIr0xQBsio6xpH9qHkKPLouAHBubfg+6HW7j06rKsAUtTPWNamR4nqKgrSKtxy + SvF+CCfz7Wxwl30jOOifxUVjqPTZNUVNREf4aqiBuHqpiVJb6XU+18NsNWt+I6Lru9MQqOolMIKVGnqK + k1dTHcqoOq/+HtQ8FWwKDpENx8249dJkXnk1tQxpSjksykSlr3Nh7eWMBc9ITuDmUmmOpr19K8kazs+l + yBGCPSL/AIPtM1sKkL0st73xWpw6zuZ5S9NQsIG0kmd20hlA/sH20sA1DpbJOyxlvQdM1NFQUE5WpZam + qDa1dr6g/wDQW9mDISKdFX7wkpx69NWZmvCrTyPR06P+5LHxKUH9kX+vvSRha6hXpHczyzSalOOunnkg + hjsk9ROG9XmU62W/4HvRjLHpgiVxoB49ZKeJqudXqKiaCmVGeaAXANjexU+/CPBHS+zla2I1+XTtHV0c + cNqLzvLY3iVb/p+lx/j7r4J9ejFrpJT4g8+s8UNfVxrNUPHCGI8dPqGkKDa7L/re/eCfXpqWeqUHUapz + E0DzUNKaSdvo5vqVCRYAEe9+D0k8ZvTrjFHJLF5a2lSQhrj1HTF+QUP+HtSsXaKde8duuazLNJ4InaM6 + dRlT1Hjngn/ivvfhDz6blmqlG64/bpAS81ROYh6izqgiP50k/wBffvCXpP4q9RDTVGQJanrHSlU6gsmm + xN/on9R794S9e8VenXxNTwhBJAn7dyqlfUf9UR/X37wl694q9NUEDz+WWokjiiU8PqA59+8JeveKvUmS + WnpPGVmE5mHjiQSairEaQSB/T2qFu4FOknjmvUQUVfTmQSRRTvONTySvyF+q2b3RoinHz6947dcas1kU + MUfjpZGf6HWxKKDyPeqde8ZupUNPM8GpVUC4DKzW4/N/b3gN1rxz1AqKX98IiDUGBbSwOkH63Pv3gN17 + xz06s7CnYrGnpGkH88i1x78tuSwr1VpzTpOoKn714gVm8cfkYhrj18hf9ce1fhL0k8ZephqagxSgQWkQ + G1h+B734S9a8ZfXqFR1NvM1VMEnlZQ1PqN9IPDBf6+9eEvW/GXpxevgj9Gp/XE4B/oSpF/fvCXr3jL0r + cbIjYugI/cAgBVjySv8AS3tFMtJDTpTFN2Y6k108ZiZftVQHxMzAc+huT73CtZAD1uSchDXqPHURlpLB + NBK2H+Nufp7WeEOk3jL1ikqEQpKjSKyvaQqBpUH6WPvfhL1Xxl9euJqqgcmocc/W4/4n37wl694y+vWH + 7sLN+9NrBQ/qIv5CfTb3rwl634y9cJKpVKrwbizj8H+tj794S9e8Zem+OSFpnDSGKxsCDa/+Fx734S9N + SzVWi9TphSCBUedyAdQI0sLn8+/eCvTXit02McbFywctqBUknk/S5Pv3hL1XxH9eu3qqOdgwVQyjm/Fw + P6e/eCvVvFbrOs8RAIEVv8SL2I+nv3gr17xW6jTrFMR9rIiOD9S1lH9ffvCXpV40fr/LrIkUYQ+WdDJY + adLA/wCvq968JeveMvXSGCEEO/mLiwX6hb8e/eEvXjMpHWMy454nWWlCOl11gEDy/RWH+x91lthOKdei + uLiHPUGnrJsY6Tk65Fubgksr/VHFvyPx7LbnbIkQq4z0c7futwKsTgdDltDu/cFH/C6HIVclXQU5OtpG + 1PHHrABuB9QPYD3PlppA8kY+zqQ9o5sihkjSQ8SOjq7WyuF3Rg/usbUfcSazIzR+qQEi6K/A49ldptkt + riboVzbpFuPbF0DXaNOtTDjo3UiSKSs8trEyID+k+xztdPpVp5E9Bze4GW1JI6BBMXUrJ56CTxwwKSKN + D+2yWuw/1z7FNvXR0BLe3DMVr03VOPw+cSqrdMtBWUsLeaIKFjqWUWCj+tz7UdJ7uxFOHQKZvEvIdM9F + NRyoWaFjGUidCfRyfa6P4B0HLuyCAnpC1kNVSKYnhIX0nWByLf4+6z/2degsai4KdR4Jk8d1fUb3f/Aj + 2k6e6lLUSabg8AHj/D6fn2tj+AdUPHqO9QZBbjjn3fpqb4OullUSBHJ5H0It/vPv3TPSs6+2Bm+0+wNm + db7SpBXbp35urB7Q29TfuGOTL7iyUWKoTM0KsyxB5FaaQK2hAzfj2ps7Wa+u47S3FZJXCD7SaDovvb+G + ws5b24NI4UZz9iip6+lp0Z1Lt7ofpzrTpvakQjwHW2zMFtOga7Fqk4qhWCryEzPdjJUz+SolYm5d2J+v + vMnbLCLa9vh2+D4YUCj50GT9pNSft6wi3XcZ923Kfc7g1ed2c/KpwPsAoB8h0K3tf0g697917r3v3Xuv + e/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3 + v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697 + 917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/ + de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3 + Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69791 + 7r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de + 697917r3v3Xuve/de697917r3v3Xuv/U0YM3v7J1FdXwwJT0cTV1WwSnGlfXMQwAt/h7LIrKMSnV6nqQ + Zt+nmQBT5DpiOaybpxX1ET/6mNwF0fU39r/oYadFMu53AegPTKa2WWdzLK7H6Ag/n6H/AG/u8aRIxXps + 3U06l656y+dW1BvUG4IJ4F/9T7v+l6dJWnuCgNesP3Co2kMCFUaV4sv+Iv79+ieA6oJZy2mp6xyVGpfy + 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 + o+dWr2aRfqEavPouupWpTpMT1tHkaesocoUu0riGZhZo1BsqxH+l/azuTtXgOijcGT6IOeJ6QORxAiUh + kWop5ZTGspW6qn+1H+vv1DJhuHQQls49BuUrqr0G2W2uaeV3xzaotXrH+pvybge/eCnRRM8sfAdJ6eTx + SCnsUsul3P8AX+1z7YaR0bSvAdIY72QyFZKY6wKsaH031f4/0+vp9uRSu7UbowkeF4AU49ciil9fN7W+ + v1H+I9qOk/V8H/Cf/wCNUXavytzveGaojUbZ+O+2/v8AGyS+ZIZOxt8RVGD22Iwq+OUUtBHlql1Zrxyi + me1ypEqe1Wyi93ttylFUtFqP+aj1Vftouo/I06hr3d3gbfsa7ZC36l41D/zTSjN9mptH2ivW657yN6xo + 697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xu + ve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 17r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6/9XQerl/3J14uB/llWOfpfztfn3WRCXI + r59LrW5U0B64ayqA6iADz/vf59uRQsyatXS+WWBKFjnrHqjRvTIHvzqA+v8AW1/6e2wg1VbpiO6AJ08O + sgdGLWBvpOn83/w9uKLfUS3Dy6u13pAqvXC2sEBWDjnVxpt7TyaNXb1oTO/lTrlGwLMjDSxHAA/tW59q + IZVQkUrXpPcXFxGgEY1EnrkgdjpUqHUjl1J1E/X2011p4jpqJtxd6hCR060uKztadNJjqiZv6RI1j/iD + 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 + qdicqvb7ZxtHLUOtdMtx+s/+3A0j5UQLUeRr1iF7k71++eap/DbVFbfop/tCdZ+dXLUPmtOrVvY36AXX + vfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6917 + 37r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9 + +691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvf + uvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737 + r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6 + 91737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuv + de9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X/1tDStwOZqMpWxxY+ocmsqWFo2B0+dvpc + e0013DESWkHHo62/ZNwuApjgYcPI/wCbp3oev9xVNlNFIhbkB1F1/wBcH2W3O72tuBVtVfQ9DSx9tt73 + UF1pHT+IdPY6e3P+0zxrEkxOlivAA+t7e0I5p2zIZqEeVejL/Wr5gikEKrqH8QGOlDR9MV6soqqmMu4u + ugEKE/Nx7Ry812ZUi3NX6Eu2+0csjD96VC08sZ8ulZRdK4wsBWVLm9wixuyn/e/ZFec6XkK1i0/s6GFj + 7LcszMFm8T/eulbTdObUiiMZWSWcAEESG/H9kkn2Qzc97rLg0A+Q6EKey3LNiPFtA5bz1Go6WWC652fS + UutMektWrHWs4R7aPVfn2U3XMu73X6fiU6Em28ictQ/pvDkdK3EU2Oh1fa0VBBKn+6zEga30+vsuN9uJ + y0hPQ0sOXeUbVQJbepHTtPlaFSsVNMsQi9UwDALc/UWB9lQi3Aks71r0em62pBSGOlMD7OsYylF45A80 + YYuWi0DSz6uOSPentZZSDKdVOmpL+M0ES8Om+XK05LI0rxqgFvV6j/rAe6pZgdwWtemRuN4hqpoP8nWF + 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 + nx1LPSUk5ZR91NAgYM63O+WNl/fe+222nKO4L8f7Ne5xjhVQQP6RHQG5u3w8vbDdbn+NEIStP7Ru1DQ8 + aMQT/RB6+kFT08FJTwUtLFHT01NDFT08EShIoYIUEcUUaLwFVQAoH0HvL0AKAowB1hYxLEs2Ses3vfWu + ve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r + 3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de69 + 7917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve + /de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 17r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/d + e697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv/9fUszM9LU11ZVGjoxNFNNAHgp44Fskp + 5K/kn3jt426rKwLtQk8T8+ulJ5a5YsoFaJFrQeQ9OmZKiMP5Fp1aSYesKQFQrwLIPehcXUassrk14V6Q + fS2ErVswABxp1OaqkhUh/wBo+O41nWPV9Qo/HtPHaSXRMmro7S+sbC10SqC3TYlW8hdUmAdXFnsG0qeL + c+3mtmth435dEy7nDfTG3Vaef7Op1Mzrfy1MSi3pJUXufp9PaSWsg4E9L4TFE2qtepuiKo0pPIYy1grI + xUkN+SR7bERizx6WG6haOlescyUVLojhqJAxYeRy7AFDy3t1UZ27h0VTXCRiqHPTPVSUkkxioqp2kL+o + Rs6kLb8N7VLEUGojHTH1g+XWGnhpKYO1Q7yPKW0N5Cbf1JHuzs0naBgdeF4B0+w1hqaWSJEjaJLAOEUO + luD6jz7RSx6CKdGFlcxvq1dSacU08TUxAZl41EC5v/YZj7a0NXX0tM0NDkdejtT6onEUQZgWvp1W/wAT + 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 + r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+6 + 91737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuv + de9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3 + Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691 + 737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3Xvfuvde9+691737r3X//0NQj + IzSGprNUNTqkrah7LTzJpLSm6stvqPoR+PcFvFetITopk9Z0ru0bRKry8APP5fb1hpfuQqMYKkAHn9ib + n/X49sy2VzOwMi8OjTadxtkjk0uM08+sNZU1aSN46WpcSAC5ilICj8KGHu8e3ShcEj5UPRbuW6AXFCQR + 9vUeH71QXejqCrMePDIOQOD9Pb37ubzJP5HrW3bmn1JpQGhzUdT/APclKjCOgqBpBkBaGX+yOP0r72Nv + ZTgfy6N3v1b8Q/b1zoJ8q82moM4TTyPtJLoL/S5HtNe2gBAVDw9OmmuXI1RuCfSvXVVS5WeqjZI53gV/ + T/k8gIv+Txz7TxoI46Opr60PSNZrjxGMpFPtHUt8blYY5ZkSTyaF8VqKRTf+mq3uodCQKH9h6c8f+mP2 + j/N03JiM40hZ5JYVALAGlZ1ufqLW9qQq0+A9b8ST+IftHWaGolgURNRVU8oLEyLFKgNuQSqj2zJbMw1A + EU+XWxcyxnsYZ+Y6nrJnahEWjpZ4Cfo5gcn/ABvx7Tqioe8E/kerfWXCkd4/b14UVdI16qOqeRbF2EUw + VSP7XI90ERY0QEA/LpfPepHCWVhXHmOuE0lcCymKf9tdca/byeq3AH09+FifMH9nRd+9m9V/b1zEeaqI + lkWKopYxpEjLBI1xbkDj2pSzIWhBP7emzvijBAx8x1Ap4JpKiSCSmq3LNYSeKUXBHH491kgeICQKTT5d + bXcVvDoqF+dR1lqcLJ5ZJ/DUomlQImhmbkH1Em3tyF5ZajQQfs69KqBDrcftHUGpjr1RPHRzAsQqMaeQ + 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 + 49lc0TwIHYE16VSoxJkDihzx6SP8E3TPuLH0W1cdla3LZavx2LxWHoaSqqqvJ5KvqFpKOhpKWAFpJZpX + SOJFUsWYKOT7UQWs0unwlLazpVaZ1HgB0je5ht0aS4cKigszEgBQvmfkOvokfGPpum+P3QHU3T0JpZKr + Y+zMRjc7V0QcUuT3XPD/ABHd+XpxL6hHV5SarqI1Y3VXC/Qe8wNi2xNm2i32xf8AQkAYjzfi7f7ZiT+f + WAPM28vzDv8Ad7y9f15GZQeIThGp+aoFB9adDt7NuiPr3v3Xuve/de697917r3v3Xuve/de697917r3v + 3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6979 + 17r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/d + e697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3X + uve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917 + r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de6 + 97917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuve/de697917r3v3Xuv + e/de697917r3v3Xuv//Z + + + + + AAABAAEAQEAAAAEAIAAoQgAAFgAAACgAAABAAAAAgAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+vn/+fr5//r5 + +f/5+vn/+fr5//n5+f/5+vn/+vr5//r6+f/5+vn/+vr5//n6+f/6+fn/+vn5//n6+f/5+fn/+fr5//r5 + +v/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/5+vn/+vn5//r6+f/5+vj/+fn5//n5+f/6+vj/+fn4//j49f/4+PL/9/jx//f48f/4+PT/+fn3//r6 + +f/5+fn/+fn5//r5+f/6+vj/+vn5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+fn5//n6+f/6+vn/+fr4//f37//w8tb/6Oyz/+DnjP/c5Hf/2uRr/9nj + Zv/a5Gj/2uRx/9/nhP/k6qn/7/LV//j48v/6+vj/+vr5//n6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr5//n5+f/6+fn/+fn5//n5+f/3+PL/7e/G/+Dni//X4Vr/1N9C/9Tf + Pv/U3kD/095A/9TeQP/T3kD/095A/9TeQP/U30D/1N8+/9TfQP/Z4mL/5uqp//X37P/6+vn/+vn5//n5 + +f/6+vn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n6+f/6+vj/+fn4//X26v/p67D/2+Jm/9Xe + Q//U3T7/1N0//9TdPv/U3T7/1N0//9TdP//U3T//1N0//9TdPv/U3T7/1N0+/9TdPv/U3T//1N0+/9Td + P//Y4F7/7fDE//n59v/5+vj/+fn5//n6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/5+fn/9vfv/+fq + rv/Z31n/1dw+/9XcPf/U3Dz/1d09/9XcPf/V3Dz/1dw8/9bcPf/V3D3/1d09/9XdPf/V3Dz/1dw8/9Tc + PP/U3Dz/1dw9/9XcPf/U3D3/1Nw9/9bdRP/m6Z//+Pj0//r6+f/6+vn/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/5+vn/+vr5//n6 + +f/5+fn/7/DP/9vfZP/V2zv/1do7/9XbO//V2zv/1ds7/9XaO//V2jv/1do7/9XaO//V2zv/1do8/9Xa + O//V2jv/1ds7/9XaO//V2jv/1do7/9XaO//V2jv/1ds7/9XaO//V2jv/1do7/+Tnlv/5+ff/+vn5//r6 + +f/6+fr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+fn5//n6+f/39+7/5OaY/9bbQ//V2Tn/1dk6/9TZOv/U2Tn/1dk5/9XZOf/V2jv/1to+/9ba + Pv/W2jv/1dk5/9XZOf/V2Tr/1dk6/9XZOv/V2Tr/1dk6/9XZOv/V2Tr/1dk6/9XZOv/V2Tr/1dk6/9XZ + Ov/V2Tv/5+mn//n6+P/6+fn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//n5+f/z9OH/3d9q/9XYOf/V2Dj/1dg4/9XYOP/V2Tr/19tI/93f + cf/k5pb/6uq0/+zuw//t7sT/7Oy+/+fopv/g4oT/2dtV/9bZO//V2Dj/1dg4/9bYOP/V2Dj/1dg4/9XY + OP/V2Dj/1dg4/9XYOP/V2Dj/1dg4/9fZQ//y89n/+vn4//n6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/5+vn/+fr5//r6+f/x8dP/2tpS/9XXN//V1zf/1tY3/9bX + PP/c3m3/6uq1//X06P/4+fX/+vn5//n6+f/5+vn/+vr5//n6+f/5+fn/+fn3//f38P/t7cT/3t91/9bX + O//V1zb/1dc3/9bXN//W1zf/1tc3/9XXN//V1zf/1dc3/9bXN//W1zb/3t9v//n59//5+vn/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vn/+fn4//n5+P/v78r/2NdD/9bV + Nv/W1jX/19Y3/+Dgcf/w787/+fn2//r6+P/5+vn/+vr6//n5+f/5+vn/+vr5//n6+f/6+vn/+vn5//r6 + +f/6+vr/+vr5//n59//u7sn/29pX/9fVNf/W1TX/1tU1/9bVNf/W1TX/1tU1/9bVNf/W1TX/1tU1/9bW + Nf/s7cT/+fr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fr5//r6 + +f/u7sf/2NZC/9bUM//X1DP/2thO/+nps//4+PL/+vr5//r5+f/5+vn/+fr5//r6+v/5+vn/+vr5//r6 + +f/6+fn/+vn4//n6+P/5+vn/+vr6//r6+f/6+vn/+fr4//X15//f3W7/19Q0/9bUM//W0zT/1tM0/9bT + NP/X1DT/1tM0/9bTNP/W1DT/391x//n5+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vn/+vn5//r5+f/w8ND/2dZD/9fTMv/X0zL/3t1v//Pz4f/5+vn/+fr5//n5+f/5+vn/+fr5//r6 + +f/6+vn/+vn5//n38f/44bX/9sx7//bKdf/32qH/+fPn//r6+f/6+vn/+vr5//n5+f/6+fn/9/fw/9/d + cf/W0jL/19My/9bTMf/W0zH/1tMx/9bTMv/W0zL/1tMy/9jUOP/z8uv/+fr5//r5+f/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vn5//n6+P/19OX/29dP/9bRMf/Y0jT/5OGO//j49f/5+vn/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vn/+fn5//js0//0ukf/8qMK//KkCv/ypAn/8qMK//SvKv/44LL/+vr5//n6 + +P/5+vn/+vr6//r6+v/29uv/29dS/9fSMf/X0TH/1tIw/9fSMP/W0jD/1tIw/9bRMf/X0jD/6Oa6//n6 + +P/6+fr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n5+f/49/L/4Npr/9fQL//Y0TX/6eak//n4 + 9v/6+vn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vn5//nz5v/0ryv/86QK//KjCv/zpAr/86QL//Kk + Cv/ypAr/86kZ//jju//5+fn/+fr4//r6+v/6+vr/+vr5/+/uzP/Y0Tb/2NAv/9fQL//X0C//19Av/9jQ + L//X0S//19Av/+Leg//6+vn/+fr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fn5//n5+f/5+fn/6OWh/9jP + Lv/YzzD/5+Sh//n59//5+vn/+fr5//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r5+f/5+PP/9LlG//Kk + Cv/yqhz/9sdt//fVlP/1xGL/8qYR//KjCv/ztTv/+vfy//r5+P/6+vr/+vr6//n6+f/5+fj/4Nty/9jP + Lf/Yzy7/2M8u/9jPLv/Yzy7/2M8t/9jPLv/c1lj/+fn4//n6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +f/6+fj/8vHZ/9nQOf/Yzi3/5+GU//n59//5+fn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+fn/+fr5//jit//0tj3/+evR//r5+P/6+vj/+vj2//bSiv/ypAn/86UN//jmw//6+vn/+vr6//r6 + +v/6+vr/+vr6//Huzf/Yzi7/2M0s/9jNLP/YzSz/2M0s/9jNLP/YzSz/2c84//f38f/5+fn/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vn/+Pn2/+HZbP/YzCr/4tt1//n49f/5+fn/+fr5//n5+f/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+fn5//r5+f/5+ff/+fPn//n5+f/6+vn/+fr5//n6+f/57tn/8qcS//Kj + Cv/31pb/+vn5//r6+v/6+vr/+vr6//r6+v/5+PX/3dNQ/9jMKv/YzCr/2Mwq/9jMKv/YzCr/2Mwq/9jN + MP/08+X/+fr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn5/+/sxf/azC3/3dJK//X16P/6+vn/+vr5//n6 + +f/5+vn/+vr5//r6+f/5+vn/+vn5//r6+v/6+vr/+vr6//r5+f/5+fn/+fr5//r6+f/6+vn/+vn4//n5 + +f/6+vj/+OnL//OmD//ypAr/9s1///r6+f/6+vr/+vr6//r6+v/6+vr/+vr5/+Xdhf/Yyyn/2Msp/9jL + Kf/Yyyn/2Msp/9jLKf/ZzCz/8/Hb//n6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n59//h1mT/2ssu/+/s + xP/5+fn/+vr6//r5+f/5+fj/+vn5//r6+f/7+vn/+fn5//r5+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+fr5//r6+f/6+vn/+fLl//S7Sv/ypAr/86QK//fWlv/6+vj/+vr6//r6+v/6+vr/+vr6//r6 + +f/s56//2Mon/9jKKP/Zyij/2coo/9jKKP/Yyij/2soq//Lw2//6+vn/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/x79L/2sko/+Xcgf/6+fj/+fr5//r6+v/5+fn/+vr5//nz5f/58d//+fHf//rz5//5+vn/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//n6+f/59vD/99qg//OvKP/zpAr/8qQJ//KnFP/569L/+vr5//r6 + +v/6+vr/+vr6//r6+v/6+vn/8OzH/9rJKP/ZyCb/2cgm/9nIJv/ZyCb/2cgm/9rJKf/z8dr/+fn5//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+f/6+fn/5dt+/9zLN//18+T/+fn5//r5+f/6+vr/+vr5//n5+P/1xGP/86se//Or + Hf/1vVD/+vn3//r6+v/6+vr/+vr6//r6+v/6+vr/+fr5//r6+f/58eL/9L1Q//OlDv/zpAr/8qQJ//Kl + D//20IX/+fn4//r6+f/6+vr/+vr6//r6+v/6+vr/+vr5//Lw1//ayCj/2scl/9rHJf/axyT/2scl/9rH + Jf/aySz/9fTo//n5+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/5+vn/+Pfx/93LO//n3pD/+fr5//r6+v/6+vr/+vr6//n5 + +f/6+fn/9s+B//KkCv/ypAr/86wi//n28P/6+vr/+vr6//r6+v/6+vr/+vr6//n6+f/6+fX/9L1Q//Ok + Cv/ypAn/86QK//OtI//21Zb/+fj1//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/08t3/28co/9rG + JP/axiP/2sYj/9rGI//axiP/28k1//j49P/5+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn5//Dpvf/cyDH/9fTl//n5 + +f/6+vr/+vr6//r6+v/6+fn/+vn5//fdqf/zowr/8qQJ//OnEf/57df/+vr6//r6+v/6+vr/+vr6//r6 + +v/5+vn/+efI//KkC//zpAr/8qUO//XGa//48N7/+vr4//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vn/8e3Q/9vFJf/axSL/2sQi/9rFI//axSP/2sUj/9/OTv/5+fj/+vn5//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r5 + +f/m2oH/5dd1//n5+P/6+vn/+vr6//r6+v/6+vr/+vr5//r5+f/47NX/8qQK//KkCv/ypAr/9+G0//r5 + +f/6+vn/+vr6//r6+v/6+vr/+fn5//fao//ypAr/86MJ//bLef/5+PX/+fn5//r6+f/5+fn/+fn5//r6 + +f/6+vr/+vr6//r6+v/6+vr/+vr5/+7ovv/bxCD/2sMg/9rDIf/awyH/28Mh/9rDIP/l2Hn/+vr4//n6 + +f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/5+fj/38xL//Hrxv/6+vn/+fr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vXs//Op + Gf/yowr/8qQJ//bRif/5+fn/+vr5//r6+v/6+vr/+vr6//r6+f/33ar/8qQJ//OkCv/35sT/+vr4//r6 + +f/6+fj/+fPm//n27//6+fj/+vr6//r6+v/6+vr/+vr6//n6+f/s4aD/28Ie/9vCHv/bwh//28Ie/9vC + H//bwh//7OOn//r6+f/5+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/9/Xt/9/KSf/5+PT/+vr4//r5+f/6+vr/+vr6//r6 + +v/6+vr/+vr6//n5+P/0tTn/8qQJ//OkCv/1wl3/+vn4//r6+f/6+vr/+vr6//r6+v/5+vn/+OzU//Kk + Cv/ypAr/9tON//n6+f/6+vn/+OvS//S2PP/315j/+vn5//r6+v/6+vr/+vr6//r6+v/5+vn/5dVw/9vB + Hf/bwR3/28Ed/9vBHf/bwR3/28Ef//Xy4//5+fn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//Tw3P/l1XP/+fr5//r5 + +f/5+vn/+vr6//r6+v/6+vr/+vr6//r6+v/5+fn/9cRj//KjC//zpAr/9LM2//n49P/5+fn/+vr6//r6 + +v/6+vr/+vr5//n49f/0tj7/8qQK//OnFf/1xWf/9cVm//SqHP/ypAr/868q//n06f/6+vr/+vr6//r6 + +v/6+vr/+fj0/9/IQf/bwBz/3MAc/9zAHP/cwBz/28Ac/+HMUP/5+ff/+fr5//r5+f/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/y68r/7OOr//r5+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fr5//fTj//zpAr/9KQL//Oq + G//58+b/+vr5//r6+v/6+vr/+vr6//n5+f/5+fj/+OW+//OoFv/zowr/86QK//KkCv/zowr/8qQJ//Op + Gf/46Mr/+vr6//r6+v/6+vr/+vr6//Lu0//cwB7/278b/9u/G//bvxv/278b/9y/Gv/s4J//+fr5//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/7+a4//Tw3f/5+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n5 + +f/44rn/86QL//SkC//zpAz/+erM//r6+f/6+vr/+vr6//r6+v/6+fn/+fr4//v5+f/33Kb/864l//Kk + Cv/zpAr/8qQL//SzNP/34bb/+vn4//r6+v/6+vr/+vr6//r6+v/q3ZT/3L0Z/9u9Gf/bvRn/270Z/9u9 + Gf/dwSf/9vPl//r5+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//Tx4//5+ff/+vr5//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vn/+fDd//OmEf/0pAv/86QK//bao//5+vn/+vr6//r6+v/6+vr/+fn5//r5 + +v/5+vn/+fr5//ny5v/437D/9tSR//jju//59e7/+vn5//r6+f/6+vr/+vr6//n6+f/5+PX/4MZB/9y8 + GP/dvRj/3b0Y/9y8GP/cvBf/59V6//r5+f/6+fn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/5+fn/+fr5//r6 + +f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fn5//n49P/0rST/9KQL//OkCv/2zXz/+fr5//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+fn/+fn5//r5+f/6+vn/+vn5//r6+v/6+vr/+vr6//r6 + +v/5+fj/7+e7/928GP/duxb/3bsX/927F//cuxb/3r4i//Tv2P/6+vn/+vn5//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+fr4//r5+f/5+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n6+f/6+fn/9blH//Sk + C//zpAr/9b1S//r5+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn5//r5+f/5+vn/+vr5//n6 + +f/6+vr/+vr6//r6+v/6+vr/+fj2/+LKUv/cuhX/3boV/926Fv/duhb/3boV/+fUfP/5+fj/+vr5//r5 + +f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r5+f/6+fn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+fn/+vr5//XIcP/zpAr/8qQK//OxMP/59/L/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +f/6+vn/+vr5//r5+f/5+vn/+vr6//r5+f/5+fn/+fr5/+/luv/duRb/3rkV/925Ff/duRT/3bkU/9+/ + K//28+f/+vr5//r6+f/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr5//n6+f/315r/86QK//KkCf/zqBX/+fHg//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/5+fn/+vn5//f27//hwj3/3bcS/924 + Ev/euBL/3bgT/965Fv/t4Kr/+fr4//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r5+f/6+vj/+ObD//KlDP/ypAn/8qQL//jk + v//6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fn5//r5 + +P/q14f/3rcQ/923Ef/dtxH/3bcR/923Ef/lzGP/+fj1//r6+f/6+vn/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/44rf/9s1+//bNfv/2zX7/9s19//bJ + cf/ypQ7/86QK//OkCv/1vlP/9s1+//bNfv/2zX7/9s1+//bPhP/6+fb/+vr6//r6+v/6+vr/+vr6//r6 + +v/5+fn/+fr4//n5+f/x6Mb/37gZ/962EP/ethD/3rYQ/962EP/iwDf/9vLk//n6+f/5+vn/+fr5//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+fn/99ib//Kk + Cv/ypAr/8qQK//KkCf/ypAn/86MK//KjCv/ypAr/8qQK//KkCv/ypAr/8qQK//KkCv/ypQ//+e/c//r6 + +v/6+vr/+vr6//r6+v/6+vr/+fr5//r5+f/18N7/4b0t/961D//etQ//3rUP/9+0D//guSH/8uvN//n5 + +f/5+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+fn5//jnxv/zpAr/8qQK//KkCv/ypAv/86MK//KjCv/ypAn/86MJ//KjCf/ypAr/8qQK//Kk + Cv/ypAr/8qQK//jit//6+vr/+vr6//r6+v/6+vr/+vr6//n5+f/29On/5MRM/9+0Df/esw7/37QN/9+0 + Df/ftxj/7+Gv//n5+P/5+vn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//n5+f/58uX/9LtM//S4Rf/1uEX/9blG//W5Rv/1uUb/9blF//W5 + Rf/1uUX/9blF//W5Rf/1uUX/9blF//W5RP/43Kf/+vr6//r6+f/5+vn/+vr5//n6+f/39e3/5cdW/96z + DP/eswz/37MN/9+yDP/ftRL/7d2h//r5+P/5+vn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+fn/+vn4//r6+f/6+vn/+vr5//r6 + +f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+fr5//r6+v/5+vn/+vn5//r5 + +f/28uX/5MNN/9+xC//fsgv/37IM/9+yC//gtBT/7d2j//r5+P/6+vn/+fr5//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fn5//n5 + +P/5+vn/+vr5//n6+f/5+vn/+fr5//n6+f/5+vn/+fr5//n6+f/5+vn/+fr5//n6+f/5+vn/+vr4//r5 + +f/6+vr/+fn5//n5+P/z6s3/4r47/9+xCv/fsQr/37EK/9+xCv/hth//7+Gu//n59//6+fn/+fr5//n6 + +f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/5+vn/+vn4//r6+P/6+fn/+vn5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n5 + +f/5+vn/+fr5//n6+f/5+fn/+vn5//n49P/t3KH/4LYg/9+wCf/fsAr/37AJ/9+wCf/iuSn/8ujF//n6 + +f/5+vn/+vn5//r5+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+fn5//f07P/6+fj/+vn5//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/5+vn/+fr5//n5+P/6+fn/+fn2//Lpz//mxFT/4LAM/9+vCP/frwn/368I/+Cw + C//lxVf/9fDh//r6+f/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n5+f/s26P/6Mxz//Pqzv/5+Pf/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fr5//n6+f/59/T/8ujH/+bIZf/hsRL/364H/+Cu + CP/grgj/4K8H/+G0Hv/t2Jn/+Pjz//r6+f/6+fn/+fr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/5+fn/+ffz/+vS + hf/itCH/58Zc/+/gsf/28OD/+Pfy//j49f/5+ff/+fj3//n49v/59/P/9/Xu//Pqz//t2Zr/5cBJ/+Gx + E//grgb/4a0G/+CtBv/grgb/4bIU/+XHaf/z7Nb/+fn4//n6+f/5+vn/+fn5//n5+f/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+fn5//n5+f/5+fb/8OGx/+K0Iv/hrQb/4rQf/+S8Pv/mxVz/6Mxx/+nNdP/nyGf/5cBL/+O3 + Lf/gsBL/4K0D/+CsBf/grAb/4awG/+CtBf/hrgv/5MJU//Dmx//5+Pf/+vn5//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//n6+f/5+vj/+fr4//n5+f/28ub/6c57/+KzIv/hrAX/4awE/+Gr + BP/gqwT/4KsF/+CsBf/gqwX/4KwF/+GrBP/hqwP/4a0J/+K2KP/qzXP/8unP//n49v/5+fn/+vn5//r6 + +f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vn/+vr5//r6+f/5+vn/+vn5//n5 + 9//18OD/7tuj/+bEXf/kuTP/4rMe/+KxGP/isRf/4bEc/+O2Lf/lv0j/6c9+//Djuf/38+j/+fn3//n6 + +f/6+fn/+vn5//r5+f/5+fn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+fr5//n5+P/5+fj/9/bv//bw3//17tn/9e7Z//Xv3f/39Oz/+fj2//r5 + +P/5+fj/+fn5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n5+f/6+vn/+vr5//r5+f/5+vn/+fr5//n6 + +f/5+vn/+fr5//r6+f/6+vn/+vr5//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/5+fn/+vr5//n6 + +f/5+vn/+vr5//n6+f/5+vn/+vr5//n6+f/6+vn/+vr5//n6+f/5+vn/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppInterface/FrmStart.Designer.cs b/SYS.FormUI/AppInterface/FrmStart.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..39dbb359320c327847f5fe8a5d65f5c9823a660d --- /dev/null +++ b/SYS.FormUI/AppInterface/FrmStart.Designer.cs @@ -0,0 +1,120 @@ +namespace SYS.FormUI +{ + partial class FrmStart + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.circleProgramBar1 = new SYS.FormUI.CircleProgramBar(); + this.lblSourceAuthor = new System.Windows.Forms.LinkLabel(); + this.SuspendLayout(); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.ForeColor = System.Drawing.Color.Black; + this.label1.Location = new System.Drawing.Point(240, 231); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(213, 20); + this.label1.TabIndex = 1; + this.label1.Text = "正在检查是否存在最新版本..."; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.ForeColor = System.Drawing.Color.Black; + this.label2.Location = new System.Drawing.Point(477, 316); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(163, 15); + this.label2.TabIndex = 2; + this.label2.Text = "该效果实现及代码拥有者为:"; + // + // circleProgramBar1 + // + this.circleProgramBar1.BackColor = System.Drawing.Color.White; + this.circleProgramBar1.BottomColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.circleProgramBar1.FinishedColor = System.Drawing.Color.Green; + this.circleProgramBar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.circleProgramBar1.ForeColor = System.Drawing.Color.Black; + this.circleProgramBar1.Location = new System.Drawing.Point(1, 0); + this.circleProgramBar1.MaxValue = 100; + this.circleProgramBar1.Name = "circleProgramBar1"; + this.circleProgramBar1.Progress = 1; + this.circleProgramBar1.Size = new System.Drawing.Size(692, 339); + this.circleProgramBar1.TabIndex = 0; + this.circleProgramBar1.TopColor = System.Drawing.Color.SkyBlue; + this.circleProgramBar1.TextChanged += new System.EventHandler(this.circleProgramBar1_TextChanged); + this.circleProgramBar1.Click += new System.EventHandler(this.circleProgramBar1_Click); + // + // lblSourceAuthor + // + this.lblSourceAuthor.AutoSize = true; + this.lblSourceAuthor.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblSourceAuthor.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.lblSourceAuthor.LinkColor = System.Drawing.Color.Black; + this.lblSourceAuthor.Location = new System.Drawing.Point(631, 316); + this.lblSourceAuthor.Name = "lblSourceAuthor"; + this.lblSourceAuthor.Size = new System.Drawing.Size(55, 15); + this.lblSourceAuthor.TabIndex = 3; + this.lblSourceAuthor.TabStop = true; + this.lblSourceAuthor.Text = "遗失情缘"; + this.lblSourceAuthor.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblSourceAuthor_LinkClicked); + // + // FrmStart + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.White; + this.ClientSize = new System.Drawing.Size(693, 338); + this.Controls.Add(this.lblSourceAuthor); + this.Controls.Add(this.label2); + this.Controls.Add(this.label1); + this.Controls.Add(this.circleProgramBar1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Name = "FrmStart"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "加载中......"; + this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmStart_FormClosed); + this.Load += new System.EventHandler(this.FrmStart_Load); + this.TextChanged += new System.EventHandler(this.FrmStart_TextChanged); + this.Leave += new System.EventHandler(this.FrmStart_Leave); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private CircleProgramBar circleProgramBar1; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.LinkLabel lblSourceAuthor; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppInterface/FrmStart.cs b/SYS.FormUI/AppInterface/FrmStart.cs new file mode 100644 index 0000000000000000000000000000000000000000..0553e83cfd5e3cd8c4985f9e4afaaee9079a7e7e --- /dev/null +++ b/SYS.FormUI/AppInterface/FrmStart.cs @@ -0,0 +1,107 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Diagnostics; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using System.Windows.Forms; +using SYS.Manager; +using ThreadState = System.Threading.ThreadState; + +namespace SYS.FormUI +{ + public partial class FrmStart : Form + { + public FrmStart() + { + InitializeComponent(); + } + + + + #region 判断版本号 + private void CheckUpdate() + { + string newversion = CheckInfoManager.CheckBaseVersion(); + + string version = System.Windows.Forms.Application.ProductVersion.ToString(); + if (version != newversion) + { + MessageBox.Show("旧版已停止使用,请到github或gitee仓库更新最新发行版!", "系统提醒", MessageBoxButtons.OK, MessageBoxIcon.Information); + System.Windows.Forms.Application.Exit(); + this.Visible = false; + //调用系统默认的浏览器 + System.Diagnostics.Process.Start("https://gitee.com/yjj0720/TopskyHotelManagerSystem/releases"); + } + else + { + MessageBox.Show("当前已为最新版本,无需更新!","系统提醒",MessageBoxButtons.OK,MessageBoxIcon.Information); + } + } + #endregion + + private void FrmStart_Load(object sender, EventArgs e) + { + this.BackColor = Color.White; + this.TransparencyKey = Color.White; + Thread thread = new Thread(new ThreadStart(new Action(delegate + { + for (int i = 0; i < 100; i++) + { + Thread.Sleep(50); + this.circleProgramBar1.Progress = i + 1; + if (this.circleProgramBar1.Progress == this.circleProgramBar1.MaxValue - 1) + { + this.Invoke(new Action(() => + { + CheckUpdate(); + FrmLogin f = new FrmLogin(/*this*/); + f.Show(); + this.Visible = false; + } + )); + } + } + }))); + thread.IsBackground = true; + thread.Start(); + } + + + private void FrmStart_FormClosed(object sender, FormClosedEventArgs e) + { + + } + + private void FrmStart_TextChanged(object sender, EventArgs e) + { + + } + + private void circleProgramBar1_TextChanged(object sender, EventArgs e) + { + + } + + + + private void FrmStart_Leave(object sender, EventArgs e) + { + + } + + private void circleProgramBar1_Click(object sender, EventArgs e) + { + + } + + private void lblSourceAuthor_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + System.Diagnostics.Process.Start("https://blog.lost520.cn/"); + } + } +} diff --git a/SYS.FormUI/AppInterface/FrmStart.resx b/SYS.FormUI/AppInterface/FrmStart.resx new file mode 100644 index 0000000000000000000000000000000000000000..1af7de150c99c12dd67a509fe57c10d63e4eeb04 --- /dev/null +++ b/SYS.FormUI/AppInterface/FrmStart.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SYS.FormUI/AppMain/FrmBackgroundSystem.Designer.cs b/SYS.FormUI/AppMain/FrmBackgroundSystem.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..1e398e0eb46b85529bfed8e66596753d942fc90a --- /dev/null +++ b/SYS.FormUI/AppMain/FrmBackgroundSystem.Designer.cs @@ -0,0 +1,343 @@ + +namespace SYS.FormUI +{ + partial class FrmBackgroundSystem + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("职位类型维护"); + System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("民族类型维护"); + System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("学历类型维护"); + System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("部门信息维护"); + System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("基础信息", new System.Windows.Forms.TreeNode[] { + treeNode1, + treeNode2, + treeNode3, + treeNode4}); + System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("员工工资账单"); + System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("内部财务账单"); + System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("酒店盈利情况"); + System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("财务信息", new System.Windows.Forms.TreeNode[] { + treeNode6, + treeNode7, + treeNode8}); + System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("水电信息"); + System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("水电管理", new System.Windows.Forms.TreeNode[] { + treeNode10}); + System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("监管部门情况"); + System.Windows.Forms.TreeNode treeNode13 = new System.Windows.Forms.TreeNode("监管统计", new System.Windows.Forms.TreeNode[] { + treeNode12}); + System.Windows.Forms.TreeNode treeNode14 = new System.Windows.Forms.TreeNode("房态图一览"); + System.Windows.Forms.TreeNode treeNode15 = new System.Windows.Forms.TreeNode("新增客房"); + System.Windows.Forms.TreeNode treeNode16 = new System.Windows.Forms.TreeNode("客房管理", new System.Windows.Forms.TreeNode[] { + treeNode14, + treeNode15}); + System.Windows.Forms.TreeNode treeNode17 = new System.Windows.Forms.TreeNode("客户信息管理"); + System.Windows.Forms.TreeNode treeNode18 = new System.Windows.Forms.TreeNode("顾客消费账单"); + System.Windows.Forms.TreeNode treeNode19 = new System.Windows.Forms.TreeNode("客户管理", new System.Windows.Forms.TreeNode[] { + treeNode17, + treeNode18}); + System.Windows.Forms.TreeNode treeNode20 = new System.Windows.Forms.TreeNode("员工管理"); + System.Windows.Forms.TreeNode treeNode21 = new System.Windows.Forms.TreeNode("公告日志"); + System.Windows.Forms.TreeNode treeNode22 = new System.Windows.Forms.TreeNode("上传公告日志"); + System.Windows.Forms.TreeNode treeNode23 = new System.Windows.Forms.TreeNode("人事管理", new System.Windows.Forms.TreeNode[] { + treeNode20, + treeNode21, + treeNode22}); + System.Windows.Forms.TreeNode treeNode24 = new System.Windows.Forms.TreeNode("商品管理"); + System.Windows.Forms.TreeNode treeNode25 = new System.Windows.Forms.TreeNode("仓库物资"); + System.Windows.Forms.TreeNode treeNode26 = new System.Windows.Forms.TreeNode("物资管理", new System.Windows.Forms.TreeNode[] { + treeNode24, + treeNode25}); + System.Windows.Forms.TreeNode treeNode27 = new System.Windows.Forms.TreeNode("员工操作日志"); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmBackgroundSystem)); + this.Aside = new Sunny.UI.UINavMenu(); + this.imageList1 = new System.Windows.Forms.ImageList(this.components); + this.pnlForm = new Sunny.UI.UIPanel(); + this.btnSetting = new Sunny.UI.UIButton(); + this.btnLocked = new Sunny.UI.UIButton(); + this.uiLabel1 = new Sunny.UI.UILabel(); + this.lblScroll = new Sunny.UI.UIScrollingText(); + this.lbTime = new Sunny.UI.UILabel(); + this.timer1 = new System.Windows.Forms.Timer(this.components); + this.cmsMenu = new Sunny.UI.UIContextMenuStrip(); + this.tsmiUpdatePwd = new System.Windows.Forms.ToolStripMenuItem(); + this.cmsMenu.SuspendLayout(); + this.SuspendLayout(); + // + // Aside + // + this.Aside.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.Aside.DrawMode = System.Windows.Forms.TreeViewDrawMode.OwnerDrawText; + this.Aside.Font = new System.Drawing.Font("微软雅黑", 12F); + this.Aside.FullRowSelect = true; + this.Aside.ItemHeight = 50; + this.Aside.Location = new System.Drawing.Point(6, 87); + this.Aside.MenuStyle = Sunny.UI.UIMenuStyle.Custom; + this.Aside.Name = "Aside"; + treeNode1.Name = "节点1"; + treeNode1.Text = "职位类型维护"; + treeNode2.Name = "节点2"; + treeNode2.Text = "民族类型维护"; + treeNode3.Name = "节点4"; + treeNode3.Text = "学历类型维护"; + treeNode4.Name = "节点5"; + treeNode4.Text = "部门信息维护"; + treeNode5.Name = "节点0"; + treeNode5.Text = "基础信息"; + treeNode6.Name = "节点0"; + treeNode6.Text = "员工工资账单"; + treeNode7.Name = "节点1"; + treeNode7.Text = "内部财务账单"; + treeNode8.Name = "节点2"; + treeNode8.Text = "酒店盈利情况"; + treeNode9.Name = "btnCash"; + treeNode9.Text = "财务信息"; + treeNode10.Name = "节点0"; + treeNode10.Text = "水电信息"; + treeNode11.Name = "节点1"; + treeNode11.Text = "水电管理"; + treeNode12.Name = "节点3"; + treeNode12.Text = "监管部门情况"; + treeNode13.Name = "节点2"; + treeNode13.Text = "监管统计"; + treeNode14.Name = "节点6"; + treeNode14.Text = "房态图一览"; + treeNode15.Name = "节点7"; + treeNode15.Text = "新增客房"; + treeNode16.Name = "节点3"; + treeNode16.Text = "客房管理"; + treeNode17.Name = "节点8"; + treeNode17.Text = "客户信息管理"; + treeNode18.Name = "节点9"; + treeNode18.Text = "顾客消费账单"; + treeNode19.Name = "节点4"; + treeNode19.Text = "客户管理"; + treeNode20.Name = "节点6"; + treeNode20.Text = "员工管理"; + treeNode21.Name = "节点15"; + treeNode21.Text = "公告日志"; + treeNode22.Name = "节点16"; + treeNode22.Text = "上传公告日志"; + treeNode23.Name = "节点5"; + treeNode23.Text = "人事管理"; + treeNode24.Name = "节点11"; + treeNode24.Text = "商品管理"; + treeNode25.Name = "节点12"; + treeNode25.Text = "仓库物资"; + treeNode26.Name = "节点10"; + treeNode26.Text = "物资管理"; + treeNode27.Name = "节点13"; + treeNode27.Text = "员工操作日志"; + this.Aside.Nodes.AddRange(new System.Windows.Forms.TreeNode[] { + treeNode5, + treeNode9, + treeNode11, + treeNode13, + treeNode16, + treeNode19, + treeNode23, + treeNode26, + treeNode27}); + this.Aside.ShowLines = false; + this.Aside.Size = new System.Drawing.Size(234, 624); + this.Aside.Style = Sunny.UI.UIStyle.Custom; + this.Aside.TabIndex = 0; + this.Aside.MenuItemClick += new Sunny.UI.UINavMenu.OnMenuItemClick(this.Aside_MenuItemClick); + // + // imageList1 + // + this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream"))); + this.imageList1.TransparentColor = System.Drawing.Color.Transparent; + this.imageList1.Images.SetKeyName(0, "财务.png"); + // + // pnlForm + // + this.pnlForm.Font = new System.Drawing.Font("微软雅黑", 12F); + this.pnlForm.Location = new System.Drawing.Point(247, 88); + this.pnlForm.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pnlForm.MinimumSize = new System.Drawing.Size(1, 1); + this.pnlForm.Name = "pnlForm"; + this.pnlForm.Size = new System.Drawing.Size(1001, 623); + this.pnlForm.Style = Sunny.UI.UIStyle.Custom; + this.pnlForm.TabIndex = 1; + this.pnlForm.Text = "点击左侧导航栏"; + // + // btnSetting + // + this.btnSetting.BackColor = System.Drawing.Color.Transparent; + this.btnSetting.BackgroundImage = global::SYS.FormUI.Properties.Resources.settings2; + this.btnSetting.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.btnSetting.Cursor = System.Windows.Forms.Cursors.Arrow; + this.btnSetting.FillColor = System.Drawing.Color.Transparent; + this.btnSetting.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnSetting.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(168)))), ((int)(((byte)(255))))); + this.btnSetting.ForeHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(168)))), ((int)(((byte)(255))))); + this.btnSetting.ForePressColor = System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(168)))), ((int)(((byte)(255))))); + this.btnSetting.ForeSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(168)))), ((int)(((byte)(255))))); + this.btnSetting.Location = new System.Drawing.Point(1172, 45); + this.btnSetting.MinimumSize = new System.Drawing.Size(1, 1); + this.btnSetting.Name = "btnSetting"; + this.btnSetting.Radius = 20; + this.btnSetting.Size = new System.Drawing.Size(35, 35); + this.btnSetting.Style = Sunny.UI.UIStyle.Custom; + this.btnSetting.StyleCustomMode = true; + this.btnSetting.TabIndex = 31; + this.btnSetting.Click += new System.EventHandler(this.btnSetting_Click); + this.btnSetting.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btnSetting_MouseDown); + this.btnSetting.MouseLeave += new System.EventHandler(this.btnSetting_MouseLeave); + this.btnSetting.MouseHover += new System.EventHandler(this.btnSetting_MouseHover); + // + // btnLocked + // + this.btnLocked.BackColor = System.Drawing.Color.Transparent; + this.btnLocked.BackgroundImage = global::SYS.FormUI.Properties.Resources._lock; + this.btnLocked.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.btnLocked.Cursor = System.Windows.Forms.Cursors.Arrow; + this.btnLocked.FillColor = System.Drawing.Color.Transparent; + this.btnLocked.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnLocked.ForeHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(168)))), ((int)(((byte)(255))))); + this.btnLocked.ForePressColor = System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(168)))), ((int)(((byte)(255))))); + this.btnLocked.ForeSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(168)))), ((int)(((byte)(255))))); + this.btnLocked.Location = new System.Drawing.Point(1213, 45); + this.btnLocked.MinimumSize = new System.Drawing.Size(1, 1); + this.btnLocked.Name = "btnLocked"; + this.btnLocked.Radius = 20; + this.btnLocked.Size = new System.Drawing.Size(35, 35); + this.btnLocked.Style = Sunny.UI.UIStyle.Custom; + this.btnLocked.StyleCustomMode = true; + this.btnLocked.TabIndex = 30; + this.btnLocked.Click += new System.EventHandler(this.btnLocked_Click); + this.btnLocked.MouseLeave += new System.EventHandler(this.btnLocked_MouseLeave); + this.btnLocked.MouseHover += new System.EventHandler(this.btnLocked_MouseHover); + // + // uiLabel1 + // + this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 12F); + this.uiLabel1.Location = new System.Drawing.Point(250, 44); + this.uiLabel1.Name = "uiLabel1"; + this.uiLabel1.Size = new System.Drawing.Size(217, 35); + this.uiLabel1.Style = Sunny.UI.UIStyle.Custom; + this.uiLabel1.TabIndex = 32; + this.uiLabel1.Text = "早上好,Admin"; + this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // lblScroll + // + this.lblScroll.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.lblScroll.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lblScroll.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.lblScroll.Interval = 800; + this.lblScroll.Location = new System.Drawing.Point(473, 41); + this.lblScroll.MinimumSize = new System.Drawing.Size(1, 1); + this.lblScroll.Name = "lblScroll"; + this.lblScroll.Offset = 20; + this.lblScroll.Size = new System.Drawing.Size(693, 42); + this.lblScroll.Style = Sunny.UI.UIStyle.Custom; + this.lblScroll.TabIndex = 33; + this.lblScroll.Text = "欢迎使用TS酒店管理后台安全系统,为了您的账号安全,离开座位请点击右侧锁定键锁定系统确保安全!"; + // + // lbTime + // + this.lbTime.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lbTime.Location = new System.Drawing.Point(11, 44); + this.lbTime.Name = "lbTime"; + this.lbTime.Size = new System.Drawing.Size(229, 35); + this.lbTime.Style = Sunny.UI.UIStyle.Custom; + this.lbTime.TabIndex = 34; + this.lbTime.Text = "早上好,Admin"; + this.lbTime.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // timer1 + // + this.timer1.Enabled = true; + this.timer1.Interval = 1000; + this.timer1.Tick += new System.EventHandler(this.timer1_Tick); + // + // cmsMenu + // + this.cmsMenu.Font = new System.Drawing.Font("微软雅黑", 12F); + this.cmsMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.tsmiUpdatePwd}); + this.cmsMenu.Name = "cmsMenu"; + this.cmsMenu.Size = new System.Drawing.Size(145, 30); + this.cmsMenu.MouseDown += new System.Windows.Forms.MouseEventHandler(this.cmsMenu_MouseDown); + // + // tsmiUpdatePwd + // + this.tsmiUpdatePwd.Image = global::SYS.FormUI.Properties.Resources.修改; + this.tsmiUpdatePwd.Name = "tsmiUpdatePwd"; + this.tsmiUpdatePwd.Size = new System.Drawing.Size(144, 26); + this.tsmiUpdatePwd.Text = "修改密码"; + this.tsmiUpdatePwd.Click += new System.EventHandler(this.tsmiUpdatePwd_Click); + // + // FrmBackgroundSystem + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1255, 718); + this.Controls.Add(this.lbTime); + this.Controls.Add(this.lblScroll); + this.Controls.Add(this.uiLabel1); + this.Controls.Add(this.btnSetting); + this.Controls.Add(this.btnLocked); + this.Controls.Add(this.pnlForm); + this.Controls.Add(this.Aside); + this.EscClose = false; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.IsForbidAltF4 = true; + this.MaximizeBox = false; + this.Name = "FrmBackgroundSystem"; + this.ShowIcon = true; + this.ShowRadius = false; + this.ShowShadow = true; + this.Style = Sunny.UI.UIStyle.Custom; + this.Text = "TS酒店管理后台安全系统"; + this.TextAlignment = System.Drawing.StringAlignment.Center; + this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmBackgroundSystem_FormClosed); + this.Load += new System.EventHandler(this.FrmBackgroundSystem_Load); + this.cmsMenu.ResumeLayout(false); + this.ResumeLayout(false); + + } + + #endregion + + private Sunny.UI.UINavMenu Aside; + private System.Windows.Forms.ImageList imageList1; + private Sunny.UI.UIPanel pnlForm; + private Sunny.UI.UIButton btnLocked; + private Sunny.UI.UIButton btnSetting; + private Sunny.UI.UILabel uiLabel1; + private Sunny.UI.UIScrollingText lblScroll; + private Sunny.UI.UILabel lbTime; + private System.Windows.Forms.Timer timer1; + private Sunny.UI.UIContextMenuStrip cmsMenu; + private System.Windows.Forms.ToolStripMenuItem tsmiUpdatePwd; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppMain/FrmBackgroundSystem.cs b/SYS.FormUI/AppMain/FrmBackgroundSystem.cs new file mode 100644 index 0000000000000000000000000000000000000000..eca38c94dade60022a9d9d5026b6e9c5ef1f217e --- /dev/null +++ b/SYS.FormUI/AppMain/FrmBackgroundSystem.cs @@ -0,0 +1,288 @@ +using Sunny.UI; +using SYS.Core; +using SYS.FormUI.AppFunction; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class FrmBackgroundSystem : UIForm + { + public delegate void UpdPwd(); + + public static UpdPwd closeform; + + public FrmBackgroundSystem() + { + InitializeComponent(); + closeform = Closeform; + } + + + + private void FrmBackgroundSystem_Load(object sender, EventArgs e) + { + foreach (Control item in this.Controls) + { + switch (item.GetType().ToString()) + { + case "Sunny.UI.UILabel": + item.Font = UI_FontUtil.mainFont; + break; + case "Sunny.UI.UIScrollingText": + item.Font = UI_FontUtil.scorllingFont; + break; + case "Sunny.UI.UINavMenu": + item.Font = UI_FontUtil.scorllingFont; + break; + } + } + DateTime tmCur = DateTime.Now; + + if (tmCur.Hour < 8 || tmCur.Hour > 18) + {//晚上 + uiLabel1.Text = "(*´▽`)ノノ晚上好," + AdminInfo.Name; + } + else if (tmCur.Hour > 8 && tmCur.Hour < 12) + {//上午 + uiLabel1.Text = "上午好," + AdminInfo.Name; + } + else + {//下午 + uiLabel1.Text = "下午好," + AdminInfo.Name; + } + } + + /// + /// 关闭当前窗体 + /// + public void Closeform() + { + this.Close(); + } + + private void Aside_MenuItemClick(TreeNode node, NavMenuItem item, int pageIndex) + { + if (!node.Text.IsNullOrEmpty()) + { + switch (node.Text) + { + case "基础信息": + break; + case "职位类型维护": + pnlForm.Controls.Clear(); + FrmPosition frmPosition = new FrmPosition(); + frmPosition.TopLevel = false; + pnlForm.Controls.Add(frmPosition); + frmPosition.Show(); + break; + case "民族类型维护": + pnlForm.Controls.Clear(); + FrmNation frmNation = new FrmNation(); + frmNation.TopLevel = false; + pnlForm.Controls.Add(frmNation); + frmNation.Show(); + break; + case "学历类型维护": + pnlForm.Controls.Clear(); + FrmEducation frmEducation = new FrmEducation(); + frmEducation.TopLevel = false; + pnlForm.Controls.Add(frmEducation); + frmEducation.Show(); + break; + case "部门信息维护": + pnlForm.Controls.Clear(); + FrmDepartment frmDepartment = new FrmDepartment(); + frmDepartment.TopLevel = false; + pnlForm.Controls.Add(frmDepartment); + frmDepartment.Show(); + break; + case "员工工资账单": + break; + case "内部财务账单": + pnlForm.Controls.Clear(); + FrmCash frmCash = new FrmCash(); + frmCash.TopLevel = false; + pnlForm.Controls.Add(frmCash); + frmCash.Show(); + break; + case "酒店盈利情况": + pnlForm.Controls.Clear(); + FrmChart frmChart = new FrmChart(); + frmChart.TopLevel = false; + pnlForm.Controls.Add(frmChart); + frmChart.Show(); + break; + case "水电管理": + + break; + case "水电信息": + pnlForm.Controls.Clear(); + FrmWtiInfo frmWtiInfo = new FrmWtiInfo(); + frmWtiInfo.TopLevel = false; + pnlForm.Controls.Add(frmWtiInfo); + frmWtiInfo.Show(); + break; + case "监管统计": + break; + case "监管部门情况": + pnlForm.Controls.Clear(); + FrmCheckList frmCheckList = new FrmCheckList(); + frmCheckList.TopLevel = false; + pnlForm.Controls.Add(frmCheckList); + frmCheckList.Show(); + break; + case "客房管理": + break; + case "房态图一览": + pnlForm.Controls.Clear(); + FrmRoomMap frmRoomMap = new FrmRoomMap(); + frmRoomMap.TopLevel = false; + pnlForm.Controls.Add(frmRoomMap); + frmRoomMap.Show(); + break; + case "新增客房": + pnlForm.Controls.Clear(); + FrmAddRoom frmAddRoom = new FrmAddRoom(); + frmAddRoom.TopLevel = false; + pnlForm.Controls.Add(frmAddRoom); + frmAddRoom.Show(); + break; + case "客户管理": + break; + case "客户信息管理": + pnlForm.Controls.Clear(); + FrmCustoManager frmCustoManager = new FrmCustoManager(); + frmCustoManager.TopLevel = false; + pnlForm.Controls.Add(frmCustoManager); + frmCustoManager.Show(); + break; + case "顾客消费账单": + pnlForm.Controls.Clear(); + FrmCustoSpend frmCustoSpend = new FrmCustoSpend(); + frmCustoSpend.TopLevel = false; + pnlForm.Controls.Add(frmCustoSpend); + frmCustoSpend.Show(); + break; + case "人事管理": + break; + case "员工管理": + pnlForm.Controls.Clear(); + FrmWorkerManager frmWorkerManager = new FrmWorkerManager(); + frmWorkerManager.TopLevel = false; + pnlForm.Controls.Add(frmWorkerManager); + frmWorkerManager.Show(); + break; + case "公告日志": + pnlForm.Controls.Clear(); + FrmNotice frmNotice = new FrmNotice(); + frmNotice.TopLevel = false; + pnlForm.Controls.Add(frmNotice); + frmNotice.Show(); + break; + case "上传公告日志": + pnlForm.Controls.Clear(); + FrmUpLoadNotice frmUpLoadNotice = new FrmUpLoadNotice(); + frmUpLoadNotice.TopLevel = false; + pnlForm.Controls.Add(frmUpLoadNotice); + frmUpLoadNotice.Show(); + break; + case "物资管理": + break; + case "商品管理": + pnlForm.Controls.Clear(); + FrmSellThingManager frmSellThingManager = new FrmSellThingManager(); + frmSellThingManager.TopLevel = false; + pnlForm.Controls.Add(frmSellThingManager); + frmSellThingManager.Show(); + break; + case "仓库物资": + break; + case "员工操作日志": + pnlForm.Controls.Clear(); + FrmOperation frmOperation = new FrmOperation(); + frmOperation.TopLevel = false; + pnlForm.Controls.Add(frmOperation); + frmOperation.Show(); + break; + } + } + } + + private void btnSetting_MouseHover(object sender, EventArgs e) + { + this.btnSetting.RectHoverColor = Color.Black; + this.btnSetting.Radius = 20; + this.btnSetting.RadiusSides = UICornerRadiusSides.All; + + } + + private void btnLocked_MouseHover(object sender, EventArgs e) + { + this.btnLocked.RectHoverColor = Color.Black; + this.btnLocked.Radius = 20; + this.btnLocked.RadiusSides = UICornerRadiusSides.All; + } + + private void btnSetting_MouseLeave(object sender, EventArgs e) + { + this.btnSetting.RectColor = System.Drawing.Color.FromArgb(111, 168, 255); + this.btnLocked.Radius = 20; + } + + private void btnLocked_MouseLeave(object sender, EventArgs e) + { + this.btnLocked.RectColor = System.Drawing.Color.FromArgb(111, 168, 255); + this.btnLocked.Radius = 20; + } + + private void btnLocked_Click(object sender, EventArgs e) + { + if (MessageBox.Show("确定要锁定屏幕吗?锁定后不能做任何操作!", "锁屏", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == DialogResult.OK) + { + new FrmUnLockSystem().ShowDialog(); + } + } + + private void timer1_Tick(object sender, EventArgs e) + { + lbTime.Text = DateTime.Now.ToString("yyyy年MM月dd日 HH:mm:ss"); + } + + private void FrmBackgroundSystem_FormClosed(object sender, FormClosedEventArgs e) + { + System.Environment.Exit(0); + } + + private void btnSetting_Click(object sender, EventArgs e) + { + this.btnSetting.ContextMenuStrip = cmsMenu; + } + + private void cmsMenu_MouseDown(object sender, MouseEventArgs e) + { + } + + private void btnSetting_MouseDown(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + cmsMenu.Show(MousePosition); + } + + } + + private void tsmiUpdatePwd_Click(object sender, EventArgs e) + { + FrmChangeAdminPwd frmChangeAdminPwd = new FrmChangeAdminPwd(); + frmChangeAdminPwd.ShowDialog(); + } + } +} diff --git a/SYS.FormUI/AppMain/FrmBackgroundSystem.resx b/SYS.FormUI/AppMain/FrmBackgroundSystem.resx new file mode 100644 index 0000000000000000000000000000000000000000..24b58686ccdffd2b72e54e78b6296f133748968a --- /dev/null +++ b/SYS.FormUI/AppMain/FrmBackgroundSystem.resx @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAC6 + BwAAAk1TRnQBSQFMAwEBAAGAAQABgAEAARABAAEQAQAE/wEJAQAI/wFCAU0BNgEEBgABNgEEAgABKAMA + AUADAAEQAwABAQEAAQgGAAEEGAABgAIAAYADAAKAAQABgAMAAYABAAGAAQACgAIAA8ABAAHAAdwBwAEA + AfABygGmAQABMwUAATMBAAEzAQABMwEAAjMCAAMWAQADHAEAAyIBAAMpAQADVQEAA00BAANCAQADOQEA + AYABfAH/AQACUAH/AQABkwEAAdYBAAH/AewBzAEAAcYB1gHvAQAB1gLnAQABkAGpAa0CAAH/ATMDAAFm + AwABmQMAAcwCAAEzAwACMwIAATMBZgIAATMBmQIAATMBzAIAATMB/wIAAWYDAAFmATMCAAJmAgABZgGZ + AgABZgHMAgABZgH/AgABmQMAAZkBMwIAAZkBZgIAApkCAAGZAcwCAAGZAf8CAAHMAwABzAEzAgABzAFm + AgABzAGZAgACzAIAAcwB/wIAAf8BZgIAAf8BmQIAAf8BzAEAATMB/wIAAf8BAAEzAQABMwEAAWYBAAEz + AQABmQEAATMBAAHMAQABMwEAAf8BAAH/ATMCAAMzAQACMwFmAQACMwGZAQACMwHMAQACMwH/AQABMwFm + AgABMwFmATMBAAEzAmYBAAEzAWYBmQEAATMBZgHMAQABMwFmAf8BAAEzAZkCAAEzAZkBMwEAATMBmQFm + AQABMwKZAQABMwGZAcwBAAEzAZkB/wEAATMBzAIAATMBzAEzAQABMwHMAWYBAAEzAcwBmQEAATMCzAEA + ATMBzAH/AQABMwH/ATMBAAEzAf8BZgEAATMB/wGZAQABMwH/AcwBAAEzAv8BAAFmAwABZgEAATMBAAFm + AQABZgEAAWYBAAGZAQABZgEAAcwBAAFmAQAB/wEAAWYBMwIAAWYCMwEAAWYBMwFmAQABZgEzAZkBAAFm + ATMBzAEAAWYBMwH/AQACZgIAAmYBMwEAA2YBAAJmAZkBAAJmAcwBAAFmAZkCAAFmAZkBMwEAAWYBmQFm + AQABZgKZAQABZgGZAcwBAAFmAZkB/wEAAWYBzAIAAWYBzAEzAQABZgHMAZkBAAFmAswBAAFmAcwB/wEA + AWYB/wIAAWYB/wEzAQABZgH/AZkBAAFmAf8BzAEAAcwBAAH/AQAB/wEAAcwBAAKZAgABmQEzAZkBAAGZ + AQABmQEAAZkBAAHMAQABmQMAAZkCMwEAAZkBAAFmAQABmQEzAcwBAAGZAQAB/wEAAZkBZgIAAZkBZgEz + AQABmQEzAWYBAAGZAWYBmQEAAZkBZgHMAQABmQEzAf8BAAKZATMBAAKZAWYBAAOZAQACmQHMAQACmQH/ + AQABmQHMAgABmQHMATMBAAFmAcwBZgEAAZkBzAGZAQABmQLMAQABmQHMAf8BAAGZAf8CAAGZAf8BMwEA + AZkBzAFmAQABmQH/AZkBAAGZAf8BzAEAAZkC/wEAAcwDAAGZAQABMwEAAcwBAAFmAQABzAEAAZkBAAHM + AQABzAEAAZkBMwIAAcwCMwEAAcwBMwFmAQABzAEzAZkBAAHMATMBzAEAAcwBMwH/AQABzAFmAgABzAFm + ATMBAAGZAmYBAAHMAWYBmQEAAcwBZgHMAQABmQFmAf8BAAHMAZkCAAHMAZkBMwEAAcwBmQFmAQABzAKZ + AQABzAGZAcwBAAHMAZkB/wEAAswCAALMATMBAALMAWYBAALMAZkBAAPMAQACzAH/AQABzAH/AgABzAH/ + ATMBAAGZAf8BZgEAAcwB/wGZAQABzAH/AcwBAAHMAv8BAAHMAQABMwEAAf8BAAFmAQAB/wEAAZkBAAHM + ATMCAAH/AjMBAAH/ATMBZgEAAf8BMwGZAQAB/wEzAcwBAAH/ATMB/wEAAf8BZgIAAf8BZgEzAQABzAJm + AQAB/wFmAZkBAAH/AWYBzAEAAcwBZgH/AQAB/wGZAgAB/wGZATMBAAH/AZkBZgEAAf8CmQEAAf8BmQHM + AQAB/wGZAf8BAAH/AcwCAAH/AcwBMwEAAf8BzAFmAQAB/wHMAZkBAAH/AswBAAH/AcwB/wEAAv8BMwEA + AcwB/wFmAQAC/wGZAQAC/wHMAQACZgH/AQABZgH/AWYBAAFmAv8BAAH/AmYBAAH/AWYB/wEAAv8BZgEA + ASEBAAGlAQADXwEAA3cBAAOGAQADlgEAA8sBAAOyAQAD1wEAA90BAAPjAQAD6gEAA/EBAAP4AQAB8AH7 + Af8BAAGkAqABAAOAAwAB/wIAAf8DAAL/AQAB/wMAAf8BAAH/AQAC/wIAA/9CAAH0Df8yAAH/BgAB9AUA + Af8yAAH/BgAB9AUAAf8yAAH/BgAB9AUAAf8yAAH/BAAF9AMAAf8yAAH/AwAB/wX0AwAB/zIAAf8FAAH/ + AvQEAAH/MgAB/wQAAf8CAAL0AwAB/zIAAf8MAAH/MgAN/wH0MwAM9DQADPQ2AAj/AfSzAAFCAU0BPgcA + AT4DAAEoAwABQAMAARADAAEBAQABAQUAAYAXAAP/AQAC/wYAAYABAQYAAb8BfQYAAb8BfQYAAb8BfQYA + AbwBHQYAAbgBHQYAAb4BPQYAAb0BnQYAAb8B/QYAAYABAQYAAcABAwYAAcABAwYAAfABBwYAAv8GAAL/ + BgAL + + + + 143, 17 + + + 239, 17 + + + + + AAABAAEAICAAAAEAGABcAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz + UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAB8UlEQVRYR+2XPUgD + QRCFUwUkhX+IIAhBFMTCQlC00lKxUfuAhaCglUXAzsIIIgFRUEQshHRi6V8hCmKlEDCdTcogKAgRBAN3 + fhMnkCLJ7V4EEe/gMRN23pu3e7d3m1AouOpYAdd1x8BqHRL+qDRtdhwnBrLkLnEL9PlTs2DRKwxmafao + jXPkacn1d4rYayFZuRSRKYTnQRwkwA44Bs/aKEOeJO8SBfIFcAXedTyt9dvEFTAnxkHUyByFN6VZlUeE + zsFENRHGeoA0fa3El2fGyAAC1zqTafJR0A/ajcjfKxKRW0EcAZOyGmrIzoBpQ6862SmBgb+1AqVd4HVv + Tcetn4HAQLACv74CvDovdN+GTZ/0WnXoreurfdhID8KREozf/x4G9nRCxa+n54WBTTUw6FlsUIDeqepF + DMqLX7OYEuJGhBpFaHXIOQJcGmtR3K1L9mBMqlKI1r5OZtxKC5KcivKyI4gtVmQthreszQ/88OVWHKpA + ylZATk7K/SRGbfnFeohNCO2q0Bn5gJcQNa1gTTn3vpuXN0IwoYJ58sVqJhgbAjmtzZK3eRk2GpcznuwM + kFHxWzECOkWAOANOwAvjb8SNH2te7hDxRoTliF5QIwXyD90x8gflrmTKaGZ+i2goJ94lICvxBJJATs8N + fjX/L+8LhmH/b8WhH/UAAAAASUVORK5CYII= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppMain/FrmMain.Designer.cs b/SYS.FormUI/AppMain/FrmMain.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..f576b1c5e1fb0ada0ac63a141a37e002dbc95f7c --- /dev/null +++ b/SYS.FormUI/AppMain/FrmMain.Designer.cs @@ -0,0 +1,563 @@ +namespace SYS.FormUI +{ + partial class FrmMain + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain)); + this.lblTime = new System.Windows.Forms.Label(); + this.tmrDate = new System.Windows.Forms.Timer(this.components); + this.label1 = new System.Windows.Forms.Label(); + this.pnlMID = new System.Windows.Forms.Panel(); + this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components); + this.cmsMain = new System.Windows.Forms.ContextMenuStrip(this.components); + this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); + this.linkLabel1 = new System.Windows.Forms.LinkLabel(); + this.lblScroll = new Sunny.UI.UIScrollingText(); + this.tmrFont = new System.Windows.Forms.Timer(this.components); + this.label3 = new System.Windows.Forms.Label(); + this.btnHello = new Sunny.UI.UIButton(); + this.uiButton1 = new Sunny.UI.UIButton(); + this.picFormSize = new Sunny.UI.UIButton(); + this.picClose = new Sunny.UI.UIButton(); + this.pnlCheckInfo = new System.Windows.Forms.Panel(); + this.lblClose = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.lblCheckDay = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.pictureBox3 = new System.Windows.Forms.PictureBox(); + this.picRoom = new Sunny.UI.UIImageButton(); + this.picCustomer = new Sunny.UI.UIImageButton(); + this.picCommodity = new Sunny.UI.UIImageButton(); + this.picExtend = new Sunny.UI.UIImageButton(); + this.tsmiMain = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiChangeUser = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiLockScreen = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiMySpace = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiCheckUpdate = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiAboutUs = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiExitSystem = new System.Windows.Forms.ToolStripMenuItem(); + this.cmsMain.SuspendLayout(); + this.pnlCheckInfo.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.picRoom)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.picCustomer)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.picCommodity)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.picExtend)).BeginInit(); + this.SuspendLayout(); + // + // lblTime + // + this.lblTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.lblTime.AutoSize = true; + this.lblTime.BackColor = System.Drawing.Color.Transparent; + this.lblTime.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.lblTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblTime.Location = new System.Drawing.Point(53, 157); + this.lblTime.Name = "lblTime"; + this.lblTime.Size = new System.Drawing.Size(74, 20); + this.lblTime.TabIndex = 2; + this.lblTime.Text = "NowTime"; + // + // tmrDate + // + this.tmrDate.Enabled = true; + this.tmrDate.Interval = 1000; + this.tmrDate.Tick += new System.EventHandler(this.tmrDate_Tick); + // + // label1 + // + this.label1.BackColor = System.Drawing.Color.Transparent; + this.label1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(13, 107); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(152, 36); + this.label1.TabIndex = 14; + this.label1.Text = "TS酒店管理系统"; + this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // pnlMID + // + this.pnlMID.BackColor = System.Drawing.Color.Transparent; + this.pnlMID.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pnlMID.Location = new System.Drawing.Point(4, 225); + this.pnlMID.Name = "pnlMID"; + this.pnlMID.Size = new System.Drawing.Size(1072, 490); + this.pnlMID.TabIndex = 23; + // + // notifyIcon1 + // + this.notifyIcon1.ContextMenuStrip = this.cmsMain; + this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon"))); + this.notifyIcon1.Text = "TS酒店管理系统"; + this.notifyIcon1.Visible = true; + this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick); + // + // cmsMain + // + this.cmsMain.Font = new System.Drawing.Font("Microsoft YaHei UI Light", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.cmsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.tsmiMain, + this.toolStripSeparator1, + this.tsmiChangeUser, + this.tsmiLockScreen, + this.toolStripSeparator2, + this.tsmiMySpace, + this.tsmiCheckUpdate, + this.tsmiAboutUs, + this.tsmiExitSystem}); + this.cmsMain.Name = "cmsMain"; + this.cmsMain.Size = new System.Drawing.Size(181, 206); + this.cmsMain.Opening += new System.ComponentModel.CancelEventHandler(this.cmsMain_Opening); + // + // toolStripSeparator1 + // + this.toolStripSeparator1.Name = "toolStripSeparator1"; + this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6); + // + // toolStripSeparator2 + // + this.toolStripSeparator2.Name = "toolStripSeparator2"; + this.toolStripSeparator2.Size = new System.Drawing.Size(177, 6); + // + // linkLabel1 + // + this.linkLabel1.AutoSize = true; + this.linkLabel1.BackColor = System.Drawing.Color.Transparent; + this.linkLabel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.linkLabel1.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.linkLabel1.Location = new System.Drawing.Point(178, 21); + this.linkLabel1.Name = "linkLabel1"; + this.linkLabel1.Size = new System.Drawing.Size(50, 17); + this.linkLabel1.TabIndex = 26; + this.linkLabel1.TabStop = true; + this.linkLabel1.Text = "未打卡"; + this.linkLabel1.VisitedLinkColor = System.Drawing.Color.Green; + this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); + // + // lblScroll + // + this.lblScroll.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.lblScroll.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lblScroll.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.lblScroll.Interval = 1000; + this.lblScroll.Location = new System.Drawing.Point(234, 7); + this.lblScroll.MinimumSize = new System.Drawing.Size(1, 1); + this.lblScroll.Name = "lblScroll"; + this.lblScroll.Size = new System.Drawing.Size(760, 42); + this.lblScroll.TabIndex = 0; + // + // tmrFont + // + this.tmrFont.Enabled = true; + this.tmrFont.Interval = 1000; + this.tmrFont.Tick += new System.EventHandler(this.tmrFont_Tick); + // + // label3 + // + this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label3.AutoSize = true; + this.label3.BackColor = System.Drawing.Color.Transparent; + this.label3.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(53, 192); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(74, 20); + this.label3.TabIndex = 30; + this.label3.Text = "NowTime"; + // + // btnHello + // + this.btnHello.BackColor = System.Drawing.Color.Transparent; + this.btnHello.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.btnHello.Cursor = System.Windows.Forms.Cursors.Arrow; + this.btnHello.FillColor = System.Drawing.Color.Transparent; + this.btnHello.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnHello.Location = new System.Drawing.Point(12, 182); + this.btnHello.MinimumSize = new System.Drawing.Size(1, 1); + this.btnHello.Name = "btnHello"; + this.btnHello.Radius = 20; + this.btnHello.RadiusSides = Sunny.UI.UICornerRadiusSides.None; + this.btnHello.RectColor = System.Drawing.Color.Transparent; + this.btnHello.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None; + this.btnHello.Size = new System.Drawing.Size(35, 35); + this.btnHello.Style = Sunny.UI.UIStyle.Custom; + this.btnHello.StyleCustomMode = true; + this.btnHello.TabIndex = 33; + // + // uiButton1 + // + this.uiButton1.BackColor = System.Drawing.Color.Transparent; + this.uiButton1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("uiButton1.BackgroundImage"))); + this.uiButton1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.uiButton1.Cursor = System.Windows.Forms.Cursors.Arrow; + this.uiButton1.FillColor = System.Drawing.Color.Transparent; + this.uiButton1.Font = new System.Drawing.Font("微软雅黑", 12F); + this.uiButton1.Location = new System.Drawing.Point(12, 146); + this.uiButton1.MinimumSize = new System.Drawing.Size(1, 1); + this.uiButton1.Name = "uiButton1"; + this.uiButton1.Radius = 20; + this.uiButton1.RadiusSides = Sunny.UI.UICornerRadiusSides.None; + this.uiButton1.RectColor = System.Drawing.Color.Transparent; + this.uiButton1.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None; + this.uiButton1.Size = new System.Drawing.Size(35, 35); + this.uiButton1.Style = Sunny.UI.UIStyle.Custom; + this.uiButton1.StyleCustomMode = true; + this.uiButton1.TabIndex = 31; + // + // picFormSize + // + this.picFormSize.BackColor = System.Drawing.Color.Transparent; + this.picFormSize.BackgroundImage = global::SYS.FormUI.Properties.Resources.arrow_down_b; + this.picFormSize.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.picFormSize.Cursor = System.Windows.Forms.Cursors.Arrow; + this.picFormSize.FillColor = System.Drawing.Color.Transparent; + this.picFormSize.Font = new System.Drawing.Font("微软雅黑", 12F); + this.picFormSize.Location = new System.Drawing.Point(1000, 6); + this.picFormSize.MinimumSize = new System.Drawing.Size(1, 1); + this.picFormSize.Name = "picFormSize"; + this.picFormSize.Radius = 20; + this.picFormSize.Size = new System.Drawing.Size(35, 35); + this.picFormSize.Style = Sunny.UI.UIStyle.Custom; + this.picFormSize.StyleCustomMode = true; + this.picFormSize.TabIndex = 29; + this.picFormSize.Click += new System.EventHandler(this.picFormSize_Click_1); + this.picFormSize.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picFormSize_MouseDown); + this.picFormSize.MouseLeave += new System.EventHandler(this.picFormSize_MouseLeave_1); + this.picFormSize.MouseHover += new System.EventHandler(this.picFormSize_MouseHover); + // + // picClose + // + this.picClose.BackColor = System.Drawing.Color.Transparent; + this.picClose.BackgroundImage = global::SYS.FormUI.Properties.Resources.close; + this.picClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.picClose.Cursor = System.Windows.Forms.Cursors.Hand; + this.picClose.FillColor = System.Drawing.Color.Transparent; + this.picClose.Font = new System.Drawing.Font("微软雅黑", 12F); + this.picClose.Location = new System.Drawing.Point(1041, 6); + this.picClose.MinimumSize = new System.Drawing.Size(1, 1); + this.picClose.Name = "picClose"; + this.picClose.Radius = 20; + this.picClose.Size = new System.Drawing.Size(35, 35); + this.picClose.Style = Sunny.UI.UIStyle.Custom; + this.picClose.TabIndex = 28; + this.picClose.Click += new System.EventHandler(this.picClose_Click_1); + this.picClose.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picClose_MouseDown); + this.picClose.MouseLeave += new System.EventHandler(this.picClose_MouseLeave_1); + this.picClose.MouseHover += new System.EventHandler(this.picClose_MouseHover); + // + // pnlCheckInfo + // + this.pnlCheckInfo.BackColor = System.Drawing.Color.Transparent; + this.pnlCheckInfo.BackgroundImage = global::SYS.FormUI.Properties.Resources.打卡; + this.pnlCheckInfo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pnlCheckInfo.Controls.Add(this.lblClose); + this.pnlCheckInfo.Controls.Add(this.label4); + this.pnlCheckInfo.Controls.Add(this.lblCheckDay); + this.pnlCheckInfo.Controls.Add(this.label2); + this.pnlCheckInfo.Location = new System.Drawing.Point(173, 53); + this.pnlCheckInfo.Name = "pnlCheckInfo"; + this.pnlCheckInfo.Size = new System.Drawing.Size(88, 73); + this.pnlCheckInfo.TabIndex = 27; + this.pnlCheckInfo.Visible = false; + // + // lblClose + // + this.lblClose.AutoSize = true; + this.lblClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblClose.Location = new System.Drawing.Point(66, 5); + this.lblClose.Name = "lblClose"; + this.lblClose.Size = new System.Drawing.Size(16, 17); + this.lblClose.TabIndex = 3; + this.lblClose.Text = "×"; + this.lblClose.Click += new System.EventHandler(this.lblClose_Click); + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.Location = new System.Drawing.Point(18, 48); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(22, 17); + this.label4.TabIndex = 2; + this.label4.Text = "天"; + // + // lblCheckDay + // + this.lblCheckDay.AutoSize = true; + this.lblCheckDay.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblCheckDay.Location = new System.Drawing.Point(7, 28); + this.lblCheckDay.Name = "lblCheckDay"; + this.lblCheckDay.Size = new System.Drawing.Size(48, 17); + this.lblCheckDay.TabIndex = 1; + this.lblCheckDay.Text = "36500"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(5, 4); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(67, 15); + this.label2.TabIndex = 0; + this.label2.Text = "您已打卡:"; + // + // pictureBox3 + // + this.pictureBox3.BackColor = System.Drawing.Color.Transparent; + this.pictureBox3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox3.BackgroundImage"))); + this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox3.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBox3.Location = new System.Drawing.Point(12, 7); + this.pictureBox3.Name = "pictureBox3"; + this.pictureBox3.Size = new System.Drawing.Size(155, 97); + this.pictureBox3.TabIndex = 15; + this.pictureBox3.TabStop = false; + this.pictureBox3.Click += new System.EventHandler(this.pictureBox3_Click); + // + // picRoom + // + this.picRoom.Cursor = System.Windows.Forms.Cursors.Hand; + this.picRoom.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.picRoom.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(204)))), ((int)(((byte)(255))))); + this.picRoom.Image = ((System.Drawing.Image)(resources.GetObject("picRoom.Image"))); + this.picRoom.ImageHover = ((System.Drawing.Image)(resources.GetObject("picRoom.ImageHover"))); + this.picRoom.ImagePress = ((System.Drawing.Image)(resources.GetObject("picRoom.ImagePress"))); + this.picRoom.Location = new System.Drawing.Point(257, 132); + this.picRoom.Name = "picRoom"; + this.picRoom.Size = new System.Drawing.Size(124, 83); + this.picRoom.TabIndex = 34; + this.picRoom.TabStop = false; + this.picRoom.Text = null; + this.picRoom.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + this.picRoom.Click += new System.EventHandler(this.picRoom_Click); + // + // picCustomer + // + this.picCustomer.Cursor = System.Windows.Forms.Cursors.Hand; + this.picCustomer.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.picCustomer.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(204)))), ((int)(((byte)(255))))); + this.picCustomer.Image = ((System.Drawing.Image)(resources.GetObject("picCustomer.Image"))); + this.picCustomer.ImageHover = ((System.Drawing.Image)(resources.GetObject("picCustomer.ImageHover"))); + this.picCustomer.ImagePress = ((System.Drawing.Image)(resources.GetObject("picCustomer.ImagePress"))); + this.picCustomer.Location = new System.Drawing.Point(479, 132); + this.picCustomer.Name = "picCustomer"; + this.picCustomer.Size = new System.Drawing.Size(124, 83); + this.picCustomer.TabIndex = 35; + this.picCustomer.TabStop = false; + this.picCustomer.Text = null; + this.picCustomer.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + this.picCustomer.WaitOnLoad = true; + this.picCustomer.Click += new System.EventHandler(this.picCustomer_Click); + // + // picCommodity + // + this.picCommodity.Cursor = System.Windows.Forms.Cursors.Hand; + this.picCommodity.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.picCommodity.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(204)))), ((int)(((byte)(255))))); + this.picCommodity.Image = ((System.Drawing.Image)(resources.GetObject("picCommodity.Image"))); + this.picCommodity.ImageHover = ((System.Drawing.Image)(resources.GetObject("picCommodity.ImageHover"))); + this.picCommodity.ImagePress = ((System.Drawing.Image)(resources.GetObject("picCommodity.ImagePress"))); + this.picCommodity.Location = new System.Drawing.Point(710, 132); + this.picCommodity.Name = "picCommodity"; + this.picCommodity.Size = new System.Drawing.Size(124, 83); + this.picCommodity.TabIndex = 36; + this.picCommodity.TabStop = false; + this.picCommodity.Text = null; + this.picCommodity.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + this.picCommodity.WaitOnLoad = true; + this.picCommodity.Click += new System.EventHandler(this.picCommodity_Click); + // + // picExtend + // + this.picExtend.Cursor = System.Windows.Forms.Cursors.Hand; + this.picExtend.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.picExtend.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(204)))), ((int)(((byte)(255))))); + this.picExtend.Image = ((System.Drawing.Image)(resources.GetObject("picExtend.Image"))); + this.picExtend.ImageHover = ((System.Drawing.Image)(resources.GetObject("picExtend.ImageHover"))); + this.picExtend.ImagePress = ((System.Drawing.Image)(resources.GetObject("picExtend.ImagePress"))); + this.picExtend.Location = new System.Drawing.Point(928, 132); + this.picExtend.Name = "picExtend"; + this.picExtend.Size = new System.Drawing.Size(124, 83); + this.picExtend.TabIndex = 37; + this.picExtend.TabStop = false; + this.picExtend.Text = null; + this.picExtend.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + this.picExtend.WaitOnLoad = true; + this.picExtend.Click += new System.EventHandler(this.picExtend_Click); + // + // tsmiMain + // + this.tsmiMain.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tsmiMain.Image = global::SYS.FormUI.Properties.Resources.主页__1_; + this.tsmiMain.Name = "tsmiMain"; + this.tsmiMain.Size = new System.Drawing.Size(180, 24); + this.tsmiMain.Text = "主界面"; + this.tsmiMain.Click += new System.EventHandler(this.tsmiMain_Click); + // + // tsmiChangeUser + // + this.tsmiChangeUser.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tsmiChangeUser.Image = global::SYS.FormUI.Properties.Resources.切换账号; + this.tsmiChangeUser.Name = "tsmiChangeUser"; + this.tsmiChangeUser.Size = new System.Drawing.Size(180, 24); + this.tsmiChangeUser.Text = "切换用户"; + this.tsmiChangeUser.Click += new System.EventHandler(this.tsmiChangeUser_Click); + // + // tsmiLockScreen + // + this.tsmiLockScreen.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tsmiLockScreen.Image = global::SYS.FormUI.Properties.Resources.锁屏; + this.tsmiLockScreen.Name = "tsmiLockScreen"; + this.tsmiLockScreen.Size = new System.Drawing.Size(180, 24); + this.tsmiLockScreen.Text = "快速锁屏"; + this.tsmiLockScreen.Click += new System.EventHandler(this.tsmiLockScreen_Click); + // + // tsmiMySpace + // + this.tsmiMySpace.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tsmiMySpace.Image = global::SYS.FormUI.Properties.Resources.个人中心; + this.tsmiMySpace.Name = "tsmiMySpace"; + this.tsmiMySpace.Size = new System.Drawing.Size(180, 24); + this.tsmiMySpace.Text = "个人中心"; + this.tsmiMySpace.Click += new System.EventHandler(this.tsmiMySpace_Click); + // + // tsmiCheckUpdate + // + this.tsmiCheckUpdate.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tsmiCheckUpdate.Image = global::SYS.FormUI.Properties.Resources.检查更新__1_; + this.tsmiCheckUpdate.Name = "tsmiCheckUpdate"; + this.tsmiCheckUpdate.Size = new System.Drawing.Size(180, 24); + this.tsmiCheckUpdate.Text = "检查更新"; + this.tsmiCheckUpdate.Click += new System.EventHandler(this.tsmiCheckUpdate_Click); + // + // tsmiAboutUs + // + this.tsmiAboutUs.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tsmiAboutUs.Image = global::SYS.FormUI.Properties.Resources.关于我们; + this.tsmiAboutUs.Name = "tsmiAboutUs"; + this.tsmiAboutUs.Size = new System.Drawing.Size(180, 24); + this.tsmiAboutUs.Text = "关于我们"; + this.tsmiAboutUs.Click += new System.EventHandler(this.tsmiAboutUs_Click); + // + // tsmiExitSystem + // + this.tsmiExitSystem.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tsmiExitSystem.Image = global::SYS.FormUI.Properties.Resources.注销; + this.tsmiExitSystem.Name = "tsmiExitSystem"; + this.tsmiExitSystem.Size = new System.Drawing.Size(180, 24); + this.tsmiExitSystem.Text = "退出系统"; + this.tsmiExitSystem.Click += new System.EventHandler(this.tsmiExitSystem_Click); + // + // FrmMain + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.ClientSize = new System.Drawing.Size(1080, 720); + this.Controls.Add(this.btnHello); + this.Controls.Add(this.uiButton1); + this.Controls.Add(this.label3); + this.Controls.Add(this.lblScroll); + this.Controls.Add(this.picFormSize); + this.Controls.Add(this.picClose); + this.Controls.Add(this.pnlCheckInfo); + this.Controls.Add(this.linkLabel1); + this.Controls.Add(this.pnlMID); + this.Controls.Add(this.pictureBox3); + this.Controls.Add(this.label1); + this.Controls.Add(this.lblTime); + this.Controls.Add(this.picRoom); + this.Controls.Add(this.picCustomer); + this.Controls.Add(this.picCommodity); + this.Controls.Add(this.picExtend); + this.DoubleBuffered = true; + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Name = "FrmMain"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "TS酒店管理系统"; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmMain_FormClosing); + this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmMain_FormClosed); + this.Load += new System.EventHandler(this.FrmMain_Load); + this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.FrmMain_MouseDown_1); + this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.FrmMain_MouseMove_1); + this.cmsMain.ResumeLayout(false); + this.pnlCheckInfo.ResumeLayout(false); + this.pnlCheckInfo.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.picRoom)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.picCustomer)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.picCommodity)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.picExtend)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.Label lblTime; + private System.Windows.Forms.Timer tmrDate; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.PictureBox pictureBox3; + private System.Windows.Forms.Panel pnlMID; + private System.Windows.Forms.ToolStripMenuItem tsmiMain; + private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; + private System.Windows.Forms.ToolStripMenuItem tsmiChangeUser; + private System.Windows.Forms.ToolStripMenuItem tsmiLockScreen; + private System.Windows.Forms.ToolStripSeparator toolStripSeparator2; + private System.Windows.Forms.ToolStripMenuItem tsmiCheckUpdate; + private System.Windows.Forms.ToolStripMenuItem tsmiExitSystem; + private System.Windows.Forms.ToolStripMenuItem tsmiAboutUs; + private System.Windows.Forms.LinkLabel linkLabel1; + private System.Windows.Forms.Panel pnlCheckInfo; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label lblCheckDay; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label lblClose; + public System.Windows.Forms.NotifyIcon notifyIcon1; + public System.Windows.Forms.ContextMenuStrip cmsMain; + private Sunny.UI.UIButton picClose; + private Sunny.UI.UIButton picFormSize; + private System.Windows.Forms.Timer tmrFont; + private Sunny.UI.UIScrollingText lblScroll; + private System.Windows.Forms.Label label3; + private Sunny.UI.UIButton uiButton1; + private Sunny.UI.UIButton btnHello; + private Sunny.UI.UIImageButton picRoom; + private Sunny.UI.UIImageButton picCustomer; + private Sunny.UI.UIImageButton picCommodity; + private Sunny.UI.UIImageButton picExtend; + private System.Windows.Forms.ToolStripMenuItem tsmiMySpace; + } +} \ No newline at end of file diff --git a/SYS.FormUI/AppMain/FrmMain.cs b/SYS.FormUI/AppMain/FrmMain.cs new file mode 100644 index 0000000000000000000000000000000000000000..e6de08fa828af26e0850e598691bcd5b9f6af059 --- /dev/null +++ b/SYS.FormUI/AppMain/FrmMain.cs @@ -0,0 +1,545 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Net; +using System.Runtime.InteropServices; +using System.Windows.Forms; +using SYS.Core; +using SYS.FormUI.Properties; +using Sunny.UI; +using System.Management; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class FrmMain : Form + { + private FrmLogin returnForm1 = null; + public FrmMain(FrmLogin F1) + { + InitializeComponent(); + #region 防止背景闪屏方法 + this.DoubleBuffered = true;//设置本窗体 + SetStyle(ControlStyles.UserPaint, true); + SetStyle(ControlStyles.AllPaintingInWmPaint, true); // 禁止擦除背景. + SetStyle(ControlStyles.DoubleBuffer, true); // 双缓冲 + #endregion + + Control.CheckForIllegalCrossThreadCalls = false;//关闭线程检查 + //Main = this;//储存主窗口实例对象 + // 接受Form1对象 + this.returnForm1 = F1; + Stop = StopUseExit; + Start = StartUseExit; + CloseMy = CloseMine; + } + + public delegate void StopUseList(); + //定义委托类型的变量 + public static StopUseList Stop; + + public delegate void StarUseList(); + //定义委托类型的变量 + public static StarUseList Start; + + public static StarUseList CloseMy; + + + public void StopUseExit() + { + notifyIcon1.Visible = false; + tsmiExitSystem.Enabled = false; + } + + public void StartUseExit() + { + notifyIcon1.Visible = true; + tsmiExitSystem.Enabled = true; + } + + //public static FrmMain Main;//全局保存主窗口实例对象 + //private MyRoom Myroom;//房态图对象 + + public static string wk_WorkerName; + public static string wk_WorkerNames; + + #region 调用windows的系统锁定 + [DllImport("user32 ")] + public static extern bool LockWorkStation();//这个是调用windows的系统锁定 + #endregion + + #region 窗体渐变相关代码 + private bool showing = true; + #endregion + + #region 记录鼠标和窗体坐标的方法 + private Point mouseOld;//鼠标旧坐标 + private Point formOld;//窗体旧坐标 + #endregion + + #region 记录移动的窗体坐标 + private void FrmMain_MouseDown_1(object sender, MouseEventArgs e) + { + formOld = this.Location; + mouseOld = MousePosition; + } + #endregion + + #region 记录窗体移动的坐标 + private void FrmMain_MouseMove_1(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + Point mouseNew = MousePosition; + int moveX = mouseNew.X - mouseOld.X; + int moveY = mouseNew.Y - mouseOld.Y; + this.Location = new Point(formOld.X + moveX, formOld.Y + moveY); + } + } + #endregion + + #region 定时器:获取网络时间 + private void tmrDate_Tick(object sender, EventArgs e) + { + lblTime.Text = DateTime.Now.ToString("HH:mm:ss"); + } + #endregion + + #region 获取网络时间 + public static string GetNetDateTime() + { + //获取网络时间 + WebRequest request = null; + WebResponse response = null; + WebHeaderCollection headerCollection = null; + string datetime = string.Empty; + try + { + request = WebRequest.Create("https://www.baidu.com"); + request.Timeout = 3000; + request.Credentials = CredentialCache.DefaultCredentials; + response = request.GetResponse(); + headerCollection = response.Headers; + foreach (var h in headerCollection.AllKeys) + { + if (h == "Date") + { + datetime = headerCollection[h]; + } + } + return datetime; + } + catch (Exception) { return datetime; } + finally + { + if (request != null) + { request.Abort(); } + if (response != null) + { response.Close(); } + if (headerCollection != null) + { headerCollection.Clear(); } + } + } + #endregion + + #region 从数据库读取文字滚动的内容 + List fonts = new FontsService().SelectFontAll(); + int fontn = 0; + #endregion + + #region 定时器:文字滚动间隔 + private void tmrFont_Tick(object sender, EventArgs e) + { + fontn++; + if (fontn == fonts.Count) + { + fontn = 0; + } + lblScroll.Text = fonts[fontn].FontsMess; + } + #endregion + + #region 退出当前程序 + private void picClose_Click_1(object sender, EventArgs e) + { + notifyIcon1.Dispose(); + System.Windows.Forms.Application.Exit(); + } + #endregion + + #region 窗体最小化 + private void picFormSize_Click_1(object sender, EventArgs e) + { + WindowState = FormWindowState.Minimized; + } + #endregion + + #region 窗体边框阴影效果变量申明 + + const int CS_DropSHADOW = 0x20000; + const int GCL_STYLE = (-26); + //声明Win32 API + [DllImport("user32.dll", CharSet = CharSet.Auto)] + public static extern int SetClassLong(IntPtr hwnd, int nIndex, int dwNewLong); + [DllImport("user32.dll", CharSet = CharSet.Auto)] + public static extern int GetClassLong(IntPtr hwnd, int nIndex); + + #endregion + + #region 窗体加载事件方法 + private void FrmMain_Load(object sender, EventArgs e) + { + foreach (Control item in this.Controls) + { + if (item.GetType().ToString() == "System.Windows.Forms.Label") + { + item.Font = UI_FontUtil.mainFont; + } + } + + + SetClassLong(this.Handle, GCL_STYLE, GetClassLong(this.Handle, GCL_STYLE) | CS_DropSHADOW); //API函数加载,实现窗体边框阴影效果 + + DateTime tmCur = DateTime.Now; + + if (tmCur.Hour < 8 || tmCur.Hour > 18) + {//晚上 + label3.Text = "(*´▽`)ノノ晚上好," + LoginInfo.WorkerName; + btnHello.BackgroundImage = Resources.月亮; + } + else if (tmCur.Hour > 8 && tmCur.Hour < 12) + {//上午 + label3.Text = "上午好," + LoginInfo.WorkerName; + btnHello.BackgroundImage = Resources.早上; + } + else + {//下午 + label3.Text = "下午好," + LoginInfo.WorkerName; + btnHello.BackgroundImage = Resources.咖啡; + } + int n = Convert.ToInt32(new WorkerCheckService().SelectToDayCheckInfoByWorkerNo(LoginInfo.WorkerNo)); + if (n > 0) + { + linkLabel1.Text = "已打卡"; + linkLabel1.ForeColor = Color.Green; + linkLabel1.LinkColor = Color.Green; + } + notifyIcon1.Text = "TS酒店管理系统-"+ LoginInfo.WorkerName +"-版本号:" + System.Windows.Forms.Application.ProductVersion.ToString(); + wk_WorkerName = LoginInfo.WorkerName; + pnlMID.Controls.Clear(); + FrmRoomManager frm1 = new FrmRoomManager(); + frm1.TopLevel = false; + pnlMID.Controls.Add(frm1); + frm1.Show(); + + + + + } + #endregion + + + #region 客房管理列表弹出事件方法 + private void picRoom_Click(object sender, EventArgs e) + { + pnlMID.Controls.Clear(); + FrmRoomManager frm1 = new FrmRoomManager(); + frm1.TopLevel = false; + pnlMID.Controls.Add(frm1); + frm1.Show(); + + + } + #endregion + + #region 用户管理列表弹出事件方法 + private void picCustomer_Click(object sender, EventArgs e) + { + + pnlMID.Controls.Clear(); + FrmCustomerManager frm1 = new FrmCustomerManager(); + frm1.TopLevel = false; + pnlMID.Controls.Add(frm1); + frm1.Show(); + } + #endregion + + + #region 扩展管理列表弹出事件方法 + private void picExtend_Click(object sender, EventArgs e) + { + //pnlMID.Controls.Clear(); + UIMessageTip.ShowError("界面维护,请稍后重试"); + return; + //FrmExtendOption frm = new FrmExtendOption(); + //frm.TopLevel = false; + //FrmExtendOption frm1 = new FrmExtendOption(); + //frm1.TopLevel = false; + //pnlMID.Controls.Add(frm1); + //frm1.Show(); + } + #endregion + + #region 关闭按钮鼠标事件 + private void picClose_MouseEnter(object sender, EventArgs e) + { + picClose.BackColor = Color.White; + } + + private void picClose_MouseLeave(object sender, EventArgs e) + { + picClose.BackColor = Color.Transparent; + } + #endregion + + #region 最小化按钮鼠标事件 + private void picFormSize_MouseEnter(object sender, EventArgs e) + { + picFormSize.BackColor = Color.White; + } + private void picFormSize_MouseLeave(object sender, EventArgs e) + { + picFormSize.BackColor = Color.Transparent; + } + + + + + + + #endregion + + + #region 计算后台系统的入口点击事件方法 + int i = 0; + #endregion + + #region 后台系统入口事件方法 + private void pictureBox3_Click(object sender, EventArgs e) + { + i++; + if (i < 3) + { + + } + else if (i % 3 == 0) + { + FrmAdminEnter frm = new FrmAdminEnter(); + frm.Show(); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = LoginInfo.WorkerNo + LoginInfo.WorkerName + "于" + DateTime.Now + "尝试或成功登入了后台系统!"; + o.OperationAccount = LoginInfo.WorkerNo; + o.datains_usr = LoginInfo.WorkerNo; + o.datains_date = DateTime.Now; + #endregion + new OperationlogService().InsertOperationLog(o); + } + + } + #endregion + + #region 调用系统锁屏方法 + private void tsmiLockScreen_Click(object sender, EventArgs e) + { + LockWorkStation(); + } + #endregion + + #region 检查软件更新版本事件方法 + private void tsmiCheckUpdate_Click(object sender, EventArgs e) + { + //调用系统默认的浏览器 + System.Diagnostics.Process.Start("https://gitee.com/yjj0720/TopskyHotelManagerSystem/releases"); + } + #endregion + + #region 切换用户事件方法 + private void tsmiChangeUser_Click(object sender, EventArgs e) + { + this.Close(); + } + #endregion + + #region 退出酒店管理系统事件方法 + private void tsmiExitSystem_Click(object sender, EventArgs e) + { + System.Windows.Forms.Application.Exit(); + + } + #endregion + + #region 关于我们选项的事件方法 + private void tsmiAboutUs_Click(object sender, EventArgs e) + { + FrmAboutUs frm = new FrmAboutUs(); + frm.Show(); + } + #endregion + + #region 当窗体关闭后的事件方法 + private void FrmMain_FormClosed(object sender, FormClosedEventArgs e) + { + notifyIcon1.Dispose(); + } + #endregion + + private void tsmiSelectUserAdmin_Click(object sender, EventArgs e) + { + + } + + private void picCommodity_Click(object sender, EventArgs e) + { + pnlMID.Controls.Clear(); + FrmSellThing frm1 = new FrmSellThing(); + frm1.TopLevel = false; + pnlMID.Controls.Add(frm1); + frm1.Show(); + } + + + + private void cmsMain_Opening(object sender, CancelEventArgs e) + { + + } + + private void FrmMain_FormClosing(object sender, FormClosingEventArgs e) + { + notifyIcon1.Dispose(); + this.returnForm1.Visible = true; + } + + private void tsmiMain_Click(object sender, EventArgs e) + { + if (WindowState == FormWindowState.Minimized) + { + this.WindowState = FormWindowState.Normal; + } + else + { + this.WindowState = FormWindowState.Minimized; + } + } + + private void panel1_Paint(object sender, PaintEventArgs e) + { + + } + + private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + int n = Convert.ToInt32(new WorkerCheckService().SelectToDayCheckInfoByWorkerNo(LoginInfo.WorkerNo)); + if (n > 0) + { + linkLabel1.Text = "已打卡"; + linkLabel1.ForeColor = Color.Green; + linkLabel1.LinkColor = Color.Green; + pnlCheckInfo.Visible = true; + lblCheckDay.Text = Convert.ToString(new WorkerCheckService().SelectWorkerCheckDaySumByWorkerNo(LoginInfo.WorkerNo)); + } + else + { + linkLabel1.Text = "未打卡"; + linkLabel1.ForeColor = Color.Red; + linkLabel1.LinkColor = Color.Red; + bool dr = UIMessageBox.Show("你今天还未打卡哦,请先打卡吧!", "打卡提醒",UIStyle.Blue, UIMessageBoxButtons.OK); + if (dr == true) + { + WorkerCheck workerCheck = new WorkerCheck + { + WorkerNo = LoginInfo.WorkerNo, + CheckWay = "系统界面", + CheckTime = DateTime.Parse(GetNetDateTime()), + datains_usr = LoginInfo.WorkerNo, + datains_date = DateTime.Now + }; + bool j = new WorkerCheckService().AddCheckInfo(workerCheck); + if (j == true) + { + lblCheckDay.Text = Convert.ToString(new WorkerCheckService().SelectWorkerCheckDaySumByWorkerNo(LoginInfo.WorkerNo)); + UIMessageBox.Show("打卡成功!你已累计打卡" + lblCheckDay.Text + "天,再接再厉吧!", "打卡提醒",UIStyle.Green, UIMessageBoxButtons.OK); + linkLabel1.Text = "已打卡"; + linkLabel1.ForeColor = Color.Green; + linkLabel1.LinkColor = Color.Green; + pnlCheckInfo.Visible = true; + return; + + } + else + { + UIMessageBox.Show("服务器错误,请稍后再试!", "系统提示", UIStyle.Red,UIMessageBoxButtons.OK); + return; + } + } + } + + + } + + private void lblClose_Click(object sender, EventArgs e) + { + pnlCheckInfo.Visible = false; + } + + private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e) + { + + } + + private void picFormSize_MouseHover(object sender, EventArgs e) + { + this.picFormSize.BackColor = System.Drawing.Color.FromArgb(111, 168, 255); + this.picFormSize.Radius = 20; + } + + private void picFormSize_MouseDown(object sender, MouseEventArgs e) + { + this.picFormSize.BackColor = System.Drawing.Color.FromArgb(74, 131, 229); + this.picFormSize.Radius = 20; + } + + private void picClose_MouseHover(object sender, EventArgs e) + { + this.picClose.BackColor = System.Drawing.Color.FromArgb(111, 168, 255); + this.picClose.Radius = 20; + } + + private void picClose_MouseDown(object sender, MouseEventArgs e) + { + this.picClose.BackColor = System.Drawing.Color.FromArgb(74, 131, 229); + this.picClose.Radius = 20; + } + + private void picFormSize_MouseLeave_1(object sender, EventArgs e) + { + this.picFormSize.BackColor = System.Drawing.Color.Transparent; + this.picFormSize.BackgroundImage = Resources.arrow_down_b; + this.picFormSize.RectColor = System.Drawing.Color.FromArgb(80, 160, 255); + this.picFormSize.Radius = 20; + } + + private void picClose_MouseLeave_1(object sender, EventArgs e) + { + this.picClose.BackColor = System.Drawing.Color.Transparent; + this.picClose.BackgroundImage = Resources.close; + this.picClose.RectColor = System.Drawing.Color.FromArgb(80, 160, 255); + this.picClose.Radius = 20; + } + + private void tsmiMySpace_Click(object sender, EventArgs e) + { + FrmMySpace frmMySpace = new FrmMySpace(); + frmMySpace.Text = LoginInfo.WorkerName + "的个人中心"; + frmMySpace.ShowDialog(); + } + + public void CloseMine() + { + this.Close(); + } + } +} diff --git a/SYS.FormUI/AppMain/FrmMain.resx b/SYS.FormUI/AppMain/FrmMain.resx new file mode 100644 index 0000000000000000000000000000000000000000..a84caccce9cc0e237ece918a412a6e854f9058aa --- /dev/null +++ b/SYS.FormUI/AppMain/FrmMain.resx @@ -0,0 +1,1474 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + 206, 17 + + + 324, 17 + + + + + AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMvSWgLT3ERC095BktPeQbTT3kGi09xESMvT + ZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANTXPijV2TvE1do86NTaPNTV2jv21do6/9Xa + Ov/V2T16AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANXTNzrW1TbA1NU8QtPITwLypAkc1NFDEtXV + OJrW1TT/1tU0+tPROyIAAAAAAAAAAAAAAAAAAAAAAAAAANbNNBrX0DGg1M8/CgAAAADzpApa86QKqvKk + CozQzlkC19AwvtjQLv/WzjFsAAAAAAAAAAAAAAAAAAAAAAAAAADYyix41ss3DPOkCQYAAAAA86QKAvOk + ChbzpAq2AAAAANjKLGDZyyj/2MoriAAAAAAAAAAAAAAAAAAAAADYxDAO2cUpTPOjCQDzownO86QKCPOk + CgrzpArI86QKPgAAAADZxSZM2sUi/9rFJXYAAAAAAAAAAAAAAAAAAAAA2cAoMtbCPAQAAAAA8qMJrPKk + Ci7ypAoI86QKsvKkCozzpAoE28AfctzAHP/bwSM8AAAAAAAAAAAAAAAAAAAAANa9OgoAAAAAAAAAAPOk + CYDzpApcAAAAAPOkCiryowo81LlSANy8GMTcvBjS1L5GAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPOk + ChTypAps86QKlPKjCSDypAoAAAAAAN22Fk7etxL83LgYQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADzpApi86QKrvOkCq7zpAqu86QKDN6yEyrfsw3q3rQScs64cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADZryoI264bDAAAAAAAAAAA2q4iBN+uDF7frwni3rAOYtCyTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA1rRGAN6tD1TfrAuQ4KwIqOCsCMrgrQiW2qkNHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA1as3ANqtKAjSqkICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//8AAP//AAD/HwAA/A8AAPvHAAD3JwAA/7MAAPt3AAD7NwAA++cAAP3vAAD43wAA/78AAPh/ + AAD//wAA//8AAA== + + + + 111, 17 + + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAj5JREFUWEft + lj9OG0EUxn0A0uHdpcwBOEIkJHehoqGKlIIqhSlCRVIkd0GWzOzKEidIi7hBFIRszxQIDgHvm/1mmcEz + Ztak9E96Yvy9PzvL7r43gy1b+jBUDzvDevmprPW4bPRE/i6stesxfIhh+P+lqJdnRa21XOhpnSEGsUx7 + P6WafyyVvoldrFL6LyzmszmSyzKbIXfz63Xh4nLxu1Lzw3J2XzBsgDU0+GLxDOtHpf4Ng2KNvq0u9We6 + kyAGsX4uatGdT9mYqSsQu4uq1gfi+wPDmnJH8N+TWpTzKBr9pUuu9TXlAG6gvcPIBgByXQxqUl7P7tXj + B0m4c4nyMu3TFZC1Acnt6khN1KYrTVmbkUta9wLlbACEL6YZUU4jQecuoVD6iPIK2RuQGi4OtSmnkcCZ + S9i9mO9RXiF3A6jh4sRmlNNIkLHB8ilRihJsoDHHlKN4n6WhlEaC0N9tl6MUxd+ANaVP6FrB65YLSmk4 + WNqiXreLUTWLr10srNGndHWghuefUE4jgWOXgPZKOUmhzLfuAtaWP+iy2Lb94h9TTsNxaxNy+7hs4nsq + x++IqE05Dea5P3Zz+j8olfmJi/Gnxc4F1kHN7LMC5rlLfOtrWIf39ssGep4R/DNA7qPwCYaR1KKcjz2I + uAKtXafmgg/7fzeErG16MAn7eGvQ0F79Lok1tFQ8wzbDHky8s0FgeMbecw59ZrrRQSQFzwgvYzptd9mz + vy/tWQHj2k5MDC3MDZisoZlR1szfsqVjMHgGDlqzBLdX8RAAAAAASUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAAPoAAACtCAYAAACZZ2JyAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH + DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp + bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis + iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ + sf0ABniAAaYAMFnpqb5B7sFAJC83F3q6yAn8i94MAUj8vmXo6U+ng/9P0qxUvgAAyF/E5mxOOkvE+SJO + yhSkiu0zIqbGJIoZRomZL0pQxHJijlvkpZ99FtlRzOxkHlvE4pxT2clsMfeIeHuGkCNixEfEBRlcTqaI + b4tYM0mYzBXxW3FsMoeZDgCKJLYLOKx4EZuImMQPDnQR8XIAcKS4LzjmCxZwsgTiQ7mkpGbzuXHxArou + S49uam3NoHtyMpM4AoGhP5OVyOSz6S4pyalMXjYAi2f+LBlxbemiIluaWltaGpoZmX5RqP+6+Dcl7u0i + vQr43DOI1veH7a/8UuoAYMyKarPrD1vMfgA6tgIgd/8Pm+YhACRFfWu/8cV5aOJ5iRcIUm2MjTMzM424 + HJaRuKC/6386/A198T0j8Xa/l4fuyollCpMEdHHdWClJKUI+PT2VyeLQDf88xP848K/zWBrIieXwOTxR + RKhoyri8OFG7eWyugJvCo3N5/6mJ/zDsT1qca5Eo9Z8ANcoISN2gAuTnPoCiEAESeVDc9d/75oMPBeKb + F6Y6sTj3nwX9+65wifiRzo37HOcSGExnCfkZi2viawnQgAAkARXIAxWgAXSBITADVsAWOAI3sAL4gWAQ + DtYCFogHyYAPMkEu2AwKQBHYBfaCSlAD6kEjaAEnQAc4DS6Ay+A6uAnugAdgBIyD52AGvAHzEARhITJE + geQhVUgLMoDMIAZkD7lBPlAgFA5FQ3EQDxJCudAWqAgqhSqhWqgR+hY6BV2ArkID0D1oFJqCfoXewwhM + gqmwMqwNG8MM2An2hoPhNXAcnAbnwPnwTrgCroOPwe3wBfg6fAcegZ/DswhAiAgNUUMMEQbigvghEUgs + wkc2IIVIOVKHtCBdSC9yCxlBppF3KAyKgqKjDFG2KE9UCIqFSkNtQBWjKlFHUe2oHtQt1ChqBvUJTUYr + oQ3QNmgv9Cp0HDoTXYAuRzeg29CX0HfQ4+g3GAyGhtHBWGE8MeGYBMw6TDHmAKYVcx4zgBnDzGKxWHms + AdYO64dlYgXYAux+7DHsOewgdhz7FkfEqeLMcO64CBwPl4crxzXhzuIGcRO4ebwUXgtvg/fDs/HZ+BJ8 + Pb4LfwM/jp8nSBN0CHaEYEICYTOhgtBCuER4SHhFJBLVidbEACKXuIlYQTxOvEIcJb4jyZD0SS6kSJKQ + tJN0hHSedI/0ikwma5MdyRFkAXknuZF8kfyY/FaCImEk4SXBltgoUSXRLjEo8UISL6kl6SS5VjJHslzy + pOQNyWkpvJS2lIsUU2qDVJXUKalhqVlpirSptJ90snSxdJP0VelJGayMtoybDFsmX+awzEWZMQpC0aC4 + UFiULZR6yiXKOBVD1aF6UROoRdRvqP3UGVkZ2WWyobJZslWyZ2RHaAhNm+ZFS6KV0E7QhmjvlygvcVrC + WbJjScuSwSVzcopyjnIcuUK5Vrk7cu/l6fJu8onyu+U75B8poBT0FQIUMhUOKlxSmFakKtoqshQLFU8o + 3leClfSVApXWKR1W6lOaVVZR9lBOVd6vfFF5WoWm4qiSoFKmclZlSpWiaq/KVS1TPaf6jC5Ld6In0Svo + PfQZNSU1TzWhWq1av9q8uo56iHqeeqv6Iw2CBkMjVqNMo1tjRlNV01czV7NZ874WXouhFa+1T6tXa05b + RztMe5t2h/akjpyOl06OTrPOQ12yroNumm6d7m09jB5DL1HvgN5NfVjfQj9ev0r/hgFsYGnANThgMLAU + vdR6KW9p3dJhQ5Khk2GGYbPhqBHNyMcoz6jD6IWxpnGE8W7jXuNPJhYmSSb1Jg9MZUxXmOaZdpn+aqZv + xjKrMrttTjZ3N99o3mn+cpnBMs6yg8vuWlAsfC22WXRbfLS0suRbtlhOWWlaRVtVWw0zqAx/RjHjijXa + 2tl6o/Vp63c2ljYCmxM2v9ga2ibaNtlOLtdZzllev3zMTt2OaVdrN2JPt4+2P2Q/4qDmwHSoc3jiqOHI + dmxwnHDSc0pwOub0wtnEme/c5jznYuOy3uW8K+Lq4Vro2u8m4xbiVun22F3dPc692X3Gw8Jjncd5T7Sn + t+duz2EvZS+WV6PXzAqrFetX9HiTvIO8K72f+Oj78H26fGHfFb57fB+u1FrJW9nhB/y8/Pb4PfLX8U/z + /z4AE+AfUBXwNNA0MDewN4gSFBXUFPQm2Dm4JPhBiG6IMKQ7VDI0MrQxdC7MNaw0bGSV8ar1q66HK4Rz + wzsjsBGhEQ0Rs6vdVu9dPR5pEVkQObRGZ03WmqtrFdYmrT0TJRnFjDoZjY4Oi26K/sD0Y9YxZ2O8Yqpj + ZlgurH2s52xHdhl7imPHKeVMxNrFlsZOxtnF7YmbineIL4+f5rpwK7kvEzwTahLmEv0SjyQuJIUltSbj + kqOTT/FkeIm8nhSVlKyUgVSD1ILUkTSbtL1pM3xvfkM6lL4mvVNAFf1M9Ql1hVuFoxn2GVUZbzNDM09m + SWfxsvqy9bN3ZE/kuOd8vQ61jrWuO1ctd3Pu6Hqn9bUboA0xG7o3amzM3zi+yWPT0c2EzYmbf8gzySvN + e70lbEtXvnL+pvyxrR5bmwskCvgFw9tst9VsR23nbu/fYb5j/45PhezCa0UmReVFH4pZxde+Mv2q4quF + nbE7+0ssSw7uwuzi7Rra7bD7aKl0aU7p2B7fPe1l9LLCstd7o/ZeLV9WXrOPsE+4b6TCp6Jzv+b+Xfs/ + VMZX3qlyrmqtVqreUT13gH1g8KDjwZYa5ZqimveHuIfu1nrUttdp15UfxhzOOPy0PrS+92vG140NCg1F + DR+P8I6MHA082tNo1djYpNRU0gw3C5unjkUeu/mN6zedLYYtta201qLj4Ljw+LNvo78dOuF9ovsk42TL + d1rfVbdR2grbofbs9pmO+I6RzvDOgVMrTnV32Xa1fW/0/ZHTaqerzsieKTlLOJt/duFczrnZ86nnpy/E + XRjrjup+cHHVxds9AT39l7wvXbnsfvlir1PvuSt2V05ftbl66hrjWsd1y+vtfRZ9bT9Y/NDWb9nffsPq + RudN65tdA8sHzg46DF645Xrr8m2v29fvrLwzMBQydHc4cnjkLvvu5L2key/vZ9yff7DpIfph4SOpR+WP + lR7X/aj3Y+uI5ciZUdfRvidBTx6Mscae/5T+04fx/Kfkp+UTqhONk2aTp6fcp24+W/1s/Hnq8/npgp+l + f65+ofviu18cf+mbWTUz/pL/cuHX4lfyr468Xva6e9Z/9vGb5Dfzc4Vv5d8efcd41/s+7P3EfOYH7IeK + j3ofuz55f3q4kLyw8Bv3hPP74uYdwgAAAAlwSFlzAAAuIwAALiMBeKU/dgAAVnVJREFUeF7tnXV8FNfa + gN/gTgst7u7u7u7uVtydQqG0UKHtrd726/1uvaUQFxKCx9d3dmbWd2NAXaFKqeV739ndZLOcJBsBtvnm + j+d3Zt6ZOWPnmXPGIScnR0ZGppzDDMrIyJQvmEEZGZnyBTMoIyNTvmAGZWRkyhfMoIyMTPmCGZSRkSlf + MIMyMjLlC2ZQRkamfMEMysjIlC+YQRkZmfIFMygjI1O+YAZlZGTKF8ygjIxM+YIZlJGRKV8wgzIyMuUL + ZlBGRqZ8wQzKyMiUL5hBGRmZ8gUzKCMjU75gBmVkZMoXzGCg8WRaeqk55mZavAOmxNtgQ7wIK6MMMCzC + BHPPmqBTuB0mx1lhQpwNBkbaYVKUFdqEOWBymBGGh5lgSogBloZqYUKECAMirLAk2gTL4iwwPNIKbUPt + 0A2nnxBhgVEhIgwLNkKfMCu0jsyA1uHOiuNOc3XnRJmaTwgRhnYLtU3oFJM5o3+MY0u3U+Z/tw11vtMy + xPFum1DHex0jMz7uHJMZ0iU6/VTn6IzgDtGZ4a0jMz9uE5H+XucIx3s9Iu1vDwy3vjw81Lp9YIh54YBT + 4uQZwYYh66LFLmPjHa3mRPA1e0fYg5qFZ0CnYCv0DTHBCFymSdFGmBbOw4BQM3QMwfXD+JhIG8yMMUJP + XJdOkekwNMqBy26CYadF6BVqxeW3wPgoEwyNtkJzXL9OHxhg0OtXoP1bamj9Xw10fzUBerx6BTq8qYAh + z8VAa4y3/a8KBrwYD71fvQSNT5qg57tqaHfKCKOjLTAQt2erECvMDhegZYQT+oaaYEmUAGvP8DASl69h + dCaMibVB32gbDMJlHhFphtExZpgWa8T9ZYE+Zx0w+7wFVsToYRjm0TnWCXOjBZh/1gz9z9pheLQIK87o + YflFM0w6b4Wp8WbofsYGE3DaPZcF2HWRh00XBJgYK+J8BJgUb4RJ2D01CqeJ52FNvA62Jwiw/YoI+y4a + 4OkrBjh+ufiwym8gwAwGGixxi0upRMdCWZTo3XH6aZjX+BChyZhgYfCgMMvyTpHOp5tHZJxsEWKPaRqe + mfxQWKa5ZmiWo0b41fSa4Vc/qR529buqYVdvVAm7ehPTm9XCrv1QLfzaj4gn/akKxqqGXcNhV2/i+Ddq + hl39tnbY1U9qhV3Nqh2a5WwQmmFtHpHFPRyZndo2zBnZLjL9tXbhziPdTpvXDQoRR4+LMLWbGS1UnRuO + ooaYoUOZiK7+x4m+UxadPSCQYIlbXMqqRh/vFn01SrIuzlRxbJSlS5cQ64wu4fYdbcOd/20Rlh7fKDRd + VT8sy1knPPtG9fCrOZXCruVA2PUcCP/ElXqg/nBK3XgPKxCaxgf3sIo4n+rh136tHZ79Td3QzKyHwjJ0 + WLtfbhPhCMHlew5bE5t7BlumDg8xdpoUaa2+IEaE3rguHeUaXRY9EGCJW1xKK/r0EA5Wh6qx1hYaDImw + 9hkVaV0wKNrxdNuI9MgGYRlivfCsG0BC+0qIAgdhWgHTShLXJCr7pL54x6m7oPEq5oKyex8svOZPy0Xj + 1g3L/rZJaLqhVagjvFNE+sv9o2x7Oofb5vWIcg4YGW1vNC7ECKNO89BbFl0W/X7AEre4lFT0qWFYMEKN + tcaGCB0mhfFzBkRYnu0Y4ThXKzzrh/xCuWQm6TxiFoWvtN7xgsbxhTWNN9JBIIKWE4nA5Yz41LW8uOw0 + Tf2wzO/aRGYkdo9Mf6FPqHVFn2DzABS9bf8w80MTo0yVh6PozWTR/YZVfgMBZjDQYIlbXIolepQkehUU + vfa4MFOXUWHGta1C7QlVwrNdwpAoKA8JVDkChfKA4uRK6I7l9vsMk7gjjvJ5D/Pq9p1PPnxj3v3e03lB + eVZAJPmldXIdpLDZf71jmONMrzDLE6OizFMHRdlaYo1eG0WvOvj1K0ElE916j0W3yaL7wAwGGixxi4u/ + oo9H0QdF2atMi7JMaRvmeKd+WEZW1fCrt4Iirv9ZwS1ifmlcwlfEbqnmJFAaHD+nQmRef+4BgtLcc3Yf + pBr3E5w2Tz6anubrmgdr/mWD56CC8/g7KPzaHxUirt2uGXH1x0YRGda2obb3u3zALR7y+uUmHd5SyTV6 + IbDKbyDADAYaLHGLS1Gid0TRZ561YrdlYscI50cPhGddrRJx7SdX4ScJSDKXwB4hJSKxyY4xqh2rh2ff + bhiR+U3ryAxj4/AMxcMhjqR2obbYftH2d/pH2v53SJT1P/3POJ/rG5v+xJAzjmcHxzpf7B7peGZQjPNf + A6Mc/+0ZZj3ZMdQa0TjEntAsMlPTOjrDifl9WT0s+1eqbaX5SQcASvOWAaXMPQDgMufiKzML33E96+uB + YlUjrv5cMyzrk/qn7doW73Fvdvqf1Jm9Xr5UvffLl2TRfWCV30CAGQw0WOIWF5boK1D04Sj60njjg70j + rIvaR6a/1zwqi68RcfV3qSZGiV0yuWpWolrE1ZwGEZlfN4/I4NtEpF9qF2J7a0Co+fExUZZt7UOtS1pH + OKd0jUof3irMOaDpaVvfXiGm7hNiLG0mRZlazYgytpoYZ280/qzjoRlnrY2mx9uaDIu0NpwWa28yJcrS + emSo2KFfiNil9WlL3w6R6YO6xGSM6hlsmtQ7xLRgQJR988hg8Qg2qZ/rEmkPbROZntg0IsOOB6TbdPAh + QXOXGamIrYlKkR6Rr+YK7S22b8wXGodaEdQyqUB5Rn2SUz0s69YDp+2mhh8aT7d8W7e9y+vJQ0Y9FV6j + 7X+V0EYWnVl+AwFmMNBgiVtcfEXfjKJviOaChoWbhvWPsf+7aWSGE5usWFN+KokSRIUbC3qdyOxbD0Vl + pTePzEjtHGEP6x5pe6FDhPMRrKGnDIuwDBp+ytBkYbA2aFMMBwNCjICiQ8eodGgR7oQmp23QPdQMY2Ks + MDbKDJOjTFjI7DDqrBNPE2wwCQvooEgrTDxjh/EowtAwI/TGPFqetkK7yHRofyYTBp40wMRgDhbEGGHD + SUWF2aFcjSlRYqdh0ZahXcPtc7BFsGtwnPOlpuHO4CYRGRcbhGeYakdkfUeSk/iuFgg2+3F9KmOsqgSK + TwcBbzyC+8a9oOmDYj6TqBj9aU6NsKzvUPiEdv9RvNb8Xf2yTm+mdh/y/JlK/V65IIseYDCDgQZL3OLi + EX0qij4TRV8Zb2oxPcq4om24IwWkZrFLcJTgj9qR2V/Uj8yytoxMT+sU7Xypd4xz1cQo88ClkdxDM7Bw + Yk0OPSPt0v30gacFmBmih9UxPPTBwlumosdkQv+PeRgTzMPMGBOs/FgNU0J5GIf5kDhtwh0wLMYGey+L + 0C/MVHd4uKXzwDDT3A4hliMtwxynWkRk6B6MzErH9fma1ovkr4TC59b2iEv8O6Vm4X2QqEz5oOxw5nNJ + /LrBjp9avKuP7PJG0sYu/5MysOlHxha931FVuz8X42TRfWEGAw2WuMWFJD+OTI93VMNmc58BsY53q4Rn + /+Vu5t7GwvvjQ5GZX6Co8d0iHftGxVhGLo7hH+we7YDO0ekwOsoCcyN5lFUMGNHxIAWDo+2w5aIJeoWZ + YWC4FXog3U+L0gM+K6PFpsOiLDP7RFqPtIlKP1s3Kvt6lcirP2DNfAtF/6tKlK/IV3PFLw5VolD6GJQ+ + 9oucStGf5NQNcVzDGv2dru9pF7U9ZWo+JtpSA5c3SBb9/sEMBhqe2jg/GYxYwRxXZMBTyPxz9uUNojLt + 1JzFAv9X48gMR48IW8ToWNvB1XHCYBSyTuvI9ErDYqwV5sUIQd1Q9C7/INF7SqIbYUIID4ujjUGYf8Wu + EbbKY+KsNYbF2nr3iLRt7hdlfb9RdFZmVRQ9CMWsgFRGWam/mrfE2C/BinnjNZwOHpWjr/+N+f2BB47b + TUPs+olRpu2Do6wNZNHvH8xgoLHkvKPULD3vqIEs7RntuNQs3K5pF2r9z/Aw47LZkULnPhHWZuNirQ+u + j+MrTkCJWqFkKDqg6PAPF13Kv0uEDcbFWWBkrLVCj0hrnRHR5sbTYs09ep8yrOh4SnyrcbgznWp0iPpE + ohJKXw2FrRZ1VUpJZlc31vgS1O/C0+8Zx9MttRZcB4+/akdf/erBiAxllxDToUXhhvYkOm0rWfR7BzMY + aMyJ4EvN3Ai+yrwIflC7CNvk1uG2wX1CjS1mhHKVV0fqpee9qZCtjeNRODNgjV7uRB+Loo+ItUK3SBuK + ZYalcSKM+EhduftJQ+thwfzIcaH81h7hltPNI5zXSFSq6StGu2r56pLkebK78O73iO893BXH2h3zousC + 13IejMz8sm2k80qLiPTDQ0LEYWuiUL5Ygyz6PYAZDDQWhWhLzWI3HVGEVuF26IlSTg4zwLJIrtiit0PJ + +2L/kEgTDD3NwfwQDWzEQtY/VIC2EXYc3yHNo2mwBXqFonRnTDAJC+IMLJgTz1phfLwdZmABnX7OAsNw + ftPirDAF5RsVJkA/zKNVsAk6RDmgU2w6DPpYDxPxQDL/jADrP06DWaF6mIz5DMXxO6DAQ3E5N5dA9IUo + 0NCPcHt8LMCUYB1sDFbAtFB9xz7h5sW4bV7CVk9y9cjsH4OwViaohiZ5SXqX+G6i87qlOPX7xIiq0dek + AwdJXzcq65eW4Y6kwVG2xxbECIMnRQsVZdHvLsxgoLEoVFcmLEY6YqH3R/SRMRZYhLV0D6wxu8Y4pRp5 + YRQHU1D0pqHXoX3YVegSlgVdTzlhWLANJkc4oGNwBjQJvQYtw69DY0wfPpUNbYMzoU9kFvQNz0QRM/AA + cRV6R1+DgdHZMDAmG7qGZ8EAjPXDtEdIOnQITofGp7KgWdh1aBH5CXT+2AF9TjtgWEQGTPzYDIOCHThu + BnTB8RuHXIP+UZmw87IIvbE1MAQF6RVugR7BAkwO4WA5HqiG4AGpG8pOTfeCRJ8YrIdVwSoYH4bri9PP + /1gBgz/WDWwfaT/WOi4ruX501mdVUd4qKCtBIlcvITQtCQ/YYqiEB4+OUfakgdHmjY2jM7uPj7XWItEH + yqKXOcxgoMGStiT4I/qEaBO0RKkGRDlhGsrdKTIDa9cslIjeN8fmLgpd9aNfoYqHk79CJaQidlfFtNpH + v+DwX6DaScIVq4zD8vjFjauf8vD0U15SHl75UKwyUgmHVzx5S+r2TAcf/gZtQr+DNShA11Ab9MGmfNcw + B3TGpv9IbBXMQsn74vJ2CE+HsSg5nqPnir4oDkU/yRZ9xik19DjFw+gzFlhz0dwYDxI7G8dkptWKzv4K + hb9F0pdGdg+V8aBBNXwV7EbRNUPP2Nf1ibY1HxxhqTJSFr1MYQYDDZa0JcEf0SfHiPBw6CeSqDVP/gQ1 + 3FC3h+puPMN8+9n8zIj5j2ce+efryrPWx67+gpa3Eh4whsRkYfPdBN2xdh+FB7PFeI5euOgGGIGiL7lg + gQlnLRWHx9nr9Qrmp3QIt4Y+GJP9c4UYPP9GasSgtIRHYOymWA139x34xrGfDhpVYq79jekfHaMc8cMj + zFNQ9Mqy6GUHMxhosKQtCYWJPhELzM5zGhiNtXkFqTYmfpZkIqjbg0emQICWrSriWUbW8tK6PHjqJtQ/ + /T3UPXUD6iENsbv/B1ro+bEWJuE5+spCRJ941gIjUaYewXzVeeGGJpMijTNbRjgiasZc/RtisEZ2C18a + SPqqrvS3OtHZn3SNtr87NUbsOxtlLAvR5S/MMIKBBkvaksASfXmkHvpHmqB16OfQKfQLPD/+Xmoas6T6 + JyOdBtDpAErvOl34FRp89AXUOfk1jDlths0hyTCu4BodRqBMXYN5WBmuh9kRQtDIMGPn6RHiqo4xjpha + Mdl/B6HwVMOj/BIsmQvDMw0dNCifOjHZvzaPTk/rccZ+eNY5c8d+co1eKpjBQIMlbUnwiN4SRaer4bPC + tbAGRW8Z8ikW/p+lc146X/ZuApdnquA5P5z8HZqd/Aab70aYGabB1g2mp1TSObqv6N1Q9KUo+mQcZ3Ko + ADvCtHgaYO7VK8y0v02UI6F2TPYfFc5cz6l6BoU/g/ISboklPDHWMPfwWu5uEp5OD/Ag8lPnOGd0r7OO + pUvOm+qvQdGHyqIXG2Yw0FgUqocFITpYiLAE9hcSvRM209tGWKCL9JFEB4wKTZdquEBrkt8r6KAGJ29D + /Y+/h8EhVmgXmgWzPlZBr1Mcim5lij4FRZ8QKsJ67B4ebYbppzUwNlzo3z3G/kbDmExn9TNX/ybZMb1T + bj+p5U6rYD5BKHyT2MxPR56zn5gbbeg7OtxQRRa9eDCDgcZCrDmWYs27GAtWaWQn0duHO6AN1ugNT38B + QR/9Ll0tZwnw/w060FU8+ZvUxB99UoTu2HQfWUCN7i36sGiLdI4/MMIE01G2mVHCnDbRzoQaZ67+QKJj + mk/cO8mWUhruGsfVnxfLllKq3am10DnSqh4RIczpEuuoNy+aryCL7h/MYKAxMyoVdqpNsP6CCPNOaZkS + +8PiUC00/Phb6RYVFe6ir5T//4Ru7zU+lQHjz4h+iz4IRZ8QY4JFkVzQjAhD4/5xtqcaxGZ+VQUlrR57 + Nac2UssDCZzb7xI5X7+n2yM6xmojdNCgGr5ubPaNnrH2t+ZG8+1R9CBZ9KJhBgONmVEpsENphEc5O2zC + HbYsWAkrw9TFYlWYClYjjVD0SnhuSlemWYXcTW1kPHLQzaPliEPIfmQVQut5x/rTVfpKH/4EA6OvwbKL + KHUxRF+MLa/pEQYYEmetPy/eOLJnnCOCavYKKCjJS8K6ZPbgEdyDbyz/uDUR14Ej+8dWMU7tnHjL3KFn + bbLoRcAMBhok+jaFEY4bbTDvShY0/fBLaHvq82LTDqlz8gd/zsc7I9HIF8iX7rS8QOtzHQlDGiKs9Qf4 + 4DYMjvkE1l7mi1mj62GaS3RYdU6A1fHGTmPOWg83isv4JAhlrxZ7TZLdG5LY1e06ELhST7fvOC7hqyE1 + EDx3t3WOdbw4CWv3R87oZNELgBkMNEj07Sj6M0YzjLrwOcDbf0lPiVUoAX5edKPa/Gckp5zyB/ISUg9h + rb9096FZyHcwOjYDZp0TSyT6EpxuL0q09JyxzpB46/L2cemXa6KoVeNctXudOBS3BHimqxGHLQU8cNSN + zbrdJcYaPCNWGL3+okkSfYosej6YwUDDI/qTghUWJ2dBs9AbUPUjejCEXUhLSRDyCMISpLzwGTIWqYKw + toHravyHv8GDp27A8DPp0gMzJRF9R7wAs1C6iefMMD/e2HdAnDXsodjMr6ujpDURktaDt8i+FDaMDhxV + 8MDRNs6pmXHeumTqeetD03B+suh5MIOBhkd0Okc/LpjgkbR0CPrg16LOs0vKA8jzCEuQ8oIRaYaw1j8f + lT78Feqc+gFG4Xmwr+gb/BR9Noo+Mt4Ky+JF2H5WV7f/GcuxBnGZmSj6X7VI1rN3ylsc6iI1z17NqYIH + jofiMn8Zcc5+GEVv2eOMLUgW3QUzGGh4RD+Ioh81mGFZciZU/PCXu1Wj90ZiEZYg5YG/kDMItVxY658P + epqu/ukbTNH9rdFnx5sk0ZfSBznP6qHnGSuMiTMvbBOXbquMctZG0eu6kaR34x3zHuY7nneMmvM1MB0T + b/mwV6y1jSy6C2Yw0PAW/YDOCvuRFSmZWNP8KDXhWQW0FExDnAhLkvLAN8hxhLXud0CiPxR8A8ahMN1L + WaN7iz4i1lJ93Hnr1LbnM7SVsOldM/5qrtilgWSv5Up/aX7GmTDrnHnkARRdftadEQw0vEXfr7PBYQ6P + 0lob1EXR6dFVVgEtBQeQvxGWJOWBLGQOwlr3O6DTI3o7rmnI19DtNAcrIrRlUqMPi7XA+Au2KhMvWof3 + P2sLqYY1cS2SPT475wEvcanfW+R88UKG1cCmfI247L87xKenLblomnXkEieLHujkF90Kj6HoW1UOqIzN + 90oIq4CWkBrIvxES4pcy4CeErt7/ivgK5w+3EU8erPyLCx3ALiMtEdb6M6E7FfQSTP2Tn8FKlHguyjE5 + jC+16KMu2GHWRTOJ1mNQnOVk3fisP6SanWQvJQ8ilFd1pG18ujD3vGn1zgt8ZZJbFj1A8RX9oN4KOzV2 + 6BP7lVTjlKHsdZCFyIvI42XAEeQpJA4haVkyFwTJ/R/kMMLKu7gcRegi4xKEte6FQts56KPbMDjkGvQL + zYDRIVbYHqGGkSj3tGA1DI0UYWKMEUXniiG6DSZftKJkBlgXp2vaOcbyRr2zWTdrn3PJTrK6xM3KJzGb + O8eph9RCKmPt3ig+88s5583bUO4G42J5WfRAxFd0ar4/iulTggl6n/lKOk+/C+fqZUVFhGSlGpUlNIs/ + ES1S4AMt9wt6NwA++gM6ffwlLMNavV+kA0acFqFnmAPGRZthSaQORef9Fn0Kir4SRVsZq4dJ4fqqPc5Y + 33woPuvHWij7A+dQ9nNZCKWublfMf+ohdZGamN/D57L+6B9rPjwujm86WRY98LhT9DyO8SboF/slwPt0 + u41dOO8zrZFkhB5SYUnN4hbyOtIIYeV536Eanpr0lLpq+9+gb1g2LI/SFqtGd4lukEQfi9NNiTbU6h5r + eeOB+My/ap+/irKS6B5IXt9+D6y4p9uVUkuh9tmsnAFxpmemxYsNZNEDjMJEp2Y8MfjsFwDv/sYslPeZ + fgg9dlqcC3zUbN+AMJ9FDwR8Radu+qhF7+BsWBSlhhFnTbD6vAF2neOlB2b8FX1CNA9TYgwNesZaXq8j + yYm18vksrJldElNK/bndDB70Gu49HslOedaPz/xx0DnrM7Ni+Rqy6AFEYaLvw2b8EYNZugo/NP5zSXYq + eKzCeR+gZvsChO5ds4QuCLoFRgeICggr34CELtg9cPImtDr9BTQM+QaaI5tQ+JUXOBhzHpv12FwuSvTx + KPrkaA4WnBc7jE5M/7gK1sJ1zrtkr0/Clxo8eCANL2R93T/O/Ny8SO0DsugBQmGiS7Kj5PQgzV5MB2HN + Tk/N3YXbbiWhAfIMwpK5IOigQOfn9RFWngEN1eoVP7olSU+P0PYI/QK6hH8G/c9kwloU3h/Rx0Vh/yUR + NqVae/Y7Z42qjbVxXZSTRPfI7t3tT793nNJaF+icPePG0DPGZ9ae5Wo8gqJvk0W/vxQlOiHV7JxFuvXW + F8/ZqSlZxrfeSkJP5CLCErog6Hba/yJVEVae/yiCSPgPfoeHT9+A6bE2PGfXQO9Ys1t0O1P08VEcLLpo + hB0p2Pw/p+/WI96a+sCF7L/rXkDZL6Cs/uIW2zf+EFIPqYn5NTyf+cvkeNP+tfG6ejtl0e8v/ojuwgaP + 4vk6PQ9PV+OrYa1+n2v2CcgnCEvogqAXTuj8vMAXTv6JwIe3oNGp72FprAidotNhSKxVqtHp9prnqvuY + cAOMc9foJPrmVAusOMfBknOGEW0upIt1LmT/9aBbVG9YIhc03NP/0IVMSXbMM+fhC1l/zDwn7NiRIDyw + Uxb9/uG/6Hkcd1+Nv4svv/jDWoQlc2FYkD4Ind+z8vzHQvvB8xXagSj7uIsWmIp4avRx7otxE7BGX0yi + p5hhOYo+/xwPE88bNzY/n55di8S86CUydXv3e8d9Y75x7CbpqaXQ4ELGb4sTLEv3XBEq7JdFvz+URHSq + 2Q/pLdI5+326Gk8P3zyHsGQujEQkYK+2lwbP1Xn668zCeGyaX1LDugt62HhBJ7HufB4bsH/TRdcw6t5y + QVtj1AXzkw0uZv5U+6Jb9jKE8mx7Md288IJxwtFLnCz6/aAkolMzns7Z7+PV+C5IBMKSuSDoXvu7CCu/ + coFHdvqBxOKzuE8vp8EmFHnzRS1s8WLzBS3GXSmx9YIGtiYaGg26Yj9ZlS7MoZwkex6Zbnzj/kH51ULZ + u1xwJG64KI54OYGDZ1D24sIqv4EAMxholEx01wU6uhpPsks1+729Gj8TsSMsoQuCzs93IKz8yhV0Rb5J + 8Hcw/6wJDlxWSLIXxsbzWtiXbIDVycbR3S7a+eooZYNLKGk+MjFGZDGGufCNe/ppugcuZefUwXwHX7Ce + 2nde32zvRQ72Yi1dHFjlNxBgBgONkopOeK7GUzOeztnpAt09uhq/Dynu8+0aZDjCyq9cIX3B5oPb0Bhl + X4zN+F2XVJLMGxBKfdlwTgNbEg2wM5mvMveycVWTS5lf1JMkzS+3q9s35on79uenIVL78tWcBhczbo6J + F5/ddE5Xc90lg/TdvLWU+gGr/AYCzGCgURrRXbivxvPuq/HYdLzLNXsl5E2EJXNhRCF0752VZ7nD87mq + +qduwMpzPOy8oocdl/Ww/TJ3B9su6WFXsgDbU4ywLsn04PRk+3MPXsz8qz5JexlFJTzSevo9MVa3FyS4 + 1I1pQ0zrXs7OaX4x/ebS8/yqDZcMNTZhTY2pX7DKbyDADAYapRc9D7r1RvfZK9zdq/GtEHpjjSVzYbyC + sPIr19DfXh849SMcVDjgaTXuI7WNyTEVpsgJHOeg0tal/UVHdn2U8+HLWZKgZQXlVw9pejHj2opLwpDN + lw1BG1D2jX7AKr+BADMYaJSl6J6r8cPoAt37d+0vLdMRAWHJXBDfIVsQVn7lGjrgEg+i7PtSnfCizgxP + otAktgurV2qFp1D0oyprzRWptnVNL2V8/wDW6o2uoKQEQ9w7KGw8HEZ5PXxFkv2PoZesMfOumFpsThJh + X7IIu4uAVX4DAWYw0JgdkTR9j0JsfZi3B+3X2+BAKTlhNMKoC58BvHObWfDKAPpBwrcIS+iC4JEpCCu/ + +011pClC9/fpIEY/f6BnBOjdfbqm0Bahj2qypvULEp2+A9gk+CasS8yCl7RmSWgWzyBPovDr02x1+l+x + hzS4nHGrPopJghYKisyMMyDhSfYGlzJ+nXbFsmNXklhzf4oIe1HmwmCV30CAGQw0xp/nn5qbbNmzOc3a + ck+qFXaVkv0KM6y87ITu4V9J3y+/s+AV1aQvssn/IeLzIsvPXt1MgpE2CCu/+wH9xGIx8iTyERKDJCHU + UslA6JNUVkSJxCOhyAvIGmQwUteP7XQH8O5tmHXxKjyrR3EUNtintDLZg2xIs8HqFOukDlfSM2pjU7ux + j6ylwZNXXZS94xWnc1WSaebjKYIkM0pfIKzyGwgwg4HG4JT0w52uONRzL1nn7r1khm2XLKViK3IkUYAl + 59Mh6MMybb7Tl1UfQhQIS+bCoC/A0EU8Vr73igeREQi1SOhPLtkIa1kL42vkCvIvhN7c64b4/ZQf3RHp + HPUVLE92wC6VCWttEpoNHvhhv9JabViS48P6VzL/eDgBBS0OJDQr7kUjpMaV7JwRifawHclis11Yqx9W + mgqEVX4DAWYw0BifZF3e6Er6DxOu2F/YnWiusjHBAptKya5kE0w/lwUVylZ0eq10IuJAWBIUxO/IMoSV + 572gGtIDof+y0SO4rGUsCfStPPq0NK0bXaAs8vl96Ur8e79Bu4hvYH2qHbZjzb1NUTA7cfjyNOu07klO + E9W+TXxE9YWGs8ZhT5chxR9IyMpplZD+7cQE876dqUKlF3kb/MvAhlV+AwFmMNBYd8U0rvnl9K8GJjuS + VqeZeyxLtcDSUvKI0ghjL2bheWGZik41Mn1Flj40wSr4BWFDxiCsPO82JB994lqNsJatrDiH0EGQ3sor + 8j17eP8WtI34Fh7Xm2C/1lIoT+rMFaan2Z+vdyXj70aJKC0LkjZfvxvvmC/SOK7p6qLsPRPsql2pQp8X + OBs8jzzHWe+AVX4DAWYw0NifZO3RPiEjs12i8+aSRHHRvgQd7EzQl4pDyWqYc86GTfdbzIJWQkj00wh9 + CopV2AsiBKFzYlaed5u9yFWkOJ+6KgnUaqGfO9I/39ohhf5Agp5i7BD5LRzlTHAAZT6gtRbI4zoLLFNY + F3ZIcHxaD4UkMZsmkqAuSZtK4ub155E/RuPlTeeJZ0ixh7Eba/jfJ6bY337ZYIUXUOrnGbDKbyDADAYa + my7yzXtftinq48aemGh+44kENexO0MKeUnAkSQmzztqx5vgDyvBbc/QxRxFhFfTCoK/FluqqdQmhr8OS + fKxlulv8iNAV+1oIa5kk6JSqVfjXsC7FACuTxEJZTWkC335EgiX0gaSsnKZJLjklvLtZ/b4UMLxJUmZO + PazhOyelmw9oLF2f5G0Vjgs2OOYDq/wGAsxgoLHhnK7a8MuWENqJ3RNs6q2XdD0fvcLB/lJwCFsF2y6J + MCL6ulSw6Gk538JWTKg2p1tNX1U/+XMOgd3+Qj9U8OsXSWUEXRwj2T5FWMtzN6Gv5wxACj1fp5ZW+7Cv + 4ECCBnZedj0xVxgHr2irLE8QVqGUfzRGKUnYZiQtg4LihUHTNHDV+D9PTrG9+rhoq3bMZIfHjflhld9A + gBkMNGZeNsLQRNvbDZPxaJ2Q/v3MS+Kho5cN8FgpOHiZh2cTtfA4NuOpYFUtveh1kV0o+I81T/6YQ2B/ + UcLTByPpwxT0vzdWnncDkpxuf9HtMdYysaCr73QOT7fR6L/x9G+6FIRusxXnM9Z0oY8+xsFarnzQhyq6 + hH0JLyaq4ClsgRXF83hA2JXAde6TaEtr4CV6WUJ5NkLaJDo/36azDz+mM1c+rjXBMS9Y5TcQYAYDjV7J + ThiY5HizVXLGn/WTM3OGJdrOPpbIV92XwMPeEnIgkYfdVwSYHZshFawyqNGbICEo9q1aJ2/mENhflOh0 + 3hqJFOvPKaWkBUKvwrKWxxd6m45us61HhiKNEXrPnr5n1wtZjdBju2kInQLQ+rDyIb5CdiOsZUJo++ft + AxK9M9boJ5LVcDRRVyTHkEOJ+jrzkozbmmA5QXKaMWjuhaffe1hh3ZQ2RtEbIJNSne8eThSavoAVxbMJ + XC6s8hsIMIOBxtgkK0xKsh7ulOz8pg6K3j3FYd2gMA1erzBXQKAkbFeLMPVypvRDgvwFrsR0ROjqeXG+ + +EoX7eg8+V59CJJOD+jJNn9+EUXi0ietcLoiD4L07ADdQqPv49GnqukHFN550QHgDaSQ++l3it4p4it4 + WqmFI2mcXxxL08OeVMOA9kmO7z2ik5xlCeXZODnj73ZJzm92JIlDXkjm4KlkQy6s8hsIMIOBxnyFFZYq + LDN6pjiMdVKyclolOX8Yf0l4bYfaUmmPxgK7SsBuZK/WDMtT0qWCVQY1+mhEutpOtXj1/AW9IKjZOwO5 + V9+Ho9OLYwhrWXyhWtz9gcoitw0dQGgdPMLT67beedG99O4Ia1o3d4reGUU/gaIfTdX7xXEUfV+qoUWP + JIe1aXLGX01TMnJaoJhEc+p2kyuudz+l3niNQ+ROizRDGiZl/L1cYdqwXyVU2a4SwQOr/AYCzGCgsRel + PKK1NBipcMTVS8mUjqidE+2Ze7SW7vu1lgp7tFYoCYf0ZtiktEsFi95Tzyt0xaYmQi+keBdut/DUdC+w + +U7nyXSriZXn3aA/4s9XaakpTg/QuKcr1rahbUHT0tN11CqgX1DPR9y1ubfQnu781PwYRX//N3g45HtY + lmaEBSlmv1iIzEsx1x+fbPsQpfylMQrZ0i1oWfMwlsPBqbbEjSpT78fURtjvhlV+AwFmMNA4prPAC3oL + zEyzPtMsyfFHg9TMnGapGbcXKixHtyqNdXYojbC9BOxRC/SsNBauUtfo9NultxGGNC7ZGefq1Jw9j1At + y8rzbjAboXvmvsviDV0gpP+nP4yw8vCi0G1G372jl3To4lux1pEeg20T/i3MSciAlQoLPfnmNysV1uqP + KCzL2qWkf+cRvWWqixaUevXf0e3d7x1nxJpgGWyenP7bMoVl0wmtCEc1RglW+Q0EmMFAY53SAptUFpid + bFrZJcn22cNpWST6Xz2S7c5HUoXeO9MMsClNgA3IxmKwVWmAZUlmqXCVUvSBCL19liuMR+xaJ39AbuSL + uaHXUulPq/T4KSvPuwHdUivqKjmJTs/d10NYedx1qDYfEXcdTmi1sC9NhP24r/zlQJoQhGmrXqkOU1OU + UpJbIj2/rEy8x6FuX/KPVx9r9clp1g93K8RGGxQm2KCQRS8Vs1MtMAtZnmYeMDLNfulh2thpGTmNUtJz + 5qSanticwtfdnsLBXmRPMXg0VQfrEozSG2yl/Bsr1ZR0ESpXmDzRb+bU/egb6XabT81Ot6zo0dPKCCvP + uwE9BZe7jAVAoicgXk33ewt88BsMj0HR09RwOFlfLI640gojki3RLVLT/2qG5aQVilkoaW68+1ndPv0P + p2Xm9E2xCXOTxKnzk0SYh7DKbyDADAYaj2LTnXhCZ6kwX2V7skmK868WuAOb4Ibuluq4NusKP+WxC8oK + /76YBi8Vg9cvpcDRc1p46NTN3I8fsApeEdBz23Q+eoc0PmLnxtzd1AKg22r38v9qzOUsgD0InW/jdKU6 + CBYbEn1wzCfwhEIDe5MNCB7EpbRo9knjcjDhivBWmxTnL00VmTmtPSKXMY2x/HVMdXwzJ0Xcsg8rjh0p + 8lX3UuF5eeEwyr5GbZ3UK83haEJHakV6TkNF5t8TEsS3H7+obPEKyvuviwq/edHN0xdU0Oz0dyW91UYf + ZKBfKLFkkWAJj9CV6Hv5NBxBV9L9ubVG3EToXXQ8v763ogdh071N9OcwJVWAcUmmkpFoer1DmvPHpooM + SfQyAcsbCe7pb4F5t0hL/3tCivk/JPp2WfTSsVZtklinodTYaLLK8mojFJ02fGNlZk7nFPu3Gy/rVrx1 + IQVeRtlfvOA/r1xMhdeQFqe/hQolE50eJKGfLrBkkWCI/gNCP3dg5Xc3oavfxXnslb6Scx5FX47pPblo + WPnDX6ED1uZjEkhYEcYmGkvEpERxb+dUx2dNlRk5bbCcUFm5GzRC2YelWRO2pwld1srn6KVjWxqfy740 + Q4UVaeJ8PJJKNXorpWtjj061nDuQoO3+WIIank7TwzMpWngmWVMk9OTVs5g2Cy5xjU4S0G+OWaJ4kU90 + +t47fb2Fld/dhB7qCUe8lwW5o7XhC90ioyf4qDlPz6mz8nZTutq/wge3YOC5dFiYpoXpSQLMSOJLxJxE + w8LuaXZnM7foBYLlR4I1rAjaIo2x7PVQOLKWpYiPbLioZZbfQIAZDDQeTdbnQhdctqbwnYco7IrmuBNb + 406indlalfHzhFTTm/uSNDWf0BnhmNoATyr1RXJcpYdjSL3TP+C5YYleWfX3ARRvqAVA0rHyu5vQvWw6 + MNEfW1nLVRTUEqH78E8gdCGxzD99FYT7YPSFbNhMtz4VphKzXmEc1lfh4Jtg2WjrkZlBSYZR3AOVvfbK + 9F8nJ4qvbT2TWsG37AYKzGCgcSjNgHBS+himB9P4Go8ozUvaKZ03qEZvhzRWZeR0Vti/3pSsX3JcK8JT + Sg6OKXQIilwIx5U6OI7jDYr5FOp8/GNxr77TveKTCEuKwqBvsN2rp+F8oWfy/4v8hrCWzV/oZRx6dmAp + Qk+9lUnTnj44MfNKNjzBG2G31lpiDuosnQepHOrGVPN6idlW6fTpLwjPeN7j+07rzGmJ5Y66RyWKYVvi + FVVY5TcQYAYDjeNaPh/PIke1/IOjFJbzeIT9vZUKz5cQSgcr7fqDGmPb40p9EAnMktuX48gbWiX0jfq8 + uLX6ICQZYYlQEPQsPL1/zsrvXkEvttDHHqmGZi1jcaFHXulXUvSUH30xljVPv6DtP/FiNhziDHBAx8N+ + nVAiHtfxHYaqrMomJCSWi7YqlBRpdweeYfnH8465xsk/HsUIKnfUqhyWYjqz9YrmAd+yGygwg4GGr+hP + IU9q+GobUrjVnZSOz5upsfmEO4E2ehuV89fhqcbQRxX6xidQdJLYJbS39HndNPwp5CW1GnpF0f/ZiiX6 + I4ifr3vmngfT/XNqPrPyu1fQ1X56E+115Gc/ztGLgg5e9PspE+ZFL8K4ZS/++Xp1nKbiB7/CyPjr8Ayn + hUMabM2VgCc1XNsRSouiKYmuJinvFDwP32G+eI+bH8q7BaYDlTb9HgXXg1V+AwFmMNB4LFnHAAtBoubh + wWnWtBa4sdsg7dVOKW2lcv6yWGXchxu+zsE0PTyuwRaA3gRH1BwcTdPAcTzin8Da4imVFvbg+fkKBQc7 + lGroFPmFdI7IKoAFQG9k0QMmrMJfEPTJZHofnJXfvYa+iEMXBQu9a1BMvkDoc1o9EdY8iwTeuw2D467D + k3o17FQICF9sDij4HkOVVm0zEhLLBVUEnpTKCXV7oP7cGA134z38jm53PgSJ3lNld6zViJNY5TcQYAYD + jUcTNHdwEDmMrNUYV/bUOD9pghu7o3sntMQavpvGcW21Qlh0NE0Hh7XYlDNY4DENB4+nqeG4XoTnOQGe + Vmtgu1oPc/B8fr1CDS1Dv8ZC9rv0UgWrAPpQA6GPMFDhpsdK6cm4wvA8evoyQp9VZuV5P6An8+jHDDuR + C4i/99kLg74/R0/XjUOK/axAlY9+gQbBN2FIfDYsSDPA3FS+2CxMNczqrbTZWrorgLtFB4Tm0U3l+HRR + mrCLVX4DAWYw0CCpC+KA3lh7vNb2VmuV4882mnRpw9MOaKLNyBmqtGi3KbgJT2NTzlf050h0rNF3oOjz + UfR1aVoYe8kB9UNuSDVK4R+NlJqk2Dz9eR6m9FjpFuymt9c2u7olqNvdT8Ok4TQuvUHmk19h+DZ/S3f7 + qmCkfOnW2TbkYwSb4cV6t54FvQVX7NaL9Mnn93+DB0K/h7EqAUamGYvN+DRxQzeV/WprKhMal5Dt3Wku + nn5MJXGp3wNjnDtwj9MK59FF7fhuVqr4Bqv8BgLMYKBxCJvqd4JNd2SPVoR1GnH8MJVFJLk74g4g2mnT + c5rgkXaUypz4qFbocdxghsOFiL4qRQ+bsak4IiEdmoZ9C23Dv5beoiqD99Td3C1B7wr0oUr6jt1/EB3y + OVJS6emuBL3dx5pPgdB5evOIb2CRRoS5KlOxma407+mmdnzWyl0emKKWAZR3a6SzxvHDFLXlQ1b5DQSY + wUDjMZWBjdoAh1UcPKvSV1imNh5uo3Heaqt1bfxOSBuUnXbCeJ094nHOXA9FDypI9NUpOliuNMA8PHff + wmlgr0IPD2HzkS4OEazCWDz+UaJ7Q/9Vowdl6O8r9Dmo4t6Wo2sY9OhtsZ7pp4uinSK/guNanbSf/eWw + O52vMr3SBeVrhWWAykJHKheF4T0OdftOk9vvcOOOIVTGcF43p2ks77HKbyDADAYaj6HMhfE4sk9p6DxD + ZQ5u7rVzOiFtkA5a508TtbYPUfSHnihC9DkaAVZiQTmi0cA+vQANQm6W9U8e/mnQOTZ94Za+FTcVoX+4 + F/c8/i2ErvKz8mdConeM/BqOavVwAPeHvzzqSoPGqs1hHTSOP9q5y4GnTJQ1lHdrPJh01dhvzFWI77DK + byDADAYaj6GIhfG4Uo81sKHSfIVxXG+15bO2OtwJSGf3jmhH/VrnzUkqY/DhVHW9EyhwYaKvwMJyRK2F + xwwGWJJigAbB30rnjDX8u0hXAP/YGt0b+rQUvcRDH4Uszq+b6Kr+EISVJxMSvXPU13BC0MNRjvebJ5En + OP7hIVqrgSTHg7xUBvJw5HVjucjFM8w7lhtnoKNxXbTRped0Q9HnpAqy6KXhUc5YKAeR/ZwJdnCmGis5 + 8/4O+nRJbtpRnaWd4ZK9g9Zxe7pSePMoZ2zxGhYIur1WkOiHUfSDOM5GpQomppjhoYjvpT99+nlFnkFJ + Rb9XB4hizYfuk9MPFOkb7SyxfaFnB+gJOlZeTOg2Z3tsuh/Q6XAfGfxml5qrsl/Njeuts39KB/zObjzi + UnnwlAlXv/fwPHk9wwvGNR7lRfPpprXfmKUxvcsqv4EAMxhoHDBa4ICIUMpgv3vYEeoXLY0naM0RHXWO + v9rr8dwJdwRBO7Mt9rfX2n+fxdn+e1zHt33RfXutMNFXp2phEaeDyWlWaBNGt9+wZmcUzKIpFzW6N3TO + TR+CpD+vsOT2hp6tp9t3rHyYUAuqeei3cFilgz1pHGIokr043q40Q+3lafwx3Oc/tHPvf0luvRf5Yii6 + FMs7COTDdxpPzN1N+ZPo3XX2m3P0Zln00iBJ7gePkvSCGR5RGroNVltSO+gdf3aknY07xkMb7G+LNf5c + rel/n1Bp2+zxQ/SpKgE2GTSwJkWARmE3oMqHv0AlPG8v3hX5cic6QQ/c0I8civpvG73bTrftWHncQdWP + foEHT/0AE+OuwfO4b55Cif3hBHJEwTcZozandNI7fvfsexLTk3q6PfjGfIf7Ax1QUPQbc5SCLHpp2M+b + /OIASr7XYIKVKh4WKQ3z+2mtprZcek4XLm+ndEXaYKyTzv73dLV4EpvuLRcouIqFiT5NLcBSjO3Xq2GV + 1gQPBN+Eh4O/h9rul2BIeA8FX6H3T3SavvB8AopGCL0gU9RPJek114UIK487oNp8/Nnr8CanhmNKHo7h + /iyK48gzSkOFvUphVA+9/ScUvXjSepWR3H7fmC84nMpTe4Mzp6fO9t2sZP2/WeU3EGAGA43t2HwrFkot + 7FZqguZoxAM9OMeNdpwzpyvtFC86Ygx31B8jteYrKHr3NSm6CoWJvkxjgJ1qHazhRJiqN8I+lRI6hdOz + 8b/5ITrFPPgOy0+e6OzhAQZdmDuFFHXLjWr9kQgrjzuA927BmAufwhs2AzxrFP3ieZMIT/BikyVq44vt + 9Y6/O/vsbw+SnAwKikugzN79nnE9KYneW2/7bGmafg+r/AYCzGCgQeIWl20KLRzT6x5YaRCf76C353RA + sbu5d4wHKgy4s34boLMo16Toh69WcDBbIxYuukGEGchehRJmK0VYmGqGjclGWKoww4okMfdH/hXwAFDp + I++n6wqWvNIHv0LQ+7cA3v0dGod8C3OTBKjy0a9Quez+IrMKKeIHCiWC7rFTbV3UwzT0sYv2CCuPO8gV + 3W6AZ0xGv3jZLMJ+0ThykM7ypfsgnm9flymG/P0dkD6cPWs5Z1rIKr+BADMYaLBELootKPoJTgvPGHQt + Z2nF99rgUbcT7qBuXtAO64xxYojGwi1U8esXqfmqRdXo0zgj7EpTw1JOD9v1WnhSo4Ht2L1fo4IZV+zQ + NyETxlwxQs+ILIB3/pCaovDBban2l7rxQBCEhZlSeOc36H3xOkxJtcPIxAyYkGqFTdhamHrJiKcH35VW + droHTl+oNSIqhN62c/99pdTQ+/RbEX/+q07fnvPrs9bSzxve/gOGxH0O/2PRwb9EoUhewP30lJ5vuJQz + vdjWvV+993MedkYMQVGZ8QLJy4fmRaIP5qzObRw/jlV+AwFmMNBgiVwUJPoxTgcvouy7Nfru4/Xm+M64 + U7rwnh2Vt7Mo1p535gzkrFnTtMbH1qv0zZ5Qa4oUfZHOABu1HBzC04WNWh52qzSwS6uBOQIHj2gTYWGi + Btpe+AJ6x1+F0THpMDAuC0Zi9/AL16DHxU+gz4Xr0ObiZzBXMMJOswo2GrWwVNDDOoUKdqsToGXYl1Ch + 0Gfui6Qbokc8wtFtrn8h9LIJPQDDmsYf6ABCV9z9uZdOj8/Sb6dY+dwBHfyah38DK1It8IqgQwzwMo9Q + yoSHN7R62KHmFw7Q2663w/3Y3b1f7xTbu99TBnzHYUN55uVL5E3bASuKEXoL95hG24VVfgMBZjDQYIlc + FCT6cRT9WYMODqCgm9Rc97Fa00WU+u/OAhYG3u4GdyCm3QRHTjuM9+FsP8/VCK/t0Oh7H+EMldb4Kzp2 + 70LRN6n0eA4vwMI0JaxSK2COTYB1nBKeS7mI8qbA0wYlPGHSwnIrBxuwxprsEGAenl+u5ThYaTDAAjy4 + kOibFCnQPOwrqFhy0en8mZ5VZ8lnQOgTWGMRan77+7EIag1QE5xaBgLCytsXeue9GcLKLxe6NkHPt9cJ + u4GnREY4ZlTBCwYeXkORX0Ve8YLk9qT/Rk7ouBYzdKao1nQQl/anB+99zIr74juOd7837vFRdKokOmOZ + mqg1Rj+h0NRhld9AgBkMNFgiF4VH9BMo+h6NHjaqUSyFruswzpLWRXD83hV3UA/cWT3cO87Vbc/piLJ3 + xNhYg0W7kxOmYY1ef3oJRV+uVMIUoxmn1cLhxCTYiOf1B7U62IdCzxNFWIGFdIzZDHONIqwzlKnoJOQm + hCWeN/RRS3rpZCVCv0Gmz0zRjxLpNVp6sYVS6qc4tQ7o3XX6jTJ9ZIKVny/0bPwIhLWMEiS46/NdP0PD + 4JuANSMsF3XwqE4Pz+H2OIHb6DmsuZ/HWp14AfkXxl9AXsRhKHzNpXrxxe6c7Tfad5796CFv33r2d16c + hWs8L5lz4/nxxGievQ22G0tU/FPHk1XM8hsIMIOBBkvkovAWfS+KvgHPu9co9bBeqR0wRmtU4lE4p5uI + O1XAHeYN7jyq3fFgkNOPt323KFV3dJaab/APE30iYkZY8rGg82ySnpr59D07emeePkdNzfwPEDq/pya4 + 7++QC4OuxNP/0OmAwVpGCRKd3hKsH/wDHOaNMAu3yzzOAIf1euznYSFum/W4bbYhO1H+R3FbH07TwqNK + DTyJNf56g7B6IG/N7ID7s6fvvrwHtBedOcP0Fsv2VN28Y7LopYMlclEUJPojSl2lLUrd8El6U2Ibo1OS + nQqIp5B4ursjXWkYb7sxTmeKW6vSj9yj1sLqeyT6ZhS90ekSPWNPX3aJQIojpQeahj6QQU+70ffkCOr3 + 54KbN/QDSfqpBT1Qw/7wBF10e/d36BHxGaxT4imM1gJPigLMFIww10v0Be5tI4lOL7jguI+h6AcVGniW + 55uNNZg1nQX7nwXtR++YJ+7p9o75jucbZ0HjdDSl54xXC5d2n0tstuNCMrP8BgLMYKDBErkoChJ9FUq5 + Q6WrsEGpGz1WK1zshLJ3NWIhEe05vRBKPfRAaBjG/xxmMAuL9cLBLXq+UclFV/kpuho2pKbCRKUJ6kfc + AHj7T+n2G1OYO5mMZCAsAe8FJDmdl7dCWMsnAe/8Di3jvoZHcL/s16XBfKMBnkDRZ6DohdXoB3BbP0Gi + p6nrL+DED3oJtt/pgOy77/yChGXF/aQbSt4dy8ec84kvHX77gwp73z/FLL+BADMYaLBELoqCRF+NBWUz + yrg9TQOPpGqGTtEbI7sbXUL3xJQKjC/dcFgnZIBg/X46b3p/ll6c8miqstYSHZ7335UaXQ3rU9JgqVkD + w1NtMPBcFnSL+xxr99tSU5cljhf0rXW67VWW34Hzl0yELvIxPzRB5+L0OWe6st4r5nNYaDDDTlENW5Vq + mC0IkuhUoxcm+hHct4cVusbztfyrPQXr77TvWPuNRPSNlS22nE727JxBGsGxOiRy9pF//wcOvvk2s/wG + AsxgoMESuSgKE30LyrgRh29MVcMOpa4tihvcW7T90MUte28qOF54+ml4F0zH8GbLCjX35Fw9P3ibRl/t + CDYnN+r4Mq3R16emwSzsX8irYY85GTboeWgb+gVUpefsP/gVqhX9/Xn6FDV9vJLuobsfUS3oa6+l/grs + 9wg9/bYGYd4vp3cD6B5519gvoFnM17AXRd5p1cFaPUqsUsEcP0Tfh9tuv0rXaqlWfKkH7oeuJqzJvfZP + Lh4ZfeJ3jFcoNkYsPx2dV3NmnL30zoHX3mx85NX/gcOvvcksv4EAMxhosEQuiqJE34TD16ZqUHSqIVQP + z9WLb/QTbV91M7l2IhUKX/rgzqcDQRcsYFTIRgpmbp2WW75PrW+8WWuoSvfRy6xGR9FnY/9sXIfVnBb2 + 80rYm5wIjcO/hfqh30PtUz9KH1Gkx2VZYnkxHqELatScp3Pu0n4HzgM10enfbPRtuecRuk13x/zpgETL + WR3T/nGfwmGrBhaa9bCH18J6FHsdir4VRS+qRt9h4Crt1urbzdMLb1Ft2sXsYO6jPGxuWMP8ofDpe1ic + xO8b3ju55aVDR+H48RPwFOJbdgMFZjDQYIlcFP6Kvh1r4wNKDZxQ6aqs48XDg0zWrzqj7L090I6VunGn + I32wuw/GemHaFQtbX6Pt9izOFLdNa5iINXrQ3RB9DYq+U6+BXSnJsMDIw3KTBjrEfgoV/D9vJ+jDjy8g + VqQ0stOnoei1U/psNf20gZrphX7plS4ojoi7Bq8KabAN13kmSr0b98sGEdfVT9H3cPqB0wTTxe643Yk+ + 0v7w2k/SvnHto/zkH+7CHXNLmy/mRtrPzJgrz672zJxRCg2/4z/vjDzxxNNw7OkXJFjlNxBgBgMNlshF + UVzRn8L48wauzmaBXzVcMF+jGqOX2VMI2NAOJ+GR34aIlqtTOfFdFH3cDN3dE30hij5f0MNyjQE26g0w + Nild+iCGH+fu9Dkoui9ONS89qUbn0vTjRKrpSdyCvk9Pt8m+Ruh2Hd16oy/Z0gsq9GmoWghTcloeWq7x + KRm4HiZYq+XhBU5VbNEX4XbayulHjheMul4m2+2ed+yTPAHZ/d4UFPeGNb1PPy5DF0dmzoLYcye2vvfR + Q1veOwlb3nfBKr+BADMYaLBELoriin4M468a9LBLMNSayQnTp/LGs93MtpxuFtzJuGP74Q7ui/19kL7u + HS6l2E+Fr4erAP4ySrSYxxmMb61MSZ2yOk0Bk8tQ9J0o+nyUYw7PwSYDNueNKthh1MGCpAyoKL0Uc1t6 + V96P23H0s8UGSAdkIEKPxNJrpPTO+KPIY8g+ZB1CB4XhSD+ELvQV/E16nC/NH97B5fjgV1iY6IRtRgMs + tXKwhcd9oVP7JTrdXntCr4NnDIZ6WKPvGyOaBZRc2s60Lzzb3yWd137x7sZhueO5YxK+09F4ntSL3H4a + zzuO8+9pceQM4E0/7I2IGv/chyeDnjwdDMfcsMpvIMAMBhoskYuiJKK/hKJvEwxY0Hh4RM8NmGMQ/mew + yfptd9yxPVF42un93AXEG0+MxuludeT0N1lzxul5bhpn+BcW3Kmr1JoGx64kwias5ctK9PUowlZct4Nm + DTxv1kHfK1dh8JUs13fp3/ldumDHlLFwqHamp+rokVj6sQNrHCZBOD+ab/3QG9A/IRsGXsmG540a2Ifn + 43NxXTdxejihL1p0ur22VM9V26HXT1ksGt8ZbrZ+2R3l6uXe/vcT2s+0HD1wH8/nuNCnQ8Oavv7ue/DK + Bx/mwiq/gQAzGGiwRC6K0oiONbp0NXifRlt3pd6we5xo0vQ1W/+kndzHgjucoB3v6faOUWGw2nO62Zw5 + /TAdZzSZZ3CGVzanKeeuV6g6H9VoqhwoI9G34brtwRr9KZMeVtp0sN2hhNEJGdAu+gtoGvG1dO+9QrG/ + hOMfdKuMnk2vjFBrgr7Y2gPnOwZbF+udGliDy3Nc0MFOrNHn4foVJTpddX8KRZ/Di+1nGfjdkwSjydOi + 6uu1fSXhPP1e8TtiBUHjFmd8L2g5qAwMMlu/e0zUT3r54vmqr56JgVfiYnNhld9AgBkMNFgiF0VpRJ+F + oq/BArgDa9/HFSrYqNGMmCyIsQMttpu9Ud7cglcA/d30wXG7IyT+UKP51mwdF71bp1u8nedbLxDFuisF + vkJpRd+Loh9H0encfRku+zZBA7vNqTBNaYSHgm9Ai9BvoZYk5i/SFXAWRZ3f03Aaj+QmqHle59SPeDD5 + DhqGfw+1Qm7CdpUA/7amwk6TTqrBl+DyHPND9PW4nberVFWxRm+6TxTHYAvo4z4m65+03Wj70XZkbeN7 + DS0H7cd+FuutRZzh1GuCvtp/zDy8YRHywSq/gQAzGGiwRC6K0oqOTXfYrtXDIaUaVul0sMzAN1/IiycG + m8zf9LXa/kJy+vtisXp1u8HufkhvG57bIRj7fZLJpF4qCo8uF/ieKHoVFL1CiUTH815v0ZeLHGzA9V2t + 18JynGYPp4IXtEpoGfYtVETR6T42Czq3Lkh2T9x7/Arv/wq94j+D3U7cLhYexuO8SdxjBi1sxmWYZxT8 + FT0Ia/Q621XqaVMFMWSY2XKjD26r3G3r2YaF4RnXl4LG9aQF4T2uVz/tQ9p/YwXRfDQ5pedrvK7iG7iu + r4v6fLDKbyDADAYaLJGLoqxFX8zzQWs4Q901On2/VSbjY4Ostj9ox/ez2XIGWD2Ce4nOgAoLFWLkj4FW + 683hFsu10WZzyEJRXIMitFiNspemRvcVfTeK9bxGBZMMJhihM8FUrQhz9SachxmmcyYYZTDDVJMI7c99 + DvC267y+IkpcAaGUmubw7m9QJ+QHGMObYW2KFlYoDLBaI8BWAw+brAZYirVYSUTfb9BW2sVzc2cYTXFD + zJZvcNvcom1D24i21QB36qLw7VrYcO988udZMDSe97gDke52R85gs+XrVRrNocPJqZVeQ6nfMBngdSPK + 7gWr/AYCzGCgwRK5KMpa9EU8j+ftBtiEzflNRvGhxRrt9pFGo7273Z7TAxmAwg+0WaU0H+5CI4H9/RE6 + OPR1pwNttt+GWa1Xx5pNipmi+N8VOm7t5lRlry1JKTCnpKLj+CQ6TXNCo4aZ2MScYuJgEY672szBOosB + FmM6FUWdbTfABBR/UIoTRimcMEGTCVM1GTBF6YRxaQ4YkuqAwRo7TLPysFeVAtv1KtgrauAANtHXm1Fo + ZFwRotOpyVYU/VWdquJe3jBuPm84MN0oxmBrJh0PeH/0cW8L2jaubUXb0b0tpW7P9nPHvbanNDzf+O64 + pzt3PEbMG9+YNJ4VJbfm9ML92xtZYuDe+1dSYsPnk5Lg1bQUeE2RKqXesMpvIMAMBhoskYviboj+CIq+ + QYd50Tl1mqL6Co6bPM9i+nC0zXKjlx3PyR3YNMdCQsK7pHcXPinmwTWMuinen6ZzMwQL1XiTKXsqL1ya + yXGvzhT4RxboNKPX69Wt9unUsC85ERaUQPTpJgEm4nTzBA6W43irsZ8evJmE6VSzCLPMBphv0cFyqx7W + p4uwLYOHrXYO1ph1sMCihWk2DibheDsUCjzQ4TajUwas0dbjAaQw0Z/D8faL3IPLRH7AMt6wcpVg+Pc0 + s0mDrZhv++E26InrTAc82k53bh9vPHFX6j2+axt7Yq7t7RnmGd8zTd503uO6Yp7pfemHy9gVh8+ymM49 + pVV1/8+Vy/BaYgK8knCFCav8BgLMYKDBErko7rboK5UqFEkH+0x8s1Um/sAEk5gy1Gq5SQWDGIDkFhi7 + V+rp9mKQe1hfnKan057TC+mHB41RFvO3kwWDao5oeHeFwO1bo1LOWijy/ecb9C036bV1dhq0QQeMWnjW + WDrRZ6CYM3C9F2C6wmaGdXYjrEWBl9K2EA0ouVCE6ALsw239rAGHCfp6C0Wh7VIjP2SbaFi2zCy+MN1k + vDDKbPqqN65nN1zHXnRApO2D6yytu3v9c1PvbeTp944VhPe4vviOw5rOJ9Yf6YHLOcVishwyCmP/jadB + r5LQSYl3QvJjyiq/gQAzGGiwRC6Kuy36KqUStur1sBkF2IyFfqte3X6WYPjXOIvJNshu/ZkK8gB3AcJ+ + Ce/uohjgwNoO6e105PRB8ftj4RtuMf083SSqUMo3l/PcrrUCN2eLST/gkIlru8jIN8GDQb1NnK7OGr22 + 6goUfRe2Ap5Xq2A6ijihFKJPdIu+U5EGm7Vq2MnrgvaJ+qobzHy9pWah0XiRb7mZ13fcL+hmrjYaDs0y + ie/NNIvCEKv5z95usfvguvRHWOvqu108/ZSyukuLb16sfGnf9UNGWs1fPGYR5r1kwhaKLPrdhSVyURQo + Oortv+g6FF1VqOhbUICNRmxKcxrApjbs1Kr6zRe4D4bYzN/3c9j+JGEHOaw5g70KUbHB6QeSKE6X/CQM + Mdhu+Xu01fTNZIvRON/EBy8XDcfWG3TbV3G66cs4XZcdek2LZzTqB7FGr4o1emUUvfJyI18JRa+EoldE + 0Sui6BVR9IooekUUvSKKXhFFr4iiV0LRK6PolbFGR8Qq25WKphu1mvbbeF3X3aJ+2jqz8ORis/D+JJFP + Hms2pg+1WW6THLSMJLZn3X3XJV+/v9B0nml9u73H88V7XD+G0X4aiLH+yHC75es9FmHN0xah5jN4UKQL + m5Lobqml1AdW+Q0EmMFAgyVyUdyrGt1X9G06daXtOuUDjwi6SXPMQsQIm/nPPihoP4QK1RBkcAnJLbRe + UKFE/sTuWzjOT8Pslh+Qb0fazJ9OtBjt083GlHFmY+hUgXt3Aa//31Wi4YW1RmHPIqNhw2STsHa6WVg3 + 08ivxtbIqsVGfuNqm2nHJrtx6waTsG8Fb3hltsB9OMXEf4iih082i8axFuO1UVbT5yPs5m/xQPMTzvdX + 5Hdchr9oWTzL5YG1/N4xX4oafrfImy+2ojAdajPf2G7l1xyw8A8ctwiQT3TvmtwDiY4pq/wGAsxgoMES + uSjul+hbsbm8W6uA9by20npB33YLr503y8x/NNJu/pFk75OO56aYkvD+SO87nu80VEAHOgmsQTElqH+Q + G+oe4rD8hvL/jDXUjyPslu9H2i0k6nWMXcPY9eE281UCh30y0mH9bJTD8imO8wX238BxfhlKOCy3vfOU + 5oXzptQTl5bJnRa2fvninumKgsYraFzveHHy8+rHbSStQ0/cP9hc/3m9YHhyn9VQG0WHY7Lo9waWyEVx + P0XfpVPCGgHngxzG7lWCvuMqI7ditkV8f4zddG1QOjYNM+w5lFKBG+K0IJSWHZSvJCXOg+YzEAvwAKSf + G+oehLgOEq7h/WkYdvd14xmPhhGD8GAiCYLkzcu97CRLvrgvZb+OBedZvHkNRQbguvXEdJzdfHWtkX90 + r4FrvNvKw35Z9HsHS+SiCATRNyEH9CpYLuphr0ED6436pqtF/ZoFov7kaItoHua03JIkykCBUEZPoSO8 + u71jLHKH5ebhKujSdBij/jzc8Vwwlu6Ju8bB5crtduE7jQvX/L3mlUtezDWO73DWMJwPLau0Dl6i4rLR + enmPL03jXi/vfimV8JreE/MMd+flgfIeQOA00x0mw1YLv2E/z1XdyhtAFv0ewxK5KAJN9J28FlaYDCi8 + Gg6lJVWer06bNd5m+u8km8k20mm+QQVucAYWPEQqjCSfREH9heE7nmfaguK+3d7Dvfs9Md9pCoI1rW/M + Q0HT+vZ7Yt7DvMfxjXnidw6jgyu1dvDA9sM8m3j+KQc/7kmUewuWgW08J4t+r2GJXBSBKvourNn3KZNh + tlYJE21GOMhp+qwQdf8aZzdmDM2w/jY40/anJDsyDAvjMK8C6urP6/YUXime4cbTXwie/LzzLAxpvALy + LzoP93p4Te/vfHPB6TzL68E37jvNHTGfZaftOyDD+vcIp/m7tTbhzZdthoYvOXg4iHJvLZHorpRVfgMB + ZjDQYIlcFP8U0Q8YNBUXG/W1Fpq5DksN6k1TOfWlUQ7TraGZWMNn23OGZNryJJEpMcPdDCPBs2w5/XH7 + TrYJWTuM+q2vWbnar9kMQS+USnS5Ri81LJGL4h8kOizG6ZeY9LCCU9WZp0zuuDQ1cfJMvfLxSUZ94oh0 + 898k/GAsnEOwcA5DPIWWhW/BLi6lmdabssqnrKDlGZSFkuP2m+IwfvqIiTuxWdAN2WPU1f1fix7+bTPA + 87Lo9xeWyEXxTxN9MYq+DM/fFyiSYN2l87BQkfTANF49cKZBtX6GoHl3vMNoHpFp+XtQtjWnP0KFdlgm + FmJkBBZiHCal1F8iSjNtgCFtCzfUMhqI22oQdo9KN9+eYxPClpkNC/YI2gb7DVrYgdv9TRQda3RZ9PsN + S+Si+KeKPl+RDGuuXID5qhSYbNTBYkUCLE9LaDjXzM1eZOGOLzDpI2faRd34DPPXw7Ms2LzHJj4W5KEI + 9XsX8v+v0Hag7TEIUxJ/Qob505lOY/wjFu7IVlHbfpWJg624T+iT05Lo1rIQ3ZWyym8gwAwGGiyRi+Kf + L3oyTBZ1sFCVBIuwGwWH3ToFPJGSUOeAXjNqod14eDIW3ml2wTEuw/T5qCzzz1TAh7mhbkl8NyN98I55 + xikoxop7+lnjemCPY84Xyz+soJg5X79n+pHuvDxxaf2zXeuP/X9MyDB9OsspXllmF3Ztt3DNj4kq2IoH + z+VmFNlbdLlGDwxYIhdFeRN9Pg7fzinhEDbtd2GTc6bTDCuNukrHVEl9t5m0m+c7xA8mphutYzJNP2Ih + /214tvXP4dmWv0dgwc8vRzkD149SXFeS/E88KNwan2G8OcdmSDpg1q7YYjPUnOs0Sh/JeNyohi2y6IEL + S+Si+P8g+gostEfVyRW3mLTV5jrFWhs4ddu9gm7Seqvh6Vk2Q/LUdPFTrOlzhl215Ay5akVQBoTkJ0FG + SZjdUIxqSMQ9PG8cF4XF7oijfL75uoZ50rzxfKd1QcvhWbb80Pi0DkOQQdfw1AUZk2X6a77NkLJZ1BzY + L6hGLbZyD+226KpuQoFl0f8/io5i+y968d9eK73oScUVHTabtFiYRdiC832M11TeaOUaLDNrO2wV1QNW + WPRLV9kMjy+xGz6alS6YJ2SZ/iaBSJKhdABASYYhI+gAgLikYwt2J0WNW5y82Ix0L9dwEhoPViQ2LfNo + HDYzw/jZUit3bqVR+/QeXjnzMV7REde53mFeUXGxhYNdFtwHJLqjjEV3Sy2lPrDKbyDADAYaLJGL4v9R + jZ4r+iac10Gczzos1CswdoBT4LLhOpp0D24w6zrMd/Kj5zr5lWvM2idWOA1vzUkX42eli8YpGeKXVCOS + UFTjk/hDrtFBwNU9AtPhbki8UQSJeDWP0d7gMAnfmLvbezopL4TmIR1sMB1KUl+35QxBhklxmt6UMz3T + mL3AyScusnEfLLEZjixKF6dtNGp7b9crHn5amwwnuBTYJGrgEK8ErNHzRJdrdFn08ig6Nt1hOcb2GpSw + HtMtZj2sxcI8O12AxXYODnIpQQct2oaP2Lk+q23czHl2w7oZDsPR5Xb9ewsyxGAc78rMTFE/LcuYPinT + +M34LNOv47NNf3pElWS8TgcBl/zUP9ILig1FPAcIz3ie4SOuW3OGS9NTXi7hxyA4j9/HZxl/xXl+PdPJ + W+c6DMl4cIpa7DC8v9KsPbbezi3bYtUN3cErm2/GA9jCdBHWmXSw2aCCJ3Up8JQhVRa9AJjBQIMlclHI + ot8p+hwUfaHdAHv5NNhj1cFKB45n42CGk4dF2P8EinLAxtXYblJ13m7Tjd1k51YutXGHZzr4V7DZ//Zi + mz52tsOQMDNdUM/KEE14MHBMzxSdkzPFjAlZxuzx2S4mZJuuT7xq+pxS5NrEq+ZPJlzF7ixj1sQsMXNy + hpCJ0zlmZxp5zEM7M0NQLHQazszOEP4z02l4dblFd2iHIW3+AX1yz31G9QOHUNDHdamwFcVdiweqzaIa + NuB6LZBF9xtmMNBgiVwUsuj+i461Jyyw6VCQNNiN/ZvNathk18M6BweLUKxpTgFmZQhwQJdSf4OgbLbX + oGr3jF4x4LConHzAqJq51qRZsNSqW7nQzq1aZNOvXm3Tbd3h5A6tsHFb1jgNm7ZmCjvWp/NbFtv1K5Zb + NIvXcimL9gvKKccsut57bVyHjWZN292ish6KDtPTeVhi1cNmQYnrST+EwO2FHNSnwWYSnZZPFr3YMIMy + MjLlC2ZQRkamfMEMysjIlC+YQRkZmfIFMygjI1O+YAZlZGTKF8ygjIxM+YIZlJGRKV8wgzIyMuULZlBG + RqZ8wQzKyMiUL5hBGRmZ8gUzKCMjU75gBmVkZMoXzKCMjEz5ghmUkZEpXzCDMjIy5QtmUEZGpnzBDMrI + yJQvmEEZGZnyBTMoIyNTvmAGZWRkyhfMoIyMTPmCGZSRkSlP5MD/AZdb3SCpvY72AAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAAHwAAABTCAYAAABd5GNdAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL + EwAACxMBAJqcGAAAB8tJREFUeF7tnL+rXEUUx5OIGJJCg4hoYwiCENJoBO20SKdimnQ2Idm3T2shvVUK + 0TqdIIgIgoVdKhEU8t4+EbG08Q/Q2mr8fsd7rmdnv3fvbt6dN/fum8CHvfOdmbNzzplfd2M8E0KonCKk + WNldpFjZXaRY2V2kWNldpDgWZgfhub1FuDk7DJ9PgThWjFn5MhakOAYQvLf2DkOYJAfhbeXTGJBiaRCw + D2QgpwR8UL6VRoolQbDOrgRvupxVPpZEiiVBkM4nQZsy55WPJZFiSe4ehGdE4CYJfVE+lkSKJakJz4sU + S9KT8D9xGXoDny+w3Tbg1s9+Xztb/7EIX8wPw1XVpw+M5R3Y+HvFZgPbKB9LIsWSxECK4PE9V7Xfltmj + 8HJrd4DXp/lReAq2vmttOmrCN6Aj4V+19YtwgYnqhO/vAkyYa2YDK/pDaLfb8kF4SdoiwpbhE4q2v6Xj + rgnfAJnwg/B+Z912vE47s0W4PF+EF/mMxN0U7TaGE5B2MIneXKmrCe9HJdUCF1dcUrcNdizc+f3/9+P4 + k6houzFY6bSzvwjPp3U14RtwEgn3DJXwdeMeE1IsSU14XqRYkprwvEixJJNLOMZEOzXhj0lNeF6kWJKa + 8LxIsSQMEpPg8QlP67Yl/T7VZht8wtO6mvBKcaRY2V2kWBpsh9e4JaZn4lSYL8Kd2VG4onwrjRRLg6DJ + v32aGD8q30ojxZI0f92oAjg57C9WxoQUS8KbrQreFKm39A2oCc+LFEtSE54XKZakJjwvUixJTXhepFiS + mvC8SLEkNeF5kWJJasLzIsWS1ITnRYolqQnPixRLUhOeFymWpCY8L1IsSU14XqRYkprwvEixJDXheZFi + SWrC8yLFktSE50WKJakJz4sUS1ITnhcplqQmPC9SLMnto3BOBW+inFM+lkSKpZnyf5Nu0AflW2mkOAYQ + tGfjPx4UzB6FL9MAg29V204W+n/Us475Yfg0/d75Ihym7fYPwkXl0xiQ4piZH4Wn06Ajgf9gEpxIkLFy + v1/5/kV4VbUdI1IcMwjux2nAsfLeVW1zsL8Il9PvBz/s/zq+81ohxTGD4L6XBPvn/Z/CE6ptLvCdny2N + YRE++WgRnlRtx4YUxw6CfAHcjcE+CK+pNjmZ/RIuWrKxxV9VbcaKFKcCAv6K0k8CJLr9PztOCSlWdhcp + VnYXKZ4E2I7vg4fggarfFmdv63+Ijz73wDfgRkf9LUDbt1T9lJDiSYDg7QFefP5S9dvSJIT27qn6LtD+ + EsdgfcEVcB20ycfzIfD1qs0le/ZQB5yMD3rghJM2hkSKQwEH/liDBZmo+oiwyeCzjgn2UKMt2lV1D1Nb + jT3W2zhSmFgmWdVFNrBjY1B1S5itnEhxKOCEJcGc3gb2Uwk3m/zclC5bXFms4+eN5pnfzWdu44QaJxk1 + s8fn2MbZ4irmKrXdwPwwnX+8D+148Bz9tXJOpDgUjWP84zUGl0HZ83oK+4HOhHutD2ULZa7emBSncXeI + 7fDJhDJZTHq8F+AzJsbKCtTZjuC3+zixXPl0JBzPDCKDQRhMBkfBc28lSY2NaBMwiJvSZSuex67Mc9mS + y3GwX3snwLOtbI6PfVfOXGjWbyXhIE6w5tmX4/Fm7XMixRzAIQbKn9tdrL21o94SHleJIK5SpQlb6Xdv + y8q9ANrpTjgc4WpoVxngebZ0k0aZqz0GwOsKtKEN/lF1tM3gbfT6RDuAx4vtLNuwNF48d53hPBKi/65t + nIiuHCeBlXMixSExZ5pPOzetzFVvZQar97UEbZhQwr4Mpm2zxE8srxtL9waU2ZZ9OCnZh8nieLpgmzhZ + 8Rl9cLZYTy2Fk+N0XNoMONNub03ZEmNs/ONL054B6wpwH/7M5oS57uxyIllyU2zlWsKZSH9Lj5O10dmO + E4wTibA/tZjo5lmVOy+DQyHFHMAZXogYDAucBdc7b7fi9vKU2GDw2JY22I72+AOO/YhDrKxg+64fSGwM + qh+xRK79Yce182c4/eIkN2yX8tpGO9xxkeIQYPBMCB1lUumcJYRBbQOPT27zbOdnusevIk4EaktnPcq0 + QX3lYrYpTf9NuK/6G6hfSXgK6ujrY4/1OEhxCOCQJYdYMvnpZ3WKtbNJsvSzK8qcRKxfOgJQ5vZp39XF + 2gth04Y7R3xV60DuPB7UtwkH3JHYjzsEfeIqpp/pCo91yt7QSHEo4ASdtvdan/QuYnJc/6Xgoiy3VZS5 + Q1Bn4CyIhtnte91jGyaBNtbBEUobBPU2RralPX8cLPmZlE9kxUsxB+aY11L62qAu3nZBeglkYKnHC1hS + x8Czru/sZZu+hMfv8f0INK7kruNrZWtv9N3a0lMaJxmEdJv09CXcgtlebvDcrm7f1tXb9659N2/a9G3p + 8cLp+xnUGzhG7ixx+wfc5ezZiAlPNLbrPPeHQoo5gDMW+F58PwO6nd/+3de2SmKvV/HcbJ792b6y+j2u + XS++nwGdq5uTz09GJl7aWMPaO8JxkWIOnEP+VSdlZQW7/gwo65hkJtVe78jS6k3qSO/2ae2AGpcRJ63v + Z0BXY2Yfu0tw3Ouwdit2hkSKQ0MnzCFVb6CeAaLzXcFjwGMdPrlNMrHqjGRbSyDP/b6bNcfHCbX2poz6 + mBhVNxWkWNldpFjZXaRY2V2kWNldpFjZVcKZfwE8GY0i2ps/HwAAAABJRU5ErkJggg== + + + + + iVBORw0KGgoAAAANSUhEUgAAAHwAAABTCAYAAABd5GNdAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL + EwAACxMBAJqcGAAACCxJREFUeF7tnMuPVEUUxnkpMZEo4hgVCYgPhocz09OgUYmogNEFMgsmQSZMYIZp + gyQoEhwiOIwxUf4Dw8JEVyZuXbJzK/oXqDEmxrgxGmPiwtier3JPW1393UfDral7e2rxS9/6qup0nXPq + dXvEFe12O7KMoGJkcKFiZHChYmRwoWJkcKFiVWjMXBreceT0R1v2Hf62DmCsGDPzpSpQsQo88dqbZ1eu + XNWuI7uOnn2L+VQFqBia7RNzH7NA1gn4wHwLDRVD0mwtrmIBrCPwhfkYEiqGpDl35S4WvDoCX5iPIaFi + SBqzlzez4NUR+MJ8DAkVQxIT7hcqhiQr4Xfet/GfkWPnZhoz746iXT+MTJ2b2bjnxZ9cm5uefum7sekL + h1ifPHZOnllcu279v65NBW2YjyGhYkgQJBY8vOey9v0yOj2/X22W8frUbF1Z90DjuV/ssSox4QVgCd/4 + 5P4ftX58bmEDEpUG3t8ZI8cvTKiNbYdOfD58ePYTLTdOXHyG2QLMlmIn9O7N2/52xx0TXgCW8B1HTn+Y + VtcPI1NvH4edsZMX98qx0MAzfh1jbYuCCQg7ctSccutiwgvAkqqBw4pz6/pBj4XxM/+/H0NjbYuClW5s + zl7a5dbFhBdgKRJuU1bCs8ZdJagYkphwv1AxJDHhfqFiSOqWcIwJdmLCb5KYcL9QMSQx4X6hYkgQJCTB + xk64W9cv7vexNv1gJ9ytiwmPBIeKkcGFiqHB797YEt0zsS4MH575dOzk/D7mW2ioGJq0vz7ViaHh8T+Y + b6GhYkjw50YWwDqif1ipElQMCW62LHh1JN7SCxAT7hcqhiQm3C9UDElMuF+oGJKYcL9QMSQx4X6hYkhi + wv1CxZDEhPuFiiGJCfcLFUMSE+4XKoYkJtwvVAxJTLhfqBiSmHC/UDEkMeF+oWJIYsL9QsWQxIT7hYoh + iQn3CxVDEhPuFyqGJCbcL1QMSUy4X6gYksbri2tY8OpIs7W4hvkYEiqGps7/TboCH5hvoaFiFRifvfwo + /t0W46GnDv7gBvjB5r6fWds08O+6++XhFya+dr/3nkd2/eW2231qYYj5VAWoWGWac+9tcoO+5va17fEl + CvL9Y8/+6n7/yPHzR1nbKkLFKvPYK1NfugHfOfnG+6ytDxonL+51v39oe/P33aerd14zqFhlJLkf2MG+ + 9/HRP3fPLt7G2vpiy/MT39hj2Hpw8qs9rSt3sLZVg4pVpzm3sGHbqzOfIdgjU+ePsTY+GW8tDGmyR6cv + HGJtqgoV68LY9DsvM30psP/PjnWCipHBhYqRwYWKS8Hq1auvCteFa6y+Xyx7W1l9FtJnXvhCOJBSPynA + 9iSrrxNUXAokeC2hLfzG6vslSQjszbP6NKT9eoxB+wpbhabQSb483xDsetZmvT7bQBcwGa/lgAlHbZQJ + FctCHPg+Aw0yYPUGYhPBRx0SbAMNtmCX1V13bSX2UK/jcEFikWRWZyhgR8fA6rpQWz6hYlmIE5oEdbof + 0I8lXG3isyhptrCyUIfPA8kzvhvP2MYBNEwyaGoPz6aNZQurGKtUdwP1Q3Vp1uVDZzzybPzVsk+oWBaJ + Y/LYpSG4CErL1l3QT0hNuKtnwWxJGavXJMXSsDuYdvKJhCJZSLq5F8inSYyWGVKnO4K93ZuJZZWXR8Ll + GUFEMACCieAwcO71JCmxYWwKCGJR0myZ89gq41zW5GIc6Ne5E8izrmyMD317zlzRtF9PwgUzwZJnu2yO + N23vEyr6QBxCoOxzO43MW7vUa8LNKiGYVco0Ysv97n7puReItrwTLo5gNXRWmYDzrOsmLWWsdhMAW2dI + G9iQR1oH2wheodcn2BFwvOjO0g9d45XntDMcR4Lx32prJqJVNpNAyz6hYpmoM8mnnptaxqrXMoKV+1oi + bZBQgL4Ipm6zwJ5Ytq503RukjLbog0mJPkgWxpMG2pjJKp/GB8sW6qG5YHIsj0ubIs50trekrIlRCv/4 + krRHwNICnId9ZmPCNC27mEiaXBdduZpwJNK+pZvJmuhohwmGiQTQH5pJdPLMyqmXwbKgog/EGVyIEAwN + nAbXdl5vxZ3Lk2MDwUNb2EA72MMPOPojDtAyA+3TfiDRMbB+QBOZ+cOO1c4+w+EXJrmiu5StFdrhbhUq + loEMHgmBo0gqnNOEIKidwMsntnm0s2e6jb2KMBGgdZ31UoYN6D0Xs6Ik/YtwlfVXpL4n4S5SB19veqy3 + AhXLQBzS5ABNJj7tWe2i7XSSdP3sKmVMItR3HQFSxvap35VG5oUwaYOdw7yqpUB3Hhup7yRcwI6Eftgh + 4BNWMfx0V7ipY/bKhoplIU7AaX2vtZOehkmO1b8ruFKm26qUsUNAR+A0iIrazXvdQxskATayuMH6K1Kv + Y0Rb2LOPgy4/nfKSrHgq+kAdc3WbvDZSZ267gnsJRGChmwuYU4fAoy7v7EWbvISb7yF9sZLTjq+erT3R + B2tLd0mcRBDcbdImL+EazM7lRp47q9tua9Xr92a+mydt8rZ0c+F0+wLoCRgjdhaz/QvY5fRZMQl3NLRL + PffLgoo+EGc08Lm4fYHoen7b7766VQJ9vTLnZvJsn+09q9/GapeL2xeIjtWNyWdPRiSe2sgg845wq1DR + B5ZD9quOS88KtvojoKhDkpFUfb0DXavXqQO526e2E9i4FDNp3b5AdDZm9NG7BMadhbbrsVMmVCwbOKEO + sXpF6hEgOJ8WPATc1Mkntkkklp2RaKsJxLmfd7PG+DChMm/KUm8Sw+rqAhUjgwsVI4MLFSODCxUjgwsV + I4NKe8V/RNc9xWlPZ+MAAAAASUVORK5CYII= + + + + + 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 + I4NKe8V/RNc9xWlPZ+MAAAAASUVORK5CYII= + + + + + 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 + gg== + + + + + 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 + gg== + + + + + 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 + AIS3NqgAJmWlAAAAAElFTkSuQmCC + + + + + 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 + + + + 43 + + + + AAABAAEAQEAAAAEAIAAoQgAAFgAAACgAAABAAAAAgAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+vn/+fr5//r5 + +f/5+vn/+fr5//n5+f/5+vn/+vr5//r6+f/5+vn/+vr5//n6+f/6+fn/+vn5//n6+f/5+fn/+fr5//r5 + +v/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/5+vn/+vn5//r6+f/5+vj/+fn5//n5+f/6+vj/+fn4//j49f/4+PL/9/jx//f48f/4+PT/+fn3//r6 + +f/5+fn/+fn5//r5+f/6+vj/+vn5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+fn5//n6+f/6+vn/+fr4//f37//w8tb/6Oyz/+DnjP/c5Hf/2uRr/9nj + Zv/a5Gj/2uRx/9/nhP/k6qn/7/LV//j48v/6+vj/+vr5//n6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr5//n5+f/6+fn/+fn5//n5+f/3+PL/7e/G/+Dni//X4Vr/1N9C/9Tf + Pv/U3kD/095A/9TeQP/T3kD/095A/9TeQP/U30D/1N8+/9TfQP/Z4mL/5uqp//X37P/6+vn/+vn5//n5 + +f/6+vn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n6+f/6+vj/+fn4//X26v/p67D/2+Jm/9Xe + Q//U3T7/1N0//9TdPv/U3T7/1N0//9TdP//U3T//1N0//9TdPv/U3T7/1N0+/9TdPv/U3T//1N0+/9Td + P//Y4F7/7fDE//n59v/5+vj/+fn5//n6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/5+fn/9vfv/+fq + rv/Z31n/1dw+/9XcPf/U3Dz/1d09/9XcPf/V3Dz/1dw8/9bcPf/V3D3/1d09/9XdPf/V3Dz/1dw8/9Tc + PP/U3Dz/1dw9/9XcPf/U3D3/1Nw9/9bdRP/m6Z//+Pj0//r6+f/6+vn/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/5+vn/+vr5//n6 + +f/5+fn/7/DP/9vfZP/V2zv/1do7/9XbO//V2zv/1ds7/9XaO//V2jv/1do7/9XaO//V2zv/1do8/9Xa + O//V2jv/1ds7/9XaO//V2jv/1do7/9XaO//V2jv/1ds7/9XaO//V2jv/1do7/+Tnlv/5+ff/+vn5//r6 + +f/6+fr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+fn5//n6+f/39+7/5OaY/9bbQ//V2Tn/1dk6/9TZOv/U2Tn/1dk5/9XZOf/V2jv/1to+/9ba + Pv/W2jv/1dk5/9XZOf/V2Tr/1dk6/9XZOv/V2Tr/1dk6/9XZOv/V2Tr/1dk6/9XZOv/V2Tr/1dk6/9XZ + Ov/V2Tv/5+mn//n6+P/6+fn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//n5+f/z9OH/3d9q/9XYOf/V2Dj/1dg4/9XYOP/V2Tr/19tI/93f + cf/k5pb/6uq0/+zuw//t7sT/7Oy+/+fopv/g4oT/2dtV/9bZO//V2Dj/1dg4/9bYOP/V2Dj/1dg4/9XY + OP/V2Dj/1dg4/9XYOP/V2Dj/1dg4/9fZQ//y89n/+vn4//n6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/5+vn/+fr5//r6+f/x8dP/2tpS/9XXN//V1zf/1tY3/9bX + PP/c3m3/6uq1//X06P/4+fX/+vn5//n6+f/5+vn/+vr5//n6+f/5+fn/+fn3//f38P/t7cT/3t91/9bX + O//V1zb/1dc3/9bXN//W1zf/1tc3/9XXN//V1zf/1dc3/9bXN//W1zb/3t9v//n59//5+vn/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vn/+fn4//n5+P/v78r/2NdD/9bV + Nv/W1jX/19Y3/+Dgcf/w787/+fn2//r6+P/5+vn/+vr6//n5+f/5+vn/+vr5//n6+f/6+vn/+vn5//r6 + +f/6+vr/+vr5//n59//u7sn/29pX/9fVNf/W1TX/1tU1/9bVNf/W1TX/1tU1/9bVNf/W1TX/1tU1/9bW + Nf/s7cT/+fr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fr5//r6 + +f/u7sf/2NZC/9bUM//X1DP/2thO/+nps//4+PL/+vr5//r5+f/5+vn/+fr5//r6+v/5+vn/+vr5//r6 + +f/6+fn/+vn4//n6+P/5+vn/+vr6//r6+f/6+vn/+fr4//X15//f3W7/19Q0/9bUM//W0zT/1tM0/9bT + NP/X1DT/1tM0/9bTNP/W1DT/391x//n5+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vn/+vn5//r5+f/w8ND/2dZD/9fTMv/X0zL/3t1v//Pz4f/5+vn/+fr5//n5+f/5+vn/+fr5//r6 + +f/6+vn/+vn5//n38f/44bX/9sx7//bKdf/32qH/+fPn//r6+f/6+vn/+vr5//n5+f/6+fn/9/fw/9/d + cf/W0jL/19My/9bTMf/W0zH/1tMx/9bTMv/W0zL/1tMy/9jUOP/z8uv/+fr5//r5+f/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vn5//n6+P/19OX/29dP/9bRMf/Y0jT/5OGO//j49f/5+vn/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vn/+fn5//js0//0ukf/8qMK//KkCv/ypAn/8qMK//SvKv/44LL/+vr5//n6 + +P/5+vn/+vr6//r6+v/29uv/29dS/9fSMf/X0TH/1tIw/9fSMP/W0jD/1tIw/9bRMf/X0jD/6Oa6//n6 + +P/6+fr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n5+f/49/L/4Npr/9fQL//Y0TX/6eak//n4 + 9v/6+vn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vn5//nz5v/0ryv/86QK//KjCv/zpAr/86QL//Kk + Cv/ypAr/86kZ//jju//5+fn/+fr4//r6+v/6+vr/+vr5/+/uzP/Y0Tb/2NAv/9fQL//X0C//19Av/9jQ + L//X0S//19Av/+Leg//6+vn/+fr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fn5//n5+f/5+fn/6OWh/9jP + Lv/YzzD/5+Sh//n59//5+vn/+fr5//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r5+f/5+PP/9LlG//Kk + Cv/yqhz/9sdt//fVlP/1xGL/8qYR//KjCv/ztTv/+vfy//r5+P/6+vr/+vr6//n6+f/5+fj/4Nty/9jP + Lf/Yzy7/2M8u/9jPLv/Yzy7/2M8t/9jPLv/c1lj/+fn4//n6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +f/6+fj/8vHZ/9nQOf/Yzi3/5+GU//n59//5+fn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+fn/+fr5//jit//0tj3/+evR//r5+P/6+vj/+vj2//bSiv/ypAn/86UN//jmw//6+vn/+vr6//r6 + +v/6+vr/+vr6//Huzf/Yzi7/2M0s/9jNLP/YzSz/2M0s/9jNLP/YzSz/2c84//f38f/5+fn/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vn/+Pn2/+HZbP/YzCr/4tt1//n49f/5+fn/+fr5//n5+f/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+fn5//r5+f/5+ff/+fPn//n5+f/6+vn/+fr5//n6+f/57tn/8qcS//Kj + Cv/31pb/+vn5//r6+v/6+vr/+vr6//r6+v/5+PX/3dNQ/9jMKv/YzCr/2Mwq/9jMKv/YzCr/2Mwq/9jN + MP/08+X/+fr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn5/+/sxf/azC3/3dJK//X16P/6+vn/+vr5//n6 + +f/5+vn/+vr5//r6+f/5+vn/+vn5//r6+v/6+vr/+vr6//r5+f/5+fn/+fr5//r6+f/6+vn/+vn4//n5 + +f/6+vj/+OnL//OmD//ypAr/9s1///r6+f/6+vr/+vr6//r6+v/6+vr/+vr5/+Xdhf/Yyyn/2Msp/9jL + Kf/Yyyn/2Msp/9jLKf/ZzCz/8/Hb//n6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n59//h1mT/2ssu/+/s + xP/5+fn/+vr6//r5+f/5+fj/+vn5//r6+f/7+vn/+fn5//r5+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+fr5//r6+f/6+vn/+fLl//S7Sv/ypAr/86QK//fWlv/6+vj/+vr6//r6+v/6+vr/+vr6//r6 + +f/s56//2Mon/9jKKP/Zyij/2coo/9jKKP/Yyij/2soq//Lw2//6+vn/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/x79L/2sko/+Xcgf/6+fj/+fr5//r6+v/5+fn/+vr5//nz5f/58d//+fHf//rz5//5+vn/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//n6+f/59vD/99qg//OvKP/zpAr/8qQJ//KnFP/569L/+vr5//r6 + +v/6+vr/+vr6//r6+v/6+vn/8OzH/9rJKP/ZyCb/2cgm/9nIJv/ZyCb/2cgm/9rJKf/z8dr/+fn5//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+f/6+fn/5dt+/9zLN//18+T/+fn5//r5+f/6+vr/+vr5//n5+P/1xGP/86se//Or + Hf/1vVD/+vn3//r6+v/6+vr/+vr6//r6+v/6+vr/+fr5//r6+f/58eL/9L1Q//OlDv/zpAr/8qQJ//Kl + D//20IX/+fn4//r6+f/6+vr/+vr6//r6+v/6+vr/+vr5//Lw1//ayCj/2scl/9rHJf/axyT/2scl/9rH + Jf/aySz/9fTo//n5+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/5+vn/+Pfx/93LO//n3pD/+fr5//r6+v/6+vr/+vr6//n5 + +f/6+fn/9s+B//KkCv/ypAr/86wi//n28P/6+vr/+vr6//r6+v/6+vr/+vr6//n6+f/6+fX/9L1Q//Ok + Cv/ypAn/86QK//OtI//21Zb/+fj1//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/08t3/28co/9rG + JP/axiP/2sYj/9rGI//axiP/28k1//j49P/5+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn5//Dpvf/cyDH/9fTl//n5 + +f/6+vr/+vr6//r6+v/6+fn/+vn5//fdqf/zowr/8qQJ//OnEf/57df/+vr6//r6+v/6+vr/+vr6//r6 + +v/5+vn/+efI//KkC//zpAr/8qUO//XGa//48N7/+vr4//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vn/8e3Q/9vFJf/axSL/2sQi/9rFI//axSP/2sUj/9/OTv/5+fj/+vn5//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r5 + +f/m2oH/5dd1//n5+P/6+vn/+vr6//r6+v/6+vr/+vr5//r5+f/47NX/8qQK//KkCv/ypAr/9+G0//r5 + +f/6+vn/+vr6//r6+v/6+vr/+fn5//fao//ypAr/86MJ//bLef/5+PX/+fn5//r6+f/5+fn/+fn5//r6 + +f/6+vr/+vr6//r6+v/6+vr/+vr5/+7ovv/bxCD/2sMg/9rDIf/awyH/28Mh/9rDIP/l2Hn/+vr4//n6 + +f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/5+fj/38xL//Hrxv/6+vn/+fr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vXs//Op + Gf/yowr/8qQJ//bRif/5+fn/+vr5//r6+v/6+vr/+vr6//r6+f/33ar/8qQJ//OkCv/35sT/+vr4//r6 + +f/6+fj/+fPm//n27//6+fj/+vr6//r6+v/6+vr/+vr6//n6+f/s4aD/28Ie/9vCHv/bwh//28Ie/9vC + H//bwh//7OOn//r6+f/5+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/9/Xt/9/KSf/5+PT/+vr4//r5+f/6+vr/+vr6//r6 + +v/6+vr/+vr6//n5+P/0tTn/8qQJ//OkCv/1wl3/+vn4//r6+f/6+vr/+vr6//r6+v/5+vn/+OzU//Kk + Cv/ypAr/9tON//n6+f/6+vn/+OvS//S2PP/315j/+vn5//r6+v/6+vr/+vr6//r6+v/5+vn/5dVw/9vB + Hf/bwR3/28Ed/9vBHf/bwR3/28Ef//Xy4//5+fn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//Tw3P/l1XP/+fr5//r5 + +f/5+vn/+vr6//r6+v/6+vr/+vr6//r6+v/5+fn/9cRj//KjC//zpAr/9LM2//n49P/5+fn/+vr6//r6 + +v/6+vr/+vr5//n49f/0tj7/8qQK//OnFf/1xWf/9cVm//SqHP/ypAr/868q//n06f/6+vr/+vr6//r6 + +v/6+vr/+fj0/9/IQf/bwBz/3MAc/9zAHP/cwBz/28Ac/+HMUP/5+ff/+fr5//r5+f/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/y68r/7OOr//r5+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fr5//fTj//zpAr/9KQL//Oq + G//58+b/+vr5//r6+v/6+vr/+vr6//n5+f/5+fj/+OW+//OoFv/zowr/86QK//KkCv/zowr/8qQJ//Op + Gf/46Mr/+vr6//r6+v/6+vr/+vr6//Lu0//cwB7/278b/9u/G//bvxv/278b/9y/Gv/s4J//+fr5//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/7+a4//Tw3f/5+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n5 + +f/44rn/86QL//SkC//zpAz/+erM//r6+f/6+vr/+vr6//r6+v/6+fn/+fr4//v5+f/33Kb/864l//Kk + Cv/zpAr/8qQL//SzNP/34bb/+vn4//r6+v/6+vr/+vr6//r6+v/q3ZT/3L0Z/9u9Gf/bvRn/270Z/9u9 + Gf/dwSf/9vPl//r5+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//Tx4//5+ff/+vr5//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vn/+fDd//OmEf/0pAv/86QK//bao//5+vn/+vr6//r6+v/6+vr/+fn5//r5 + +v/5+vn/+fr5//ny5v/437D/9tSR//jju//59e7/+vn5//r6+f/6+vr/+vr6//n6+f/5+PX/4MZB/9y8 + GP/dvRj/3b0Y/9y8GP/cvBf/59V6//r5+f/6+fn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/5+fn/+fr5//r6 + +f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fn5//n49P/0rST/9KQL//OkCv/2zXz/+fr5//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+fn/+fn5//r5+f/6+vn/+vn5//r6+v/6+vr/+vr6//r6 + +v/5+fj/7+e7/928GP/duxb/3bsX/927F//cuxb/3r4i//Tv2P/6+vn/+vn5//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+fr4//r5+f/5+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n6+f/6+fn/9blH//Sk + C//zpAr/9b1S//r5+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn5//r5+f/5+vn/+vr5//n6 + +f/6+vr/+vr6//r6+v/6+vr/+fj2/+LKUv/cuhX/3boV/926Fv/duhb/3boV/+fUfP/5+fj/+vr5//r5 + +f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r5+f/6+fn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+fn/+vr5//XIcP/zpAr/8qQK//OxMP/59/L/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +f/6+vn/+vr5//r5+f/5+vn/+vr6//r5+f/5+fn/+fr5/+/luv/duRb/3rkV/925Ff/duRT/3bkU/9+/ + K//28+f/+vr5//r6+f/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr5//n6+f/315r/86QK//KkCf/zqBX/+fHg//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/5+fn/+vn5//f27//hwj3/3bcS/924 + Ev/euBL/3bgT/965Fv/t4Kr/+fr4//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r5+f/6+vj/+ObD//KlDP/ypAn/8qQL//jk + v//6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fn5//r5 + +P/q14f/3rcQ/923Ef/dtxH/3bcR/923Ef/lzGP/+fj1//r6+f/6+vn/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/44rf/9s1+//bNfv/2zX7/9s19//bJ + cf/ypQ7/86QK//OkCv/1vlP/9s1+//bNfv/2zX7/9s1+//bPhP/6+fb/+vr6//r6+v/6+vr/+vr6//r6 + +v/5+fn/+fr4//n5+f/x6Mb/37gZ/962EP/ethD/3rYQ/962EP/iwDf/9vLk//n6+f/5+vn/+fr5//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+fn/99ib//Kk + Cv/ypAr/8qQK//KkCf/ypAn/86MK//KjCv/ypAr/8qQK//KkCv/ypAr/8qQK//KkCv/ypQ//+e/c//r6 + +v/6+vr/+vr6//r6+v/6+vr/+fr5//r5+f/18N7/4b0t/961D//etQ//3rUP/9+0D//guSH/8uvN//n5 + +f/5+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+fn5//jnxv/zpAr/8qQK//KkCv/ypAv/86MK//KjCv/ypAn/86MJ//KjCf/ypAr/8qQK//Kk + Cv/ypAr/8qQK//jit//6+vr/+vr6//r6+v/6+vr/+vr6//n5+f/29On/5MRM/9+0Df/esw7/37QN/9+0 + Df/ftxj/7+Gv//n5+P/5+vn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//n5+f/58uX/9LtM//S4Rf/1uEX/9blG//W5Rv/1uUb/9blF//W5 + Rf/1uUX/9blF//W5Rf/1uUX/9blF//W5RP/43Kf/+vr6//r6+f/5+vn/+vr5//n6+f/39e3/5cdW/96z + DP/eswz/37MN/9+yDP/ftRL/7d2h//r5+P/5+vn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+fn/+vn4//r6+f/6+vn/+vr5//r6 + +f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+fr5//r6+v/5+vn/+vn5//r5 + +f/28uX/5MNN/9+xC//fsgv/37IM/9+yC//gtBT/7d2j//r5+P/6+vn/+fr5//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fn5//n5 + +P/5+vn/+vr5//n6+f/5+vn/+fr5//n6+f/5+vn/+fr5//n6+f/5+vn/+fr5//n6+f/5+vn/+vr4//r5 + +f/6+vr/+fn5//n5+P/z6s3/4r47/9+xCv/fsQr/37EK/9+xCv/hth//7+Gu//n59//6+fn/+fr5//n6 + +f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/5+vn/+vn4//r6+P/6+fn/+vn5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n5 + +f/5+vn/+fr5//n6+f/5+fn/+vn5//n49P/t3KH/4LYg/9+wCf/fsAr/37AJ/9+wCf/iuSn/8ujF//n6 + +f/5+vn/+vn5//r5+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+fn5//f07P/6+fj/+vn5//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/5+vn/+fr5//n5+P/6+fn/+fn2//Lpz//mxFT/4LAM/9+vCP/frwn/368I/+Cw + C//lxVf/9fDh//r6+f/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n5+f/s26P/6Mxz//Pqzv/5+Pf/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fr5//n6+f/59/T/8ujH/+bIZf/hsRL/364H/+Cu + CP/grgj/4K8H/+G0Hv/t2Jn/+Pjz//r6+f/6+fn/+fr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/5+fn/+ffz/+vS + hf/itCH/58Zc/+/gsf/28OD/+Pfy//j49f/5+ff/+fj3//n49v/59/P/9/Xu//Pqz//t2Zr/5cBJ/+Gx + E//grgb/4a0G/+CtBv/grgb/4bIU/+XHaf/z7Nb/+fn4//n6+f/5+vn/+fn5//n5+f/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+fn5//n5+f/5+fb/8OGx/+K0Iv/hrQb/4rQf/+S8Pv/mxVz/6Mxx/+nNdP/nyGf/5cBL/+O3 + Lf/gsBL/4K0D/+CsBf/grAb/4awG/+CtBf/hrgv/5MJU//Dmx//5+Pf/+vn5//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//n6+f/5+vj/+fr4//n5+f/28ub/6c57/+KzIv/hrAX/4awE/+Gr + BP/gqwT/4KsF/+CsBf/gqwX/4KwF/+GrBP/hqwP/4a0J/+K2KP/qzXP/8unP//n49v/5+fn/+vn5//r6 + +f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vn/+vr5//r6+f/5+vn/+vn5//n5 + 9//18OD/7tuj/+bEXf/kuTP/4rMe/+KxGP/isRf/4bEc/+O2Lf/lv0j/6c9+//Djuf/38+j/+fn3//n6 + +f/6+fn/+vn5//r5+f/5+fn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+fr5//n5+P/5+fj/9/bv//bw3//17tn/9e7Z//Xv3f/39Oz/+fj2//r5 + +P/5+fj/+fn5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//n5+f/6+vn/+vr5//r5+f/5+vn/+fr5//n6 + +f/5+vn/+fr5//r6+f/6+vn/+vr5//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/5+fn/+vr5//n6 + +f/5+vn/+vr5//n6+f/5+vn/+vr5//n6+f/6+vn/+vr5//n6+f/5+vn/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 + +v/6+vr/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= + + + \ No newline at end of file diff --git a/SYS.FormUI/AppUserControls/CtrlOrgChar.Designer.cs b/SYS.FormUI/AppUserControls/CtrlOrgChar.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..0fbd6d374e4d67b0b0b84b13fb46c78a8a7d9f3a --- /dev/null +++ b/SYS.FormUI/AppUserControls/CtrlOrgChar.Designer.cs @@ -0,0 +1,60 @@ +namespace SYS.FormUI +{ + partial class CtrlOrgChar + { + /// + /// 設計工具所需的變數。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清除任何使用中的資源。 + /// + /// 如果應該處置 Managed 資源則為 true,否則為 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region 元件設計工具產生的程式碼 + + /// + /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。 + /// + /// + private void InitializeComponent() + { + this.panel1 = new System.Windows.Forms.Panel(); + this.SuspendLayout(); + // + // panel1 + // + this.panel1.Location = new System.Drawing.Point(12, 17); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(50, 44); + this.panel1.TabIndex = 7; + // + // CtrlOrgChar + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.SystemColors.Info; + this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.Controls.Add(this.panel1); + this.Name = "CtrlOrgChar"; + this.Size = new System.Drawing.Size(764, 490); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Panel panel1; + + + } +} diff --git a/SYS.FormUI/AppUserControls/CtrlOrgChar.cs b/SYS.FormUI/AppUserControls/CtrlOrgChar.cs new file mode 100644 index 0000000000000000000000000000000000000000..657f33fbdaa62924db74297ff04273bda3cfcac8 --- /dev/null +++ b/SYS.FormUI/AppUserControls/CtrlOrgChar.cs @@ -0,0 +1,102 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class CtrlOrgChar : UserControl + { + public CtrlOrgChar() + { + InitializeComponent(); + } + OrgCharGenerator _CharGen = new OrgCharGenerator(); + + private object _RootParentKeyValue; + public object RootParentKeyValue + { + get + { + return _RootParentKeyValue; + } + set + { + if (_RootParentKeyValue != value) + { + _RootParentKeyValue = value; + } + } + } + private string _KeyFileName; + public string KeyFileName + { + get + { + return _KeyFileName; + } + set + { + if (_KeyFileName != value) + { + _KeyFileName = value; + } + } + } + private string _ParentKeyFileName; + public string ParentKeyFileName + { + get + { + return _ParentKeyFileName; + } + set + { + if (_ParentKeyFileName != value) + { + _ParentKeyFileName = value; + } + } + } + private DataTable _DataSource; + public DataTable DataSource + { + get + { + return _DataSource; + } + set + { + if (_DataSource != value) + { + _DataSource = value; + } + } + } + + + public void ShowChar() + { + try + { + this.panel1.SuspendLayout(); + OrgCharDataSource ds = new OrgCharDataSource(this.KeyFileName, + ParentKeyFileName, + _RootParentKeyValue, + DataSource, + typeof(SH_OrgCharControlBuilder), + this.panel1); + _CharGen.GeneratorControlChar(ds); + this.panel1.Invalidate(); + } + finally + { + this.panel1.ResumeLayout(false); + } + } + } +} diff --git a/SYS.FormUI/AppUserControls/CtrlOrgChar.resx b/SYS.FormUI/AppUserControls/CtrlOrgChar.resx new file mode 100644 index 0000000000000000000000000000000000000000..19dc0dd8b3964e653690c64d095c5d28283828b7 --- /dev/null +++ b/SYS.FormUI/AppUserControls/CtrlOrgChar.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SYS.FormUI/AppUserControls/CtrlOrgPanel.Designer.cs b/SYS.FormUI/AppUserControls/CtrlOrgPanel.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..2c2fb173865d72586650b0e86aa3a19b91b9cf26 --- /dev/null +++ b/SYS.FormUI/AppUserControls/CtrlOrgPanel.Designer.cs @@ -0,0 +1,130 @@ +namespace SYS.FormUI +{ + partial class CtrlOrgPanel + { + /// + /// 設計工具所需的變數。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清除任何使用中的資源。 + /// + /// 如果應該處置 Managed 資源則為 true,否則為 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region 元件設計工具產生的程式碼 + + /// + /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。 + /// + /// + private void InitializeComponent() + { + this.labName = new System.Windows.Forms.LinkLabel(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.labDecision = new System.Windows.Forms.Label(); + this.labJobs = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // labName + // + this.labName.AutoSize = true; + this.labName.BackColor = System.Drawing.Color.Transparent; + this.labName.Location = new System.Drawing.Point(44, 8); + this.labName.Name = "labName"; + this.labName.Size = new System.Drawing.Size(0, 13); + this.labName.TabIndex = 0; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.BackColor = System.Drawing.Color.Transparent; + this.label1.Location = new System.Drawing.Point(10, 8); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(34, 13); + this.label1.TabIndex = 1; + this.label1.Text = "姓名:"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.BackColor = System.Drawing.Color.Transparent; + this.label2.Location = new System.Drawing.Point(10, 24); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(34, 13); + this.label2.TabIndex = 2; + this.label2.Text = "職位:"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.BackColor = System.Drawing.Color.Transparent; + this.label3.Location = new System.Drawing.Point(9, 40); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(34, 13); + this.label3.TabIndex = 4; + this.label3.Text = "決策:"; + // + // labDecision + // + this.labDecision.AutoSize = true; + this.labDecision.BackColor = System.Drawing.Color.Transparent; + this.labDecision.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136))); + this.labDecision.ForeColor = System.Drawing.Color.Blue; + this.labDecision.Location = new System.Drawing.Point(44, 39); + this.labDecision.Name = "labDecision"; + this.labDecision.Size = new System.Drawing.Size(0, 13); + this.labDecision.TabIndex = 5; + // + // labJobs + // + this.labJobs.AutoSize = true; + this.labJobs.BackColor = System.Drawing.Color.Transparent; + this.labJobs.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136))); + this.labJobs.ForeColor = System.Drawing.Color.Blue; + this.labJobs.Location = new System.Drawing.Point(44, 24); + this.labJobs.Name = "labJobs"; + this.labJobs.Size = new System.Drawing.Size(0, 15); + this.labJobs.TabIndex = 6; + // + // CtrlOrgPanel + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(245)))), ((int)(((byte)(241))))); + this.BackgroundImage = global::SYS.FormUI.Properties.Resources.組織圖塊; + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.Controls.Add(this.label3); + this.Controls.Add(this.label2); + this.Controls.Add(this.label1); + this.Controls.Add(this.labName); + this.Controls.Add(this.labDecision); + this.Controls.Add(this.labJobs); + this.DoubleBuffered = true; + this.Name = "CtrlOrgPanel"; + this.Size = new System.Drawing.Size(135, 62); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.LinkLabel labName; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label labDecision; + private System.Windows.Forms.Label labJobs; + } +} diff --git a/SYS.FormUI/AppUserControls/CtrlOrgPanel.cs b/SYS.FormUI/AppUserControls/CtrlOrgPanel.cs new file mode 100644 index 0000000000000000000000000000000000000000..21ce191dcda9dd02d8354139cccc8e2da37f5963 --- /dev/null +++ b/SYS.FormUI/AppUserControls/CtrlOrgPanel.cs @@ -0,0 +1,123 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class CtrlOrgPanel : UserControl, IOrgCharNodeControl + { + public CtrlOrgPanel() + { + InitializeComponent(); + this.Click += new EventHandler(NodeButton_Click); + } + public CtrlOrgPanel(DataRow dr, string name, string descision, string jobs) + { + InitializeComponent(); + + this.Click += new EventHandler(NodeButton_Click); + SourceRow = dr; + this.labDecision.Text = descision; + this.labJobs.Text = jobs; + this.labName.Text = name; + } + + private DataRow _SourceRow; + private DataRow SourceRow + { + set + { + if (_SourceRow != value) + { + _SourceRow = value; + } + } + } + + void NodeButton_Click(object sender, EventArgs e) + { + if (this.ClickCallBack != null) + { + this.ClickCallBack.Invoke(this.Node); + } + } + public OrgCharNode _Node; + #region INodeControl 成員 + private dlgNodeClick _ClickCallBack; + public dlgNodeClick ClickCallBack + { + get + { + return _ClickCallBack; + } + set + { + _ClickCallBack = value; + } + } + public OrgCharNode Node + { + get { return _Node; } + set + { + this._Node = value; + + } + } + public int NodeWidth + { + get { return this.Width; } + set { this.Width = value; } + } + public int NodeHeight + { + get { return this.Height; } + set { this.Height = value; } + } + public int Node_X + { + get { return this.Left; } + set { this.Left = value; } + } + public int Node_Y + { + get { return this.Top; } + set { this.Top = value; } + } + + #endregion + + + + + } + + public class SH_OrgCharControlBuilder : IOrgCharControlBuilder + { + + + #region IOrgCharControlBuilder 成員 + + IOrgCharNodeControl IOrgCharControlBuilder.Build(DataRow dr) + { + //CtrlOrgPanel pel = new CtrlOrgPanel(dr, + // dr["CD_MEMBER"] == DBNull.Value ? "" : dr["CD_MEMBER"].ToString(), + // dr["CD_ROLE"] == DBNull.Value ? "" : dr["CD_ROLE"].ToString(), + // dr["CD_JOB"] == DBNull.Value ? "" : dr["CD_JOB"].ToString() + // ); + CtrlOrgPanel pel = new CtrlOrgPanel(dr, + dr["id"] == DBNull.Value ? "" : dr["id"].ToString(), + dr["id"] == DBNull.Value ? "" : dr["id"].ToString(), + dr["id"] == DBNull.Value ? "" : dr["id"].ToString() + ); + return pel; + } + + #endregion + } +} diff --git a/SYS.FormUI/AppUserControls/CtrlOrgPanel.resx b/SYS.FormUI/AppUserControls/CtrlOrgPanel.resx new file mode 100644 index 0000000000000000000000000000000000000000..19dc0dd8b3964e653690c64d095c5d28283828b7 --- /dev/null +++ b/SYS.FormUI/AppUserControls/CtrlOrgPanel.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SYS.FormUI/AppUserControls/ExtensionMethods.cs b/SYS.FormUI/AppUserControls/ExtensionMethods.cs new file mode 100644 index 0000000000000000000000000000000000000000..01054b4a3922098ccf6495de89cd495362de1421 --- /dev/null +++ b/SYS.FormUI/AppUserControls/ExtensionMethods.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.FormUI +{ + public static class ExtensionMethods + { + public static DataTable ToDataTable(this IList data) + { + PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(typeof(T)); + DataTable dt = new DataTable(); + for (int i = 0; i < properties.Count; i++) + { + PropertyDescriptor property = properties[i]; + dt.Columns.Add(property.Name, property.PropertyType); + } + object[] values = new object[properties.Count]; + foreach (T item in data) + { + for (int i = 0; i < values.Length; i++) + { + values[i] = properties[i].GetValue(item); + } + dt.Rows.Add(values); + } + return dt; + } + + } +} diff --git a/SYS.FormUI/AppUserControls/OrgCharGenerator.cs b/SYS.FormUI/AppUserControls/OrgCharGenerator.cs new file mode 100644 index 0000000000000000000000000000000000000000..7a6315cfc020832dced24ae0b77c760fb1c64661 --- /dev/null +++ b/SYS.FormUI/AppUserControls/OrgCharGenerator.cs @@ -0,0 +1,681 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Drawing; +using System.Data; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public delegate void dlgNodeClick(OrgCharNode node); + public class OrgCharGenerator + { + public const int ROOTMAIGINS_TOP = 30; + public const int NODEMAIGINS_RIGHT = 20; + public const int NODEMAIGINS_LEFT = 20; + /// + /// 節點的垂直間距 + /// + public const int NODE_V_DIS = 50; + /// + /// 節點的水平間距 + /// + public const int NODE_H_DIS = 10; + /// + /// 節點寬 + /// + public const int NODE_WIDTH = 129; + /// + /// 節點高度 + /// + public const int NODE_HEIGHT = 61; + /// + /// 跟節點 + /// + public OrgCharNode _RootNode; + /// + /// 層次集合 + /// + public List Levels = new List(); + /// + /// 數據源 + /// + public OrgCharDataSource DataSource; + /// + /// 容器的控件 + /// + public CtrlOrgChar _OrgCtrl; + public int Max_X; + public int Max_Y; + /// + /// 給定某個範圍,計算出每個node的位置Rectangle + /// + /// + /// 最左邊的節點x座標 + /// 最左邊的節點y座標 + public void GeneratorControlChar(OrgCharNode RootNode) + { + this.Max_X = 0; + this.Max_Y = 0; + _RootNode = RootNode; + this.Levels.Clear(); + AddNodeToLevels(RootNode); + CalNodeRec(RootNode); + if (this.DataSource != null && this.DataSource.Container != null) + { + this.DataSource.Container.Width = this.Max_X + NODE_WIDTH + NODEMAIGINS_RIGHT; + this.DataSource.Container.Height = this.Max_Y + NODE_HEIGHT; + } + } + public void GeneratorControlChar(OrgCharDataSource datasource) + { + DataSource = datasource; + DataSource.Container.Paint += new PaintEventHandler(Container_Paint); + this._RootNode=DataSource.BuildNodeTree(); + GeneratorControlChar(this._RootNode); + } + void Container_Paint(object sender, PaintEventArgs e) + { + this.DrawParenChildLine(e.Graphics); + } + /// + /// 把各個leve層次的節點加入到對應的level中 + /// + /// + private void AddNodeToLevels(OrgCharNode n) + { + if (n.Level > Levels.Count - 1) + { + Level l = new Level(n.Level); + l.Items.Add(n); + Levels.Add(l); + } + else + { + Levels[n.Level].Items.Add(n); + } + Levels.Sort(CompareSortLevel); //重新排序列表 + } + private int CompareSortLevel(Level x, Level y) + { + return x.level.CompareTo(y.level); + } + /// + /// 通過childs來獲取node X座標 + /// + /// + /// + public int GetXByChilds(OrgCharNode node) + { + if (node.Childs.Count > 0) + { + int tmp = 0; + tmp = node.FirstChildNode.X + ((node.LastChildNode.Right - node.FirstChildNode.X) / 2) - NODE_WIDTH / 2; + return tmp; + } + return -1; + } + /// + /// 通過父親的前一個節點的子節點來獲取X座標 + /// + /// + /// + public int GetXByParentPreviousNode(OrgCharNode node) + { + if (node.ParentNode == null) { return -1; } + OrgCharNode pprvnode = node.ParentNode.PreviousNode; + if (pprvnode != null) + { + if (pprvnode.Childs.Count > 0) + { + return pprvnode.LastChildNode.Right + NODE_H_DIS; + } + else + { + return pprvnode.X ; + } + } + else + { + if (node.ParentNode != null) + { + return GetXByParentPreviousNode(node.ParentNode); + } + } + return -1; + } + /// + /// 通過同level的前一個子節點的Right來獲取X座標 + /// + /// + /// + public int GetXByLevel(OrgCharNode node) + { + OrgCharNode prvnode = this.Levels[node.Level].GetPrviousNode(node); + if (prvnode != null) + { + return prvnode.Right + NODE_H_DIS; + } + return -1; + } + + public void CalNodeRec(OrgCharNode node) + { + AddNodeToLevels(node); + foreach (OrgCharNode n in node.Childs) + { + CalNodeRec(n); + } + //System.Diagnostics.Debug.WriteLine((node.Tag); + + node.Width = NODE_WIDTH; + node.Heigth = NODE_HEIGHT; + int[] sortArr = new int[] { + GetXByParentPreviousNode(node), + GetXByChilds(node), + GetXByLevel(node), + NODEMAIGINS_RIGHT }; + Array.Sort(sortArr); + int N_X = sortArr[sortArr.Length - 1]; //取出最大X座標 就是node 的座標 + node.X = N_X; + node.Y = (NODE_V_DIS + NODE_HEIGHT) * node.Level + ROOTMAIGINS_TOP; + if (Max_X < node.X) + { + Max_X = node.X; + } + if (Max_Y< node.Y) + { + Max_Y = node.Y; + } + } + private Pen uPen = new Pen(SystemColors.ControlText, 2); + private Graphics g; + /// + /// 畫父子之間的線條 + /// + public void DrawParenChildLine(Graphics g) + { + this.g = g; + if (this._RootNode != null) + { + DrawParenChildLine(this._RootNode); + } + } + private void DrawParenChildLine(OrgCharNode node) + { + if (node.Childs.Count > 0) + { + foreach (OrgCharNode n in node.Childs) + { + + Draw3Dline( + node.X + node.Width / 2, + node.Botton, + node.X + node.Width / 2, + node.Botton + NODE_V_DIS / 2); + Draw3DEndPoint(node.X + node.Width / 2 , node.Botton,0); + Draw3Dline( + node.X + node.Width / 2, + node.Botton + NODE_V_DIS / 2, + n.X + n.Width / 2, + n.Y - NODE_V_DIS / 2); + Draw3Dline( + n.X + n.Width / 2, + n.Y - NODE_V_DIS / 2, + n.X + n.Width / 2, + n.Y); + Draw3DEndPoint(n.X + n.Width / 2 , n.Y,1); + DrawParenChildLine(n); + + } + } + } + SolidBrush EnpointBrush = new SolidBrush(SystemColors.ControlLightLight); + private void Draw3DEndPoint(int x, int y ,int upanddown) + { + //this.g.FillEllipse(new SolidBrush(SystemColors.ControlDark), new Rectangle(x , y , 8, 8)); + + int h = 5; + Point p1 = new Point(x, y); + + + if (upanddown == 0) + { + + Point p2 = new Point(x , y - h); + Point p3 = new Point(x - h, y - h); + Point p4 = new Point(x + h, y - h); + p1.Offset(-1, 4); + p2.Offset(-1, 4); + p3.Offset(-1, 4); + p4.Offset(-1, 4); + EnpointBrush.Color = ControlPaint.Light(SystemColors.ControlLight, 0.4f); + this.g.FillPolygon(EnpointBrush, new Point[] { p1, p2, p3 }); + EnpointBrush.Color = ControlPaint.Dark(SystemColors.ControlDark, 0.2f); ; + this.g.FillPolygon(EnpointBrush, new Point[] { p1, p2, p4 }); + } + else + { + Point p2 = new Point(x , y+h); + Point p5 = new Point(x - h, y+h); + Point p6 = new Point(x + h, y+h); + p1.Offset(-1, -5); + p2.Offset(-1, -5); + p5.Offset(-1, -5); + p6.Offset(-1, -5); + EnpointBrush.Color = ControlPaint.Light(SystemColors.ControlLight, 0.4f); + + this.g.FillPolygon(EnpointBrush, new Point[] { p1, p2, p5}); + EnpointBrush.Color = ControlPaint.Dark(SystemColors.ControlDark, 0.2f); ; + this.g.FillPolygon(EnpointBrush, new Point[] { p1, p2, p6 }); + } + } + + private void Draw3Dline(int x, int y, int x1, int y1) + { + if (g != null) + { + g.DrawLine(uPen, x, y, x1, y1); + Draw3DLine(g, new Point(x, y), new Point(x1, y1), BorderStyle3D.RaisedFrame, SystemColors.ControlLight, SystemColors.ControlDark); + } + } + private enum BorderStyle3D + { + Default, + None, + Flat, + Raised, + RaisedInner, + RaisedOuter, + Sunken, + SunkenInner, + SunkenOuter, + Etched, + Bump, + RaisedFrame + } + private void Draw3DLine(Graphics g, Point x, Point y, BorderStyle3D style, Color baseColor, Color border) + { + Color color = ControlPaint.Light(baseColor, 0.4f); + Color color2 = ControlPaint.LightLight(baseColor); + Color color3 = ControlPaint.Dark(baseColor, 0.2f); + Color color4 = ControlPaint.Dark(baseColor, 0.6f); + Pen pen = new Pen(color); + switch (style) + { + case BorderStyle3D.Default: + case BorderStyle3D.Flat: + pen.Color = (border == Color.Empty) ? baseColor : border; + g.DrawLine(pen, x, y); + break; + case BorderStyle3D.Raised: + Draw3DLine(g, x, y, BorderStyle3D.RaisedOuter, baseColor, border); + x.Offset(-1, -1); + y.Offset(-1, -1); + Draw3DLine(g, x, y, BorderStyle3D.RaisedInner, baseColor, border); + break; + case BorderStyle3D.RaisedInner: + if (x.X == y.Y) + { + g.DrawLine(pen, x, y); + } + else + { + pen.Color = color3; + g.DrawLine(pen, x, y); + } + break; + case BorderStyle3D.RaisedOuter: + if (x.X == y.Y) + { + pen.Color = color2; + g.DrawLine(pen, x, y); + } + else + { + pen.Color = color4; + g.DrawLine(pen, x, y); + } + break; + + case BorderStyle3D.Sunken: + Draw3DLine(g, x, y, BorderStyle3D.SunkenOuter, baseColor, border); + x.Offset(-1, -1); + y.Offset(-1, -1); + Draw3DLine(g, x, y, BorderStyle3D.SunkenInner, baseColor, border); + break; + + case BorderStyle3D.SunkenInner: + + if (x.X == y.Y) + { + pen.Color = color4; + g.DrawLine(pen, x, y); + } + else + { + pen.Color = color; + g.DrawLine(pen, x, y); + } + break; + case BorderStyle3D.SunkenOuter: + if (x.X == y.Y) + { + pen.Color = color3; + g.DrawLine(pen, x, y); + } + else + { + pen.Color = color2; + g.DrawLine(pen, x, y); + } + break; + + case BorderStyle3D.Etched: + Draw3DLine(g, x, y, BorderStyle3D.SunkenOuter, baseColor, border); + x.Offset(-1, -1); + y.Offset(-1, -1); + + Draw3DLine(g, x, y, BorderStyle3D.RaisedInner, baseColor, border); + break; + + case BorderStyle3D.Bump: + Draw3DLine(g, x, y, BorderStyle3D.RaisedOuter, baseColor, border); + x.Offset(-1, -1); + y.Offset(-1, -1); + + Draw3DLine(g, x, y, BorderStyle3D.SunkenInner, baseColor, border); + break; + case BorderStyle3D.RaisedFrame: + Draw3DLine(g, x, y, BorderStyle3D.Raised, baseColor, border); + x.Offset(-2, -2); + y.Offset(-2, -2); + Draw3DLine(g, x, y, BorderStyle3D.Sunken, baseColor, border); + break; + } + pen.Dispose(); + } + public class Level + { + public Level(int l) + { + level = l; + } + private int GetNodeIndex(OrgCharNode node) + { + for (int i = 0; i < this.Items.Count; i++) + { + if (node.Equals(this.Items[i])) + { + return i; + } + } + return -1; + } + public int level; + + public List Items = new List(); + /// + /// 獲取Level某個節點的前一個節點 + /// + /// + /// + public OrgCharNode GetPrviousNode(OrgCharNode node) + { + int index = this.GetNodeIndex(node); + if (index == -1 || index == 0) + { + return null; + } + else + { + return this.Items[index - 1]; + } + + } + } + } + public class OrgCharNode + { + public OrgCharNode(IOrgCharNodeControl c) + { + this.ctrl = c; + } + private Rectangle PosRec; + public int Level = 0; + public OrgCharNode ParentNode; + public IOrgCharNodeControl ctrl; + public List Childs = new List(); + public event dlgNodeClick OnNodeClick; + public void ControlCallBack(OrgCharNode node) + { + if (this.OnNodeClick != null) + { + this.OnNodeClick(this); + } + } + public void AddChild(OrgCharNode node) + { + node.ParentNode = this; + node.Level = this.Level + 1; + this.Childs.Add(node); + + } + public int Index + { + get + { + if (this.ParentNode != null) + { + return this.ParentNode.Childs.IndexOf(this); + } + return -1; + } + } + public OrgCharNode PreviousNode + { + get + { + if (this.ParentNode != null) + { + if (this.Index == -1 || this.Index == 0) + { + return null; + } + else + { + return this.ParentNode.Childs[this.Index - 1]; + } + } + + return null; + } + } + public OrgCharNode FirstChildNode + { + get + { + if (Childs.Count > 0) + { + return this.Childs[0]; + } + return null; + } + } + public OrgCharNode LastChildNode + { + get + { + if (Childs.Count ==0) + { + return null; + } + else + { + return this.Childs[this.Childs.Count -1]; + } + + } + } + public int X + { + get + { + return PosRec.X; + } + set + { + PosRec.X = value; + if (this.ctrl != null) + { + this.ctrl.Node_X = value; + } + } + } + public int Y + { + get + { + return PosRec.Y; + } + set + { + PosRec.Y = value; + if (this.ctrl != null) + { + this.ctrl.Node_Y = value; + } + } + } + public int Width + { + get + { + return PosRec.Width; + } + set + { + PosRec.Width = value; + if (this.ctrl != null) + { + this.ctrl.NodeWidth = value; + } + } + } + public int Heigth + { + get + { + return PosRec.Height; + } + set + { + PosRec.Height = value; + if (this.ctrl != null) + { + this.ctrl.NodeHeight = value; + } + } + } + public int Right + { + get + { + return X + Width; + } + } + public int Botton + { + get + { + return Y + Heigth; + } + } + public object Tag; + } + + public interface IOrgCharNodeControl + { + dlgNodeClick ClickCallBack { get; set; } + OrgCharNode Node { get; set; } + int Node_X { get; set; } + int Node_Y { get; set; } + int NodeWidth { get; set; } + int NodeHeight { get; set; } + } + public interface IOrgCharControlBuilder + { + IOrgCharNodeControl Build(DataRow dr); + } + + public class OrgCharDataSource + { + /// + /// 數據源構造函數 + /// + /// dt表的主鍵名稱 + /// dt表的父親鍵名稱 + /// 根節點的父節點值 + /// 要顯示的節點控件類型 給控件必須 繼承Control 實現IOrgCharNodeControl 接口 必須有無參數的構造函數 + /// 來源數據表 + public OrgCharDataSource(string k, string pk,object rootparentvalue, DataTable dt,Type Buildertype,Control c) + { + this.KeyFileName = k; + this.ParentKeyFileName = pk; + this.Table = dt; + this.RootParentvalue = rootparentvalue; + this.BuilderType = Buildertype; + this.Container = c; + } + public string KeyFileName; + public string ParentKeyFileName; + public object RootParentvalue; + public DataTable Table; + public Type BuilderType; + public Control Container; + public IOrgCharControlBuilder ControlBuilder; + public OrgCharNode BuildNodeTree() + { + DataRow[] drs = Table.Select(string.Format("{0}='{1}'", ParentKeyFileName, 0)); + if (ControlBuilder == null) + { + ControlBuilder = (IOrgCharControlBuilder)Activator.CreateInstance(this.BuilderType); + } + + IOrgCharNodeControl obj = ControlBuilder.Build(drs[0]); + this.Container.Controls.Add((Control)obj); + obj.Node_X = -100; + obj.NodeHeight = OrgCharGenerator.NODE_HEIGHT; + obj.NodeWidth = OrgCharGenerator.NODE_WIDTH; + OrgCharNode rootn = new OrgCharNode(obj); + obj.Node = rootn; + BuildNodeTree(drs[0], rootn); + return rootn; + } + private void BuildNodeTree(DataRow r, OrgCharNode pn) + { + DataRow[] drs = Table.Select(string.Format("{0}='{1}'", ParentKeyFileName, r[KeyFileName])); + foreach (DataRow d in drs) + { + if (ControlBuilder == null) + { + ControlBuilder = (IOrgCharControlBuilder)Activator.CreateInstance(this.BuilderType); + } + IOrgCharNodeControl obj = ControlBuilder.Build(d); + this.Container.Controls.Add((Control)obj); + + obj.Node_X = -100; + obj.NodeHeight = OrgCharGenerator.NODE_HEIGHT; + obj.NodeWidth = OrgCharGenerator.NODE_WIDTH; + OrgCharNode n = new OrgCharNode(obj); + obj.Node = n; + pn.AddChild(n); + BuildNodeTree(d, n); + } + } + + } + + +} diff --git a/SYS.FormUI/AppUserControls/ucBaseInformation.Designer.cs b/SYS.FormUI/AppUserControls/ucBaseInformation.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..ac5d5c7ad287d79845859842bbbe30ac434392ef --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucBaseInformation.Designer.cs @@ -0,0 +1,113 @@ + +namespace SYS.FormUI +{ + partial class ucBaseInformation + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region 组件设计器生成的代码 + + /// + /// 设计器支持所需的方法 - 不要修改 + /// 使用代码编辑器修改此方法的内容。 + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ucBaseInformation)); + this.btnOperation = new Sunny.UI.UIButton(); + this.lbName = new Sunny.UI.UITextBox(); + this.SuspendLayout(); + // + // btnOperation + // + this.btnOperation.Anchor = System.Windows.Forms.AnchorStyles.None; + this.btnOperation.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnOperation.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(199)))), ((int)(((byte)(29)))), ((int)(((byte)(35))))); + this.btnOperation.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); + this.btnOperation.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); + this.btnOperation.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnOperation.Location = new System.Drawing.Point(34, 4); + this.btnOperation.Margin = new System.Windows.Forms.Padding(0); + this.btnOperation.MinimumSize = new System.Drawing.Size(1, 1); + this.btnOperation.Name = "btnOperation"; + this.btnOperation.Radius = 20; + this.btnOperation.RectSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))); + this.btnOperation.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None; + this.btnOperation.Size = new System.Drawing.Size(44, 26); + this.btnOperation.Style = Sunny.UI.UIStyle.Custom; + this.btnOperation.StyleCustomMode = true; + this.btnOperation.TabIndex = 15; + this.btnOperation.Text = "删除"; + this.btnOperation.SizeChanged += new System.EventHandler(this.btnOperation_SizeChanged); + this.btnOperation.Click += new System.EventHandler(this.btnOperation_Click); + // + // lbName + // + this.lbName.BackColor = System.Drawing.Color.Transparent; + this.lbName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.lbName.Enabled = false; + this.lbName.FillColor = System.Drawing.Color.White; + this.lbName.FillDisableColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.lbName.FocusedSelectAll = true; + this.lbName.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lbName.Location = new System.Drawing.Point(6, 35); + this.lbName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.lbName.Maximum = 2147483647D; + this.lbName.Minimum = -2147483648D; + this.lbName.MinimumSize = new System.Drawing.Size(1, 1); + this.lbName.Name = "lbName"; + this.lbName.Padding = new System.Windows.Forms.Padding(5); + this.lbName.Radius = 20; + this.lbName.ReadOnly = true; + this.lbName.RectDisableColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.lbName.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None; + this.lbName.Size = new System.Drawing.Size(74, 29); + this.lbName.Style = Sunny.UI.UIStyle.Custom; + this.lbName.TabIndex = 17; + this.lbName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.lbName.MouseLeave += new System.EventHandler(this.lbName_MouseLeave); + this.lbName.MouseHover += new System.EventHandler(this.lbName_MouseHover); + this.lbName.Validated += new System.EventHandler(this.lbName_Validated); + // + // ucBaseInformation + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage"))); + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.Controls.Add(this.lbName); + this.Controls.Add(this.btnOperation); + this.DoubleBuffered = true; + this.Name = "ucBaseInformation"; + this.Size = new System.Drawing.Size(86, 66); + this.Tag = ""; + this.Load += new System.EventHandler(this.ucBaseInformation_Load); + this.SizeChanged += new System.EventHandler(this.ucBaseInformation_SizeChanged); + this.Layout += new System.Windows.Forms.LayoutEventHandler(this.ucBaseInformation_Layout); + this.Resize += new System.EventHandler(this.ucBaseInformation_Resize); + this.ResumeLayout(false); + + } + + #endregion + public Sunny.UI.UIButton btnOperation; + public Sunny.UI.UITextBox lbName; + } +} diff --git a/SYS.FormUI/AppUserControls/ucBaseInformation.cs b/SYS.FormUI/AppUserControls/ucBaseInformation.cs new file mode 100644 index 0000000000000000000000000000000000000000..4f29833d66bf3a2defb3c786b2ed2c4ceef0d525 --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucBaseInformation.cs @@ -0,0 +1,133 @@ +using SYS.Core; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class ucBaseInformation : UserControl + { + + + public ucBaseInformation() + { + InitializeComponent(); + } + + private void ucBaseInformation_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.roomControlFont; + } + } + + private void btnOperation_SizeChanged(object sender, EventArgs e) + { + btnOperation.Width = 63; + btnOperation.Height = 26; + } + + private void ucBaseInformation_SizeChanged(object sender, EventArgs e) + { + this.Width = 130; + this.Height = 90; + lbName.Width = 70; + lbName.Height = 20; + lbName.FillColor = Color.FromArgb(235, 243, 255); + lbName.FillDisableColor = Color.FromArgb(235, 243, 255); + lbName.RectColor = Color.FromArgb(235, 243, 255); + } + + private void ucBaseInformation_Resize(object sender, EventArgs e) + { + btnOperation.Width = 63; + btnOperation.Height = 26; + this.Width = 130; + this.Height = 90; + } + + private void ucBaseInformation_Layout(object sender, LayoutEventArgs e) + { + + } + + private void btnOperation_Click(object sender, EventArgs e) + { + //lbName.Enabled = true; + //lbName.ReadOnly = false; + if (btnOperation.Text == "恢复") + { + FrmNation.info = lbName.Text.Replace("名称:", string.Empty).ToString(); + FrmNation.Accessed(); + return; + } + if (btnOperation.Text == "恢复" && this.Tag.ToString() == "学历") + { + FrmEducation.info = lbName.Text.Replace("名称:", string.Empty).ToString(); + FrmEducation.Accessed(); + return; + } + if (btnOperation.Text == "新增") + { + lbName.Enabled = true; + lbName.ReadOnly = false; + return; + } + if (btnOperation.Text == "新增" && this.Tag.ToString() == "学历") + { + lbName.Enabled = true; + lbName.ReadOnly = false; + return; + } + if (this.Tag.ToString() == " 学历") + { + FrmEducation.info = lbName.Text.Replace("名称:", string.Empty).ToString(); + FrmEducation.operation(); + return; + } + + if (this.Tag.ToString() != " 学历") + { + + FrmNation.info = lbName.Text.Replace("名称:", string.Empty).ToString(); + FrmNation.operation(); + return; + } + //MessageBox.Show(lbName.Text.Replace("名称:", string.Empty).ToString()); + } + + private void lbName_MouseLeave(object sender, EventArgs e) + { + //lbName.Enabled = false; + //lbName.ReadOnly = true; + lbName.FillColor = Color.FromArgb(235, 243, 255); + lbName.FillDisableColor = Color.FromArgb(235, 243, 255); + lbName.RectColor = Color.FromArgb(235, 243, 255); + } + + private void lbName_MouseHover(object sender, EventArgs e) + { + //lbName.Enabled = true; + //lbName.ReadOnly = false; + } + + private void lbName_Validated(object sender, EventArgs e) + { + if (this.Tag.ToString() == "学历") + { + FrmEducation.info = lbName.Text.ToString(); + FrmEducation.insert(); + return; + } + FrmNation.info = lbName.Text.ToString(); + FrmNation.insert(); + } + } +} diff --git a/SYS.FormUI/AppUserControls/ucBaseInformation.resx b/SYS.FormUI/AppUserControls/ucBaseInformation.resx new file mode 100644 index 0000000000000000000000000000000000000000..90ec49eb51ed03991e305a8398c7817c18fc3e06 --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucBaseInformation.resx @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAS5JREFUWEft + lr+uAUEYxfcN9k994xG4NY1WIoJEf2udiFJotEqtXryD5/A0nDOOtWSyO0IuxXeSXybzzXdmjzW7RF+h + JEnaYAFOgSxkdUrTtBbH8cbT54W99MjuAmxRXGFkkBD24E92+hn+oLUQ2LuU3W3AZG1NK0UzN9GUc3dx + TSvF3qLfAlgAC2AB3hIAb9KRppXitYr+fEMtlIJ3eBfjEWNddvobgB9iwJ4AGHgm+0Uo9rkQQpZlTdly + oc4Q3n4PQ9lMN+G2BH8F4Fe2XKgNH3rK6Ml2EQqvHsIpOKHWufaVwIPKAzuV3W3wr48he4v+twR40s87 + YQEsgAWwAHcB1mCuhRD2D6/iHnAhQoB3d/d/AL/vP1iYAG5SCTZoyZoLtbGv1wcuvpLt04qiM/cKDdw4 + ayEsAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppUserControls/ucEducationInformation.Designer.cs b/SYS.FormUI/AppUserControls/ucEducationInformation.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..771e687fdac47a9e7e85e1195729902caec89cfa --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucEducationInformation.Designer.cs @@ -0,0 +1,113 @@ + +namespace SYS.FormUI +{ + partial class ucEducationInformation + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region 组件设计器生成的代码 + + /// + /// 设计器支持所需的方法 - 不要修改 + /// 使用代码编辑器修改此方法的内容。 + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ucBaseInformation)); + this.btnOperation = new Sunny.UI.UIButton(); + this.lbName = new Sunny.UI.UITextBox(); + this.SuspendLayout(); + // + // btnOperation + // + this.btnOperation.Anchor = System.Windows.Forms.AnchorStyles.None; + this.btnOperation.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnOperation.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(199)))), ((int)(((byte)(29)))), ((int)(((byte)(35))))); + this.btnOperation.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); + this.btnOperation.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); + this.btnOperation.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnOperation.Location = new System.Drawing.Point(34, 4); + this.btnOperation.Margin = new System.Windows.Forms.Padding(0); + this.btnOperation.MinimumSize = new System.Drawing.Size(1, 1); + this.btnOperation.Name = "btnOperation"; + this.btnOperation.Radius = 20; + this.btnOperation.RectSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))); + this.btnOperation.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None; + this.btnOperation.Size = new System.Drawing.Size(44, 26); + this.btnOperation.Style = Sunny.UI.UIStyle.Custom; + this.btnOperation.StyleCustomMode = true; + this.btnOperation.TabIndex = 15; + this.btnOperation.Text = "删除"; + this.btnOperation.SizeChanged += new System.EventHandler(this.btnOperation_SizeChanged); + this.btnOperation.Click += new System.EventHandler(this.btnOperation_Click); + // + // lbName + // + this.lbName.BackColor = System.Drawing.Color.Transparent; + this.lbName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.lbName.Enabled = false; + this.lbName.FillColor = System.Drawing.Color.White; + this.lbName.FillDisableColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.lbName.FocusedSelectAll = true; + this.lbName.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lbName.Location = new System.Drawing.Point(6, 35); + this.lbName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.lbName.Maximum = 2147483647D; + this.lbName.Minimum = -2147483648D; + this.lbName.MinimumSize = new System.Drawing.Size(1, 1); + this.lbName.Name = "lbName"; + this.lbName.Padding = new System.Windows.Forms.Padding(5); + this.lbName.Radius = 20; + this.lbName.ReadOnly = true; + this.lbName.RectDisableColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.lbName.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None; + this.lbName.Size = new System.Drawing.Size(74, 29); + this.lbName.Style = Sunny.UI.UIStyle.Custom; + this.lbName.TabIndex = 17; + this.lbName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.lbName.MouseLeave += new System.EventHandler(this.lbName_MouseLeave); + this.lbName.MouseHover += new System.EventHandler(this.lbName_MouseHover); + this.lbName.Validated += new System.EventHandler(this.lbName_Validated); + // + // ucBaseInformation + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage"))); + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.Controls.Add(this.lbName); + this.Controls.Add(this.btnOperation); + this.DoubleBuffered = true; + this.Name = "ucBaseInformation"; + this.Size = new System.Drawing.Size(86, 66); + this.Tag = ""; + this.Load += new System.EventHandler(this.ucBaseInformation_Load); + this.SizeChanged += new System.EventHandler(this.ucBaseInformation_SizeChanged); + this.Layout += new System.Windows.Forms.LayoutEventHandler(this.ucBaseInformation_Layout); + this.Resize += new System.EventHandler(this.ucBaseInformation_Resize); + this.ResumeLayout(false); + + } + + #endregion + public Sunny.UI.UIButton btnOperation; + public Sunny.UI.UITextBox lbName; + } +} diff --git a/SYS.FormUI/AppUserControls/ucEducationInformation.cs b/SYS.FormUI/AppUserControls/ucEducationInformation.cs new file mode 100644 index 0000000000000000000000000000000000000000..1aaaf5b58b01372384c1748f4f84e77afbdcc66a --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucEducationInformation.cs @@ -0,0 +1,102 @@ +using SYS.Core; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class ucEducationInformation : UserControl + { + + + public ucEducationInformation() + { + InitializeComponent(); + } + + private void ucBaseInformation_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.roomControlFont; + } + } + + private void btnOperation_SizeChanged(object sender, EventArgs e) + { + btnOperation.Width = 63; + btnOperation.Height = 26; + } + + private void ucBaseInformation_SizeChanged(object sender, EventArgs e) + { + this.Width = 130; + this.Height = 90; + lbName.Width = 70; + lbName.Height = 20; + lbName.FillColor = Color.FromArgb(235, 243, 255); + lbName.FillDisableColor = Color.FromArgb(235, 243, 255); + lbName.RectColor = Color.FromArgb(235, 243, 255); + } + + private void ucBaseInformation_Resize(object sender, EventArgs e) + { + btnOperation.Width = 63; + btnOperation.Height = 26; + this.Width = 130; + this.Height = 90; + } + + private void ucBaseInformation_Layout(object sender, LayoutEventArgs e) + { + + } + + private void btnOperation_Click(object sender, EventArgs e) + { + if (btnOperation.Text == "恢复") + { + FrmEducation.info = lbName.Text.Replace("名称:", string.Empty).ToString(); + FrmEducation.Accessed(); + return; + } + if (btnOperation.Text == "新增") + { + lbName.Enabled = true; + lbName.ReadOnly = false; + return; + } + FrmEducation.info = lbName.Text.Replace("名称:", string.Empty).ToString(); + FrmEducation.operation(); + return; + //MessageBox.Show(lbName.Text.Replace("名称:", string.Empty).ToString()); + } + + private void lbName_MouseLeave(object sender, EventArgs e) + { + //lbName.Enabled = false; + //lbName.ReadOnly = true; + lbName.FillColor = Color.FromArgb(235, 243, 255); + lbName.FillDisableColor = Color.FromArgb(235, 243, 255); + lbName.RectColor = Color.FromArgb(235, 243, 255); + } + + private void lbName_MouseHover(object sender, EventArgs e) + { + //lbName.Enabled = true; + //lbName.ReadOnly = false; + } + + private void lbName_Validated(object sender, EventArgs e) + { + FrmEducation.info = lbName.Text.ToString(); + FrmEducation.insert(); + } + } +} diff --git a/SYS.FormUI/AppUserControls/ucEducationInformation.resx b/SYS.FormUI/AppUserControls/ucEducationInformation.resx new file mode 100644 index 0000000000000000000000000000000000000000..90ec49eb51ed03991e305a8398c7817c18fc3e06 --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucEducationInformation.resx @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAS5JREFUWEft + lr+uAUEYxfcN9k994xG4NY1WIoJEf2udiFJotEqtXryD5/A0nDOOtWSyO0IuxXeSXybzzXdmjzW7RF+h + JEnaYAFOgSxkdUrTtBbH8cbT54W99MjuAmxRXGFkkBD24E92+hn+oLUQ2LuU3W3AZG1NK0UzN9GUc3dx + TSvF3qLfAlgAC2AB3hIAb9KRppXitYr+fEMtlIJ3eBfjEWNddvobgB9iwJ4AGHgm+0Uo9rkQQpZlTdly + oc4Q3n4PQ9lMN+G2BH8F4Fe2XKgNH3rK6Ml2EQqvHsIpOKHWufaVwIPKAzuV3W3wr48he4v+twR40s87 + YQEsgAWwAHcB1mCuhRD2D6/iHnAhQoB3d/d/AL/vP1iYAG5SCTZoyZoLtbGv1wcuvpLt04qiM/cKDdw4 + ayEsAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppUserControls/ucHistory.Designer.cs b/SYS.FormUI/AppUserControls/ucHistory.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..e498b9c10390c71af366979fbefda5ae71e62dc4 --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucHistory.Designer.cs @@ -0,0 +1,189 @@ +namespace SYS.FormUI +{ + partial class ucHistory + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region 组件设计器生成的代码 + + /// + /// 设计器支持所需的方法 - 不要修改 + /// 使用代码编辑器修改此方法的内容。 + /// + private void InitializeComponent() + { + this.dtpStartDate = new Sunny.UI.UIDatePicker(); + this.label19 = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); + this.dtpEndDate = new Sunny.UI.UIDatePicker(); + this.txtPosition = new Sunny.UI.UITextBox(); + this.label22 = new System.Windows.Forms.Label(); + this.txtCompany = new Sunny.UI.UITextBox(); + this.label6 = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // dtpStartDate + // + this.dtpStartDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.dtpStartDate.FillColor = System.Drawing.Color.White; + this.dtpStartDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); + this.dtpStartDate.Location = new System.Drawing.Point(95, 7); + this.dtpStartDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.dtpStartDate.MaxLength = 10; + this.dtpStartDate.MinimumSize = new System.Drawing.Size(63, 0); + this.dtpStartDate.Name = "dtpStartDate"; + this.dtpStartDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.dtpStartDate.Radius = 20; + this.dtpStartDate.Size = new System.Drawing.Size(166, 31); + this.dtpStartDate.SymbolDropDown = 61555; + this.dtpStartDate.SymbolNormal = 61555; + this.dtpStartDate.TabIndex = 120; + this.dtpStartDate.Text = "2020-11-24"; + this.dtpStartDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.dtpStartDate.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); + // + // label19 + // + this.label19.AutoSize = true; + this.label19.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label19.Location = new System.Drawing.Point(3, 10); + this.label19.Name = "label19"; + this.label19.Size = new System.Drawing.Size(88, 25); + this.label19.TabIndex = 119; + this.label19.Text = "工作时间"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label5.Location = new System.Drawing.Point(299, 10); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(31, 25); + this.label5.TabIndex = 121; + this.label5.Text = "到"; + // + // dtpEndDate + // + this.dtpEndDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + this.dtpEndDate.FillColor = System.Drawing.Color.White; + this.dtpEndDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); + this.dtpEndDate.Location = new System.Drawing.Point(371, 7); + this.dtpEndDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.dtpEndDate.MaxLength = 10; + this.dtpEndDate.MinimumSize = new System.Drawing.Size(63, 0); + this.dtpEndDate.Name = "dtpEndDate"; + this.dtpEndDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); + this.dtpEndDate.Radius = 20; + this.dtpEndDate.Size = new System.Drawing.Size(203, 31); + this.dtpEndDate.SymbolDropDown = 61555; + this.dtpEndDate.SymbolNormal = 61555; + this.dtpEndDate.TabIndex = 122; + this.dtpEndDate.Text = "2020-11-24"; + this.dtpEndDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.dtpEndDate.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); + // + // txtPosition + // + this.txtPosition.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtPosition.FillColor = System.Drawing.Color.White; + this.txtPosition.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtPosition.Location = new System.Drawing.Point(98, 55); + this.txtPosition.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtPosition.Maximum = 2147483647D; + this.txtPosition.Minimum = -2147483648D; + this.txtPosition.MinimumSize = new System.Drawing.Size(1, 1); + this.txtPosition.Name = "txtPosition"; + this.txtPosition.Padding = new System.Windows.Forms.Padding(5); + this.txtPosition.Radius = 20; + this.txtPosition.Size = new System.Drawing.Size(166, 35); + this.txtPosition.Style = Sunny.UI.UIStyle.Custom; + this.txtPosition.StyleCustomMode = true; + this.txtPosition.TabIndex = 124; + // + // label22 + // + this.label22.AutoSize = true; + this.label22.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label22.Location = new System.Drawing.Point(3, 59); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(88, 25); + this.label22.TabIndex = 123; + this.label22.Text = "所任职位"; + // + // txtCompany + // + this.txtCompany.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCompany.FillColor = System.Drawing.Color.White; + this.txtCompany.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCompany.Location = new System.Drawing.Point(365, 55); + this.txtCompany.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCompany.Maximum = 2147483647D; + this.txtCompany.Minimum = -2147483648D; + this.txtCompany.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCompany.Name = "txtCompany"; + this.txtCompany.Padding = new System.Windows.Forms.Padding(5); + this.txtCompany.Radius = 20; + this.txtCompany.Size = new System.Drawing.Size(209, 35); + this.txtCompany.Style = Sunny.UI.UIStyle.Custom; + this.txtCompany.StyleCustomMode = true; + this.txtCompany.TabIndex = 126; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label6.Location = new System.Drawing.Point(270, 59); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(88, 25); + this.label6.TabIndex = 125; + this.label6.Text = "企业名称"; + // + // ucHistory + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.Controls.Add(this.txtCompany); + this.Controls.Add(this.label6); + this.Controls.Add(this.txtPosition); + this.Controls.Add(this.label22); + this.Controls.Add(this.dtpEndDate); + this.Controls.Add(this.label5); + this.Controls.Add(this.dtpStartDate); + this.Controls.Add(this.label19); + this.Name = "ucHistory"; + this.Size = new System.Drawing.Size(581, 100); + this.Load += new System.EventHandler(this.ucHistory_Load); + this.SizeChanged += new System.EventHandler(this.ucHistory_SizeChanged); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.Label label19; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.Label label22; + private System.Windows.Forms.Label label6; + public Sunny.UI.UIDatePicker dtpStartDate; + public Sunny.UI.UIDatePicker dtpEndDate; + public Sunny.UI.UITextBox txtPosition; + public Sunny.UI.UITextBox txtCompany; + } +} diff --git a/SYS.FormUI/AppUserControls/ucHistory.cs b/SYS.FormUI/AppUserControls/ucHistory.cs new file mode 100644 index 0000000000000000000000000000000000000000..de1a42ec9bb69a3326381a59e89598df6084c09b --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucHistory.cs @@ -0,0 +1,24 @@ +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class ucHistory : UserControl + { + public ucHistory() + { + InitializeComponent(); + } + + private void ucHistory_Load(object sender, System.EventArgs e) + { + foreach (Control item in this.Controls) + { + item.Font = UI_FontUtil.controlFont; + } + } + + private void ucHistory_SizeChanged(object sender, System.EventArgs e) + { + } + } +} diff --git a/SYS.FormUI/AppUserControls/ucHistory.resx b/SYS.FormUI/AppUserControls/ucHistory.resx new file mode 100644 index 0000000000000000000000000000000000000000..1af7de150c99c12dd67a509fe57c10d63e4eeb04 --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucHistory.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SYS.FormUI/AppUserControls/ucPositionInformation.Designer.cs b/SYS.FormUI/AppUserControls/ucPositionInformation.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..12af0b2c5eaf20c1448a4c559848bc01b292aa93 --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucPositionInformation.Designer.cs @@ -0,0 +1,113 @@ + +namespace SYS.FormUI +{ + partial class ucPositionInformation + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region 组件设计器生成的代码 + + /// + /// 设计器支持所需的方法 - 不要修改 + /// 使用代码编辑器修改此方法的内容。 + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ucBaseInformation)); + this.btnOperation = new Sunny.UI.UIButton(); + this.lbName = new Sunny.UI.UITextBox(); + this.SuspendLayout(); + // + // btnOperation + // + this.btnOperation.Anchor = System.Windows.Forms.AnchorStyles.None; + this.btnOperation.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnOperation.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(199)))), ((int)(((byte)(29)))), ((int)(((byte)(35))))); + this.btnOperation.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); + this.btnOperation.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); + this.btnOperation.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnOperation.Location = new System.Drawing.Point(34, 4); + this.btnOperation.Margin = new System.Windows.Forms.Padding(0); + this.btnOperation.MinimumSize = new System.Drawing.Size(1, 1); + this.btnOperation.Name = "btnOperation"; + this.btnOperation.Radius = 20; + this.btnOperation.RectSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))); + this.btnOperation.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None; + this.btnOperation.Size = new System.Drawing.Size(44, 26); + this.btnOperation.Style = Sunny.UI.UIStyle.Custom; + this.btnOperation.StyleCustomMode = true; + this.btnOperation.TabIndex = 15; + this.btnOperation.Text = "删除"; + this.btnOperation.SizeChanged += new System.EventHandler(this.btnOperation_SizeChanged); + this.btnOperation.Click += new System.EventHandler(this.btnOperation_Click); + // + // lbName + // + this.lbName.BackColor = System.Drawing.Color.Transparent; + this.lbName.Cursor = System.Windows.Forms.Cursors.IBeam; + this.lbName.Enabled = false; + this.lbName.FillColor = System.Drawing.Color.White; + this.lbName.FillDisableColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.lbName.FocusedSelectAll = true; + this.lbName.Font = new System.Drawing.Font("微软雅黑", 12F); + this.lbName.Location = new System.Drawing.Point(6, 35); + this.lbName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.lbName.Maximum = 2147483647D; + this.lbName.Minimum = -2147483648D; + this.lbName.MinimumSize = new System.Drawing.Size(1, 1); + this.lbName.Name = "lbName"; + this.lbName.Padding = new System.Windows.Forms.Padding(5); + this.lbName.Radius = 20; + this.lbName.ReadOnly = true; + this.lbName.RectDisableColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); + this.lbName.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None; + this.lbName.Size = new System.Drawing.Size(74, 29); + this.lbName.Style = Sunny.UI.UIStyle.Custom; + this.lbName.TabIndex = 17; + this.lbName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + this.lbName.MouseLeave += new System.EventHandler(this.lbName_MouseLeave); + this.lbName.MouseHover += new System.EventHandler(this.lbName_MouseHover); + this.lbName.Validated += new System.EventHandler(this.lbName_Validated); + // + // ucBaseInformation + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); + this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage"))); + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.Controls.Add(this.lbName); + this.Controls.Add(this.btnOperation); + this.DoubleBuffered = true; + this.Name = "ucBaseInformation"; + this.Size = new System.Drawing.Size(86, 66); + this.Tag = ""; + this.Load += new System.EventHandler(this.ucBaseInformation_Load); + this.SizeChanged += new System.EventHandler(this.ucBaseInformation_SizeChanged); + this.Layout += new System.Windows.Forms.LayoutEventHandler(this.ucBaseInformation_Layout); + this.Resize += new System.EventHandler(this.ucBaseInformation_Resize); + this.ResumeLayout(false); + + } + + #endregion + public Sunny.UI.UIButton btnOperation; + public Sunny.UI.UITextBox lbName; + } +} diff --git a/SYS.FormUI/AppUserControls/ucPositionInformation.cs b/SYS.FormUI/AppUserControls/ucPositionInformation.cs new file mode 100644 index 0000000000000000000000000000000000000000..b29d56c441a1baf7c4b71ef2ef60ea324bccc5d4 --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucPositionInformation.cs @@ -0,0 +1,102 @@ +using SYS.Core; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SYS.FormUI +{ + public partial class ucPositionInformation : UserControl + { + + + public ucPositionInformation() + { + InitializeComponent(); + } + + private void ucBaseInformation_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + label.Font = UI_FontUtil.roomControlFont; + } + } + + private void btnOperation_SizeChanged(object sender, EventArgs e) + { + btnOperation.Width = 63; + btnOperation.Height = 26; + } + + private void ucBaseInformation_SizeChanged(object sender, EventArgs e) + { + this.Width = 130; + this.Height = 90; + lbName.Width = 70; + lbName.Height = 20; + lbName.FillColor = Color.FromArgb(235, 243, 255); + lbName.FillDisableColor = Color.FromArgb(235, 243, 255); + lbName.RectColor = Color.FromArgb(235, 243, 255); + } + + private void ucBaseInformation_Resize(object sender, EventArgs e) + { + btnOperation.Width = 63; + btnOperation.Height = 26; + this.Width = 130; + this.Height = 90; + } + + private void ucBaseInformation_Layout(object sender, LayoutEventArgs e) + { + + } + + private void btnOperation_Click(object sender, EventArgs e) + { + if (btnOperation.Text == "恢复") + { + FrmPosition.info = lbName.Text.Replace("名称:", string.Empty).ToString(); + FrmPosition.Accessed(); + return; + } + if (btnOperation.Text == "新增") + { + lbName.Enabled = true; + lbName.ReadOnly = false; + return; + } + FrmPosition.info = lbName.Text.Replace("名称:", string.Empty).ToString(); + FrmPosition.operation(); + return; + //MessageBox.Show(lbName.Text.Replace("名称:", string.Empty).ToString()); + } + + private void lbName_MouseLeave(object sender, EventArgs e) + { + //lbName.Enabled = false; + //lbName.ReadOnly = true; + lbName.FillColor = Color.FromArgb(235, 243, 255); + lbName.FillDisableColor = Color.FromArgb(235, 243, 255); + lbName.RectColor = Color.FromArgb(235, 243, 255); + } + + private void lbName_MouseHover(object sender, EventArgs e) + { + //lbName.Enabled = true; + //lbName.ReadOnly = false; + } + + private void lbName_Validated(object sender, EventArgs e) + { + FrmPosition.info = lbName.Text.ToString(); + FrmPosition.insert(); + } + } +} diff --git a/SYS.FormUI/AppUserControls/ucPositionInformation.resx b/SYS.FormUI/AppUserControls/ucPositionInformation.resx new file mode 100644 index 0000000000000000000000000000000000000000..90ec49eb51ed03991e305a8398c7817c18fc3e06 --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucPositionInformation.resx @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAS5JREFUWEft + lr+uAUEYxfcN9k994xG4NY1WIoJEf2udiFJotEqtXryD5/A0nDOOtWSyO0IuxXeSXybzzXdmjzW7RF+h + JEnaYAFOgSxkdUrTtBbH8cbT54W99MjuAmxRXGFkkBD24E92+hn+oLUQ2LuU3W3AZG1NK0UzN9GUc3dx + TSvF3qLfAlgAC2AB3hIAb9KRppXitYr+fEMtlIJ3eBfjEWNddvobgB9iwJ4AGHgm+0Uo9rkQQpZlTdly + oc4Q3n4PQ9lMN+G2BH8F4Fe2XKgNH3rK6Ml2EQqvHsIpOKHWufaVwIPKAzuV3W3wr48he4v+twR40s87 + YQEsgAWwAHcB1mCuhRD2D6/iHnAhQoB3d/d/AL/vP1iYAG5SCTZoyZoLtbGv1wcuvpLt04qiM/cKDdw4 + ayEsAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/SYS.FormUI/AppUserControls/ucRoomList.Designer.cs b/SYS.FormUI/AppUserControls/ucRoomList.Designer.cs new file mode 100644 index 0000000000000000000000000000000000000000..3a9994b7c2e5854e28987a95c34bf53def6d669d --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucRoomList.Designer.cs @@ -0,0 +1,175 @@ +namespace SYS.FormUI +{ + partial class ucRoomList + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region 组件设计器生成的代码 + + /// + /// 设计器支持所需的方法 - 不要修改 + /// 使用代码编辑器修改此方法的内容。 + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.cmsMain = new System.Windows.Forms.ContextMenuStrip(this.components); + this.tsmiReserRoom = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiCheckIn = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiCheckOut = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiChangeRoom = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiSelectUserInfo = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiChangeState = new System.Windows.Forms.ToolStripMenuItem(); + this.lblCustoNo = new System.Windows.Forms.Label(); + this.lblRoomType = new System.Windows.Forms.Label(); + this.lblRoomNo = new System.Windows.Forms.Label(); + this.cmsMain.SuspendLayout(); + this.SuspendLayout(); + // + // cmsMain + // + this.cmsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.tsmiReserRoom, + this.tsmiCheckIn, + this.tsmiCheckOut, + this.tsmiChangeRoom, + this.tsmiSelectUserInfo, + this.tsmiChangeState}); + this.cmsMain.Name = "cmsMain"; + this.cmsMain.Size = new System.Drawing.Size(149, 136); + this.cmsMain.Opening += new System.ComponentModel.CancelEventHandler(this.cmsMain_Opening); + // + // tsmiReserRoom + // + this.tsmiReserRoom.Name = "tsmiReserRoom"; + this.tsmiReserRoom.Size = new System.Drawing.Size(148, 22); + this.tsmiReserRoom.Text = "预约房间"; + this.tsmiReserRoom.Click += new System.EventHandler(this.tsmiReserRoom_Click); + // + // tsmiCheckIn + // + this.tsmiCheckIn.Name = "tsmiCheckIn"; + this.tsmiCheckIn.Size = new System.Drawing.Size(148, 22); + this.tsmiCheckIn.Text = "入住房间"; + this.tsmiCheckIn.Click += new System.EventHandler(this.tsmiCheckIn_Click); + // + // tsmiCheckOut + // + this.tsmiCheckOut.Name = "tsmiCheckOut"; + this.tsmiCheckOut.Size = new System.Drawing.Size(148, 22); + this.tsmiCheckOut.Text = "结算退房"; + this.tsmiCheckOut.Click += new System.EventHandler(this.tsmiCheckOut_Click); + // + // tsmiChangeRoom + // + this.tsmiChangeRoom.Name = "tsmiChangeRoom"; + this.tsmiChangeRoom.Size = new System.Drawing.Size(148, 22); + this.tsmiChangeRoom.Text = "转换房间"; + this.tsmiChangeRoom.Click += new System.EventHandler(this.tsmiChangeRoom_Click); + // + // tsmiSelectUserInfo + // + this.tsmiSelectUserInfo.Name = "tsmiSelectUserInfo"; + this.tsmiSelectUserInfo.Size = new System.Drawing.Size(148, 22); + this.tsmiSelectUserInfo.Text = "查看用户信息"; + this.tsmiSelectUserInfo.Click += new System.EventHandler(this.tsmiSelectUserInfo_Click); + // + // tsmiChangeState + // + this.tsmiChangeState.Name = "tsmiChangeState"; + this.tsmiChangeState.Size = new System.Drawing.Size(148, 22); + this.tsmiChangeState.Text = "修改房间状态"; + this.tsmiChangeState.Click += new System.EventHandler(this.tsmiChangeState_Click); + // + // lblCustoNo + // + this.lblCustoNo.AutoSize = true; + this.lblCustoNo.BackColor = System.Drawing.Color.Transparent; + this.lblCustoNo.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblCustoNo.Location = new System.Drawing.Point(22, 59); + this.lblCustoNo.Name = "lblCustoNo"; + this.lblCustoNo.Size = new System.Drawing.Size(62, 17); + this.lblCustoNo.TabIndex = 10; + this.lblCustoNo.Text = "CustoNo"; + this.lblCustoNo.Click += new System.EventHandler(this.lblCustoNo_Click); + // + // lblRoomType + // + this.lblRoomType.AutoSize = true; + this.lblRoomType.BackColor = System.Drawing.Color.Transparent; + this.lblRoomType.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblRoomType.Location = new System.Drawing.Point(23, 3); + this.lblRoomType.Name = "lblRoomType"; + this.lblRoomType.Size = new System.Drawing.Size(61, 17); + this.lblRoomType.TabIndex = 9; + this.lblRoomType.Text = "RoomTy"; + this.lblRoomType.Click += new System.EventHandler(this.lblRoomType_Click); + // + // lblRoomNo + // + this.lblRoomNo.AutoSize = true; + this.lblRoomNo.BackColor = System.Drawing.Color.Transparent; + this.lblRoomNo.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblRoomNo.ForeColor = System.Drawing.Color.Red; + this.lblRoomNo.Location = new System.Drawing.Point(23, 31); + this.lblRoomNo.Name = "lblRoomNo"; + this.lblRoomNo.Size = new System.Drawing.Size(63, 17); + this.lblRoomNo.TabIndex = 8; + this.lblRoomNo.Text = "RoomNo"; + this.lblRoomNo.Click += new System.EventHandler(this.lblRoomNo_Click); + // + // ucRoomList + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.SystemColors.MenuHighlight; + this.BackgroundImage = global::SYS.FormUI.Properties.Resources.可住状态; + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.ContextMenuStrip = this.cmsMain; + this.Controls.Add(this.lblCustoNo); + this.Controls.Add(this.lblRoomType); + this.Controls.Add(this.lblRoomNo); + this.DoubleBuffered = true; + this.Name = "ucRoomList"; + this.Size = new System.Drawing.Size(95, 79); + this.Load += new System.EventHandler(this.ucRoomList_Load); + this.SizeChanged += new System.EventHandler(this.ucRoomList_SizeChanged); + this.Click += new System.EventHandler(this.ucRoomList_Click); + this.DoubleClick += new System.EventHandler(this.ucRoomList_DoubleClick); + this.MouseEnter += new System.EventHandler(this.ucRoomList_MouseEnter); + this.MouseLeave += new System.EventHandler(this.ucRoomList_MouseLeave); + this.cmsMain.ResumeLayout(false); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.ContextMenuStrip cmsMain; + private System.Windows.Forms.ToolStripMenuItem tsmiCheckIn; + private System.Windows.Forms.ToolStripMenuItem tsmiCheckOut; + private System.Windows.Forms.ToolStripMenuItem tsmiSelectUserInfo; + private System.Windows.Forms.ToolStripMenuItem tsmiChangeState; + private System.Windows.Forms.ToolStripMenuItem tsmiChangeRoom; + private System.Windows.Forms.ToolStripMenuItem tsmiReserRoom; + public System.Windows.Forms.Label lblCustoNo; + public System.Windows.Forms.Label lblRoomType; + public System.Windows.Forms.Label lblRoomNo; + } +} diff --git a/SYS.FormUI/AppUserControls/ucRoomList.cs b/SYS.FormUI/AppUserControls/ucRoomList.cs new file mode 100644 index 0000000000000000000000000000000000000000..7cf6a0df787973aabd896516a3cd4a0b1821d49d --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucRoomList.cs @@ -0,0 +1,433 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Drawing.Drawing2D; +using System.Runtime.InteropServices; +using System.Windows.Forms; +using SYS.Core; +using SYS.FormUI.Properties; +using SYS.Application; + +namespace SYS.FormUI +{ + public partial class ucRoomList : UserControl + { + FrmRoomManager frm = null; + + + + public ucRoomList() + { + InitializeComponent(); + this.BorderStyle = BorderStyle.None; + //traninfo = LoadRoomInfo(co_RoomNo, co_CustoNo, co_RoomPosition, co_CheckTime, co_RoomState); + //string Roomno, string Custono, string Roompo, string Checktime, string Roomstate + } + + #region 房态图圆角代码 + public GraphicsPath GetRoundRectPath(RectangleF rect, float radius) + { + return GetRoundRectPath(rect.X, rect.Y, rect.Width, rect.Height, radius); + } + public GraphicsPath GetRoundRectPath(float X, float Y, float width, float height, float radius) + { + GraphicsPath path = new GraphicsPath(); + path.AddLine(X + radius, Y, (X + width) - (radius * 2f), Y); + path.AddArc((X + width) - (radius * 2f), Y, radius * 2f, radius * 2f, 270f, 100f); + path.AddLine((float)(X + width), (float)(Y + radius), (float)(X + width), (float)((Y + height) - (radius * 2f))); + path.AddArc((float)((X + width) - (radius * 2f)), (float)((Y + height) - (radius * 2f)), (float)(radius * 2f), (float)(radius * 2f), 0f, 100f); + path.AddLine((float)((X + width) - (radius * 2f)), (float)(Y + height), (float)(X + radius), (float)(Y + height)); + path.AddArc(X, (Y + height) - (radius * 2f), radius * 2f, radius * 2f, 100f, 100f); + path.AddLine(X, (Y + height) - (radius * 2f), X, Y + radius); + path.AddArc(X, Y, radius * 2f, radius * 2f, 180f, 100f); + path.CloseFigure(); + return path; + } + + //窗体圆角代码开始 + public void SetWindowRegion() + { + System.Drawing.Drawing2D.GraphicsPath FormPath; + FormPath = new System.Drawing.Drawing2D.GraphicsPath(); + Rectangle rect = new Rectangle(0, 22, this.Width, this.Height - 22); + //this.Left-10,this.Top-10,this.Width-10,this.Height-10); + FormPath = GetRoundedRectPath(rect, 30); + this.Region = new Region(FormPath); + } + private GraphicsPath GetRoundedRectPath(Rectangle rect, int radius) + { + int diameter = radius; + Rectangle arcRect = new Rectangle(rect.Location, new Size(diameter, diameter)); + GraphicsPath path = new GraphicsPath(); + // 左上角 + path.AddArc(arcRect, 180, 90); + // 右上角 + arcRect.X = rect.Right - diameter; + path.AddArc(arcRect, 270, 90); + // 右下角 + arcRect.Y = rect.Bottom - diameter; + path.AddArc(arcRect, 0, 90); + // 左下角 + arcRect.X = rect.Left; + path.AddArc(arcRect, 90, 90); + path.CloseFigure(); + return path; + } + protected override void OnResize(System.EventArgs e) + { + this.Region = null; + SetWindowRegion(); + } + #endregion + + private const uint WS_EX_LAYERED = 0x80000; + private const int WS_EX_TRANSPARENT = 0x20; + private const int GWL_STYLE = (-16); + private const int GWL_EXSTYLE = (-20); + [DllImport("user32", EntryPoint = "SetWindowLong")] + private static extern uint SetWindowLong( + IntPtr hwnd, + int nIndex, + uint dwNewLong + ); + [DllImport("user32", EntryPoint = "GetWindowLong")] + private static extern uint GetWindowLong( + IntPtr hwnd, + int nIndex + ); + /// + /// 使窗口有鼠标穿透功能 + /// + public void CanPenetrate() + { + uint intExTemp = GetWindowLong(this.Handle, GWL_EXSTYLE); + uint oldGWLEx = SetWindowLong(this.Handle, GWL_EXSTYLE, WS_EX_TRANSPARENT | WS_EX_LAYERED); + } + + + #region 存放房间信息类 + public static string rm_RoomNo; + public static string rm_CustoNo; + public static string rm_RoomType; + public static string rm_RoomMoney; + public static string rm_CheckTime; + public static int rm_RoomStateId; + public static string co_RoomNo; + public static string co_CustoNo; + public static string co_CheckTime; + public static string co_RoomPosition; + public static string co_RoomState; + public static string co_CustoName; + public static string co_CustoType; + public static string co_PersonNum; + #endregion + + #region 存放用户信息类 + public static string us_CustoNo; + public static string us_RoomNo; + public static string us_CustoName; + public static string us_CustoBirthday; + public static string us_CustoSex; + public static string us_CustoTel; + public static int us_CustoPassportType; + public static string us_CustoAddress; + public static int us_CustoType; + public static string us_CustoID; + #endregion + + #region 实例化房态图的房间信息 + public string romTypeName; + public Room romCustoInfo = new Room(); + public Custo romRoomInfo = new Custo(); + #endregion + + #region 鼠标进入房态图可见范围内事件方法 + private void ucRoomList_MouseEnter(object sender, EventArgs e) + { + //lblState.ForeColor = Color.Red; + + + } + #endregion + + #region 鼠标点击房态图传值到类 + private void ucRoomList_Click(object sender, EventArgs e) + { + //frm.CmpInfo(romCustoInfo, romRoomInfo); + co_RoomNo = romCustoInfo.RoomNo; + co_CustoNo = romCustoInfo.CustoNo; + romTypeName = romCustoInfo.RoomName; + co_CheckTime = Convert.ToDateTime(romCustoInfo.CheckTime).ToString(); + co_RoomPosition = romCustoInfo.RoomPosition; + co_RoomState = romCustoInfo.RoomState; + } + #endregion + + #region 房态图加载事件方法 + private void ucRoomList_Load(object sender, EventArgs e) + { + foreach (Control label in this.Controls) + { + if (label.GetType().ToString() == "System.Windows.Forms.Label") + { + label.Font = UI_FontUtil.roomControlFont; + } + } + this.CanPenetrate(); + this.Region = new Region(GetRoundRectPath(new RectangleF(0, 0, this.Width, this.Height), 8f)); + //lblCustoNo.Text = romCustoInfo.CustoNo; + //lblRoomNo.Text = romCustoInfo.RoomNo; + //lblRoomType.Text = romCustoInfo.RoomName; + //co_CheckTime = romCustoInfo.CheckTime.ToString(); + + us_CustoNo = romRoomInfo.CustoNo; + us_CustoName = romRoomInfo.CustoName; + us_CustoSex = romRoomInfo.CustoSex == 1 ? "男" : "女"; + us_CustoTel = romRoomInfo.CustoTel; + us_CustoID = romRoomInfo.CustoID; + us_CustoBirthday = Convert.ToDateTime(romRoomInfo.CustoBirth).ToString(); + us_CustoPassportType = romRoomInfo.PassportType; + us_CustoType = romRoomInfo.CustoType; + us_CustoAddress = romRoomInfo.CustoAdress; + switch (romCustoInfo.RoomStateId) + { + case 0: + BackgroundImage = Resources.可住状态; + break; + case 1: + BackgroundImage = Resources.已住状态; + break; + case 2: + BackgroundImage = Resources.维修状态; + break; + case 3: + BackgroundImage = Resources.脏房状态; + break; + case 4: + BackgroundImage = Resources.预约状态; + break; + } + + } + #endregion + + #region 鼠标离开房态图可见范围事件方法 + private void ucRoomList_MouseLeave(object sender, EventArgs e) + { + //lblState.ForeColor = Color.Blue; + } + #endregion + Room r = null; + #region 当右键菜单打开时事件方法 + private void cmsMain_Opening(object sender, CancelEventArgs e) + { + foreach (Control label in cmsMain.Controls) + { + label.Font = UI_FontUtil.roomControlFont; + } + r = new RoomService().SelectRoomByRoomNo(lblRoomNo.Text); + if (lblCustoNo.Text != "") + { + tsmiCheckIn.Enabled = false; + tsmiCheckOut.Enabled = true; + tsmiSelectUserInfo.Enabled = true; + tsmiChangeState.Enabled = false; + tsmiChangeRoom.Enabled = true; + tsmiReserRoom.Enabled = false; + } + else if (r.RoomStateId == 3 || r.RoomStateId == 2) + { + tsmiCheckIn.Enabled = false; + tsmiCheckOut.Enabled = false; + tsmiSelectUserInfo.Enabled = false; + tsmiChangeState.Enabled = true; + tsmiChangeRoom.Enabled = false; + tsmiReserRoom.Enabled = false; + } + else if (r.RoomStateId == 4) + { + tsmiCheckIn.Enabled = true; + tsmiCheckOut.Enabled = false; + tsmiSelectUserInfo.Enabled = false; + tsmiChangeState.Enabled = true; + tsmiChangeRoom.Enabled = false; + tsmiReserRoom.Enabled = false; + } + else if (lblCustoNo.Text == "") + { + tsmiCheckIn.Enabled = true; + tsmiCheckOut.Enabled = false; + tsmiSelectUserInfo.Enabled = false; + tsmiChangeState.Enabled = true; + tsmiChangeRoom.Enabled = false; + tsmiReserRoom.Enabled = true; + } + + + } + #endregion + + #region 入住房间事件方法 + private void tsmiCheckIn_Click(object sender, EventArgs e) + { + if (r.RoomStateId == 4) + { + rm_CustoNo = lblCustoNo.Text; + rm_RoomNo = lblRoomNo.Text; + rm_RoomType = lblRoomType.Text; + rm_RoomMoney = Convert.ToDecimal(romCustoInfo.RoomMoney).ToString(); + rm_RoomStateId = 4; + DialogResult dr = MessageBox.Show("欢迎入住,请先注册客户信息!", "友情提示", MessageBoxButtons.YesNo, MessageBoxIcon.Information); + if (dr == DialogResult.Yes) + { + FrmReserList frm = new FrmReserList(); + frm.ShowDialog(); + } + else + { + MessageBox.Show("无法完成入住操作!"); + } + //FrmCheckIn frm = new FrmCheckIn(); + //frm.Show(); + } + else + { + rm_CustoNo = lblCustoNo.Text; + rm_RoomNo = lblRoomNo.Text; + rm_RoomType = lblRoomType.Text; + rm_RoomMoney = Convert.ToDecimal(romCustoInfo.RoomMoney).ToString(); + FrmCheckIn frm = new FrmCheckIn(); + frm.Show(); + } + + + + } + #endregion + + #region 退房事件方法 + private void tsmiCheckOut_Click(object sender, EventArgs e) + { + rm_CustoNo = lblCustoNo.Text; + rm_RoomNo = lblRoomNo.Text; + rm_RoomType = lblRoomType.Text; + //rm_CheckTime = co_CheckTime; + FrmCheckOutForm frm = new FrmCheckOutForm(); + frm.Show(); + } + #endregion + + #region 双击进入入住/退房事件方法 + private void ucRoomList_DoubleClick(object sender, EventArgs e) + { + + if (lblCustoNo.Text == "") + { + Room r = new RoomService().SelectRoomByRoomNo(lblRoomNo.Text); + if (r.RoomStateId == 0) + { + rm_RoomNo = lblRoomNo.Text; + FrmCheckIn frm = new FrmCheckIn(); + frm.Show(); + } + else + { + return; + } + + } + else + { + rm_CustoNo = lblCustoNo.Text; + rm_RoomNo = lblRoomNo.Text; + rm_RoomType = lblRoomType.Text; + FrmCheckOutForm frm = new FrmCheckOutForm(); + frm.Show(); + } + } + #endregion + + private void tsmiSelectUserInfo_Click(object sender, EventArgs e) + { + rm_CustoNo = lblCustoNo.Text; + FrmSelectCustoInfo frm = new FrmSelectCustoInfo(); + frm.Show(); + } + + #region 修改房间状态 + private void tsmiChangeState_Click(object sender, EventArgs e) + { + rm_RoomStateId = Convert.ToInt32(new RoomService().SelectRoomStateIdByRoomNo(lblRoomNo.Text)); + rm_RoomNo = lblRoomNo.Text; + FrmRoomStateManager frsm = new FrmRoomStateManager(); + frsm.ShowDialog(); + } + #endregion + + public static string RoomNo; + public static string CustoNo; + public static string RoomState; + private void tsmiChangeRoom_Click(object sender, EventArgs e) + { + if (MessageBox.Show("确定要进行转房吗?", "来自小T的提醒", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes) + { + RoomNo = lblRoomNo.Text; + CustoNo = lblCustoNo.Text; + RoomState = lblRoomType.Text; + FrmChangeRoom frm = new FrmChangeRoom(); + frm.Show(); + } + + } + + private void tsmiReserRoom_Click(object sender, EventArgs e) + { + FrmReserManager frm = new FrmReserManager(); + + frm.Show(); + + } + + private void lblRoomType_Click(object sender, EventArgs e) + { + //frm.CmpInfo(romCustoInfo, romRoomInfo); + co_RoomNo = romCustoInfo.RoomNo; + co_CustoNo = romCustoInfo.CustoNo; + co_CheckTime = Convert.ToDateTime(romCustoInfo.CheckTime).ToString("yyyy年MM月dd日"); + co_RoomPosition = romCustoInfo.RoomPosition; + co_RoomState = romCustoInfo.RoomState; + } + + private void lblRoomNo_Click(object sender, EventArgs e) + { + //frm.CmpInfo(romCustoInfo, romRoomInfo); + co_RoomNo = romCustoInfo.RoomNo; + co_CustoNo = romCustoInfo.CustoNo; + co_CheckTime = Convert.ToDateTime(romCustoInfo.CheckTime).ToString("yyyy年MM月dd日"); + co_RoomPosition = romCustoInfo.RoomPosition; + co_RoomState = romCustoInfo.RoomState; + } + + private void lblCustoNo_Click(object sender, EventArgs e) + { + //frm.CmpInfo(romCustoInfo, romRoomInfo); + co_RoomNo = romCustoInfo.RoomNo; + co_CustoNo = romCustoInfo.CustoNo; + co_CheckTime = Convert.ToDateTime(romCustoInfo.CheckTime).ToString("yyyy年MM月dd日"); + co_RoomPosition = romCustoInfo.RoomPosition; + co_RoomState = romCustoInfo.RoomState; + } + + private void ucRoomList_SizeChanged(object sender, EventArgs e) + { + //lblRoomType.Width = 61; + //lblRoomType.Height = 17; + //lblCustoNo.Width = 61; + //lblCustoNo.Height = 17; + //lblRoomNo.Width = 61; + //lblRoomNo.Height = 17; + this.Width = 125; + this.Height = 85; + } + } +} diff --git a/SYS.FormUI/AppUserControls/ucRoomList.resx b/SYS.FormUI/AppUserControls/ucRoomList.resx new file mode 100644 index 0000000000000000000000000000000000000000..8f045a9607aed98f2a898e674ecc520741fff722 --- /dev/null +++ b/SYS.FormUI/AppUserControls/ucRoomList.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + \ No newline at end of file diff --git a/SYS.FormUI/FodyWeavers.xml b/SYS.FormUI/FodyWeavers.xml index 2057a0de8032ec61329863420b90b6fe2d29ddd7..a5dcf04fd053e7f79196cd48f67499146c8110ca 100644 --- a/SYS.FormUI/FodyWeavers.xml +++ b/SYS.FormUI/FodyWeavers.xml @@ -1,4 +1,4 @@  - + \ No newline at end of file diff --git a/SYS.FormUI/Font/UI-FontUtil.cs b/SYS.FormUI/Font/UI-FontUtil.cs new file mode 100644 index 0000000000000000000000000000000000000000..bf8fa6073a8afb79e6fb79481757a524be5a97e7 --- /dev/null +++ b/SYS.FormUI/Font/UI-FontUtil.cs @@ -0,0 +1,52 @@ +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Drawing.Text; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Resources; +using System.Runtime.Serialization; +using System.Runtime.Serialization.Formatters.Binary; +using System.Text; +using System.Threading.Tasks; + +namespace SYS.FormUI +{ + public static class UI_FontUtil + { + + private static PrivateFontCollection pfc = new PrivateFontCollection(); + private static ResourceManager rm = new ResourceManager("SYS.FormUI.Resource", Assembly.GetExecutingAssembly()); + private static Assembly assembly = Assembly.GetExecutingAssembly(); + /// + /// 子控件字体 + /// + public static Font childControlFont = null; + public static Font mainFont = null; + public static Font scorllingFont = null; + public static Font controlFont = null; + public static Font roomControlFont = null; + static UI_FontUtil() + { + Stream stream = assembly.GetManifestResourceStream("SYS.FormUI.Resources.Alibaba-PuHuiTi-Regular.ttf"); + byte[] fontdata = new byte[stream.Length]; + stream.Read(fontdata, 0, (int)stream.Length); + stream.Close(); + unsafe + { + fixed (byte* pFontData = fontdata) + { + pfc.AddMemoryFont((System.IntPtr)pFontData, fontdata.Length); + } + } + childControlFont = new Font(pfc.Families[0], 11); + mainFont = new Font(pfc.Families[0], 11); + scorllingFont = new Font(pfc.Families[0], 12); + controlFont = new Font(pfc.Families[0], 15); + roomControlFont = new Font(pfc.Families[0], 10); + } + + + } +} diff --git a/SYS.FormUI/FrmAboutUs.resx b/SYS.FormUI/FrmAboutUs.resx index 51a06f59eb014830084b8e054b33149081afd566..61b75664a96498616bc462b8add6b6fd7f3858f1 100644 --- a/SYS.FormUI/FrmAboutUs.resx +++ b/SYS.FormUI/FrmAboutUs.resx @@ -120,6 +120,7 @@ +<<<<<<< HEAD:SYS.FormUI/FrmAboutUs.resx Qk3OBwAAAAAAAJ4BAAAoAAAARwAAABYAAAABAAgAAAAAAAAAAAASCwAAEgsAAFoAAABaAAAAAAAA//// ////+O7///bq///w3f//6s///+jL///mx///5MP//+K////gu///3bb//9uy///Zrv//1aX//9Kh/5V6 WP///Pn//9Cc/7STa///05///9Sf///Vo///16n//92z///Xov//2ab//9in/5yGaP//2qv/nYdq///c @@ -156,6 +157,48 @@ EBAQEBAQEBAQEBAQEBAlVlkA +======= + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAC6 + BwAAAk1TRnQBSQFMAwEBAAFIAQABSAEAARABAAEQAQAE/wEJAQAI/wFCAU0BNgEEBgABNgEEAgABKAMA + AUADAAEQAwABAQEAAQgGAAEEGAABgAIAAYADAAKAAQABgAMAAYABAAGAAQACgAIAA8ABAAHAAdwBwAEA + AfABygGmAQABMwUAATMBAAEzAQABMwEAAjMCAAMWAQADHAEAAyIBAAMpAQADVQEAA00BAANCAQADOQEA + AYABfAH/AQACUAH/AQABkwEAAdYBAAH/AewBzAEAAcYB1gHvAQAB1gLnAQABkAGpAa0CAAH/ATMDAAFm + AwABmQMAAcwCAAEzAwACMwIAATMBZgIAATMBmQIAATMBzAIAATMB/wIAAWYDAAFmATMCAAJmAgABZgGZ + AgABZgHMAgABZgH/AgABmQMAAZkBMwIAAZkBZgIAApkCAAGZAcwCAAGZAf8CAAHMAwABzAEzAgABzAFm + AgABzAGZAgACzAIAAcwB/wIAAf8BZgIAAf8BmQIAAf8BzAEAATMB/wIAAf8BAAEzAQABMwEAAWYBAAEz + AQABmQEAATMBAAHMAQABMwEAAf8BAAH/ATMCAAMzAQACMwFmAQACMwGZAQACMwHMAQACMwH/AQABMwFm + AgABMwFmATMBAAEzAmYBAAEzAWYBmQEAATMBZgHMAQABMwFmAf8BAAEzAZkCAAEzAZkBMwEAATMBmQFm + AQABMwKZAQABMwGZAcwBAAEzAZkB/wEAATMBzAIAATMBzAEzAQABMwHMAWYBAAEzAcwBmQEAATMCzAEA + ATMBzAH/AQABMwH/ATMBAAEzAf8BZgEAATMB/wGZAQABMwH/AcwBAAEzAv8BAAFmAwABZgEAATMBAAFm + AQABZgEAAWYBAAGZAQABZgEAAcwBAAFmAQAB/wEAAWYBMwIAAWYCMwEAAWYBMwFmAQABZgEzAZkBAAFm + ATMBzAEAAWYBMwH/AQACZgIAAmYBMwEAA2YBAAJmAZkBAAJmAcwBAAFmAZkCAAFmAZkBMwEAAWYBmQFm + AQABZgKZAQABZgGZAcwBAAFmAZkB/wEAAWYBzAIAAWYBzAEzAQABZgHMAZkBAAFmAswBAAFmAcwB/wEA + AWYB/wIAAWYB/wEzAQABZgH/AZkBAAFmAf8BzAEAAcwBAAH/AQAB/wEAAcwBAAKZAgABmQEzAZkBAAGZ + AQABmQEAAZkBAAHMAQABmQMAAZkCMwEAAZkBAAFmAQABmQEzAcwBAAGZAQAB/wEAAZkBZgIAAZkBZgEz + AQABmQEzAWYBAAGZAWYBmQEAAZkBZgHMAQABmQEzAf8BAAKZATMBAAKZAWYBAAOZAQACmQHMAQACmQH/ + AQABmQHMAgABmQHMATMBAAFmAcwBZgEAAZkBzAGZAQABmQLMAQABmQHMAf8BAAGZAf8CAAGZAf8BMwEA + AZkBzAFmAQABmQH/AZkBAAGZAf8BzAEAAZkC/wEAAcwDAAGZAQABMwEAAcwBAAFmAQABzAEAAZkBAAHM + AQABzAEAAZkBMwIAAcwCMwEAAcwBMwFmAQABzAEzAZkBAAHMATMBzAEAAcwBMwH/AQABzAFmAgABzAFm + ATMBAAGZAmYBAAHMAWYBmQEAAcwBZgHMAQABmQFmAf8BAAHMAZkCAAHMAZkBMwEAAcwBmQFmAQABzAKZ + AQABzAGZAcwBAAHMAZkB/wEAAswCAALMATMBAALMAWYBAALMAZkBAAPMAQACzAH/AQABzAH/AgABzAH/ + ATMBAAGZAf8BZgEAAcwB/wGZAQABzAH/AcwBAAHMAv8BAAHMAQABMwEAAf8BAAFmAQAB/wEAAZkBAAHM + ATMCAAH/AjMBAAH/ATMBZgEAAf8BMwGZAQAB/wEzAcwBAAH/ATMB/wEAAf8BZgIAAf8BZgEzAQABzAJm + AQAB/wFmAZkBAAH/AWYBzAEAAcwBZgH/AQAB/wGZAgAB/wGZATMBAAH/AZkBZgEAAf8CmQEAAf8BmQHM + AQAB/wGZAf8BAAH/AcwCAAH/AcwBMwEAAf8BzAFmAQAB/wHMAZkBAAH/AswBAAH/AcwB/wEAAv8BMwEA + AcwB/wFmAQAC/wGZAQAC/wHMAQACZgH/AQABZgH/AWYBAAFmAv8BAAH/AmYBAAH/AWYB/wEAAv8BZgEA + ASEBAAGlAQADXwEAA3cBAAOGAQADlgEAA8sBAAOyAQAD1wEAA90BAAPjAQAD6gEAA/EBAAP4AQAB8AH7 + Af8BAAGkAqABAAOAAwAB/wIAAf8DAAL/AQAB/wMAAf8BAAH/AQAC/wIAA/9CAAH0Df8yAAH/BgAB9AUA + Af8yAAH/BgAB9AUAAf8yAAH/BgAB9AUAAf8yAAH/BAAF9AMAAf8yAAH/AwAB/wX0AwAB/zIAAf8FAAH/ + AvQEAAH/MgAB/wQAAf8CAAL0AwAB/zIAAf8MAAH/MgAN/wH0MwAM9DQADPQ2AAj/AfSzAAFCAU0BPgcA + AT4DAAEoAwABQAMAARADAAEBAQABAQUAAYAXAAP/AQAC/wYAAYABAQYAAb8BfQYAAb8BfQYAAb8BfQYA + AbwBHQYAAbgBHQYAAb4BPQYAAb0BnQYAAb8B/QYAAYABAQYAAcABAwYAAcABAwYAAfABBwYAAv8GAAL/ + BgAL + + + +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmBackgroundSystem.resx AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA diff --git a/SYS.FormUI/FrmAddRoom.cs b/SYS.FormUI/FrmAddRoom.cs index 8fc952cbb934c907e58fb77ab75d3fea2f5d645a..1604e688650ee23b235fb27b47cbe6ba1fdffd82 100644 --- a/SYS.FormUI/FrmAddRoom.cs +++ b/SYS.FormUI/FrmAddRoom.cs @@ -59,10 +59,10 @@ namespace SYS.FormUI MessageBox.Show("添加房间成功!"); dgvRoomList.DataSource = RoomService.SelectCanUseRoomAll(); #region 获取添加操作日志所需的信息 - Operation o = new Operation(); + OperationLog o = new OperationLog(); o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); - o.Operationlog = AdminInfo.adminType + AdminInfo.admingroup + "于" + DateTime.Now + "新增了房间,房间号为:" + txtRoomNo.Text + ",房间类型为:" + cboRoomType.Text; - o.OperationAccount = AdminInfo.adminType + AdminInfo.admingroup; + o.Operationlog = AdminInfo.Account + AdminInfo.Name + "于" + DateTime.Now + "新增了房间,房间号为:" + txtRoomNo.Text + ",房间类型为:" + cboRoomType.Text; + o.OperationAccount = AdminInfo.Account + AdminInfo.Name; #endregion OperationManager.InsertOperationLog(o); } diff --git a/SYS.FormUI/FrmAddWorker.cs b/SYS.FormUI/FrmAddWorker.cs index 847b09918babf1623e76fbf6086f6e9c6065daba..487c04ce88947eb740bb0ea8aefff5caba97399f 100644 --- a/SYS.FormUI/FrmAddWorker.cs +++ b/SYS.FormUI/FrmAddWorker.cs @@ -130,12 +130,12 @@ namespace SYS.FormUI Worker worker = new Worker { WorkerId = WorkerNo.Text.Trim(), - WorkerSex = cboSex.Text, + WorkerSex = cboSex.Text == "女" ? 0 : 1, WorkerTel = WorkerTel.Text, WorkerAddress = txtAddress.Text, WorkerPwd = Pwd.Text, WorkerFace = cboWorkerFace.Text, - WorkerEduction = cboEducation.Text + WorkerEducation = cboEducation.Text }; int i = WorkerManager.UpdateWorker(worker); if (i > 0) @@ -168,8 +168,8 @@ namespace SYS.FormUI { WorkerId = WorkerNo.Text.Trim(), WorkerName = WorkerName.Text.Trim(), - WorkerBirth = dtpBirthday.Value, - WorkerSex = cboSex.Text, + WorkerBirthday = dtpBirthday.Value, + WorkerSex = cboSex.SelectedIndex, WorkerTel = NewTel, WorkerClub = cboClub.Text, WorkerAddress = txtAddress.Text, @@ -178,7 +178,7 @@ namespace SYS.FormUI WorkerPwd = Pwd.Text, WorkerTime = dtpTime.Value, WorkerFace = cboWorkerFace.Text, - WorkerEduction = cboEducation.Text + WorkerEducation = cboEducation.Text }; int n = WorkerManager.AddWorker(worker); #endregion @@ -199,13 +199,22 @@ namespace SYS.FormUI if (n > 0 && j > 0) { MessageBox.Show("员工信息/履历添加成功!该员工登录密码为:" + Pwd.Text + ",请提醒员工妥善保管!"); - FrmTopChange.Reload(); + FrmWorkerManager.Reload(); #region 获取添加操作日志所需的信息 - Operation o = new Operation(); + OperationLog o = new OperationLog(); o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); +<<<<<<< HEAD:SYS.FormUI/FrmAddWorker.cs +<<<<<<< HEAD:SYS.FormUI/FrmAddWorker.cs o.Operationlog = AdminInfo.admingroup + AdminInfo.adminType + "于" + DateTime.Now + "进行了添加员工操作,员工编号为:" + WorkerNo.Text + "!"; o.OperationAccount = AdminInfo.admingroup + AdminInfo.adminType; OperationManager.InsertOperationLog(o); +======= +======= +>>>>>>> master:SYS.FormUI/AppFunction/FrmAddWorker.cs + o.Operationlog = AdminInfo.Account + AdminInfo.Name + "于" + DateTime.Now + "进行了添加员工操作,员工编号为:" + WorkerNo.Text + "!"; + o.OperationAccount = AdminInfo.Account + AdminInfo.Name; + OperationlogManager.InsertOperationLog(o); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmAddWorker.cs #endregion } #endregion diff --git a/SYS.FormUI/FrmAdminMain.cs b/SYS.FormUI/FrmAdminMain.cs index 840c5df401a9ce0761844936a14a4ed8122a677a..66d35af1de494417edbc9a42b35ee74c09c3bcfc 100644 --- a/SYS.FormUI/FrmAdminMain.cs +++ b/SYS.FormUI/FrmAdminMain.cs @@ -1,4 +1,4 @@ -using Sunny.UI; +using SYS.Manager; using System; using System.Collections.Generic; using System.ComponentModel; @@ -11,16 +11,17 @@ using System.Windows.Forms; namespace SYS.FormUI { - public partial class FrmAdminMain : UIForm + public partial class FrmNotice : Form { - public FrmAdminMain() + public FrmNotice() { InitializeComponent(); } - private void FrmAdminMain_Load(object sender, EventArgs e) + private void FrmNotice_Load(object sender, EventArgs e) { - + dgvNoticeList.AutoGenerateColumns = false; + dgvNoticeList.DataSource = NoticeManager.SelectNoticeAll(); } } } diff --git a/SYS.FormUI/FrmBackAdmin.cs b/SYS.FormUI/FrmBackAdmin.cs index 7f71615b4b83db10eaeee5f96b075f2e64d8eadf..a790c7eb9d06555616814d95968294cd11b18de6 100644 --- a/SYS.FormUI/FrmBackAdmin.cs +++ b/SYS.FormUI/FrmBackAdmin.cs @@ -43,24 +43,13 @@ namespace SYS.FormUI private void llbUpLoadLog_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - pnlLook.Controls.Clear(); - FrmUpLoad frm1 = new FrmUpLoad(); - frm1.TopLevel = false; - pnlLook.Controls.Add(frm1); - frm1.Show(); - pnlWorkerPage.Visible = false; + } private void llbWorkerManager_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - pnlLook.Controls.Clear(); - FrmTopChange frm1 = new FrmTopChange(); - frm1.TopLevel = false; - pnlLook.Controls.Add(frm1); - frm1.Show(); - wk_AdminGroup = AdminInfo.admingroup; - pnlWorkerPage.Visible = false; + } private void llbAddRoom_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) @@ -102,10 +91,10 @@ namespace SYS.FormUI frm1.Show(); pnlCustoPage.Visible = false; - label5.Text = AdminInfo.admingroup + AdminInfo.adminType; + label5.Text = AdminInfo.Name; //label8.Text = "【"+AdminInfo.admingroup+"】"; - if (AdminInfo.adminType == "总经理") + if (AdminInfo.Type == "总经理") { btnCash.Enabled = true; btnWTI.Enabled = true; @@ -116,7 +105,7 @@ namespace SYS.FormUI btnWorker.Enabled = true; btnWorkerLog.Enabled = true; } - else if (AdminInfo.adminType == "财务经理") + else if (AdminInfo.Type == "财务经理") { btnCash.Enabled = true; btnWTI.Enabled = true; @@ -127,7 +116,7 @@ namespace SYS.FormUI btnWorker.Enabled = true; btnWorkerLog.Enabled = false; } - else if (AdminInfo.adminType == "酒店经理") + else if (AdminInfo.Type == "酒店经理") { btnCash.Enabled = true; btnWTI.Enabled = true; @@ -430,19 +419,19 @@ namespace SYS.FormUI private void cmsMain_Opening(object sender, CancelEventArgs e) { - if (AdminInfo.admingroup == "总经理") + if (AdminInfo.Type == "总经理") { tsmiBackUpDatabase.Enabled = true; tsmiRestoreDatabase.Enabled = true; tsmiWorkerManager.Enabled = true; } - else if (AdminInfo.admingroup == "经理") + else if (AdminInfo.Type == "经理") { tsmiBackUpDatabase.Enabled = false; tsmiRestoreDatabase.Enabled = false; tsmiWorkerManager.Enabled = true; } - if (AdminInfo.admingroup == "监管小组") + if (AdminInfo.Type == "监管小组") { tsmiBackUpDatabase.Enabled = false; tsmiRestoreDatabase.Enabled = false; diff --git a/SYS.FormUI/FrmCash.cs b/SYS.FormUI/FrmCash.cs index 2a0dce226c6669d85ccceaba2887ea3de3be3244..8a5a80b233e2e1439ae077464a2aae560e4fa103 100644 --- a/SYS.FormUI/FrmCash.cs +++ b/SYS.FormUI/FrmCash.cs @@ -43,10 +43,10 @@ namespace SYS.FormUI { CmpSetDgv(); dgvCashList.AutoGenerateColumns = false; - dgvCashList.DataSource = CashManager.SelectCashInfoAll(); + dgvCashList.DataSource = new CashManager().SelectCashInfoAll(); Random random = new Random(); txtCashNo.Text = "CN" + random.Next(0, 9).ToString() + random.Next(0, 9).ToString() + random.Next(0, 9).ToString() + random.Next(0, 9).ToString(); - if (AdminInfo.adminType != "财务经理" && AdminInfo.adminType != "总经理") + if (AdminInfo.Type != "财务经理" || AdminInfo.Type != "总经理") { btnOK.Enabled = false; btnOK.Text = "权限不足"; @@ -74,12 +74,12 @@ namespace SYS.FormUI { MessageBox.Show("录入成功!"); dgvCashList.AutoGenerateColumns = false; - dgvCashList.DataSource = CashManager.SelectCashInfoAll(); + dgvCashList.DataSource = new CashManager().SelectCashInfoAll(); #region 获取添加操作日志所需的信息 - Operation o = new Operation(); + OperationLog o = new OperationLog(); o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); - o.Operationlog = AdminInfo.adminType + AdminInfo.admingroup + "于" + DateTime.Now + "进行资产录入,资产编号为:" + txtCashNo.Text.Trim(); - o.OperationAccount = AdminInfo.adminType + AdminInfo.admingroup; + o.Operationlog = AdminInfo.Account + AdminInfo.Name + "于" + DateTime.Now + "进行资产录入,资产编号为:" + txtCashNo.Text.Trim(); + o.OperationAccount = AdminInfo.Account + AdminInfo.Name; #endregion OperationManager.InsertOperationLog(o); foreach (Control Ctrol in gbInfoWrite.Controls) diff --git a/SYS.FormUI/FrmCashList.Designer.cs b/SYS.FormUI/FrmCashList.Designer.cs index 1b9a3f8b9bb790514fb8e625011ce8eadda4ea7d..b9c0baae6f10330a9d5b15aa766be26fbfa99142 100644 --- a/SYS.FormUI/FrmCashList.Designer.cs +++ b/SYS.FormUI/FrmCashList.Designer.cs @@ -1,6 +1,6 @@ namespace SYS.FormUI { - partial class FrmCashList + partial class FrmCheckList { /// /// Required designer variable. diff --git a/SYS.FormUI/FrmCashList.cs b/SYS.FormUI/FrmCashList.cs index e530b630d4c4daf190d53875a25cfaed43515ab5..565f6ef3c1d04957f24e7080ecded0f6402c9852 100644 --- a/SYS.FormUI/FrmCashList.cs +++ b/SYS.FormUI/FrmCashList.cs @@ -4,9 +4,9 @@ using SYS.Manager; namespace SYS.FormUI { - public partial class FrmCashList : Form + public partial class FrmCheckList : Form { - public FrmCashList() + public FrmCheckList() { InitializeComponent(); } diff --git a/SYS.FormUI/FrmChangePosition.Designer.cs b/SYS.FormUI/FrmChangePosition.Designer.cs index fe4fb2ccb3f228a74d4344ee7246f11649a3530b..a52ecf863c91f7316a94a8cb577bb7572825c61a 100644 --- a/SYS.FormUI/FrmChangePosition.Designer.cs +++ b/SYS.FormUI/FrmChangePosition.Designer.cs @@ -46,66 +46,66 @@ // label1 // this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label1.Location = new System.Drawing.Point(15, 17); + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(15, 51); this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(56, 17); + this.label1.Size = new System.Drawing.Size(55, 15); this.label1.TabIndex = 0; this.label1.Text = "员工编号"; // // label2 // this.label2.AutoSize = true; - this.label2.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label2.Location = new System.Drawing.Point(15, 54); + this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(15, 95); this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(56, 17); + this.label2.Size = new System.Drawing.Size(55, 15); this.label2.TabIndex = 1; this.label2.Text = "员工姓名"; // // label3 // this.label3.AutoSize = true; - this.label3.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label3.Location = new System.Drawing.Point(15, 91); + this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(15, 132); this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(56, 17); + this.label3.Size = new System.Drawing.Size(55, 15); this.label3.TabIndex = 2; this.label3.Text = "原属部门"; // // label4 // this.label4.AutoSize = true; - this.label4.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label4.Location = new System.Drawing.Point(15, 128); + this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.Location = new System.Drawing.Point(15, 169); this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(56, 17); + this.label4.Size = new System.Drawing.Size(55, 15); this.label4.TabIndex = 3; this.label4.Text = "员工职位"; // // txtworkerId // - this.txtworkerId.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtworkerId.Location = new System.Drawing.Point(84, 12); + this.txtworkerId.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtworkerId.Location = new System.Drawing.Point(84, 51); this.txtworkerId.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.txtworkerId.Name = "txtworkerId"; this.txtworkerId.ReadOnly = true; - this.txtworkerId.Size = new System.Drawing.Size(116, 24); + this.txtworkerId.Size = new System.Drawing.Size(116, 21); this.txtworkerId.TabIndex = 4; // // txtworkerName // - this.txtworkerName.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtworkerName.Location = new System.Drawing.Point(84, 47); + this.txtworkerName.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtworkerName.Location = new System.Drawing.Point(84, 88); this.txtworkerName.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.txtworkerName.Name = "txtworkerName"; - this.txtworkerName.Size = new System.Drawing.Size(116, 24); + this.txtworkerName.Size = new System.Drawing.Size(116, 21); this.txtworkerName.TabIndex = 5; // // cboClub // this.cboClub.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.cboClub.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.cboClub.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.cboClub.FormattingEnabled = true; this.cboClub.Items.AddRange(new object[] { "人事部", @@ -114,57 +114,57 @@ "商品部", "后勤部", "经理部"}); - this.cboClub.Location = new System.Drawing.Point(84, 83); + this.cboClub.Location = new System.Drawing.Point(84, 124); this.cboClub.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.cboClub.Name = "cboClub"; - this.cboClub.Size = new System.Drawing.Size(116, 25); + this.cboClub.Size = new System.Drawing.Size(116, 23); this.cboClub.TabIndex = 6; // // cboPosition // this.cboPosition.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.cboPosition.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.cboPosition.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.cboPosition.FormattingEnabled = true; this.cboPosition.Items.AddRange(new object[] { "职员", "经理", "总经理"}); - this.cboPosition.Location = new System.Drawing.Point(84, 121); + this.cboPosition.Location = new System.Drawing.Point(84, 162); this.cboPosition.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.cboPosition.Name = "cboPosition"; - this.cboPosition.Size = new System.Drawing.Size(116, 25); + this.cboPosition.Size = new System.Drawing.Size(116, 23); this.cboPosition.TabIndex = 7; // // cboNewPosition // this.cboNewPosition.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.cboNewPosition.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.cboNewPosition.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.cboNewPosition.FormattingEnabled = true; this.cboNewPosition.Items.AddRange(new object[] { "职员", "经理", "总经理"}); - this.cboNewPosition.Location = new System.Drawing.Point(279, 122); + this.cboNewPosition.Location = new System.Drawing.Point(279, 163); this.cboNewPosition.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.cboNewPosition.Name = "cboNewPosition"; - this.cboNewPosition.Size = new System.Drawing.Size(116, 25); + this.cboNewPosition.Size = new System.Drawing.Size(116, 23); this.cboNewPosition.TabIndex = 9; this.cboNewPosition.TextChanged += new System.EventHandler(this.cboNewPosition_TextChanged); // // label5 // this.label5.AutoSize = true; - this.label5.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label5.Location = new System.Drawing.Point(210, 129); + this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label5.Location = new System.Drawing.Point(210, 170); this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(56, 17); + this.label5.Size = new System.Drawing.Size(55, 15); this.label5.TabIndex = 8; this.label5.Text = "调任职位"; // // cboNewClub // this.cboNewClub.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.cboNewClub.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.cboNewClub.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.cboNewClub.FormattingEnabled = true; this.cboNewClub.Items.AddRange(new object[] { "人事部", @@ -173,27 +173,27 @@ "商品部", "后勤部", "经理部"}); - this.cboNewClub.Location = new System.Drawing.Point(279, 85); + this.cboNewClub.Location = new System.Drawing.Point(279, 126); this.cboNewClub.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.cboNewClub.Name = "cboNewClub"; - this.cboNewClub.Size = new System.Drawing.Size(116, 25); + this.cboNewClub.Size = new System.Drawing.Size(116, 23); this.cboNewClub.TabIndex = 11; this.cboNewClub.TextChanged += new System.EventHandler(this.cboNewClub_TextChanged); // // label6 // this.label6.AutoSize = true; - this.label6.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label6.Location = new System.Drawing.Point(210, 92); + this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label6.Location = new System.Drawing.Point(210, 133); this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(56, 17); + this.label6.Size = new System.Drawing.Size(55, 15); this.label6.TabIndex = 10; this.label6.Text = "调任部门"; // // btnOK // - this.btnOK.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnOK.Location = new System.Drawing.Point(419, 107); + this.btnOK.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnOK.Location = new System.Drawing.Point(419, 148); this.btnOK.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(78, 40); @@ -204,9 +204,9 @@ // // FrmChangePosition // - this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F); + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(513, 159); + this.ClientSize = new System.Drawing.Size(554, 231); this.Controls.Add(this.btnOK); this.Controls.Add(this.cboNewClub); this.Controls.Add(this.label6); @@ -220,13 +220,12 @@ this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); - this.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; + this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FrmChangePosition"; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.ShowIcon = true; this.Text = "将XXX任命为XXX"; this.Load += new System.EventHandler(this.FrmChangePosition_Load); this.ResumeLayout(false); diff --git a/SYS.FormUI/FrmChangePosition.cs b/SYS.FormUI/FrmChangePosition.cs index 2cf67316abed7aaa48230526bbd81bcac518a1a6..03a718da6f62f37ca765ef7e8a31cd24f97d68c0 100644 --- a/SYS.FormUI/FrmChangePosition.cs +++ b/SYS.FormUI/FrmChangePosition.cs @@ -3,10 +3,11 @@ using MySql.Data.MySqlClient; using System.Windows.Forms; using SYS.Manager; using SYS.Core; +using Sunny.UI; namespace SYS.FormUI { - public partial class FrmChangePosition : Form + public partial class FrmChangePosition : UIForm { public static string wk_WorkerNo; public static string wk_WorkerPosition; @@ -45,10 +46,10 @@ namespace SYS.FormUI { MessageBox.Show("任命已生效!"); #region 获取添加操作日志所需的信息 - Operation o = new Operation(); + OperationLog o = new OperationLog(); o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); - o.Operationlog = AdminInfo.admingroup + AdminInfo.adminType + "于" + DateTime.Now + "将员工:" + txtworkerName.Text + "晋升为" + cboNewClub.Text + cboNewPosition.Text; - o.OperationAccount = AdminInfo.admingroup + AdminInfo.adminType; + o.Operationlog = AdminInfo.Account + AdminInfo.Name + "于" + DateTime.Now + "将员工:" + txtworkerName.Text + "晋升为" + cboNewClub.Text + cboNewPosition.Text; + o.OperationAccount = AdminInfo.Account + AdminInfo.Name; #endregion OperationManager.InsertOperationLog(o); } diff --git a/SYS.FormUI/FrmChangeWorker.cs b/SYS.FormUI/FrmChangeWorker.cs index f2cea6f69ac9812e3a363054ee8b4d7a80da2ce8..f5482c03ddee20f526ffabd2ee85768b6f24194b 100644 --- a/SYS.FormUI/FrmChangeWorker.cs +++ b/SYS.FormUI/FrmChangeWorker.cs @@ -28,7 +28,7 @@ namespace SYS.FormUI private void FrmChangeWorker_Load(object sender, EventArgs e) { - if(AdminInfo.adminType != "总经理") + if(AdminInfo.Type != "总经理") { btnUpWorker.Enabled = false; btnUpWorker.Text = "权限不足"; @@ -38,20 +38,20 @@ namespace SYS.FormUI btnGoodBad.Text = "权限不足"; } - wk_WorkerNo = FrmTopChange.wk_WorkerNo; - wk_WorkerName = FrmTopChange.wk_WorkerName; - wk_WorkerBirthday = FrmTopChange.wk_WorkerBirthday; - wk_WorkerSex = FrmTopChange.wk_WorkerSex; - wk_WorkerTel = FrmTopChange.wk_WorkerTel; - wk_WorkerClub = FrmTopChange.wk_WorkerClub; - wk_WorkerAddress = FrmTopChange.wk_WorkerAddress; - wk_WorkerPosition = FrmTopChange.wk_WorkerPosition; - wk_WorkerID = FrmTopChange.wk_WorkerID; - wk_WorkerPwd = FrmTopChange.wk_WorkerPwd; - wk_WorkerTime = FrmTopChange.wk_WorkerTime; - wk_WorkerFace = FrmTopChange.wk_WorkerFace; - wk_WorkerEducation = FrmTopChange.wk_WorkerEducation; - lblWorker.Text = FrmTopChange.wk_WorkerClub + FrmTopChange.wk_WorkerPosition + ":" + FrmTopChange.wk_WorkerName + "的操作界面"; + wk_WorkerNo = FrmWorkerManager.wk_WorkerNo; + wk_WorkerName = FrmWorkerManager.wk_WorkerName; + wk_WorkerBirthday = FrmWorkerManager.wk_WorkerBirthday; + wk_WorkerSex = FrmWorkerManager.wk_WorkerSex; + wk_WorkerTel = FrmWorkerManager.wk_WorkerTel; + wk_WorkerClub = FrmWorkerManager.wk_WorkerClub; + wk_WorkerAddress = FrmWorkerManager.wk_WorkerAddress; + wk_WorkerPosition = FrmWorkerManager.wk_WorkerPosition; + wk_WorkerID = FrmWorkerManager.wk_WorkerID; + wk_WorkerPwd = FrmWorkerManager.wk_WorkerPwd; + wk_WorkerTime = FrmWorkerManager.wk_WorkerTime; + wk_WorkerFace = FrmWorkerManager.wk_WorkerFace; + wk_WorkerEducation = FrmWorkerManager.wk_WorkerEducation; + lblWorker.Text = FrmWorkerManager.wk_WorkerClub + FrmWorkerManager.wk_WorkerPosition + ":" + FrmWorkerManager.wk_WorkerName + "的操作界面"; if (wk_WorkerClub == "餐饮部") { this.BackgroundImage = Resources.餐饮部界面; diff --git a/SYS.FormUI/FrmCheckIn.cs b/SYS.FormUI/FrmCheckIn.cs index f7819bd809e9a956be382629ec6e2c0606f7bd9e..3338f483654ecce6751da7ba63f643e104dc8155 100644 --- a/SYS.FormUI/FrmCheckIn.cs +++ b/SYS.FormUI/FrmCheckIn.cs @@ -3,7 +3,16 @@ using System.Collections.Generic; using System.Windows.Forms; using SYS.Manager; using SYS.Core; +<<<<<<< HEAD:SYS.FormUI/FrmCheckIn.cs using SYS.Application; +======= +using Sunny.UI; +using SYS.Application; +using System.Transactions; +<<<<<<< HEAD:SYS.FormUI/FrmCheckIn.cs +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmCheckIn.cs +======= +>>>>>>> master:SYS.FormUI/AppFunction/FrmCheckIn.cs namespace SYS.FormUI { @@ -19,15 +28,25 @@ namespace SYS.FormUI { txtRoomNo.Text = ucRoomList.rm_RoomNo; - Room r = RoomManager.SelectRoomByRoomNo(txtRoomNo.Text); - RoomType t = RoomTypeManager.SelectRoomTypeByRoomNo(txtRoomNo.Text); + Room r = new RoomService().SelectRoomByRoomNo(txtRoomNo.Text); + RoomType t = new RoomTypeService().SelectRoomTypeByRoomNo(txtRoomNo.Text); txtType.Text = t.RoomName; txtMoney.Text = r.RoomMoney.ToString(); txtRoomPosition.Text = r.RoomPosition; txtState.Text = r.RoomState; +<<<<<<< HEAD:SYS.FormUI/FrmCheckIn.cs +<<<<<<< HEAD:SYS.FormUI/FrmCheckIn.cs txtState.Text = RoomManager.SelectRoomStateNameByRoomNo(txtRoomNo.Text).ToString(); List ctos = CustoService.SelectCanUseCustoAll(); List roms = RoomManager.SelectCanUseRoomAll(); +======= + List ctos = new CustoService().SelectCustoAll(); + List roms = new RoomService().SelectCanUseRoomAll(); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmCheckIn.cs +======= + List ctos = new CustoService().SelectCustoAll(); + List roms = new RoomService().SelectCanUseRoomAll(); +>>>>>>> master:SYS.FormUI/AppFunction/FrmCheckIn.cs for (int i = 0; i < roms.Count; i++) { txtRoomNo.AutoCompleteCustomSource.Add(roms[i].RoomNo); @@ -48,29 +67,7 @@ namespace SYS.FormUI } #endregion - #region 房间编号输入框的值发生改变时的事件方法 - private void txtRoomNo_TextChanged(object sender, EventArgs e) - { - try - { - Room r = RoomManager.SelectRoomByRoomNo(txtRoomNo.Text); - RoomType t = RoomTypeManager.SelectRoomTypeByRoomNo(txtRoomNo.Text); - txtType.Text = t.RoomName; - txtMoney.Text = r.RoomMoney.ToString(); - txtRoomPosition.Text = r.RoomPosition; - txtState.Text = r.RoomState; - txtState.Text = RoomManager.SelectRoomStateNameByRoomNo(txtRoomNo.Text).ToString(); - } - catch - { - txtType.Text = ""; - txtMoney.Text = ""; - txtRoomPosition.Text = ""; - txtState.Text = ""; - txtState.Text = ""; - } - } - #endregion + #region 关闭窗口 private void btnClose_Click(object sender, EventArgs e) @@ -106,6 +103,8 @@ namespace SYS.FormUI { if (CheckInupt()) { +<<<<<<< HEAD:SYS.FormUI/FrmCheckIn.cs +<<<<<<< HEAD:SYS.FormUI/FrmCheckIn.cs if (CustoManager.SelectCustoByCustoNo(txtCustoNo.Text) != null) { @@ -133,8 +132,49 @@ namespace SYS.FormUI OperationManager.InsertOperationLog(o); } else +======= + if (new CustoService().SelectCardInfoByCustoNo(txtCustoNo.Text) != null) + { + using (TransactionScope scope = new TransactionScope()) +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmCheckIn.cs +======= + if (new CustoService().SelectCardInfoByCustoNo(txtCustoNo.Text) != null) + { + using (TransactionScope scope = new TransactionScope()) +>>>>>>> master:SYS.FormUI/AppFunction/FrmCheckIn.cs { - MessageBox.Show("登记入住失败!", "登记提示"); + Room r = new Room() + { + CheckTime = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")), + CustoNo = txtCustoNo.Text, + RoomStateId = 1, + RoomNo = txtRoomNo.Text, + datachg_usr = LoginInfo.WorkerNo, + datachg_date = DateTime.Now, + }; + + bool n = new RoomService().UpdateRoomInfo(r); + if (n == true) + { + MessageBox.Show("登记入住成功!", "登记提示"); + txtCustoNo.Text = ""; + FrmRoomManager.Reload(); + #region 获取添加操作日志所需的信息 + OperationLog o = new OperationLog(); + o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); + o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "帮助" + r.CustoNo + "进行了入住操作!"; + o.OperationAccount = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName; + o.datains_usr = LoginInfo.WorkerNo; + o.datains_date = DateTime.Now; + #endregion + new OperationlogService().InsertOperationLog(o); + scope.Complete(); + this.Close(); + } + else + { + MessageBox.Show("登记入住失败!", "登记提示"); + } } } else @@ -156,10 +196,10 @@ namespace SYS.FormUI { try { - Custo c = CustoManager.SelectCustoByCustoNo(txtCustoNo.Text); + Custo c = new CustoService().SelectCardInfoByCustoNo(txtCustoNo.Text); txtCustoName.Text = c.CustoName; txtCustoTel.Text = c.CustoTel; - txtCustoType.Text = CustoTypeManager.SelectTypeNameByCustoTypeId(c.CustoType); + txtCustoType.Text = c.typeName; } catch { diff --git a/SYS.FormUI/FrmCheckOutForm.cs b/SYS.FormUI/FrmCheckOutForm.cs index be77db5dfe0dee20b8c75abb080e44982f3f2f44..959c29e06d75ecf93e5601c998224b6d4dec8fdd 100644 --- a/SYS.FormUI/FrmCheckOutForm.cs +++ b/SYS.FormUI/FrmCheckOutForm.cs @@ -4,6 +4,15 @@ using System.Windows.Forms; using SYS.Manager; using SYS.Core; using SYS.FormUI.Properties; +<<<<<<< HEAD:SYS.FormUI/FrmCheckOutForm.cs +======= +using System.Collections.Generic; +using Sunny.UI; +using SYS.Application; +<<<<<<< HEAD:SYS.FormUI/FrmCheckOutForm.cs +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmCheckOutForm.cs +======= +>>>>>>> master:SYS.FormUI/AppFunction/FrmCheckOutForm.cs namespace SYS.FormUI { @@ -85,6 +94,41 @@ namespace SYS.FormUI #region 窗体加载事件 private void FrmCheckOutForm_Load(object sender, EventArgs e) { +<<<<<<< HEAD:SYS.FormUI/FrmCheckOutForm.cs +======= + foreach (Control label in this.Controls) + { + if (label.GetType().ToString() == "Sunny.UI.UITabControlMenu") + { + label.Font = UI_FontUtil.SetChildControlsFont(); + } + } + #region 加载客户类型信息 + List lstSourceGrid = CustoTypeManager.SelectCustoTypesAll(); + this.cboCustoType.DataSource = lstSourceGrid; + this.cboCustoType.DisplayMember = "TypeName"; + this.cboCustoType.ValueMember = "UserType"; + this.cboCustoType.SelectedIndex = 0; + this.cboCustoType.ReadOnly = true; + #endregion + + #region 加载证件类型信息 + List passPorts = CustoTypeManager.SelectPassPortTypeAll(); + this.cboPassportType.DataSource = passPorts; + this.cboPassportType.DisplayMember = "PassportName"; + this.cboPassportType.ValueMember = "PassportId"; + this.cboPassportType.SelectedIndex = 0; + #endregion + + #region 加载性别信息 + List listSexType = new BaseService().SelectSexTypeAll(); + this.cboCustoSex.DataSource = listSexType; + this.cboCustoSex.DisplayMember = "sexName"; + this.cboCustoSex.ValueMember = "sexId"; + this.cboCustoSex.SelectedIndex = 0; + #endregion + +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmCheckOutForm.cs double sum = 0; txtCustoNo.Text = ucRoomList.rm_CustoNo; CustoNo.Text = ucRoomList.rm_CustoNo; @@ -103,27 +147,27 @@ namespace SYS.FormUI } if (rs == "BD") { - sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(RoomManager.DayByRoomNo(txtRoomNo.Text).ToString()) * 300)); + sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString()) * 300)); } if (rs == "BS") { - sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(RoomManager.DayByRoomNo(txtRoomNo.Text).ToString()) * 425)); + sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString()) * 425)); } if (rs == "HD") { - sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(RoomManager.DayByRoomNo(txtRoomNo.Text).ToString()) * 625)); + sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString()) * 625)); } if (rs == "HS") { - sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(RoomManager.DayByRoomNo(txtRoomNo.Text).ToString()) * 660)); + sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString()) * 660)); } if (rs == "QL") { - sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(RoomManager.DayByRoomNo(txtRoomNo.Text).ToString()) * 845)); + sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString()) * 845)); } if (rs == "ZT") { - sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(RoomManager.DayByRoomNo(txtRoomNo.Text).ToString()) * 1080)); + sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(new RoomService().DayByRoomNo(txtRoomNo.Text).ToString()) * 1080)); } lblDay.Text = Convert.ToString(Convert.ToInt32(RoomManager.DayByRoomNo(txtRoomNo.Text).ToString())); w = new Wti() @@ -277,9 +321,9 @@ namespace SYS.FormUI } MessageBox.Show("结算成功!", "系统提示"); FrmRoomManager.Reload(); - + #region 获取添加操作日志所需的信息 - Operation o = new Operation(); + OperationLog o = new OperationLog(); o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "帮助" + txtCustoNo.Text + "进行了退房结算操作!"; o.OperationAccount = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName; @@ -303,7 +347,7 @@ namespace SYS.FormUI MessageBox.Show("结算成功!", "系统提示"); FrmRoomManager.Reload(); #region 获取添加操作日志所需的信息 - Operation o = new Operation(); + OperationLog o = new OperationLog(); o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "帮助" + txtCustoNo.Text + "进行了退房结算操作!"; o.OperationAccount = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName; diff --git a/SYS.FormUI/FrmCustoManager.cs b/SYS.FormUI/FrmCustoManager.cs index af39b53aef91ed88347034a32df5ca6a07263e36..ed081ab6cdf6b35d25dd7dc27edbcc1a4d0913b8 100644 --- a/SYS.FormUI/FrmCustoManager.cs +++ b/SYS.FormUI/FrmCustoManager.cs @@ -142,7 +142,7 @@ namespace SYS.FormUI worksheet.Columns.EntireColumn.AutoFit();//列宽自适应 MessageBox.Show(fileName + "信息导出成功", "来自T仔提示", MessageBoxButtons.OK); #region 获取添加操作日志所需的信息 - Operation o = new Operation(); + OperationLog o = new OperationLog(); o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerName + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "导出了" + "后台用户信息!"; o.OperationAccount = LoginInfo.WorkerClub + LoginInfo.WorkerName + LoginInfo.WorkerPosition; diff --git a/SYS.FormUI/FrmCustomerManager.Designer.cs b/SYS.FormUI/FrmCustomerManager.Designer.cs index 192b1f0321d06181e8072864ddda36198a75a1b8..154de139dc15606f8e4d13b0d3c4035c9d293675 100644 --- a/SYS.FormUI/FrmCustomerManager.Designer.cs +++ b/SYS.FormUI/FrmCustomerManager.Designer.cs @@ -33,10 +33,12 @@ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); this.gbCustoInfo = new System.Windows.Forms.GroupBox(); - this.txtCardID = new Sunny.UI.UITextBox(); + this.txtCustoNo = new Sunny.UI.UITextBox(); this.label2 = new System.Windows.Forms.Label(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); this.dgvCustomerList = new Sunny.UI.UIDataGridView(); + this.btnSerach = new Sunny.UI.UIButton(); + this.btnAddCusto = new Sunny.UI.UIButton(); this.CustoNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.CustoName = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.CustoSex = new System.Windows.Forms.DataGridViewTextBoxColumn(); @@ -49,15 +51,18 @@ this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.btnSerach = new Sunny.UI.UIButton(); - this.btnAddCusto = new Sunny.UI.UIButton(); + this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.gbCustoInfo.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgvCustomerList)).BeginInit(); this.SuspendLayout(); // // gbCustoInfo // - this.gbCustoInfo.Controls.Add(this.txtCardID); + this.gbCustoInfo.Controls.Add(this.txtCustoNo); this.gbCustoInfo.Controls.Add(this.label2); this.gbCustoInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.gbCustoInfo.Location = new System.Drawing.Point(12, 383); @@ -67,21 +72,21 @@ this.gbCustoInfo.TabStop = false; this.gbCustoInfo.Text = "条件搜索栏"; // - // txtCardID - // - this.txtCardID.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCardID.FillColor = System.Drawing.Color.White; - this.txtCardID.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCardID.Location = new System.Drawing.Point(327, 16); - this.txtCardID.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCardID.Maximum = 2147483647D; - this.txtCardID.Minimum = -2147483648D; - this.txtCardID.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCardID.Name = "txtCardID"; - this.txtCardID.Padding = new System.Windows.Forms.Padding(5); - this.txtCardID.Radius = 20; - this.txtCardID.Size = new System.Drawing.Size(204, 33); - this.txtCardID.TabIndex = 88; + // txtCustoNo + // + this.txtCustoNo.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtCustoNo.FillColor = System.Drawing.Color.White; + this.txtCustoNo.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtCustoNo.Location = new System.Drawing.Point(327, 16); + this.txtCustoNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtCustoNo.Maximum = 2147483647D; + this.txtCustoNo.Minimum = -2147483648D; + this.txtCustoNo.MinimumSize = new System.Drawing.Size(1, 1); + this.txtCustoNo.Name = "txtCustoNo"; + this.txtCustoNo.Padding = new System.Windows.Forms.Padding(5); + this.txtCustoNo.Radius = 20; + this.txtCustoNo.Size = new System.Drawing.Size(204, 33); + this.txtCustoNo.TabIndex = 88; // // label2 // @@ -91,7 +96,7 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(88, 25); this.label2.TabIndex = 87; - this.label2.Text = "证件号码"; + this.label2.Text = "客户编号"; // // toolTip1 // @@ -133,7 +138,12 @@ this.Column1, this.Column2, this.Column3, - this.Column4}); + this.Column4, + this.Column5, + this.Column6, + this.Column7, + this.Column8, + this.Column9}); this.dgvCustomerList.EnableHeadersVisualStyles = false; this.dgvCustomerList.Font = new System.Drawing.Font("微软雅黑", 12F); this.dgvCustomerList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); @@ -151,6 +161,32 @@ this.dgvCustomerList.Style = Sunny.UI.UIStyle.Custom; this.dgvCustomerList.TabIndex = 83; // + // btnSerach + // + this.btnSerach.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnSerach.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnSerach.Location = new System.Drawing.Point(815, 426); + this.btnSerach.MinimumSize = new System.Drawing.Size(1, 1); + this.btnSerach.Name = "btnSerach"; + this.btnSerach.Radius = 30; + this.btnSerach.Size = new System.Drawing.Size(103, 49); + this.btnSerach.TabIndex = 84; + this.btnSerach.Text = "搜 索"; + this.btnSerach.Click += new System.EventHandler(this.btnSerach_BtnClick); + // + // btnAddCusto + // + this.btnAddCusto.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnAddCusto.Font = new System.Drawing.Font("微软雅黑", 12F); + this.btnAddCusto.Location = new System.Drawing.Point(924, 426); + this.btnAddCusto.MinimumSize = new System.Drawing.Size(1, 1); + this.btnAddCusto.Name = "btnAddCusto"; + this.btnAddCusto.Radius = 30; + this.btnAddCusto.Size = new System.Drawing.Size(103, 49); + this.btnAddCusto.TabIndex = 85; + this.btnAddCusto.Text = "添加客户"; + this.btnAddCusto.Click += new System.EventHandler(this.btnAddCusto_BtnClick); + // // CustoNo // this.CustoNo.DataPropertyName = "CustoNo"; @@ -239,8 +275,10 @@ this.Column4.ReadOnly = true; this.Column4.Visible = false; // - // btnSerach + // Column5 // +<<<<<<< HEAD:SYS.FormUI/FrmCustomerManager.Designer.cs +<<<<<<< HEAD:SYS.FormUI/FrmCustomerManager.Designer.cs this.btnSerach.Cursor = System.Windows.Forms.Cursors.Hand; this.btnSerach.Font = new System.Drawing.Font("微软雅黑", 12F); this.btnSerach.Location = new System.Drawing.Point(781, 389); @@ -251,9 +289,20 @@ this.btnSerach.TabIndex = 84; this.btnSerach.Text = "搜 索"; this.btnSerach.Click += new System.EventHandler(this.btnSerach_BtnClick); - // - // btnAddCusto - // +======= +======= +>>>>>>> master:SYS.FormUI/AppFunction/FrmCustomerManager.Designer.cs + this.Column5.DataPropertyName = "delete_mk"; + this.Column5.HeaderText = "Column5"; + this.Column5.Name = "Column5"; + this.Column5.ReadOnly = true; + this.Column5.Visible = false; +<<<<<<< HEAD:SYS.FormUI/FrmCustomerManager.Designer.cs +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmCustomerManager.Designer.cs + // + // Column6 + // +<<<<<<< HEAD:SYS.FormUI/FrmCustomerManager.Designer.cs this.btnAddCusto.Cursor = System.Windows.Forms.Cursors.Hand; this.btnAddCusto.Font = new System.Drawing.Font("微软雅黑", 12F); this.btnAddCusto.Location = new System.Drawing.Point(890, 389); @@ -264,6 +313,45 @@ this.btnAddCusto.TabIndex = 85; this.btnAddCusto.Text = "添加客户"; this.btnAddCusto.Click += new System.EventHandler(this.btnAddCusto_BtnClick); +======= +======= + // + // Column6 + // +>>>>>>> master:SYS.FormUI/AppFunction/FrmCustomerManager.Designer.cs + this.Column6.DataPropertyName = "datains_usr"; + this.Column6.HeaderText = "Column6"; + this.Column6.Name = "Column6"; + this.Column6.ReadOnly = true; + this.Column6.Visible = false; + // + // Column7 + // + this.Column7.DataPropertyName = "datains_date"; + this.Column7.HeaderText = "Column7"; + this.Column7.Name = "Column7"; + this.Column7.ReadOnly = true; + this.Column7.Visible = false; + // + // Column8 + // + this.Column8.DataPropertyName = "datachg_usr"; + this.Column8.HeaderText = "Column8"; + this.Column8.Name = "Column8"; + this.Column8.ReadOnly = true; + this.Column8.Visible = false; + // + // Column9 + // + this.Column9.DataPropertyName = "datachg_date"; + this.Column9.HeaderText = "Column9"; + this.Column9.Name = "Column9"; + this.Column9.ReadOnly = true; + this.Column9.Visible = false; +<<<<<<< HEAD:SYS.FormUI/FrmCustomerManager.Designer.cs +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmCustomerManager.Designer.cs +======= +>>>>>>> master:SYS.FormUI/AppFunction/FrmCustomerManager.Designer.cs // // FrmCustomerManager // @@ -292,6 +380,9 @@ private System.Windows.Forms.ToolTip toolTip1; private System.Windows.Forms.Label label2; private Sunny.UI.UIDataGridView dgvCustomerList; + private Sunny.UI.UIButton btnSerach; + private Sunny.UI.UITextBox txtCustoNo; + private Sunny.UI.UIButton btnAddCusto; private System.Windows.Forms.DataGridViewTextBoxColumn CustoNo; private System.Windows.Forms.DataGridViewTextBoxColumn CustoName; private System.Windows.Forms.DataGridViewTextBoxColumn CustoSex; @@ -304,8 +395,10 @@ private System.Windows.Forms.DataGridViewTextBoxColumn Column2; private System.Windows.Forms.DataGridViewTextBoxColumn Column3; private System.Windows.Forms.DataGridViewTextBoxColumn Column4; - private Sunny.UI.UIButton btnSerach; - private Sunny.UI.UITextBox txtCardID; - private Sunny.UI.UIButton btnAddCusto; + private System.Windows.Forms.DataGridViewTextBoxColumn Column5; + private System.Windows.Forms.DataGridViewTextBoxColumn Column6; + private System.Windows.Forms.DataGridViewTextBoxColumn Column7; + private System.Windows.Forms.DataGridViewTextBoxColumn Column8; + private System.Windows.Forms.DataGridViewTextBoxColumn Column9; } } \ No newline at end of file diff --git a/SYS.FormUI/FrmCustomerManager.cs b/SYS.FormUI/FrmCustomerManager.cs index d803303df7a403f5a593cdf5f4b0dd82291610b4..a3bd7e06ab47cf95df567ab0577907206a95b95a 100644 --- a/SYS.FormUI/FrmCustomerManager.cs +++ b/SYS.FormUI/FrmCustomerManager.cs @@ -214,7 +214,7 @@ namespace SYS.FormUI worksheet.Columns.EntireColumn.AutoFit();//列宽自适应 MessageBox.Show(fileName + "信息导出成功", "来自T仔提示", MessageBoxButtons.OK); #region 获取添加操作日志所需的信息 - Operation o = new Operation(); + OperationLog o = new OperationLog(); o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerName + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "导出了" + "用户信息!"; o.OperationAccount = LoginInfo.WorkerClub + LoginInfo.WorkerName + LoginInfo.WorkerPosition; @@ -361,13 +361,21 @@ namespace SYS.FormUI private void btnSerach_BtnClick(object sender, EventArgs e) { - if (txtCardID.Text != "") + if (txtCustoNo.Text != "") { +<<<<<<< HEAD:SYS.FormUI/FrmCustomerManager.cs +<<<<<<< HEAD:SYS.FormUI/FrmCustomerManager.cs dgvCustomerList.DataSource = CustoService.SelectCustoInfoByCardId(txtCardID.Text); +======= + dgvCustomerList.DataSource = CustoManager.SelectCustoInfoByCardId(txtCustoNo.Text); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmCustomerManager.cs +======= + dgvCustomerList.DataSource = CustoManager.SelectCustoInfoByCardId(txtCustoNo.Text); +>>>>>>> master:SYS.FormUI/AppFunction/FrmCustomerManager.cs } else { - MessageBox.Show("请输入证件号码!"); + MessageBox.Show("请输入客户编号!"); } } diff --git a/SYS.FormUI/FrmCustomerManager.resx b/SYS.FormUI/FrmCustomerManager.resx index 237dea14e4bba2caffe90ead7c684fa467a2fa38..03dcc7e485272e2b4af240d004364ea2f0ac9183 100644 --- a/SYS.FormUI/FrmCustomerManager.resx +++ b/SYS.FormUI/FrmCustomerManager.resx @@ -156,4 +156,19 @@ True + + True + + + True + + + True + + + True + + + True + \ No newline at end of file diff --git a/SYS.FormUI/FrmGoodOrBad.cs b/SYS.FormUI/FrmGoodOrBad.cs index 5eef4401969b80fc3a1d74551698c5ddf593ec8e..d9823d6db0c687daa6011356c04716cc85f4a16a 100644 --- a/SYS.FormUI/FrmGoodOrBad.cs +++ b/SYS.FormUI/FrmGoodOrBad.cs @@ -51,9 +51,9 @@ namespace SYS.FormUI private void FrmGoodOrBad_Load(object sender, EventArgs e) { CmpSetDgv(); - lblWorkerNo.Text = FrmTopChange.wk_WorkerNo; - lblName.Text = FrmTopChange.wk_WorkerName; - lblDate.Text = FrmTopChange.wk_WorkerTime.Substring(0,9); + lblWorkerNo.Text = FrmWorkerManager.wk_WorkerNo; + lblName.Text = FrmWorkerManager.wk_WorkerName; + lblDate.Text = FrmWorkerManager.wk_WorkerTime.Substring(0,9); DgvGoodBadList.AutoGenerateColumns = false; DgvGoodBadList.DataSource = WorkerGoodBadManager.SelectAllGoodBadByWorkNo(lblWorkerNo.Text); CboType.SelectedIndex = 0; @@ -70,17 +70,17 @@ namespace SYS.FormUI goodBad.WorkNo = lblWorkerNo.Text; goodBad.GBType = CboType.SelectedIndex; goodBad.GBInfo = RtbGBInfo.Text; - goodBad.GBOperation = AdminInfo.admingroup; + goodBad.GBOperation = AdminInfo.Account; goodBad.GBTime = DtpDate.Value; int n = WorkerGoodBadManager.AddGoodBad(goodBad); if (n > 0) { MessageBox.Show("新增成功!"); #region 获取添加操作日志所需的信息 - Operation o = new Operation(); + OperationLog o = new OperationLog(); o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); - o.Operationlog = AdminInfo.admingroup + AdminInfo.adminType + "于" + DateTime.Now + "对员工:" + lblName.Text + "进行了奖罚情况录入!"; - o.OperationAccount = AdminInfo.admingroup + AdminInfo.adminType; + o.Operationlog = AdminInfo.Account + AdminInfo.Name + "于" + DateTime.Now + "对员工:" + lblName.Text + "进行了奖罚情况录入!"; + o.OperationAccount = AdminInfo.Account + AdminInfo.Name; #endregion OperationManager.InsertOperationLog(o); DgvGoodBadList.DataSource = WorkerGoodBadManager.SelectAllGoodBadByWorkNo(lblWorkerNo.Text); diff --git a/SYS.FormUI/FrmInputs.cs b/SYS.FormUI/FrmInputs.cs index 11e6545eb39396dd39d5c767b21c4eba69a9a1e2..8046c46b065a7c07fa91568a5144f82a09d48bd8 100644 --- a/SYS.FormUI/FrmInputs.cs +++ b/SYS.FormUI/FrmInputs.cs @@ -53,7 +53,15 @@ namespace SYS.FormUI #endregion #region 加载性别信息 +<<<<<<< HEAD:SYS.FormUI/FrmInputs.cs +<<<<<<< HEAD:SYS.FormUI/FrmInputs.cs List listSexType = CustoTypeManager.SelectSexTypeAll(); +======= + List listSexType = new BaseService().SelectSexTypeAll(); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmInputs.cs +======= + List listSexType = new BaseService().SelectSexTypeAll(); +>>>>>>> master:SYS.FormUI/AppFunction/FrmInputs.cs this.cbSex.DataSource = listSexType; this.cbSex.DisplayMember = "sexName"; this.cbSex.ValueMember = "sexId"; @@ -96,7 +104,7 @@ namespace SYS.FormUI MessageBox.Show("添加成功"); #region 获取添加操作日志所需的信息 - Operation o = new Operation(); + OperationLog o = new OperationLog(); o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); o.Operationlog = "编号:"+ LoginInfo.WorkerNo + "【"+FrmMain.wk_WorkerName + "】" + "于" + DateTime.Now + "插入了一条数据!"; o.OperationAccount = LoginInfo.WorkerNo; diff --git a/SYS.FormUI/FrmLogin.cs b/SYS.FormUI/FrmLogin.cs index f9e9a28c6a41abf752cc771dfde1a2bca896988d..2a941576d16a3235f3e2227ce242a74f7cc62007 100644 --- a/SYS.FormUI/FrmLogin.cs +++ b/SYS.FormUI/FrmLogin.cs @@ -7,6 +7,14 @@ using SYS.Core; using SYS.FormUI.Properties; using SYS.Application; using System.Collections.Generic; +<<<<<<< HEAD:SYS.FormUI/FrmLogin.cs +======= +using Sunny.UI; +using SYS.Application; +<<<<<<< HEAD:SYS.FormUI/FrmLogin.cs +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppInterface/FrmLogin.cs +======= +>>>>>>> master:SYS.FormUI/AppInterface/FrmLogin.cs namespace SYS.FormUI { @@ -109,10 +117,10 @@ namespace SYS.FormUI #region 判断版本号 private void CheckUpdate() { - string newversion = CheckInfoManager.CheckBaseVersion(); + var newversion = new ApplicationVersionUtil().CheckBaseVersion(); string version = System.Windows.Forms.Application.ProductVersion.ToString(); - if (version != newversion) + if (newversion.base_version != version) { MessageBox.Show("旧版已停止使用,请到github或gitee仓库更新最新发行版!", "系统提醒", MessageBoxButtons.OK, MessageBoxIcon.Information); System.Windows.Forms.Application.Exit(); @@ -169,10 +177,10 @@ namespace SYS.FormUI { string id = txtWorkerId.Text;//获取员工编号 string pwd = txtWorkerPwd.Text;//获取员工密码 - Worker w = WorkerManager.SelectWorkerInfoByWorkerId(id); + Worker w = new WorkerService().SelectWorkerInfoByWorkerId(id); if (w != null)//判断员工编号是否存在 { - w = WorkerManager.SelectWorkerInfoByWorkerIdAndWorkerPwd(id, pwd); + w = new WorkerService().SelectWorkerInfoByWorkerIdAndWorkerPwd(id, pwd); if (w != null) //判断员工密码是否正确 { LoginInfo.WorkerNo = w.WorkerId; @@ -184,12 +192,22 @@ namespace SYS.FormUI this.Hide();//隐藏登录窗体 frm.Show();//打开主窗体 #region 获取添加操作日志所需的信息 - Operation o = new Operation(); + OperationLog o = new OperationLog(); o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); o.Operationlog = txtWorkerId.Text + "于" + DateTime.Now + "登入了系统!"; o.OperationAccount = txtWorkerId.Text; + o.datains_usr = LoginInfo.WorkerNo; + o.datains_date = DateTime.Now; #endregion +<<<<<<< HEAD:SYS.FormUI/FrmLogin.cs +<<<<<<< HEAD:SYS.FormUI/FrmLogin.cs OperationManager.InsertOperationLog(o); +======= + new OperationlogService().InsertOperationLog(o); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppInterface/FrmLogin.cs +======= + new OperationlogService().InsertOperationLog(o); +>>>>>>> master:SYS.FormUI/AppInterface/FrmLogin.cs } else { @@ -204,8 +222,9 @@ namespace SYS.FormUI } } } - catch + catch(Exception ex) { + Console.WriteLine(ex); MessageBox.Show("请连接好数据库!", "温馨提示"); } } diff --git a/SYS.FormUI/FrmMain.Designer.cs b/SYS.FormUI/FrmMain.Designer.cs index b83538f4b141cf85e97e68edd6611d9ab02fd60e..1aad87206a537e2f150f266971d68361c400db96 100644 --- a/SYS.FormUI/FrmMain.Designer.cs +++ b/SYS.FormUI/FrmMain.Designer.cs @@ -259,7 +259,15 @@ this.pnlCheckInfo.Controls.Add(this.label2); this.pnlCheckInfo.Location = new System.Drawing.Point(295, 55); this.pnlCheckInfo.Name = "pnlCheckInfo"; +<<<<<<< HEAD:SYS.FormUI/FrmMain.Designer.cs +<<<<<<< HEAD:SYS.FormUI/FrmMain.Designer.cs this.pnlCheckInfo.Size = new System.Drawing.Size(95, 97); +======= + this.pnlCheckInfo.Size = new System.Drawing.Size(88, 73); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppMain/FrmMain.Designer.cs +======= + this.pnlCheckInfo.Size = new System.Drawing.Size(88, 73); +>>>>>>> master:SYS.FormUI/AppMain/FrmMain.Designer.cs this.pnlCheckInfo.TabIndex = 27; this.pnlCheckInfo.Visible = false; // @@ -267,7 +275,7 @@ // this.lblClose.AutoSize = true; this.lblClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.lblClose.Location = new System.Drawing.Point(73, 6); + this.lblClose.Location = new System.Drawing.Point(66, 5); this.lblClose.Name = "lblClose"; this.lblClose.Size = new System.Drawing.Size(16, 17); this.lblClose.TabIndex = 3; diff --git a/SYS.FormUI/FrmMain.cs b/SYS.FormUI/FrmMain.cs index d71776b744609dbb07fa2c0b543a01088dbb009e..5bc1cd3a38081d40e1e0a7d5268a817b14f3715d 100644 --- a/SYS.FormUI/FrmMain.cs +++ b/SYS.FormUI/FrmMain.cs @@ -9,6 +9,14 @@ using SYS.Manager; using SYS.Core; using SYS.FormUI.Properties; using Sunny.UI; +<<<<<<< HEAD:SYS.FormUI/FrmMain.cs +======= +using System.Management; +using SYS.Application; +<<<<<<< HEAD:SYS.FormUI/FrmMain.cs +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppMain/FrmMain.cs +======= +>>>>>>> master:SYS.FormUI/AppMain/FrmMain.cs namespace SYS.FormUI { @@ -186,6 +194,8 @@ namespace SYS.FormUI #region 窗体加载事件方法 private void FrmMain_Load(object sender, EventArgs e) { +<<<<<<< HEAD:SYS.FormUI/FrmMain.cs +<<<<<<< HEAD:SYS.FormUI/FrmMain.cs SetClassLong(this.Handle, GCL_STYLE, GetClassLong(this.Handle, GCL_STYLE) | CS_DropSHADOW); //API函数加载,实现窗体边框阴影效果 foreach (Control label in this.Controls) { @@ -194,6 +204,26 @@ namespace SYS.FormUI label.Font = UI_FontUtil.SetMainFont(); } } +======= +======= +>>>>>>> master:SYS.FormUI/AppMain/FrmMain.cs + //foreach (Control item in this.Controls) + //{ + // if (item.GetType().ToString() == "System.Windows.Forms.Label") + // { + // item.Font = UI_FontUtil.SetMainFont(); + // } + //} + + var type = GetCurrentChassisType(); + if (type == ChassisTypes.Laptop || type == ChassisTypes.Notebook) + { + iBattery.Visible = true; + } + + SetClassLong(this.Handle, GCL_STYLE, GetClassLong(this.Handle, GCL_STYLE) | CS_DropSHADOW); //API函数加载,实现窗体边框阴影效果 + +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppMain/FrmMain.cs DateTime tmCur = DateTime.Now; if (tmCur.Hour < 8 || tmCur.Hour > 18) @@ -211,7 +241,7 @@ namespace SYS.FormUI label3.Text = "下午好,"; label5.Text = LoginInfo.WorkerName; } - int n = Convert.ToInt32(WorkerCheckManager.SelectToDayCheckInfoByWorkerNo(LoginInfo.WorkerNo)); + int n = Convert.ToInt32(new WorkerCheckService().SelectToDayCheckInfoByWorkerNo(LoginInfo.WorkerNo)); if (n > 0) { linkLabel1.Text = "已打卡"; @@ -341,7 +371,7 @@ namespace SYS.FormUI FrmAdminEnter frm = new FrmAdminEnter(); frm.Show(); #region 获取添加操作日志所需的信息 - Operation o = new Operation(); + OperationLog o = new OperationLog(); o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); o.Operationlog = LoginInfo.WorkerNo + LoginInfo.WorkerName + "于" + DateTime.Now + "尝试或成功登入了后台系统!"; o.OperationAccount = LoginInfo.WorkerNo; @@ -448,14 +478,14 @@ namespace SYS.FormUI private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - int n = Convert.ToInt32(WorkerCheckManager.SelectToDayCheckInfoByWorkerNo(LoginInfo.WorkerNo)); + int n = Convert.ToInt32(new WorkerCheckService().SelectToDayCheckInfoByWorkerNo(LoginInfo.WorkerNo)); if (n > 0) { linkLabel1.Text = "已打卡"; linkLabel1.ForeColor = Color.Green; linkLabel1.LinkColor = Color.Green; pnlCheckInfo.Visible = true; - lblCheckDay.Text = Convert.ToString(WorkerCheckManager.SelectWorkerCheckDaySumByWorkerNo(LoginInfo.WorkerNo)); + lblCheckDay.Text = Convert.ToString(new WorkerCheckService().SelectWorkerCheckDaySumByWorkerNo(LoginInfo.WorkerNo)); } else { @@ -472,10 +502,10 @@ namespace SYS.FormUI CheckTime = DateTime.Parse(GetNetDateTime()) }; - int j = WorkerCheckManager.AddCheckInfo(workerCheck); - if (j > 0) + bool j = new WorkerCheckService().AddCheckInfo(workerCheck); + if (j == true) { - lblCheckDay.Text = Convert.ToString(WorkerCheckManager.SelectWorkerCheckDaySumByWorkerNo(LoginInfo.WorkerNo)); + lblCheckDay.Text = Convert.ToString(new WorkerCheckService().SelectWorkerCheckDaySumByWorkerNo(LoginInfo.WorkerNo)); MessageBox.Show("打卡成功!你已累计打卡" + lblCheckDay.Text + "天,再接再厉吧!", "打卡提醒", MessageBoxButtons.OK, MessageBoxIcon.Information); linkLabel1.Text = "已打卡"; linkLabel1.ForeColor = Color.Green; diff --git a/SYS.FormUI/FrmReserManager.cs b/SYS.FormUI/FrmReserManager.cs index 9c8d7b38bf47c5a2680fbb2323c5f00deb527596..0b60291e48c9144132f57f0a2de3dfb81502bdc7 100644 --- a/SYS.FormUI/FrmReserManager.cs +++ b/SYS.FormUI/FrmReserManager.cs @@ -30,7 +30,7 @@ namespace SYS.FormUI { MessageBox.Show("预约成功!请在指定时间内进行登记入住"); #region 获取添加操作日志所需的信息 - Operation o = new Operation(); + OperationLog o = new OperationLog(); o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "帮助" + txtCustoTel.Text + "进行了预订房间操作!"; o.OperationAccount = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName; diff --git a/SYS.FormUI/FrmRoomManager.cs b/SYS.FormUI/FrmRoomManager.cs index 2b6687d46f831e39f4b273a8d14bc5449331f60b..fbf89ac45f80102291759c8ff3fbc4ef303f6d39 100644 --- a/SYS.FormUI/FrmRoomManager.cs +++ b/SYS.FormUI/FrmRoomManager.cs @@ -5,6 +5,7 @@ using SYS.Manager; using SYS.Core; using SYS.Application; using SYS.FormUI.Properties; +using SYS.Application; namespace SYS.FormUI { @@ -38,6 +39,7 @@ namespace SYS.FormUI #region 房间加载事件方法 private void FrmRoomManager_Load(object sender, EventArgs e) { +<<<<<<< HEAD:SYS.FormUI/FrmRoomManager.cs foreach (Control label in this.Controls) { if (label.GetType().ToString() == "Sunny.UI.UIButton") @@ -46,49 +48,55 @@ namespace SYS.FormUI } } - foreach (Control item in this.pnlRoomInfo.Controls) - { - if (item.GetType().ToString() == "System.Windows.Forms.Label") - { - item.Font = UI_FontUtil.SetChildControlsFont(); - } - } + //foreach (Control item in this.pnlRoomInfo.Controls) + //{ + // if (item.GetType().ToString() == "System.Windows.Forms.Label") + // { + // item.Font = UI_FontUtil.SetChildControlsFont(); + // } + //} +<<<<<<< HEAD:SYS.FormUI/FrmRoomManager.cs romsty = RoomService.SelectRoomAll(); +======= + romsty = new RoomService().SelectRoomAll(); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmRoomManager.cs +======= + + //foreach (Control item in this.pnlRoomInfo.Controls) + //{ + // if (item.GetType().ToString() == "System.Windows.Forms.Label") + // { + // item.Font = UI_FontUtil.SetChildControlsFont(); + // } + //} + + romsty = new RoomService().SelectRoomAll(); +>>>>>>> master:SYS.FormUI/AppFunction/FrmRoomManager.cs for (int i = 0; i < romsty.Count; i++) { - romt = new ucRoomList(this); - romt.Tag = romsty[i].RoomNo; + romt = new ucRoomList(); + romt.lblRoomNo.Text = romsty[i].RoomNo; + romt.lblCustoNo.Text = romsty[i].CustoNo; + romt.lblRoomType.Text = romsty[i].RoomName; romt.romCustoInfo = romsty[i]; flpRoom.Controls.Add(romt); } - } - #endregion - #region 神秘的遍历方法 - public void CmpInfo(Room rom, Custo user) - { - foreach (Control rmb in flpRoom.Controls) + if (lblCheckTime.Text == "0001/1/1") { - if (rmb.Tag.ToString() != rom.RoomNo) - { - - } - + lblCheckTime.Text = ""; } } #endregion - - - private void tmrGetData_Tick(object sender, EventArgs e) { - lblCanUse.Text = RoomManager.SelectCanUseRoomAllByRoomState().ToString(); - lblCheck.Text = RoomManager.SelectNotUseRoomAllByRoomState().ToString(); - lblNotClear.Text = RoomManager.SelectNotClearRoomAllByRoomState().ToString(); - lblFix.Text = RoomManager.SelectFixingRoomAllByRoomState().ToString(); - lblReser.Text = RoomManager.SelectReseredRoomAllByRoomState().ToString(); + lblCanUse.Text = new RoomService().SelectCanUseRoomAllByRoomState().ToString(); + lblCheck.Text = new RoomService().SelectNotUseRoomAllByRoomState().ToString(); + lblNotClear.Text = new RoomService().SelectNotClearRoomAllByRoomState().ToString(); + lblFix.Text = new RoomService().SelectFixingRoomAllByRoomState().ToString(); + lblReser.Text = new RoomService().SelectReseredRoomAllByRoomState().ToString(); lblRoomNo.Text = ucRoomList.co_RoomNo; lblCustoNo.Text = ucRoomList.co_CustoNo; lblRoomPosition.Text = ucRoomList.co_RoomPosition; @@ -107,13 +115,24 @@ namespace SYS.FormUI private void btnAll_Click(object sender, EventArgs e) { flpRoom.Controls.Clear(); +<<<<<<< HEAD:SYS.FormUI/FrmRoomManager.cs +<<<<<<< HEAD:SYS.FormUI/FrmRoomManager.cs romsty = RoomService.SelectRoomAll(); +======= + romsty = new RoomService().SelectRoomAll(); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmRoomManager.cs +======= + romsty = new RoomService().SelectRoomAll(); +>>>>>>> master:SYS.FormUI/AppFunction/FrmRoomManager.cs for (int i = 0; i < romsty.Count; i++) { - romt = new ucRoomList(this); - romt.Tag = romsty[i].RoomNo; + romt = new ucRoomList(); + romt.lblRoomNo.Text = romsty[i].RoomNo; + romt.lblCustoNo.Text = romsty[i].CustoNo; + romt.lblRoomType.Text = romsty[i].RoomName; romt.romCustoInfo = romsty[i]; flpRoom.Controls.Add(romt); + } } @@ -125,18 +144,43 @@ namespace SYS.FormUI private void LoadData(string typeName) { flpRoom.Controls.Clear(); +<<<<<<< HEAD:SYS.FormUI/FrmRoomManager.cs +<<<<<<< HEAD:SYS.FormUI/FrmRoomManager.cs romsty = RoomService.SelectRoomByTypeName(typeName); +======= + romsty = new RoomService().SelectRoomByTypeName(typeName); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmRoomManager.cs +======= + romsty = new RoomService().SelectRoomByTypeName(typeName); +>>>>>>> master:SYS.FormUI/AppFunction/FrmRoomManager.cs for (int i = 0; i < romsty.Count; i++) { - romt = new ucRoomList(this); - romt.Tag = romsty[i].RoomNo; + romt = new ucRoomList(); + romt.lblRoomNo.Text = romsty[i].RoomNo; + romt.lblCustoNo.Text = romsty[i].CustoNo; + romt.lblRoomType.Text = romsty[i].RoomName; romt.romCustoInfo = romsty[i]; flpRoom.Controls.Add(romt); + } +<<<<<<< HEAD:SYS.FormUI/FrmRoomManager.cs +<<<<<<< HEAD:SYS.FormUI/FrmRoomManager.cs lblCanUse.Text = RoomManager.SelectCanUseRoomAllByRoomState().ToString(); lblCheck.Text = RoomManager.SelectNotUseRoomAllByRoomState().ToString(); lblNotClear.Text = RoomManager.SelectNotClearRoomAllByRoomState().ToString(); lblFix.Text = RoomManager.SelectFixingRoomAllByRoomState().ToString(); +======= +======= +>>>>>>> master:SYS.FormUI/AppFunction/FrmRoomManager.cs + lblCanUse.Text = new RoomService().SelectCanUseRoomAllByRoomState().ToString(); + lblCheck.Text = new RoomService().SelectNotUseRoomAllByRoomState().ToString(); + lblNotClear.Text = new RoomService().SelectNotClearRoomAllByRoomState().ToString(); + lblFix.Text = new RoomService().SelectFixingRoomAllByRoomState().ToString(); + lblReser.Text = new RoomService().SelectReseredRoomAllByRoomState().ToString(); +<<<<<<< HEAD:SYS.FormUI/FrmRoomManager.cs +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmRoomManager.cs +======= +>>>>>>> master:SYS.FormUI/AppFunction/FrmRoomManager.cs } private void btnBS_Click(object sender, EventArgs e) @@ -174,13 +218,24 @@ namespace SYS.FormUI private void LoadRoomByState(int stateid) { flpRoom.Controls.Clear(); +<<<<<<< HEAD:SYS.FormUI/FrmRoomManager.cs +<<<<<<< HEAD:SYS.FormUI/FrmRoomManager.cs romsty = RoomService.SelectRoomByRoomState(stateid); +======= + romsty = new RoomService().SelectRoomByRoomState(stateid); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmRoomManager.cs +======= + romsty = new RoomService().SelectRoomByRoomState(stateid); +>>>>>>> master:SYS.FormUI/AppFunction/FrmRoomManager.cs for (int i = 0; i < romsty.Count; i++) { - romt = new ucRoomList(this); - romt.Tag = romsty[i].RoomNo; + romt = new ucRoomList(); + romt.lblRoomNo.Text = romsty[i].RoomNo; + romt.lblCustoNo.Text = romsty[i].CustoNo; + romt.lblRoomType.Text = romsty[i].RoomName; romt.romCustoInfo = romsty[i]; flpRoom.Controls.Add(romt); + } lblRoomNo.Text = ""; lblRoomPosition.Text = ""; @@ -192,13 +247,24 @@ namespace SYS.FormUI private void LoadRoom() { flpRoom.Controls.Clear(); +<<<<<<< HEAD:SYS.FormUI/FrmRoomManager.cs +<<<<<<< HEAD:SYS.FormUI/FrmRoomManager.cs romsty = RoomService.SelectRoomAll(); +======= + romsty = new RoomService().SelectRoomAll(); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmRoomManager.cs +======= + romsty = new RoomService().SelectRoomAll(); +>>>>>>> master:SYS.FormUI/AppFunction/FrmRoomManager.cs for (int i = 0; i < romsty.Count; i++) { - romt = new ucRoomList(this); - romt.Tag = romsty[i].RoomNo; + romt = new ucRoomList(); + romt.lblRoomNo.Text = romsty[i].RoomNo; + romt.lblCustoNo.Text = romsty[i].CustoNo; + romt.lblRoomType.Text = romsty[i].RoomName; romt.romCustoInfo = romsty[i]; flpRoom.Controls.Add(romt); + } lblRoomNo.Text = ""; lblRoomPosition.Text = ""; diff --git a/SYS.FormUI/FrmRoomStateManager.cs b/SYS.FormUI/FrmRoomStateManager.cs index 9d448580ed869fe417476501022ac3f0292935a2..9b092efc82684e2717fb85de9bdbeffa4aceef88 100644 --- a/SYS.FormUI/FrmRoomStateManager.cs +++ b/SYS.FormUI/FrmRoomStateManager.cs @@ -3,6 +3,7 @@ using System.Windows.Forms; using SYS.Manager; using SYS.Core; using Sunny.UI; +using SYS.Application; namespace SYS.FormUI { @@ -16,11 +17,10 @@ namespace SYS.FormUI #region 窗体加载事件 private void FrmRoomStateManager_Load(object sender, EventArgs e) { - txtRoomNo.Text = RoomStatic.RoomNo; - cboState.DataSource = RoomManager.SelectRoomStateAll(); + txtRoomNo.Text = ucRoomList.rm_RoomNo; + cboState.DataSource = new RoomService().SelectRoomStateAll(); cboState.DisplayMember = "RoomState"; cboState.ValueMember = "RoomStateId"; - cboState.SelectedIndex = RoomStatic.RoomStateId; } #endregion diff --git a/SYS.FormUI/FrmSellThing.cs b/SYS.FormUI/FrmSellThing.cs index e8bf0ddb945922b38c2bd6688807c40a6cc6d05d..73e6020256eab21d87e597beafa51d48b7cef070 100644 --- a/SYS.FormUI/FrmSellThing.cs +++ b/SYS.FormUI/FrmSellThing.cs @@ -216,7 +216,7 @@ namespace SYS.FormUI LoadSpendInfo(r.RoomNo); LoadSellThingInfo(); #region 获取添加操作日志所需的信息 - Operation o = new Operation(); + OperationLog o = new OperationLog(); o.OperationTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd,HH:mm:ss")); o.Operationlog = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + DateTime.Now + "帮助" + s.CustoNo + "进行了消费商品:" + txtSellName.Text + "操作!"; o.OperationAccount = LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName; diff --git a/SYS.FormUI/FrmTopChange.Designer.cs b/SYS.FormUI/FrmTopChange.Designer.cs index e34a291e9bb33e504da98006ee1cdac4901539c5..f54fb28dbd4f4d6d7d30aacd5ae45b8c805aeb53 100644 --- a/SYS.FormUI/FrmTopChange.Designer.cs +++ b/SYS.FormUI/FrmTopChange.Designer.cs @@ -1,6 +1,6 @@ namespace SYS.FormUI { - partial class FrmTopChange + partial class FrmWorkerManager { /// /// Required designer variable. diff --git a/SYS.FormUI/FrmTopChange.cs b/SYS.FormUI/FrmTopChange.cs index 1380a8e138875cc052e312f6f07d70bc73c34a74..9e9553f06414d4ddcc5a88565f8c3bacf5135fe4 100644 --- a/SYS.FormUI/FrmTopChange.cs +++ b/SYS.FormUI/FrmTopChange.cs @@ -6,7 +6,7 @@ using SYS.Application; namespace SYS.FormUI { - public partial class FrmTopChange : Form + public partial class FrmWorkerManager : Form { public static string wk_WorkerNo; public static string wk_WorkerName; @@ -28,7 +28,7 @@ namespace SYS.FormUI //定义委托类型的变量 public static ReLoadWorkerList Reload; - public FrmTopChange() + public FrmWorkerManager() { InitializeComponent(); Reload = LoadWorker; @@ -70,8 +70,18 @@ namespace SYS.FormUI { CmpSetDgv(); dgvWorkerList.AutoGenerateColumns = false; +<<<<<<< HEAD:SYS.FormUI/FrmTopChange.cs +<<<<<<< HEAD:SYS.FormUI/FrmTopChange.cs dgvWorkerList.DataSource = WorkerService.SelectWorkerAll(); if (AdminInfo.adminType != "总经理") +======= + dgvWorkerList.DataSource = WorkerManager.SelectWorkerAll(); + if (AdminInfo.Type != "总经理") +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmWorkerManager.cs +======= + dgvWorkerList.DataSource = WorkerManager.SelectWorkerAll(); + if (AdminInfo.Type != "总经理") +>>>>>>> master:SYS.FormUI/AppFunction/FrmWorkerManager.cs { btnAddWorker.Enabled = false; btnAddWorker.Text = "权限不足"; diff --git a/SYS.FormUI/FrmUnLockSystem.Designer.cs b/SYS.FormUI/FrmUnLockSystem.Designer.cs index 7a40c8d8bdd9ffdcf518c7613dc382c7756bf02d..59eaede2315932932ec493af9965216119d61f94 100644 --- a/SYS.FormUI/FrmUnLockSystem.Designer.cs +++ b/SYS.FormUI/FrmUnLockSystem.Designer.cs @@ -41,7 +41,15 @@ this.label1.BackColor = System.Drawing.Color.Transparent; this.label1.Font = new System.Drawing.Font("苹方-简", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label1.ForeColor = System.Drawing.Color.Red; +<<<<<<< HEAD:SYS.FormUI/FrmUnLockSystem.Designer.cs +<<<<<<< HEAD:SYS.FormUI/FrmUnLockSystem.Designer.cs this.label1.Location = new System.Drawing.Point(28, 20); +======= + this.label1.Location = new System.Drawing.Point(54, 37); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmUnLockSystem.Designer.cs +======= + this.label1.Location = new System.Drawing.Point(54, 37); +>>>>>>> master:SYS.FormUI/AppFunction/FrmUnLockSystem.Designer.cs this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(392, 26); this.label1.TabIndex = 0; @@ -62,6 +70,7 @@ this.btnUnLock.Font = new System.Drawing.Font("苹方-简", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.btnUnLock.Location = new System.Drawing.Point(178, 97); this.btnUnLock.Name = "btnUnLock"; +<<<<<<< HEAD:SYS.FormUI/FrmUnLockSystem.Designer.cs this.btnUnLock.Size = new System.Drawing.Size(92, 32); this.btnUnLock.TabIndex = 2; this.btnUnLock.Text = "解 锁"; @@ -71,6 +80,21 @@ // timer1 // this.timer1.Tick += new System.EventHandler(this.timer1_Tick); +======= + this.btnUnLock.Radius = 20; + this.btnUnLock.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.btnUnLock.RectHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(127)))), ((int)(((byte)(128))))); + this.btnUnLock.RectPressColor = System.Drawing.Color.FromArgb(((int)(((byte)(202)))), ((int)(((byte)(87)))), ((int)(((byte)(89))))); + this.btnUnLock.RectSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(202)))), ((int)(((byte)(87)))), ((int)(((byte)(89))))); + this.btnUnLock.Size = new System.Drawing.Size(101, 40); + this.btnUnLock.Style = Sunny.UI.UIStyle.Red; + this.btnUnLock.TabIndex = 113; + this.btnUnLock.Text = "解 锁"; + this.btnUnLock.Click += new System.EventHandler(this.btnUnLock_Click); +<<<<<<< HEAD:SYS.FormUI/FrmUnLockSystem.Designer.cs +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmUnLockSystem.Designer.cs +======= +>>>>>>> master:SYS.FormUI/AppFunction/FrmUnLockSystem.Designer.cs // // FrmUnLockSystem // @@ -86,8 +110,21 @@ this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FrmUnLockSystem"; +<<<<<<< HEAD:SYS.FormUI/FrmUnLockSystem.Designer.cs +<<<<<<< HEAD:SYS.FormUI/FrmUnLockSystem.Designer.cs this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "系统锁定"; +======= +======= +>>>>>>> master:SYS.FormUI/AppFunction/FrmUnLockSystem.Designer.cs + this.Padding = new System.Windows.Forms.Padding(0); + this.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.ShowInTaskbar = false; + this.ShowTitle = false; + this.Style = Sunny.UI.UIStyle.Custom; + this.Text = "系统已锁定!"; + this.TitleColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmUnLockSystem.Designer.cs this.Deactivate += new System.EventHandler(this.FrmUnLockSystem_Deactivate); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmUnLockSystem_FormClosing); this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmUnLockSystem_FormClosed); diff --git a/SYS.FormUI/FrmUnLockSystem.cs b/SYS.FormUI/FrmUnLockSystem.cs index 774103e44be986a8f874ee3548f60e080120460f..00a99b28ae1386517acf2cf49962b4dd0aad014d 100644 --- a/SYS.FormUI/FrmUnLockSystem.cs +++ b/SYS.FormUI/FrmUnLockSystem.cs @@ -5,6 +5,7 @@ using System.Reflection; using System.Runtime.InteropServices; using System.Windows.Forms; using SYS.Core; +using SYS.Manager; namespace SYS.FormUI { @@ -46,6 +47,8 @@ namespace SYS.FormUI private void btnUnLock_Click(object sender, EventArgs e) { +<<<<<<< HEAD:SYS.FormUI/FrmUnLockSystem.cs +<<<<<<< HEAD:SYS.FormUI/FrmUnLockSystem.cs if (txtUnLockPwd.Text != AdminInfo.adminpwd) { MessageBox.Show("密码错误! 请输入当前超管密码解锁!"); @@ -54,11 +57,39 @@ namespace SYS.FormUI } else { +======= +======= +>>>>>>> master:SYS.FormUI/AppFunction/FrmUnLockSystem.cs + var account = AdminManager.SelectAdminPwdByAccount(AdminInfo.Account); + if (account != null) + { + if (account.AdminPassword != txtUnLockPwd.Text.Trim()) + { + MessageBox.Show("密码错误! 请输入当前超管密码解锁!"); + txtUnLockPwd.Text = ""; + txtUnLockPwd.Focus(); + return; + } +<<<<<<< HEAD:SYS.FormUI/FrmUnLockSystem.cs +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmUnLockSystem.cs +======= +>>>>>>> master:SYS.FormUI/AppFunction/FrmUnLockSystem.cs this.Close(); string regPath = System.Windows.Forms.Application.StartupPath + @"\启用任务管理器.reg"; ExecuteReg(regPath); FrmMain.Start(); +<<<<<<< HEAD:SYS.FormUI/FrmUnLockSystem.cs +<<<<<<< HEAD:SYS.FormUI/FrmUnLockSystem.cs + } +======= +======= + } +>>>>>>> master:SYS.FormUI/AppFunction/FrmUnLockSystem.cs + + } + +>>>>>>> InitProject_v1.4.8_happy_new_year:SYS.FormUI/AppFunction/FrmUnLockSystem.cs } @@ -76,7 +107,7 @@ namespace SYS.FormUI { string regPath = System.Windows.Forms.Application.StartupPath + @"\禁用任务管理器.reg"; ExecuteReg(regPath); - FrmMain.Stop(); + //FrmMain.Stop(); //HookStart(); Process[] ps = Process.GetProcessesByName("TS酒店管理系统"); if (ps.Length < 0) diff --git a/SYS.FormUI/FrmUpLoad.Designer.cs b/SYS.FormUI/FrmUpLoad.Designer.cs index 1961665a953e99a68703a74c6361c27fe1ebcb34..de5e1499a7c3ab1a11765413bfa0e70e596ef991 100644 --- a/SYS.FormUI/FrmUpLoad.Designer.cs +++ b/SYS.FormUI/FrmUpLoad.Designer.cs @@ -1,6 +1,6 @@ namespace SYS.FormUI { - partial class FrmUpLoad + partial class FrmUpLoadNotice { /// /// Required designer variable. @@ -28,15 +28,13 @@ /// private void InitializeComponent() { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmUpLoad)); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmUpLoadNotice)); this.UpLoadNotice = new System.Windows.Forms.Button(); this.pnlUpLoad = new System.Windows.Forms.Panel(); this.txtNoticePerson = new System.Windows.Forms.TextBox(); this.label6 = new System.Windows.Forms.Label(); this.cboSelectClub = new System.Windows.Forms.ComboBox(); this.label4 = new System.Windows.Forms.Label(); - this.btnUpLoad = new System.Windows.Forms.Button(); this.rtbNoticeContent = new System.Windows.Forms.RichTextBox(); this.dtpUpLoadDate = new System.Windows.Forms.DateTimePicker(); this.label3 = new System.Windows.Forms.Label(); @@ -44,13 +42,8 @@ this.label2 = new System.Windows.Forms.Label(); this.txtUpLoadNo = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); - this.label5 = new System.Windows.Forms.Label(); - this.dgvNoticeList = new System.Windows.Forms.DataGridView(); - this.clNoticeNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clNoticetheme = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clNoticeContent = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.btnUpLoad = new System.Windows.Forms.Button(); this.pnlUpLoad.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.dgvNoticeList)).BeginInit(); this.SuspendLayout(); // // UpLoadNotice @@ -58,7 +51,7 @@ this.UpLoadNotice.BackColor = System.Drawing.Color.DeepSkyBlue; this.UpLoadNotice.FlatAppearance.BorderSize = 0; this.UpLoadNotice.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.UpLoadNotice.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.UpLoadNotice.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.UpLoadNotice.Location = new System.Drawing.Point(12, 8); this.UpLoadNotice.Name = "UpLoadNotice"; this.UpLoadNotice.Size = new System.Drawing.Size(103, 23); @@ -81,70 +74,55 @@ this.pnlUpLoad.Controls.Add(this.label2); this.pnlUpLoad.Controls.Add(this.txtUpLoadNo); this.pnlUpLoad.Controls.Add(this.label1); - this.pnlUpLoad.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.pnlUpLoad.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.pnlUpLoad.Location = new System.Drawing.Point(3, 37); this.pnlUpLoad.Name = "pnlUpLoad"; - this.pnlUpLoad.Size = new System.Drawing.Size(614, 456); + this.pnlUpLoad.Size = new System.Drawing.Size(974, 456); this.pnlUpLoad.TabIndex = 1; this.pnlUpLoad.Visible = false; // // txtNoticePerson // - this.txtNoticePerson.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtNoticePerson.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.txtNoticePerson.Location = new System.Drawing.Point(403, 423); this.txtNoticePerson.Name = "txtNoticePerson"; - this.txtNoticePerson.Size = new System.Drawing.Size(88, 24); + this.txtNoticePerson.Size = new System.Drawing.Size(88, 21); this.txtNoticePerson.TabIndex = 11; // // label6 // this.label6.AutoSize = true; - this.label6.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label6.Location = new System.Drawing.Point(357, 427); this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(56, 17); + this.label6.Size = new System.Drawing.Size(55, 15); this.label6.TabIndex = 10; this.label6.Text = "发布人:"; // // cboSelectClub // - this.cboSelectClub.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.cboSelectClub.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.cboSelectClub.FormattingEnabled = true; this.cboSelectClub.Items.AddRange(new object[] { "人力资源管理部"}); this.cboSelectClub.Location = new System.Drawing.Point(229, 424); this.cboSelectClub.Name = "cboSelectClub"; - this.cboSelectClub.Size = new System.Drawing.Size(114, 25); + this.cboSelectClub.Size = new System.Drawing.Size(114, 23); this.cboSelectClub.TabIndex = 9; // // label4 // this.label4.AutoSize = true; - this.label4.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label4.Location = new System.Drawing.Point(158, 427); this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(68, 17); + this.label4.Size = new System.Drawing.Size(67, 15); this.label4.TabIndex = 8; this.label4.Text = "发布部门:"; // - // btnUpLoad - // - this.btnUpLoad.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnUpLoad.BackgroundImage"))); - this.btnUpLoad.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.btnUpLoad.FlatAppearance.BorderSize = 0; - this.btnUpLoad.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnUpLoad.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnUpLoad.Location = new System.Drawing.Point(497, 422); - this.btnUpLoad.Name = "btnUpLoad"; - this.btnUpLoad.Size = new System.Drawing.Size(75, 23); - this.btnUpLoad.TabIndex = 7; - this.btnUpLoad.Text = "发布"; - this.btnUpLoad.UseVisualStyleBackColor = true; - this.btnUpLoad.Click += new System.EventHandler(this.btnUpLoad_Click); - // // rtbNoticeContent // - this.rtbNoticeContent.Font = new System.Drawing.Font("苹方-简", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.rtbNoticeContent.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.rtbNoticeContent.Location = new System.Drawing.Point(0, 47); this.rtbNoticeContent.Name = "rtbNoticeContent"; this.rtbNoticeContent.Size = new System.Drawing.Size(611, 365); @@ -155,7 +133,7 @@ // this.dtpUpLoadDate.Location = new System.Drawing.Point(505, 14); this.dtpUpLoadDate.Name = "dtpUpLoadDate"; - this.dtpUpLoadDate.Size = new System.Drawing.Size(106, 24); + this.dtpUpLoadDate.Size = new System.Drawing.Size(106, 21); this.dtpUpLoadDate.TabIndex = 5; // // label3 @@ -172,7 +150,7 @@ // this.txtNoticeTheme.Location = new System.Drawing.Point(273, 14); this.txtNoticeTheme.Name = "txtNoticeTheme"; - this.txtNoticeTheme.Size = new System.Drawing.Size(145, 24); + this.txtNoticeTheme.Size = new System.Drawing.Size(145, 21); this.txtNoticeTheme.TabIndex = 3; // // label2 @@ -189,7 +167,7 @@ // this.txtUpLoadNo.Location = new System.Drawing.Point(84, 14); this.txtUpLoadNo.Name = "txtUpLoadNo"; - this.txtUpLoadNo.Size = new System.Drawing.Size(100, 24); + this.txtUpLoadNo.Size = new System.Drawing.Size(100, 21); this.txtUpLoadNo.TabIndex = 1; // // label1 @@ -202,78 +180,36 @@ this.label1.TabIndex = 0; this.label1.Text = "公告编号:"; // - // label5 - // - this.label5.AutoSize = true; - this.label5.Font = new System.Drawing.Font("苹方-简", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label5.Location = new System.Drawing.Point(756, -3); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(134, 41); - this.label5.TabIndex = 108; - this.label5.Text = "历史公告"; - // - // dgvNoticeList - // - this.dgvNoticeList.AllowUserToAddRows = false; - this.dgvNoticeList.AllowUserToDeleteRows = false; - this.dgvNoticeList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvNoticeList.BackgroundColor = System.Drawing.Color.SkyBlue; - this.dgvNoticeList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; - this.dgvNoticeList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clNoticeNo, - this.clNoticetheme, - this.clNoticeContent}); - this.dgvNoticeList.Location = new System.Drawing.Point(619, 37); - this.dgvNoticeList.Name = "dgvNoticeList"; - this.dgvNoticeList.ReadOnly = true; - dataGridViewCellStyle1.Font = new System.Drawing.Font("苹方-简", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.dgvNoticeList.RowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvNoticeList.RowTemplate.Height = 23; - this.dgvNoticeList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvNoticeList.Size = new System.Drawing.Size(368, 456); - this.dgvNoticeList.TabIndex = 109; - this.dgvNoticeList.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvNoticeList_CellClick); - // - // clNoticeNo - // - this.clNoticeNo.DataPropertyName = "NoticeNo"; - this.clNoticeNo.HeaderText = "公告编号"; - this.clNoticeNo.Name = "clNoticeNo"; - this.clNoticeNo.ReadOnly = true; - // - // clNoticetheme - // - this.clNoticetheme.DataPropertyName = "Noticetheme"; - this.clNoticetheme.HeaderText = "公告主题"; - this.clNoticetheme.Name = "clNoticetheme"; - this.clNoticetheme.ReadOnly = true; - // - // clNoticeContent + // btnUpLoad // - this.clNoticeContent.DataPropertyName = "NoticeContent"; - this.clNoticeContent.HeaderText = "公告正文"; - this.clNoticeContent.Name = "clNoticeContent"; - this.clNoticeContent.ReadOnly = true; + this.btnUpLoad.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnUpLoad.BackgroundImage"))); + this.btnUpLoad.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.btnUpLoad.FlatAppearance.BorderSize = 0; + this.btnUpLoad.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnUpLoad.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.btnUpLoad.Location = new System.Drawing.Point(497, 422); + this.btnUpLoad.Name = "btnUpLoad"; + this.btnUpLoad.Size = new System.Drawing.Size(75, 23); + this.btnUpLoad.TabIndex = 7; + this.btnUpLoad.Text = "发布"; + this.btnUpLoad.UseVisualStyleBackColor = true; + this.btnUpLoad.Click += new System.EventHandler(this.btnUpLoad_Click); // - // FrmUpLoad + // FrmUpLoadNotice // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.SkyBlue; this.ClientSize = new System.Drawing.Size(989, 497); - this.Controls.Add(this.dgvNoticeList); - this.Controls.Add(this.label5); this.Controls.Add(this.pnlUpLoad); this.Controls.Add(this.UpLoadNotice); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; - this.Name = "FrmUpLoad"; + this.Name = "FrmUpLoadNotice"; this.Text = "FrmCashList"; this.Load += new System.EventHandler(this.FrmUpLoad_Load); this.pnlUpLoad.ResumeLayout(false); this.pnlUpLoad.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.dgvNoticeList)).EndInit(); this.ResumeLayout(false); - this.PerformLayout(); } @@ -291,12 +227,7 @@ private System.Windows.Forms.Label label1; private System.Windows.Forms.ComboBox cboSelectClub; private System.Windows.Forms.Label label4; - private System.Windows.Forms.Label label5; - private System.Windows.Forms.DataGridView dgvNoticeList; private System.Windows.Forms.TextBox txtNoticePerson; private System.Windows.Forms.Label label6; - private System.Windows.Forms.DataGridViewTextBoxColumn clNoticeNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clNoticetheme; - private System.Windows.Forms.DataGridViewTextBoxColumn clNoticeContent; } } \ No newline at end of file diff --git a/SYS.FormUI/FrmUpLoad.resx b/SYS.FormUI/FrmUpLoad.resx index 6fdf3e74fef275997982b4614ab69b31c5cc8bac..bf371a084fe6ddd10a6229233fb6e255f3ad55ba 100644 --- a/SYS.FormUI/FrmUpLoad.resx +++ b/SYS.FormUI/FrmUpLoad.resx @@ -156,13 +156,4 @@ EBAQEBAQEBAQEBAQEBAlVlkA - - True - - - True - - - True - \ No newline at end of file diff --git a/SYS.FormUI/Logo/bitbug_favicon (1).ico b/SYS.FormUI/Logo/bitbug_favicon (1).ico new file mode 100644 index 0000000000000000000000000000000000000000..deaead31de45df54f39388e2b4727a00a4f99eca Binary files /dev/null and b/SYS.FormUI/Logo/bitbug_favicon (1).ico differ diff --git a/SYS.FormUI/Properties/AssemblyInfo.cs b/SYS.FormUI/Properties/AssemblyInfo.cs index 911df1d6788f1e725ba0156a9def9fd31a4703b0..a0a51473542cb2c3733a64ffd29b85f451f3ac21 100644 --- a/SYS.FormUI/Properties/AssemblyInfo.cs +++ b/SYS.FormUI/Properties/AssemblyInfo.cs @@ -1,4 +1,5 @@ -using System.Reflection; +using System; +using System.Reflection; using System.Runtime.InteropServices; // 有关程序集的一般信息由以下 @@ -7,9 +8,9 @@ using System.Runtime.InteropServices; [assembly: AssemblyTitle("TS酒店管理系统")] [assembly: AssemblyDescription("一款为中小型酒店打造的管理系统!")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("NF-TopSky小组")] +[assembly: AssemblyCompany("NF-TopSky小组&java-and-net")] [assembly: AssemblyProduct("TS酒店管理系统")] -[assembly: AssemblyCopyright("Copyright © TopSky小组 2018-2020")] +[assembly: AssemblyCopyright("Copyright © 2018-2021 TopSky小组&java-and-net")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -31,5 +32,5 @@ using System.Runtime.InteropServices; //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, // 方法是按如下所示使用“*”: : // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.4.2.3")] -[assembly: AssemblyFileVersion("1.4.2.3")] +[assembly: AssemblyVersion("1.5.0.0")] +[assembly: AssemblyFileVersion("1.5.0.0")] diff --git a/SYS.FormUI/Properties/Resources.Designer.cs b/SYS.FormUI/Properties/Resources.Designer.cs index edb7ff7adb2126b71480aa03a8d4df15267fc4ce..23af2b07089d266bc8c0af55fee7d5f1a4d586f1 100644 --- a/SYS.FormUI/Properties/Resources.Designer.cs +++ b/SYS.FormUI/Properties/Resources.Designer.cs @@ -22,7 +22,7 @@ namespace SYS.FormUI.Properties { [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { + public class Resources { private static global::System.Resources.ResourceManager resourceMan; @@ -36,7 +36,7 @@ namespace SYS.FormUI.Properties { /// 返回此类使用的缓存的 ResourceManager 实例。 /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { + public static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SYS.FormUI.Properties.Resources", typeof(Resources).Assembly); @@ -51,7 +51,7 @@ namespace SYS.FormUI.Properties { /// 使用此强类型资源类的所有资源查找执行重写。 /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { + public static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } @@ -63,27 +63,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap _1545891726 { - get { - object obj = ResourceManager.GetObject("1545891726", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap _1G_Q__21_3JZZCFW68O7NF { - get { - object obj = ResourceManager.GetObject(")1G~Q~(21]3JZZCFW68O7NF", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap _770e7b52ecafc807247aad51bb6c6b43 { + public static System.Drawing.Bitmap _770e7b52ecafc807247aad51bb6c6b43 { get { object obj = ResourceManager.GetObject("770e7b52ecafc807247aad51bb6c6b43", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -93,7 +73,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap _77377282_p0_master1200 { + public static System.Drawing.Bitmap _77377282_p0_master1200 { get { object obj = ResourceManager.GetObject("77377282_p0_master1200", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -103,39 +83,29 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap arrow_down_b { + public static System.Drawing.Bitmap _lock { get { - object obj = ResourceManager.GetObject("arrow-down-b", resourceCulture); + object obj = ResourceManager.GetObject("lock", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 + /// 查找 System.Byte[] 类型的本地化资源。 /// - internal static System.Drawing.Bitmap Background { + public static byte[] Alibaba_PuHuiTi_Regular { get { - object obj = ResourceManager.GetObject("Background", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + object obj = ResourceManager.GetObject("Alibaba_PuHuiTi_Regular", resourceCulture); + return ((byte[])(obj)); } } /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap button { + public static System.Drawing.Bitmap arrow_down_b { get { - object obj = ResourceManager.GetObject("button", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap c92311ec80b20a729e525a3f7035363c { - get { - object obj = ResourceManager.GetObject("c92311ec80b20a729e525a3f7035363c", resourceCulture); + object obj = ResourceManager.GetObject("arrow-down-b", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -143,7 +113,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap close { + public static System.Drawing.Bitmap close { get { object obj = ResourceManager.GetObject("close", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -153,7 +123,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap delete2_a { + public static System.Drawing.Bitmap delete2_a { get { object obj = ResourceManager.GetObject("delete2-a", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -163,7 +133,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap delete2a { + public static System.Drawing.Bitmap delete2a { get { object obj = ResourceManager.GetObject("delete2a", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -173,57 +143,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap Login_a { - get { - object obj = ResourceManager.GetObject("Login_a", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap Login_a1 { - get { - object obj = ResourceManager.GetObject("Login_a1", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap Login_b { - get { - object obj = ResourceManager.GetObject("Login_b", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap Login_b1 { - get { - object obj = ResourceManager.GetObject("Login_b1", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap main_bg { - get { - object obj = ResourceManager.GetObject("main_bg", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap minus { + public static System.Drawing.Bitmap minus { get { object obj = ResourceManager.GetObject("minus", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -233,7 +153,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap minus__1_ { + public static System.Drawing.Bitmap minus__1_ { get { object obj = ResourceManager.GetObject("minus (1)", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -243,19 +163,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 中餐厅_ia { - get { - object obj = ResourceManager.GetObject("中餐厅-ia", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 中餐厅_ib { + public static System.Drawing.Bitmap settings2 { get { - object obj = ResourceManager.GetObject("中餐厅-ib", resourceCulture); + object obj = ResourceManager.GetObject("settings2", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -263,9 +173,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 人事管理_ia { + public static System.Drawing.Bitmap 个人中心 { get { - object obj = ResourceManager.GetObject("人事管理-ia", resourceCulture); + object obj = ResourceManager.GetObject("个人中心", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -273,9 +183,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 人事管理_ib { + public static System.Drawing.Bitmap 主页__1_ { get { - object obj = ResourceManager.GetObject("人事管理-ib", resourceCulture); + object obj = ResourceManager.GetObject("主页 (1)", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -283,9 +193,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 人事部界面 { + public static System.Drawing.Bitmap 人力资源部卡片 { get { - object obj = ResourceManager.GetObject("人事部界面", resourceCulture); + object obj = ResourceManager.GetObject("人力资源部卡片", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -293,37 +203,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 会员管理_ia { - get { - object obj = ResourceManager.GetObject("会员管理-ia", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 会员管理_ib { - get { - object obj = ResourceManager.GetObject("会员管理-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 会员管理2_ib { - get { - object obj = ResourceManager.GetObject("会员管理2-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 修改 { + public static System.Drawing.Bitmap 修改 { get { object obj = ResourceManager.GetObject("修改", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -333,7 +213,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 修改a { + public static System.Drawing.Bitmap 修改a { get { object obj = ResourceManager.GetObject("修改a", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -343,9 +223,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 内部飞鸽_ia { + public static System.Drawing.Bitmap 关于我们 { get { - object obj = ResourceManager.GetObject("内部飞鸽-ia", resourceCulture); + object obj = ResourceManager.GetObject("关于我们", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -353,9 +233,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 内部飞鸽_ib { + public static System.Drawing.Bitmap 内控部卡片 { get { - object obj = ResourceManager.GetObject("内部飞鸽-ib", resourceCulture); + object obj = ResourceManager.GetObject("内控部卡片", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -363,9 +243,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 可住房 { + public static System.Drawing.Bitmap 切换账号 { get { - object obj = ResourceManager.GetObject("可住房", resourceCulture); + object obj = ResourceManager.GetObject("切换账号", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -373,9 +253,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 可住房_a { + public static System.Drawing.Bitmap 可住房_hover_icon { get { - object obj = ResourceManager.GetObject("可住房-a", resourceCulture); + object obj = ResourceManager.GetObject("可住房(hover)icon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -383,9 +263,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 后勤管理_ia { + public static System.Drawing.Bitmap 可住房icon { get { - object obj = ResourceManager.GetObject("后勤管理-ia", resourceCulture); + object obj = ResourceManager.GetObject("可住房icon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -393,9 +273,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 后勤管理_ib { + public static System.Drawing.Bitmap 可住状态 { get { - object obj = ResourceManager.GetObject("后勤管理-ib", resourceCulture); + object obj = ResourceManager.GetObject("可住状态", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -403,9 +283,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 后勤部界面 { + public static System.Drawing.Bitmap 后勤部卡片 { get { - object obj = ResourceManager.GetObject("后勤部界面", resourceCulture); + object obj = ResourceManager.GetObject("后勤部卡片", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -413,9 +293,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 商品消费_ia { + public static System.Drawing.Bitmap 咖啡 { get { - object obj = ResourceManager.GetObject("商品消费-ia", resourceCulture); + object obj = ResourceManager.GetObject("咖啡", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -423,9 +303,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 商品消费_ib { + public static System.Drawing.Bitmap 商品部卡片 { get { - object obj = ResourceManager.GetObject("商品消费-ib", resourceCulture); + object obj = ResourceManager.GetObject("商品部卡片", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -433,9 +313,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 客房管理_ia { + public static System.Drawing.Bitmap 增加_添加_加减__1_ { get { - object obj = ResourceManager.GetObject("客房管理-ia", resourceCulture); + object obj = ResourceManager.GetObject("增加 添加 加减 (1)", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -443,37 +323,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 客房管理_ia1 { - get { - object obj = ResourceManager.GetObject("客房管理-ia1", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 客房管理_ib { - get { - object obj = ResourceManager.GetObject("客房管理-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 客房管理_ib1 { - get { - object obj = ResourceManager.GetObject("客房管理-ib1", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 导出__4_ { + public static System.Drawing.Bitmap 导出__4_ { get { object obj = ResourceManager.GetObject("导出 (4)", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -483,39 +333,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 工程维修_ia { - get { - object obj = ResourceManager.GetObject("工程维修-ia", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 工程维修_ib { - get { - object obj = ResourceManager.GetObject("工程维修-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 已住房 { - get { - object obj = ResourceManager.GetObject("已住房", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 已住房_a { + public static System.Drawing.Bitmap 已住房_hover_icon { get { - object obj = ResourceManager.GetObject("已住房-a", resourceCulture); + object obj = ResourceManager.GetObject("已住房(hover)icon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -523,9 +343,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 已入住 { + public static System.Drawing.Bitmap 已住房icon { get { - object obj = ResourceManager.GetObject("已入住", resourceCulture); + object obj = ResourceManager.GetObject("已住房icon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -533,9 +353,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 已预约 { + public static System.Drawing.Bitmap 已住状态 { get { - object obj = ResourceManager.GetObject("已预约", resourceCulture); + object obj = ResourceManager.GetObject("已住状态", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -543,9 +363,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 库存管理_ia { + public static System.Drawing.Bitmap 常规部门卡片 { get { - object obj = ResourceManager.GetObject("库存管理-ia", resourceCulture); + object obj = ResourceManager.GetObject("常规部门卡片", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -553,9 +373,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 库存管理_ib { + public static System.Drawing.Bitmap 总经办卡片 { get { - object obj = ResourceManager.GetObject("库存管理-ib", resourceCulture); + object obj = ResourceManager.GetObject("总经办卡片", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -563,27 +383,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 房卡管理_ia { - get { - object obj = ResourceManager.GetObject("房卡管理-ia", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 房卡管理_ib { - get { - object obj = ResourceManager.GetObject("房卡管理-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 打卡 { + public static System.Drawing.Bitmap 打卡 { get { object obj = ResourceManager.GetObject("打卡", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -593,27 +393,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 扩展功能_ia { - get { - object obj = ResourceManager.GetObject("扩展功能-ia", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 扩展功能_ib { - get { - object obj = ResourceManager.GetObject("扩展功能-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 搜索__1 { + public static System.Drawing.Bitmap 搜索__1 { get { object obj = ResourceManager.GetObject("搜索--1", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -623,7 +403,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 搜索__1a { + public static System.Drawing.Bitmap 搜索__1a { get { object obj = ResourceManager.GetObject("搜索--1a", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -633,9 +413,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 显示 { + public static System.Drawing.Bitmap 早上 { get { - object obj = ResourceManager.GetObject("显示", resourceCulture); + object obj = ResourceManager.GetObject("早上", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -643,29 +423,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 更多扩展_ia { + public static System.Drawing.Bitmap 显示 { get { - object obj = ResourceManager.GetObject("更多扩展-ia", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 更多扩展_ib { - get { - object obj = ResourceManager.GetObject("更多扩展-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 水电管理_ia { - get { - object obj = ResourceManager.GetObject("水电管理-ia", resourceCulture); + object obj = ResourceManager.GetObject("显示", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -673,9 +433,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 水电管理_ib { + public static System.Drawing.Bitmap 月亮 { get { - object obj = ResourceManager.GetObject("水电管理-ib", resourceCulture); + object obj = ResourceManager.GetObject("月亮", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -683,9 +443,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 消费管理_ia { + public static System.Drawing.Bitmap 检查更新__1_ { get { - object obj = ResourceManager.GetObject("消费管理-ia", resourceCulture); + object obj = ResourceManager.GetObject("检查更新 (1)", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -693,9 +453,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 消费管理_ib { + public static System.Drawing.Bitmap 注销 { get { - object obj = ResourceManager.GetObject("消费管理-ib", resourceCulture); + object obj = ResourceManager.GetObject("注销", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -703,7 +463,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 添_加_a { + public static System.Drawing.Bitmap 添_加_a { get { object obj = ResourceManager.GetObject("添 加-a", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -713,7 +473,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 添_加a { + public static System.Drawing.Bitmap 添_加a { get { object obj = ResourceManager.GetObject("添 加a", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -723,129 +483,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 清理中 { - get { - object obj = ResourceManager.GetObject("清理中", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 清理中2 { - get { - object obj = ResourceManager.GetObject("清理中2", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 清理中2_a { - get { - object obj = ResourceManager.GetObject("清理中2-a", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 用户管理_ia { - get { - object obj = ResourceManager.GetObject("用户管理-ia", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 用户管理_ia1 { - get { - object obj = ResourceManager.GetObject("用户管理-ia1", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 用户管理_ib { - get { - object obj = ResourceManager.GetObject("用户管理-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 用户管理_ib1 { - get { - object obj = ResourceManager.GetObject("用户管理-ib1", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 监管统计_ia { - get { - object obj = ResourceManager.GetObject("监管统计-ia", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 监管统计_ib { - get { - object obj = ResourceManager.GetObject("监管统计-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 空房 { - get { - object obj = ResourceManager.GetObject("空房", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 空房22 { - get { - object obj = ResourceManager.GetObject("空房22", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 经理部界面 { - get { - object obj = ResourceManager.GetObject("经理部界面", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 维修中 { + public static System.Drawing.Bitmap 添加__增加___加 { get { - object obj = ResourceManager.GetObject("维修中", resourceCulture); + object obj = ResourceManager.GetObject("添加 增加 加", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -853,9 +493,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 维修中_a { + public static System.Drawing.Bitmap 监管小组卡片 { get { - object obj = ResourceManager.GetObject("维修中-a", resourceCulture); + object obj = ResourceManager.GetObject("监管小组卡片", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -863,9 +503,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 维修中1 { + public static System.Drawing.Bitmap 組織圖塊 { get { - object obj = ResourceManager.GetObject("维修中1", resourceCulture); + object obj = ResourceManager.GetObject("組織圖塊", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -873,9 +513,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 维修中2 { + public static System.Drawing.Bitmap 经理部卡片 { get { - object obj = ResourceManager.GetObject("维修中2", resourceCulture); + object obj = ResourceManager.GetObject("经理部卡片", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -883,9 +523,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 维修中22 { + public static System.Drawing.Bitmap 维修房_hover_icon { get { - object obj = ResourceManager.GetObject("维修中22", resourceCulture); + object obj = ResourceManager.GetObject("维修房(hover)icon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -893,9 +533,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 维修中221 { + public static System.Drawing.Bitmap 维修房icon { get { - object obj = ResourceManager.GetObject("维修中221", resourceCulture); + object obj = ResourceManager.GetObject("维修房icon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -903,9 +543,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 网页预约_ia { + public static System.Drawing.Bitmap 维修状态 { get { - object obj = ResourceManager.GetObject("网页预约-ia", resourceCulture); + object obj = ResourceManager.GetObject("维修状态", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -913,9 +553,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 网页预约_ib { + public static System.Drawing.Bitmap 维修部卡片 { get { - object obj = ResourceManager.GetObject("网页预约-ib", resourceCulture); + object obj = ResourceManager.GetObject("维修部卡片", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -923,9 +563,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 脏房 { + public static System.Drawing.Bitmap 脏房_hover_icon { get { - object obj = ResourceManager.GetObject("脏房", resourceCulture); + object obj = ResourceManager.GetObject("脏房(hover)icon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -933,9 +573,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 脏房2 { + public static System.Drawing.Bitmap 脏房icon1 { get { - object obj = ResourceManager.GetObject("脏房2", resourceCulture); + object obj = ResourceManager.GetObject("脏房icon1", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -943,9 +583,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 脏房2_a { + public static System.Drawing.Bitmap 脏房状态 { get { - object obj = ResourceManager.GetObject("脏房2-a", resourceCulture); + object obj = ResourceManager.GetObject("脏房状态", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -953,7 +593,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 获取用户编号 { + public static System.Drawing.Bitmap 获取用户编号 { get { object obj = ResourceManager.GetObject("获取用户编号", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -963,7 +603,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 获取用户编号_ia { + public static System.Drawing.Bitmap 获取用户编号_ia { get { object obj = ResourceManager.GetObject("获取用户编号-ia", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -973,9 +613,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 行政管理_ia { + public static System.Drawing.Bitmap 财务部卡片 { get { - object obj = ResourceManager.GetObject("行政管理-ia", resourceCulture); + object obj = ResourceManager.GetObject("财务部卡片", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -983,9 +623,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 行政管理_ib { + public static System.Drawing.Bitmap 酒店部卡片 { get { - object obj = ResourceManager.GetObject("行政管理-ib", resourceCulture); + object obj = ResourceManager.GetObject("酒店部卡片", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -993,9 +633,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 西餐厅_ia { + public static System.Drawing.Bitmap 锁屏 { get { - object obj = ResourceManager.GetObject("西餐厅-ia", resourceCulture); + object obj = ResourceManager.GetObject("锁屏", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -1003,117 +643,7 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 西餐厅_ib { - get { - object obj = ResourceManager.GetObject("西餐厅-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 财务信息_ia { - get { - object obj = ResourceManager.GetObject("财务信息-ia", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 财务信息_ib { - get { - object obj = ResourceManager.GetObject("财务信息-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 财务部界面 { - get { - object obj = ResourceManager.GetObject("财务部界面", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 资产管理_ia { - get { - object obj = ResourceManager.GetObject("资产管理-ia", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 资产管理_ib { - get { - object obj = ResourceManager.GetObject("资产管理-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 部门管理_ia { - get { - object obj = ResourceManager.GetObject("部门管理-ia", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 部门管理_ib { - get { - object obj = ResourceManager.GetObject("部门管理-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 部门联动_ia { - get { - object obj = ResourceManager.GetObject("部门联动-ia", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 部门联动_ib { - get { - object obj = ResourceManager.GetObject("部门联动-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 酒店部界面 { - get { - object obj = ResourceManager.GetObject("酒店部界面", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 隐藏 { + public static System.Drawing.Bitmap 隐藏 { get { object obj = ResourceManager.GetObject("隐藏", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1123,119 +653,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 预约房 { - get { - object obj = ResourceManager.GetObject("预约房", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 预约房_a { - get { - object obj = ResourceManager.GetObject("预约房-a", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 预约管理 { - get { - object obj = ResourceManager.GetObject("预约管理", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 预约管理_aa { - get { - object obj = ResourceManager.GetObject("预约管理-aa", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 预约管理_ia { - get { - object obj = ResourceManager.GetObject("预约管理-ia", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 预约管理_ib { - get { - object obj = ResourceManager.GetObject("预约管理-ib", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 预订管理 { - get { - object obj = ResourceManager.GetObject("预订管理", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 预订管理_a { - get { - object obj = ResourceManager.GetObject("预订管理-a", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 预订管理_aa { - get { - object obj = ResourceManager.GetObject("预订管理-aa", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 预订管理ab { - get { - object obj = ResourceManager.GetObject("预订管理ab", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 餐厅物资_ia { - get { - object obj = ResourceManager.GetObject("餐厅物资-ia", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// 查找 System.Drawing.Bitmap 类型的本地化资源。 - /// - internal static System.Drawing.Bitmap 餐厅物资_ib { + public static System.Drawing.Bitmap 预约房_hover_icon { get { - object obj = ResourceManager.GetObject("餐厅物资-ib", resourceCulture); + object obj = ResourceManager.GetObject("预约房(hover)icon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -1243,9 +663,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 餐厅管理_ia { + public static System.Drawing.Bitmap 预约房icon { get { - object obj = ResourceManager.GetObject("餐厅管理-ia", resourceCulture); + object obj = ResourceManager.GetObject("预约房icon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -1253,9 +673,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 餐厅管理_ib { + public static System.Drawing.Bitmap 预约状态 { get { - object obj = ResourceManager.GetObject("餐厅管理-ib", resourceCulture); + object obj = ResourceManager.GetObject("预约状态", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -1263,9 +683,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - internal static System.Drawing.Bitmap 餐饮部界面 { + public static System.Drawing.Bitmap 餐饮部卡片 { get { - object obj = ResourceManager.GetObject("餐饮部界面", resourceCulture); + object obj = ResourceManager.GetObject("餐饮部卡片", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } diff --git a/SYS.FormUI/Properties/Resources.resx b/SYS.FormUI/Properties/Resources.resx index b852b363cd73a1fbd9d106932562b62e51626aa6..f68a206feb27ebad9abd0e14f7bfff9279a0dab2 100644 --- a/SYS.FormUI/Properties/Resources.resx +++ b/SYS.FormUI/Properties/Resources.resx @@ -118,367 +118,193 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ..\Resources\Login_b1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\后勤部卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\房卡管理-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\餐饮部卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\清理中2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\脏房(hover)icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\经理部界面.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\注销.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\中餐厅-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\锁屏.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\用户管理-ib1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\库存管理-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\Login_a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\预订管理-a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\资产管理-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\用户管理-ia1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\空房22.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\酒店部界面.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\中餐厅-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\商品消费-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\财务信息-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\后勤管理-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\月亮.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\添 加-a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\维修中2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\餐厅管理-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\客房管理-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\餐厅管理-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\房卡管理-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\会员管理-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\搜索--1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\minus (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\添 加a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\main_bg.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\行政管理-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\用户管理-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\会员管理-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\可住房.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\已住房.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\维修状态.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\delete2a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\水电管理-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\预订管理.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\维修中-a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\扩展功能-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\维修中22.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\消费管理-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\脏房2-a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\Background.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\后勤部界面.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\资产管理-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\更多扩展-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\客房管理-ia1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\获取用户编号-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\会员管理2-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\已住房icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\商品消费-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\主页 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\扩展功能-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\维修房(hover)icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\维修中221.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\組織圖塊.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\消费管理-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\修改a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\监管统计-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\可住房icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\监管统计-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\商品部卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\人事管理-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\可住状态.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\用户管理-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\bin\Debug\打卡.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\内部飞鸽-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\可住房(hover)icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\预约管理-aa.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\检查更新 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\预订管理ab.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\酒店部卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\预订管理-aa.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\添 加a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\维修中.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\lock.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\预约房-a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\维修部卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\客房管理-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\早上.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\西餐厅-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\切换账号.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\delete2-a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\空房.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\导出 (4)1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\内部飞鸽-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\部门联动-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\工程维修-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\餐厅物资-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\minus.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\Login_a1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\后勤管理-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\餐厅物资-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\搜索--1a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\隐藏.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\已住房(hover)icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\人事管理-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\显示.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\预约房.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\脏房状态.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\修改a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\经理部卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\餐饮部界面.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\770e7b52ecafc807247aad51bb6c6b43.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\工程维修-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\内控部卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\button.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\监管小组卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\库存管理-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\个人中心.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\维修中1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\常规部门卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\获取用户编号.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\更多扩展-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\部门管理-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\已预约.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\修改.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\预约管理-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\脏房.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\行政管理-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\清理中.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\1545891726.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\已入住.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\网页预约-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\)1G~Q~(21]3JZZCFW68O7NF.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\部门管理-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\c92311ec80b20a729e525a3f7035363c.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\minus.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\Login_b.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\预约状态.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\部门联动-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\搜索--1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\bin\Debug\打卡.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\咖啡.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\770e7b52ecafc807247aad51bb6c6b43.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\预约房icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\已住房-a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\delete2a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\close.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\财务信息-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\脏房icon1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\客房管理-ib1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\增加 添加 加减 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\西餐厅-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\人力资源部卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\显示.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\已住状态.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\可住房-a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\添加 增加 加.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\搜索--1a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\财务部卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\settings2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\arrow-down-b.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\网页预约-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\总经办卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\脏房2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\minus (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\77377282_p0_master1200.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\预约管理-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\预约房(hover)icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\清理中2-a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\财务部界面.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\修改.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\预约管理.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\维修房icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\人事部界面.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\导出 (4)1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\水电管理-ib.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\Alibaba-PuHuiTi-Regular.ttf;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ..\Resources\获取用户编号-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\隐藏.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\arrow-down-b.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\关于我们.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a \ No newline at end of file diff --git a/SYS.FormUI/Resources/)1G~Q~(21]3JZZCFW68O7NF.png b/SYS.FormUI/Resources/)1G~Q~(21]3JZZCFW68O7NF.png deleted file mode 100644 index 2982a6c9b2bd0abfb708b0f5be9c2c18f6958d85..0000000000000000000000000000000000000000 Binary files a/SYS.FormUI/Resources/)1G~Q~(21]3JZZCFW68O7NF.png and /dev/null differ diff --git a/SYS.FormUI/Resources/1545891726.png b/SYS.FormUI/Resources/1545891726.png deleted file mode 100644 index 1e4c5ba722d100733966e7e0474711233810ce1d..0000000000000000000000000000000000000000 Binary files a/SYS.FormUI/Resources/1545891726.png and /dev/null differ diff --git a/SYS.Library/EntityFramework.dll b/SYS.FormUI/Resources/Alibaba-PuHuiTi-Regular.ttf similarity index 31% rename from SYS.Library/EntityFramework.dll rename to SYS.FormUI/Resources/Alibaba-PuHuiTi-Regular.ttf index 84001638c75cc986ddb783723aeb8d34877d9cdf..9f8ab8d8f14f47c7e6a85e9aef2b619a41bf3075 100644 Binary files a/SYS.Library/EntityFramework.dll and b/SYS.FormUI/Resources/Alibaba-PuHuiTi-Regular.ttf differ diff --git a/SYS.FormUI/Resources/Background.jpg b/SYS.FormUI/Resources/Background.jpg deleted file mode 100644 index b143d0718e758be74a45a688435f0fcb2157a991..0000000000000000000000000000000000000000 Binary files a/SYS.FormUI/Resources/Background.jpg and /dev/null differ diff --git a/SYS.FormUI/Resources/GFont.otf b/SYS.FormUI/Resources/GFont.otf new file mode 100644 index 0000000000000000000000000000000000000000..741201b053b3af12909569d24998691a7b961874 Binary files /dev/null and b/SYS.FormUI/Resources/GFont.otf differ diff --git a/SYS.FormUI/Resources/JetBrainsMono-Regular.ttf b/SYS.FormUI/Resources/JetBrainsMono-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..4781cc7f57b55e3e5defaeecafcd6bd7c096fa21 Binary files /dev/null and b/SYS.FormUI/Resources/JetBrainsMono-Regular.ttf differ diff --git a/SYS.FormUI/Resources/Login_a.png b/SYS.FormUI/Resources/Login_a.png deleted file mode 100644 index 36c3dc7e61843f1f7e3d4f96a3863aba432402e4..0000000000000000000000000000000000000000 Binary files a/SYS.FormUI/Resources/Login_a.png and /dev/null differ diff --git a/SYS.FormUI/Resources/Login_a1.png b/SYS.FormUI/Resources/Login_a1.png deleted file mode 100644 index 36c3dc7e61843f1f7e3d4f96a3863aba432402e4..0000000000000000000000000000000000000000 Binary files a/SYS.FormUI/Resources/Login_a1.png and /dev/null differ diff --git a/SYS.FormUI/Resources/Login_b.png b/SYS.FormUI/Resources/Login_b.png deleted file mode 100644 index 158086c0646a123ba740e1ca3033818c64747880..0000000000000000000000000000000000000000 Binary files a/SYS.FormUI/Resources/Login_b.png and /dev/null differ diff --git a/SYS.FormUI/Resources/Login_b1.png b/SYS.FormUI/Resources/Login_b1.png deleted file mode 100644 index 158086c0646a123ba740e1ca3033818c64747880..0000000000000000000000000000000000000000 Binary files a/SYS.FormUI/Resources/Login_b1.png and /dev/null differ diff --git a/SYS.FormUI/Resources/Mono.ttf b/SYS.FormUI/Resources/Mono.ttf new file mode 100644 index 0000000000000000000000000000000000000000..e03ff7e6990da914a9e855906422f3d64f119dec Binary files /dev/null and b/SYS.FormUI/Resources/Mono.ttf differ diff --git a/SYS.Core/Resource.resx b/SYS.FormUI/Resources/Resource.resx similarity index 94% rename from SYS.Core/Resource.resx rename to SYS.FormUI/Resources/Resource.resx index a0f177e2677febd6bf3af59b40a8ec09ef966ffb..1af7de150c99c12dd67a509fe57c10d63e4eeb04 100644 --- a/SYS.Core/Resource.resx +++ b/SYS.FormUI/Resources/Resource.resx @@ -117,8 +117,4 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Resources\GFont.otf;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - \ No newline at end of file diff --git a/SYS.FormUI/Resources/button.bmp b/SYS.FormUI/Resources/button.bmp deleted file mode 100644 index 861045a225d0f7a4e9fbc2153095001b97e7176a..0000000000000000000000000000000000000000 Binary files a/SYS.FormUI/Resources/button.bmp and /dev/null differ diff --git a/SYS.FormUI/Resources/c92311ec80b20a729e525a3f7035363c.jpg b/SYS.FormUI/Resources/c92311ec80b20a729e525a3f7035363c.jpg deleted file mode 100644 index 0c154198e6359dc75fadad66f9f2b32bc4f00f4a..0000000000000000000000000000000000000000 Binary files a/SYS.FormUI/Resources/c92311ec80b20a729e525a3f7035363c.jpg and /dev/null differ diff --git a/SYS.FormUI/Resources/lock.png b/SYS.FormUI/Resources/lock.png new file mode 100644 index 0000000000000000000000000000000000000000..7dca57cb7ab090a7371a3ad3c60647c263eabb81 Binary files /dev/null and b/SYS.FormUI/Resources/lock.png differ diff --git a/SYS.FormUI/Resources/main_bg.png b/SYS.FormUI/Resources/main_bg.png deleted file mode 100644 index a5915193b003c69fc861696187be86566a34856c..0000000000000000000000000000000000000000 Binary files a/SYS.FormUI/Resources/main_bg.png and /dev/null differ diff --git a/SYS.FormUI/Resources/settings2.png b/SYS.FormUI/Resources/settings2.png new file mode 100644 index 0000000000000000000000000000000000000000..e56e54cdba703b849954937aa21e8692b75786ac Binary files /dev/null and b/SYS.FormUI/Resources/settings2.png differ diff --git "a/SYS.FormUI/Resources/\344\270\252\344\272\272\344\270\255\345\277\203.png" "b/SYS.FormUI/Resources/\344\270\252\344\272\272\344\270\255\345\277\203.png" new file mode 100644 index 0000000000000000000000000000000000000000..8e75c850427cdd9483165d9e8f8420b3a47c9ff3 Binary files /dev/null and "b/SYS.FormUI/Resources/\344\270\252\344\272\272\344\270\255\345\277\203.png" differ diff --git "a/SYS.FormUI/Resources/\344\270\255\351\244\220\345\216\205-ia.png" "b/SYS.FormUI/Resources/\344\270\255\351\244\220\345\216\205-ia.png" deleted file mode 100644 index ef8f6cfcadab11b000eda87f4e111ef4ceacd534..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\344\270\255\351\244\220\345\216\205-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\344\270\255\351\244\220\345\216\205-ib.png" "b/SYS.FormUI/Resources/\344\270\255\351\244\220\345\216\205-ib.png" deleted file mode 100644 index 5cb5c0d5f90bb608ae3b42b5d5cb472d57286def..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\344\270\255\351\244\220\345\216\205-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\344\270\273\351\241\265 (1).png" "b/SYS.FormUI/Resources/\344\270\273\351\241\265 (1).png" new file mode 100644 index 0000000000000000000000000000000000000000..ce108ca91de662cad9381c47cbaa6aaa7b0f46cc Binary files /dev/null and "b/SYS.FormUI/Resources/\344\270\273\351\241\265 (1).png" differ diff --git "a/SYS.FormUI/Resources/\344\272\272\344\272\213\347\256\241\347\220\206-ia.png" "b/SYS.FormUI/Resources/\344\272\272\344\272\213\347\256\241\347\220\206-ia.png" deleted file mode 100644 index 789c48706c4377d72a3be0649a22b07ba95aa0a8..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\344\272\272\344\272\213\347\256\241\347\220\206-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\344\272\272\344\272\213\347\256\241\347\220\206-ib.png" "b/SYS.FormUI/Resources/\344\272\272\344\272\213\347\256\241\347\220\206-ib.png" deleted file mode 100644 index 9649a711b8c5ffba4be3d17fc3b4eb90a3eb3c5d..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\344\272\272\344\272\213\347\256\241\347\220\206-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\344\272\272\344\272\213\351\203\250\347\225\214\351\235\242.jpg" "b/SYS.FormUI/Resources/\344\272\272\344\272\213\351\203\250\347\225\214\351\235\242.jpg" deleted file mode 100644 index a4f29a02aba3ddeecb4e32557f35aa6f223be4ab..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\344\272\272\344\272\213\351\203\250\347\225\214\351\235\242.jpg" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\344\272\272\345\212\233\350\265\204\346\272\220\351\203\250\345\215\241\347\211\207.png" "b/SYS.FormUI/Resources/\344\272\272\345\212\233\350\265\204\346\272\220\351\203\250\345\215\241\347\211\207.png" new file mode 100644 index 0000000000000000000000000000000000000000..a70a961d8a73985576291caa3336826a2c1c33a5 Binary files /dev/null and "b/SYS.FormUI/Resources/\344\272\272\345\212\233\350\265\204\346\272\220\351\203\250\345\215\241\347\211\207.png" differ diff --git "a/SYS.FormUI/Resources/\344\274\232\345\221\230\347\256\241\347\220\206-ia.png" "b/SYS.FormUI/Resources/\344\274\232\345\221\230\347\256\241\347\220\206-ia.png" deleted file mode 100644 index a03b23f74ef7edd7e4731e1bcc2c44f3fd192457..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\344\274\232\345\221\230\347\256\241\347\220\206-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\344\274\232\345\221\230\347\256\241\347\220\206-ib.png" "b/SYS.FormUI/Resources/\344\274\232\345\221\230\347\256\241\347\220\206-ib.png" deleted file mode 100644 index 46aef3a99312486e0201294a932eb0a2f65196e3..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\344\274\232\345\221\230\347\256\241\347\220\206-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\344\274\232\345\221\230\347\256\241\347\220\2062-ib.png" "b/SYS.FormUI/Resources/\344\274\232\345\221\230\347\256\241\347\220\2062-ib.png" deleted file mode 100644 index 16db0a8bf1cc4bf41971e1536a2aa0af432a1916..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\344\274\232\345\221\230\347\256\241\347\220\2062-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\205\263\344\272\216\346\210\221\344\273\254.png" "b/SYS.FormUI/Resources/\345\205\263\344\272\216\346\210\221\344\273\254.png" new file mode 100644 index 0000000000000000000000000000000000000000..195624fd05c5a0067c266b9ae9548102e2ed69c8 Binary files /dev/null and "b/SYS.FormUI/Resources/\345\205\263\344\272\216\346\210\221\344\273\254.png" differ diff --git "a/SYS.FormUI/Resources/\345\206\205\346\216\247\351\203\250\345\215\241\347\211\207.png" "b/SYS.FormUI/Resources/\345\206\205\346\216\247\351\203\250\345\215\241\347\211\207.png" new file mode 100644 index 0000000000000000000000000000000000000000..34c901a338d45a8b68ac233594b5dfa0c47fe262 Binary files /dev/null and "b/SYS.FormUI/Resources/\345\206\205\346\216\247\351\203\250\345\215\241\347\211\207.png" differ diff --git "a/SYS.FormUI/Resources/\345\206\205\351\203\250\351\243\236\351\270\275-ia.png" "b/SYS.FormUI/Resources/\345\206\205\351\203\250\351\243\236\351\270\275-ia.png" deleted file mode 100644 index 7c76637e0522f6eab6ffbff8d074058ab9f2caae..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\206\205\351\203\250\351\243\236\351\270\275-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\206\205\351\203\250\351\243\236\351\270\275-ib.png" "b/SYS.FormUI/Resources/\345\206\205\351\203\250\351\243\236\351\270\275-ib.png" deleted file mode 100644 index a483aa483517d5879da21061b7cb74825a18094e..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\206\205\351\203\250\351\243\236\351\270\275-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\210\207\346\215\242\350\264\246\345\217\267.png" "b/SYS.FormUI/Resources/\345\210\207\346\215\242\350\264\246\345\217\267.png" new file mode 100644 index 0000000000000000000000000000000000000000..51e1b2e9fecd6d799a3659f2dc4976173c68dba2 Binary files /dev/null and "b/SYS.FormUI/Resources/\345\210\207\346\215\242\350\264\246\345\217\267.png" differ diff --git "a/SYS.FormUI/Resources/\345\217\257\344\275\217\346\210\277(hover)icon.png" "b/SYS.FormUI/Resources/\345\217\257\344\275\217\346\210\277(hover)icon.png" new file mode 100644 index 0000000000000000000000000000000000000000..c1dca5d426bce5ebdf7b75f37ea47b2019713c45 Binary files /dev/null and "b/SYS.FormUI/Resources/\345\217\257\344\275\217\346\210\277(hover)icon.png" differ diff --git "a/SYS.FormUI/Resources/\345\217\257\344\275\217\346\210\277-a.png" "b/SYS.FormUI/Resources/\345\217\257\344\275\217\346\210\277-a.png" deleted file mode 100644 index c0f8da4c88c3b77532137f4c87fa3deb0281a736..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\217\257\344\275\217\346\210\277-a.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\217\257\344\275\217\346\210\277.png" "b/SYS.FormUI/Resources/\345\217\257\344\275\217\346\210\277.png" deleted file mode 100644 index 5467870ef4922364f60f49792d9851882cdc1b60..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\217\257\344\275\217\346\210\277.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\217\257\344\275\217\346\210\277icon.png" "b/SYS.FormUI/Resources/\345\217\257\344\275\217\346\210\277icon.png" new file mode 100644 index 0000000000000000000000000000000000000000..ca1dae65d35036c66f7f4572dc8b4eaaff6f2b64 Binary files /dev/null and "b/SYS.FormUI/Resources/\345\217\257\344\275\217\346\210\277icon.png" differ diff --git "a/SYS.FormUI/Resources/\345\217\257\344\275\217\347\212\266\346\200\201.png" "b/SYS.FormUI/Resources/\345\217\257\344\275\217\347\212\266\346\200\201.png" new file mode 100644 index 0000000000000000000000000000000000000000..046f4d87ba6f4d6c992110362ab5d8e2815a52e1 Binary files /dev/null and "b/SYS.FormUI/Resources/\345\217\257\344\275\217\347\212\266\346\200\201.png" differ diff --git "a/SYS.FormUI/Resources/\345\220\216\345\213\244\347\256\241\347\220\206-ia.png" "b/SYS.FormUI/Resources/\345\220\216\345\213\244\347\256\241\347\220\206-ia.png" deleted file mode 100644 index e58f72cf15c3fda7d5f61aa254fa70aec439bd93..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\220\216\345\213\244\347\256\241\347\220\206-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\220\216\345\213\244\347\256\241\347\220\206-ib.png" "b/SYS.FormUI/Resources/\345\220\216\345\213\244\347\256\241\347\220\206-ib.png" deleted file mode 100644 index 0ec398a8ad98a0a85cc6d767acd0fee7ee3bfc65..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\220\216\345\213\244\347\256\241\347\220\206-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\220\216\345\213\244\351\203\250\345\215\241\347\211\207.png" "b/SYS.FormUI/Resources/\345\220\216\345\213\244\351\203\250\345\215\241\347\211\207.png" new file mode 100644 index 0000000000000000000000000000000000000000..9049fef1385af581fbbaf05bcf223ad316486ca2 Binary files /dev/null and "b/SYS.FormUI/Resources/\345\220\216\345\213\244\351\203\250\345\215\241\347\211\207.png" differ diff --git "a/SYS.FormUI/Resources/\345\220\216\345\213\244\351\203\250\347\225\214\351\235\242.jpg" "b/SYS.FormUI/Resources/\345\220\216\345\213\244\351\203\250\347\225\214\351\235\242.jpg" deleted file mode 100644 index b8c8f6148929b810ec2485d6bbcd8f78b3e65571..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\220\216\345\213\244\351\203\250\347\225\214\351\235\242.jpg" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\222\226\345\225\241.png" "b/SYS.FormUI/Resources/\345\222\226\345\225\241.png" new file mode 100644 index 0000000000000000000000000000000000000000..ae3efb12e7d9f6d6c9427baf6a9d84d5ba8cb13d Binary files /dev/null and "b/SYS.FormUI/Resources/\345\222\226\345\225\241.png" differ diff --git "a/SYS.FormUI/Resources/\345\225\206\345\223\201\346\266\210\350\264\271-ia.png" "b/SYS.FormUI/Resources/\345\225\206\345\223\201\346\266\210\350\264\271-ia.png" deleted file mode 100644 index 6059f40c6c1d2a4850780983ca0147c01d88310f..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\225\206\345\223\201\346\266\210\350\264\271-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\225\206\345\223\201\346\266\210\350\264\271-ib.png" "b/SYS.FormUI/Resources/\345\225\206\345\223\201\346\266\210\350\264\271-ib.png" deleted file mode 100644 index c197c6b1457eb2c5ca2cc2d314befafb1d2e25c2..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\225\206\345\223\201\346\266\210\350\264\271-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\225\206\345\223\201\351\203\250\345\215\241\347\211\207.png" "b/SYS.FormUI/Resources/\345\225\206\345\223\201\351\203\250\345\215\241\347\211\207.png" new file mode 100644 index 0000000000000000000000000000000000000000..7e6f811291b4b5920409c14c5359674cae2e9ffb Binary files /dev/null and "b/SYS.FormUI/Resources/\345\225\206\345\223\201\351\203\250\345\215\241\347\211\207.png" differ diff --git "a/SYS.FormUI/Resources/\345\242\236\345\212\240 \346\267\273\345\212\240 \345\212\240\345\207\217 (1).png" "b/SYS.FormUI/Resources/\345\242\236\345\212\240 \346\267\273\345\212\240 \345\212\240\345\207\217 (1).png" new file mode 100644 index 0000000000000000000000000000000000000000..8b1d03ac8f361a787ee47f995aeb66735f955c40 Binary files /dev/null and "b/SYS.FormUI/Resources/\345\242\236\345\212\240 \346\267\273\345\212\240 \345\212\240\345\207\217 (1).png" differ diff --git "a/SYS.FormUI/Resources/\345\256\242\346\210\277\347\256\241\347\220\206-ia.png" "b/SYS.FormUI/Resources/\345\256\242\346\210\277\347\256\241\347\220\206-ia.png" deleted file mode 100644 index b50021dace519e110afff080dd54fee7e53137b7..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\256\242\346\210\277\347\256\241\347\220\206-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\256\242\346\210\277\347\256\241\347\220\206-ia1.png" "b/SYS.FormUI/Resources/\345\256\242\346\210\277\347\256\241\347\220\206-ia1.png" deleted file mode 100644 index b4080fb1855cfb693561f14df2cc35eb92265ca3..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\256\242\346\210\277\347\256\241\347\220\206-ia1.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\256\242\346\210\277\347\256\241\347\220\206-ib.png" "b/SYS.FormUI/Resources/\345\256\242\346\210\277\347\256\241\347\220\206-ib.png" deleted file mode 100644 index 1c7f9f234e8c6902c83de0eb1f71da426204e000..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\256\242\346\210\277\347\256\241\347\220\206-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\256\242\346\210\277\347\256\241\347\220\206-ib1.png" "b/SYS.FormUI/Resources/\345\256\242\346\210\277\347\256\241\347\220\206-ib1.png" deleted file mode 100644 index a06c480adebeb9d2b6917a7fed6fece067000b45..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\256\242\346\210\277\347\256\241\347\220\206-ib1.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\257\274\345\207\272 (2).png" "b/SYS.FormUI/Resources/\345\257\274\345\207\272 (2).png" deleted file mode 100644 index e63f940307d418ead3553d618eaed17f1200c8df..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\257\274\345\207\272 (2).png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\257\274\345\207\272 (2)1.png" "b/SYS.FormUI/Resources/\345\257\274\345\207\272 (2)1.png" deleted file mode 100644 index e63f940307d418ead3553d618eaed17f1200c8df..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\257\274\345\207\272 (2)1.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\267\245\347\250\213\347\273\264\344\277\256-ia.png" "b/SYS.FormUI/Resources/\345\267\245\347\250\213\347\273\264\344\277\256-ia.png" deleted file mode 100644 index 74c70199c792756f0556402bd95643f5bf395237..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\267\245\347\250\213\347\273\264\344\277\256-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\267\245\347\250\213\347\273\264\344\277\256-ib.png" "b/SYS.FormUI/Resources/\345\267\245\347\250\213\347\273\264\344\277\256-ib.png" deleted file mode 100644 index 433627581b3ef09df9f925fc96c6165ef51dda96..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\267\245\347\250\213\347\273\264\344\277\256-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\267\262\344\275\217\346\210\277(hover)icon.png" "b/SYS.FormUI/Resources/\345\267\262\344\275\217\346\210\277(hover)icon.png" new file mode 100644 index 0000000000000000000000000000000000000000..0c3a3049e17afd385282dd7af3175f5f8f62b322 Binary files /dev/null and "b/SYS.FormUI/Resources/\345\267\262\344\275\217\346\210\277(hover)icon.png" differ diff --git "a/SYS.FormUI/Resources/\345\267\262\344\275\217\346\210\277-a.png" "b/SYS.FormUI/Resources/\345\267\262\344\275\217\346\210\277-a.png" deleted file mode 100644 index 1a6e7b6632299b86ac787ab703d617feda22948e..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\267\262\344\275\217\346\210\277-a.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\267\262\344\275\217\346\210\277.png" "b/SYS.FormUI/Resources/\345\267\262\344\275\217\346\210\277.png" deleted file mode 100644 index a1511f5ff4939a6d31d1e3c81103d64f0949b28a..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\267\262\344\275\217\346\210\277.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\267\262\344\275\217\346\210\277icon.png" "b/SYS.FormUI/Resources/\345\267\262\344\275\217\346\210\277icon.png" new file mode 100644 index 0000000000000000000000000000000000000000..d444ebb8f5c3c63ebc852bded823fdf7fb82ce72 Binary files /dev/null and "b/SYS.FormUI/Resources/\345\267\262\344\275\217\346\210\277icon.png" differ diff --git "a/SYS.FormUI/Resources/\345\267\262\344\275\217\347\212\266\346\200\201.png" "b/SYS.FormUI/Resources/\345\267\262\344\275\217\347\212\266\346\200\201.png" new file mode 100644 index 0000000000000000000000000000000000000000..7e0c56e780c9e48f07584c7ee1c72fd57ce31ca2 Binary files /dev/null and "b/SYS.FormUI/Resources/\345\267\262\344\275\217\347\212\266\346\200\201.png" differ diff --git "a/SYS.FormUI/Resources/\345\267\262\345\205\245\344\275\217.png" "b/SYS.FormUI/Resources/\345\267\262\345\205\245\344\275\217.png" deleted file mode 100644 index 9ec59fb1f4d99e8fabc83a59926026d9b4f7ffab..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\267\262\345\205\245\344\275\217.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\267\262\351\242\204\347\272\246.png" "b/SYS.FormUI/Resources/\345\267\262\351\242\204\347\272\246.png" deleted file mode 100644 index 984ea37b664a2f2089fa9971179dab345f7b4c64..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\267\262\351\242\204\347\272\246.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\270\270\350\247\204\351\203\250\351\227\250\345\215\241\347\211\207.png" "b/SYS.FormUI/Resources/\345\270\270\350\247\204\351\203\250\351\227\250\345\215\241\347\211\207.png" new file mode 100644 index 0000000000000000000000000000000000000000..fd2bdd6115eab21f9c65906de9717dc96d9a03ba Binary files /dev/null and "b/SYS.FormUI/Resources/\345\270\270\350\247\204\351\203\250\351\227\250\345\215\241\347\211\207.png" differ diff --git "a/SYS.FormUI/Resources/\345\272\223\345\255\230\347\256\241\347\220\206-ia.png" "b/SYS.FormUI/Resources/\345\272\223\345\255\230\347\256\241\347\220\206-ia.png" deleted file mode 100644 index 0ecaa33c4f9a6fe80c7400985e300785203087e5..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\272\223\345\255\230\347\256\241\347\220\206-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\345\272\223\345\255\230\347\256\241\347\220\206-ib.png" "b/SYS.FormUI/Resources/\345\272\223\345\255\230\347\256\241\347\220\206-ib.png" deleted file mode 100644 index f5f4ed9467955653d9ca3ee1b060d44fd7106dee..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\345\272\223\345\255\230\347\256\241\347\220\206-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\346\200\273\347\273\217\345\212\236\345\215\241\347\211\207.png" "b/SYS.FormUI/Resources/\346\200\273\347\273\217\345\212\236\345\215\241\347\211\207.png" new file mode 100644 index 0000000000000000000000000000000000000000..28bfeee18ae3cbb9280c9a26f211932c05b25ef8 Binary files /dev/null and "b/SYS.FormUI/Resources/\346\200\273\347\273\217\345\212\236\345\215\241\347\211\207.png" differ diff --git "a/SYS.FormUI/Resources/\346\210\277\345\215\241\347\256\241\347\220\206-ia.png" "b/SYS.FormUI/Resources/\346\210\277\345\215\241\347\256\241\347\220\206-ia.png" deleted file mode 100644 index 4c64c7dd936e186a798b1765ecea37fb095af8c4..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\346\210\277\345\215\241\347\256\241\347\220\206-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\346\210\277\345\215\241\347\256\241\347\220\206-ib.png" "b/SYS.FormUI/Resources/\346\210\277\345\215\241\347\256\241\347\220\206-ib.png" deleted file mode 100644 index d0e0682e02cb4594125e6cce62fe89ceb5f8e26c..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\346\210\277\345\215\241\347\256\241\347\220\206-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\346\211\251\345\261\225\345\212\237\350\203\275-ia.png" "b/SYS.FormUI/Resources/\346\211\251\345\261\225\345\212\237\350\203\275-ia.png" deleted file mode 100644 index a631729a3fce260b3ef8fef3fef8fd3785b41bc1..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\346\211\251\345\261\225\345\212\237\350\203\275-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\346\211\251\345\261\225\345\212\237\350\203\275-ib.png" "b/SYS.FormUI/Resources/\346\211\251\345\261\225\345\212\237\350\203\275-ib.png" deleted file mode 100644 index 29a8462fd70cc1511924d1e7e83c11eab4ecc07c..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\346\211\251\345\261\225\345\212\237\350\203\275-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\346\227\251\344\270\212.png" "b/SYS.FormUI/Resources/\346\227\251\344\270\212.png" new file mode 100644 index 0000000000000000000000000000000000000000..31509299647b539898ced35b971c5e67e0fdc02a Binary files /dev/null and "b/SYS.FormUI/Resources/\346\227\251\344\270\212.png" differ diff --git "a/SYS.FormUI/Resources/\346\233\264\345\244\232\346\211\251\345\261\225-ia.png" "b/SYS.FormUI/Resources/\346\233\264\345\244\232\346\211\251\345\261\225-ia.png" deleted file mode 100644 index b53692f34623d55741c35685db5cc69b5bfe639e..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\346\233\264\345\244\232\346\211\251\345\261\225-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\346\233\264\345\244\232\346\211\251\345\261\225-ib.png" "b/SYS.FormUI/Resources/\346\233\264\345\244\232\346\211\251\345\261\225-ib.png" deleted file mode 100644 index 749d617a3bd233e9794e2503e13b4f60490c3fde..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\346\233\264\345\244\232\346\211\251\345\261\225-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\346\234\210\344\272\256.png" "b/SYS.FormUI/Resources/\346\234\210\344\272\256.png" new file mode 100644 index 0000000000000000000000000000000000000000..1caddfd6e9741eca79fc829250ea508d6596d0f6 Binary files /dev/null and "b/SYS.FormUI/Resources/\346\234\210\344\272\256.png" differ diff --git "a/SYS.FormUI/Resources/\346\243\200\346\237\245\346\233\264\346\226\260 (1).png" "b/SYS.FormUI/Resources/\346\243\200\346\237\245\346\233\264\346\226\260 (1).png" new file mode 100644 index 0000000000000000000000000000000000000000..84b0766bda0cb7da6ad7980e5ebb7a0662027b06 Binary files /dev/null and "b/SYS.FormUI/Resources/\346\243\200\346\237\245\346\233\264\346\226\260 (1).png" differ diff --git "a/SYS.FormUI/Resources/\346\260\264\347\224\265\347\256\241\347\220\206-ia.png" "b/SYS.FormUI/Resources/\346\260\264\347\224\265\347\256\241\347\220\206-ia.png" deleted file mode 100644 index e9d82495a13582bd9c5947975d9cfe78c6155037..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\346\260\264\347\224\265\347\256\241\347\220\206-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\346\260\264\347\224\265\347\256\241\347\220\206-ib.png" "b/SYS.FormUI/Resources/\346\260\264\347\224\265\347\256\241\347\220\206-ib.png" deleted file mode 100644 index 8c4cd51c772a68e8f8d6e4366a18e84c6ae6a25f..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\346\260\264\347\224\265\347\256\241\347\220\206-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\346\263\250\351\224\200.png" "b/SYS.FormUI/Resources/\346\263\250\351\224\200.png" new file mode 100644 index 0000000000000000000000000000000000000000..24c205237c0ad17e09af926318cfc0b9bba82203 Binary files /dev/null and "b/SYS.FormUI/Resources/\346\263\250\351\224\200.png" differ diff --git "a/SYS.FormUI/Resources/\346\266\210\350\264\271\347\256\241\347\220\206-ia.png" "b/SYS.FormUI/Resources/\346\266\210\350\264\271\347\256\241\347\220\206-ia.png" deleted file mode 100644 index 324d8b12316317c7781c825b4f78d4eea846aa10..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\346\266\210\350\264\271\347\256\241\347\220\206-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\346\266\210\350\264\271\347\256\241\347\220\206-ib.png" "b/SYS.FormUI/Resources/\346\266\210\350\264\271\347\256\241\347\220\206-ib.png" deleted file mode 100644 index f8624524880e532b9491ab8e8dc92f00b8677ef1..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\346\266\210\350\264\271\347\256\241\347\220\206-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\346\267\273\345\212\240 \345\242\236\345\212\240 \345\212\240.png" "b/SYS.FormUI/Resources/\346\267\273\345\212\240 \345\242\236\345\212\240 \345\212\240.png" new file mode 100644 index 0000000000000000000000000000000000000000..1a0809a4478ec9fae2534cf3fdc8400617b860a8 Binary files /dev/null and "b/SYS.FormUI/Resources/\346\267\273\345\212\240 \345\242\236\345\212\240 \345\212\240.png" differ diff --git "a/SYS.FormUI/Resources/\346\270\205\347\220\206\344\270\255.png" "b/SYS.FormUI/Resources/\346\270\205\347\220\206\344\270\255.png" deleted file mode 100644 index cf0610d21795a645e211c2e6ea7b4c93c5a8982e..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\346\270\205\347\220\206\344\270\255.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\346\270\205\347\220\206\344\270\2552-a.png" "b/SYS.FormUI/Resources/\346\270\205\347\220\206\344\270\2552-a.png" deleted file mode 100644 index 2dab654453183e748553eea89c2d29774f27f8f9..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\346\270\205\347\220\206\344\270\2552-a.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\346\270\205\347\220\206\344\270\2552.png" "b/SYS.FormUI/Resources/\346\270\205\347\220\206\344\270\2552.png" deleted file mode 100644 index 9da634d4490f75c6a54fa87e58e59358207f0673..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\346\270\205\347\220\206\344\270\2552.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\224\250\346\210\267\347\256\241\347\220\206-ia.png" "b/SYS.FormUI/Resources/\347\224\250\346\210\267\347\256\241\347\220\206-ia.png" deleted file mode 100644 index 4457b28ac9a987391f90a153f5706574aad8406a..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\224\250\346\210\267\347\256\241\347\220\206-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\224\250\346\210\267\347\256\241\347\220\206-ia1.png" "b/SYS.FormUI/Resources/\347\224\250\346\210\267\347\256\241\347\220\206-ia1.png" deleted file mode 100644 index bbd649ccab85f205d5b0f467df51813dbf1a3bfd..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\224\250\346\210\267\347\256\241\347\220\206-ia1.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\224\250\346\210\267\347\256\241\347\220\206-ib.png" "b/SYS.FormUI/Resources/\347\224\250\346\210\267\347\256\241\347\220\206-ib.png" deleted file mode 100644 index 718b1a49ce62dea244d74064f29adc83a07f4d63..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\224\250\346\210\267\347\256\241\347\220\206-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\224\250\346\210\267\347\256\241\347\220\206-ib1.png" "b/SYS.FormUI/Resources/\347\224\250\346\210\267\347\256\241\347\220\206-ib1.png" deleted file mode 100644 index b7a61a4c8cc03dfd8fbecf5e91f4304e54276da5..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\224\250\346\210\267\347\256\241\347\220\206-ib1.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\233\221\347\256\241\345\260\217\347\273\204\345\215\241\347\211\207.png" "b/SYS.FormUI/Resources/\347\233\221\347\256\241\345\260\217\347\273\204\345\215\241\347\211\207.png" new file mode 100644 index 0000000000000000000000000000000000000000..04ab28ee7ebc8e3e244ce6ec6482381e9d8ba72f Binary files /dev/null and "b/SYS.FormUI/Resources/\347\233\221\347\256\241\345\260\217\347\273\204\345\215\241\347\211\207.png" differ diff --git "a/SYS.FormUI/Resources/\347\233\221\347\256\241\347\273\237\350\256\241-ia.png" "b/SYS.FormUI/Resources/\347\233\221\347\256\241\347\273\237\350\256\241-ia.png" deleted file mode 100644 index b46fa1d489432a606aa602b126b5efa2dd8a5230..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\233\221\347\256\241\347\273\237\350\256\241-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\233\221\347\256\241\347\273\237\350\256\241-ib.png" "b/SYS.FormUI/Resources/\347\233\221\347\256\241\347\273\237\350\256\241-ib.png" deleted file mode 100644 index 992f226b5b59e908dbcb9370d53f05c77b7d43fb..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\233\221\347\256\241\347\273\237\350\256\241-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\251\272\346\210\277.png" "b/SYS.FormUI/Resources/\347\251\272\346\210\277.png" deleted file mode 100644 index b628be30ceef5c3fb63389d96d897688017126b8..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\251\272\346\210\277.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\251\272\346\210\27722.png" "b/SYS.FormUI/Resources/\347\251\272\346\210\27722.png" deleted file mode 100644 index 81b0454e7efb49b0a1039a333ee09027d4300895..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\251\272\346\210\27722.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\265\204\347\271\224\345\234\226\345\241\212.bmp" "b/SYS.FormUI/Resources/\347\265\204\347\271\224\345\234\226\345\241\212.bmp" new file mode 100644 index 0000000000000000000000000000000000000000..32e99a63b70d33b580a52440a17f5b471add23f0 Binary files /dev/null and "b/SYS.FormUI/Resources/\347\265\204\347\271\224\345\234\226\345\241\212.bmp" differ diff --git "a/SYS.FormUI/Resources/\347\273\217\347\220\206\351\203\250\345\215\241\347\211\207.png" "b/SYS.FormUI/Resources/\347\273\217\347\220\206\351\203\250\345\215\241\347\211\207.png" new file mode 100644 index 0000000000000000000000000000000000000000..01b97aaa68a9e4d3f01fa6041c4a8185c5089c95 Binary files /dev/null and "b/SYS.FormUI/Resources/\347\273\217\347\220\206\351\203\250\345\215\241\347\211\207.png" differ diff --git "a/SYS.FormUI/Resources/\347\273\217\347\220\206\351\203\250\347\225\214\351\235\242.jpg" "b/SYS.FormUI/Resources/\347\273\217\347\220\206\351\203\250\347\225\214\351\235\242.jpg" deleted file mode 100644 index 5de68737d9100f221a984469b18c8f739907ee27..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\273\217\347\220\206\351\203\250\347\225\214\351\235\242.jpg" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\255-a.png" "b/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\255-a.png" deleted file mode 100644 index bff2f4862744063790515b879156c4377f56da95..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\255-a.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\255.png" "b/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\255.png" deleted file mode 100644 index 4d7e7f0d117ada894c52366634667befc3b5c250..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\255.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\2551.png" "b/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\2551.png" deleted file mode 100644 index 1e1b376be46bf35158ca9bbe9f83a06ff170558b..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\2551.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\2552.png" "b/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\2552.png" deleted file mode 100644 index 7a9574eb195f812bf51e65e7e7121c594076b96a..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\2552.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\25522.png" "b/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\25522.png" deleted file mode 100644 index 9803d6cf6fc6128646bf19117a8744418adc81b9..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\25522.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\255221.png" "b/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\255221.png" deleted file mode 100644 index 3ba1de74ed3050f11af0a26a3b54d46a1557dbe5..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\273\264\344\277\256\344\270\255221.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\273\264\344\277\256\346\210\277(hover)icon.png" "b/SYS.FormUI/Resources/\347\273\264\344\277\256\346\210\277(hover)icon.png" new file mode 100644 index 0000000000000000000000000000000000000000..2b12319437d589743210f84777e7de6557b71612 Binary files /dev/null and "b/SYS.FormUI/Resources/\347\273\264\344\277\256\346\210\277(hover)icon.png" differ diff --git "a/SYS.FormUI/Resources/\347\273\264\344\277\256\346\210\277icon.png" "b/SYS.FormUI/Resources/\347\273\264\344\277\256\346\210\277icon.png" new file mode 100644 index 0000000000000000000000000000000000000000..e4af31f0223a6486962981b322a1e46278df8590 Binary files /dev/null and "b/SYS.FormUI/Resources/\347\273\264\344\277\256\346\210\277icon.png" differ diff --git "a/SYS.FormUI/Resources/\347\273\264\344\277\256\347\212\266\346\200\201.png" "b/SYS.FormUI/Resources/\347\273\264\344\277\256\347\212\266\346\200\201.png" new file mode 100644 index 0000000000000000000000000000000000000000..7ac5dd7a0382e302d471d5fee31f8365a6505eaa Binary files /dev/null and "b/SYS.FormUI/Resources/\347\273\264\344\277\256\347\212\266\346\200\201.png" differ diff --git "a/SYS.FormUI/Resources/\347\273\264\344\277\256\351\203\250\345\215\241\347\211\207.png" "b/SYS.FormUI/Resources/\347\273\264\344\277\256\351\203\250\345\215\241\347\211\207.png" new file mode 100644 index 0000000000000000000000000000000000000000..3d5c1f1f5a0fe165f8202a8880045944e216801e Binary files /dev/null and "b/SYS.FormUI/Resources/\347\273\264\344\277\256\351\203\250\345\215\241\347\211\207.png" differ diff --git "a/SYS.FormUI/Resources/\347\275\221\351\241\265\351\242\204\347\272\246-ia.png" "b/SYS.FormUI/Resources/\347\275\221\351\241\265\351\242\204\347\272\246-ia.png" deleted file mode 100644 index 6646049b42844e772c6b1926c00eefd08529766f..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\275\221\351\241\265\351\242\204\347\272\246-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\347\275\221\351\241\265\351\242\204\347\272\246-ib.png" "b/SYS.FormUI/Resources/\347\275\221\351\241\265\351\242\204\347\272\246-ib.png" deleted file mode 100644 index 43f43bd879a254cd7cc6ca92b041cd0b43b0ceb3..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\347\275\221\351\241\265\351\242\204\347\272\246-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\350\204\217\346\210\277(hover)icon.png" "b/SYS.FormUI/Resources/\350\204\217\346\210\277(hover)icon.png" new file mode 100644 index 0000000000000000000000000000000000000000..3a73a1abcbaab7bd834d5261c7f8059a1b8a8052 Binary files /dev/null and "b/SYS.FormUI/Resources/\350\204\217\346\210\277(hover)icon.png" differ diff --git "a/SYS.FormUI/Resources/\350\204\217\346\210\277.png" "b/SYS.FormUI/Resources/\350\204\217\346\210\277.png" deleted file mode 100644 index d56c7a468ec256d238b2aae0e823a9aec371d3d3..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\350\204\217\346\210\277.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\350\204\217\346\210\2772-a.png" "b/SYS.FormUI/Resources/\350\204\217\346\210\2772-a.png" deleted file mode 100644 index 7c9322d248e99740eb728c4f8205eb4b191bfd54..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\350\204\217\346\210\2772-a.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\350\204\217\346\210\2772.png" "b/SYS.FormUI/Resources/\350\204\217\346\210\2772.png" deleted file mode 100644 index cf14cf8678b42a071caab965cdb5669649f966ae..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\350\204\217\346\210\2772.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\350\204\217\346\210\277icon1.png" "b/SYS.FormUI/Resources/\350\204\217\346\210\277icon1.png" new file mode 100644 index 0000000000000000000000000000000000000000..b2435f604db4ca8321d41552d7dbd1a6d508fe7e Binary files /dev/null and "b/SYS.FormUI/Resources/\350\204\217\346\210\277icon1.png" differ diff --git "a/SYS.FormUI/Resources/\350\204\217\346\210\277\347\212\266\346\200\201.png" "b/SYS.FormUI/Resources/\350\204\217\346\210\277\347\212\266\346\200\201.png" new file mode 100644 index 0000000000000000000000000000000000000000..93ca38aab93f9fbd3ebfcdc3fd18ba7080b70bb6 Binary files /dev/null and "b/SYS.FormUI/Resources/\350\204\217\346\210\277\347\212\266\346\200\201.png" differ diff --git "a/SYS.FormUI/Resources/\350\241\214\346\224\277\347\256\241\347\220\206-ia.png" "b/SYS.FormUI/Resources/\350\241\214\346\224\277\347\256\241\347\220\206-ia.png" deleted file mode 100644 index 462049a28bf6da77f90c68c84bcbbcec334f65f1..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\350\241\214\346\224\277\347\256\241\347\220\206-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\350\241\214\346\224\277\347\256\241\347\220\206-ib.png" "b/SYS.FormUI/Resources/\350\241\214\346\224\277\347\256\241\347\220\206-ib.png" deleted file mode 100644 index 372a062130b8f7dd59d64f2ba1d92a1bb51bfddd..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\350\241\214\346\224\277\347\256\241\347\220\206-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\350\245\277\351\244\220\345\216\205-ia.png" "b/SYS.FormUI/Resources/\350\245\277\351\244\220\345\216\205-ia.png" deleted file mode 100644 index 3e19cd41525f3796cbefa6e0d0ae7f611be23d28..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\350\245\277\351\244\220\345\216\205-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\350\245\277\351\244\220\345\216\205-ib.png" "b/SYS.FormUI/Resources/\350\245\277\351\244\220\345\216\205-ib.png" deleted file mode 100644 index 1950b6ba203d5116b8dba055dcc8ab82d762fd80..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\350\245\277\351\244\220\345\216\205-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\350\264\242\345\212\241\344\277\241\346\201\257-ia.png" "b/SYS.FormUI/Resources/\350\264\242\345\212\241\344\277\241\346\201\257-ia.png" deleted file mode 100644 index 1583d682424db94a42b1f33f939f15f52bdefba5..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\350\264\242\345\212\241\344\277\241\346\201\257-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\350\264\242\345\212\241\344\277\241\346\201\257-ib.png" "b/SYS.FormUI/Resources/\350\264\242\345\212\241\344\277\241\346\201\257-ib.png" deleted file mode 100644 index 83435c6345633a2b3f991b17b13fc38a13449719..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\350\264\242\345\212\241\344\277\241\346\201\257-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\350\264\242\345\212\241\351\203\250\345\215\241\347\211\207.png" "b/SYS.FormUI/Resources/\350\264\242\345\212\241\351\203\250\345\215\241\347\211\207.png" new file mode 100644 index 0000000000000000000000000000000000000000..531524e0b946d4a5c2f0dc4a12226b9c12e6850b Binary files /dev/null and "b/SYS.FormUI/Resources/\350\264\242\345\212\241\351\203\250\345\215\241\347\211\207.png" differ diff --git "a/SYS.FormUI/Resources/\350\264\242\345\212\241\351\203\250\347\225\214\351\235\242.jpg" "b/SYS.FormUI/Resources/\350\264\242\345\212\241\351\203\250\347\225\214\351\235\242.jpg" deleted file mode 100644 index 405b4ea8fdcf60fd91c0d9f9d3c004c483435ff0..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\350\264\242\345\212\241\351\203\250\347\225\214\351\235\242.jpg" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\350\265\204\344\272\247\347\256\241\347\220\206-ia.png" "b/SYS.FormUI/Resources/\350\265\204\344\272\247\347\256\241\347\220\206-ia.png" deleted file mode 100644 index 6093dca7589ce36e9edfa8fe43d9e48370c5aceb..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\350\265\204\344\272\247\347\256\241\347\220\206-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\350\265\204\344\272\247\347\256\241\347\220\206-ib.png" "b/SYS.FormUI/Resources/\350\265\204\344\272\247\347\256\241\347\220\206-ib.png" deleted file mode 100644 index 21ef578d91bf0588f367f9b69cff2ebf39d21e87..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\350\265\204\344\272\247\347\256\241\347\220\206-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\203\250\351\227\250\347\256\241\347\220\206-ia.png" "b/SYS.FormUI/Resources/\351\203\250\351\227\250\347\256\241\347\220\206-ia.png" deleted file mode 100644 index f15544312d64225e138d1bd44aa3639079359dde..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\203\250\351\227\250\347\256\241\347\220\206-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\203\250\351\227\250\347\256\241\347\220\206-ib.png" "b/SYS.FormUI/Resources/\351\203\250\351\227\250\347\256\241\347\220\206-ib.png" deleted file mode 100644 index 2a8cc0c90c6ddbd47a3ac132eaede91b392e8e0e..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\203\250\351\227\250\347\256\241\347\220\206-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\203\250\351\227\250\350\201\224\345\212\250-ia.png" "b/SYS.FormUI/Resources/\351\203\250\351\227\250\350\201\224\345\212\250-ia.png" deleted file mode 100644 index 65ecc3527002b6b6c58fb126f8e3f2289600998f..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\203\250\351\227\250\350\201\224\345\212\250-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\203\250\351\227\250\350\201\224\345\212\250-ib.png" "b/SYS.FormUI/Resources/\351\203\250\351\227\250\350\201\224\345\212\250-ib.png" deleted file mode 100644 index 7a244dd26cb768897b048b45d50dabc78fa75f6f..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\203\250\351\227\250\350\201\224\345\212\250-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\205\222\345\272\227\351\203\250\345\215\241\347\211\207.png" "b/SYS.FormUI/Resources/\351\205\222\345\272\227\351\203\250\345\215\241\347\211\207.png" new file mode 100644 index 0000000000000000000000000000000000000000..4b16ce1072261f11fc6fe938a7687574384671fb Binary files /dev/null and "b/SYS.FormUI/Resources/\351\205\222\345\272\227\351\203\250\345\215\241\347\211\207.png" differ diff --git "a/SYS.FormUI/Resources/\351\205\222\345\272\227\351\203\250\347\225\214\351\235\242.jpg" "b/SYS.FormUI/Resources/\351\205\222\345\272\227\351\203\250\347\225\214\351\235\242.jpg" deleted file mode 100644 index be2190570777e23f64bbc35b8ad40a4e46fc4a89..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\205\222\345\272\227\351\203\250\347\225\214\351\235\242.jpg" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\224\201\345\261\217.png" "b/SYS.FormUI/Resources/\351\224\201\345\261\217.png" new file mode 100644 index 0000000000000000000000000000000000000000..1e06a51a35eee37351b69f786f035fdf9552f251 Binary files /dev/null and "b/SYS.FormUI/Resources/\351\224\201\345\261\217.png" differ diff --git "a/SYS.FormUI/Resources/\351\242\204\347\272\246\346\210\277(hover)icon.png" "b/SYS.FormUI/Resources/\351\242\204\347\272\246\346\210\277(hover)icon.png" new file mode 100644 index 0000000000000000000000000000000000000000..7d6ba1e80bb4aa9899257ca905fe367776da0897 Binary files /dev/null and "b/SYS.FormUI/Resources/\351\242\204\347\272\246\346\210\277(hover)icon.png" differ diff --git "a/SYS.FormUI/Resources/\351\242\204\347\272\246\346\210\277-a.png" "b/SYS.FormUI/Resources/\351\242\204\347\272\246\346\210\277-a.png" deleted file mode 100644 index fe865839d4c695a847dec90405133620d2548c49..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\242\204\347\272\246\346\210\277-a.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\242\204\347\272\246\346\210\277.png" "b/SYS.FormUI/Resources/\351\242\204\347\272\246\346\210\277.png" deleted file mode 100644 index fe1de9d572d46d608d76d49b74608d2270b42bfc..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\242\204\347\272\246\346\210\277.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\242\204\347\272\246\346\210\277icon.png" "b/SYS.FormUI/Resources/\351\242\204\347\272\246\346\210\277icon.png" new file mode 100644 index 0000000000000000000000000000000000000000..214d13988e717e5f243dd0f08b359bc70c9c2ed8 Binary files /dev/null and "b/SYS.FormUI/Resources/\351\242\204\347\272\246\346\210\277icon.png" differ diff --git "a/SYS.FormUI/Resources/\351\242\204\347\272\246\347\212\266\346\200\201.png" "b/SYS.FormUI/Resources/\351\242\204\347\272\246\347\212\266\346\200\201.png" new file mode 100644 index 0000000000000000000000000000000000000000..0c73fdb6a09a64a82c53a0598d1dc2e48cb070ed Binary files /dev/null and "b/SYS.FormUI/Resources/\351\242\204\347\272\246\347\212\266\346\200\201.png" differ diff --git "a/SYS.FormUI/Resources/\351\242\204\347\272\246\347\256\241\347\220\206-aa.png" "b/SYS.FormUI/Resources/\351\242\204\347\272\246\347\256\241\347\220\206-aa.png" deleted file mode 100644 index bcbe3a2f656f36b1a8145229a019476f339d2791..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\242\204\347\272\246\347\256\241\347\220\206-aa.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\242\204\347\272\246\347\256\241\347\220\206-ia.png" "b/SYS.FormUI/Resources/\351\242\204\347\272\246\347\256\241\347\220\206-ia.png" deleted file mode 100644 index dae9109ef4c0ebf28027316f526c61707b0f1265..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\242\204\347\272\246\347\256\241\347\220\206-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\242\204\347\272\246\347\256\241\347\220\206-ib.png" "b/SYS.FormUI/Resources/\351\242\204\347\272\246\347\256\241\347\220\206-ib.png" deleted file mode 100644 index 2593e20a5ecce2d154d262d5f36a540e74b60627..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\242\204\347\272\246\347\256\241\347\220\206-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\242\204\347\272\246\347\256\241\347\220\206.png" "b/SYS.FormUI/Resources/\351\242\204\347\272\246\347\256\241\347\220\206.png" deleted file mode 100644 index e2f0804b7ef9529eae5c866f66f12017d38c0986..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\242\204\347\272\246\347\256\241\347\220\206.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\242\204\350\256\242\347\256\241\347\220\206-a.png" "b/SYS.FormUI/Resources/\351\242\204\350\256\242\347\256\241\347\220\206-a.png" deleted file mode 100644 index 362b49d8fffe12eb6761c7fdf6e0dd474c997911..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\242\204\350\256\242\347\256\241\347\220\206-a.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\242\204\350\256\242\347\256\241\347\220\206-aa.png" "b/SYS.FormUI/Resources/\351\242\204\350\256\242\347\256\241\347\220\206-aa.png" deleted file mode 100644 index 1c4b24dc0f1be8a7644214683f6083601774e336..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\242\204\350\256\242\347\256\241\347\220\206-aa.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\242\204\350\256\242\347\256\241\347\220\206.png" "b/SYS.FormUI/Resources/\351\242\204\350\256\242\347\256\241\347\220\206.png" deleted file mode 100644 index 6b740d7c512840cd1652fc154e3e79048ee6432a..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\242\204\350\256\242\347\256\241\347\220\206.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\242\204\350\256\242\347\256\241\347\220\206ab.png" "b/SYS.FormUI/Resources/\351\242\204\350\256\242\347\256\241\347\220\206ab.png" deleted file mode 100644 index cd27db47428855a732f60df62f3234a6a4d1fea4..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\242\204\350\256\242\347\256\241\347\220\206ab.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\244\220\345\216\205\347\211\251\350\265\204-ia.png" "b/SYS.FormUI/Resources/\351\244\220\345\216\205\347\211\251\350\265\204-ia.png" deleted file mode 100644 index eced3ea9d09c7b9b898cb1343e8c31bde3f045ac..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\244\220\345\216\205\347\211\251\350\265\204-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\244\220\345\216\205\347\211\251\350\265\204-ib.png" "b/SYS.FormUI/Resources/\351\244\220\345\216\205\347\211\251\350\265\204-ib.png" deleted file mode 100644 index 0dca3de4ad9531822209bf0b5a17cb17a0681107..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\244\220\345\216\205\347\211\251\350\265\204-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\244\220\345\216\205\347\256\241\347\220\206-ia.png" "b/SYS.FormUI/Resources/\351\244\220\345\216\205\347\256\241\347\220\206-ia.png" deleted file mode 100644 index 6e6ebc7d51aa3129c0d789f320823b5178425a98..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\244\220\345\216\205\347\256\241\347\220\206-ia.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\244\220\345\216\205\347\256\241\347\220\206-ib.png" "b/SYS.FormUI/Resources/\351\244\220\345\216\205\347\256\241\347\220\206-ib.png" deleted file mode 100644 index aedd7d8be460e8b0b8d2c8c7851e68646c2b40c8..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\244\220\345\216\205\347\256\241\347\220\206-ib.png" and /dev/null differ diff --git "a/SYS.FormUI/Resources/\351\244\220\351\245\256\351\203\250\345\215\241\347\211\207.png" "b/SYS.FormUI/Resources/\351\244\220\351\245\256\351\203\250\345\215\241\347\211\207.png" new file mode 100644 index 0000000000000000000000000000000000000000..4e055088420883d015431424808c2c17f98f41db Binary files /dev/null and "b/SYS.FormUI/Resources/\351\244\220\351\245\256\351\203\250\345\215\241\347\211\207.png" differ diff --git "a/SYS.FormUI/Resources/\351\244\220\351\245\256\351\203\250\347\225\214\351\235\242.jpg" "b/SYS.FormUI/Resources/\351\244\220\351\245\256\351\203\250\347\225\214\351\235\242.jpg" deleted file mode 100644 index 7704190d09f9b72175154d824b6fd10599720735..0000000000000000000000000000000000000000 Binary files "a/SYS.FormUI/Resources/\351\244\220\351\245\256\351\203\250\347\225\214\351\235\242.jpg" and /dev/null differ diff --git a/SYS.FormUI/SYS.FormUI.csproj b/SYS.FormUI/SYS.FormUI.csproj index 7cec511e5ec3def2657f0279fc151fa608b78523..21688a06a15d5274644e131c5533dbaa68560e6f 100644 --- a/SYS.FormUI/SYS.FormUI.csproj +++ b/SYS.FormUI/SYS.FormUI.csproj @@ -1,6 +1,5 @@  - Debug @@ -57,7 +56,7 @@ true - bitbug_favicon %281%29.ico + Logo\bitbug_favicon %281%29.ico 4CFC6407EAAE3B4D84510B17FBE22638DBF289B5 @@ -75,8 +74,12 @@ SYS.FormUI.Program - - ..\packages\Costura.Fody.3.3.3\lib\net40\Costura.dll + + ..\packages\Costura.Fody.1.6.2\lib\dotnet\Costura.dll + False + + + ..\SYS.Library\kse.dll False @@ -90,9 +93,8 @@ False ..\SYS.Library\MySql.Data.EntityFramework.dll - - False - bin\Debug\netchartdir.dll + + ..\packages\SqlSugar.5.0.2\lib\SqlSugar.dll ..\packages\SunnyUI.2.2.9\lib\net40\SunnyUI.dll @@ -101,6 +103,8 @@ + + @@ -111,412 +115,484 @@ + + C:\Users\Administrator\Downloads\Compressed\WindowsFormsApplication2\WindowsFormsApplication2\Until\bin\Debug\Until.dll + - - Component - Always + + Form - + + FrmChangeAdminPwd.cs + + Form - - FrmAdminMain.cs + + FrmDepartment.cs - + Form - - FrmChart.cs + + FrmEducation.cs - + Form - - FrmExtendOption.cs + + FrmMySpace.cs - + Form - - FrmAboutUs.cs + + FrmNation.cs - + Form - - FrmAddRoom.cs + + FrmNotice.cs - + Form - - FrmAddWorker.cs + + FrmPosition.cs - + Form - - FrmAdminEnter.cs + + FrmRoomMap.cs - + Form - - FrmBackAdmin.cs + + FrmSexType.cs + + + UserControl + Always + + + CtrlOrgChar.cs + Always + + + UserControl + Always + + + CtrlOrgPanel.cs + Always + + + + Always + + + UserControl + + + ucPositionInformation.cs - + + UserControl + + + ucEducationInformation.cs + + + UserControl + + + ucBaseInformation.cs + + Form - - FrmBackUpDatabase.cs + + FrmBackgroundSystem.cs - + Form - + + FrmChart.cs + + + Form + + + FrmAboutUs.cs + + + Form + + + FrmAddRoom.cs + + + Form + + + FrmAddWorker.cs + + + Form + + + FrmAdminEnter.cs + + + Form + + FrmCash.cs - + Form - - FrmCashList.cs + + FrmCheckList.cs - + Form - + FrmChangePosition.cs - + Form - + FrmChangeRoom.cs - + Form - + FrmChangeWorker.cs - + Form - + FrmCheckIn.cs - + Form - + FrmCheckInfo.cs - + Form - + FrmCheckOutForm.cs - + Form - + FrmCustoManager.cs - + Form - + FrmCustoSpend.cs - + Form - + FrmGoodOrBad.cs - + Form - + FrmInputs.cs - + Form - + FrmOperation.cs - + Form - + FrmReserList.cs - - Form - - - FrmRestoreDatabase.cs - - + Form - + FrmRoomStateManager.cs - + Form - + FrmSelectCustoInfo.cs - + Form - + FrmSellThing.cs - + Form - + FrmSellThingManager.cs - - Form - - - FrmStart.cs - - - Form - - - FrmTest.cs - - + Form - - FrmTopChange.cs + + FrmWorkerManager.cs - + Form - - FrmUpLoad.cs + + FrmUpLoadNotice.cs - + Form - + FrmCustomerManager.cs - + Form - + FrmLogin.cs - + Form - + FrmMain.cs - + Form - + FrmReserManager.cs - + Form - + FrmRoomManager.cs - + Form - + FrmUnLockSystem.cs - + Form - + FrmWorkerCheckInfo.cs + - + UserControl - + ucHistory.cs - + UserControl - + ucRoomList.cs - - Form - - - WebSite.cs - - + Form - - WtiInfo.cs + + FrmWtiInfo.cs - - FrmAdminMain.cs + + FrmChangeAdminPwd.cs - - FrmChart.cs + + FrmMySpace.cs - - FrmExtendOption.cs + + FrmBackgroundSystem.cs + + + FrmChart.cs - + FrmAboutUs.cs Designer - + FrmAddRoom.cs - + FrmAddWorker.cs - - FrmAdminEnter.cs + + FrmDepartment.cs + + + FrmEducation.cs + + + FrmNation.cs + + + FrmNotice.cs + + + FrmPosition.cs - - FrmBackAdmin.cs + + FrmRoomMap.cs - - FrmBackUpDatabase.cs + + FrmSexType.cs - + + FrmAdminEnter.cs + + FrmCash.cs - - FrmCashList.cs + + FrmCheckList.cs - + FrmChangePosition.cs - + FrmChangeRoom.cs - + FrmChangeWorker.cs - + FrmCheckIn.cs - + FrmCheckInfo.cs - + FrmCheckOutForm.cs - + FrmCustoManager.cs - + FrmCustoSpend.cs - + FrmGoodOrBad.cs - + FrmInputs.cs - + FrmOperation.cs - + FrmReserList.cs - - FrmRestoreDatabase.cs - - + FrmRoomStateManager.cs - + FrmSelectCustoInfo.cs - + FrmSellThing.cs - + FrmSellThingManager.cs - - FrmStart.cs - - - FrmTest.cs + + FrmWorkerManager.cs - - FrmTopChange.cs + + FrmUpLoadNotice.cs - - FrmUpLoad.cs - - + FrmCustomerManager.cs - + FrmLogin.cs Designer - + FrmMain.cs - + FrmReserManager.cs - + FrmRoomManager.cs - + FrmUnLockSystem.cs - + FrmWorkerCheckInfo.cs + + CtrlOrgChar.cs + Always + + + CtrlOrgPanel.cs + Always + + + ucPositionInformation.cs + + + ucEducationInformation.cs + + + ucBaseInformation.cs + - ResXFileCodeGenerator - Resources.Designer.cs + PublicResXFileCodeGenerator Designer + Resources.Designer.cs - - True - Resources.resx - True - - + ucHistory.cs - + ucRoomList.cs - - WebSite.cs + + FrmWtiInfo.cs - - WtiInfo.cs + + Designer + Always @@ -525,11 +601,19 @@ SettingsSingleFileGenerator Settings.Designer.cs + + True + True + Resources.resx + True Settings.settings True + + Always + @@ -537,171 +621,6 @@ Designer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -726,48 +645,12 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -794,36 +677,6 @@ True
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -831,52 +684,93 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + False - Microsoft .NET Framework 4.5.2 %28x86 和 x64%29 + Microsoft .NET Framework 4.6.1 %28x86 和 x64%29 true @@ -890,24 +784,26 @@ {600f4cc8-4323-4237-a55c-bfef4b67d57c} SYS.Application + + {65501AF6-C629-448A-847E-1BCD60665865} + SYS.Common + {cd039d0f-bd50-4fbf-b9cd-cdfab25c7dfa} SYS.Core - - {c60df246-c4fc-4045-91e5-093b0aa4d4ef} - SYS.Manager - + - + 这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。 - - + + + SNorthwind ) - --EntitySetMapping - --EntityTypeMapping - --MappingFragment - --EntityTypeMapping - --MappingFragment - --AssociationSetMapping - --AssociationTypeMapping - --MappingFragment - This class represents the metadata for the AssociationSetMapping elements in the - above example. And it is possible to access the AssociationTypeMap underneath it. - There will be only one TypeMap under AssociationSetMap. - - - - - Initializes a new AssociationSetMapping instance. - - The association set to be mapped. - The store entity set to be mapped. - The parent container mapping. - - - - Gets the association set that is mapped. - - - - - Gets the contained association type mapping. - - - - - Gets or sets the corresponding function mapping. Can be null. - - - - - Gets the store entity set that is mapped. - - - - - Gets or sets the source end property mapping. - - - - - Gets or sets the target end property mapping. - - - - - Gets the property mapping conditions. - - - - - Adds a property mapping condition. - - The condition to add. - - - - Removes a property mapping condition. - - The property mapping condition to remove. - - - - Describes modification function mappings for an association set. - - - - - Initializes a new AssociationSetModificationFunctionMapping instance. - - An association set. - A delete function mapping. - An insert function mapping. - - - - Gets the association set. - - - - - Gets the delete function mapping. - - - - - Gets the insert function mapping. - - - - - - - - Represents the Mapping metadata for an association type map in CS space. - - - For Example if conceptually you could represent the CS MSL file as following - --Mapping - --EntityContainerMapping ( CNorthwind-->SNorthwind ) - --EntitySetMapping - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap - --ScalarPropertyMap - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap - --ComplexPropertyMap - --ComplexTypeMap - --ScalarPropertyMap - --ScalarPropertyMap - --ScalarPropertyMap - --AssociationSetMapping - --AssociationTypeMapping - --MappingFragment - --EndPropertyMap - --ScalarPropertyMap - --ScalarPropertyMap - --EndPropertyMap - --ScalarPropertyMap - This class represents the metadata for all association Type map elements in the - above example. Users can access the table mapping fragments under the - association type mapping through this class. - - - - - Creates an AssociationTypeMapping instance. - - The AssociationSetMapping that - the contains this AssociationTypeMapping. - - - - Gets the AssociationSetMapping that contains this AssociationTypeMapping. - - - - - Gets the association type being mapped. - - - - - Gets the single mapping fragment. - - - - - Mapping metadata for Complex properties. - - - For Example if conceptually you could represent the CS MSL file as following - --Mapping - --EntityContainerMapping ( CNorthwind-->SNorthwind ) - --EntitySetMapping - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ComplexPropertyMap - --ComplexTypeMapping - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --DiscriminatorPropertyMap ( constant value-->SMemberMetadata ) - --ComplexTypeMapping - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --DiscriminatorPropertyMap ( constant value-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --AssociationSetMapping - --AssociationTypeMapping - --MappingFragment - --EndPropertyMap - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --EndPropertyMap - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - This class represents the metadata for all the complex property map elements in the - above example. ComplexPropertyMaps contain ComplexTypeMaps which define mapping based - on the type of the ComplexProperty in case of inheritance. - - - - - Construct a new Complex Property mapping object - - The MemberMetadata object that represents this Complex member - - - - Gets a read only collections of type mappings corresponding to the - nested complex types. - - - - - Adds a type mapping corresponding to a nested complex type. - - The complex type mapping to be added. - - - - Removes a type mapping corresponding to a nested complex type. - - The complex type mapping to be removed. - - - - Mapping metadata for Complex Types. - - - - - Creates a ComplexTypeMapping instance. - - The ComplexType being mapped. - - - - Gets the ComplexType being mapped. - - - - - Gets a read-only collection of property mappings. - - - - - Gets a read-only collection of property mapping conditions. - - - - - Adds a property mapping. - - The property mapping to be added. - - - - Removes a property mapping. - - The property mapping to be removed. - - - - Adds a property mapping condition. - - The property mapping condition to be added. - - - - Removes a property mapping condition. - - The property mapping condition to be removed. - - - - Mapping metadata for Conditional property mapping on a type. - Condition Property Mapping specifies a Condition either on the C side property or S side property. - - - For Example if conceptually you could represent the CS MSL file as following - --Mapping - --EntityContainerMapping ( CNorthwind-->SNorthwind ) - --EntitySetMapping - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ConditionPropertyMap ( constant value-->SMemberMetadata ) - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ComplexPropertyMap - --ComplexTypeMap - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ConditionPropertyMap ( constant value-->SMemberMetadata ) - --AssociationSetMapping - --AssociationTypeMapping - --MappingFragment - --EndPropertyMap - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --EndPropertyMap - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - This class represents the metadata for all the condition property map elements in the - above example. - - - - - Gets an EdmProperty that specifies the mapped property. - - - - - Gets an EdmProperty that specifies the mapped column. - - - - - Mapping metadata for End property of an association. - - - For Example if conceptually you could represent the CS MSL file as following - --Mapping - --EntityContainerMapping ( CNorthwind-->SNorthwind ) - --EntitySetMapping - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ComplexPropertyMap - --ComplexTypeMapping - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --DiscriminatorPropertyMap ( constant value-->SMemberMetadata ) - --ComplexTypeMapping - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --DiscriminatorPropertyMap ( constant value-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --AssociationSetMapping - --AssociationTypeMapping - --MappingFragment - --EndPropertyMap - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --EndPropertyMap - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - This class represents the metadata for all the end property map elements in the - above example. EndPropertyMaps provide mapping for each end of the association. - - - - - Creates an association end property mapping. - - An AssociationEndMember that specifies - the association end to be mapped. - - - - Gets an AssociationEndMember that specifies the mapped association end. - - - - - Gets a ReadOnlyCollection of ScalarPropertyMapping that specifies the children - of this association end property mapping. - - - - - Adds a child property-column mapping. - - A ScalarPropertyMapping that specifies - the property-column mapping to be added. - - - - Removes a child property-column mapping. - - A ScalarPropertyMapping that specifies - the property-column mapping to be removed. - - - - Represents the Mapping metadata for the EntityContainer map in CS space. - Only one EntityContainerMapping element is allowed in the MSL file for CS mapping. - - - For Example if conceptually you could represent the CS MSL file as following - ---Mapping - --EntityContainerMapping ( CNorthwind-->SNorthwind ) - --EntitySetMapping - --AssociationSetMapping - The type represents the metadata for EntityContainerMapping element in the above example. - The EntitySetBaseMapping elements that are children of the EntityContainerMapping element - can be accessed through the properties on this type. - - - We currently assume that an Entity Container on the C side - is mapped to a single Entity Container in the S - space. - - - - - Initializes a new EntityContainerMapping instance. - - The conceptual entity container to be mapped. - The store entity container to be mapped. - The parent mapping item collection. - Flag indicating whether to generate update views. - - - - Gets the parent mapping item collection. - - - - - Gets the type kind for this item - - - - - Gets the conceptual entity container. - - - - - Gets the store entity container. - - - - - Gets the entity set mappings. - - - - - Gets the association set mappings. - - - - - Gets the function import mappings. - - - - - Gets a flag that indicates whether to generate the update views or not. - - - - - Adds an entity set mapping. - - The entity set mapping to add. - - - - Removes an association set mapping. - - The association set mapping to remove. - - - - Adds an association set mapping. - - The association set mapping to add. - - - - Removes an association set mapping. - - The association set mapping to remove. - - - - Adds a function import mapping. - - The function import mapping to add. - - - - Removes a function import mapping. - - The function import mapping to remove. - - - - Represents the Mapping metadata for an Extent in CS space. - - - For Example if conceptually you could represent the CS MSL file as following - --Mapping - --EntityContainerMapping ( CNorthwind-->SNorthwind ) - --EntitySetMapping - --EntityTypeMapping - --MappingFragment - --EntityTypeMapping - --MappingFragment - --AssociationSetMapping - --AssociationTypeMapping - --MappingFragment - This class represents the metadata for all the extent map elements in the - above example namely EntitySetMapping, AssociationSetMapping and CompositionSetMapping. - The EntitySetBaseMapping elements that are children of the EntityContainerMapping element - can be accessed through the properties on this type. - - - - - Gets the parent container mapping. - - - - - Gets or sets the query view associated with this mapping. - - - - - Represents the Mapping metadata for an EntitySet in CS space. - - - For Example if conceptually you could represent the CS MSL file as following - --Mapping - --EntityContainerMapping ( CNorthwind-->SNorthwind ) - --EntitySetMapping - --EntityTypeMapping - --MappingFragment - --EntityTypeMapping - --MappingFragment - --AssociationSetMapping - --AssociationTypeMapping - --MappingFragment - This class represents the metadata for the EntitySetMapping elements in the - above example. And it is possible to access the EntityTypeMaps underneath it. - - - - - Initializes a new EntitySetMapping instance. - - The entity set to be mapped. - The parent container mapping. - - - - Gets the entity set that is mapped. - - - - - Gets the contained entity type mappings. - - - - - Gets the corresponding function mappings. - - - - - Adds a type mapping. - - The type mapping to add. - - - - Removes a type mapping. - - The type mapping to remove. - - - - Adds a function mapping. - - The function mapping to add. - - - - Removes a function mapping. - - The function mapping to remove. - - - - Mapping metadata for Entity type. - If an EntitySet represents entities of more than one type, than we will have - more than one EntityTypeMapping for an EntitySet( For ex : if - PersonSet Entity extent represents entities of types Person and Customer, - than we will have two EntityType Mappings under mapping for PersonSet). - - - For Example if conceptually you could represent the CS MSL file as following - --Mapping - --EntityContainerMapping ( CNorthwind-->SNorthwind ) - --EntitySetMapping - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap - --ScalarPropertyMap - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap - --ComplexPropertyMap - --ScalarPropertyMap - --ScalarPropertyMap - --ScalarPropertyMap - --AssociationSetMapping - --AssociationTypeMapping - --MappingFragment - --EndPropertyMap - --ScalarPropertyMap - --ScalarPropertyMap - --EndPropertyMap - --ScalarPropertyMap - This class represents the metadata for all entity Type map elements in the - above example. Users can access the table mapping fragments under the - entity type mapping through this class. - - - - - Creates an EntityTypeMapping instance. - - The EntitySetMapping that contains this EntityTypeMapping. - - - - Gets the EntitySetMapping that contains this EntityTypeMapping. - - - - - Gets the single EntityType being mapped. Throws exception in case of hierarchy type mapping. - - - - - Gets a flag that indicates whether this is a type hierarchy mapping. - - - - - Gets a read-only collection of mapping fragments. - - - - - Gets the mapped entity types. - - - - - Gets the mapped base types for a hierarchy mapping. - - - - - Adds an entity type to the mapping. - - The EntityType to be added. - - - - Removes an entity type from the mapping. - - The EntityType to be removed. - - - - Adds an entity type hierarchy to the mapping. - The hierarchy is represented by the specified root entity type. - - The root EntityType of the hierarchy to be added. - - - - Removes an entity type hierarchy from the mapping. - The hierarchy is represented by the specified root entity type. - - The root EntityType of the hierarchy to be removed. - - - - Adds a mapping fragment. - - The mapping fragment to be added. - - - - Removes a mapping fragment. - - The mapping fragment to be removed. - - - - Describes modification function mappings for an entity type within an entity set. - - - - - Initializes a new EntityTypeModificationFunctionMapping instance. - - An entity type. - A delete function mapping. - An insert function mapping. - An updated function mapping. - - - - Gets the entity type. - - - - - Gets the delete function mapping. - - - - - Gets the insert function mapping. - - - - - Gets the update function mapping. - - - - - - - - Base class for the type created at design time to store the generated views. - - - - Returns the key/value pair at the specified index, which contains the view and its key. - The key/value pair at index , which contains the view and its key. - The index of the view. - - - - Gets or sets the name of . - - The container name. - - - - Gets or sets in storage schema. - - Container name. - - - Hash value. - Hash value. - - - Hash value of views. - Hash value. - - - Gets or sets view count. - View count. - - - - Attribute to mark the assemblies that contain the generated views type. - - - - - Initializes a new instance of the class. - - The view type. - - - Gets the T:System.Type of the view. - The T:System.Type of the view. - - - - Represents a complex type mapping for a function import result. - - - - - Initializes a new FunctionImportComplexTypeMapping instance. - - The return type. - The property mappings for the result type of a function import. - - - - Ges the return type. - - - - - Represents a function import entity type mapping. - - - - - Initializes a new FunctionImportEntityTypeMapping instance. - - The entity types at the base of - the type hierarchies to be mapped. - The entity types to be mapped. - The property mappings for the result types of a function import. - The mapping conditions. - - - - Gets the entity types being mapped. - - - - - Gets the entity types at the base of the hierarchies being mapped. - - - - - Gets the mapping conditions. - - - - - Represents a mapping condition for a function import result. - - - - - Gets the name of the column used to evaluate the condition. - - - - - - - - Represents a mapping condition for the result of a function import - evaluated by checking null or not null. - - - - - Initializes a new FunctionImportEntityTypeMappingConditionIsNull instance. - - The name of the column used to evaluate the condition. - Flag that indicates whether a null or not null check is performed. - - - - Gets a flag that indicates whether a null or not null check is performed. - - - - - Represents a mapping condition for the result of a function import, - evaluated by comparison with a specified value. - - - - - Initializes a new FunctionImportEntityTypeMappingConditionValue instance. - - The name of the column used to evaluate the condition. - The value to compare with. - - - - Gets the value used for comparison. - - - - - Represents a mapping from a model function import to a store composable or non-composable function. - - - - - Gets model function (or source of the mapping) - - - - - Gets store function (or target of the mapping) - - - - - Represents a mapping from a model function import to a store composable function. - - - - - Initializes a new FunctionImportMappingComposable instance. - - The model function import. - The store composable function. - The result mapping for the function import. - The parent container mapping. - - - - Gets the result mapping for the function import. - - - - - Represents a mapping from a model function import to a store non-composable function. - - - - - Initializes a new FunctionImportMappingNonComposable instance. - - The model function import. - The store non-composable function. - The function import result mappings. - The parent container mapping. - - - - Gets the function import result mappings. - - - - - Represents a result mapping for a function import. - - - - - Gets the type mappings. - - - - - Adds a type mapping. - - The type mapping to add. - - - - Removes a type mapping. - - The type mapping to remove. - - - - Base class for mapping a property of a function import return type. - - - - - Maps a function import return type property to a table column. - - - - - Initializes a new FunctionImportReturnTypeScalarPropertyMapping instance. - - The mapped property name. - The mapped column name. - - - - Gets the mapped property name. - - - - - Gets the mapped column name. - - - - - Specifies a function import structural type mapping. - - - - - Gets the property mappings for the result type of a function import. - - - - - Specifies a mapping condition evaluated by checking whether the value - of the a property/column is null or not null. - - - - - Creates an IsNullConditionMapping instance. - - An EdmProperty that specifies a property or column. - A boolean that indicates whether to perform a null or a not-null check. - - - - Gets a bool that specifies whether the condition is evaluated by performing a null check - or a not-null check. - - - - - Represents the base item class for all the mapping metadata - - - - - Represents the metadata for mapping fragment. - A set of mapping fragments makes up the Set mappings( EntitySet, AssociationSet or CompositionSet ) - Each MappingFragment provides mapping for those properties of a type that map to a single table. - - - For Example if conceptually you could represent the CS MSL file as following - --Mapping - --EntityContainerMapping ( CNorthwind-->SNorthwind ) - --EntitySetMapping - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ComplexPropertyMap - --ComplexTypeMapping - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --DiscriminatorPropertyMap ( constant value-->SMemberMetadata ) - --ComplexTypeMapping - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --DiscriminatorPropertyMap ( constant value-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --AssociationSetMapping - --AssociationTypeMapping - --MappingFragment - --EndPropertyMap - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --EndPropertyMap - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - This class represents the metadata for all the mapping fragment elements in the - above example. Users can access all the top level constructs of - MappingFragment element like EntityKey map, Property Maps, Discriminator - property through this mapping fragment class. - - - - - Creates a MappingFragment instance. - - The EntitySet corresponding to the table of view being mapped. - The TypeMapping that contains this MappingFragment. - Flag that indicates whether to include 'DISTINCT' when generating queries. - - - - Gets the EntitySet corresponding to the table or view being mapped. - - - - - Gets the TypeMapping that contains this MappingFragment. - - - - - Gets a flag that indicates whether to include 'DISTINCT' when generating queries. - - - - - Gets a read-only collection of property mappings. - - - - - Gets a read-only collection of property mapping conditions. - - - - - Adds a property mapping. - - The property mapping to be added. - - - - Removes a property mapping. - - The property mapping to be removed. - - - - Adds a property mapping condition. - - The property mapping condition to be added. - - - - Removes a property mapping condition. - - The property mapping condition to be removed. - - - - Base class for items in the mapping space (DataSpace.CSSpace) - - - - - Class for representing a collection of mapping items in Edm space. - - - - - Describes modification function binding for change processing of entities or associations. - - - - - Initializes a new ModificationFunctionMapping instance. - - The entity or association set. - The entity or association type. - The metadata of function to which we should bind. - Bindings for function parameters. - The output parameter producing number of rows affected. - Bindings for the results of function evaluation - - - - Gets output parameter producing number of rows affected. May be null. - - - - - Gets Metadata of function to which we should bind. - - - - - Gets bindings for function parameters. - - - - - Gets bindings for the results of function evaluation. - - - - - - - - Describes the location of a member within an entity or association type structure. - - - - - Initializes a new ModificationFunctionMemberPath instance. - - Gets the members in the path from the leaf (the member being bound) - to the root of the structure. - Gets the association set to which we are navigating - via this member. If the value is null, this is not a navigation member path. - - - - Gets the members in the path from the leaf (the member being bound) - to the Root of the structure. - - - - - Gets the association set to which we are navigating via this member. If the value - is null, this is not a navigation member path. - - - - - - - - Binds a modification function parameter to a member of the entity or association being modified. - - - - - Initializes a new ModificationFunctionParameterBinding instance. - - The parameter taking the value. - The path to the entity or association member defining the value. - A flag indicating whether the current or original member value is being bound. - - - - Gets the parameter taking the value. - - - - - Gets the path to the entity or association member defining the value. - - - - - Gets a flag indicating whether the current or original - member value is being bound. - - - - - - - - Defines a binding from a named result set column to a member taking the value. - - - - - Initializes a new ModificationFunctionResultBinding instance. - - The name of the column to bind from the function result set. - The property to be set on the entity. - - - - Gets the name of the column to bind from the function result set. - - - - - Gets the property to be set on the entity. - - - - - - - - Mapping metadata for all types of property mappings. - - - For Example if conceptually you could represent the CS MSL file as following - --Mapping - --EntityContainerMapping ( CNorthwind-->SNorthwind ) - --EntitySetMapping - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap - --ScalarPropertyMap - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap - --ComplexPropertyMap - --ScalarPropertyMap - --ScalarPropertyMap - --ScalarPropertyMap - --AssociationSetMapping - --AssociationTypeMapping - --MappingFragment - --EndPropertyMap - --ScalarPropertyMap - --ScalarPropertyMap - --EndPropertyMap - --ScalarPropertyMap - This class represents the metadata for all property map elements in the - above example. This includes the scalar property maps, complex property maps - and end property maps. - - - - - Gets an EdmProperty that specifies the mapped property. - - - - - Mapping metadata for scalar properties. - - - For Example if conceptually you could represent the CS MSL file as following - --Mapping - --EntityContainerMapping ( CNorthwind-->SNorthwind ) - --EntitySetMapping - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ComplexPropertyMap - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --AssociationSetMapping - --AssociationTypeMapping - --MappingFragment - --EndPropertyMap - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - --EndPropertyMap - --ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata ) - This class represents the metadata for all the scalar property map elements in the - above example. - - - - - Creates a mapping between a simple property and a column. - - The property to be mapped. - The column to be mapped. - - - - Gets an EdmProperty that specifies the mapped column. - - - - - Represents a collection of items in Storage Mapping (CS Mapping) space. - - - - Initializes a new instance of the class using the specified , and a collection of string indicating the metadata file paths. - The that this mapping is to use. - The that this mapping is to use. - The file paths that this mapping is to use. - - - Initializes a new instance of the class using the specified , and XML readers. - The that this mapping is to use. - The that this mapping is to use. - The XML readers that this mapping is to use. - - - - Gets or sets a for creating instances - that are used to retrieve pre-generated mapping views. - - - - Gets the version of this represents. - The version of this represents. - - - - Computes a hash value for the container mapping specified by the names of the mapped containers. - - The name of a container in the conceptual model. - The name of a container in the store model. - A string that specifies the computed hash value. - - - - Computes a hash value for the single container mapping in the collection. - - A string that specifies the computed hash value. - - - - Creates a dictionary of (extent, generated view) for a container mapping specified by - the names of the mapped containers. - - The name of a container in the conceptual model. - The name of a container in the store model. - A list that accumulates potential errors. - - A dictionary of (, ) that specifies the generated views. - - - - - Creates a dictionary of (extent, generated view) for the single container mapping - in the collection. - - A list that accumulates potential errors. - - A dictionary of (, ) that specifies the generated views. - - - - - Factory method that creates a . - - - The edm metadata collection to map. Must not be null. - - - The store metadata collection to map. Must not be null. - - - MSL artifacts to load. Must not be null. - - - Paths to MSL artifacts. Used in error messages. Can be null in which case - the base Uri of the XmlReader will be used as a path. - - - The collection of errors encountered while loading. - - - instance if no errors encountered. Otherwise null. - - - - - Specifies a structural type mapping. - - - - - Gets a read-only collection of property mappings. - - - - - Gets a read-only collection of property mapping conditions. - - - - - Adds a property mapping. - - The property mapping to be added. - - - - Removes a property mapping. - - The property mapping to be removed. - - - - Adds a property mapping condition. - - The property mapping condition to be added. - - - - Removes a property mapping condition. - - The property mapping condition to be removed. - - - - Represents the Mapping metadata for a type map in CS space. - - - For Example if conceptually you could represent the CS MSL file as following - --Mapping - --EntityContainerMapping ( CNorthwind-->SNorthwind ) - --EntitySetMapping - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap - --ScalarPropertyMap - --EntityTypeMapping - --MappingFragment - --EntityKey - --ScalarPropertyMap - --ComplexPropertyMap - --ScalarPropertyMap - --ScalarPropertyMap - --ScalarPropertyMap - --AssociationSetMapping - --AssociationTypeMapping - --MappingFragment - --EndPropertyMap - --ScalarPropertyMap - --ScalarPropertyMap - --EndPropertyMap - --ScalarPropertyMap - This class represents the metadata for all the Type map elements in the - above example namely EntityTypeMapping, AssociationTypeMapping and CompositionTypeMapping. - The TypeMapping elements contain TableMappingFragments which in turn contain the property maps. - - - - - Specifies a mapping condition evaluated by comparing the value of - a property or column with a given value. - - - - - Creates a ValueConditionMapping instance. - - An EdmProperty that specifies a property or column. - An object that specifies the value to compare with. - - - - Gets an object that specifies the value to check against. - - - - - metadata exception class - - - - - Initializes a new instance of the class with a default message. - - - - - Initializes a new instance of the class with the specified message. - - The exception message. - - - - Initializes a new instance of the class with the specified message and inner exception. - - The exception message. - - The exception that is the cause of this . - - - - - Represents a end of a Association Type - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Creates a read-only AssociationEndMember instance. - - The name of the association end member. - The reference type for the end. - The multiplicity of the end. - Flag that indicates the delete behavior of the end. - Metadata properties to be associated with the instance. - The newly created AssociationEndMember instance. - The specified name is null or empty. - The specified reference type is null. - - - - Class for representing an Association set - - - - - Gets the association related to this . - - - An object that represents the association related to this - - . - - - - - Gets the ends of this . - - - A collection of type that contains the ends of this - - . - - - - - Gets the built-in type kind for this . - - - A object that represents built-in type kind for this - - . - - - - - Creates a read-only AssociationSet instance from the specified parameters. - - The name of the association set. - The association type of the elements in the association set. - The entity set for the source association set end. - The entity set for the target association set end. - Metadata properties to be associated with the instance. - The newly created AssociationSet instance. - The specified name is null or empty. - The specified association type is null. - - The entity type of one of the ends of the specified - association type does not match the entity type of the corresponding entity set end. - - - - - Class representing a AssociationSet End - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets the parent association set of this . - - - An object that represents the parent association set of this - - . - - Thrown if Setter is called when the AssociationSetEnd instance is in ReadOnly state - - - - Gets the End member that this object corresponds to. - - - An object that represents the End member that this - - object corresponds to. - - Thrown if Setter is called when the AssociationSetEnd instance is in ReadOnly state - - - - Gets the name of the End for this . - - - The name of the End for this . - - - - - Gets the name of the End role for this . - - - The name of the End role for this . - - Thrown if Setter is called when the AssociationSetEnd instance is in ReadOnly state - - - Gets the entity set referenced by this End role. - - An object that represents the entity set referred by this End role. - - - - - Returns the name of the End role for this . - - - The name of the End role for this . - - - - - Describes an association/relationship between two entities in the conceptual model or a foreign key relationship - between two tables in the store model. In the conceptual model the dependant class may or may not define a foreign key property. - If a foreign key is defined the property will be true and the property will contain details of the foreign keys - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets the list of ends for this . - - - A collection of type that contains the list of ends for this - - . - - - - Gets or sets the referential constraint. - The referential constraint. - - - - Gets the list of constraints for this . - - - A collection of type that contains the list of constraints for this - - . - - - - Gets the Boolean property value that specifies whether the column is a foreign key. - A Boolean value that specifies whether the column is a foreign key. If true, the column is a foreign key. If false (default), the column is not a foreign key. - - - - Creates a read-only AssociationType instance from the specified parameters. - - The name of the association type. - The namespace of the association type. - Flag that indicates a foreign key (FK) relationship. - The data space for the association type. - The source association end member. - The target association end member. - A referential constraint. - Metadata properties to be associated with the instance. - The newly created AssociationType instance. - The specified name is null or empty. - The specified namespace is null or empty. - - - - List of all the built in types - - - - - Association Type Kind - - - - - AssociationSetEnd Kind - - - - - AssociationSet Kind - - - - - Association Type Kind - - - - - EntitySetBase Kind - - - - - Entity Type Base Kind - - - - - Collection Type Kind - - - - - Collection Kind - - - - - Complex Type Kind - - - - - Documentation Kind - - - - - DeleteAction Type Kind - - - - - Edm Type Kind - - - - - Entity Container Kind - - - - - Entity Set Kind - - - - - Entity Type Kind - - - - - Enumeration Type Kind - - - - - Enum Member Kind - - - - - Facet Kind - - - - - EdmFunction Kind - - - - - Function Parameter Kind - - - - - Global Item Type Kind - - - - - Metadata Property Kind - - - - - Navigation Property Kind - - - - - Metadata Item Type Kind - - - - - EdmMember Type Kind - - - - - Parameter Mode Kind - - - - - Primitive Type Kind - - - - - Primitive Type Kind Kind - - - - - EdmProperty Type Kind - - - - - ProviderManifest Type Kind - - - - - Referential Constraint Type Kind - - - - - Ref Type Kind - - - - - RelationshipEnd Type Kind - - - - - Relationship Multiplicity Type Kind - - - - - Relationship Set Type Kind - - - - - Relationship Type - - - - - Row Type Kind - - - - - Simple Type Kind - - - - - Structural Type Kind - - - - - Type Information Kind - - - - - Kind of collection (applied to Properties) - - - - - Property is not a Collection - - - - - Collection has Bag semantics( unordered and duplicates ok) - - - - - Collection has List semantics - (Order is deterministic and duplicates ok) - - - - - Represents the Edm Collection Type - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets the instance of the class that contains the type of the element that this current - - object includes and facets for that type. - - - The instance of the class that contains the type of the element that this current - - object includes and facets for that type. - - - - - Represents the Edm Complex Type. This can be used to configure complex types - from a conceptual-space model-based convention. Complex types are not supported in the store model. - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets the list of properties for this . - - - A collection of type that contains the list of properties for this - - . - - - - - Creates a new instance of the type. - - The name of the complex type. - The namespace of the complex type. - The dataspace to which the complex type belongs to. - Members of the complex type. - Metadata properties to be associated with the instance. - Thrown if either name, namespace or members argument is null. - - A new instance a the type. - - - The newly created will be read only. - - - - - The concurrency mode for properties. - - - - - Default concurrency mode: the property is never validated - at write time - - - - - Fixed concurrency mode: the property is always validated at - write time - - - - - Serializes an that conforms to the restrictions of a single - CSDL schema file to an XML writer. The model to be serialized must contain a single - . - - - - - Occurs when an error is encountered serializing the model. - - - - - Serialize the to the XmlWriter. - - - The EdmModel to serialize. - - The XmlWriter to serialize to. - The serialized model's namespace. - true if the model is valid; otherwise, false. - - - - Information about an error that occurred processing an Entity Framework model. - - - - - Gets an optional value indicating which property of the source item caused the event to be raised. - - - - - Gets an optional descriptive message the describes the error that is being raised. - - - - - Gets a value indicating the that caused the event to be raised. - - - - - DataSpace - - - - - OSpace indicates the item in the clr space - - - - - CSpace indicates the item in the CSpace - edm primitive types + - types defined in csdl - - - - - SSpace indicates the item in the SSpace - - - - - Mapping between OSpace and CSpace - - - - - Mapping between CSpace and SSpace - - - - - Extension methods for . - - - - - Gets the conceptual model from the specified DbModel. - - An instance of a class that implements IEdmModelAdapter (ex. DbModel). - An instance of EdmModel that represents the conceptual model. - - - - Gets the store model from the specified DbModel. - - An instance of a class that implements IEdmModelAdapter (ex. DbModel). - An instance of EdmModel that represents the store model. - - - - Class representing the Documentation associated with an item - - - - - Initializes a new Documentation instance. - - A summary string. - A long description string. - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets the summary for this . - - - The summary for this . - - - - - Gets the long description for this . - - - The long description for this . - - - - - Gets a value indicating whether this object contains only a null or an empty - - and a - - . - - - true if this object contains only a null or an empty - - and a - - ; otherwise, false. - - - - - Returns the summary for this . - - - The summary for this . - - - - - This class encapsulates the error information for a generic EDM error. - - - - Gets the error message. - The error message. - - - - Class for representing a function - - - - - Gets the built-in type kind for this . - - - One of the enumeration values of the enumeration. - - - - Returns the full name (namespace plus name) of this type. - The full name of the type. - - - - Gets the parameters of this . - - - A collection of type that contains the parameters of this - - . - - - - - Adds a parameter to this function. - - The parameter to be added. - - - - Gets the return parameter of this . - - - A object that represents the return parameter of this - - . - - - - - Gets the return parameters of this . - - - A collection of type that represents the return parameters of this - - . - - - - Gets the store function name attribute of this function. - - - Gets the parameter type semantics attribute of this function. - - - Gets the aggregate attribute of this function. - - - - Gets a value indicating whether built in attribute is present on this function. - - - true if the attribute is present; otherwise, false. - - - - - Gets a value indicating whether this instance is from the provider manifest. - - - true if this instance is from the provider manifest; otherwise, false. - - - - - Gets a value indicating whether the is a niladic function (a function that accepts no arguments). - - - true if the function is niladic; otherwise, false. - - - - Gets whether this instance is mapped to a function or to a stored procedure. - true if this instance is mapped to a function; false if this instance is mapped to a stored procedure. - - - Gets a query in the language that is used by the database management system or storage model. - - A string value in the syntax used by the database management system or storage model that contains the query or update statement of the - - . - - - - Gets or sets the schema associated with the function. - The schema associated with the function. - - - - The factory method for constructing the object. - - The name of the function. - The namespace of the function. - The namespace the function belongs to. - Additional function attributes and properties. - Metadata properties that will be added to the function. Can be null. - - A new, read-only instance of the type. - - - - - Contains additional attributes and properties of the - - - Note that objects are short lived and exist only to - make initialization easier. Instance of this type are not - compared to each other and arrays returned by array properties are copied to internal - collections in the ctor. Therefore it is fine to suppress the - Code Analysis messages. - - - - Gets or sets the function schema. - The function schema. - - - Gets or sets the store function name. - The store function name. - - - Gets or sets the command text associated with the function. - The command text associated with the function. - - - Gets or sets the entity sets for the function. - The entity sets for the function. - - - Gets a value that indicates whether this is an aggregate function. - true if this is an aggregate function; otherwise, false. - - - Gets or sets whether this function is a built-in function. - true if this function is a built-in function; otherwise, false. - - - Gets or sets whether the function contains no arguments. - true if the function contains no arguments; otherwise, false. - - - Gets or sets whether this function can be composed. - true if this function can be composed; otherwise, false. - - - Gets or sets whether this function is from a provider manifest. - true if this function is from a provider manifest; otherwise, false. - - - Gets or sets whether this function is a cached store function. - true if this function is a cached store function; otherwise, false. - - - Gets or sets whether this function is a function import. - true if this function is a function import; otherwise, false. - - - Gets or sets the return parameters. - The return parameters. - - - Gets or sets the parameter type semantics. - The parameter type semantics. - - - Gets or sets the function parameters. - The function parameters. - - - - Class for representing a collection of items in Edm space. - - - - - Initializes a new instance of the class by using the collection of the XMLReader objects where the conceptual schema definition language (CSDL) files exist. - - The collection of the XMLReader objects where the conceptual schema definition language (CSDL) files exist. - - - Initializes a new instance of the class. - The entity data model. - - - - Initializes a new instance of the class by using the paths where the conceptual schema definition language (CSDL) files exist. - - The paths where the conceptual schema definition language (CSDL) files exist. - - - Gets the conceptual model version for this collection. - The conceptual model version for this collection. - - - - Returns a collection of the objects. - - - A ReadOnlyCollection object that represents a collection of the - - objects. - - - - - Returns a collection of the objects with the specified conceptual model version. - - - A ReadOnlyCollection object that represents a collection of the - - objects. - - The conceptual model version. - - - - Factory method that creates an . - - - CSDL artifacts to load. Must not be null. - - - Paths to CSDL artifacts. Used in error messages. Can be null in which case - the base Uri of the XmlReader will be used as a path. - - - The collection of errors encountered while loading. - - - instance if no errors encountered. Otherwise null. - - - - - Represents the edm member class - - - - - Gets or sets the name of the property. Setting this from a store-space model-convention will change the name of the database - column for this property. In the conceptual model, this should align with the corresponding property from the entity class - and should not be changed. - - The name of this member. - - - Gets the type on which this member is declared. - - A object that represents the type on which this member is declared. - - - - - Gets the instance of the class that contains both the type of the member and facets for the type. - - - A object that contains both the type of the member and facets for the type. - - - - Returns the name of this member. - The name of this member. - - - - Tells whether this member is marked as a Computed member in the EDM definition - - - - - Tells whether this member's Store generated pattern is marked as Identity in the EDM definition - - - - - Represents a conceptual or store model. This class can be used to access information about the shape of the model - and the way the that it has been configured. - - - - Gets the built-in type kind for this type. - - A object that represents the built-in type kind for this type. - - - - - Gets the data space associated with the model, which indicates whether - it is a conceptual model (DataSpace.CSpace) or a store model (DataSpace.SSpace). - - - - - Gets the association types in the model. - - - - - Gets the complex types in the model. - - - - - Gets the entity types in the model. - - - - - Gets the enum types in the model. - - - - - Gets the functions in the model. - - - - - Gets the container that stores entity and association sets, and function imports. - - - - Gets the global items associated with the model. - The global items associated with the model. - - - - Adds an association type to the model. - - The AssociationType instance to be added. - - - - Adds a complex type to the model. - - The ComplexType instance to be added. - - - - Adds an entity type to the model. - - The EntityType instance to be added. - - - - Adds an enumeration type to the model. - - The EnumType instance to be added. - - - - Adds a function to the model. - - The EdmFunction instance to be added. - - - - Removes an association type from the model. - - The AssociationType instance to be removed. - - - - Removes a complex type from the model. - - The ComplexType instance to be removed. - - - - Removes an entity type from the model. - - The EntityType instance to be removed. - - - - Removes an enumeration type from the model. - - The EnumType instance to be removed. - - - - Removes a function from the model. - - The EdmFunction instance to be removed. - - - - In conceptual-space, EdmProperty represents a property on an Entity. - In store-space, EdmProperty represents a column in a table. - - - - Creates a new primitive property. - The newly created property. - The name of the property. - The type of the property. - - - Creates a new enum property. - The newly created property. - The name of the property. - The type of the property. - - - Creates a new complex property. - The newly created property. - The name of the property. - The type of the property. - - - - Creates a new instance of EdmProperty type. - - Name of the property. - - Property - - A new instance of EdmProperty type - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets a value indicating whether this can have a null value. - - - Nullability in the conceptual model and store model is a simple indication of whether or not - the property is considered nullable. Nullability in the object model is more complex. - When using convention based mapping (as usually happens with POCO entities), a property in the - object model is considered nullable if and only if the underlying CLR type is nullable and - the property is not part of the primary key. - When using attribute based mapping (usually used with entities that derive from the EntityObject - base class), a property is considered nullable if the IsNullable flag is set to true in the - attribute. This flag can - be set to true even if the underlying type is not nullable, and can be set to false even if the - underlying type is nullable. The latter case happens as part of default code generation when - a non-nullable property in the conceptual model is mapped to a nullable CLR type such as a string. - In such a case, the Entity Framework treats the property as non-nullable even though the CLR would - allow null to be set. - There is no good reason to set a non-nullable CLR type as nullable in the object model and this - should not be done even though the attribute allows it. - - - true if this can have a null value; otherwise, false. - - Thrown if the setter is called when the EdmProperty instance is in ReadOnly state - - - Gets the type name of the property. - The type name of the property. - - - - Gets the default value for this . - - - The default value for this . - - Thrown if the setter is called when the EdmProperty instance is in ReadOnly state - - - Gets whether the property is a collection type property. - true if the property is a collection type property; otherwise, false. - - - Gets whether this property is a complex type property. - true if this property is a complex type property; otherwise, false. - - - Gets whether this property is a primitive type. - true if this property is a primitive type; otherwise, false. - - - Gets whether this property is an enumeration type property. - true if this property is an enumeration type property; otherwise, false. - - - Gets whether this property is an underlying primitive type. - true if this property is an underlying primitive type; otherwise, false. - - - Gets the complex type information for this property. - The complex type information for this property. - - - Gets the primitive type information for this property. - The primitive type information for this property. - - - Gets the enumeration type information for this property. - The enumeration type information for this property. - - - Gets the underlying primitive type information for this property. - The underlying primitive type information for this property. - - - Gets or sets the concurrency mode for the property. - The concurrency mode for the property. - - - Gets or sets the database generation method for the database column associated with this property - The store generated pattern for the property. - - - Gets or sets the kind of collection for this model. - The kind of collection for this model. - - - Gets whether the maximum length facet is constant for the database provider. - true if the facet is constant; otherwise, false. - - - Gets or sets the maximum length of the property. - The maximum length of the property. - - - Gets or sets whether this property uses the maximum length supported by the provider. - true if this property uses the maximum length supported by the provider; otherwise, false. - - - Gets whether the fixed length facet is constant for the database provider. - true if the facet is constant; otherwise, false. - - - Gets or sets whether the length of this property is fixed. - true if the length of this property is fixed; otherwise, false. - - - Gets whether the Unicode facet is constant for the database provider. - true if the facet is constant; otherwise, false. - - - Gets or sets whether this property is a Unicode property. - true if this property is a Unicode property; otherwise, false. - - - Gets whether the precision facet is constant for the database provider. - true if the facet is constant; otherwise, false. - - - Gets or sets the precision of this property. - The precision of this property. - - - Gets whether the scale facet is constant for the database provider. - true if the facet is constant; otherwise, false. - - - Gets or sets the scale of this property. - The scale of this property. - - - Sets the metadata properties. - The metadata properties to be set. - - - - This class encapsulates the error information for a schema error that was encountered. - - - - - Constructs a EdmSchemaError object. - - The explanation of the error. - The code associated with this error. - The severity of the error. - - - Returns the error message. - The error message. - - - Gets the error code. - The error code. - - - Gets the severity level of the error. - - One of the values. The default is - - . - - - - Gets the line number where the error occurred. - The line number where the error occurred. - - - Gets the column where the error occurred. - The column where the error occurred. - - - Gets the location of the schema that contains the error. This string also includes the name of the schema at the end. - The location of the schema that contains the error. - - - Gets the name of the schema that contains the error. - The name of the schema that contains the error. - - - Gets a string representation of the stack trace at the time the error occurred. - A string representation of the stack trace at the time the error occurred. - - - - Defines the different severities of errors that can occur when validating an Entity Framework model. - - - - - A warning that does not prevent the model from being used. - - - - - An error that prevents the model from being used. - - - - - Base EdmType class for all the model types - - - - Gets the name of this type. - The name of this type. - - - Gets the namespace of this type. - The namespace of this type. - - - Gets a value indicating whether this type is abstract or not. - true if this type is abstract; otherwise, false. - Thrown if the setter is called on instance that is in ReadOnly state - - - Gets the base type of this type. - The base type of this type. - Thrown if the setter is called on instance that is in ReadOnly state - Thrown if the value passed in for setter will create a loop in the inheritance chain - - - Gets the full name of this type. - The full name of this type. - - - Returns the full name of this type. - The full name of this type. - - - - Returns an instance of the whose element type is this type. - - - The object whose element type is this type. - - - - - Class for representing an entity container - - - - - Creates an entity container with the specified name and data space. - - The entity container name. - The entity container data space. - Thrown if the name argument is null. - Thrown if the name argument is empty string. - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets the name of this . - - - The name of this . - - - - - Gets a list of entity sets and association sets that this - - includes. - - - A object that contains a list of entity sets and association sets that this - - includes. - - - - Gets the association sets for this entity container. - The association sets for this entity container . - - - Gets the entity sets for this entity container. - The entity sets for this entity container . - - - - Specifies a collection of elements. Each function contains the details of a stored procedure that exists in the database or equivalent CommandText that is mapped to an entity and its properties. - - - A that contains - - elements. - - - - - Returns an object by using the specified name for the entity set. - - - An object that represents the entity set that has the specified name. - - The name of the entity set that is searched for. - true to perform the case-insensitive search; otherwise, false. - - - - Returns an object by using the specified name for the entity set. - - true if there is an entity set that matches the search criteria; otherwise, false. - The name of the entity set that is searched for. - true to perform the case-insensitive search; otherwise, false. - - When this method returns, contains an object. If there is no entity set, this output parameter contains null. - - - - - Returns a object by using the specified name for the relationship set. - - - An object that represents the relationship set that has the specified name. - - The name of the relationship set that is searched for. - true to perform the case-insensitive search; otherwise, false. - - - - Returns a object by using the specified name for the relationship set. - - true if there is a relationship set that matches the search criteria; otherwise, false. - The name of the relationship set that is searched for. - true to perform the case-insensitive search; otherwise, false. - - When this method returns, contains a object. - - - - - Returns the name of this . - - - The name of this . - - - - - Adds the specified entity set to the container. - - The entity set to add. - - - Removes a specific entity set from the container. - The entity set to remove. - - - - Adds a function import to the container. - - The function import to add. - - - - The factory method for constructing the EntityContainer object. - - The name of the entity container to be created. - DataSpace in which this entity container belongs to. - Entity sets that will be included in the new container. Can be null. - Functions that will be included in the new container. Can be null. - Metadata properties to be associated with the instance. - The EntityContainer object. - Thrown if the name argument is null or empty string. - The newly created EntityContainer will be read only. - - - - Represents a particular usage of a structure defined in EntityType. In the conceptual-model, this represents a set that can - query and persist entities. In the store-model it represents a table. - From a store-space model-convention it can be used to configure - table name with property and table schema with property. - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets the entity type of this . - - - An object that represents the entity type of this - - . - - - - - The factory method for constructing the EntitySet object. - - The name of the EntitySet. - The db schema. Can be null. - The db table. Can be null. - - The provider specific query that should be used to retrieve data for this EntitySet. Can be null. - - The entity type of the entities that this entity set type contains. - - Metadata properties that will be added to the newly created EntitySet. Can be null. - - The EntitySet object. - Thrown if the name argument is null or empty string. - The newly created EntitySet will be read only. - - - - Class for representing a entity set - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets escaped provider specific SQL describing this entity set. - - - - - Gets or sets the name of the current entity or relationship set. - If this property is changed from store-space, the mapping layer must also be updated to reflect the new name. - To change the table name of a store space use the Table property. - - The name of the current entity or relationship set. - Thrown if the setter is called when EntitySetBase instance is in ReadOnly state - - - Gets the entity container of the current entity or relationship set. - - An object that represents the entity container of the current entity or relationship set. - - Thrown if the setter is called when the EntitySetBase instance or the EntityContainer passed into the setter is in ReadOnly state - - - - Gets the entity type of this . - - - An object that represents the entity type of this - - . - - Thrown if the setter is called when EntitySetBase instance is in ReadOnly state - - - - Gets or sets the database table name for this entity set. - - if value passed into setter is null - Thrown if the setter is called when EntitySetBase instance is in ReadOnly state - - - - Gets or sets the database schema for this entity set. - - if value passed into setter is null - Thrown if the setter is called when EntitySetBase instance is in ReadOnly state - - - Returns the name of the current entity or relationship set. - The name of the current entity or relationship set. - - - - Represents the structure of an . In the conceptual-model this represents the shape and structure - of an entity. In the store model this represents the structure of a table. To change the Schema and Table name use EntitySet. - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - Gets the declared navigation properties associated with the entity type. - The declared navigation properties associated with the entity type. - - - - Gets the navigation properties of this . - - - A collection of type that contains the list of navigation properties on this - - . - - - - Gets the list of declared properties for the entity type. - The declared properties for the entity type. - - - Gets the collection of declared members for the entity type. - The collection of declared members for the entity type. - - - - Gets the list of properties for this . - - - A collection of type that contains the list of properties for this - - . - - - - - Returns a object that references this - - . - - - A object that references this - - . - - - - - The factory method for constructing the EntityType object. - - The name of the entity type. - The namespace of the entity type. - The dataspace in which the EntityType belongs to. - Name of key members for the type. - Members of the entity type (primitive and navigation properties). - Metadata properties to be associated with the instance. - The EntityType object. - Thrown if either name, namespace arguments are null. - The newly created EntityType will be read only. - - - - The factory method for constructing the EntityType object. - - The name of the entity type. - The namespace of the entity type. - The dataspace in which the EntityType belongs to. - The base type. - Name of key members for the type. - Members of the entity type (primitive and navigation properties). - Metadata properties to be associated with the instance. - The EntityType object. - Thrown if either name, namespace arguments are null. - The newly created EntityType will be read only. - - - - Adds the specified navigation property to the members of this type. - The navigation property is added regardless of the read-only flag. - - The navigation property to be added. - - - - Represents the Entity Type - - - - Gets the list of all the key members for the current entity or relationship type. - - A object that represents the list of key members for the current entity or relationship type. - - - - Gets the list of all the key properties for this entity type. - The list of all the key properties for this entity type. - - - - Adds the specified property to the list of keys for the current entity. - - The property to add. - if member argument is null - Thrown if the EntityType has a base type of another EntityTypeBase. In this case KeyMembers should be added to the base type - If the EntityType instance is in ReadOnly state - - - Removes the specified key member from the collection. - The key member to remove. - - - - Represents an enumeration member. - - - - Gets the kind of this type. - - - Gets the name of this enumeration member. - - - Gets the value of this enumeration member. - - - Overriding System.Object.ToString to provide better String representation for this type. - The name of this enumeration member. - - - - Creates a read-only EnumMember instance. - - The name of the enumeration member. - The value of the enumeration member. - Metadata properties to be associated with the enumeration member. - The newly created EnumMember instance. - name is null or empty. - - - - Creates a read-only EnumMember instance. - - The name of the enumeration member. - The value of the enumeration member. - Metadata properties to be associated with the enumeration member. - The newly created EnumMember instance. - name is null or empty. - - - - Creates a read-only EnumMember instance. - - The name of the enumeration member. - The value of the enumeration member. - Metadata properties to be associated with the enumeration member. - The newly created EnumMember instance. - name is null or empty. - - - - Creates a read-only EnumMember instance. - - The name of the enumeration member. - The value of the enumeration member. - Metadata properties to be associated with the enumeration member. - The newly created EnumMember instance. - name is null or empty. - - - - Creates a read-only EnumMember instance. - - The name of the enumeration member. - The value of the enumeration member. - Metadata properties to be associated with the enumeration member. - The newly created EnumMember instance. - name is null or empty. - - - - Represents an enumeration type. - - - - Returns the kind of the type - - - Gets a collection of enumeration members for this enumeration type. - - - Gets a value indicating whether the enum type is defined as flags (i.e. can be treated as a bit field) - - - Gets the underlying type for this enumeration type. - - - - Creates a read-only EnumType instance. - - The name of the enumeration type. - The namespace of the enumeration type. - The underlying type of the enumeration type. - Indicates whether the enumeration type can be treated as a bit field; that is, a set of flags. - The members of the enumeration type. - Metadata properties to be associated with the enumeration type. - The newly created EnumType instance. - underlyingType is null. - - name is null or empty. - -or- - namespaceName is null or empty. - -or- - underlyingType is not a supported underlying type. - -or- - The specified members do not have unique names. - -or- - The value of a specified member is not in the range of the underlying type. - - - - - Class for representing a Facet object - This object is Immutable (not just set to readonly) and - some parts of the system are depending on that behavior - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets the description of this . - - - The object that represents the description of this - - . - - - - - Gets the name of this . - - - The name of this . - - - - - Gets the type of this . - - - The object that represents the type of this - - . - - - - - Gets the value of this . - - - The value of this . - - Thrown if the Facet instance is in ReadOnly state - - - Gets a value indicating whether the value of the facet is unbounded. - true if the value of the facet is unbounded; otherwise, false. - - - - Returns the name of this . - - - The name of this . - - - - - Class for representing a FacetDescription object - - - - Gets the name of this facet. - The name of this facet. - - - Gets the type of this facet. - - An object that represents the type of this facet. - - - - Gets the minimum value for this facet. - The minimum value for this facet. - - - Gets the maximum value for this facet. - The maximum value for this facet. - - - Gets the default value of a facet with this facet description. - The default value of a facet with this facet description. - - - Gets a value indicating whether the value of this facet is a constant. - true if this facet is a constant; otherwise, false. - - - Gets a value indicating whether this facet is a required facet. - true if this facet is a required facet; otherwise, false. - - - Returns the name of this facet. - The name of this facet. - - - - Class representing a function parameter - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets the mode of this . - - - One of the values. - - Thrown if the FunctionParameter instance is in ReadOnly state - - - - Gets the name of this . - - - The name of this . - - - - - Gets the instance of the class that contains both the type of the parameter and facets for the type. - - - A object that contains both the type of the parameter and facets for the type. - - - - Gets the type name of this parameter. - The type name of this parameter. - - - Gets whether the max length facet is constant for the database provider. - true if the facet is constant; otherwise, false. - - - Gets the maximum length of the parameter. - The maximum length of the parameter. - - - Gets whether the parameter uses the maximum length supported by the database provider. - true if parameter uses the maximum length supported by the database provider; otherwise, false. - - - Gets whether the precision facet is constant for the database provider. - true if the facet is constant; otherwise, false. - - - Gets the precision value of the parameter. - The precision value of the parameter. - - - Gets whether the scale facet is constant for the database provider. - true if the facet is constant; otherwise, false. - - - Gets the scale value of the parameter. - The scale value of the parameter. - - - - Gets the on which this parameter is declared. - - - A object that represents the function on which this parameter is declared. - - - - - Returns the name of this . - - - The name of this . - - - - - The factory method for constructing the object. - - The name of the parameter. - The EdmType of the parameter. - - The of the parameter. - - - A new, read-only instance of the type. - - - - - Represents the base item class for all the metadata - - - - - An interface to get the underlying store and conceptual model for a . - - - - - Gets the conceptual model. - - - - - Gets the store model. - - - - - Class for representing a collection of items. - Most of the implementation for actual maintenance of the collection is - done by MetadataCollection - - - - Gets the data model associated with this item collection. - The data model associated with this item collection. - - - - Returns a strongly typed object by using the specified identity. - - The item that is specified by the identity. - The identity of the item. - The type returned by the method. - - - - Returns a strongly typed object by using the specified identity from this item collection. - - true if there is an item that matches the search criteria; otherwise, false. - The identity of the item. - - When this method returns, the output parameter contains a - - object. If there is no global item with the specified identity in the item collection, this output parameter contains null. - - The type returned by the method. - - - - Returns a strongly typed object by using the specified identity from this item collection. - - true if there is an item that matches the search criteria; otherwise, false. - The identity of the item. - true to perform the case-insensitive search; otherwise, false. - - When this method returns, the output parameter contains a - - object. If there is no global item with the specified identity in the item collection, this output parameter contains null. - - The type returned by the method. - - - - Returns a strongly typed object by using the specified identity with either case-sensitive or case-insensitive search. - - The item that is specified by the identity. - The identity of the item. - true to perform the case-insensitive search; otherwise, false. - The type returned by the method. - - - Returns all the items of the specified type from this item collection. - - A collection of type that contains all the items of the specified type. - - The type returned by the method. - - - - Returns an object by using the specified type name and the namespace name in this item collection. - - - An object that represents the type that matches the specified type name and the namespace name in this item collection. If there is no matched type, this method returns null. - - The name of the type. - The namespace of the type. - - - - Returns an object by using the specified type name and the namespace name from this item collection. - - true if there is a type that matches the search criteria; otherwise, false. - The name of the type. - The namespace of the type. - - When this method returns, this output parameter contains an - - object. If there is no type with the specified name and namespace name in this item collection, this output parameter contains null. - - - - - Returns an object by using the specified type name and the namespace name from this item collection. - - - An object that represents the type that matches the specified type name and the namespace name in this item collection. If there is no matched type, this method returns null. - - The name of the type. - The namespace of the type. - true to perform the case-insensitive search; otherwise, false. - - - - Returns an object by using the specified type name and the namespace name from this item collection. - - true if there is a type that matches the search criteria; otherwise, false. - The name of the type. - The namespace of the type. - true to perform the case-insensitive search; otherwise, false. - - When this method returns, this output parameter contains an - - object. If there is no type with the specified name and namespace name in this item collection, this output parameter contains null. - - - - Returns all the overloads of the functions by using the specified name from this item collection. - - A collection of type that contains all the functions that have the specified name. - - The full name of the function. - - - Returns all the overloads of the functions by using the specified name from this item collection. - - A collection of type that contains all the functions that have the specified name. - - The full name of the function. - true to perform the case-insensitive search; otherwise, false. - - - Returns all the overloads of the functions by using the specified name from this item collection. - A collection of type ReadOnlyCollection that contains all the functions that have the specified name. - A dictionary of functions. - The full name of the function. - true to perform the case-insensitive search; otherwise, false. - - - - Returns an object by using the specified entity container name. - - If there is no entity container, this method returns null; otherwise, it returns the first one. - The name of the entity container. - - - - Returns an object by using the specified entity container name. If there is no entity container, the output parameter contains null; otherwise, it contains the first entity container. - - true if there is an entity container that matches the search criteria; otherwise, false. - The name of the entity container. - - When this method returns, it contains an object. If there is no entity container, this output parameter contains null; otherwise, it contains the first entity container. - - - - - Returns an object by using the specified entity container name. - - If there is no entity container, this method returns null; otherwise, it returns the first entity container. - The name of the entity container. - true to perform the case-insensitive search; otherwise, false. - - - - Returns an object by using the specified entity container name. If there is no entity container, this output parameter contains null; otherwise, it contains the first entity container. - - true if there is an entity container that matches the search criteria; otherwise, false. - The name of the entity container. - true to perform the case-insensitive search; otherwise, false. - - When this method returns, it contains an object. If there is no entity container, this output parameter contains null; otherwise, it contains the first entity container. - - - - - Do not perform any extension check - - - - - Check the extension against a specific value - - - - - Check the extension against the set of acceptable extensions - - - - - Represents the base item class for all the metadata - - - Represents the base item class for all the metadata - - - - Gets the built-in type kind for this type. - - A object that represents the built-in type kind for this type. - - - - Gets the list of properties of the current type. - - A collection of type that contains the list of properties of the current type. - - - - - Adds or updates an annotation with the specified name and value. - - - If an annotation with the given name already exists then the value of that annotation - is updated to the given value. If the given value is null then the annotation will be - removed. - - The name of the annotation property. - The value of the annotation property. - - - - Removes an annotation with the specified name. - - The name of the annotation property. - true if an annotation was removed; otherwise, false. - - - Gets or sets the documentation associated with this type. - - A object that represents the documentation on this type. - - - - - Returns a conceptual model built-in type that matches one of the - - values. - - - An object that represents the built-in type in the EDM. - - - One of the values. - - - - Returns the list of the general facet descriptions for a specified type. - - A object that represents the list of the general facet descriptions for a specified type. - - - - - Class representing a metadata attribute for an item - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets the name of this . - - - The name of this . - - - - - Gets the value of this . - - - The value of this . - - Thrown if the MetadataProperty instance is in readonly state - - - - Gets the instance of the class that contains both the type of this - - and facets for the type. - - - A object that contains both the type of this - - and facets for the type. - - Thrown if the MetadataProperty instance is in readonly state - - - - Gets the value of this . - - - The value of this . - - - - - Gets a boolean that indicates whether the metadata property is an annotation. - - - - - The factory method for constructing the MetadataProperty object. - - The name of the metadata property. - The type usage of the metadata property. - The value of the metadata property. - The MetadataProperty object. - - Thrown is null. - - The newly created MetadataProperty will be read only. - - - - Creates a metadata annotation having the specified name and value. - - The annotation name. - The annotation value. - A MetadataProperty instance representing the created annotation. - - - - Runtime Metadata Workspace - - - - - Initializes a new instance of the class. - - - - - Constructs a with loaders for all item collections () - needed by EF except the o/c mapping which will be created automatically based on the given o-space and c-space - loaders. The item collection delegates are executed lazily when a given collection is used for the first - time. It is acceptable to pass a delegate that returns null if the collection will never be used, but this - is rarely done, and any attempt by EF to use the collection in such cases will result in an exception. - - Delegate to return the c-space (CSDL) item collection. - Delegate to return the s-space (SSDL) item collection. - Delegate to return the c/s mapping (MSL) item collection. - Delegate to return the o-space item collection. - - - - Constructs a with loaders for all item collections () - that come from traditional EDMX mapping. Default o-space and o/c mapping collections will be used. - The item collection delegates are executed lazily when a given collection is used for the first - time. It is acceptable to pass a delegate that returns null if the collection will never be used, but this - is rarely done, and any attempt by EF to use the collection in such cases will result in an exception. - - Delegate to return the c-space (CSDL) item collection. - Delegate to return the s-space (SSDL) item collection. - Delegate to return the c/s mapping (MSL) item collection. - - - - Initializes a new instance of the class using the specified paths and assemblies. - - The paths to workspace metadata. - The names of assemblies used to construct workspace. - - - - The Max EDM version thats going to be supported by the runtime. - - - - - Creates an configured to use the - - data space. - - The created parser object. - - - - Creates a new bound to this metadata workspace based on the specified query expression. - - - A new with the specified expression as it's - - property. - - - A that defines the query. - - - If - - is null - - - If - - contains metadata that cannot be resolved in this metadata workspace - - - If - - is not structurally valid because it contains unresolvable variable references - - - - - Gets items. - - - The items. - - - The from which to retrieve items. - - - - Registers the item collection with each associated data model. - The output parameter collection that needs to be filled up. - - - Loads metadata from the given assembly. - The assembly from which the metadata will be loaded. - - - Loads metadata from the given assembly. - The assembly from which the metadata will be loaded. - The delegate for logging the load messages. - - - Returns an item by using the specified identity and the data model. - The item that matches the given identity in the specified data model. - The identity of the item. - The conceptual model in which the item is searched. - The type returned by the method. - Thrown if the space is not a valid space. Valid space is either C, O, CS or OCSpace - - - Returns an item by using the specified identity and the data model. - true if there is an item that matches the search criteria; otherwise, false. - The conceptual model on which the item is searched. - The conceptual model on which the item is searched. - - When this method returns, contains a object. This parameter is passed uninitialized. - - The type returned by the method. - - - Returns an item by using the specified identity and the data model. - The item that matches the given identity in the specified data model. - The identity of the item. - true to perform the case-insensitive search; otherwise, false. - The conceptual model on which the item is searched. - The type returned by the method. - Thrown if the space is not a valid space. Valid space is either C, O, CS or OCSpace - - - Returns an item by using the specified identity and the data model. - true if there is an item that matches the search criteria; otherwise, false. - The conceptual model on which the item is searched. - true to perform the case-insensitive search; otherwise, false. - The conceptual model on which the item is searched. - - When this method returns, contains a object. This parameter is passed uninitialized. - - The type returned by the method. - - - Gets all the items in the specified data model. - - A collection of type that contains all the items in the specified data model. - - The conceptual model for which the list of items is needed. - The type returned by the method. - Thrown if the space is not a valid space. Valid space is either C, O, CS or OCSpace - - - - Returns an object by using the specified type name, namespace name, and data model. - - - An object that represents the type that matches the given type name and the namespace name in the specified data model. If there is no matched type, this method returns null. - - The name of the type. - The namespace of the type. - The conceptual model on which the type is searched. - Thrown if the space is not a valid space. Valid space is either C, O, CS or OCSpace - - - - Returns an object by using the specified type name, namespace name, and data model. - - true if there is a type that matches the search criteria; otherwise, false. - The name of the type. - The namespace of the type. - The conceptual model on which the type is searched. - - When this method returns, contains an object. This parameter is passed uninitialized. - - - - - Returns an object by using the specified type name, namespace name, and data model. - - - An object. - - The name of the type. - The namespace of the type. - true to perform the case-insensitive search; otherwise, false. - The conceptual model on which the type is searched. - Thrown if the space is not a valid space. Valid space is either C, O, CS or OCSpace - - - - Returns an object by using the specified type name, namespace name, and data model. - - true if there is a type that matches the search criteria; otherwise, false. - The name of the type. - The namespace of the type. - true to perform the case-insensitive search; otherwise, false. - The conceptual model on which the type is searched. - - When this method returns, contains an object. This parameter is passed uninitialized. - - - - - Returns an object by using the specified entity container name and the data model. - - If there is no entity container, this method returns null; otherwise, it returns the first entity container. - The name of the entity container. - The conceptual model on which the entity container is searched. - Thrown if the space is not a valid space. Valid space is either C, O, CS or OCSpace - - - - Returns an object by using the specified entity container name and the data model. - - true if there is an entity container that matches the search criteria; otherwise, false. - The name of the entity container. - The conceptual model on which the entity container is searched. - - When this method returns, contains an object. If there is no entity container, this output parameter contains null; otherwise, it returns the first entity container. This parameter is passed uninitialized. - - - - - Returns an object by using the specified entity container name and the data model. - - If there is no entity container, this method returns null; otherwise, it returns the first entity container. - The name of the entity container. - true to perform the case-insensitive search; otherwise, false. - The conceptual model on which the entity container is searched. - Thrown if the space is not a valid space. Valid space is either C, O, CS or OCSpace - - - - Returns an object by using the specified entity container name and the data model. - - true if there is an entity container that matches the search criteria; otherwise, false. - The name of the entity container. - true to perform the case-insensitive search; otherwise, false. - The conceptual model on which the entity container is searched. - - When this method returns, contains an object. If there is no entity container, this output parameter contains null; otherwise, it returns the first entity container. This parameter is passed uninitialized. - - - - Returns all the overloads of the functions by using the specified name, namespace name, and data model. - - A collection of type that contains all the functions that match the specified name in a given namespace and a data model. - - The name of the function. - The namespace of the function. - The conceptual model in which the functions are searched. - Thrown if the space is not a valid space. Valid space is either C, O, CS or OCSpace - - - Returns all the overloads of the functions by using the specified name, namespace name, and data model. - - A collection of type that contains all the functions that match the specified name in a given namespace and a data model. - - The name of the function. - The namespace of the function. - The conceptual model in which the functions are searched. - true to perform the case-insensitive search; otherwise, false. - Thrown if the space is not a valid space. Valid space is either C, O, CS or OCSpace - - - Returns the list of primitive types in the specified data model. - - A collection of type that contains all the primitive types in the specified data model. - - The data model for which you need the list of primitive types. - Thrown if the space is not a valid space. Valid space is either C, O, CS or OCSpace - - - Gets all the items in the specified data model. - - A collection of type that contains all the items in the specified data model. - - The conceptual model for which the list of items is needed. - Thrown if the space is not a valid space. Valid space is either C, O, CS or OCSpace - - - - Tests the retrieval of . - - true if the retrieval was successful; otherwise, false. - - The from which to attempt retrieval of - - . - - When this method returns, contains the item collection. This parameter is passed uninitialized. - - - - Returns a object that represents the object space type that matches the type supplied by the parameter edmSpaceType . - - - A object that represents the Object space type. If there is no matched type, this method returns null. - - - A object that represents the - - . - - - - - Returns a object via the out parameter objectSpaceType that represents the type that matches the - - supplied by the parameter edmSpaceType . - - true if there is a type that matches the search criteria; otherwise, false. - - A object that represents the - - . - - - When this method returns, contains a object that represents the Object space type. This parameter is passed uninitialized. - - - - - Returns a object that represents the object space type that matches the type supplied by the parameter edmSpaceType . - - - A object that represents the Object space type. If there is no matched type, this method returns null. - - - A object that represents the - - . - - - - - Returns a object via the out parameter objectSpaceType that represents the type that matches the - - supplied by the parameter edmSpaceType . - - true if there is a type that matches the search criteria; otherwise, false. - - A object that represents the - - . - - - When this method returns, contains a object that represents the Object space type. This parameter is passed uninitialized. - - - - - Returns a object that represents the - - that matches the type supplied by the parameter objectSpaceType . - - - A object that represents the - - . If there is no matched type, this method returns null. - - - A that supplies the type in the object space. - - - - - Returns a object via the out parameter edmSpaceType that represents the - - that matches the type supplied by the parameter objectSpaceType . - - true if there is a type that matches the search criteria; otherwise, false. - - A object that represents the object space type. - - - When this method returns, contains a object that represents the - - . This parameter is passed uninitialized. - - - - - Returns a object that represents the - - that matches the type supplied by the parameter objectSpaceType . - - - A object that represents the - - . If there is no matched type, this method returns null. - - - A that supplies the type in the object space. - - - - - Returns a object via the out parameter edmSpaceType that represents the - - that matches the type supplied by the parameter objectSpaceType . - - true on success, false on failure. - - A object that represents the object space type. - - - When this method returns, contains a object that represents the - - . This parameter is passed uninitialized. - - - - Clears all the metadata cache entries. - - - Gets original value members from an entity set and entity type. - The original value members from an entity set and entity type. - The entity set from which to retrieve original values. - The entity type of which to retrieve original values. - - - - Returns members of a given / - - for which original values are needed when modifying an entity. - - - The s for which original value is required. - - - An belonging to the C-Space. - - - An that participates in the given - - . - - true if entities may be updated partially; otherwise, false. - - - - Represent the edm navigation property class - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - Gets the relationship type that this navigation property operates on. - The relationship type that this navigation property operates on. - Thrown if the NavigationProperty instance is in ReadOnly state - - - Gets the "to" relationship end member of this navigation. - The "to" relationship end member of this navigation. - Thrown if the NavigationProperty instance is in ReadOnly state - - - Gets the "from" relationship end member in this navigation. - The "from" relationship end member in this navigation. - Thrown if the NavigationProperty instance is in ReadOnly state - - - - Where the given navigation property is on the dependent end of a referential constraint, - returns the foreign key properties. Otherwise, returns an empty set. We will return the members in the order - of the principal end key properties. - - A collection of the foreign key properties. - - - - Creates a NavigationProperty instance from the specified parameters. - - The name of the navigation property. - Specifies the navigation property type and its facets. - The relationship type for the navigation. - The source end member in the navigation. - The target end member in the navigation. - The metadata properties of the navigation property. - The newly created NavigationProperty instance. - - - - Class for representing a collection of items for the object layer. - Most of the implementation for actual maintenance of the collection is - done by ItemCollection - - - - - Initializes a new instance of the class. - - - - Loads metadata from the given assembly. - The assembly from which the metadata will be loaded. - - - Loads metadata from the given assembly. - The assembly from which the metadata will be loaded. - The EDM metadata source for the O space metadata. - The delegate to which log messages are sent. - - - Loads metadata from the specified assembly. - The assembly from which the metadata will be loaded. - The EDM metadata source for the O space metadata. - - - Returns a collection of primitive type objects. - A collection of primitive type objects. - - - - Returns the CLR type that corresponds to the supplied by the objectSpaceType parameter. - - The CLR type of the OSpace argument. - - A that represents the object space type. - - - - - Returns a CLR type corresponding to the supplied by the objectSpaceType parameter. - - true if there is a type that matches the search criteria; otherwise, false. - - A that represents the object space type. - - The CLR type. - - - The method returns the underlying CLR type for the specified OSpace type argument. If the DataSpace of the parameter is not OSpace, an ArgumentException is thrown. - The CLR type of the OSpace argument. - The OSpace type to look up. - - - Returns the underlying CLR type for the specified OSpace enum type argument. If the DataSpace of the parameter is not OSpace, the method returns false and sets the out parameter to null. - true on success, false on failure - The OSpace enum type to look up - The CLR enum type of the OSpace argument - - - Returns all the items of the specified type from this item collection. - - A collection of type that contains all items of the specified type. - - The type returned by the method. - - - - Represents the list of possible actions for delete operation - - - - - no action - - - - - Cascade to other ends - - - - - The enumeration defining the mode of a parameter - - - - - In parameter - - - - - Out parameter - - - - - Both in and out parameter - - - - - Return Parameter - - - - - The enumeration defining the type semantics used to resolve function overloads. - These flags are defined in the provider manifest per function definition. - - - - - Allow Implicit Conversion between given and formal argument types (default). - - - - - Allow Type Promotion between given and formal argument types. - - - - - Use strict Equivalence only. - - - - - Class representing a primitive type - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets a enumeration value that indicates a primitive type of this - - . - - - A enumeration value that indicates a primitive type of this - - . - - - - - Gets the list of facet descriptions for this . - - - A collection of type that contains the list of facet descriptions for this - - . - - - - - Returns an equivalent common language runtime (CLR) type of this - - . Note that the - - property always returns a non-nullable type value. - - - A object that represents an equivalent common language runtime (CLR) type of this - - . - - - - - Returns the equivalent of this - - . - - - For example if this instance is nvarchar and it's - base type is Edm String then the return type is Edm String. - If the type is actually already a model type then the - return type is "this". - - - An object that is an equivalent of this - - . - - - - Returns the list of primitive types. - - A collection of type that contains the list of primitive types. - - - - - Returns the equivalent of a - - . - - - An object that is an equivalent of a specified - - . - - - A value of type . - - - - - Primitive Types as defined by EDM - - - - - Binary Type Kind - - - - - Boolean Type Kind - - - - - Byte Type Kind - - - - - DateTime Type Kind - - - - - Decimal Type Kind - - - - - Double Type Kind - - - - - Guid Type Kind - - - - - Single Type Kind - - - - - SByte Type Kind - - - - - Int16 Type Kind - - - - - Int32 Type Kind - - - - - Int64 Type Kind - - - - - String Type Kind - - - - - Time Type Kind - - - - - DateTimeOffset Type Kind - - - - - Geometry Type Kind - - - - - Geography Type Kind - - - - - Geometric point type kind - - - - - Geometric linestring type kind - - - - - Geometric polygon type kind - - - - - Geometric multi-point type kind - - - - - Geometric multi-linestring type kind - - - - - Geometric multi-polygon type kind - - - - - Geometric collection type kind - - - - - Geographic point type kind - - - - - Geographic linestring type kind - - - - - Geographic polygon type kind - - - - - Geographic multi-point type kind - - - - - Geographic multi-linestring type kind - - - - - Geographic multi-polygon type kind - - - - - Geographic collection type kind - - - - - HierarchyId type kind - - - - - Specifies the kinds of item attributes in the conceptual model. - - - - - An enumeration member indicating that an item attribute is System - - - - - An enumeration member indicating that an item attribute is Extended. - - - - - Class representing a read-only wrapper around MetadataCollection - - The type of items in this collection - - - - The enumerator for MetadataCollection - - - - Gets the member at the current position. - The member at the current position. - - - - Gets the member at the current position - - - - Disposes of this enumerator. - - - - Moves to the next member in the collection of type - - . - - - true if the enumerator is moved in the collection of type - - ; otherwise, false. - - - - - Positions the enumerator before the first position in the collection of type - - . - - - - Gets a value indicating whether this collection is read-only. - true if this collection is read-only; otherwise, false. - - - Gets an item from this collection by using the specified identity. - An item from this collection. - The identity of the item to be searched for. - - - Retrieves an item from this collection by using the specified identity. - An item from this collection. - The identity of the item to be searched for. - true to perform the case-insensitive search; otherwise, false. - - - Determines whether the collection contains an item with the specified identity. - true if the collection contains the item to be searched for; otherwise, false. The default is false. - The identity of the item. - - - Retrieves an item from this collection by using the specified identity. - true if there is an item that matches the search criteria; otherwise, false. - The identity of the item to be searched for. - true to perform the case-insensitive search; otherwise, false. - When this method returns, this output parameter contains an item from the collection. If there is no matched item, this output parameter contains null. - - - Returns an enumerator that can iterate through this collection. - - A that can be used to iterate through this - - . - - - - Returns the index of the specified value in this collection. - The index of the specified value in this collection. - A value to seek. - - - - This class represents a referential constraint between two entities specifying the "to" and "from" ends of the relationship. - - - - - Constructs a new constraint on the relationship - - role from which the relationship originates - role to which the relationship is linked/targeted to - properties on entity type of to role which take part in the constraint - properties on entity type of from role which take part in the constraint - Argument Null exception if any of the arguments is null - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets the "from role" that takes part in this - - . - - - A object that represents the "from role" that takes part in this - - . - - Thrown if value passed into setter is null - Thrown if the ReferentialConstraint instance is in ReadOnly state - - - - Gets the "to role" that takes part in this . - - - A object that represents the "to role" that takes part in this - - . - - Thrown if value passed into setter is null - Thrown if the ReferentialConstraint instance is in ReadOnly state - - - - Gets the list of properties for the "from role" on which this - - is defined. - - - A collection of type that contains the list of properties for "from role" on which this - - is defined. - - - - - Gets the list of properties for the "to role" on which this - - is defined. - - - A collection of type that contains the list of properties for the "to role" on which this - - is defined. - - - - - Returns the combination of the names of the - - and the - - . - - - The combination of the names of the - - and the - - . - - - - - Class representing a ref type - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets the entity type referenced by this . - - - An object that represents the entity type referenced by this - - . - - - - - - - - - - - Initializes a new instance of the RelationshipEndMember class - - - - Gets the operational behavior of this relationship end member. - - One of the values. The default is - - . - - - - Gets the multiplicity of this relationship end member. - - One of the values. - - - - Access the EntityType of the EndMember in an association. - The EntityType of the EndMember in an association. - - - - Represents the multiplicity information about the end of a relationship type - - - - - Lower Bound is Zero and Upper Bound is One - - - - - Both lower bound and upper bound is one - - - - - Lower bound is zero and upper bound is null - - - - - Class for representing a relationship set - - - - - Gets the relationship type of this . - - - An object that represents the relationship type of this - - . - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Represents the Relationship type - - - - Gets the list of ends for this relationship type. - - A collection of type that contains the list of Ends for this relationship type. - - - - - Represents the Edm Row Type - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets the list of properties on this . - - - A collection of type that contains the list of properties on this - - . - - - - Gets a collection of the properties defined by the current type. - A collection of the properties defined by the current type. - - - - The factory method for constructing the object. - - Properties of the row type object. - Metadata properties that will be added to the function. Can be null. - - A new, read-only instance of the object. - - - - - Class representing a simple type - - - - - Serializes the storage (database) section of an to XML. - - - - - Occurs when an error is encountered serializing the model. - - - - - Serialize the to the - - The EdmModel to serialize - Provider information on the Schema element - ProviderManifestToken information on the Schema element - The XmlWriter to serialize to - A value indicating whether to serialize Nullable attributes when they are set to the default value. - true if model can be serialized, otherwise false - - - - Serialize the to the - - The EdmModel to serialize - Namespace name on the Schema element - Provider information on the Schema element - ProviderManifestToken information on the Schema element - The XmlWriter to serialize to - A value indicating whether to serialize Nullable attributes when they are set to the default value. - true if model can be serialized, otherwise false - - - - The pattern for Server Generated Properties. - - - - - Not a Server Generated Property. This is the default. - - - - - A value is generated on INSERT, and remains unchanged on update. - - - - - A value is generated on both INSERT and UPDATE. - - - - - Class for representing a collection of items in Store space. - - - - - Initializes a new instance of the class using the specified XMLReader. - - The XMLReader used to create metadata. - - - Initializes a new instances of the class. - The model of the . - - - - Initializes a new instance of the class using the specified file paths. - - The file paths used to create metadata. - - - Gets the provider factory of the StoreItemCollection. - The provider factory of the StoreItemCollection. - - - Gets the provider manifest of the StoreItemCollection. - The provider manifest of the StoreItemCollection. - - - Gets the manifest token of the StoreItemCollection. - The manifest token of the StoreItemCollection. - - - Gets the invariant name of the StoreItemCollection. - The invariant name of the StoreItemCollection. - - - Gets the version of the store schema for this collection. - The version of the store schema for this collection. - - - - Returns a collection of the objects. - - - A object that represents the collection of the - - objects. - - - - - Factory method that creates a . - - - SSDL artifacts to load. Must not be null. - - - Paths to SSDL artifacts. Used in error messages. Can be null in which case - the base Uri of the XmlReader will be used as a path. - - - Custom resolver. Currently used to resolve DbProviderServices implementation. If null - the default resolver will be used. - - - The collection of errors encountered while loading. - - - instance if no errors encountered. Otherwise null. - - - - - Represents the Structural Type - - - - Gets the list of members on this type. - - A collection of type that contains a set of members on this type. - - - - - Adds a member to this type - - The member to add - - - Removes a member from this type. - The member to remove. - - - - Class representing a type information for an item - - - - - Factory method for creating a TypeUsage with specified EdmType and facets - - EdmType for which to create a type usage - facets to be copied into the new TypeUsage - new TypeUsage instance - - - - Creates a object with the specified conceptual model type. - - - A object with the default facet values for the specified - - . - - - A for which the - - object is created. - - - - - Creates a object to describe a string type by using the specified facet values. - - - A object describing a string type by using the specified facet values. - - - A for which the - - object is created. - - true to set the character-encoding standard of the string type to Unicode; otherwise, false. - true to set the character-encoding standard of the string type to Unicode; otherwise, false. - true to set the length of the string type to fixed; otherwise, false. - - - - Creates a object to describe a string type by using the specified facet values and unbounded MaxLength. - - - A object describing a string type by using the specified facet values and unbounded MaxLength. - - - A for which the - - object is created. - - true to set the character-encoding standard of the string type to Unicode; otherwise, false. - true to set the length of the string type to fixed; otherwise, false - - - - Creates a object to describe a binary type by using the specified facet values. - - - A object describing a binary type by using the specified facet values. - - - A for which the - - object is created. - - true to set the length of the binary type to fixed; otherwise, false. - The maximum length of the binary type. - - - - Creates a object to describe a binary type by using the specified facet values. - - - A object describing a binary type by using the specified facet values. - - - A for which the - - object is created. - - true to set the length of the binary type to fixed; otherwise, false. - - - - Creates a object of the type that the parameters describe. - - - A object. - - - The simple type that defines the units of measurement of the object. - - - The degree of granularity of the in fractions of a second, based on the number of decimal places supported. For example a precision of 3 means the granularity supported is milliseconds. - - - - - Creates a object of the type that the parameters describe. - - - A object. - - The simple type that defines the units of measurement of the offset. - - The degree of granularity of the in fractions of a second, based on the number of decimal places supported. For example a precision of 3 means the granularity supported is milliseconds. - - - - - Creates a object of the type that the parameters describe. - - - A object. - - - The simple type that defines the units of measurement of the object. - - - The degree of granularity of the in fractions of a second, based on the number of decimal places supported. For example a precision of 3 means the granularity supported is milliseconds. - - - - - Creates a object to describe a decimal type by using the specified facet values. - - - A object describing a decimal type by using the specified facet values. - - - A for which the - - object is created. - - - The precision of the decimal type as type . - - - The scale of the decimal type as type . - - - - - Creates a object to describe a decimal type with unbounded precision and scale facet values. - - - A object describing a decimal type with unbounded precision and scale facet values. - - - A for which the - - object is created. - - - - - Gets the built-in type kind for this . - - - A object that represents the built-in type kind for this - - . - - - - - Gets the type information described by this . - - - An object that represents the type information described by this - - . - - - - - Gets the list of facets for the type that is described by this - - . - - - A collection of type that contains the list of facets for the type that is described by this - - . - - - - - Returns a Model type usage for a provider type - - Model (CSpace) type usage - - - - Checks whether this is a subtype of the specified - - . - - - true if this is a subtype of the specified - - ; otherwise, false. - - - The object to be checked. - - - - - Returns the full name of the type described by this . - - - The full name of the type described by this as string. - - - - - This exception is thrown when a requested object is not found in the store. - - - - - Initializes a new instance of . - - - - - Initializes a new instance of with a specialized error message. - - The message that describes the error. - - - - Initializes a new instance of class that uses a specified error message and a reference to the inner exception. - - The message that describes the error. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Caches an ELinq query - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg2 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg3 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg4 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg5 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg6 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg7 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg8 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg9 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg10 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg11 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg12 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg13 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg14 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg15 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg2 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg3 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg4 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg5 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg6 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg7 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg8 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg9 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg10 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg11 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg12 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg13 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg14 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg2 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg3 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg4 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg5 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg6 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg7 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg8 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg9 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg10 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg11 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg12 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg13 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg2 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg3 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg4 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg5 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg6 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg7 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg8 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg9 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg10 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg11 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg12 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg2 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg3 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg4 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg5 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg6 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg7 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg8 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg9 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg10 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg11 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg2 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg3 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg4 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg5 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg6 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg7 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg8 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg9 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg10 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg2 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg3 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg4 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg5 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg6 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg7 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg8 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg9 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg2 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg3 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg4 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg5 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg6 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg7 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg8 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg2 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg3 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg4 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg5 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg6 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg7 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg2 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg3 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg4 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg5 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg6 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg2 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg3 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg4 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg5 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg2 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg3 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg4 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg2 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg3 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg2 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - Represents the type of the parameter that has to be passed in when executing the delegate returned by this method. TArg1 must be a primitive type. - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - Creates a new delegate that represents the compiled LINQ to Entities query. - - , a generic delegate that represents the compiled LINQ to Entities query. - - The lambda expression to compile. - - A type derived from . - - - The type T of the query results returned by executing the delegate returned by the - - method. - - - - - The values currently assigned to the properties of an entity. - - - - - This is the interface that represent the minimum interface required - to be an entity in ADO.NET. - - - - Notifies the change tracker that a property change is pending on a complex object. - The name of the changing property. - property is null. - - - Notifies the change tracker that a property of a complex object has changed. - The name of the changed property. - property is null. - - - - Attribute for complex properties - Implied default AttributeUsage properties Inherited=True, AllowMultiple=False, - The metadata system expects this and will only look at the first of each of these attributes, even if there are more. - - - - - attribute for complex types - - - - - Attribute identifying the Edm base class - - - - - Attribute indicating an enum type. - - - - - Indicates that the given method is a proxy for an EDM function. - - - Note that this attribute has been replaced by the starting with EF6. - - - - - Creates a new DbFunctionAttribute instance. - - The namespace name of the EDM function represented by the attributed method. - The function name of the EDM function represented by the attributed method. - - - - Base attribute for properties mapped to store elements. - Implied default AttributeUsage properties Inherited=True, AllowMultiple=False, - The metadata system expects this and will only look at the first of each of these attributes, even if there are more. - - - - - Attribute identifying the Ends defined for a RelationshipSet - Implied default AttributeUsage properties Inherited=True, AllowMultiple=False, - The metadata system expects this and will only look at the first of each of these attributes, even if there are more. - - - - - Initializes a new instance of the - - class. - - The namespace name of the relationship property. - The name of the relationship. The relationship name is not namespace qualified. - The role name at the other end of the relationship. - - - The namespace name of the navigation property. - - A that is the namespace name. - - - - Gets the unqualified relationship name. - The relationship name. - - - Gets the role name at the other end of the relationship. - The target role name is specified by the Role attribute of the other End element in the association that defines this relationship in the conceptual model. For more information, see Association (EDM). - - - - Defines a relationship between two entity types based on an association in the conceptual model. - - - - - Creates an instance of the class. - - The name of the namespace for the association in which this entity participates. - The name of a relationship in which this entity participates. - Name of the role for the type at one end of the association. - - A value of that indicates the multiplicity at one end of the association, such as one or many. - - The type of the entity at one end of the association. - Name of the role for the type at the other end of the association. - - A value of that indicates the multiplicity at the other end of the association, such as one or many. - - The type of the entity at the other end of the association. - - - - Initializes a new instance of the - - class. - - The name of the namespace for the association in which this entity participates. - The name of a relationship in which this entity participates. - Name of the role for the type at one end of the association. - - A value of that indicates the multiplicity at one end of the association, such as one or many. - - The type of the entity at one end of the association. - Name of the role for the type at the other end of the association. - - A value of that indicates the multiplicity at the other end of the association, such as one or many. - - The type of the entity at the other end of the association. - A value that indicates whether the relationship is based on the foreign key value. - - - The namespace for the relationship. - - A that is the namespace for the relationship. - - - - Name of the relationship. - - A that is the name of a relationship that is defined by this - - . - - - - Name of the role at one end of the relationship. - - A that is the name of the role. - - - - Multiplicity at one end of the relationship. - - A value that indicates the multiplicity. - - - - Type of the entity at one end of the relationship. - - A that is the type of the object at this end of the association. - - - - Name of the role at the other end of the relationship. - - A that is the name of the role. - - - - Multiplicity at the other end of the relationship. - - A value that indicates the multiplicity. - - - - Type of the entity at the other end of the relationship. - - A that is the type of the object t the other end of the association. - - - - Gets a Boolean value that indicates whether the relationship is based on the foreign key value. - true if the relationship is based on the foreign key value; otherwise false. - - - - Attribute for scalar properties in an IEntity. - Implied default AttributeUsage properties Inherited=True, AllowMultiple=False, - The metadata system expects this and will only look at the first of each of these attributes, even if there are more. - - - - Gets or sets the value that indicates whether the property can have a null value. - The value that indicates whether the property can have a null value. - - - Gets or sets the value that indicates whether the property is part of the entity key. - The value that indicates whether the property is part of the entity key. - - - - Attribute for static types - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with a unique value for each model referenced by the assembly. - - - Setting this parameter to a unique value for each model file in a Visual Basic - assembly will prevent the following error: - "'System.Data.Entity.Core.Objects.DataClasses.EdmSchemaAttribute' cannot be specified more than once in this project, even with identical parameter values." - - A string that is a unique GUID value for the model in the assembly. - - - - Base attribute for schematized types - - - - The name of the type in the conceptual schema that maps to the class to which this attribute is applied. - - A that is the name. - - - - The namespace name of the entity object type or complex type in the conceptual schema that maps to this type. - - A that is the namespace name. - - - - - Collection of entities modeling a particular EDM construct - which can either be all entities of a particular type or - entities participating in a particular relationship. - - The type of entities in this collection. - - - - Initializes a new instance of the class. - - - - Gets the number of objects that are contained in the collection. - - The number of elements that are contained in the - - . - - - - - Gets a value that indicates whether the - - is read-only. - - Always returns false. - - - - IListSource.ContainsListCollection implementation. Always returns false. - This means that the IList we return is the one which contains our actual data, - it is not a list of collections. - - - - - Returns the collection as an used for data binding. - - - An of entity objects. - - - - Loads related objects into the collection, using the specified merge option. - - Specifies how the objects in this collection should be merged with the objects that might have been returned from previous queries against the same - - . - - - - - - - Defines relationships between an object and a collection of related objects in an object context. - - Loads related entities into the local collection. If the collection is already filled - or partially filled, merges existing entities with the given entities. The given - entities are not assumed to be the complete set of related entities. - Owner and all entities passed in must be in Unchanged or Modified state. We allow - deleted elements only when the state manager is already tracking the relationship - instance. - - Collection of objects in the object context that are related to the source object. - entities collection is null. - - The source object or an object in the entities collection is null or is not in an - - or state.-or-The relationship cannot be defined based on the EDM metadata. This can occur when the association in the conceptual schema does not support a relationship between the two types. - - - - Defines a relationship between two attached objects in an object context. - The object being attached. - When the entity is null. - - When the entity cannot be related to the source object. This can occur when the association in the conceptual schema does not support a relationship between the two types.-or-When either object is null or is not in an - - or state. - - - - Adds an object to the collection. - - An object to add to the collection. entity must implement - - . - - entity is null. - - - Removes an object from the collection and marks the relationship for deletion. - true if item was successfully removed; otherwise, false. - The object to remove from the collection. - entity object is null. - The entity object is not attached to the same object context.-or-The entity object does not have a valid relationship manager. - - - Returns an enumerator that is used to iterate through the objects in the collection. - - An that iterates through the set of values cached by - - . - - - - - Returns an enumerator that is used to iterate through the set of values cached by - - . - - - An that iterates through the set of values cached by - - . - - - - Removes all entities from the collection. - - - Determines whether a specific object exists in the collection. - - true if the object is found in the ; otherwise, false. - - - The object to locate in the . - - - - Copies all the contents of the collection to an array, starting at the specified index of the target array. - The array to copy to. - The zero-based index in the array at which copying begins. - - - Used internally to serialize entity objects. - The streaming context. - - - Used internally to deserialize entity objects. - The streaming context. - - - Returns an object query that, when it is executed, returns the same set of objects that exists in the current collection. - - An that represents the entity collection. - - - When the object is in an state - or when the object is in a - state with a - other than - . - - - - - This is the class is the basis for all perscribed EntityObject classes. - - - - Gets the entity state of the object. - - The of this object. - - - - Gets or sets the key for this object. - - The for this object. - - - - - Used by the ObjectStateManager to attach or detach this EntityObject to the cache. - - Reference to the ObjectStateEntry that contains this entity - - - - Returns the container for the lazily created relationship - navigation property objects, collections and refs. - - - - Notifies the change tracker that a property change is pending. - The name of the changing property. - property is null. - - - Notifies the change tracker that a property has changed. - The name of the changed property. - property is null. - - - - Models a relationship end with multiplicity 1. - - - - Returns the key for the related object. - - Returns the EntityKey of the target entity associated with this EntityReference. - Is non-null in the following scenarios: - (a) Entities are tracked by a context and an Unchanged or Added client-side relationships exists for this EntityReference's owner with the - same RelationshipName and source role. This relationship could have been created explicitly by the user (e.g. by setting - the EntityReference.Value, setting this property directly, or by calling EntityCollection.Add) or automatically through span queries. - (b) If the EntityKey was non-null before detaching an entity from the context, it will still be non-null after detaching, until any operation - occurs that would set it to null, as described below. - (c) Entities are detached and the EntityKey is explicitly set to non-null by the user. - (d) Entity graph was created using a NoTracking query with full span - Is null in the following scenarios: - (a) Entities are tracked by a context but there is no Unchanged or Added client-side relationship for this EntityReference's owner with the - same RelationshipName and source role. - (b) Entities are tracked by a context and a relationship exists, but the target entity has a temporary key (i.e. it is Added) or the key - is one of the special keys - (c) Entities are detached and the relationship was explicitly created by the user. - - - An that is the key of the related object. - - - - - Models a relationship end with multiplicity 1. - - The type of the entity being referenced. - - - - Creates a new instance of . - - - The default constructor is required for some serialization scenarios. It should not be used to - create new EntityReferences. Use the GetRelatedReference or GetRelatedEnd methods on the RelationshipManager - class instead. - - - - - Gets or sets the related object returned by this - - . - - - The object returned by this . - - - - - Loads the related object for this with the specified merge option. - - - Specifies how the object should be returned if it already exists in the - - . - - - The source of the is null - or a query returned more than one related end - or a query returned zero related ends, and one related end was expected. - - - - - - - Creates a many-to-one or one-to-one relationship between two objects in the object context. - The object being attached. - When the entity is null. - When the entity cannot be related to the current related end. This can occur when the association in the conceptual schema does not support a relationship between the two types. - - - Creates an equivalent object query that returns the related object. - - An that returns the related object. - - - When the object is in an state - or when the object is in a - state with a - other than . - - - - This method is used internally to serialize related entity objects. - The serialized stream. - - - This method is used internally to serialize related entity objects. - The serialized stream. - - - - This interface is implemented by a change tracker and is used by data classes to report changes - - - - Notifies the change tracker of a pending change to a property of an entity type. - The name of the property that is changing. - - - Notifies the change tracker that a property of an entity type has changed. - The name of the property that has changed. - - - Notifies the change tracker of a pending change to a complex property. - The name of the top-level entity property that is changing. - The complex type that contains the property that is changing. - The name of the property that is changing on complex type. - - - Notifies the change tracker that a property of a complex type has changed. - The name of the complex property of the entity type that has changed. - The complex type that contains the property that changed. - The name of the property that changed on complex type. - - - Gets current state of a tracked object. - - An that is the state of the tracked object.For more information, see Identity Resolution, State Management, and Change Tracking and Tracking Changes in POCO Entities. - - - - - Minimum interface that a data class must implement in order to be managed by a change tracker. - - - - - Gets or sets the used to report changes. - - - The used to report changes. - - - - - Interface that defines an entity containing a key. - - - - - Gets or sets the for instances of entity types that implement this interface. - - - If an object is being managed by a change tracker, it is expected that - IEntityChangeTracker methods EntityMemberChanging and EntityMemberChanged will be - used to report changes on EntityKey. This allows the change tracker to validate the - EntityKey's new value and to verify if the change tracker is in a state where it can - allow updates to the EntityKey. - - - The for instances of entity types that implement this interface. - - - - - Interface that a data class must implement if exposes relationships - - - - Returns the relationship manager that manages relationships for an instance of an entity type. - - Classes that expose relationships must implement this property - by constructing and setting RelationshipManager in their constructor. - The implementation of this property should use the static method RelationshipManager.Create - to create a new RelationshipManager when needed. Once created, it is expected that this - object will be stored on the entity and will be provided through this property. - - - The for this entity. - - - - - Represents one end of a relationship. - - - - - Gets or sets a value indicating whether the entity (for an or all entities - in the collection (for an have been loaded from the database. - - - Loading the related entities from the database either using lazy-loading, as part of a query, or explicitly - with one of the Load methods will set the IsLoaded flag to true. - IsLoaded can be explicitly set to true to prevent the related entities from being lazy-loaded. - This can be useful if the application has caused a subset of related entities to be loaded - and wants to prevent any other entities from being loaded automatically. - Note that explicit loading using will load all related entities from the database - regardless of whether or not IsLoaded is true. - When any related entity is detached the IsLoaded flag is reset to false indicating that not all related entities - are now loaded. - - - True if all the related entities are loaded or the IsLoaded has been explicitly set to true; otherwise false. - - - - Gets the name of the relationship in which this related end participates. - - The name of the relationship in which this is participating. The relationship name is not namespace qualified. - - - - Gets the role name at the source end of the relationship. - The role name at the source end of the relationship. - - - Gets the role name at the target end of the relationship. - The role name at the target end of the relationship. - - - Returns a reference to the metadata for the related end. - - A object that contains metadata for the end of a relationship. - - - - Loads the related object or objects into this related end with the default merge option. - - - Asynchronously loads the related object or objects into this related end with the default merge option. - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - - - - Loads the related object or objects into the related end with the specified merge option. - - The to use when merging objects into an existing - . - - - - Asynchronously loads the related object or objects into the related end with the specified merge option. - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The to use when merging objects into an existing - . - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - - - - Adds an object to the related end. - - An object to add to the collection. entity must implement - - . - - - - Adds an object to the related end. - An object to add to the collection. - - - Removes an object from the collection of objects at the related end. - - true if entity was successfully removed, false if entity was not part of the - - . - - - The object to remove from the collection. entity must implement - - . - - - - Removes an object from the collection of objects at the related end. - - true if entity was successfully removed; false if entity was not part of the - - . - - An object to remove from the collection. - - - Defines a relationship between two attached objects. - - The object being attached. entity must implement - - . - - - - Defines a relationship between two attached objects. - The object being attached. - - - - Returns an that represents the objects that belong to the related end. - - - An that represents the objects that belong to the related end. - - - - - Returns an that iterates through the collection of related objects. - - - An that iterates through the collection of related objects. - - - - - Base class for EntityCollection and EntityReference - - - - Occurs when a change is made to a related end. - - - Gets the name of the relationship in which this related end participates. - - The name of the relationship in which this participates. The relationship name is not namespace qualified. - - - - Gets the role name at the source end of the relationship. - - A that is the role name. - - - - Gets the role name at the target end of the relationship. - - A that is the role name. - - - - - Returns an that represents the objects that belong to the related end. - - - An that represents the objects that belong to the related end. - - - - Gets a reference to the metadata for the related end. - - A object that contains metadata for the end of a relationship. - - - - - - - - Loads the related object or objects into the related end with the default merge option. - - - When the source object was retrieved by using a query - and the is not - or the related objects are already loaded - or when the source object is not attached to the - or when the source object is being tracked but is in the - or state - or the - used for - is . - - - - - Asynchronously loads the related object or objects into the related end with the default merge option. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - - - When the source object was retrieved by using a query - and the is not - or the related objects are already loaded - or when the source object is not attached to the - or when the source object is being tracked but is in the - or state - or the - used for - is . - - - - - Loads an object or objects from the related end with the specified merge option. - - - The to use when merging objects into an existing - . - - - When the source object was retrieved by using a query - and the - is not - or the related objects are already loaded - or when the source object is not attached to the - or when the source object is being tracked but is in the - or state - or the - used for - is . - - - - - Asynchronously loads an object or objects from the related end with the specified merge option. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The to use when merging objects into an existing - . - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - - - When the source object was retrieved by using a query - and the - is not - or the related objects are already loaded - or when the source object is not attached to the - or when the source object is being tracked but is in the - or state - or the - used for - is . - - - - - Attaches an entity to the related end. This method works in exactly the same way as Attach(object). - It is maintained for backward compatibility with previous versions of IRelatedEnd. - - The entity to attach to the related end - - Thrown when - - is null. - - Thrown when the entity cannot be related via the current relationship end. - - - - Attaches an entity to the related end. If the related end is already filled - or partially filled, this merges the existing entities with the given entity. The given - entity is not assumed to be the complete set of related entities. - Owner and all entities passed in must be in Unchanged or Modified state. - Deleted elements are allowed only when the state manager is already tracking the relationship - instance. - - The entity to attach to the related end - - Thrown when - - is null. - - Thrown when the entity cannot be related via the current relationship end. - - - - Adds an entity to the related end. This method works in exactly the same way as Add(object). - It is maintained for backward compatibility with previous versions of IRelatedEnd. - - Entity instance to add to the related end - - - - Adds an entity to the related end. If the owner is - attached to a cache then the all the connected ends are - added to the object cache and their corresponding relationships - are also added to the ObjectStateManager. The RelatedEnd of the - relationship is also fixed. - - Entity instance to add to the related end - - - - Removes an entity from the related end. This method works in exactly the same way as Remove(object). - It is maintained for backward compatibility with previous versions of IRelatedEnd. - - Entity instance to remove from the related end - Returns true if the entity was successfully removed, false if the entity was not part of the RelatedEnd. - - - - Removes an entity from the related end. If owner is - attached to a cache, marks relationship for deletion and if - the relationship is composition also marks the entity for deletion. - - Entity instance to remove from the related end - Returns true if the entity was successfully removed, false if the entity was not part of the RelatedEnd. - - - - Returns an that iterates through the collection of related objects. - - - An that iterates through the collection of related objects. - - - - - Used internally to deserialize entity objects along with the - - instances. - - The serialized stream. - - - - Identifies the kind of a relationship - - - - - The relationship is an Association - - - - - Container for the lazily created relationship navigation - property objects (collections and refs). - - - - - Creates a new object. - - - Used by data classes that support relationships. If the change tracker - requests the RelationshipManager property and the data class does not - already have a reference to one of these objects, it calls this method - to create one, then saves a reference to that object. On subsequent accesses - to that property, the data class should return the saved reference. - The reason for using a factory method instead of a public constructor is to - emphasize that this is not something you would normally call outside of a data class. - By requiring that these objects are created via this method, developers should - give more thought to the operation, and will generally only use it when - they explicitly need to get an object of this type. It helps define the intended usage. - - - The requested . - - Reference to the entity that is calling this method. - - - - Returns either an or - - of the correct type for the specified target role in a relationship. - - - representing the - - or - - that was retrieved. - - Name of the relationship in which targetRoleName is defined. The relationship name is not namespace qualified. - Target role to use to retrieve the other end of relationshipName . - relationshipName or targetRoleName is null. - The source type does not match the type of the owner. - targetRoleName is invalid or unable to find the relationship type in the metadata. - - - - Takes an existing EntityReference that was created with the default constructor and initializes it using the provided relationship and target role names. - This method is designed to be used during deserialization only, and will throw an exception if the provided EntityReference has already been initialized, - if the relationship manager already contains a relationship with this name and target role, or if the relationship manager is already attached to a ObjectContext.W - - The relationship name. - The role name of the related end. - - The to initialize. - - - The type of the being initialized. - - - When the provided - is already initialized.-or-When the relationship manager is already attached to an - - or when the relationship manager already contains a relationship with this name and target role. - - - - - Takes an existing EntityCollection that was created with the default constructor and initializes it using the provided relationship and target role names. - This method is designed to be used during deserialization only, and will throw an exception if the provided EntityCollection has already been initialized, - or if the relationship manager is already attached to a ObjectContext. - - The relationship name. - The target role name. - An existing EntityCollection. - Type of the entity represented by targetRoleName - - - - Gets an of related objects with the specified relationship name and target role name. - - - The of related objects. - - Name of the relationship to navigate. The relationship name is not namespace qualified. - Name of the target role for the navigation. Indicates the direction of navigation across the relationship. - - The type of the returned . - - - The specified role returned an instead of an - - . - - - - - Gets the for a related object by using the specified combination of relationship name and target role name. - - - The of a related object. - - Name of the relationship to navigate. The relationship name is not namespace qualified. - Name of the target role for the navigation. Indicates the direction of navigation across the relationship. - - The type of the returned . - - - The specified role returned an instead of an - - . - - - - Returns an enumeration of all the related ends managed by the relationship manager. - - An of objects that implement - - . An empty enumeration is returned when the relationships have not yet been populated. - - - - - Called by Object Services to prepare an for binary serialization with a serialized relationship. - - Describes the source and destination of a given serialized stream, and provides an additional caller-defined context. - - - - Used internally to deserialize entity objects along with the - - instances. - - The serialized stream. - - - - This class contains the common methods need for an date object. - - - - - Public constant name used for change tracking - Providing this definition allows users to use this constant instead of - hard-coding the string. This helps to ensure the property name is correct - and allows faster comparisons in places where we are looking for this specific string. - Users can still use the case-sensitive string directly instead of the constant, - it will just be slightly slower on comparison. - Including the dash (-) character around the name ensures that this will not conflict with - a real data property, because -EntityKey- is not a valid identifier name - - - - - Notification that a property has been changed. - - - The PropertyChanged event can indicate all properties on the - object have changed by using either a null reference - (Nothing in Visual Basic) or String.Empty as the property name - in the PropertyChangedEventArgs. - - - - - Notification that a property is about to be changed. - - - The PropertyChanging event can indicate all properties on the - object are changing by using either a null reference - (Nothing in Visual Basic) or String.Empty as the property name - in the PropertyChangingEventArgs. - - - - - Raises the event. - - The name of the changed property. - - - - Raises the event. - - The name of the property changing. - - - Returns the minimum date time value supported by the data source. - - A value that is the minimum date time that is supported by the data source. - - - - Raises an event that is used to report that a property change is pending. - The name of the changing property. - - - Raises an event that is used to report that a property change has occurred. - The name for the changed property. - - - Returns a complex type for the specified property. - - Unlike most of the other helper methods in this class, this one is not static - because it references the SetValidValue for complex objects, which is also not static - because it needs a reference to this. - - A complex type object for the property. - A complex object that inherits from complex object. - The name of the complex property that is the complex object. - Indicates whether the type supports null values. - Indicates whether the type is initialized. - The type of the complex object being requested. - - - Determines whether the specified byte arrays contain identical values. - true if both arrays are of the same length and contain the same byte values or if both arrays are null; otherwise, false. - The first byte array value to compare. - The second byte array to compare. - - - Returns a copy of the current byte value. - - A copy of the current value. - - The current byte array value. - - - - Makes sure the value being set for a property is valid. - - - The value being validated. - - The value passed into the property setter. - Flag indicating if this property is allowed to be null. - The name of the property that is being validated. - If value is null for a non nullable value. - - - - Makes sure the value being set for a property is valid. - - - A value being set. - - The value being set. - Indicates whether the property is nullable. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - The Boolean value. - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - The Boolean value. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - - - - Makes sure the value being set for a property is valid. - - - A that is set. - - - The value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The value that is set. - - The value that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - A value being set. - - - The value. - - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - - - Makes sure the Single value being set for a property is valid. - - The value being set. - - - The value. - - The name of the property that is being validated. - - - Makes sure the Single value being set for a property is valid. - - The value being set. - - - The value. - - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - Name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The nullable value being set. - - - The nullable value. - - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - - - Makes sure the UInt16 value being set for a property is valid. - The nullable UInt16 value being set. - The nullable UInt16 value. - The name of the property that is being validated. - - - Makes sure the UInt16 value being set for a property is valid. - The nullable UInt16 value being set. - The nullable UInt16 value. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - - - Makes sure the UInt32 value being set for a property is valid. - The nullable UInt32 value being set. - The nullable UInt32 value. - The name of the property that is being validated. - - - Makes sure the UInt32 value being set for a property is valid. - The nullable UInt32 value being set. - The nullable UInt32 value. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - - The value being set. - - - The value. - - - - - Makes sure the value being set for a property is valid. - - The nullable UInt64 value being set. - The nullable UInt64 value. - The name of the property that is being validated. - - - - Makes sure the value being set for a property is valid. - - The nullable UInt64 value being set. - The nullable UInt64 value. - - - Validates that the property is not null, and throws if it is. - The validated property. - The string value to be checked. - Flag indicating if this property is allowed to be null. - The name of the property that is being validated. - The string value is null for a non-nullable string. - - - Validates that the property is not null, and throws if it is. - - The validated value. - - The string value to be checked. - Flag indicating if this property is allowed to be null. - - - Validates that the property is not null, and throws if it is. - - The value being set. - - - The value to be checked. - - Flag indicating if this property is allowed to be null. - Name of the property that is being validated. - The value is null for a non-nullable property. - - - Validates that the property is not null, and throws if it is. - - The value being set. - - - value to be checked. - - Flag indicating if this property is allowed to be null. - The value is null for a non-nullable property. - - - Validates that the property is not null, and throws if it is. - - The value being set. - - - value to be checked. - - Flag indicating if this property is allowed to be null. - The name of the property that is being validated. - The value is null for a non-nullable property. - - - Validates that the property is not null, and throws if it is. - - The value being set. - - - The value to be checked. - - Flag indicating if this property is allowed to be null. - The value is null for a non-nullable property. - - - Sets a complex object for the specified property. - A complex type that derives from complex object. - The original complex object for the property, if any. - The complex object is being set. - The complex property that is being set to the complex object. - The type of the object being replaced. - - - Verifies that a complex object is not null. - The complex object being validated. - The complex object that is being validated. - The complex property on the parent object that is associated with complexObject . - The type of the complex object being verified. - - - - Provides access to the original values of object data. The DbUpdatableDataRecord implements methods that allow updates to the original values of an object. - - - - Gets the number of fields in the record. - An integer value that is the field count. - - - Returns a value that has the given field ordinal. - The value that has the given field ordinal. - The ordinal of the field. - - - Gets a value that has the given field name. - The field value. - The name of the field. - - - Retrieves the field value as a Boolean. - The field value as a Boolean. - The ordinal of the field. - - - Retrieves the field value as a byte. - The field value as a byte. - The ordinal of the field. - - - Retrieves the field value as a byte array. - The number of bytes copied. - The ordinal of the field. - The index at which to start copying data. - The destination buffer where data is copied. - The index in the destination buffer where copying will begin. - The number of bytes to copy. - - - Retrieves the field value as a char. - The field value as a char. - The ordinal of the field. - - - Retrieves the field value as a char array. - The number of characters copied. - The ordinal of the field. - The index at which to start copying data. - The destination buffer where data is copied. - The index in the destination buffer where copying will begin. - The number of characters to copy. - - - - Retrieves the field value as an . - - - The field value as an . - - The ordinal of the field. - - - - Retrieves the field value as a - - - The field value as a . - - The ordinal of the field. - - - Retrieves the name of the field data type. - The name of the field data type. - The ordinal of the field. - - - - Retrieves the field value as a . - - - The field value as a . - - The ordinal of the field. - - - Retrieves the field value as a decimal. - The field value as a decimal. - The ordinal of the field. - - - Retrieves the field value as a double. - The field value as a double. - The ordinal of the field. - - - Retrieves the type of a field. - The field type. - The ordinal of the field. - - - Retrieves the field value as a float. - The field value as a float. - The ordinal of the field. - - - - Retrieves the field value as a . - - - The field value as a . - - The ordinal of the field. - - - - Retrieves the field value as an . - - - The field value as an . - - The ordinal of the field. - - - - Retrieves the field value as an . - - - The field value as an . - - The ordinal of the field. - - - - Retrieves the field value as an . - - - The field value as an . - - The ordinal of the field. - - - Retrieves the name of a field. - The name of the field. - The ordinal of the field. - - - Retrieves the ordinal of a field by using the name of the field. - The ordinal of the field. - The name of the field. - - - Retrieves the field value as a string. - The field value. - The ordinal of the field. - - - Retrieves the value of a field. - The field value. - The ordinal of the field. - - - Retrieves the value of a field. - The field value. - The ordinal of the field. - - - Populates an array of objects with the field values of the current record. - The number of field values returned. - An array of objects to store the field values. - - - - Returns whether the specified field is set to . - - - true if the field is set to ; otherwise false. - - The ordinal of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - Sets field values in a record. - The number of the fields that were set. - The values of the field. - - - - Sets a field to the value. - - The ordinal of the field. - - - Gets data record information. - - A object. - - - - - Retrieves a field value as a . - - - A field value as a . - - The ordinal of the field. - - - - Retrieves the field value as a . - - - The field value as a . - - The ordinal of the field. - - - Sets the value of a field in a record. - The ordinal of the field. - The value of the field. - - - - List of type pairs that constructor call new XXXX(YYY yyy) could be translated to SQL CAST(yyy AS XXXXX) call - - - - - Provides common language runtime (CLR) methods that expose EDM canonical functions - for use in or LINQ to Entities queries. - - - Note that these functions have been moved to the class starting with EF6. - The functions are retained here only to help in the migration of older EF apps to EF6. - - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Left EDM function to return a given - number of the leftmost characters in a string. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input string. - The number of characters to return - A string containing the number of characters asked for from the left of the input string. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Right EDM function to return a given - number of the rightmost characters in a string. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input string. - The number of characters to return - A string containing the number of characters asked for from the right of the input string. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Reverse EDM function to return a given - string with the order of the characters reversed. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input string. - The input string with the order of the characters reversed. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical GetTotalOffsetMinutes EDM function to - return the number of minutes that the given date/time is offset from UTC. This is generally between +780 - and -780 (+ or - 13 hrs). - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The date/time value to use. - The offset of the input from UTC. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical TruncateTime EDM function to return - the given date with the time portion cleared. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The date/time value to use. - The input date with the time portion cleared. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical TruncateTime EDM function to return - the given date with the time portion cleared. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The date/time value to use. - The input date with the time portion cleared. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical CreateDateTime EDM function to - create a new object. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The year. - The month (1-based). - The day (1-based). - The hours. - The minutes. - The seconds, including fractional parts of the seconds if desired. - The new date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical CreateDateTimeOffset EDM function to - create a new object. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The year. - The month (1-based). - The day (1-based). - The hours. - The minutes. - The seconds, including fractional parts of the seconds if desired. - The time zone offset part of the new date. - The new date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical CreateTime EDM function to - create a new object. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The hours. - The minutes. - The seconds, including fractional parts of the seconds if desired. - The new time span. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddYears EDM function to - add the given number of years to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of years to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddYears EDM function to - add the given number of years to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of years to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMonths EDM function to - add the given number of months to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of months to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMonths EDM function to - add the given number of months to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of months to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddDays EDM function to - add the given number of days to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of days to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddDays EDM function to - add the given number of days to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of days to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddHours EDM function to - add the given number of hours to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of hours to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddHours EDM function to - add the given number of hours to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of hours to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddHours EDM function to - add the given number of hours to a time span. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of hours to add. - A resulting time span. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMinutes EDM function to - add the given number of minutes to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of minutes to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMinutes EDM function to - add the given number of minutes to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of minutes to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMinutes EDM function to - add the given number of minutes to a time span. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of minutes to add. - A resulting time span. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddSeconds EDM function to - add the given number of seconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of seconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddSeconds EDM function to - add the given number of seconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of seconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddSeconds EDM function to - add the given number of seconds to a time span. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of seconds to add. - A resulting time span. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMilliseconds EDM function to - add the given number of milliseconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of milliseconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMilliseconds EDM function to - add the given number of milliseconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of milliseconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMilliseconds EDM function to - add the given number of milliseconds to a time span. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of milliseconds to add. - A resulting time span. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMicroseconds EDM function to - add the given number of microseconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of microseconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMicroseconds EDM function to - add the given number of microseconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of microseconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMicroseconds EDM function to - add the given number of microseconds to a time span. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of microseconds to add. - A resulting time span. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddNanoseconds EDM function to - add the given number of nanoseconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of nanoseconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddNanoseconds EDM function to - add the given number of nanoseconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of nanoseconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddNanoseconds EDM function to - add the given number of nanoseconds to a time span. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of nanoseconds to add. - A resulting time span. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffYears EDM function to - calculate the number of years between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of years between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffYears EDM function to - calculate the number of years between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of years between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMonths EDM function to - calculate the number of months between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of months between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMonths EDM function to - calculate the number of months between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of months between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffDays EDM function to - calculate the number of days between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of days between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffDays EDM function to - calculate the number of days between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of days between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffHours EDM function to - calculate the number of hours between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of hours between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffHours EDM function to - calculate the number of hours between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of hours between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffHours EDM function to - calculate the number of hours between two time spans. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first time span. - The second time span. - The number of hours between the first and second time spans. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMinutes EDM function to - calculate the number of minutes between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of minutes between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMinutes EDM function to - calculate the number of minutes between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of minutes between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMinutes EDM function to - calculate the number of minutes between two time spans. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first time span. - The second time span. - The number of minutes between the first and second time spans. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffSeconds EDM function to - calculate the number of seconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of seconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffSeconds EDM function to - calculate the number of seconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of seconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffSeconds EDM function to - calculate the number of seconds between two time spans. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first time span. - The second time span. - The number of seconds between the first and second time spans. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMilliseconds EDM function to - calculate the number of milliseconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of milliseconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMilliseconds EDM function to - calculate the number of milliseconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of milliseconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMilliseconds EDM function to - calculate the number of milliseconds between two time spans. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first time span. - The second time span. - The number of milliseconds between the first and second time spans. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMicroseconds EDM function to - calculate the number of microseconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of microseconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMicroseconds EDM function to - calculate the number of microseconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of microseconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMicroseconds EDM function to - calculate the number of microseconds between two time spans. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first time span. - The second time span. - The number of microseconds between the first and second time spans. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffNanoseconds EDM function to - calculate the number of nanoseconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of nanoseconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffNanoseconds EDM function to - calculate the number of nanoseconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of nanoseconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffNanoseconds EDM function to - calculate the number of nanoseconds between two time spans. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first time span. - The second time span. - The number of nanoseconds between the first and second time spans. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Truncate EDM function to - truncate the given value to the number of specified digits. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The value to truncate. - The number of digits to preserve. - The truncated value. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Truncate EDM function to - truncate the given value to the number of specified digits. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The value to truncate. - The number of digits to preserve. - The truncated value. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Like EDM operator to match an expression. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The string to search. - The expression to match against. - True if the searched string matches the expression; otherwise false. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Like EDM operator to match an expression. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The string to search. - The expression to match against. - The string to escape special characters with, must only be a single character. - True if the searched string matches the expression; otherwise false. - - - - When used as part of a LINQ to Entities query, this method acts as an operator that ensures the input - is treated as a Unicode string. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function impacts the way the LINQ query is translated to a query that can be run in the database. - - The input string. - The input string treated as a Unicode string. - - - - When used as part of a LINQ to Entities query, this method acts as an operator that ensures the input - is treated as a non-Unicode string. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function impacts the way the LINQ query is translated to a query that can be run in the database. - - The input string. - The input string treated as a non-Unicode string. - - - - Options for query execution. - - - - - Creates a new instance of . - - Merge option to use for entity results. - - - - Creates a new instance of . - - Merge option to use for entity results. - Whether the query is streaming or buffering. - - - - Merge option to use for entity results. - - - - - Whether the query is streaming or buffering. - - - - Determines whether the specified objects are equal. - true if the two objects are equal; otherwise, false. - The left object to compare. - The right object to compare. - - - - Determines whether the specified objects are not equal. - - The left object to compare. - The right object to compare. - true if the two objects are not equal; otherwise, false. - - - - - - - - - - Defines behavior for implementations of IQueryable that allow modifications to the membership of the resulting set. - - Type of entities returned from the queryable. - - - Notifies the set that an object that represents a new entity must be added to the set. - - Depending on the implementation, the change to the set may not be visible in an enumeration of the set - until changes to that set have been persisted in some manner. - - The new object to add to the set. - - - Notifies the set that an object that represents an existing entity must be added to the set. - - Depending on the implementation, the change to the set may not be visible in an enumeration of the set - until changes to that set have been persisted in some manner. - - The existing object to add to the set. - - - Notifies the set that an object that represents an existing entity must be deleted from the set. - - Depending on the implementation, the change to the set may not be visible in an enumeration of the set - until changes to that set have been persisted in some manner. - - The existing object to delete from the set. - - - Notifies the set that an object that represents an existing entity must be detached from the set. - - Depending on the implementation, the change to the set may not be visible in an enumeration of the set - until changes to that set have been persisted in some manner. - - The object to detach from the set. - - - - The different ways that new objects loaded from the database can be merged with existing objects already in memory. - - - - - Will only append new (top level-unique) rows. This is the default behavior. - - - - - Same behavior as LoadOption.OverwriteChanges. - - - - - Same behavior as LoadOption.PreserveChanges. - - - - - Will not modify cache. - - - - - ObjectContext is the top-level object that encapsulates a connection between the CLR and the database, - serving as a gateway for Create, Read, Update, and Delete operations. - - - - - Initializes a new instance of the class with the given connection. During construction, the metadata workspace is extracted from the - - object. - - - An that contains references to the model and to the data source connection. - - The connection is null. - The connection is invalid or the metadata workspace is invalid. - - - - Creates an ObjectContext with the given connection and metadata workspace. - - connection to the store - If set to true the connection is disposed when the context is disposed, otherwise the caller must dispose the connection. - - - - Initializes a new instance of the class with the given connection string and default entity container name. - - The connection string, which also provides access to the metadata information. - The connectionString is null. - The connectionString is invalid or the metadata workspace is not valid. - - - - Initializes a new instance of the class with a given connection string and entity container name. - - The connection string, which also provides access to the metadata information. - The name of the default entity container. When the defaultContainerName is set through this method, the property becomes read-only. - The connectionString is null. - The connectionString , defaultContainerName , or metadata workspace is not valid. - - - - Initializes a new instance of the class with a given connection and entity container name. - - - An that contains references to the model and to the data source connection. - - The name of the default entity container. When the defaultContainerName is set through this method, the property becomes read-only. - The connection is null. - The connection , defaultContainerName , or metadata workspace is not valid. - - - Gets the connection used by the object context. - - A object that is the connection. - - - When the instance has been disposed. - - - - Gets or sets the default container name. - - A that is the default container name. - - - - Gets the metadata workspace used by the object context. - - The object associated with this - - . - - - - Gets the object state manager used by the object context to track object changes. - - The used by this - - . - - - - Gets or sets the timeout value, in seconds, for all object context operations. A null value indicates that the default value of the underlying provider will be used. - - An value that is the timeout value, in seconds. - - The timeout value is less than 0. - - - Gets the LINQ query provider associated with this object context. - - The instance used by this object context. - - - - - Gets the instance that contains options that affect the behavior of the - - . - - - The instance that contains options that affect the behavior of the - - . - - - - - Returns itself. ObjectContext implements to provide a common - interface for and ObjectContext both of which will return the underlying - ObjectContext. - - - - - Gets the transaction handler in use by this context. May be null if no transaction have been started. - - - The transaction handler. - - - - - Returns the being used for this context. - - - - Occurs when changes are saved to the data source. - - - Occurs when a new entity object is created from data in the data source as part of a query or load operation. - - - Accepts all changes made to objects in the object context. - - - Adds an object to the object context. - Represents the entity set name, which may optionally be qualified by the entity container name. - - The to add. - - The entity parameter is null or the entitySetName does not qualify. - - - Explicitly loads an object related to the supplied object by the specified navigation property and using the default merge option. - The entity for which related objects are to be loaded. - The name of the navigation property that returns the related objects to be loaded. - - The entity is in a , - - or state or the entity is attached to another instance of - - . - - - - Explicitly loads an object that is related to the supplied object by the specified navigation property and using the specified merge option. - The entity for which related objects are to be loaded. - The name of the navigation property that returns the related objects to be loaded. - - The value to use when you load the related objects. - - - The entity is in a , - - or state or the entity is attached to another instance of - - . - - - - Explicitly loads an object that is related to the supplied object by the specified LINQ query and by using the default merge option. - The type of the entity. - The source object for which related objects are to be loaded. - A LINQ expression that defines the related objects to be loaded. - selector does not supply a valid input parameter. - selector is null. - - The entity is in a , - - or state or the entity is attached to another instance of - - . - - - - Explicitly loads an object that is related to the supplied object by the specified LINQ query and by using the specified merge option. - The type of the entity. - The source object for which related objects are to be loaded. - A LINQ expression that defines the related objects to be loaded. - - The value to use when you load the related objects. - - selector does not supply a valid input parameter. - selector is null. - - The entity is in a , - - or state or the entity is attached to another instance of - - . - - - - Applies property changes from a detached object to an object already attached to the object context. - The name of the entity set to which the object belongs. - The detached object that has property updates to apply to the original object. - When entitySetName is null or an empty string or when changed is null. - - When the from entitySetName does not match the - - of the object - - or when the entity is in a state other than - - or - - or the original object is not attached to the context. - - When the type of the changed object is not the same type as the original object. - - - - Copies the scalar values from the supplied object into the object in the - - that has the same key. - - The updated object. - The name of the entity set to which the object belongs. - - The detached object that has property updates to apply to the original object. The entity key of currentEntity must match the - - property of an entry in the - - . - - The entity type of the object. - entitySetName or current is null. - - The from entitySetName does not match the - - of the object - - or the object is not in the - - or it is in a - - state or the entity key of the supplied object is invalid. - - entitySetName is an empty string. - - - - Copies the scalar values from the supplied object into set of original values for the object in the - - that has the same key. - - The updated object. - The name of the entity set to which the object belongs. - - The detached object that has original values to apply to the object. The entity key of originalEntity must match the - - property of an entry in the - - . - - The type of the entity object. - entitySetName or original is null. - - The from entitySetName does not match the - - of the object - - or an - - for the object cannot be found in the - - or the object is in an - - or a - - state or the entity key of the supplied object is invalid or has property changes. - - entitySetName is an empty string. - - - Attaches an object or object graph to the object context in a specific entity set. - Represents the entity set name, which may optionally be qualified by the entity container name. - - The to attach. - - The entity is null. - - Invalid entity set or the object has a temporary key or the object has an - - and the - - does not match with the entity set passed in as an argument of the method or the object does not have an - - and no entity set is provided or any object from the object graph has a temporary - - or any object from the object graph has an invalid - - (for example, values in the key do not match values in the object) or the entity set could not be found from a given entitySetName name and entity container name or any object from the object graph already exists in another state manager. - - - - Attaches an object or object graph to the object context when the object has an entity key. - The object to attach. - The entity is null. - Invalid entity key. - - - Creates the entity key for a specific object, or returns the entity key if it already exists. - - The of the object. - - The fully qualified name of the entity set to which the entity object belongs. - The object for which the entity key is being retrieved. - When either parameter is null. - When entitySetName is empty or when the type of the entity object does not exist in the entity set or when the entitySetName is not fully qualified. - When the entity key cannot be constructed successfully based on the supplied parameters. - - - - Creates a new instance that is used to query, add, modify, and delete objects of the specified entity type. - - - The new instance. - - - Entity type of the requested . - - - The property is not set on the - - or the specified type belongs to more than one entity set. - - - - - Creates a new instance that is used to query, add, modify, and delete objects of the specified type and with the specified entity set name. - - - The new instance. - - - Name of the entity set for the returned . The string must be qualified by the default container name if the - - property is not set on the - - . - - - Entity type of the requested . - - - The from entitySetName does not match the - - of the object - - or the - - property is not set on the - - and the name is not qualified as part of the entitySetName parameter or the specified type belongs to more than one entity set. - - - - - Creates an in the current object context by using the specified query string. - - - An of the specified type. - - The query string to be executed. - Parameters to pass to the query. - - The entity type of the returned . - - The queryString or parameters parameter is null. - - - Marks an object for deletion. - - An object that specifies the entity to delete. The object can be in any state except - - . - - - - Removes the object from the object context. - - Object to be detached. Only the entity is removed; if there are any related objects that are being tracked by the same - - , those will not be detached automatically. - - The entity is null. - - The entity is not associated with this (for example, was newly created and not associated with any context yet, or was obtained through some other context, or was already detached). - - - - - Finalizes an instance of the class. - - - - Releases the resources used by the object context. - - - - Releases the resources used by the object context. - - - true to release both managed and unmanaged resources; false to release only unmanaged resources. - - - - Returns an object that has the specified entity key. - - An that is an instance of an entity type. - - The key of the object to be found. - The key parameter is null. - - The object is not found in either the or the data source. - - - - Updates a collection of objects in the object context with data from the database. - - A value that indicates whether - property changes in the object context are overwritten with property values from the database. - - - An collection of objects to refresh. - - collection is null. - refreshMode is not valid. - collection is empty or an object is not attached to the context. - - - Updates an object in the object context with data from the database. - - A value that indicates whether - property changes in the object context are overwritten with property values from the database. - - The object to be refreshed. - entity is null. - refreshMode is not valid. - entity is not attached to the context. - - - Asynchronously updates a collection of objects in the object context with data from the database. - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A value that indicates whether - property changes in the object context are overwritten with property values from the database. - - - An collection of objects to refresh. - - - A task that represents the asynchronous operation. - - collection is null. - refreshMode is not valid. - collection is empty or an object is not attached to the context. - - - Asynchronously updates a collection of objects in the object context with data from the database. - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A value that indicates whether - property changes in the object context are overwritten with property values from the database. - - - An collection of objects to refresh. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - - collection is null. - refreshMode is not valid. - collection is empty or an object is not attached to the context. - - - Asynchronously updates an object in the object context with data from the database. - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A value that indicates whether - property changes in the object context are overwritten with property values from the database. - - The object to be refreshed. - - A task that represents the asynchronous operation. - - entity is null. - refreshMode is not valid. - entity is not attached to the context. - - - Asynchronously updates an object in the object context with data from the database. - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A value that indicates whether - property changes in the object context are overwritten with property values from the database. - - The object to be refreshed. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - - entity is null. - refreshMode is not valid. - entity is not attached to the context. - - - Persists all updates to the database and resets change tracking in the object context. - - The number of state entries written to the underlying database. This can include - state entries for entities and/or relationships. Relationship state entries are created for - many-to-many relationships and relationships where there is no foreign key property - included in the entity class (often referred to as independent associations). - - An optimistic concurrency violation has occurred while saving changes. - - - Asynchronously persists all updates to the database and resets change tracking in the object context. - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous save operation. - The task result contains the number of state entries written to the underlying database. This can include - state entries for entities and/or relationships. Relationship state entries are created for - many-to-many relationships and relationships where there is no foreign key property - included in the entity class (often referred to as independent associations). - - An optimistic concurrency violation has occurred while saving changes. - - - Asynchronously persists all updates to the database and resets change tracking in the object context. - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous save operation. - The task result contains the number of state entries written to the underlying database. This can include - state entries for entities and/or relationships. Relationship state entries are created for - many-to-many relationships and relationships where there is no foreign key property - included in the entity class (often referred to as independent associations). - - An optimistic concurrency violation has occurred while saving changes. - - - Persists all updates to the database and optionally resets change tracking in the object context. - - This parameter is needed for client-side transaction support. If true, the change tracking on all objects is reset after - - finishes. If false, you must call the - method after . - - - The number of state entries written to the underlying database. This can include - state entries for entities and/or relationships. Relationship state entries are created for - many-to-many relationships and relationships where there is no foreign key property - included in the entity class (often referred to as independent associations). - - An optimistic concurrency violation has occurred while saving changes. - - - Persists all updates to the database and optionally resets change tracking in the object context. - - A value that determines the behavior of the operation. - - - The number of state entries written to the underlying database. This can include - state entries for entities and/or relationships. Relationship state entries are created for - many-to-many relationships and relationships where there is no foreign key property - included in the entity class (often referred to as independent associations). - - An optimistic concurrency violation has occurred while saving changes. - - - Asynchronously persists all updates to the database and optionally resets change tracking in the object context. - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A value that determines the behavior of the operation. - - - A task that represents the asynchronous save operation. - The task result contains the number of state entries written to the underlying database. This can include - state entries for entities and/or relationships. Relationship state entries are created for - many-to-many relationships and relationships where there is no foreign key property - included in the entity class (often referred to as independent associations). - - An optimistic concurrency violation has occurred while saving changes. - - - Asynchronously persists all updates to the database and optionally resets change tracking in the object context. - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A value that determines the behavior of the operation. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous save operation. - The task result contains the number of state entries written to the underlying database. This can include - state entries for entities and/or relationships. Relationship state entries are created for - many-to-many relationships and relationships where there is no foreign key property - included in the entity class (often referred to as independent associations). - - An optimistic concurrency violation has occurred while saving changes. - - - - Ensures that changes are synchronized with changes in all objects that are tracked by the - - . - - - - Returns an object that has the specified entity key. - true if the object was retrieved successfully. false if the key is temporary, the connection is null, or the value is null. - The key of the object to be found. - When this method returns, contains the object. - Incompatible metadata for key . - key is null. - - - - Executes a stored procedure or function that is defined in the data source and mapped in the conceptual model, with the specified parameters. Returns a typed - - . - - - An for the data that is returned by the stored procedure. - - The name of the stored procedure or function. The name can include the container name, such as <Container Name>.<Function Name>. When the default container name is known, only the function name is required. - - An array of objects. If output parameters are used, - their values will not be available until the results have been read completely. This is due to the underlying behavior - of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - The entity type of the returned when the function is executed against the data source. This type must implement - - . - - function is null or empty or function is not found. - The entity reader does not support this function or there is a type mismatch on the reader and the function . - - - - Executes the given stored procedure or function that is defined in the data source and expressed in the conceptual model, with the specified parameters, and merge option. Returns a typed - - . - - - An for the data that is returned by the stored procedure. - - The name of the stored procedure or function. The name can include the container name, such as <Container Name>.<Function Name>. When the default container name is known, only the function name is required. - - The to use when executing the query. - - - An array of objects. If output parameters are used, - their values will not be available until the results have been read completely. This is due to the underlying behavior - of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - The entity type of the returned when the function is executed against the data source. This type must implement - - . - - function is null or empty or function is not found. - The entity reader does not support this function or there is a type mismatch on the reader and the function . - - - - Executes the given function on the default container. - - Element type for function results. - - Name of function. May include container (e.g. ContainerName.FunctionName) or just function name when DefaultContainerName is known. - - The options for executing this function. - - The parameter values to use for the function. If output parameters are used, their values - will not be available until the results have been read completely. This is due to the underlying - behavior of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - An object representing the result of executing this function. - If function is null or empty - - If function is invalid (syntax, - does not exist, refers to a function with return type incompatible with T) - - - - Executes a stored procedure or function that is defined in the data source and expressed in the conceptual model; discards any results returned from the function; and returns the number of rows affected by the execution. - The number of rows affected. - The name of the stored procedure or function. The name can include the container name, such as <Container Name>.<Function Name>. When the default container name is known, only the function name is required. - - An array of objects. If output parameters are used, - their values will not be available until the results have been read completely. This is due to the underlying - behavior of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - function is null or empty or function is not found. - The entity reader does not support this function or there is a type mismatch on the reader and the function . - - - Generates an equivalent type that can be used with the Entity Framework for each type in the supplied enumeration. - - An enumeration of objects that represent custom data classes that map to the conceptual model. - - - - Returns all the existing proxy types. - - An of all the existing proxy types. - - - - Returns the entity type of the POCO entity associated with a proxy object of a specified type. - - The of the associated POCO entity. - - - The of the proxy object. - - - - Creates and returns an instance of the requested type . - An instance of the requested type T , or an instance of a derived type that enables T to be used with the Entity Framework. The returned object is either an instance of the requested type or an instance of a derived type that enables the requested type to be used with the Entity Framework. - Type of object to be returned. - - - - Executes an arbitrary command directly against the data source using the existing connection. - The command is specified using the server's native query language, such as SQL. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreCommand("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreCommand("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - If there isn't an existing local transaction a new transaction will be used - to execute the command. - - The command specified in the server's native query language. - The parameter values to use for the query. - The number of rows affected. - - - - Executes an arbitrary command directly against the data source using the existing connection. - The command is specified using the server's native query language, such as SQL. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreCommand("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreCommand("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - Controls the creation of a transaction for this command. - The command specified in the server's native query language. - The parameter values to use for the query. - The number of rows affected. - - - - Asynchronously executes an arbitrary command directly against the data source using the existing connection. - The command is specified using the server's native query language, such as SQL. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - If there isn't an existing local transaction a new transaction will be used - to execute the command. - - The command specified in the server's native query language. - The parameter values to use for the query. - - A task that represents the asynchronous operation. - The task result contains the number of rows affected. - - - - - Asynchronously executes an arbitrary command directly against the data source using the existing connection. - The command is specified using the server's native query language, such as SQL. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - Controls the creation of a transaction for this command. - The command specified in the server's native query language. - The parameter values to use for the query. - - A task that represents the asynchronous operation. - The task result contains the number of rows affected. - - - - - Asynchronously executes an arbitrary command directly against the data source using the existing connection. - The command is specified using the server's native query language, such as SQL. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - If there isn't an existing local transaction a new transaction will be used - to execute the command. - - The command specified in the server's native query language. - - A to observe while waiting for the task to complete. - - The parameter values to use for the query. - - A task that represents the asynchronous operation. - The task result contains the number of rows affected. - - - - - Asynchronously executes an arbitrary command directly against the data source using the existing connection. - The command is specified using the server's native query language, such as SQL. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - Controls the creation of a transaction for this command. - The command specified in the server's native query language. - - A to observe while waiting for the task to complete. - - The parameter values to use for the query. - - A task that represents the asynchronous operation. - The task result contains the number of rows affected. - - - - - Executes a query directly against the data source and returns a sequence of typed results. - The query is specified using the server's native query language, such as SQL. - Results are not tracked by the context, use the overload that specifies an entity set name to track results. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreQuery<Post>("SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreQuery<Post>("SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - The element type of the result sequence. - The query specified in the server's native query language. - - The parameter values to use for the query. If output parameters are used, their values will not be - available until the results have been read completely. This is due to the underlying behavior - of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - An enumeration of objects of type . - - - - - Executes a query directly against the data source and returns a sequence of typed results. - The query is specified using the server's native query language, such as SQL. - Results are not tracked by the context, use the overload that specifies an entity set name to track results. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreQuery<Post>("SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreQuery<Post>("SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - The element type of the result sequence. - The query specified in the server's native query language. - The options for executing this query. - - The parameter values to use for the query. If output parameters are used, their values will not be - available until the results have been read completely. This is due to the underlying behavior of - DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - An enumeration of objects of type . - - - - - Executes a query directly against the data source and returns a sequence of typed results. - The query is specified using the server's native query language, such as SQL. - If an entity set name is specified, results are tracked by the context. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreQuery<Post>("SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreQuery<Post>("SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - The element type of the result sequence. - The query specified in the server's native query language. - The entity set of the TResult type. If an entity set name is not provided, the results are not going to be tracked. - - The to use when executing the query. The default is - . - - - The parameter values to use for the query. If output parameters are used, their values will not be - available until the results have been read completely. This is due to the underlying behavior - of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - An enumeration of objects of type . - - - - - Executes a query directly against the data source and returns a sequence of typed results. - The query is specified using the server's native query language, such as SQL. - If an entity set name is specified, results are tracked by the context. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreQuery<Post>("SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreQuery<Post>("SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - The element type of the result sequence. - The query specified in the server's native query language. - The entity set of the TResult type. If an entity set name is not provided, the results are not going to be tracked. - The options for executing this query. - - The parameter values to use for the query. If output parameters are used, their values will not be - available until the results have been read completely. This is due to the underlying behavior - of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - An enumeration of objects of type . - - - - - Asynchronously executes a query directly against the data source and returns a sequence of typed results. - The query is specified using the server's native query language, such as SQL. - Results are not tracked by the context, use the overload that specifies an entity set name to track results. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreQueryAsync<Post>("SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreQueryAsync<Post>("SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - The element type of the result sequence. - The query specified in the server's native query language. - - The parameter values to use for the query. If output parameters are used, their values will not be - available until the results have been read completely. This is due to the underlying behavior - of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - A task that represents the asynchronous operation. - The task result contains an enumeration of objects of type . - - - - - Asynchronously executes a query directly against the data source and returns a sequence of typed results. - The query is specified using the server's native query language, such as SQL. - Results are not tracked by the context, use the overload that specifies an entity set name to track results. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreQueryAsync<Post>("SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreQueryAsync<Post>("SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - The element type of the result sequence. - The query specified in the server's native query language. - - A to observe while waiting for the task to complete. - - - The parameter values to use for the query. If output parameters are used, their values will not be - available until the results have been read completely. This is due to the underlying behavior - of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - A task that represents the asynchronous operation. - The task result contains an enumeration of objects of type . - - - - - Asynchronously executes a query directly against the data source and returns a sequence of typed results. - The query is specified using the server's native query language, such as SQL. - Results are not tracked by the context, use the overload that specifies an entity set name to track results. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreQueryAsync<Post>("SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreQueryAsync<Post>("SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - The element type of the result sequence. - The query specified in the server's native query language. - The options for executing this query. - - The parameter values to use for the query. If output parameters are used, their values will not be - available until the results have been read completely. This is due to the underlying behavior - of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - A task that represents the asynchronous operation. - The task result contains an enumeration of objects of type . - - - - - Asynchronously executes a query directly against the data source and returns a sequence of typed results. - The query is specified using the server's native query language, such as SQL. - Results are not tracked by the context, use the overload that specifies an entity set name to track results. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreQueryAsync<Post>("SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreQueryAsync<Post>("SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - The element type of the result sequence. - The query specified in the server's native query language. - The options for executing this query. - - A to observe while waiting for the task to complete. - - - The parameter values to use for the query. If output parameters are used, their values will not be - available until the results have been read completely. This is due to the underlying behavior - of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - A task that represents the asynchronous operation. - The task result contains an enumeration of objects of type . - - - - - Asynchronously executes a query directly against the data source and returns a sequence of typed results. - The query is specified using the server's native query language, such as SQL. - If an entity set name is specified, results are tracked by the context. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreQueryAsync<Post>("SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreQueryAsync<Post>("SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - The element type of the result sequence. - The query specified in the server's native query language. - The entity set of the TResult type. If an entity set name is not provided, the results are not going to be tracked. - The options for executing this query. - - The parameter values to use for the query. If output parameters are used, their values will not be - available until the results have been read completely. This is due to the underlying behavior - of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - A task that represents the asynchronous operation. - The task result contains an enumeration of objects of type . - - - - - Asynchronously executes a query directly against the data source and returns a sequence of typed results. - The query is specified using the server's native query language, such as SQL. - If an entity set name is specified, results are tracked by the context. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.ExecuteStoreQueryAsync<Post>("SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.ExecuteStoreQueryAsync<Post>("SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - The element type of the result sequence. - The query specified in the server's native query language. - The entity set of the TResult type. If an entity set name is not provided, the results are not going to be tracked. - The options for executing this query. - - A to observe while waiting for the task to complete. - - - The parameter values to use for the query. If output parameters are used, their values will not be - available until the results have been read completely. This is due to the underlying behavior - of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - A task that represents the asynchronous operation. - The task result contains an enumeration of objects of type . - - - - - Translates a that contains rows of entity data to objects of the requested entity type. - - The entity type. - An enumeration of objects of type TResult . - - The that contains entity data to translate into entity objects. - - When reader is null. - - - - Translates a that contains rows of entity data to objects of the requested entity type, in a specific entity set, and with the specified merge option. - - The entity type. - An enumeration of objects of type TResult . - - The that contains entity data to translate into entity objects. - - The entity set of the TResult type. - - The to use when translated objects are added to the object context. The default is - - . - - When reader is null. - - When the supplied mergeOption is not a valid value. - - When the supplied entitySetName is not a valid entity set for the TResult type. - - - - Creates the database by using the current data source connection and the metadata in the - - . - - - - Deletes the database that is specified as the database in the current data source connection. - - - - Checks if the database that is specified as the database in the current store connection exists on the store. Most of the actual work - is done by the DbProviderServices implementation for the current store connection. - - true if the database exists; otherwise, false. - - - - Generates a data definition language (DDL) script that creates schema objects (tables, primary keys, foreign keys) for the metadata in the - - . The - - loads metadata from store schema definition language (SSDL) files. - - - A DDL script that creates schema objects for the metadata in the - - . - - - - - Defines options that affect the behavior of the ObjectContext. - - - - - Gets or sets the value that determines whether SQL functions and commands should be always executed in a transaction. - - - This flag determines whether a new transaction will be started when methods such as - and are executed outside of a transaction. - Note that this does not change the behavior of . - - - The default transactional behavior. - - - - Gets or sets a Boolean value that determines whether related objects are loaded automatically when a navigation property is accessed. - true if lazy loading is enabled; otherwise, false. - - - Gets or sets a Boolean value that determines whether proxy instances are created for custom data classes that are persistence ignorant. - true if proxies are created; otherwise, false. The default value is true. - - - Gets or sets a Boolean value that determines whether to use the legacy PreserveChanges behavior. - true if the legacy PreserveChanges behavior should be used; otherwise, false. - - - Gets or sets a Boolean value that determines whether to use the consistent NullReference behavior. - - If this flag is set to false then setting the Value property of the for an - FK relationship to null when it is already null will have no effect. When this flag is set to true, then - setting the value to null will always cause the FK to be nulled and the relationship to be deleted - even if the value is currently null. The default value is false when using ObjectContext and true - when using DbContext. - - true if the consistent NullReference behavior should be used; otherwise, false. - - - Gets or sets a Boolean value that determines whether to use the C# NullComparison behavior. - - This flag determines whether C# behavior should be exhibited when comparing null values in LinqToEntities. - If this flag is set, then any equality comparison between two operands, both of which are potentially - nullable, will be rewritten to show C# null comparison semantics. As an example: - (operand1 = operand2) will be rewritten as - (((operand1 = operand2) AND NOT (operand1 IS NULL OR operand2 IS NULL)) || (operand1 IS NULL && operand2 IS NULL)) - The default value is false when using . - - true if the C# NullComparison behavior should be used; otherwise, false. - - - - EventArgs for the ObjectMaterialized event. - - - - - Constructs new arguments for the ObjectMaterialized event. - - The object that has been materialized. - - - Gets the entity object that was created. - The entity object that was created. - - - - Delegate for the ObjectMaterialized event. - - The ObjectContext responsable for materializing the object. - EventArgs containing a reference to the materialized object. - - - - This class represents a query parameter at the object layer, which consists - of a Name, a Type and a Value. - - - - - Initializes a new instance of the class with the specified name and type. - - The parameter name. This name should not include the "@" parameter marker that is used in the Entity SQL statements, only the actual name. The first character of the expression must be a letter. Any successive characters in the expression must be either letters, numbers, or an underscore (_) character. - The common language runtime (CLR) type of the parameter. - If the value of either argument is null. - If the value of the name argument is invalid. Parameter names must start with a letter and can only contain letters, numbers, and underscores. - - - - Initializes a new instance of the class with the specified name and value. - - The parameter name. This name should not include the "@" parameter marker that is used in Entity SQL statements, only the actual name. The first character of the expression must be a letter. Any successive characters in the expression must be either letters, numbers, or an underscore (_) character. - The initial value (and inherently, the type) of the parameter. - If the value of either argument is null. - If the value of the name argument is not valid. Parameter names must start with a letter and can only contain letters, numbers, and underscores. - - - Gets the parameter name, which can only be set through a constructor. - The parameter name, which can only be set through a constructor. - - - Gets the parameter type. - - The of the parameter. - - - - Gets or sets the parameter value. - The parameter value. - - - - This class represents a collection of query parameters at the object layer. - - - - Gets the number of parameters currently in the collection. - - The number of objects that are currently in the collection. - - - - - This collection is read-write - parameters may be added, removed - and [somewhat] modified at will (value only) - provided that the - implementation the collection belongs to has not locked its parameters - because it's command definition has been prepared. - - - - Provides an indexer that allows callers to retrieve parameters by name. - - The instance. - - The name of the parameter to find. This name should not include the "@" parameter marker that is used in the Entity SQL statements, only the actual name. - No parameter with the specified name is found in the collection. - - - - Adds the specified to the collection. - - The parameter to add to the collection. - The parameter argument is null. - - The parameter argument already exists in the collection. This behavior differs from that of most collections that allow duplicate entries. -or-Another parameter with the same name as the parameter argument already exists in the collection. Note that the lookup is case-insensitive. This behavior differs from that of most collections, and is more like that of a - - . - - The type of the parameter is not valid. - - - - Deletes all instances from the collection. - - - - - Checks for the existence of a specified in the collection by reference. - - Returns true if the parameter object was found in the collection; otherwise, false. - - The to find in the collection. - - The parameter argument is null. - - - - Determines whether an with the specified name is in the collection. - - Returns true if a parameter with the specified name was found in the collection; otherwise, false. - The name of the parameter to look for in the collection. This name should not include the "@" parameter marker that is used in the Entity SQL statements, only the actual name. - The name parameter is null. - - - Allows the parameters in the collection to be copied into a supplied array, starting with the object at the specified index. - The array into which to copy the parameters. - The index in the array at which to start copying the parameters. - - - - Removes an instance of an from the collection by reference if it exists in the collection. - - Returns true if the parameter object was found and removed from the collection; otherwise, false. - An object to remove from the collection. - The parameter argument is null. - - - - These methods return enumerator instances, which allow the collection to - be iterated through and traversed. - - An object that can be used to iterate through the collection. - - - Returns an untyped enumerator over the collection. - - An instance. - - - - - This class implements untyped queries at the object-layer. - - - - Returns the command text for the query. - A string value. - - - Gets the object context associated with this object query. - - The associated with this - - instance. - - - - Gets or sets how objects returned from a query are added to the object context. - - The query . - - - - - Whether the query is streaming or buffering - - - - Gets the parameter collection for this object query. - - The parameter collection for this . - - - - Gets or sets a value that indicates whether the query plan should be cached. - A value that indicates whether the query plan should be cached. - - - Returns the commands to execute against the data source. - A string that represents the commands that the query executes against the data source. - - - Returns information about the result type of the query. - - A value that contains information about the result type of the query. - - - - Executes the untyped object query with the specified merge option. - - The to use when executing the query. - The default is . - - - An that contains a collection of entity objects returned by the query. - - - - - Asynchronously executes the untyped object query with the specified merge option. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The to use when executing the query. - The default is . - - - A task that represents the asynchronous operation. - The task result contains an - that contains a collection of entity objects returned by the query. - - - - - Asynchronously executes the untyped object query with the specified merge option. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The to use when executing the query. - The default is . - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains an - that contains a collection of entity objects returned by the query. - - - - - Returns the collection as an used for data binding. - - - An of entity objects. - - - - - Gets the result element type for this query instance. - - - - - Gets the expression describing this query. For queries built using - LINQ builder patterns, returns a full LINQ expression tree; otherwise, - returns a constant expression wrapping this query. Note that the - default expression is not cached. This allows us to differentiate - between LINQ and Entity-SQL queries. - - - - - Gets the associated with this query instance. - - - - Returns an enumerator that iterates through a collection. - - An that can be used to iterate through the collection. - - - - - Returns an which when enumerated will execute the given SQL query against the database. - - The query results. - - - - ObjectQuery implements strongly-typed queries at the object-layer. - Queries are specified using Entity-SQL strings and may be created by calling - the Entity-SQL-based query builder methods declared by ObjectQuery. - - The result type of this ObjectQuery - - - - Creates a new instance using the specified Entity SQL command as the initial query. - - The Entity SQL query. - - The on which to execute the query. - - - - - Creates a new instance using the specified Entity SQL command as the initial query and the specified merge option. - - The Entity SQL query. - - The on which to execute the query. - - - Specifies how the entities that are retrieved through this query should be merged with the entities that have been returned from previous queries against the same - - . - - - - Gets or sets the name of this object query. - - A string value that is the name of this . - - The value specified on set is not valid. - - - Executes the object query with the specified merge option. - - The to use when executing the query. - The default is . - - - An that contains a collection of entity objects returned by the query. - - - - - Asynchronously executes the object query with the specified merge option. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The to use when executing the query. - The default is . - - - A task that represents the asynchronous operation. - The task result contains an - that contains a collection of entity objects returned by the query. - - - - - Asynchronously executes the object query with the specified merge option. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The to use when executing the query. - The default is . - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains an - that contains a collection of entity objects returned by the query. - - - - Specifies the related objects to include in the query results. - - A new with the defined query path. - - Dot-separated list of related objects to return in the query results. - path is null. - path is empty. - - - Limits the query to unique results. - - A new instance that is equivalent to the original instance with SELECT DISTINCT applied. - - - - - This query-builder method creates a new query whose results are all of - the results of this query, except those that are also part of the other - query specified. - - A query representing the results to exclude. - a new ObjectQuery instance. - If the query parameter is null. - - - Groups the query results by the specified criteria. - - A new instance of type - - that is equivalent to the original instance with GROUP BY applied. - - The key columns by which to group the results. - The list of selected properties that defines the projection. - Zero or more parameters that are used in this method. - The query parameter is null or an empty string - or the projection parameter is null or an empty string. - - - - This query-builder method creates a new query whose results are those that - are both in this query and the other query specified. - - A query representing the results to intersect with. - a new ObjectQuery instance. - If the query parameter is null. - - - Limits the query to only results of a specific type. - - A new instance that is equivalent to the original instance with OFTYPE applied. - - - The type of the returned when the query is executed with the applied filter. - - The type specified is not valid. - - - Orders the query results by the specified criteria. - - A new instance that is equivalent to the original instance with ORDER BY applied. - - The key columns by which to order the results. - Zero or more parameters that are used in this method. - The keys or parameters parameter is null. - The key is an empty string. - - - Limits the query results to only the properties that are defined in the specified projection. - - A new instance of type - - that is equivalent to the original instance with SELECT applied. - - The list of selected properties that defines the projection. - Zero or more parameters that are used in this method. - projection is null or parameters is null. - The projection is an empty string. - - - Limits the query results to only the property specified in the projection. - - A new instance of a type compatible with the specific projection. The returned - - is equivalent to the original instance with SELECT VALUE applied. - - The projection list. - An optional set of query parameters that should be in scope when parsing. - - The type of the returned by the - - method. - - projection is null or parameters is null. - The projection is an empty string. - - - Orders the query results by the specified criteria and skips a specified number of results. - - A new instance that is equivalent to the original instance with both ORDER BY and SKIP applied. - - The key columns by which to order the results. - The number of results to skip. This must be either a constant or a parameter reference. - An optional set of query parameters that should be in scope when parsing. - Any argument is null. - keys is an empty string or count is an empty string. - - - Limits the query results to a specified number of items. - - A new instance that is equivalent to the original instance with TOP applied. - - The number of items in the results as a string. - An optional set of query parameters that should be in scope when parsing. - count is null. - count is an empty string. - - - - This query-builder method creates a new query whose results are all of - the results of this query, plus all of the results of the other query, - without duplicates (i.e., results are unique). - - A query representing the results to add. - a new ObjectQuery instance. - If the query parameter is null. - - - - This query-builder method creates a new query whose results are all of - the results of this query, plus all of the results of the other query, - including any duplicates (i.e., results are not necessarily unique). - - A query representing the results to add. - a new ObjectQuery instance. - If the query parameter is null. - - - Limits the query to results that match specified filtering criteria. - - A new instance that is equivalent to the original instance with WHERE applied. - - The filter predicate. - Zero or more parameters that are used in this method. - predicate is null or parameters is null. - The predicate is an empty string. - - - - Returns an which when enumerated will execute the given SQL query against the database. - - The query results. - - - - Returns an which when enumerated will execute the given SQL query against the database. - - The query results. - - - - This class implements IEnumerable and IDisposable. Instance of this class - is returned from ObjectQuery.Execute method. - - - - - This constructor is intended only for use when creating test doubles that will override members - with mocked or faked behavior. Use of this constructor for other purposes may result in unexpected - behavior including but not limited to throwing . - - - - - - - Returns an enumerator that iterates through the query results. - An enumerator that iterates through the query results. - - - - IListSource.ContainsListCollection implementation. Always returns false. - - - - Returns the results in a format useful for data binding. - - An of entity objects. - - - - - When overridden in a derived class, gets the type of the generic - - . - - - The type of the generic . - - - - Performs tasks associated with freeing, releasing, or resetting resources. - - - Releases the resources used by the object result. - true to release both managed and unmanaged resources; false to release only unmanaged resources. - - - Gets the next result set of a stored procedure. - An ObjectResult that enumerates the values of the next result set. Null, if there are no more, or if the ObjectResult is not the result of a stored procedure call. - The type of the element. - - - - This class represents the result of the method. - - The type of the result. - - - - This constructor is intended only for use when creating test doubles that will override members - with mocked or faked behavior. Use of this constructor for other purposes may result in unexpected - behavior including but not limited to throwing . - - - - Returns an enumerator that iterates through the query results. - An enumerator that iterates through the query results. - - - - - - Releases the unmanaged resources used by the and optionally releases the managed resources. - true to release managed and unmanaged resources; false to release only unmanaged resources. - - - - Gets the type of the . - - - A that is the type of the . - - - - - Represents a typed entity set that is used to perform create, read, update, and delete operations. - - The type of the entity. - - - - Gets the metadata of the entity set represented by this instance. - - - An object. - - - - Adds an object to the object context in the current entity set. - The object to add. - - - Attaches an object or object graph to the object context in the current entity set. - The object to attach. - - - Marks an object for deletion. - - An object that represents the entity to delete. The object can be in any state except - - . - - - - Removes the object from the object context. - - Object to be detached. Only the entity is removed; if there are any related objects that are being tracked by the same - - , those will not be detached automatically. - - - - - Copies the scalar values from the supplied object into the object in the - - that has the same key. - - The updated object. - - The detached object that has property updates to apply to the original object. The entity key of currentEntity must match the - - property of an entry in the - - . - - - - - Sets the property of an - - to match the property values of a supplied object. - - The updated object. - - The detached object that has property updates to apply to the original object. The entity key of originalEntity must match the - - property of an entry in the - - . - - - - Creates a new entity type object. - The new entity type object, or an instance of a proxy type that corresponds to the entity type. - - - Creates an instance of the specified type. - An instance of the requested type T , or an instance of a proxy type that corresponds to the type T . - Type of object to be returned. - - - - Represents either a entity, entity stub or relationship - - - - - Gets the for the - - . - - - The for the - - . - - - - - Gets the for the object or relationship. - - - The for the object or relationship. - - - - - Gets the state of the . - - - The state of the . - - - - Gets the entity object. - The entity object. - - - Gets the entity key. - The entity key. - - - - Gets a value that indicates whether the represents a relationship. - - - true if the represents a relationship; otherwise, false. - - - - Gets the read-only version of original values of the object or relationship. - The read-only version of original values of the relationship set entry or entity. - - - - Gets the updatable version of original values of the object associated with this - - . - - The updatable original values of object data. - - - - Gets the current property values of the object or relationship associated with this - - . - - - A that contains the current values of the object or relationship associated with this - - . - - - - Accepts the current values as original values. - - - Marks an entity as deleted. - - - - Returns the names of an object’s properties that have changed since the last time - - was called. - - - An collection of names as string. - - - - Sets the state of the object or relationship to modify. - If State is not Modified or Unchanged - - - Marks the specified property as modified. - The name of the property. - If State is not Modified or Unchanged - - - Rejects any changes made to the property with the given name since the property was last loaded, attached, saved, or changes were accepted. The original value of the property is stored and the property will no longer be marked as modified. - The name of the property to change. - - - Uses DetectChanges to determine whether or not the current value of the property with the given name is different from its original value. Note that this may be different from the property being marked as modified since a property which has not changed can still be marked as modified. - - Note that this property always returns the same result as the modified state of the property for change tracking - proxies and entities that derive from the EntityObject base class. This is because original values are not tracked - for these entity types and hence there is no way to know if the current value is really different from the - original value. - - true if the property has changed; otherwise, false. - The name of the property. - - - - Gets the instance for the object represented by entry. - - - The object. - - The entry is a stub or represents a relationship - - - - Changes state of the entry to the specified value. - - - The value to set for the - - property of the entry. - - - - Sets the current values of the entry to match the property values of a supplied object. - The detached object that has updated values to apply to the object. currentEntity can also be the object’s entity key. - - - Sets the original values of the entry to match the property values of a supplied object. - The detached object that has original values to apply to the object. originalEntity can also be the object’s entity key. - - - - Used to report that a scalar entity property is about to change - The current value of the specified property is cached when this method is called. - - The name of the entity property that is changing - - - - Used to report that a scalar entity property has been changed - The property value that was cached during EntityMemberChanging is now - added to OriginalValues - - The name of the entity property that has changing - - - - Used to report that a complex property is about to change - The current value of the specified property is cached when this method is called. - - The name of the top-level entity property that is changing - The complex object that contains the property that is changing - The name of the property that is changing on complexObject - - - - Used to report that a complex property has been changed - The property value that was cached during EntityMemberChanging is now added to OriginalValues - - The name of the top-level entity property that has changed - The complex object that contains the property that changed - The name of the property that changed on complexObject - - - - Returns the EntityState from the ObjectStateEntry - - - - - Maintains object state and identity management for entity type instances and relationship instances. - - - - - Initializes a new instance of the class. - - - The , which supplies mapping and metadata information. - - - - - Gets the associated with this state manager. - - - The associated with this - - . - - - - Occurs when entities are added to or removed from the state manager. - - - - Returns a collection of objects for objects or relationships with the given state. - - - A collection of objects in the given - - . - - - An used to filter the returned - - objects. - - - When state is . - - - - - Changes state of the for a specific object to the specified entityState . - - - The for the supplied entity . - - The object for which the state must be changed. - The new state of the object. - When entity is null. - - When the object is not detached and does not have an entry in the state manager - or when you try to change the state to - from any other - or when state is not a valid value. - - - - Changes the state of the relationship between two entity objects that is specified based on the two related objects and the name of the navigation property. - - The for the relationship that was changed. - - - The object instance or of the source entity at one end of the relationship. - - - The object instance or of the target entity at the other end of the relationship. - - The name of the navigation property on source that returns the specified target . - - The requested of the specified relationship. - - When source or target is null. - - When trying to change the state of the relationship to a state other than - or - when either source or target is in a state - or when you try to change the state of the relationship to a state other than - or - when either source or target is in an state - or when state is not a valid value - - - - Changes the state of the relationship between two entity objects that is specified based on the two related objects and a LINQ expression that defines the navigation property. - - The for the relationship that was changed. - - - The object instance or of the source entity at one end of the relationship. - - - The object instance or of the target entity at the other end of the relationship. - - A LINQ expression that selects the navigation property on source that returns the specified target . - - The requested of the specified relationship. - - The entity type of the source object. - When source , target , or selector is null. - selector is malformed or cannot return a navigation property. - - When you try to change the state of the relationship to a state other than - or - when either source or target is in a - state - or when you try to change the state of the relationship to a state other than - or - when either source or target is in an state - or when state is not a valid value. - - - - Changes the state of the relationship between two entity objects that is specified based on the two related objects and the properties of the relationship. - - The for the relationship that was changed. - - - The object instance or of the source entity at one end of the relationship. - - - The object instance or of the target entity at the other end of the relationship. - - The name of the relationship. - The role name at the target end of the relationship. - - The requested of the specified relationship. - - When source or target is null. - - When you try to change the state of the relationship to a state other than - or - when either source or target is in a state - or when you try to change the state of the relationship to a state other than - or - when either source or target is in an - state - or when state is not a valid value. - - - - - Returns an for the object or relationship entry with the specified key. - - - The corresponding for the given - - . - - - The . - - When key is null. - When the specified key cannot be found in the state manager. - - No entity with the specified exists in the - - . - - - - - Returns an for the specified object. - - - The corresponding for the given - - . - - - The to which the retrieved - - belongs. - - - No entity for the specified exists in the - - . - - - - - Tries to retrieve the corresponding for the specified - - . - - - A Boolean value that is true if there is a corresponding - - for the given object; otherwise, false. - - - The to which the retrieved - - belongs. - - - When this method returns, contains the for the given - - This parameter is passed uninitialized. - - - - - Tries to retrieve the corresponding for the object or relationship with the specified - - . - - - A Boolean value that is true if there is a corresponding - - for the given - - ; otherwise, false. - - - The given . - - - When this method returns, contains an for the given - - This parameter is passed uninitialized. - - A null (Nothing in Visual Basic) value is provided for key . - - - - Returns the that is used by the specified object. - - - The for the specified object. - - - The object for which to return the . - - - The entity does not implement IEntityWithRelationships and is not tracked by this ObjectStateManager - - - - - Returns the that is used by the specified object. - - - true if a instance was returned for the supplied entity ; otherwise false. - - - The object for which to return the . - - - When this method returns, contains the - - for the entity . - - - - - The original values of the properties of an entity when it was retrieved from the database. - - - - - A DataContractResolver that knows how to resolve proxy types created for persistent - ignorant classes to their base types. This is used with the DataContractSerializer. - - - - During deserialization, maps any xsi:type information to the actual type of the persistence-ignorant object. - Returns the type that the xsi:type is mapped to. Returns null if no known type was found that matches the xsi:type. - The xsi:type information to map. - The namespace of the xsi:type. - The declared type. - - An instance of . - - - - During serialization, maps actual types to xsi:type information. - true if the type was resolved; otherwise, false. - The actual type of the persistence-ignorant object. - The declared type. - - An instance of . - - When this method returns, contains a list of xsi:type declarations. - When this method returns, contains a list of namespaces used. - - - - Defines the different ways to handle modified properties when refreshing in-memory data from the database. - - - - - For unmodified client objects, same behavior as StoreWins. For modified client - objects, Refresh original values with store value, keeping all values on client - object. The next time an update happens, all the client change units will be - considered modified and require updating. - - - - - Discard all changes on the client and refresh values with store values. - Client original values is updated to match the store. - - - - - Flags used to modify behavior of ObjectContext.SaveChanges() - - - - - Changes are saved without the DetectChanges or the AcceptAllChangesAfterSave methods being called. - - - - - After changes are saved, the AcceptAllChangesAfterSave method is called, which resets change tracking in the ObjectStateManager. - - - - - Before changes are saved, the DetectChanges method is called to synchronize the property values of objects that are attached to the object context with data in the ObjectStateManager. - - - - - This exception is thrown when a update operation violates the concurrency constraint. - - - - - Initializes a new instance of . - - - - - Initializes a new instance of with a specialized error message. - - The message that describes the error. - - - - Initializes a new instance of that uses a specified error message and a reference to the inner exception. - - The message that describes the error. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of that uses a specified error message, a reference to the inner exception, and an enumerable collection of - - objects. - - The message that describes the error. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - The enumerable collection of objects. - - - - - Property constraint exception class. Note that this class has state - so if you change even - its internals, it can be a breaking change - - - - - Initializes a new instance of the class with default message. - - - - - Initializes a new instance of the class with supplied message. - - A localized error message. - - - - Initializes a new instance of the class with supplied message and inner exception. - - A localized error message. - The inner exception. - - - - Initializes a new instance of the class. - - A localized error message. - The name of the property. - - - - Initializes a new instance of the class. - - A localized error message. - The name of the property. - The inner exception. - - - Gets the name of the property that violated the constraint. - The name of the property that violated the constraint. - - - - Sets the with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - This exception is thrown when the store provider exhibits a behavior incompatible with the entity client provider - - - - - Initializes a new instance of . - - - - - Initializes a new instance of with a specialized error message. - - The message that describes the error. - - - - Initializes a new instance of that uses a specified error message. - - The message that describes the error. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Used for conversion between different representations of bit array. - Returns (n+(div-1))/div, rearranged to avoid arithmetic overflow. - For example, in the bit to int case, the straightforward calc would - be (n+31)/32, but that would cause overflow. So instead it's - rearranged to ((n-1)/32) + 1, with special casing for 0. - - Usage: - GetArrayLength(77, BitsPerInt32): returns how many ints must be - allocated to store 77 bits. - - length of array - use a conversion constant, e.g. BytesPerInt32 to get - how many ints are required to store n bytes - length of the array - - - - Is this tree uses user-defined functions - Simplifying query with UDFs could caused to suboptimal plans - - Current subtree to process - Mapped variables - - - - - Exception during save changes to store - - - - - Initializes a new instance of . - - - - - Initializes a new instance of with a specialized error message. - - The message that describes the error. - - - - Initializes a new instance of the class that uses a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the class that uses a specified error message, a reference to the inner exception, and an enumerable collection of - - objects. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - The collection of objects. - - - - - Gets the objects for this - - . - - - A collection of objects comprised of either a single entity and 0 or more relationships, or 0 entities and 1 or more relationships. - - - - - Initializes a new instance of with serialized data. - - - The that holds the serialized object data about the exception being thrown. - - - The that contains contextual information about the source or destination. - - - - - An implementation of IDatabaseInitializer that will recreate and optionally re-seed the - database only if the database does not exist. - To seed the database, create a derived class and override the Seed method. - - The type of the context. - - - Initializes a new instance of the class. - - - - Executes the strategy to initialize the database for the given context. - - The context. - - - - A method that should be overridden to actually add data to the context for seeding. - The default implementation does nothing. - - The context to seed. - - - - An instance of this class is obtained from an object and can be used - to manage the actual database backing a DbContext or connection. - This includes creating, deleting, and checking for the existence of a database. - Note that deletion and checking for existence of a database can be performed using just a - connection (i.e. without a full context) by using the static methods of this class. - - - - - Gets the transaction the underlying store connection is enlisted in. May be null. - - - - - Enables the user to pass in a database transaction created outside of the object - if you want the Entity Framework to execute commands within that external transaction. - Alternatively, pass in null to clear the framework's knowledge of that transaction. - - the external transaction - Thrown if the transaction is already completed - - Thrown if the connection associated with the object is already enlisted in a - - transaction - - - Thrown if the connection associated with the object is already participating in a transaction - - Thrown if the connection associated with the transaction does not match the Entity Framework's connection - - - - Begins a transaction on the underlying store connection - - - a object wrapping access to the underlying store's transaction object - - - - - Begins a transaction on the underlying store connection using the specified isolation level - - The database isolation level with which the underlying store transaction will be created - - a object wrapping access to the underlying store's transaction object - - - - - Returns the connection being used by this context. This may cause the - connection to be created if it does not already exist. - - Thrown if the context has been disposed. - - - - Sets the database initializer to use for the given context type. The database initializer is called when a - the given type is used to access a database for the first time. - The default strategy for Code First contexts is an instance of . - - The type of the context. - The initializer to use, or null to disable initialization for the given context type. - - - - Runs the registered on this context. - If "force" is set to true, then the initializer is run regardless of whether or not it - has been run before. This can be useful if a database is deleted while an app is running - and needs to be reinitialized. - If "force" is set to false, then the initializer is only run if it has not already been - run for this context, model, and connection in this app domain. This method is typically - used when it is necessary to ensure that the database has been created and seeded - before starting some operation where doing so lazily will cause issues, such as when the - operation is part of a transaction. - - - If set to true the initializer is run even if it has already been run. - - - - - Checks whether or not the database is compatible with the current Code First model. - - - Model compatibility currently uses the following rules. - If the context was created using either the Model First or Database First approach then the - model is assumed to be compatible with the database and this method returns true. - For Code First the model is considered compatible if the model is stored in the database - in the Migrations history table and that model has no differences from the current model as - determined by Migrations model differ. - If the model is not stored in the database but an EF 4.1/4.2 model hash is found instead, - then this is used to check for compatibility. - - - If set to true then an exception will be thrown if no model metadata is found in the database. If set to false then this method will return true if metadata is not found. - - True if the model hash in the context and the database match; false otherwise. - - - - Creates a new database on the database server for the model defined in the backing context. - Note that calling this method before the database initialization strategy has run will disable - executing that strategy. - - - - - Creates a new database on the database server for the model defined in the backing context, but only - if a database with the same name does not already exist on the server. - - True if the database did not exist and was created; false otherwise. - - - - Checks whether or not the database exists on the server. - - True if the database exists; false otherwise. - - - - Deletes the database on the database server if it exists, otherwise does nothing. - Calling this method from outside of an initializer will mark the database as having - not been initialized. This means that if an attempt is made to use the database again - after it has been deleted, then any initializer set will run again and, usually, will - try to create the database again automatically. - - True if the database did exist and was deleted; false otherwise. - - - - Checks whether or not the database exists on the server. - The connection to the database is created using the given database name or connection string - in the same way as is described in the documentation for the class. - - The database name or a connection string to the database. - True if the database exists; false otherwise. - - - - Deletes the database on the database server if it exists, otherwise does nothing. - The connection to the database is created using the given database name or connection string - in the same way as is described in the documentation for the class. - - The database name or a connection string to the database. - True if the database did exist and was deleted; false otherwise. - - - - Checks whether or not the database exists on the server. - - An existing connection to the database. - True if the database exists; false otherwise. - - - - Deletes the database on the database server if it exists, otherwise does nothing. - - An existing connection to the database. - True if the database did exist and was deleted; false otherwise. - - - - The connection factory to use when creating a from just - a database name or a connection string. - - - This is used when just a database name or connection string is given to or when - the no database name or connection is given to DbContext in which case the name of - the context class is passed to this factory in order to generate a DbConnection. - By default, the instance to use is read from the application's .config - file from the "EntityFramework DefaultConnectionFactory" entry in appSettings. If no entry is found in - the config file then is used. Setting this property in code - always overrides whatever value is found in the config file. - - - - - Creates a raw SQL query that will return elements of the given generic type. - The type can be any type that has properties that match the names of the columns returned - from the query, or can be a simple primitive type. The type does not have to be an - entity type. The results of this query are never tracked by the context even if the - type of object returned is an entity type. Use the - method to return entities that are tracked by the context. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.Database.SqlQuery<Post>("SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.Database.SqlQuery<Post>("SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - The type of object returned by the query. - The SQL query string. - - The parameters to apply to the SQL query string. If output parameters are used, their values will - not be available until the results have been read completely. This is due to the underlying behavior - of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - A object that will execute the query when it is enumerated. - - - - - Creates a raw SQL query that will return elements of the given type. - The type can be any type that has properties that match the names of the columns returned - from the query, or can be a simple primitive type. The type does not have to be an - entity type. The results of this query are never tracked by the context even if the - type of object returned is an entity type. Use the - method to return entities that are tracked by the context. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.Database.SqlQuery(typeof(Post), "SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.Database.SqlQuery(typeof(Post), "SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - The type of object returned by the query. - The SQL query string. - - The parameters to apply to the SQL query string. If output parameters are used, their values - will not be available until the results have been read completely. This is due to the underlying - behavior of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - A object that will execute the query when it is enumerated. - - - - - Executes the given DDL/DML command against the database. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.Database.ExecuteSqlCommand("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.Database.ExecuteSqlCommand("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - If there isn't an existing local or ambient transaction a new transaction will be used - to execute the command. - - The command string. - The parameters to apply to the command string. - The result returned by the database after executing the command. - - - - Executes the given DDL/DML command against the database. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.Database.ExecuteSqlCommand("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.Database.ExecuteSqlCommand("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - Controls the creation of a transaction for this command. - The command string. - The parameters to apply to the command string. - The result returned by the database after executing the command. - - - - Asynchronously executes the given DDL/DML command against the database. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.Database.ExecuteSqlCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.Database.ExecuteSqlCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - If there isn't an existing local transaction a new transaction will be used - to execute the command. - - The command string. - The parameters to apply to the command string. - - A task that represents the asynchronous operation. - The task result contains the result returned by the database after executing the command. - - - - - Asynchronously executes the given DDL/DML command against the database. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.Database.ExecuteSqlCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.Database.ExecuteSqlCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - Controls the creation of a transaction for this command. - The command string. - The parameters to apply to the command string. - - A task that represents the asynchronous operation. - The task result contains the result returned by the database after executing the command. - - - - - Asynchronously executes the given DDL/DML command against the database. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.Database.ExecuteSqlCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.Database.ExecuteSqlCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - If there isn't an existing local transaction a new transaction will be used - to execute the command. - - The command string. - - A to observe while waiting for the task to complete. - - The parameters to apply to the command string. - - A task that represents the asynchronous operation. - The task result contains the result returned by the database after executing the command. - - - - - Asynchronously executes the given DDL/DML command against the database. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.Database.ExecuteSqlCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.Database.ExecuteSqlCommandAsync("UPDATE dbo.Posts SET Rating = 5 WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - Controls the creation of a transaction for this command. - The command string. - - A to observe while waiting for the task to complete. - - The parameters to apply to the command string. - - A task that represents the asynchronous operation. - The task result contains the result returned by the database after executing the command. - - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Gets or sets the timeout value, in seconds, for all context operations. - The default value is null, where null indicates that the default value of the underlying - provider will be used. - - - The timeout, in seconds, or null to use the provider default. - - - - - Set this property to log the SQL generated by the to the given - delegate. For example, to log to the console, set this property to . - - - The format of the log text can be changed by creating a new formatter that derives from - and setting it with . - For more low-level control over logging/interception see and - . - - - - - A class derived from this class can be placed in the same assembly as a class derived from - to define Entity Framework configuration for an application. - Configuration is set by calling protected methods and setting protected properties of this - class in the constructor of your derived type. - The type to use can also be registered in the config file of the application. - See http://go.microsoft.com/fwlink/?LinkId=260883 for more information about Entity Framework configuration. - - - - - Any class derived from must have a public parameterless constructor - and that constructor should call this constructor. - - - - - The Singleton instance of for this app domain. This can be - set at application start before any Entity Framework features have been used and afterwards - should be treated as read-only. - - The instance of . - - - - Attempts to discover and load the associated with the given - type. This method is intended to be used by tooling to ensure that - the correct configuration is loaded into the app domain. Tooling should use this method - before accessing the property. - - A type to use for configuration discovery. - - - - Attempts to discover and load the from the given assembly. - This method is intended to be used by tooling to ensure that the correct configuration is loaded into - the app domain. Tooling should use this method before accessing the - property. If the tooling knows the type being used, then the - method should be used since it gives a greater chance that - the correct configuration will be found. - - An to use for configuration discovery. - - - - Occurs during EF initialization after the DbConfiguration has been constructed but just before - it is locked ready for use. Use this event to inspect and/or override services that have been - registered before the configuration is locked. Note that this event should be used carefully - since it may prevent tooling from discovering the same configuration that is used at runtime. - - - Handlers can only be added before EF starts to use the configuration and so handlers should - generally be added as part of application initialization. Do not access the DbConfiguration - static methods inside the handler; instead use the members of - to get current services and/or add overrides. - - - - - Call this method from the constructor of a class derived from to - add a instance to the Chain of Responsibility of resolvers that - are used to resolve dependencies needed by the Entity Framework. - - - Resolvers are asked to resolve dependencies in reverse order from which they are added. This means - that a resolver can be added to override resolution of a dependency that would already have been - resolved in a different way. - The exceptions to this is that any dependency registered in the application's config file - will always be used in preference to using a dependency resolver added here. - - The resolver to add. - - - - Call this method from the constructor of a class derived from to - add a instance to the Chain of Responsibility of resolvers that - are used to resolve dependencies needed by the Entity Framework. Unlike the AddDependencyResolver - method, this method puts the resolver at the bottom of the Chain of Responsibility such that it will only - be used to resolve a dependency that could not be resolved by any of the other resolvers. - - - A implementation is automatically registered as a default resolver - when it is added with a call to . This allows EF providers to act as - resolvers for other services that may need to be overridden by the provider. - - The resolver to add. - - - - Gets the that is being used to resolve service - dependencies in the Entity Framework. - - - - - Call this method from the constructor of a class derived from to register - an Entity Framework provider. - - - Note that the provider is both registered as a service itself and also registered as a default resolver with - a call to AddDefaultResolver. This allows EF providers to act as resolvers for other services that - may need to be overridden by the provider. - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - and also using AddDefaultResolver to add the provider as a default - resolver. This means that, if desired, the same functionality can be achieved using a custom resolver or a - resolver backed by an Inversion-of-Control container. - - The ADO.NET provider invariant name indicating the type of ADO.NET connection for which this provider will be used. - The provider instance. - - - - Call this method from the constructor of a class derived from to register - an ADO.NET provider. - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolvers for - and . This means that, if desired, - the same functionality can be achieved using a custom resolver or a resolver backed by an - Inversion-of-Control container. - - The ADO.NET provider invariant name indicating the type of ADO.NET connection for which this provider will be used. - The provider instance. - - - - Call this method from the constructor of a class derived from to register an - for use with the provider represented by the given invariant name. - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - The ADO.NET provider invariant name indicating the type of ADO.NET connection for which this execution strategy will be used. - A function that returns a new instance of an execution strategy. - - - - Call this method from the constructor of a class derived from to register an - for use with the provider represented by the given invariant name and - for a given server name. - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - - The ADO.NET provider invariant name indicating the type of ADO.NET connection for which this execution strategy will be used. - - A function that returns a new instance of an execution strategy. - A string that will be matched against the server name in the connection string. - - - - Call this method from the constructor of a class derived from to register a - . - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - A function that returns a new instance of a transaction handler. - - - - Call this method from the constructor of a class derived from to register a - for use with the provider represented by the given invariant name. - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - - The ADO.NET provider invariant name indicating the type of ADO.NET connection for which this transaction handler will be used. - - A function that returns a new instance of a transaction handler. - - - - Call this method from the constructor of a class derived from to register a - for use with the provider represented by the given invariant name and - for a given server name. - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - - The ADO.NET provider invariant name indicating the type of ADO.NET connection for which this transaction handler will be used. - - A function that returns a new instance of a transaction handler. - A string that will be matched against the server name in the connection string. - - - - Sets the that is used to create connections by convention if no other - connection string or connection is given to or can be discovered by . - Note that a default connection factory is set in the app.config or web.config file whenever the - EntityFramework NuGet package is installed. As for all config file settings, the default connection factory - set in the config file will take precedence over any setting made with this method. Therefore the setting - must be removed from the config file before calling this method will have any effect. - Call this method from the constructor of a class derived from to change - the default connection factory being used. - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - The connection factory. - - - - Call this method from the constructor of a class derived from to - set the pluralization service. - - The pluralization service to use. - - - - Call this method from the constructor of a class derived from to - set the database initializer to use for the given context type. The database initializer is called when a - the given type is used to access a database for the first time. - The default strategy for Code First contexts is an instance of . - - - Calling this method is equivalent to calling . - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - The type of the context. - The initializer to use, or null to disable initialization for the given context type. - - - - Call this method from the constructor of a class derived from to register a - for use with the provider represented by the given invariant name. - - - This method is typically used by providers to register an associated SQL generator for Code First Migrations. - It is different from setting the generator in the because it allows - EF to use the Migrations pipeline to create a database even when there is no Migrations configuration in the project - and/or Migrations are not being explicitly used. - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - The invariant name of the ADO.NET provider for which this generator should be used. - A delegate that returns a new instance of the SQL generator each time it is called. - - - - Call this method from the constructor of a class derived from to set - an implementation of which allows provider manifest tokens to - be obtained from connections without necessarily opening the connection. - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - The manifest token resolver. - - - - Call this method from the constructor of a class derived from to set - a factory for implementations of which allows custom annotations - represented by instances to be serialized to and from the EDMX XML. - - - Note that an is not needed if the annotation uses a simple string value. - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - The name of custom annotation that will be handled by this serializer. - A delegate that will be used to create serializer instances. - - - - Call this method from the constructor of a class derived from to set - an implementation of which allows a - to be obtained from a in cases where the default implementation is not - sufficient. - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - The provider factory service. - - - - Call this method from the constructor of a class derived from to set - a as the model cache key factory which allows the key - used to cache the model behind a to be changed. - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality can - be achieved using a custom resolver or a resolver backed by an Inversion-of-Control container. - - The key factory. - - - - Call this method from the constructor of a class derived from to set - a delegate which can be used for - creation of the default for a any - . This default factory will only be used if no factory is - set explicitly in the and if no factory has been registered - for the provider in use using the - - method. - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality - can be achieved using a custom resolver or a resolver backed by an Inversion-of-Control container. - - - A factory for creating instances for a given and - representing the default schema. - - - - - Call this method from the constructor of a class derived from to set - a delegate which allows for creation of a customized - for the given provider for any - that does not have an explicit factory set. - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality - can be achieved using a custom resolver or a resolver backed by an Inversion-of-Control container. - - The invariant name of the ADO.NET provider for which this generator should be used. - - A factory for creating instances for a given and - representing the default schema. - - - - - Call this method from the constructor of a class derived from to set - the global instance of which will be used whenever a spatial provider is - required and a provider-specific spatial provider cannot be found. Normally, a provider-specific spatial provider - is obtained from the a implementation which is in turn returned by resolving - a service for passing the provider invariant name as a key. However, this - cannot work for stand-alone instances of and since - it is impossible to know the spatial provider to use. Therefore, when creating stand-alone instances - of and the global spatial provider is always used. - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - The spatial provider. - - - - Call this method from the constructor of a class derived from to set - an implementation of to use for a specific provider and provider - manifest token. - - - Use - to register spatial services for use only when a specific manifest token is returned by the provider. - Use to register global - spatial services to be used when provider information is not available or no provider-specific - spatial services are found. - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - - The indicating the type of ADO.NET connection for which this spatial provider will be used. - - The spatial provider. - - - - Call this method from the constructor of a class derived from to set - an implementation of to use for a specific provider with any - manifest token. - - - Use - to register spatial services for use when any manifest token is returned by the provider. - Use to register global - spatial services to be used when provider information is not available or no provider-specific - spatial services are found. - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - The ADO.NET provider invariant name indicating the type of ADO.NET connection for which this spatial provider will be used. - The spatial provider. - - - - Call this method from the constructor of a class derived from to set - a factory for the type of to use with . - - - Note that setting the type of formatter to use with this method does change the way command are - logged when is used. It is still necessary to set a - instance onto before any commands will be logged. - For more low-level control over logging/interception see and - . - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - A delegate that will create formatter instances. - - - - Call this method from the constructor of a class derived from to - register an at application startup. Note that interceptors can also - be added and removed at any time using . - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - . This means that, if desired, the same functionality can be achieved using - a custom resolver or a resolver backed by an Inversion-of-Control container. - - The interceptor to register. - - - - Call this method from the constructor of a class derived from to set - a factory to allow to create instances of a context that does not have a public, - parameterless constructor. - - - This is typically needed to allow design-time tools like Migrations or scaffolding code to use contexts that - do not have public, parameterless constructors. - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - with the context as the key. This means that, if desired, - the same functionality can be achieved using a custom resolver or a resolver backed by an - Inversion-of-Control container. - - The context type for which the factory should be used. - The delegate to use to create context instances. - - - - Call this method from the constructor of a class derived from to set - a factory to allow to create instances of a context that does not have a public, - parameterless constructor. - - - This is typically needed to allow design-time tools like Migrations or scaffolding code to use contexts that - do not have public, parameterless constructors. - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - with the context as the key. This means that, if desired, - the same functionality can be achieved using a custom resolver or a resolver backed by an - Inversion-of-Control container. - - The context type for which the factory should be used. - The delegate to use to create context instances. - - - - Sets a singleton model store implementation (persisted model cache). - - The model store implementation. - - - - Call this method from the constructor of a class derived from to register - a database table existence checker for a given provider. - - - This method is provided as a convenient and discoverable way to add configuration to the Entity Framework. - Internally it works in the same way as using AddDependencyResolver to add an appropriate resolver for - and also using AddDefaultResolver to add the provider as a default - resolver. This means that, if desired, the same functionality can be achieved using a custom resolver or a - resolver backed by an Inversion-of-Control container. - - The ADO.NET provider invariant name indicating the type of ADO.NET connection for which this provider will be used. - The table existence checker to use. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Creates a shallow copy of the current . - - A shallow copy of the current . - - - - This attribute can be placed on a subclass of to indicate that the subclass of - representing the code-based configuration for the application is in a different - assembly than the context type. - - - Normally a subclass of should be placed in the same assembly as - the subclass of used by the application. It will then be discovered automatically. - However, if this is not possible or if the application contains multiple context types in different - assemblies, then this attribute can be used to direct DbConfiguration discovery to the appropriate type. - An alternative to using this attribute is to specify the DbConfiguration type to use in the application's - config file. See http://go.microsoft.com/fwlink/?LinkId=260883 for more information. - - - - - Indicates that the given subclass of should be used for code-based configuration - for this application. - - - The type to use. - - - - - Indicates that the subclass of represented by the given assembly-qualified - name should be used for code-based configuration for this application. - - - The type to use. - - - - - Gets the subclass of that should be used for code-based configuration - for this application. - - - - - A DbContext instance represents a combination of the Unit Of Work and Repository patterns such that - it can be used to query from a database and group together changes that will then be written - back to the store as a unit. - DbContext is conceptually similar to ObjectContext. - - - DbContext is usually used with a derived type that contains properties for - the root entities of the model. These sets are automatically initialized when the - instance of the derived class is created. This behavior can be modified by applying the - attribute to either the entire derived context - class, or to individual properties on the class. - The Entity Data Model backing the context can be specified in several ways. When using the Code First - approach, the properties on the derived context are used to build a model - by convention. The protected OnModelCreating method can be overridden to tweak this model. More - control over the model used for the Model First approach can be obtained by creating a - explicitly from a and passing this model to one of the DbContext constructors. - When using the Database First or Model First approach the Entity Data Model can be created using the - Entity Designer (or manually through creation of an EDMX file) and then this model can be specified using - entity connection string or an object. - The connection to the database (including the name of the database) can be specified in several ways. - If the parameterless DbContext constructor is called from a derived context, then the name of the derived context - is used to find a connection string in the app.config or web.config file. If no connection string is found, then - the name is passed to the DefaultConnectionFactory registered on the class. The connection - factory then uses the context name as the database name in a default connection string. (This default connection - string points to (localdb)\MSSQLLocalDB unless a different DefaultConnectionFactory is registered.) - Instead of using the derived context name, the connection/database name can also be specified explicitly by - passing the name to one of the DbContext constructors that takes a string. The name can also be passed in - the form "name=myname", in which case the name must be found in the config file or an exception will be thrown. - Note that the connection found in the app.config or web.config file can be a normal database connection - string (not a special Entity Framework connection string) in which case the DbContext will use Code First. - However, if the connection found in the config file is a special Entity Framework connection string, then the - DbContext will use Database/Model First and the model specified in the connection string will be used. - An existing or explicitly created DbConnection can also be used instead of the database/connection name. - A can be applied to a class derived from DbContext to set the - version of conventions used by the context when it creates a model. If no attribute is applied then the - latest version of conventions will be used. - - - - - Constructs a new context instance using conventions to create the name of the database to - which a connection will be made. The by-convention name is the full name (namespace + class name) - of the derived context class. - See the class remarks for how this is used to create a connection. - - - - - Constructs a new context instance using conventions to create the name of the database to - which a connection will be made, and initializes it from the given model. - The by-convention name is the full name (namespace + class name) of the derived context class. - See the class remarks for how this is used to create a connection. - - The model that will back this context. - - - - Constructs a new context instance using the given string as the name or connection string for the - database to which a connection will be made. - See the class remarks for how this is used to create a connection. - - Either the database name or a connection string. - - - - Constructs a new context instance using the given string as the name or connection string for the - database to which a connection will be made, and initializes it from the given model. - See the class remarks for how this is used to create a connection. - - Either the database name or a connection string. - The model that will back this context. - - - - Constructs a new context instance using the existing connection to connect to a database. - The connection will not be disposed when the context is disposed if - is false. - - An existing connection to use for the new context. - - If set to true the connection is disposed when the context is disposed, otherwise the caller must dispose the connection. - - - - - Constructs a new context instance using the existing connection to connect to a database, - and initializes it from the given model. - The connection will not be disposed when the context is disposed if - is false. - - An existing connection to use for the new context. - The model that will back this context. - - If set to true the connection is disposed when the context is disposed, otherwise the caller must dispose the connection. - - - - - Constructs a new context instance around an existing ObjectContext. - - An existing ObjectContext to wrap with the new context. - - If set to true the ObjectContext is disposed when the DbContext is disposed, otherwise the caller must dispose the connection. - - - - - This method is called when the model for a derived context has been initialized, but - before the model has been locked down and used to initialize the context. The default - implementation of this method does nothing, but it can be overridden in a derived class - such that the model can be further configured before it is locked down. - - - Typically, this method is called only once when the first instance of a derived context - is created. The model for that context is then cached and is for all further instances of - the context in the app domain. This caching can be disabled by setting the ModelCaching - property on the given ModelBuilder, but note that this can seriously degrade performance. - More control over caching is provided through use of the DbModelBuilder and DbContextFactory - classes directly. - - The builder that defines the model for the context being created. - - - - Creates a Database instance for this context that allows for creation/deletion/existence checks - for the underlying database. - - - - - Returns a instance for access to entities of the given type in the context - and the underlying store. - - - Note that Entity Framework requires that this method return the same instance each time that it is called - for a given context instance and entity type. Also, the non-generic returned by the - method must wrap the same underlying query and set of entities. These invariants must - be maintained if this method is overridden for anything other than creating test doubles for unit testing. - See the class for more details. - - The type entity for which a set should be returned. - A set for the given entity type. - - - - Returns a non-generic instance for access to entities of the given type in the context - and the underlying store. - - The type of entity for which a set should be returned. - A set for the given entity type. - - Note that Entity Framework requires that this method return the same instance each time that it is called - for a given context instance and entity type. Also, the generic returned by the - method must wrap the same underlying query and set of entities. These invariants must - be maintained if this method is overridden for anything other than creating test doubles for unit testing. - See the class for more details. - - - - - Saves all changes made in this context to the underlying database. - - - The number of state entries written to the underlying database. This can include - state entries for entities and/or relationships. Relationship state entries are created for - many-to-many relationships and relationships where there is no foreign key property - included in the entity class (often referred to as independent associations). - - An error occurred sending updates to the database. - - A database command did not affect the expected number of rows. This usually indicates an optimistic - concurrency violation; that is, a row has been changed in the database since it was queried. - - - The save was aborted because validation of entity property values failed. - - - An attempt was made to use unsupported behavior such as executing multiple asynchronous commands concurrently - on the same context instance. - The context or connection have been disposed. - - Some error occurred attempting to process entities in the context either before or after sending commands - to the database. - - - - - Asynchronously saves all changes made in this context to the underlying database. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous save operation. - The task result contains the number of state entries written to the underlying database. This can include - state entries for entities and/or relationships. Relationship state entries are created for - many-to-many relationships and relationships where there is no foreign key property - included in the entity class (often referred to as independent associations). - - An error occurred sending updates to the database. - - A database command did not affect the expected number of rows. This usually indicates an optimistic - concurrency violation; that is, a row has been changed in the database since it was queried. - - - The save was aborted because validation of entity property values failed. - - - An attempt was made to use unsupported behavior such as executing multiple asynchronous commands concurrently - on the same context instance. - The context or connection have been disposed. - - Some error occurred attempting to process entities in the context either before or after sending commands - to the database. - - - - - Asynchronously saves all changes made in this context to the underlying database. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous save operation. - The task result contains the number of state entries written to the underlying database. This can include - state entries for entities and/or relationships. Relationship state entries are created for - many-to-many relationships and relationships where there is no foreign key property - included in the entity class (often referred to as independent associations). - - Thrown if the context has been disposed. - - - - Returns the Entity Framework ObjectContext that is underlying this context. - - Thrown if the context has been disposed. - - - - Validates tracked entities and returns a Collection of containing validation results. - - Collection of validation results for invalid entities. The collection is never null and must not contain null values or results for valid entities. - - 1. This method calls DetectChanges() to determine states of the tracked entities unless - DbContextConfiguration.AutoDetectChangesEnabled is set to false. - 2. By default only Added on Modified entities are validated. The user is able to change this behavior - by overriding ShouldValidateEntity method. - - - - - Extension point allowing the user to override the default behavior of validating only - added and modified entities. - - DbEntityEntry instance that is supposed to be validated. - true to proceed with validation; false otherwise. - - - - Extension point allowing the user to customize validation of an entity or filter out validation results. - Called by . - - DbEntityEntry instance to be validated. - - User-defined dictionary containing additional info for custom validation. It will be passed to - - and will be exposed as - - . This parameter is optional and can be null. - - Entity validation result. Possibly null when overridden. - - - - Gets a object for the given entity providing access to - information about the entity and the ability to perform actions on the entity. - - The type of the entity. - The entity. - An entry for the entity. - - - - Gets a object for the given entity providing access to - information about the entity and the ability to perform actions on the entity. - - The entity. - An entry for the entity. - - - - Provides access to features of the context that deal with change tracking of entities. - - An object used to access features that deal with change tracking. - - - - Provides access to configuration options for the context. - - An object used to access configuration options. - - - - Calls the protected Dispose method. - - - - - Disposes the context. The underlying is also disposed if it was created - is by this context or ownership was passed to this context when this context was created. - The connection to the database ( object) is also disposed if it was created - is by this context or ownership was passed to this context when this context was created. - - - true to release both managed and unmanaged resources; false to release only unmanaged resources. - - - - - - - - - - - - - - - - - Wraps access to the transaction object on the underlying store connection and ensures that the - Entity Framework executes commands on the database within the context of that transaction. - An instance of this class is retrieved by calling BeginTransaction() on the - - object. - - - - - Gets the database (store) transaction that is underlying this context transaction. - - - - - Commits the underlying store transaction - - - - - Rolls back the underlying store transaction - - - - - Cleans up this transaction object and ensures the Entity Framework - is no longer using that transaction. - - - - - Releases the resources used by this transaction object - - - true to release both managed and unmanaged resources; false to release only unmanaged resources. - - - - - - - - - - - - - - - - - Indicates that the given method is a proxy for an EDM function. - - - Note that this class was called EdmFunctionAttribute in some previous versions of Entity Framework. - - - - - Initializes a new instance of the class. - - The namespace of the mapped-to function. - The name of the mapped-to function. - - - The namespace of the mapped-to function. - The namespace of the mapped-to function. - - - The name of the mapped-to function. - The name of the mapped-to function. - - - - Provides common language runtime (CLR) methods that expose EDM canonical functions - for use in or LINQ to Entities queries. - - - Note that this class was called EntityFunctions in some previous versions of Entity Framework. - - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDev EDM function to calculate - the standard deviation of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical StDevP EDM function to calculate - the standard deviation for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The standard deviation for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Var EDM function to calculate - the variance of the collection. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate - the variance for the population. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The collection over which to perform the calculation. - The variance for the population. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Left EDM function to return a given - number of the leftmost characters in a string. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input string. - The number of characters to return - A string containing the number of characters asked for from the left of the input string. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Right EDM function to return a given - number of the rightmost characters in a string. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input string. - The number of characters to return - A string containing the number of characters asked for from the right of the input string. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Reverse EDM function to return a given - string with the order of the characters reversed. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input string. - The input string with the order of the characters reversed. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical GetTotalOffsetMinutes EDM function to - return the number of minutes that the given date/time is offset from UTC. This is generally between +780 - and -780 (+ or - 13 hrs). - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The date/time value to use. - The offset of the input from UTC. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical TruncateTime EDM function to return - the given date with the time portion cleared. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The date/time value to use. - The input date with the time portion cleared. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical TruncateTime EDM function to return - the given date with the time portion cleared. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The date/time value to use. - The input date with the time portion cleared. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical CreateDateTime EDM function to - create a new object. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The year. - The month (1-based). - The day (1-based). - The hours. - The minutes. - The seconds, including fractional parts of the seconds if desired. - The new date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical CreateDateTimeOffset EDM function to - create a new object. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The year. - The month (1-based). - The day (1-based). - The hours. - The minutes. - The seconds, including fractional parts of the seconds if desired. - The time zone offset part of the new date. - The new date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical CreateTime EDM function to - create a new object. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The hours. - The minutes. - The seconds, including fractional parts of the seconds if desired. - The new time span. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddYears EDM function to - add the given number of years to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of years to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddYears EDM function to - add the given number of years to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of years to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMonths EDM function to - add the given number of months to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of months to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMonths EDM function to - add the given number of months to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of months to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddDays EDM function to - add the given number of days to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of days to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddDays EDM function to - add the given number of days to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of days to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddHours EDM function to - add the given number of hours to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of hours to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddHours EDM function to - add the given number of hours to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of hours to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddHours EDM function to - add the given number of hours to a time span. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of hours to add. - A resulting time span. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMinutes EDM function to - add the given number of minutes to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of minutes to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMinutes EDM function to - add the given number of minutes to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of minutes to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMinutes EDM function to - add the given number of minutes to a time span. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of minutes to add. - A resulting time span. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddSeconds EDM function to - add the given number of seconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of seconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddSeconds EDM function to - add the given number of seconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of seconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddSeconds EDM function to - add the given number of seconds to a time span. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of seconds to add. - A resulting time span. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMilliseconds EDM function to - add the given number of milliseconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of milliseconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMilliseconds EDM function to - add the given number of milliseconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of milliseconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMilliseconds EDM function to - add the given number of milliseconds to a time span. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of milliseconds to add. - A resulting time span. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMicroseconds EDM function to - add the given number of microseconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of microseconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMicroseconds EDM function to - add the given number of microseconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of microseconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddMicroseconds EDM function to - add the given number of microseconds to a time span. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of microseconds to add. - A resulting time span. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddNanoseconds EDM function to - add the given number of nanoseconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of nanoseconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddNanoseconds EDM function to - add the given number of nanoseconds to a date/time. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of nanoseconds to add. - A resulting date/time. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical AddNanoseconds EDM function to - add the given number of nanoseconds to a time span. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The input date/time. - The number of nanoseconds to add. - A resulting time span. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffYears EDM function to - calculate the number of years between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of years between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffYears EDM function to - calculate the number of years between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of years between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMonths EDM function to - calculate the number of months between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of months between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMonths EDM function to - calculate the number of months between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of months between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffDays EDM function to - calculate the number of days between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of days between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffDays EDM function to - calculate the number of days between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of days between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffHours EDM function to - calculate the number of hours between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of hours between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffHours EDM function to - calculate the number of hours between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of hours between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffHours EDM function to - calculate the number of hours between two time spans. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first time span. - The second time span. - The number of hours between the first and second time spans. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMinutes EDM function to - calculate the number of minutes between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of minutes between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMinutes EDM function to - calculate the number of minutes between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of minutes between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMinutes EDM function to - calculate the number of minutes between two time spans. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first time span. - The second time span. - The number of minutes between the first and second time spans. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffSeconds EDM function to - calculate the number of seconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of seconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffSeconds EDM function to - calculate the number of seconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of seconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffSeconds EDM function to - calculate the number of seconds between two time spans. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first time span. - The second time span. - The number of seconds between the first and second time spans. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMilliseconds EDM function to - calculate the number of milliseconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of milliseconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMilliseconds EDM function to - calculate the number of milliseconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of milliseconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMilliseconds EDM function to - calculate the number of milliseconds between two time spans. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first time span. - The second time span. - The number of milliseconds between the first and second time spans. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMicroseconds EDM function to - calculate the number of microseconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of microseconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMicroseconds EDM function to - calculate the number of microseconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of microseconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffMicroseconds EDM function to - calculate the number of microseconds between two time spans. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first time span. - The second time span. - The number of microseconds between the first and second time spans. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffNanoseconds EDM function to - calculate the number of nanoseconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of nanoseconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffNanoseconds EDM function to - calculate the number of nanoseconds between two date/times. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first date/time. - The second date/time. - The number of nanoseconds between the first and second date/times. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical DiffNanoseconds EDM function to - calculate the number of nanoseconds between two time spans. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The first time span. - The second time span. - The number of nanoseconds between the first and second time spans. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Truncate EDM function to - truncate the given value to the number of specified digits. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The value to truncate. - The number of digits to preserve. - The truncated value. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Truncate EDM function to - truncate the given value to the number of specified digits. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The value to truncate. - The number of digits to preserve. - The truncated value. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Like EDM operator to match an expression. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The string to search. - The expression to match against. - True if the searched string matches the expression; otherwise false. - - - - When used as part of a LINQ to Entities query, this method invokes the canonical Like EDM operator to match an expression. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function is translated to a corresponding function in the database. - - The string to search. - The expression to match against. - The string to escape special characters with, must only be a single character. - True if the searched string matches the expression; otherwise false. - - - - When used as part of a LINQ to Entities query, this method acts as an operator that ensures the input - is treated as a Unicode string. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function impacts the way the LINQ query is translated to a query that can be run in the database. - - The input string. - The input string treated as a Unicode string. - - - - When used as part of a LINQ to Entities query, this method acts as an operator that ensures the input - is treated as a non-Unicode string. - - - You cannot call this function directly. This function can only appear within a LINQ to Entities query. - This function impacts the way the LINQ query is translated to a query that can be run in the database. - - The input string. - The input string treated as a non-Unicode string. - - - - DbModelBuilder is used to map CLR classes to a database schema. - This code centric approach to building an Entity Data Model (EDM) model is known as 'Code First'. - - - DbModelBuilder is typically used to configure a model by overriding - DbContext.OnModelCreating(DbModelBuilder) - . - You can also use DbModelBuilder independently of DbContext to build a model and then construct a - or . - The recommended approach, however, is to use OnModelCreating in as - the workflow is more intuitive and takes care of common tasks, such as caching the created model. - Types that form your model are registered with DbModelBuilder and optional configuration can be - performed by applying data annotations to your classes and/or using the fluent style DbModelBuilder - API. - When the Build method is called a set of conventions are run to discover the initial model. - These conventions will automatically discover aspects of the model, such as primary keys, and - will also process any data annotations that were specified on your classes. Finally - any configuration that was performed using the DbModelBuilder API is applied. - Configuration done via the DbModelBuilder API takes precedence over data annotations which - in turn take precedence over the default conventions. - - - - - Initializes a new instance of the class. - The process of discovering the initial model will use the set of conventions included - in the most recent version of the Entity Framework installed on your machine. - - - Upgrading to newer versions of the Entity Framework may cause breaking changes - in your application because new conventions may cause the initial model to be - configured differently. There is an alternate constructor that allows a specific - version of conventions to be specified. - - - - - Initializes a new instance of the class that will use - a specific set of conventions to discover the initial model. - - The version of conventions to be used. - - - - Excludes a type from the model. This is used to remove types from the model that were added - by convention during initial model discovery. - - The type to be excluded. - The same DbModelBuilder instance so that multiple calls can be chained. - - - - Configures the default database schema name. This default database schema name is used - for database objects that do not have an explicitly configured schema name. - - The name of the default database schema. - The same DbModelBuilder instance so that multiple calls can be chained. - - - - Excludes the specified type(s) from the model. This is used to remove types from the model that were added - by convention during initial model discovery. - - The types to be excluded from the model. - The same DbModelBuilder instance so that multiple calls can be chained. - - - - Registers an entity type as part of the model and returns an object that can be used to - configure the entity. This method can be called multiple times for the same entity to - perform multiple lines of configuration. - - The type to be registered or configured. - The configuration object for the specified entity type. - - - - Registers an entity type as part of the model. - - The type to be registered. - - This method is provided as a convenience to allow entity types to be registered dynamically - without the need to use MakeGenericMethod in order to call the normal generic Entity method. - This method does not allow further configuration of the entity type using the fluent APIs since - these APIs make extensive use of generic type parameters. - - - - - Registers a type as a complex type in the model and returns an object that can be used to - configure the complex type. This method can be called multiple times for the same type to - perform multiple lines of configuration. - - The type to be registered or configured. - The configuration object for the specified complex type. - - - - Begins configuration of a lightweight convention that applies to all entities and complex types in - the model. - - A configuration object for the convention. - - - - Begins configuration of a lightweight convention that applies to all entities and complex types - in the model that inherit from or implement the type specified by the generic argument. - This method does not register types as part of the model. - - The type of the entities or complex types that this convention will apply to. - A configuration object for the convention. - - - - Begins configuration of a lightweight convention that applies to all properties - in the model. - - A configuration object for the convention. - - - - Begins configuration of a lightweight convention that applies to all primitive - properties of the specified type in the model. - - The type of the properties that the convention will apply to. - A configuration object for the convention. - - The convention will apply to both nullable and non-nullable properties of the - specified type. - - - - - Provides access to the settings of this DbModelBuilder that deal with conventions. - - - - - Gets the for this DbModelBuilder. - The registrar allows derived entity and complex type configurations to be registered with this builder. - - - - - Creates a based on the configuration performed using this builder. - The connection is used to determine the database provider being used as this - affects the database layer of the generated model. - - Connection to use to determine provider information. - The model that was built. - - - - Creates a based on the configuration performed using this builder. - Provider information must be specified because this affects the database layer of the generated model. - For SqlClient the invariant name is 'System.Data.SqlClient' and the manifest token is the version year (i.e. '2005', '2008' etc.) - - The database provider that the model will be used with. - The model that was built. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - A value from this enumeration can be provided directly to the - class or can be used in the applied to - a class derived from . The value used defines which version of - the DbContext and DbModelBuilder conventions should be used when building a model from - code--also known as "Code First". - - - Using DbModelBuilderVersion.Latest ensures that all the latest functionality is available - when upgrading to a new release of the Entity Framework. However, it may result in an - application behaving differently with the new release than it did with a previous release. - This can be avoided by using a specific version of the conventions, but if a version - other than the latest is set then not all the latest functionality will be available. - - - - - Indicates that the latest version of the and - conventions should be used. - - - - - Indicates that the version of the and - conventions shipped with Entity Framework v4.1 - should be used. - - - - - Indicates that the version of the and - conventions shipped with Entity Framework v5.0 - when targeting .Net Framework 4 should be used. - - - - - Indicates that the version of the and - conventions shipped with Entity Framework v5.0 - should be used. - - - - - Indicates that the version of the and - conventions shipped with Entity Framework v6.0 - should be used. - - - - - This attribute can be applied to a class derived from to set which - version of the DbContext and conventions should be used when building - a model from code--also known as "Code First". See the - enumeration for details about DbModelBuilder versions. - - - If the attribute is missing from DbContextthen DbContext will always use the latest - version of the conventions. This is equivalent to using DbModelBuilderVersion.Latest. - - - - - Initializes a new instance of the class. - - - The conventions version to use. - - - - - Gets the conventions version. - - - The conventions version. - - - - - A non-generic version of which can be used when the type of entity - is not known at build time. - - - - - Creates an instance of a when called from the constructor of a derived - type that will be used as a test double for DbSets. Methods and properties that will be used by the - test double must be implemented by the test double except AsNoTracking, AsStreaming, an Include where - the default implementation is a no-op. - - - - - Finds an entity with the given primary key values. - If an entity with the given primary key values exists in the context, then it is - returned immediately without making a request to the store. Otherwise, a request - is made to the store for an entity with the given primary key values and this entity, - if found, is attached to the context and returned. If no entity is found in the - context or the store, then null is returned. - - - The ordering of composite key values is as defined in the EDM, which is in turn as defined in - the designer, by the Code First fluent API, or by the DataMember attribute. - - The values of the primary key for the entity to be found. - The entity found, or null. - Thrown if multiple entities exist in the context with the primary key values given. - Thrown if the type of entity is not part of the data model for this context. - Thrown if the types of the key values do not match the types of the key values for the entity type to be found. - Thrown if the context has been disposed. - - - - Asynchronously finds an entity with the given primary key values. - If an entity with the given primary key values exists in the context, then it is - returned immediately without making a request to the store. Otherwise, a request - is made to the store for an entity with the given primary key values and this entity, - if found, is attached to the context and returned. If no entity is found in the - context or the store, then null is returned. - - - The ordering of composite key values is as defined in the EDM, which is in turn as defined in - the designer, by the Code First fluent API, or by the DataMember attribute. - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - The values of the primary key for the entity to be found. - A task that represents the asynchronous find operation. The task result contains the entity found, or null. - Thrown if multiple entities exist in the context with the primary key values given. - Thrown if the type of entity is not part of the data model for this context. - Thrown if the types of the key values do not match the types of the key values for the entity type to be found. - Thrown if the context has been disposed. - - - - Asynchronously finds an entity with the given primary key values. - If an entity with the given primary key values exists in the context, then it is - returned immediately without making a request to the store. Otherwise, a request - is made to the store for an entity with the given primary key values and this entity, - if found, is attached to the context and returned. If no entity is found in the - context or the store, then null is returned. - - - The ordering of composite key values is as defined in the EDM, which is in turn as defined in - the designer, by the Code First fluent API, or by the DataMember attribute. - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - The values of the primary key for the entity to be found. - A task that represents the asynchronous find operation. The task result contains the entity found, or null. - Thrown if multiple entities exist in the context with the primary key values given. - Thrown if the type of entity is not part of the data model for this context. - Thrown if the types of the key values do not match the types of the key values for the entity type to be found. - Thrown if the context has been disposed. - - - - Gets an that represents a local view of all Added, Unchanged, - and Modified entities in this set. This local view will stay in sync as entities are added or - removed from the context. Likewise, entities added to or removed from the local view will automatically - be added to or removed from the context. - - - This property can be used for data binding by populating the set with data, for example by using the Load - extension method, and then binding to the local data through this property. For WPF bind to this property - directly. For Windows Forms bind to the result of calling ToBindingList on this property - - The local view. - - - - Attaches the given entity to the context underlying the set. That is, the entity is placed - into the context in the Unchanged state, just as if it had been read from the database. - - The entity to attach. - The entity. - - Attach is used to repopulate a context with an entity that is known to already exist in the database. - SaveChanges will therefore not attempt to insert an attached entity into the database because - it is assumed to already be there. - Note that entities that are already in the context in some other state will have their state set - to Unchanged. Attach is a no-op if the entity is already in the context in the Unchanged state. - - - - - Adds the given entity to the context underlying the set in the Added state such that it will - be inserted into the database when SaveChanges is called. - - The entity to add. - The entity. - - Note that entities that are already in the context in some other state will have their state set - to Added. Add is a no-op if the entity is already in the context in the Added state. - - - - - Adds the given collection of entities into context underlying the set with each entity being put into - the Added state such that it will be inserted into the database when SaveChanges is called. - - The collection of entities to add. - - The collection of entities. - - - Note that if is set to true (which is - the default), then DetectChanges will be called once before adding any entities and will not be called - again. This means that in some situations AddRange may perform significantly better than calling - Add multiple times would do. - Note that entities that are already in the context in some other state will have their state set to - Added. AddRange is a no-op for entities that are already in the context in the Added state. - - - - - Marks the given entity as Deleted such that it will be deleted from the database when SaveChanges - is called. Note that the entity must exist in the context in some other state before this method - is called. - - The entity to remove. - The entity. - - Note that if the entity exists in the context in the Added state, then this method - will cause it to be detached from the context. This is because an Added entity is assumed not to - exist in the database such that trying to delete it does not make sense. - - - - - Removes the given collection of entities from the context underlying the set with each entity being put into - the Deleted state such that it will be deleted from the database when SaveChanges is called. - - The collection of entities to delete. - - The collection of entities. - - - Note that if is set to true (which is - the default), then DetectChanges will be called once before delete any entities and will not be called - again. This means that in some situations RemoveRange may perform significantly better than calling - Remove multiple times would do. - Note that if any entity exists in the context in the Added state, then this method - will cause it to be detached from the context. This is because an Added entity is assumed not to - exist in the database such that trying to delete it does not make sense. - - - - - Creates a new instance of an entity for the type of this set. - Note that this instance is NOT added or attached to the set. - The instance returned will be a proxy if the underlying context is configured to create - proxies and the entity type meets the requirements for creating a proxy. - - The entity instance, which may be a proxy. - - - - Creates a new instance of an entity for the type of this set or for a type derived - from the type of this set. - Note that this instance is NOT added or attached to the set. - The instance returned will be a proxy if the underlying context is configured to create - proxies and the entity type meets the requirements for creating a proxy. - - The type of entity to create. - The entity instance, which may be a proxy. - - - - Returns the equivalent generic object. - - The type of entity for which the set was created. - The generic set object. - - - - Creates a raw SQL query that will return entities in this set. By default, the - entities returned are tracked by the context; this can be changed by calling - AsNoTracking on the returned. - Note that the entities returned are always of the type for this set and never of - a derived type. If the table or tables queried may contain data for other entity - types, then the SQL query must be written appropriately to ensure that only entities of - the correct type are returned. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.Set(typeof(Blog)).SqlQuery("SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.Set(typeof(Blog)).SqlQuery("SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - The SQL query string. - - The parameters to apply to the SQL query string. If output parameters are used, their values - will not be available until the results have been read completely. This is due to the underlying - behavior of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - A object that will execute the query when it is enumerated. - - - - - - - - - - - - - - A DbSet represents the collection of all entities in the context, or that can be queried from the - database, of a given type. DbSet objects are created from a DbContext using the DbContext.Set method. - - - Note that DbSet does not support MEST (Multiple Entity Sets per Type) meaning that there is always a - one-to-one correlation between a type and a set. - - The type that defines the set. - - - - Creates an instance of a when called from the constructor of a derived - type that will be used as a test double for DbSets. Methods and properties that will be used by the - test double must be implemented by the test double except AsNoTracking, AsStreaming, an Include where - the default implementation is a no-op. - - - - - Finds an entity with the given primary key values. - If an entity with the given primary key values exists in the context, then it is - returned immediately without making a request to the store. Otherwise, a request - is made to the store for an entity with the given primary key values and this entity, - if found, is attached to the context and returned. If no entity is found in the - context or the store, then null is returned. - - - The ordering of composite key values is as defined in the EDM, which is in turn as defined in - the designer, by the Code First fluent API, or by the DataMember attribute. - - The values of the primary key for the entity to be found. - The entity found, or null. - Thrown if multiple entities exist in the context with the primary key values given. - Thrown if the type of entity is not part of the data model for this context. - Thrown if the types of the key values do not match the types of the key values for the entity type to be found. - Thrown if the context has been disposed. - - - - Asynchronously finds an entity with the given primary key values. - If an entity with the given primary key values exists in the context, then it is - returned immediately without making a request to the store. Otherwise, a request - is made to the store for an entity with the given primary key values and this entity, - if found, is attached to the context and returned. If no entity is found in the - context or the store, then null is returned. - - - The ordering of composite key values is as defined in the EDM, which is in turn as defined in - the designer, by the Code First fluent API, or by the DataMember attribute. - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - The values of the primary key for the entity to be found. - A task that represents the asynchronous find operation. The task result contains the entity found, or null. - Thrown if multiple entities exist in the context with the primary key values given. - Thrown if the type of entity is not part of the data model for this context. - Thrown if the types of the key values do not match the types of the key values for the entity type to be found. - Thrown if the context has been disposed. - - - - Asynchronously finds an entity with the given primary key values. - If an entity with the given primary key values exists in the context, then it is - returned immediately without making a request to the store. Otherwise, a request - is made to the store for an entity with the given primary key values and this entity, - if found, is attached to the context and returned. If no entity is found in the - context or the store, then null is returned. - - - The ordering of composite key values is as defined in the EDM, which is in turn as defined in - the designer, by the Code First fluent API, or by the DataMember attribute. - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - The values of the primary key for the entity to be found. - A task that represents the asynchronous find operation. The task result contains the entity found, or null. - - - - - - - - - - - - - Adds the given collection of entities into context underlying the set with each entity being put into - the Added state such that it will be inserted into the database when SaveChanges is called. - - The collection of entities to add. - - The collection of entities. - - - Note that if is set to true (which is - the default), then DetectChanges will be called once before adding any entities and will not be called - again. This means that in some situations AddRange may perform significantly better than calling - Add multiple times would do. - Note that entities that are already in the context in some other state will have their state set to - Added. AddRange is a no-op for entities that are already in the context in the Added state. - - - - - - - - Removes the given collection of entities from the context underlying the set with each entity being put into - the Deleted state such that it will be deleted from the database when SaveChanges is called. - - The collection of entities to delete. - - The collection of entities. - - - Note that if is set to true (which is - the default), then DetectChanges will be called once before delete any entities and will not be called - again. This means that in some situations RemoveRange may perform significantly better than calling - Remove multiple times would do. - Note that if any entity exists in the context in the Added state, then this method - will cause it to be detached from the context. This is because an Added entity is assumed not to - exist in the database such that trying to delete it does not make sense. - - - - - - - - - - - Returns the equivalent non-generic object. - - The generic set object. - The non-generic set object. - - - - Creates a raw SQL query that will return entities in this set. By default, the - entities returned are tracked by the context; this can be changed by calling - AsNoTracking on the returned. - Note that the entities returned are always of the type for this set and never of - a derived type. If the table or tables queried may contain data for other entity - types, then the SQL query must be written appropriately to ensure that only entities of - the correct type are returned. - - As with any API that accepts SQL it is important to parameterize any user input to protect against a SQL injection attack. You can include parameter place holders in the SQL query string and then supply parameter values as additional arguments. Any parameter values you supply will automatically be converted to a DbParameter. - context.Blogs.SqlQuery("SELECT * FROM dbo.Posts WHERE Author = @p0", userSuppliedAuthor); - Alternatively, you can also construct a DbParameter and supply it to SqlQuery. This allows you to use named parameters in the SQL query string. - context.Blogs.SqlQuery("SELECT * FROM dbo.Posts WHERE Author = @author", new SqlParameter("@author", userSuppliedAuthor)); - - The SQL query string. - - The parameters to apply to the SQL query string. If output parameters are used, their values will - not be available until the results have been read completely. This is due to the underlying behavior - of DbDataReader, see http://go.microsoft.com/fwlink/?LinkID=398589 for more details. - - - A object that will execute the query when it is enumerated. - - - - - - - - - - - - - - An implementation of IDatabaseInitializer that will always recreate and optionally re-seed the - database the first time that a context is used in the app domain. - To seed the database, create a derived class and override the Seed method. - - The type of the context. - - - Initializes a new instance of the class. - - - - Executes the strategy to initialize the database for the given context. - - The context. - - - is - null - . - - - - - A method that should be overridden to actually add data to the context for seeding. - The default implementation does nothing. - - The context to seed. - - - - An implementation of IDatabaseInitializer that will DELETE, recreate, and optionally re-seed the - database only if the model has changed since the database was created. - - The type of the context. - - Whether or not the model has changed is determined by the - method. - To seed the database create a derived class and override the Seed method. - - - - Initializes a new instance of the class. - - - - Executes the strategy to initialize the database for the given context. - - The context. - - - is - null - . - - - - - A method that should be overridden to actually add data to the context for seeding. - The default implementation does nothing. - - The context to seed. - - - - Describes the state of an entity. - - - - - The entity is not being tracked by the context. - An entity is in this state immediately after it has been created with the new operator - or with one of the Create methods. - - - - - The entity is being tracked by the context and exists in the database, and its property - values have not changed from the values in the database. - - - - - The entity is being tracked by the context but does not yet exist in the database. - - - - - The entity is being tracked by the context and exists in the database, but has been marked - for deletion from the database the next time SaveChanges is called. - - - - - The entity is being tracked by the context and exists in the database, and some or all of its - property values have been modified. - - - - - A provider-independent service API for HierarchyId type support. - - - - - Returns a hierarchyid representing the nth ancestor of this. - - A hierarchyid representing the nth ancestor of this. - n - - - - Returns a child node of the parent. - - null or the hierarchyid of a child of the current node. - null or the hierarchyid of a child of the current node. - - Returns one child node that is a descendant of the parent. - If parent is null, returns null. - If parent is not null, and both child1 and child2 are null, returns a child of parent. - If parent and child1 are not null, and child2 is null, returns a child of parent greater than child1. - If parent and child2 are not null and child1 is null, returns a child of parent less than child2. - If parent, child1, and child2 are not null, returns a child of parent greater than child1 and less than child2. - If child1 is not null and not a child of parent, an exception is raised. - If child2 is not null and not a child of parent, an exception is raised. - If child1 >= child2, an exception is raised. - - - - - Returns an integer that represents the depth of the node this in the tree. - - An integer that represents the depth of the node this in the tree. - - - - Returns the root of the hierarchy tree. - - The root of the hierarchy tree. - - - - Returns true if this is a descendant of parent. - - True if this is a descendant of parent. - parent - - - - Returns a node whose path from the root is the path to newRoot, followed by the path from oldRoot to this. - - Hierarchyid value. - oldRoot - newRoot - - - - Converts the canonical string representation of a hierarchyid to a hierarchyid value. - - Hierarchyid value. - input - - - - Represents hierarchical data. - - - - - The Path separator character - - - - - Constructs an HierarchyId. - - - - - Constructs an HierarchyId with the given canonical string representation value. - - Hierarchyid value. - Canonical string representation - - - - Returns a hierarchyid representing the nth ancestor of this. - - A hierarchyid representing the nth ancestor of this. - n - - - - Returns a child node of the parent. - - null or the hierarchyid of a child of the current node. - null or the hierarchyid of a child of the current node. - - Returns one child node that is a descendant of the parent. - If parent is null, returns null. - If parent is not null, and both child1 and child2 are null, returns a child of parent. - If parent and child1 are not null, and child2 is null, returns a child of parent greater than child1. - If parent and child2 are not null and child1 is null, returns a child of parent less than child2. - If parent, child1, and child2 are not null, returns a child of parent greater than child1 and less than child2. - If child1 is not null and not a child of parent, an exception is raised. - If child2 is not null and not a child of parent, an exception is raised. - If child1 >= child2, an exception is raised. - - - - - Returns an integer that represents the depth of the node this in the tree. - - An integer that represents the depth of the node this in the tree. - - - - Returns the root of the hierarchy tree. - - The root of the hierarchy tree. - - - - Returns true if this is a descendant of parent. - - True if this is a descendant of parent. - parent - - - - Returns a node whose path from the root is the path to newRoot, followed by the path from oldRoot to this. - - Hierarchyid value. - oldRoot - newRoot - - - - Converts the canonical string representation of a hierarchyid to a hierarchyid value. - - Hierarchyid value. - input - - - - Compares two HierarchyIds by their values. - - a HierarchyId to compare - a HierarchyId to compare - - A 32-bit signed integer that indicates the lexical relationship between the two comparands. - Value Condition Less than zero: hid1 is less than hid2. - Zero: hid1 equals hid2. - Greater than zero: hid1 is greater than hid2. - - - - - Compares two HierarchyIds by their values. - - a HierarchyId to compare - a HierarchyId to compare - - true if the first parameter is less than the second parameter, false otherwise - - - - - Compares two HierarchyIds by their values. - - a HierarchyId to compare - a HierarchyId to compare - - true if the first parameter is greater than the second parameter, false otherwise - - - - - Compares two HierarchyIds by their values. - - a HierarchyId to compare - a HierarchyId to compare - - true if the first parameter is less or equal than the second parameter, false otherwise - - - - - Compares two HierarchyIds by their values. - - a HierarchyId to compare - a HierarchyId to compare - - true if the first parameter is greater or equal than the second parameter, false otherwise - - - - - Compares two HierarchyIds by their values. - - a HierarchyId to compare - a HierarchyId to compare - true if the two HierarchyIds are equal, false otherwise - - - - Compares two HierarchyIds by their values. - - a HierarchyId to compare - a HierarchyId to compare - true if the two HierarchyIds are not equal, false otherwise - - - - Compares this instance to a given HierarchyId by their values. - - the HierarchyId to compare against this instance - true if this instance is equal to the given HierarchyId, and false otherwise - - - - Returns a value-based hash code, to allow HierarchyId to be used in hash tables. - - the hash value of this HierarchyId - - - - Compares this instance to a given HierarchyId by their values. - - the HierarchyId to compare against this instance - true if this instance is equal to the given HierarchyId, and false otherwise - - - - Returns a string representation of the hierarchyid value. - - A string representation of the hierarchyid value. - - - - Implementation of IComparable.CompareTo() - - The object to compare to - 0 if the HierarchyIds are "equal" (i.e., have the same _hierarchyId value) - - - - An implementation of this interface is used to initialize the underlying database when - an instance of a derived class is used for the first time. - This initialization can conditionally create the database and/or seed it with data. - The strategy used is set using the static InitializationStrategy property of the - class. - The following implementations are provided: , - , . - - The type of the context. - - - - Executes the strategy to initialize the database for the given context. - - The context. - - - - An represents the collection of all entities in the context, or that - can be queried from the database, of a given type. is a concrete - implementation of IDbSet. - - - was originally intended to allow creation of test doubles (mocks or - fakes) for . However, this approach has issues in that adding new members - to an interface breaks existing code that already implements the interface without the new members. - Therefore, starting with EF6, no new members will be added to this interface and it is recommended - that be used as the base class for test doubles. - - The type that defines the set. - - - - Finds an entity with the given primary key values. - If an entity with the given primary key values exists in the context, then it is - returned immediately without making a request to the store. Otherwise, a request - is made to the store for an entity with the given primary key values and this entity, - if found, is attached to the context and returned. If no entity is found in the - context or the store, then null is returned. - - - The ordering of composite key values is as defined in the EDM, which is in turn as defined in - the designer, by the Code First fluent API, or by the DataMember attribute. - - The values of the primary key for the entity to be found. - The entity found, or null. - - - - Adds the given entity to the context underlying the set in the Added state such that it will - be inserted into the database when SaveChanges is called. - - The entity to add. - The entity. - - Note that entities that are already in the context in some other state will have their state set - to Added. Add is a no-op if the entity is already in the context in the Added state. - - - - - Marks the given entity as Deleted such that it will be deleted from the database when SaveChanges - is called. Note that the entity must exist in the context in some other state before this method - is called. - - The entity to remove. - The entity. - - Note that if the entity exists in the context in the Added state, then this method - will cause it to be detached from the context. This is because an Added entity is assumed not to - exist in the database such that trying to delete it does not make sense. - - - - - Attaches the given entity to the context underlying the set. That is, the entity is placed - into the context in the Unchanged state, just as if it had been read from the database. - - The entity to attach. - The entity. - - Attach is used to repopulate a context with an entity that is known to already exist in the database. - SaveChanges will therefore not attempt to insert an attached entity into the database because - it is assumed to already be there. - Note that entities that are already in the context in some other state will have their state set - to Unchanged. Attach is a no-op if the entity is already in the context in the Unchanged state. - - - - - Gets an that represents a local view of all Added, Unchanged, - and Modified entities in this set. This local view will stay in sync as entities are added or - removed from the context. Likewise, entities added to or removed from the local view will automatically - be added to or removed from the context. - - - This property can be used for data binding by populating the set with data, for example by using the Load - extension method, and then binding to the local data through this property. For WPF bind to this property - directly. For Windows Forms bind to the result of calling ToBindingList on this property - - The local view. - - - - Creates a new instance of an entity for the type of this set. - Note that this instance is NOT added or attached to the set. - The instance returned will be a proxy if the underlying context is configured to create - proxies and the entity type meets the requirements for creating a proxy. - - The entity instance, which may be a proxy. - - - - Creates a new instance of an entity for the type of this set or for a type derived - from the type of this set. - Note that this instance is NOT added or attached to the set. - The instance returned will be a proxy if the underlying context is configured to create - proxies and the entity type meets the requirements for creating a proxy. - - The type of entity to create. - The entity instance, which may be a proxy. - - - - Inherit from this class to create a service that allows for code generation of custom annotations as part of - scaffolding Migrations. The derived class should be set onto the . - - - Note that an is not needed if the annotation uses a simple string value, - or if calling ToString on the annotation object is sufficient for use in the scaffolded Migration. - - - - - Override this method to return additional namespaces that should be included in the code generated for the - scaffolded migration. The default implementation returns an empty enumeration. - - The names of the annotations that are being included in the generated code. - A list of additional namespaces to include. - - - - Implement this method to generate code for the given annotation value. - - The name of the annotation for which a value is being generated. - The annotation value. - The writer to which generated code should be written. - - - - Represents a pair of annotation values in a scaffolded or hand-coded . - - - Code First allows for custom annotations to be associated with columns and tables in the - generated model. This class represents a pair of annotation values in a migration such - that when the Code First model changes the old annotation value and the new annotation - value can be provided to the migration and used in SQL generation. - - - - - Creates a new pair of annotation values. - - The old value of the annotation, which may be null if the annotation has just been created. - The new value of the annotation, which may be null if the annotation has been deleted. - - - - Gets the old value of the annotation, which may be null if the annotation has just been created. - - - - - Gets the new value of the annotation, which may be null if the annotation has been deleted. - - - - - - - - - - - Returns true if both annotation pairs contain the same values, otherwise false. - - A pair of annotation values. - A pair of annotation values. - True if both pairs contain the same values. - - - - Returns true if the two annotation pairs contain different values, otherwise false. - - A pair of annotation values. - A pair of annotation values. - True if the pairs contain different values. - - - - Returned by and related methods to indicate whether or - not one object does not conflict with another such that the two can be combined into one. - - - If the two objects are not compatible then information about why they are not compatible is contained - in the property. - - - - - Creates a new instance. - - Indicates whether or not the two tested objects are compatible. - - An error message indicating how the objects are not compatible. Expected to be null if isCompatible is true. - - - - - True if the two tested objects are compatible; otherwise false. - - - - - If is true, then returns an error message indicating how the two tested objects - are incompatible. - - - - - Implicit conversion to a bool to allow the result object to be used directly in checks. - - The object to convert. - True if the result is compatible; false otherwise. - - - - Types used as custom annotations can implement this interface to indicate that an attempt to use - multiple annotations with the same name on a given table or column may be possible by merging - the multiple annotations into one. - - - Normally there can only be one custom annotation with a given name on a given table or - column. If a table or column ends up with multiple annotations, for example, because - multiple CLR properties map to the same column, then an exception will be thrown. - However, if the annotation type implements this interface, then the two annotations will be - checked for compatibility using the method and, if compatible, - will be merged into one using the method. - - - - - Returns true if this annotation does not conflict with the given annotation such that - the two can be combined together using the method. - - The annotation to compare. - A CompatibilityResult indicating whether or not this annotation is compatible with the other. - - - - Merges this annotation with the given annotation and returns a new merged annotation. This method is - only expected to succeed if returns true. - - The annotation to merge with this one. - A new merged annotation. - - - - Instances of this class are used as custom annotations for representing database indexes in an - Entity Framework model. - - - An index annotation is added to a Code First model when an is placed on - a mapped property of that model. This is used by Entity Framework Migrations to create indexes on - mapped database columns. Note that multiple index attributes on a property will be merged into a - single annotation for the column. Similarly, index attributes on multiple properties that map to the - same column will be merged into a single annotation for the column. This means that one index - annotation can represent multiple indexes. Within an annotation there can be only one index with any - given name. - - - - - The name used when this annotation is stored in Entity Framework metadata or serialized into - an SSDL/EDMX file. - - - - - Creates a new annotation for the given index. - - An index attributes representing an index. - - - - Creates a new annotation for the given collection of indexes. - - Index attributes representing one or more indexes. - - - - Gets the indexes represented by this annotation. - - - - - Returns true if this annotation does not conflict with the given annotation such that - the two can be combined together using the method. - - - Each index annotation contains at most one with a given name. - Two annotations are considered compatible if each IndexAttribute with a given name is only - contained in one annotation or the other, or if both annotations contain an IndexAttribute - with the given name. - - The annotation to compare. - A CompatibilityResult indicating whether or not this annotation is compatible with the other. - - - - Merges this annotation with the given annotation and returns a new annotation containing the merged indexes. - - - Each index annotation contains at most one with a given name. - The merged annotation will contain IndexAttributes from both this and the other annotation. - If both annotations contain an IndexAttribute with the same name, then the merged annotation - will contain one IndexAttribute with that name. - - The annotation to merge with this one. - A new annotation with indexes from both annotations merged. - - The other annotation contains indexes that are not compatible with indexes in this annotation. - - - - - - - - This class is used to serialize and deserialize objects so that they - can be stored in the EDMX form of the Entity Framework model. - - - An example of the serialized format is: - { Name: 'MyIndex', Order: 7, IsClustered: True, IsUnique: False } { } { Name: 'MyOtherIndex' }. - Note that properties that have not been explicitly set in an index attribute will be excluded from - the serialized output. So, in the example above, the first index has all properties specified, - the second has none, and the third has just the name set. - - - - - Serializes the given into a string for storage in the EDMX XML. - - The name of the annotation that is being serialized. - The value to serialize which must be an IndexAnnotation object. - The serialized value. - - - - Deserializes the given string back into an object. - - The name of the annotation that is being deserialized. - The string to deserialize. - The deserialized annotation value. - If there is an error reading the serialized value. - - - - Returned by the ChangeTracker method of to provide access to features of - the context that are related to change tracking of entities. - - - - - Gets objects for all the entities tracked by this context. - - The entries. - - - - Gets objects for all the entities of the given type - tracked by this context. - - The type of the entity. - The entries. - - - - Checks if the is tracking any new, deleted, or changed entities or - relationships that will be sent to the database if is called. - - - Functionally, calling this method is equivalent to checking if there are any entities or - relationships in the Added, Updated, or Deleted state. - Note that this method calls unless - has been set to false. - - - True if underlying have changes, else false. - - - - - Detects changes made to the properties and relationships of POCO entities. Note that some types of - entity (such as change tracking proxies and entities that derive from - ) - report changes automatically and a call to DetectChanges is not normally needed for these types of entities. - Also note that normally DetectChanges is called automatically by many of the methods of - and its related classes such that it is rare that this method will need to be called explicitly. - However, it may be desirable, usually for performance reasons, to turn off this automatic calling of - DetectChanges using the AutoDetectChangesEnabled flag from . - - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - A non-generic version of the class. - - - - - Gets the property name. - - The property name. - - - - Gets or sets the current value of the navigation property. The current value is - the entity that the navigation property references. - - The current value. - - - - Loads the collection of entities from the database. - Note that entities that already exist in the context are not overwritten with values from the database. - - - - - Asynchronously loads the collection of entities from the database. - Note that entities that already exist in the context are not overwritten with values from the database. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - - - - - Asynchronously loads the collection of entities from the database. - Note that entities that already exist in the context are not overwritten with values from the database. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - - - - - Gets or sets a value indicating whether all entities of this collection have been loaded from the database. - - - Loading the related entities from the database either using lazy-loading, as part of a query, or explicitly - with one of the Load methods will set the IsLoaded flag to true. - IsLoaded can be explicitly set to true to prevent the related entities of this collection from being lazy-loaded. - This can be useful if the application has caused a subset of related entities to be loaded into this collection - and wants to prevent any other entities from being loaded automatically. - Note that explict loading using one of the Load methods will load all related entities from the database - regardless of whether or not IsLoaded is true. - When any related entity in the collection is detached the IsLoaded flag is reset to false indicating that the - not all related entities are now loaded. - - - true if all the related entities are loaded or the IsLoaded has been explicitly set to true; otherwise, false. - - - - - Returns the query that would be used to load this collection from the database. - The returned query can be modified using LINQ to perform filtering or operations in the database, such - as counting the number of entities in the collection in the database without actually loading them. - - A query for the collection. - - - - The to which this navigation property belongs. - - An entry for the entity that owns this navigation property. - - - - Returns the equivalent generic object. - - The type of entity on which the member is declared. - The type of the collection element. - The equivalent generic object. - - - - Instances of this class are returned from the Collection method of - and allow operations such as loading to - be performed on the an entity's collection navigation properties. - - The type of the entity to which this property belongs. - The type of the element in the collection of entities. - - - - Gets the property name. - - The property name. - - - - Gets or sets the current value of the navigation property. The current value is - the entity that the navigation property references. - - The current value. - - - - Loads the collection of entities from the database. - Note that entities that already exist in the context are not overwritten with values from the database. - - - - - Asynchronously loads the collection of entities from the database. - Note that entities that already exist in the context are not overwritten with values from the database. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - - - - - Asynchronously loads the collection of entities from the database. - Note that entities that already exist in the context are not overwritten with values from the database. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - - - - - Gets or sets a value indicating whether all entities of this collection have been loaded from the database. - - - Loading the related entities from the database either using lazy-loading, as part of a query, or explicitly - with one of the Load methods will set the IsLoaded flag to true. - IsLoaded can be explicitly set to true to prevent the related entities of this collection from being lazy-loaded. - This can be useful if the application has caused a subset of related entities to be loaded into this collection - and wants to prevent any other entities from being loaded automatically. - Note that explict loading using one of the Load methods will load all related entities from the database - regardless of whether or not IsLoaded is true. - When any related entity in the collection is detached the IsLoaded flag is reset to false indicating that the - not all related entities are now loaded. - - - true if all the related entities are loaded or the IsLoaded has been explicitly set to true; otherwise, false. - - - - - Returns the query that would be used to load this collection from the database. - The returned query can be modified using LINQ to perform filtering or operations in the database, such - as counting the number of entities in the collection in the database without actually loading them. - - A query for the collection. - - - - Returns a new instance of the non-generic class for - the navigation property represented by this object. - - The object representing the navigation property. - A non-generic version. - - - - The to which this navigation property belongs. - - An entry for the entity that owns this navigation property. - - - - An immutable representation of an Entity Data Model (EDM) model that can be used to create an - or can be passed to the constructor of a . - For increased performance, instances of this type should be cached and re-used to construct contexts. - - - - - Creates an instance of ObjectContext or class derived from ObjectContext. Note that an instance - of DbContext can be created instead by using the appropriate DbContext constructor. - If a derived ObjectContext is used, then it must have a public constructor with a single - EntityConnection parameter. - The connection passed is used by the ObjectContext created, but is not owned by the context. The caller - must dispose of the connection once the context has been disposed. - - The type of context to create. - An existing connection to a database for use by the context. - The context. - - - - A non-generic version of the class. - - - - - Gets an object that represents a nested property of this property. - This method can be used for both scalar or complex properties. - - The name of the nested property. - An object representing the nested property. - - - - Gets an object that represents a nested complex property of this property. - - The name of the nested property. - An object representing the nested property. - - - - Returns the equivalent generic object. - - The type of entity on which the member is declared. - The type of the complex property. - The equivalent generic object. - - - - Instances of this class are returned from the ComplexProperty method of - and allow access to the state of a complex property. - - The type of the entity to which this property belongs. - The type of the property. - - - - Returns a new instance of the non-generic class for - the property represented by this object. - - The object representing the property. - A non-generic version. - - - - Gets an object that represents a nested property of this property. - This method can be used for both scalar or complex properties. - - The name of the nested property. - An object representing the nested property. - - - - Gets an object that represents a nested property of this property. - This method can be used for both scalar or complex properties. - - The type of the nested property. - The name of the nested property. - An object representing the nested property. - - - - Gets an object that represents a nested property of this property. - This method can be used for both scalar or complex properties. - - The type of the nested property. - An expression representing the nested property. - An object representing the nested property. - - - - Gets an object that represents a nested complex property of this property. - - The name of the nested property. - An object representing the nested property. - - - - Gets an object that represents a nested complex property of this property. - - The type of the nested property. - The name of the nested property. - An object representing the nested property. - - - - Gets an object that represents a nested complex property of this property. - - The type of the nested property. - An expression representing the nested property. - An object representing the nested property. - - - - Represents information about a database connection. - - - - - Creates a new instance of DbConnectionInfo representing a connection that is specified in the application configuration file. - - The name of the connection string in the application configuration. - - - - Creates a new instance of DbConnectionInfo based on a connection string. - - The connection string to use for the connection. - The name of the provider to use for the connection. Use 'System.Data.SqlClient' for SQL Server. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Describes the origin of the database connection string associated with a . - - - - - The connection string was created by convention. - - - - - The connection string was read from external configuration. - - - - - The connection string was explicitly specified at runtime. - - - - - The connection string was overridden by connection information supplied to DbContextInfo. - - - - - Returned by the Configuration method of to provide access to configuration - options for the context. - - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Gets or sets the value that determines whether SQL functions and commands should be always executed in a transaction. - - - This flag determines whether a new transaction will be started when methods such as - are executed outside of a transaction. - Note that this does not change the behavior of . - - - The default transactional behavior. - - - - - Gets or sets a value indicating whether lazy loading of relationships exposed as - navigation properties is enabled. Lazy loading is enabled by default. - - - true if lazy loading is enabled; otherwise, false . - - - - - Gets or sets a value indicating whether or not the framework will create instances of - dynamically generated proxy classes whenever it creates an instance of an entity type. - Note that even if proxy creation is enabled with this flag, proxy instances will only - be created for entity types that meet the requirements for being proxied. - Proxy creation is enabled by default. - - - true if proxy creation is enabled; otherwise, false . - - - - - Gets or sets a value indicating whether database null semantics are exhibited when comparing - two operands, both of which are potentially nullable. The default value is false. - - For example (operand1 == operand2) will be translated as: - - (operand1 = operand2) - - if UseDatabaseNullSemantics is true, respectively - - (((operand1 = operand2) AND (NOT (operand1 IS NULL OR operand2 IS NULL))) OR ((operand1 IS NULL) AND (operand2 IS NULL))) - - if UseDatabaseNullSemantics is false. - - - true if database null comparison behavior is enabled, otherwise false . - - - - - By default expression like - .Select(x => NewProperty = func(x.Property)).Where(x => x.NewProperty == ...) - are simplified to avoid nested SELECT - In some cases, simplifying query with UDFs could caused to suboptimal plans due to calling UDF twice. - Also some SQL functions aren't allow in WHERE clause. - Disabling that behavior - - - - - Gets or sets a value indicating whether the - method is called automatically by methods of and related classes. - The default value is true. - - - true if should be called automatically; otherwise, false. - - - - - Gets or sets a value indicating whether tracked entities should be validated automatically when - is invoked. - The default value is true. - - - - - Provides runtime information about a given type. - - - - - Creates a new instance representing a given type. - - - The type deriving from . - - - - - Creates a new instance representing a given targeting a specific database. - - - The type deriving from . - - Connection information for the database to be used. - - - - Creates a new instance representing a given type. An external list of - connection strings can be supplied and will be used during connection string resolution in place - of any connection strings specified in external configuration files. - - - It is preferable to use the constructor that accepts the entire config document instead of using this - constructor. Providing the entire config document allows DefaultConnectionFactroy entries in the config - to be found in addition to explicitly specified connection strings. - - - The type deriving from . - - A collection of connection strings. - - - - Creates a new instance representing a given type. An external config - object (e.g. app.config or web.config) can be supplied and will be used during connection string - resolution. This includes looking for connection strings and DefaultConnectionFactory entries. - - - The type deriving from . - - An object representing the config file. - - - - Creates a new instance representing a given , targeting a specific database. - An external config object (e.g. app.config or web.config) can be supplied and will be used during connection string - resolution. This includes looking for connection strings and DefaultConnectionFactory entries. - - - The type deriving from . - - An object representing the config file. - Connection information for the database to be used. - - - - Creates a new instance representing a given type. A - can be supplied in order to override the default determined provider used when constructing - the underlying EDM model. - - - The type deriving from . - - - A specifying the underlying ADO.NET provider to target. - - - - - Creates a new instance representing a given type. An external config - object (e.g. app.config or web.config) can be supplied and will be used during connection string - resolution. This includes looking for connection strings and DefaultConnectionFactory entries. - A can be supplied in order to override the default determined - provider used when constructing the underlying EDM model. This can be useful to prevent EF from - connecting to discover a manifest token. - - - The type deriving from . - - An object representing the config file. - - A specifying the underlying ADO.NET provider to target. - - - - - The concrete type. - - - - - Whether or not instances of the underlying type can be created. - - - - - The connection string used by the underlying type. - - - - - The connection string name used by the underlying type. - - - - - The ADO.NET provider name of the connection used by the underlying type. - - - - - The origin of the connection string used by the underlying type. - - - - - An action to be run on the DbModelBuilder after OnModelCreating has been run on the context. - - - - - If instances of the underlying type can be created, returns - a new instance; otherwise returns null. - - - A instance. - - - - - A non-generic version of the class. - - - - - Gets the entity. - - The entity. - - - - Gets or sets the state of the entity. - - The state. - - - - Gets the current property values for the tracked entity represented by this object. - - The current values. - - - - Gets the original property values for the tracked entity represented by this object. - The original values are usually the entity's property values as they were when last queried from - the database. - - The original values. - - - - Queries the database for copies of the values of the tracked entity as they currently exist in the database. - Note that changing the values in the returned dictionary will not update the values in the database. - If the entity is not found in the database then null is returned. - - The store values. - - - - Asynchronously queries the database for copies of the values of the tracked entity as they currently exist in the database. - Note that changing the values in the returned dictionary will not update the values in the database. - If the entity is not found in the database then null is returned. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - The task result contains the store values. - - - - - Asynchronously queries the database for copies of the values of the tracked entity as they currently exist in the database. - Note that changing the values in the returned dictionary will not update the values in the database. - If the entity is not found in the database then null is returned. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the store values. - - - - - Reloads the entity from the database overwriting any property values with values from the database. - The entity will be in the Unchanged state after calling this method. - - - - - Asynchronously reloads the entity from the database overwriting any property values with values from the database. - The entity will be in the Unchanged state after calling this method. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - - - - - Asynchronously reloads the entity from the database overwriting any property values with values from the database. - The entity will be in the Unchanged state after calling this method. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - - - - - Gets an object that represents the reference (i.e. non-collection) navigation property from this - entity to another entity. - - The name of the navigation property. - An object representing the navigation property. - - - - Gets an object that represents the collection navigation property from this - entity to a collection of related entities. - - The name of the navigation property. - An object representing the navigation property. - - - - Gets an object that represents a scalar or complex property of this entity. - - The name of the property. - An object representing the property. - - - - Gets an object that represents a complex property of this entity. - - The name of the complex property. - An object representing the complex property. - - - - Gets an object that represents a member of the entity. The runtime type of the returned object will - vary depending on what kind of member is asked for. The currently supported member types and their return - types are: - Reference navigation property: . - Collection navigation property: . - Primitive/scalar property: . - Complex property: . - - The name of the member. - An object representing the member. - - - - Returns a new instance of the generic class for the given - generic type for the tracked entity represented by this object. - Note that the type of the tracked entity must be compatible with the generic type or - an exception will be thrown. - - The type of the entity. - A generic version. - - - - Validates this instance and returns validation result. - - - Entity validation result. Possibly null if - DbContext.ValidateEntity(DbEntityEntry, IDictionary{object,object}) - method is overridden. - - - - - Determines whether the specified is equal to this instance. - Two instances are considered equal if they are both entries for - the same entity on the same . - - - The to compare with this instance. - - - true if the specified is equal to this instance; otherwise, false . - - - - - Determines whether the specified is equal to this instance. - Two instances are considered equal if they are both entries for - the same entity on the same . - - - The to compare with this instance. - - - true if the specified is equal to this instance; otherwise, false . - - - - - Returns a hash code for this instance. - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Instances of this class provide access to information about and control of entities that - are being tracked by the . Use the Entity or Entities methods of - the context to obtain objects of this type. - - The type of the entity. - - - - Gets the entity. - - The entity. - - - - Gets or sets the state of the entity. - - The state. - - - - Gets the current property values for the tracked entity represented by this object. - - The current values. - - - - Gets the original property values for the tracked entity represented by this object. - The original values are usually the entity's property values as they were when last queried from - the database. - - The original values. - - - - Queries the database for copies of the values of the tracked entity as they currently exist in the database. - Note that changing the values in the returned dictionary will not update the values in the database. - If the entity is not found in the database then null is returned. - - The store values. - - - - Asynchronously queries the database for copies of the values of the tracked entity as they currently exist in the database. - Note that changing the values in the returned dictionary will not update the values in the database. - If the entity is not found in the database then null is returned. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - The task result contains the store values. - - - - - Asynchronously queries the database for copies of the values of the tracked entity as they currently exist in the database. - Note that changing the values in the returned dictionary will not update the values in the database. - If the entity is not found in the database then null is returned. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the store values. - - - - - Reloads the entity from the database overwriting any property values with values from the database. - The entity will be in the Unchanged state after calling this method. - - - - - Asynchronously reloads the entity from the database overwriting any property values with values from the database. - The entity will be in the Unchanged state after calling this method. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - - - - - Asynchronously reloads the entity from the database overwriting any property values with values from the database. - The entity will be in the Unchanged state after calling this method. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - - - - - Gets an object that represents the reference (i.e. non-collection) navigation property from this - entity to another entity. - - The name of the navigation property. - An object representing the navigation property. - - - - Gets an object that represents the reference (i.e. non-collection) navigation property from this - entity to another entity. - - The type of the property. - The name of the navigation property. - An object representing the navigation property. - - - - Gets an object that represents the reference (i.e. non-collection) navigation property from this - entity to another entity. - - The type of the property. - An expression representing the navigation property. - An object representing the navigation property. - - - - Gets an object that represents the collection navigation property from this - entity to a collection of related entities. - - The name of the navigation property. - An object representing the navigation property. - - - - Gets an object that represents the collection navigation property from this - entity to a collection of related entities. - - The type of elements in the collection. - The name of the navigation property. - An object representing the navigation property. - - - - Gets an object that represents the collection navigation property from this - entity to a collection of related entities. - - The type of elements in the collection. - An expression representing the navigation property. - An object representing the navigation property. - - - - Gets an object that represents a scalar or complex property of this entity. - - The name of the property. - An object representing the property. - - - - Gets an object that represents a scalar or complex property of this entity. - - The type of the property. - The name of the property. - An object representing the property. - - - - Gets an object that represents a scalar or complex property of this entity. - - The type of the property. - An expression representing the property. - An object representing the property. - - - - Gets an object that represents a complex property of this entity. - - The name of the complex property. - An object representing the complex property. - - - - Gets an object that represents a complex property of this entity. - - The type of the complex property. - The name of the complex property. - An object representing the complex property. - - - - Gets an object that represents a complex property of this entity. - - The type of the complex property. - An expression representing the complex property. - An object representing the complex property. - - - - Gets an object that represents a member of the entity. The runtime type of the returned object will - vary depending on what kind of member is asked for. The currently supported member types and their return - types are: - Reference navigation property: . - Collection navigation property: . - Primitive/scalar property: . - Complex property: . - - The name of the member. - An object representing the member. - - - - Gets an object that represents a member of the entity. The runtime type of the returned object will - vary depending on what kind of member is asked for. The currently supported member types and their return - types are: - Reference navigation property: . - Collection navigation property: . - Primitive/scalar property: . - Complex property: . - - The type of the member. - The name of the member. - An object representing the member. - - - - Returns a new instance of the non-generic class for - the tracked entity represented by this object. - - The object representing the tracked entity. - A non-generic version. - - - - Validates this instance and returns validation result. - - - Entity validation result. Possibly null if - DbContext.ValidateEntity(DbEntityEntry, IDictionary{object, object}) - method is overridden. - - - - - Determines whether the specified is equal to this instance. - Two instances are considered equal if they are both entries for - the same entity on the same . - - - The to compare with this instance. - - - true if the specified is equal to this instance; otherwise, false . - - - - - Determines whether the specified is equal to this instance. - Two instances are considered equal if they are both entries for - the same entity on the same . - - - The to compare with this instance. - - - true if the specified is equal to this instance; otherwise, false . - - - - - Returns a hash code for this instance. - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Provides the base implementation of the retry mechanism for unreliable operations and transient conditions that uses - exponentially increasing delays between retries. - - - A new instance will be created each time an operation is executed. - The following formula is used to calculate the delay after retryCount number of attempts: - min(random(1, 1.1) * (2 ^ retryCount - 1), maxDelay) - The retryCount starts at 0. - The random factor distributes uniformly the retry attempts from multiple simultaneous operations failing simultaneously. - - - - - Creates a new instance of . - - - The default retry limit is 5, which means that the total amount of time spent between retries is 26 seconds plus the random factor. - - - - - Creates a new instance of with the specified limits for number of retries and the delay between retries. - - The maximum number of retry attempts. - The maximum delay in milliseconds between retries. - - - - Returns true to indicate that might retry the execution after a failure. - - - - - Indicates whether the strategy is suspended. The strategy is typically suspending while executing to avoid - recursive execution from nested operations. - - - - - Repetitively executes the specified operation while it satisfies the current retry policy. - - A delegate representing an executable operation that doesn't return any results. - if the retry delay strategy determines the operation shouldn't be retried anymore - if an existing transaction is detected and the execution strategy doesn't support it - if this instance was already used to execute an operation - - - - Repetitively executes the specified operation while it satisfies the current retry policy. - - The type of result expected from the executable operation. - - A delegate representing an executable operation that returns the result of type . - - The result from the operation. - if the retry delay strategy determines the operation shouldn't be retried anymore - if an existing transaction is detected and the execution strategy doesn't support it - if this instance was already used to execute an operation - - - - Repetitively executes the specified asynchronous operation while it satisfies the current retry policy. - - A function that returns a started task. - - A cancellation token used to cancel the retry operation, but not operations that are already in flight - or that already completed successfully. - - - A task that will run to completion if the original task completes successfully (either the - first time or after retrying transient failures). If the task fails with a non-transient error or - the retry limit is reached, the returned task will become faulted and the exception must be observed. - - if the retry delay strategy determines the operation shouldn't be retried anymore - if an existing transaction is detected and the execution strategy doesn't support it - if this instance was already used to execute an operation - - - - Repeatedly executes the specified asynchronous operation while it satisfies the current retry policy. - - - The result type of the returned by . - - - A function that returns a started task of type . - - - A cancellation token used to cancel the retry operation, but not operations that are already in flight - or that already completed successfully. - - - A task that will run to completion if the original task completes successfully (either the - first time or after retrying transient failures). If the task fails with a non-transient error or - the retry limit is reached, the returned task will become faulted and the exception must be observed. - - if the retry delay strategy determines the operation shouldn't be retried anymore - if an existing transaction is detected and the execution strategy doesn't support it - if this instance was already used to execute an operation - - - - Determines whether the operation should be retried and the delay before the next attempt. - - The exception thrown during the last execution attempt. - - Returns the delay indicating how long to wait for before the next execution attempt if the operation should be retried; - null otherwise - - - - - Recursively gets InnerException from as long as it's an - , or - and passes it to - - The type of the unwrapped exception. - The exception to be unwrapped. - A delegate that will be called with the unwrapped exception. - - The result from . - - - - - Determines whether the specified exception represents a transient failure that can be compensated by a retry. - - The exception object to be verified. - - true if the specified exception is considered as transient, otherwise false. - - - - - This is an abstract base class use to represent a scalar or complex property, or a navigation property - of an entity. Scalar and complex properties use the derived class , - reference navigation properties use the derived class , and collection - navigation properties use the derived class . - - - - - Gets the name of the property. - - The property name. - - - - Gets or sets the current value of this property. - - The current value. - - - - The to which this member belongs. - - An entry for the entity that owns this member. - - - - Validates this property. - - - Collection of objects. Never null. If the entity is valid the collection will be empty. - - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Returns the equivalent generic object. - - The type of entity on which the member is declared. - The type of the property. - The equivalent generic object. - - - - This is an abstract base class use to represent a scalar or complex property, or a navigation property - of an entity. Scalar and complex properties use the derived class , - reference navigation properties use the derived class , and collection - navigation properties use the derived class . - - The type of the entity to which this property belongs. - The type of the property. - - - Gets the name of the property. - The name of the property. - - - - Gets or sets the current value of this property. - - The current value. - - - - Returns a new instance of the non-generic class for - the property represented by this object. - - The object representing the property. - A non-generic version. - - - - The to which this member belongs. - - An entry for the entity that owns this member. - - - - Validates this property. - - - Collection of objects. Never null. If the entity is valid the collection will be empty. - - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Represents an Entity Data Model (EDM) created by the . - The Compile method can be used to go from this EDM representation to a - which is a compiled snapshot of the model suitable for caching and creation of - or instances. - - - - - Gets the provider information. - - - - - Gets the provider manifest. - - - - - Gets the conceptual model. - - - - - Gets the store model. - - - - - Gets the mapping model. - - - - - Creates a for this mode which is a compiled snapshot - suitable for caching and creation of instances. - - The compiled model. - - - - Base class for persisted model cache. - - - - - Loads a model from the store. - - The type of context representing the model. - The loaded metadata model. - - - - Retrieves an edmx XDocument version of the model from the store. - - The type of context representing the model. - The loaded XDocument edmx. - - - - Saves a model to the store. - - The type of context representing the model. - The metadata model to save. - - - - Gets the default database schema used by a model. - - The type of context representing the model. - The default database schema. - - - - A non-generic version of the class. - - - - - Gets the property name. - - The property name. - - - - Gets or sets the original value of this property. - - The original value. - - - - Gets or sets the current value of this property. - - The current value. - - - - Gets or sets a value indicating whether the value of this property has been modified since - it was loaded from the database. - - - Setting this value to false for a modified property will revert the change by setting the - current value to the original value. If the result is that no properties of the entity are - marked as modified, then the entity will be marked as Unchanged. - Setting this value to false for properties of Added, Unchanged, or Deleted entities - is a no-op. - - - true if this instance is modified; otherwise, false . - - - - - The to which this property belongs. - - An entry for the entity that owns this property. - - - - The of the property for which this is a nested property. - This method will only return a non-null entry for properties of complex objects; it will - return null for properties of the entity itself. - - An entry for the parent complex property, or null if this is an entity property. - - - - Returns the equivalent generic object. - - The type of entity on which the member is declared. - The type of the property. - The equivalent generic object. - - - - Instances of this class are returned from the Property method of - and allow access to the state of the scalar - or complex property. - - The type of the entity to which this property belongs. - The type of the property. - - - - Gets the property name. - - The property name. - - - - Gets or sets the original value of this property. - - The original value. - - - - Gets or sets the current value of this property. - - The current value. - - - - Gets or sets a value indicating whether the value of this property has been modified since - it was loaded from the database. - - - true if this instance is modified; otherwise, false . - - - - - Returns a new instance of the non-generic class for - the property represented by this object. - - The object representing the property. - A non-generic version. - - - - The to which this property belongs. - - An entry for the entity that owns this property. - - - - The of the property for which this is a nested property. - This method will only return a non-null entry for properties of complex objects; it will - return null for properties of the entity itself. - - An entry for the parent complex property, or null if this is an entity property. - - - - A collection of all the properties for an underlying entity or complex object. - - - An instance of this class can be converted to an instance of the generic class - using the Cast method. - Complex properties in the underlying entity or complex object are represented in - the property values as nested instances of this class. - - - - - Creates an object of the underlying type for this dictionary and hydrates it with property - values from this dictionary. - - The properties of this dictionary copied into a new object. - - - - Sets the values of this dictionary by reading values out of the given object. - The given object can be of any type. Any property on the object with a name that - matches a property name in the dictionary and can be read will be read. Other - properties will be ignored. This allows, for example, copying of properties from - simple Data Transfer Objects (DTOs). - - The object to read values from. - - - - Creates a new dictionary containing copies of all the properties in this dictionary. - Changes made to the new dictionary will not be reflected in this dictionary and vice versa. - - A clone of this dictionary. - - - - Sets the values of this dictionary by reading values from another dictionary. - The other dictionary must be based on the same type as this dictionary, or a type derived - from the type for this dictionary. - - The dictionary to read values from. - - - - Gets the set of names of all properties in this dictionary as a read-only set. - - The property names. - - - - Gets or sets the value of the property with the specified property name. - The value may be a nested instance of this class. - - The property name. - The value of the property. - - - - Gets the value of the property just like using the indexed property getter but - typed to the type of the generic parameter. This is useful especially with - nested dictionaries to avoid writing expressions with lots of casts. - - The type of the property. - Name of the property. - The value of the property. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Groups a pair of strings that identify a provider and server version together into a single object. - - - Instances of this class act as the key for resolving a for a specific - provider from a . This is typically used when registering spatial services - in or when the spatial services specific to a provider is - resolved by an implementation of . - - - - - Creates a new object for a given provider invariant name and manifest token. - - - A string that identifies that provider. For example, the SQL Server - provider uses the string "System.Data.SqlCient". - - - A string that identifies that version of the database server being used. For example, the SQL Server - provider uses the string "2008" for SQL Server 2008. This cannot be null but may be empty. - The manifest token is sometimes referred to as a version hint. - - - - - A string that identifies that provider. For example, the SQL Server - provider uses the string "System.Data.SqlCient". - - - - - A string that identifies that version of the database server being used. For example, the SQL Server - provider uses the string "2008" for SQL Server 2008. This cannot be null but may be empty. - - - - - - - - - - - Represents a non-generic LINQ to Entities query against a DbContext. - - - - - Returns false. - - - false . - - - - - Throws an exception indicating that binding directly to a store query is not supported. - Instead populate a DbSet with data, for example by using the Load extension method, and - then bind to local data. For WPF bind to DbSet.Local. For Windows Forms bind to - DbSet.Local.ToBindingList(). - - Never returns; always throws. - - - - Returns an which when enumerated will execute the query against the database. - - The query results. - - - - Returns an which when enumerated will execute the query against the database. - - The query results. - - - - The IQueryable element type. - - - - - The IQueryable LINQ Expression. - - - - - The IQueryable provider. - - - - - Specifies the related objects to include in the query results. - - - Paths are all-inclusive. For example, if an include call indicates Include("Orders.OrderLines"), not only will - OrderLines be included, but also Orders. When you call the Include method, the query path is only valid on - the returned instance of the DbQuery<T>. Other instances of DbQuery<T> and the object context itself are not affected. - Because the Include method returns the query object, you can call this method multiple times on an DbQuery<T> to - specify multiple paths for the query. - - The dot-separated list of related objects to return in the query results. - - A new DbQuery<T> with the defined query path. - - - - - Returns a new query where the entities returned will not be cached in the . - - A new query with NoTracking applied. - - - - Returns a new query that will stream the results instead of buffering. - - A new query with AsStreaming applied. - - - - Returns the equivalent generic object. - - The type of element for which the query was created. - The generic set object. - - - - Returns a representation of the underlying query. - - The query string. - - - - Gets a representation of the underlying query. - - - - - - - - - - - - - - Represents a LINQ to Entities query against a DbContext. - - The type of entity to query for. - - - - Specifies the related objects to include in the query results. - - - Paths are all-inclusive. For example, if an include call indicates Include("Orders.OrderLines"), not only will - OrderLines be included, but also Orders. When you call the Include method, the query path is only valid on - the returned instance of the DbQuery<T>. Other instances of DbQuery<T> and the object context itself are not affected. - Because the Include method returns the query object, you can call this method multiple times on an DbQuery<T> to - specify multiple paths for the query. - - The dot-separated list of related objects to return in the query results. - - A new with the defined query path. - - - - - Returns a new query where the entities returned will not be cached in the . - - A new query with NoTracking applied. - - - - Returns a new query that will stream the results instead of buffering. - - A new query with AsStreaming applied. - - - - Returns false. - - - false . - - - - - Throws an exception indicating that binding directly to a store query is not supported. - Instead populate a DbSet with data, for example by using the Load extension method, and - then bind to local data. For WPF bind to DbSet.Local. For Windows Forms bind to - DbSet.Local.ToBindingList(). - - Never returns; always throws. - - - - Returns an which when enumerated will execute the query against the database. - - The query results. - - - - Returns an which when enumerated will execute the query against the database. - - The query results. - - - - Returns an which when enumerated will execute the query against the database. - - The query results. - - - - Returns an which when enumerated will execute the query against the database. - - The query results. - - - - The IQueryable element type. - - - - - The IQueryable LINQ Expression. - - - - - The IQueryable provider. - - - - - Returns a representation of the underlying query. - - The query string. - - - - Gets a representation of the underlying query. - - - - - Returns a new instance of the non-generic class for this query. - - The query. - A non-generic version. - - - - - - - - - - - - - Represents a SQL query for non-entities that is created from a - and is executed using the connection from that context. - Instances of this class are obtained from the instance. - The query is not executed when this object is created; it is executed - each time it is enumerated, for example by using foreach. - SQL queries for entities are created using . - See for a generic version of this class. - - - - - Returns a new query that will stream the results instead of buffering. - - A new query with AsStreaming applied. - - - - Returns an which when enumerated will execute the SQL query against the database. - - - An object that can be used to iterate through the elements. - - - - - Returns an which when enumerated will execute the SQL query against the database. - - - An object that can be used to iterate through the elements. - - - - - Asynchronously enumerates the query results and performs the specified action on each element. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - The action to perform on each element. - A task that represents the asynchronous operation. - - - - Asynchronously enumerates the query results and performs the specified action on each element. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - The action to perform on each element. - - A to observe while waiting for the task to complete. - - A task that represents the asynchronous operation. - - - - Creates a from the query by enumerating it asynchronously. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - The task result contains a that contains elements from the query. - - - - - Creates a from the query by enumerating it asynchronously. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains a that contains elements from the query. - - - - - Returns a that contains the SQL string that was set - when the query was created. The parameters are not included. - - - A that represents this instance. - - - - - Returns false. - - - false . - - - - - Throws an exception indicating that binding directly to a store query is not supported. - - Never returns; always throws. - - - - - - - - - - - - - Represents a SQL query for non-entities that is created from a - and is executed using the connection from that context. - Instances of this class are obtained from the instance. - The query is not executed when this object is created; it is executed - each time it is enumerated, for example by using foreach. - SQL queries for entities are created using . - See for a non-generic version of this class. - - The type of elements returned by the query. - - - - Returns a new query that will stream the results instead of buffering. - - A new query with AsStreaming applied. - - - - Returns an which when enumerated will execute the SQL query against the database. - - - An object that can be used to iterate through the elements. - - - - - Returns an which when enumerated will execute the SQL query against the database. - - - An object that can be used to iterate through the elements. - - - - - Returns an which when enumerated will execute the SQL query against the database. - - - An object that can be used to iterate through the elements. - - - - - Returns an which when enumerated will execute the SQL query against the database. - - - An object that can be used to iterate through the elements. - - - - - Asynchronously enumerates the query results and performs the specified action on each element. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - The action to be executed. - A task that represents the asynchronous operation. - - - - Asynchronously enumerates the query results and performs the specified action on each element. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - The action to be executed. - - A to observe while waiting for the task to complete. - - A task that represents the asynchronous operation. - - - - Creates a from the query by enumerating it asynchronously. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - The task result contains a that contains elements from the input sequence. - - - - - Creates a from the query by enumerating it asynchronously. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains a that contains elements from the input sequence. - - - - - Creates an array from the query by enumerating it asynchronously. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - The task result contains an array that contains elements from the input sequence. - - - - - Creates an array from the query by enumerating it asynchronously. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains an array that contains elements from the input sequence. - - - - - Creates a from the query by enumerating it asynchronously - according to a specified key selector function. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the key returned by . - - A function to extract a key from each element. - - A task that represents the asynchronous operation. - The task result contains a that contains selected keys and values. - - - - - Creates a from the query by enumerating it asynchronously - according to a specified key selector function. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the key returned by . - - A function to extract a key from each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains a that contains selected keys and values. - - - - - Creates a from the query by enumerating it asynchronously - according to a specified key selector function and a comparer. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the key returned by . - - A function to extract a key from each element. - - An to compare keys. - - - A task that represents the asynchronous operation. - The task result contains a that contains selected keys and values. - - - - - Creates a from the query by enumerating it asynchronously - according to a specified key selector function and a comparer. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the key returned by . - - A function to extract a key from each element. - - An to compare keys. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains a that contains selected keys and values. - - - - - Creates a from the query by enumerating it asynchronously - according to a specified key selector and an element selector function. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the key returned by . - - - The type of the value returned by . - - A function to extract a key from each element. - A transform function to produce a result element value from each element. - - A task that represents the asynchronous operation. - The task result contains a that contains values of type - selected from the query. - - - - - Creates a from the query by enumerating it asynchronously - according to a specified key selector and an element selector function. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the key returned by . - - - The type of the value returned by . - - A function to extract a key from each element. - A transform function to produce a result element value from each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains a that contains values of type - selected from the query. - - - - - Creates a from the query by enumerating it asynchronously - according to a specified key selector function, a comparer, and an element selector function. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the key returned by . - - - The type of the value returned by . - - A function to extract a key from each element. - A transform function to produce a result element value from each element. - - An to compare keys. - - - A task that represents the asynchronous operation. - The task result contains a that contains values of type - selected from the input sequence. - - - - - Creates a from the query by enumerating it asynchronously - according to a specified key selector function, a comparer, and an element selector function. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the key returned by . - - - The type of the value returned by . - - A function to extract a key from each element. - A transform function to produce a result element value from each element. - - An to compare keys. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains a that contains values of type - selected from the input sequence. - - - - - Asynchronously returns the first element of the query. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - The task result contains the first element in the query result. - - The query result is empty. - - - - Asynchronously returns the first element of the query. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the first element in the query result. - - The query result is empty. - - - - Asynchronously returns the first element of the query that satisfies a specified condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A task that represents the asynchronous operation. - The task result contains the first element in the query result that satisfies a specified condition. - - - - is - null - . - - The query result is empty. - - - - Asynchronously returns the first element of the query that satisfies a specified condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the first element in the query result that satisfies a specified condition. - - - - is - null - . - - The query result is empty. - - - - Asynchronously returns the first element of the query, or a default value if the query result contains no elements. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - The task result contains default ( ) if query result is empty; - otherwise, the first element in the query result. - - - - - Asynchronously returns the first element of the query, or a default value if the query result contains no elements. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains default ( ) if query result is empty; - otherwise, the first element in the query result. - - - - - Asynchronously returns the first element of the query that satisfies a specified condition - or a default value if no such element is found. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A task that represents the asynchronous operation. - The task result contains default ( ) if query result is empty - or if no element passes the test specified by ; otherwise, the first element - in the query result that passes the test specified by . - - - - is - null - . - - - - - Asynchronously returns the first element of the query that satisfies a specified condition - or a default value if no such element is found. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains default ( ) if query result is empty - or if no element passes the test specified by ; otherwise, the first element - in the query result that passes the test specified by . - - - - is - null - . - - - - - Asynchronously returns the only element of the query, and throws an exception - if there is not exactly one element in the sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - The task result contains the single element of the query result. - - The query result has more than one element. - The query result is empty. - - - - Asynchronously returns the only element of the query, and throws an exception - if there is not exactly one element in the sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the single element of the query result. - - The query result has more than one element. - The query result is empty. - - - - Asynchronously returns the only element of the query that satisfies a specified condition, - and throws an exception if more than one such element exists. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A task that represents the asynchronous operation. - The task result contains the single element of the query result that satisfies the condition in - . - - - - is - null - . - - - No element satisfies the condition in - - . - - - More than one element satisfies the condition in - - . - - - - - Asynchronously returns the only element of the query that satisfies a specified condition, - and throws an exception if more than one such element exists. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the single element of the query result that satisfies the condition in - . - - - - is - null - . - - - No element satisfies the condition in - - . - - - More than one element satisfies the condition in - - . - - - - - Asynchronously returns the only element of a sequence, or a default value if the sequence is empty; - this method throws an exception if there is more than one element in the sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - The task result contains the single element of the query result, or default () - if the sequence contains no elements. - - The query result has more than one element. - - - - Asynchronously returns the only element of a sequence, or a default value if the sequence is empty; - this method throws an exception if there is more than one element in the sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the single element of the query result, or default () - if the sequence contains no elements. - - The query result has more than one element. - - - - Asynchronously returns the only element of the query that satisfies a specified condition or - a default value if no such element exists; this method throws an exception if more than one element - satisfies the condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A task that represents the asynchronous operation. - The task result contains the single element of the query result that satisfies the condition in - , or default ( ) if no such element is found. - - - - is - null - . - - - More than one element satisfies the condition in - - . - - - - - Asynchronously returns the only element of the query that satisfies a specified condition or - a default value if no such element exists; this method throws an exception if more than one element - satisfies the condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the single element of the query result that satisfies the condition in - , or default ( ) if no such element is found. - - - - is - null - . - - - More than one element satisfies the condition in - - . - - - - - Asynchronously determines whether the query contains a specified element by using the default equality comparer. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - The object to locate in the query result. - - A task that represents the asynchronous operation. - The task result contains true if the query result contains the specified value; otherwise, false. - - - - - Asynchronously determines whether the query contains a specified element by using the default equality comparer. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - The object to locate in the query result. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains true if the query result contains the specified value; otherwise, false. - - - - - Asynchronously determines whether the query contains any elements. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - The task result contains true if the query result contains any elements; otherwise, false. - - - - - Asynchronously determines whether the query contains any elements. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains true if the query result contains any elements; otherwise, false. - - - - - Asynchronously determines whether any element of the query satisfies a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A task that represents the asynchronous operation. - The task result contains true if any elements in the query result pass the test in the specified predicate; otherwise, false. - - - - - Asynchronously determines whether any element of the query satisfies a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains true if any elements in the query result pass the test in the specified predicate; otherwise, false. - - - - - Asynchronously determines whether all the elements of the query satisfy a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A task that represents the asynchronous operation. - The task result contains true if every element of the query result passes the test in the specified predicate; otherwise, false. - - - - is - null - . - - - - - Asynchronously determines whether all the elements of the query satisfy a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains true if every element of the query result passes the test in the specified predicate; otherwise, false. - - - - is - null - . - - - - - Asynchronously returns the number of elements in the query. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - The task result contains the number of elements in the query result. - - - The number of elements in the query result is larger than - - . - - - - - Asynchronously returns the number of elements in the query. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the number of elements in the query result. - - - The number of elements in the query result is larger than - - . - - - - - Asynchronously returns the number of elements in the query that satisfy a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A task that represents the asynchronous operation. - The task result contains the number of elements in the query result that satisfy the condition in the predicate function. - - - The number of elements in the query result that satisfy the condition in the predicate function - is larger than - - . - - - - - Asynchronously returns the number of elements in the query that satisfy a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the number of elements in the query result that satisfy the condition in the predicate function. - - - The number of elements in the query result that satisfy the condition in the predicate function - is larger than - - . - - - - - Asynchronously returns an that represents the total number of elements in the query. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - The task result contains the number of elements in the query result. - - - The number of elements in the query result is larger than - - . - - - - - Asynchronously returns an that represents the total number of elements in the query. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the number of elements in the query result. - - - The number of elements in the query result is larger than - - . - - - - - Asynchronously returns an that represents the number of elements in the query - that satisfy a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A task that represents the asynchronous operation. - The task result contains the number of elements in the query result that satisfy the condition in the predicate function. - - - The number of elements in the query result that satisfy the condition in the predicate function - is larger than - - . - - - - - Asynchronously returns an that represents the number of elements in the query - that satisfy a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - A function to test each element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the number of elements in the query result that satisfy the condition in the predicate function. - - - The number of elements in the query result that satisfy the condition in the predicate function - is larger than - - . - - - - - Asynchronously returns the minimum value of the query. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - The task result contains the minimum value in the query result. - - - - - Asynchronously returns the minimum value of the query. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the minimum value in the query result. - - - - - Asynchronously returns the maximum value of the query. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - The task result contains the maximum value in the query result. - - - - - Asynchronously returns the maximum value of the query. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the maximum value in the query result. - - - - - Returns a that contains the SQL string that was set - when the query was created. The parameters are not included. - - - A that represents this instance. - - - - - Returns false. - - - false . - - - - - Throws an exception indicating that binding directly to a store query is not supported. - - Never returns; always throws. - - - - - - - - - - - - - A non-generic version of the class. - - - - - Gets the property name. - - The property name. - - - - Gets or sets the current value of the navigation property. The current value is - the entity that the navigation property references. - - The current value. - - - - Loads the entity from the database. - Note that if the entity already exists in the context, then it will not overwritten with values from the database. - - - - - Asynchronously loads the entity from the database. - Note that if the entity already exists in the context, then it will not overwritten with values from the database. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - - - - - Asynchronously loads the entity from the database. - Note that if the entity already exists in the context, then it will not overwritten with values from the database. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - - - - - Gets or sets a value indicating whether the entity has been loaded from the database. - - - Loading the related entity from the database either using lazy-loading, as part of a query, or explicitly - with one of the Load methods will set the IsLoaded flag to true. - IsLoaded can be explicitly set to true to prevent the related entity from being lazy-loaded. - Note that explict loading using one of the Load methods will load the related entity from the database - regardless of whether or not IsLoaded is true. - When a related entity is detached the IsLoaded flag is reset to false indicating that the related entity is - no longer loaded. - - - true if the entity is loaded or the IsLoaded has been explicitly set to true; otherwise, false. - - - - - Returns the query that would be used to load this entity from the database. - The returned query can be modified using LINQ to perform filtering or operations in the database. - - A query for the entity. - - - - The to which this navigation property belongs. - - An entry for the entity that owns this navigation property. - - - - Returns the equivalent generic object. - - The type of entity on which the member is declared. - The type of the property. - The equivalent generic object. - - - - Instances of this class are returned from the Reference method of - and allow operations such as loading to - be performed on the an entity's reference navigation properties. - - The type of the entity to which this property belongs. - The type of the property. - - - - Gets the property name. - - The property name. - - - - Gets or sets the current value of the navigation property. The current value is - the entity that the navigation property references. - - The current value. - - - - Loads the entity from the database. - Note that if the entity already exists in the context, then it will not overwritten with values from the database. - - - - - Asynchronously loads the entity from the database. - Note that if the entity already exists in the context, then it will not overwritten with values from the database. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A task that represents the asynchronous operation. - - - - - Asynchronously loads the entity from the database. - Note that if the entity already exists in the context, then it will not overwritten with values from the database. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - - - - - Gets or sets a value indicating whether the entity has been loaded from the database. - - - Loading the related entity from the database either using lazy-loading, as part of a query, or explicitly - with one of the Load methods will set the IsLoaded flag to true. - IsLoaded can be explicitly set to true to prevent the related entity from being lazy-loaded. - Note that explict loading using one of the Load methods will load the related entity from the database - regardless of whether or not IsLoaded is true. - When a related entity is detached the IsLoaded flag is reset to false indicating that the related entity is - no longer loaded. - - - true if the entity is loaded or the IsLoaded has been explicitly set to true; otherwise, false. - - - - - Returns the query that would be used to load this entity from the database. - The returned query can be modified using LINQ to perform filtering or operations in the database. - - A query for the entity. - - - - Returns a new instance of the non-generic class for - the navigation property represented by this object. - - The object representing the navigation property. - A non-generic version. - - - - The to which this navigation property belongs. - - An entry for the entity that owns this navigation property. - - - - Represents a SQL query for entities that is created from a - and is executed using the connection from that context. - Instances of this class are obtained from the instance for the - entity type. The query is not executed when this object is created; it is executed - each time it is enumerated, for example by using foreach. - SQL queries for non-entities are created using . - See for a generic version of this class. - - - - - Creates an instance of a when called from the constructor of a derived - type that will be used as a test double for . Methods and properties - that will be used by the test double must be implemented by the test double except AsNoTracking - and AsStreaming where the default implementation is a no-op. - - - - - Returns a new query where the results of the query will not be tracked by the associated - . - - A new query with NoTracking applied. - - - - Returns a new query that will stream the results instead of buffering. - - A new query with AsStreaming applied. - - - - - - - - - - - - - - - - Represents a SQL query for entities that is created from a - and is executed using the connection from that context. - Instances of this class are obtained from the instance for the - entity type. The query is not executed when this object is created; it is executed - each time it is enumerated, for example by using foreach. - SQL queries for non-entities are created using . - See for a non-generic version of this class. - - The type of entities returned by the query. - - - - Creates an instance of a when called from the constructor of a derived - type that will be used as a test double for . Methods and properties - that will be used by the test double must be implemented by the test double except AsNoTracking and - AsStreaming where the default implementation is a no-op. - - - - - Returns a new query where the entities returned will not be cached in the . - - A new query with NoTracking applied. - - - - Returns a new query that will stream the results instead of buffering. - - A new query with AsStreaming applied. - - - - - - - - - - - - - - - - Exception thrown by when it was expected that SaveChanges for an entity would - result in a database update but in fact no rows in the database were affected. This usually indicates - that the database has been concurrently updated such that a concurrency token that was expected to match - did not actually match. - Note that state entries referenced by this exception are not serialized due to security and accesses to - the state entries after serialization will return null. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The message. - - - - Initializes a new instance of the class. - - The message. - The inner exception. - - - - Initializes a new instance of the DbUpdateConcurrencyException class with the specified serialization information and context. - - The data necessary to serialize or deserialize an object. - Description of the source and destination of the specified serialized stream. - - - - Exception thrown by when the saving of changes to the database fails. - Note that state entries referenced by this exception are not serialized due to security and accesses to the - state entries after serialization will return null. - - - - - Gets objects that represents the entities that could not - be saved to the database. - - The entries representing the entities that could not be saved. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The message. - - - - Initializes a new instance of the class. - - The message. - The inner exception. - - - - Initializes a new instance of the DbUpdateException class with the specified serialization information and context. - - The data necessary to serialize or deserialize an object. - Description of the source and destination of the specified serialized stream. - - - - Sets the with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Loads or saves models from/into .edmx files at a specified location. - - - - - Initializes a new DefaultDbModelStore instance. - - The parent directory for the .edmx files. - - - - Gets the location of the .edmx files. - - - - - Loads a model from the store. - - The type of context representing the model. - The loaded metadata model. - - - - Retrieves an edmx XDocument version of the model from the store. - - The type of context representing the model. - The loaded XDocument edmx. - - - - Saves a model to the store. - - The type of context representing the model. - The metadata model to save. - - - - Gets the path of the .edmx file corresponding to the specified context type. - - A context type. - The .edmx file path. - - - - Validates the model store is valid. - The default implementation verifies that the .edmx file was last - written after the context assembly was last written. - - The type of context representing the model. - The path of the stored model. - Whether the edmx file should be invalidated. - - - - An that doesn't retry operations if they fail. - - - - - Returns false to indicate that will not retry the execution after a failure. - - - - - Executes the specified operation once. - - A delegate representing an executable operation that doesn't return any results. - - - - Executes the specified operation once and returns the result. - - - The return type of . - - - A delegate representing an executable operation that returns the result of type . - - The result from the operation. - - - - Executes the specified asynchronous operation once, without retrying on failure. - - A function that returns a started task. - - A cancellation token used to cancel the retry operation, but not operations that are already in flight - or that already completed successfully. - - - A task that will run to completion if the original task completes successfully. - - - - - Executes the specified asynchronous operation once, without retrying on failure. - - - The result type of the returned by . - - A function that returns a started task. - - A cancellation token used to cancel the retry operation, but not operations that are already in flight - or that already completed successfully. - - - A task that will run to completion if the original task completes successfully. - - - - - A default implementation of that uses the - underlying provider to get the manifest token. - Note that to avoid multiple queries, this implementation using caching based on the actual type of - instance, the property, - and the property. - - - - - - - - Event arguments passed to event handlers. - - - - - Returns a snapshot of the that is about to be locked. - Use the GetService methods on this object to get services that have been registered. - - - - - Call this method to add a instance to the Chain of - Responsibility of resolvers that are used to resolve dependencies needed by the Entity Framework. - - - Resolvers are asked to resolve dependencies in reverse order from which they are added. This means - that a resolver can be added to override resolution of a dependency that would already have been - resolved in a different way. - The only exception to this is that any dependency registered in the application's config file - will always be used in preference to using a dependency resolver added here, unless the - overrideConfigFile is set to true in which case the resolver added here will also override config - file settings. - - The resolver to add. - If true, then the resolver added will take precedence over settings in the config file. - - - - Call this method to add a instance to the Chain of Responsibility - of resolvers that are used to resolve dependencies needed by the Entity Framework. Unlike the AddDependencyResolver - method, this method puts the resolver at the bottom of the Chain of Responsibility such that it will only - be used to resolve a dependency that could not be resolved by any of the other resolvers. - - The resolver to add. - - - - Adds a wrapping resolver to the configuration that is about to be locked. A wrapping - resolver is a resolver that incepts a service would have been returned by the resolver - chain and wraps or replaces it with another service of the same type. - - The type of service to wrap or replace. - A delegate that takes the unwrapped service and key and returns the wrapped or replaced service. - - - - - - - - - - - - - - - - An implementation used for resolving - factories. - - - This class can be used by to aid in the resolving - of factories as a default service for the provider. - - The type of execution strategy that is resolved. - - - - Initializes a new instance of - - - The ADO.NET provider invariant name indicating the type of ADO.NET connection for which this execution strategy will be used. - - - A string that will be matched against the server name in the connection string. null will match anything. - - A function that returns a new instance of an execution strategy. - - - - If the given type is , then this resolver will attempt - to return the service to use, otherwise it will return null. When the given type is - Func{IExecutionStrategy}, then the key is expected to be an . - - The service type to resolve. - A key used to make a determination of the service to return. - - An , or null. - - - - - If the given type is , then this resolver will attempt - to return the service to use, otherwise it will return an empty enumeration. When the given type is - Func{IExecutionStrategy}, then the key is expected to be an . - - The service type to resolve. - A key used to make a determination of the service to return. - - An enumerable of , or an empty enumeration. - - - - - This interface is implemented by any object that can resolve a dependency, either directly - or through use of an external container. - - - The public services currently resolved using IDbDependencyResolver are documented here: - http://msdn.microsoft.com/en-us/data/jj680697 - - - - - Attempts to resolve a dependency for a given contract type and optionally a given key. - If the resolver cannot resolve the dependency then it must return null and not throw. This - allows resolvers to be used in a Chain of Responsibility pattern such that multiple resolvers - can be asked to resolve a dependency until one finally does. - - The interface or abstract base class that defines the dependency to be resolved. The returned object is expected to be an instance of this type. - Optionally, the key of the dependency to be resolved. This may be null for dependencies that are not differentiated by key. - The resolved dependency, which must be an instance of the given contract type, or null if the dependency could not be resolved. - - - - Attempts to resolve a dependencies for a given contract type and optionally a given key. - If the resolver cannot resolve the dependency then it must return an empty enumeration and - not throw. This method differs from in that it returns all registered - services for the given type and key combination. - - The interface or abstract base class that defines the dependency to be resolved. Every returned object is expected to be an instance of this type. - Optionally, the key of the dependency to be resolved. This may be null for dependencies that are not differentiated by key. - All services that resolve the dependency, which must be instances of the given contract type, or an empty enumeration if the dependency could not be resolved. - - - - Extension methods to call the method using - a generic type parameter and/or no name. - - - - - Calls passing the generic type of the method and the given - name as arguments. - - The contract type to resolve. - The resolver to use. - The key of the dependency to resolve. - The resolved dependency, or null if the resolver could not resolve it. - - - - Calls passing the generic type of the method as - the type argument and null for the name argument. - - The contract type to resolve. - The resolver to use. - The resolved dependency, or null if the resolver could not resolve it. - - - - Calls passing the given type argument and using - null for the name argument. - - The resolver to use. - The contract type to resolve. - The resolved dependency, or null if the resolver could not resolve it. - - - - Calls passing the generic type of the method and the given - name as arguments. - - The contract type to resolve. - The resolver to use. - The key of the dependency to resolve. - All resolved dependencies, or an if no services are resolved. - - - - Calls passing the generic type of the method as - the type argument and null for the name argument. - - The contract type to resolve. - The resolver to use. - All resolved dependencies, or an if no services are resolved. - - - - Calls passing the given type argument and using - null for the name argument. - - The resolver to use. - The contract type to resolve. - All resolved dependencies, or an if no services are resolved. - - - - Implements to resolve a dependency such that it always returns - the same instance. - - The type that defines the contract for the dependency that will be resolved. - - This class is immutable such that instances can be accessed by multiple threads at the same time. - - - - - Constructs a new resolver that will return the given instance for the contract type - regardless of the key passed to the Get method. - - The instance to return. - - - - Constructs a new resolver that will return the given instance for the contract type - if the given key matches exactly the key passed to the Get method. - - The instance to return. - Optionally, the key of the dependency to be resolved. This may be null for dependencies that are not differentiated by key. - - - - Constructs a new resolver that will return the given instance for the contract type - if the given key matches the key passed to the Get method based on the given predicate. - - The instance to return. - A predicate that takes the key object and returns true if and only if it matches. - - - - - - - - - - An implementation used for resolving - factories. - - - - - Initializes a new instance of - - A function that returns a new instance of a transaction handler. - - The ADO.NET provider invariant name indicating the type of ADO.NET connection for which the transaction handler will be used. - null will match anything. - - - A string that will be matched against the server name in the connection string. null will match anything. - - - - - If the given type is , then this method will attempt - to return the service to use, otherwise it will return null. When the given type is - , then the key is expected to be a . - - The service type to resolve. - A key used to make a determination of the service to return. - - An , or null. - - - - - If the given type is , then this resolver will attempt - to return the service to use, otherwise it will return an empty enumeration. When the given type is - , then the key is expected to be an . - - The service type to resolve. - A key used to make a determination of the service to return. - - An enumerable of , or an empty enumeration. - - - - - - - - - - - Provides utility methods for reading from an App.config or Web.config file. - - - - - Initializes a new instance of . - - The configuration to read from. - - - - Gets the specified provider services from the configuration. - - The invariant name of the provider services. - The provider services type name, or null if not found. - - - - Used for design-time scenarios where the user's code needs to be executed inside - of an isolated, runtime-like . - - Instances of this class should be created inside of the guest domain. - Handlers should be created inside of the host domain. To invoke operations, - create instances of the nested classes inside - - - - - Initializes a new instance of the class. Do this inside of the guest - domain. - - The path for the assembly containing the user's code. - The parameter is not used. - - - - Used to get the assembly-qualified name of the DbProviderServices type for the - specified provider invariant name. - - - - - Represents an operation. - - - - - Initializes a new instance of the class. - - An object to handle callbacks during the operation. - - - - Executes an action passing exceptions to the handler. - - The action to execute. - - - - Executes an action passing the result or exceptions to the handler. - - The result type. - The action to execute. - - - - Executes an action passing results or exceptions to the handler. - - The type of results. - The action to execute. - - - - Base handler type. Handlers aren't required to use this exact type. Only the - namespace, name, and member signatures need to be the same. This also applies to - handler contracts types - - - - - Indicates whether the specified contract is implemented by this handler. - - The full name of the contract interface. - True if the contract is implemented, otherwise false. - - - - Used to handle reported design-time activity. - - - - - Invoked when an error is reported. - - The message. - - - - Invoked when a warning is reported. - - The message. - - - - Invoked when information is reported. - - The message. - - - - Invoked when verbose information is reported. - - The message. - - - - A contract handlers can use to accept a single result. - - - - - - Sets the result. - - The result. - - - - Invoked when an error occurs. - - The exception type. - The error message. - The stack trace. - true if the error was handled; otherwise, false. - - - - Used to handle reported design-time activity. - - - - - Initializes a new instance of the class. - - A callback for . - A callback for . - A callback for . - A callback for . - - - - Invoked when an error is reported. - - The message. - - - - Invoked when a warning is reported. - - The message. - - - - Invoked when information is reported. - - The message. - - - - Invoked when verbose information is reported. - - The message. - - - - Used with to handle operation results. - - - - - Gets a value indicating whether a result is available. - - A value indicating whether a result is available. - - - - Gets the result. - - The result. - - - - Gets the type of the exception if any. - - The exception type. - - - - Gets the error message if any. - - The error message. - - - - Get the error stack trace if any. - - The stack trace. - - - - Invoked when a result is available. - - The result. - - - - Invoked when an error occurs. - - The exception type. - The error message. - The stack trace. - - - - Represents an entity used to store metadata about an EDM in the database. - - - - - Gets or sets the ID of the metadata entity, which is currently always 1. - - The id. - - - - Gets or sets the model hash which is used to check whether the model has - changed since the database was created from it. - - The model hash. - - - - Attempts to get the model hash calculated by Code First for the given context. - This method will return null if the context is not being used in Code First mode. - - The context. - The hash string. - - - - Utility class for reading a metadata model from .edmx. - - - - - Reads a metadata model from .edmx. - - XML reader for the .edmx - Default database schema used by the model. - The loaded metadata model. - - - - Contains methods used to access the Entity Data Model created by Code First in the EDMX form. - These methods are typically used for debugging when there is a need to look at the model that - Code First creates internally. - - - - - Uses Code First with the given context and writes the resulting Entity Data Model to the given - writer in EDMX form. This method can only be used with context instances that use Code First - and create the model internally. The method cannot be used for contexts created using Database - First or Model First, for contexts created using a pre-existing , or - for contexts created using a pre-existing . - - The context. - The writer. - - - - Writes the Entity Data Model represented by the given to the - given writer in EDMX form. - - An object representing the EDM. - The writer. - - - - A key used for resolving . It consists of the ADO.NET provider invariant name - and the database server name as specified in the connection string. - - - - - Initializes a new instance of - - - The ADO.NET provider invariant name indicating the type of ADO.NET connection for which this execution strategy will be used. - - A string that will be matched against the server name in the connection string. - - - - The ADO.NET provider invariant name indicating the type of ADO.NET connection for which this execution strategy will be used. - - - - - A string that will be matched against the server name in the connection string. - - - - - - - - - - - Asynchronous version of the interface that allows elements to be retrieved asynchronously. - This interface is used to interact with Entity Framework queries and shouldn't be implemented by custom classes. - - - - - Gets an enumerator that can be used to asynchronously enumerate the sequence. - - Enumerator for asynchronous enumeration over the sequence. - - - - Asynchronous version of the interface that allows elements of the enumerable sequence to be retrieved asynchronously. - This interface is used to interact with Entity Framework queries and shouldn't be implemented by custom classes. - - The type of objects to enumerate. - - - - Gets an enumerator that can be used to asynchronously enumerate the sequence. - - Enumerator for asynchronous enumeration over the sequence. - - - - Asynchronous version of the interface that allows elements to be retrieved asynchronously. - This interface is used to interact with Entity Framework queries and shouldn't be implemented by custom classes. - - - - - Advances the enumerator to the next element in the sequence, returning the result asynchronously. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the sequence. - - - - - Gets the current element in the iteration. - - - - - Asynchronous version of the interface that allows elements to be retrieved asynchronously. - This interface is used to interact with Entity Framework queries and shouldn't be implemented by custom classes. - - The type of objects to enumerate. - - - - Gets the current element in the iteration. - - - - - Defines methods to create and asynchronously execute queries that are described by an - object. - This interface is used to interact with Entity Framework queries and shouldn't be implemented by custom classes. - - - - - Asynchronously executes the query represented by a specified expression tree. - - An expression tree that represents a LINQ query. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the value that results from executing the specified query. - - - - - Asynchronously executes the strongly-typed query represented by a specified expression tree. - - The type of the value that results from executing the query. - An expression tree that represents a LINQ query. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the value that results from executing the specified query. - - - - - Implementations of this interface are used to create DbConnection objects for - a type of database server based on a given database name. - An Instance is set on the class to - cause all DbContexts created with no connection information or just a database - name or connection string to use a certain type of database server by default. - Two implementations of this interface are provided: - is used to create connections to Microsoft SQL Server, including EXPRESS editions. - is used to create connections to Microsoft SQL - Server Compact Editions. - Other implementations for other database servers can be added as needed. - Note that implementations should be thread safe or immutable since they may - be accessed by multiple threads at the same time. - - - - - Creates a connection based on the given database name or connection string. - - The database name or connection string. - An initialized DbConnection. - - - - A factory for creating derived instances. Implement this - interface to enable design-time services for context types that do not have a - public default constructor. - At design-time, derived instances can be created in order to enable specific - design-time experiences such as model rendering, DDL generation etc. To enable design-time instantiation - for derived types that do not have a public, default constructor, implement - this interface. Design-time services will auto-discover implementations of this interface that are in the - same assembly as the derived type. - - The type of the context. - - - - Creates a new instance of a derived type. - - An instance of TContext - - - - A strategy that is used to execute a command or query against the database, possibly with logic to retry when a failure occurs. - - - - - Indicates whether this might retry the execution after a failure. - - - - - Executes the specified operation. - - A delegate representing an executable operation that doesn't return any results. - - - - Executes the specified operation and returns the result. - - - The return type of . - - - A delegate representing an executable operation that returns the result of type . - - The result from the operation. - - - - Executes the specified asynchronous operation. - - A function that returns a started task. - - A cancellation token used to cancel the retry operation, but not operations that are already in flight - or that already completed successfully. - - - A task that will run to completion if the original task completes successfully (either the - first time or after retrying transient failures). If the task fails with a non-transient error or - the retry limit is reached, the returned task will become faulted and the exception must be observed. - - - - - Executes the specified asynchronous operation and returns the result. - - - The result type of the returned by . - - - A function that returns a started task of type . - - - A cancellation token used to cancel the retry operation, but not operations that are already in flight - or that already completed successfully. - - - A task that will run to completion if the original task completes successfully (either the - first time or after retrying transient failures). If the task fails with a non-transient error or - the retry limit is reached, the returned task will become faulted and the exception must be observed. - - - - - Represents a key value that uniquely identifies an Entity Framework model that has been loaded into memory. - - - - Determines whether the current cached model key is equal to the specified cached model key. - true if the current cached model key is equal to the specified cached model key; otherwise, false. - The cached model key to compare to the current cached model key. - - - Returns the hash function for this cached model key. - The hash function for this cached model key. - - - - Implement this interface on your context to use custom logic to calculate the key used to lookup an already created model in the cache. - This interface allows you to have a single context type that can be used with different models in the same AppDomain, - or multiple context types that use the same model. - - - - Gets the cached key associated with the provider. - The cached key associated with the provider. - - - - A service for obtaining the correct from a given - . - - - On .NET 4.5 the provider is publicly accessible from the connection. On .NET 4 the - default implementation of this service uses some heuristics to find the matching - provider. If these fail then a new implementation of this service can be registered - on to provide an appropriate resolution. - - - - - Returns the for the given connection. - - The connection. - The provider factory for the connection. - - - - A service for getting a provider manifest token given a connection. - The class is used by default and makes use of the - underlying provider to get the token which often involves opening the connection. - A different implementation can be used instead by adding an - to that may use any information in the connection to return - the token. For example, if the connection is known to point to a SQL Server 2008 database then - "2008" can be returned without opening the connection. - - - - - Returns the manifest token to use for the given connection. - - The connection for which a manifest token is required. - The manifest token to use. - - - - Implement this interface to allow custom annotations represented by instances to be - serialized to and from the EDMX XML. Usually a serializer instance is set using the - method. - - - - - Serializes the given annotation value into a string for storage in the EDMX XML. - - The name of the annotation that is being serialized. - The value to serialize. - The serialized value. - - - - Deserializes the given string back into the expected annotation value. - - The name of the annotation that is being deserialized. - The string to deserialize. - The deserialized annotation value. - - - - This convention causes DbModelBuilder to include metadata about the model - when it builds the model. When creates a model by convention it will - add this convention to the list of those used by the DbModelBuilder. This will then result in - model metadata being written to the database if the DbContext is used to create the database. - This can then be used as a quick check to see if the model has changed since the last time it was - used against the database. - This convention can be removed from the conventions by overriding - the OnModelCreating method on a derived DbContext class. - - - - - Represents contextual information associated with calls to - implementations. - - - Instances of this class are publicly immutable for contextual information. To add - contextual information use one of the With... or As... methods to create a new - interception context containing the new information. - - - - - Constructs a new with no state. - - - - - Creates a new by copying immutable state from the given - interception context. Also see - - The context from which to copy state. - - - - Creates a new that contains all the contextual information in this - interception context together with the flag set to true. - - A new interception context associated with the async flag set. - - - - The that will be used or has been used to start a transaction. - - - - - Creates a new that contains all the contextual information in this - interception context together with the given . - - The isolation level to associate. - A new interception context associated with the given isolation level. - - - - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - - - - - - - - - - - - - This is the default log formatter used when some is set onto the - property. A different formatter can be used by creating a class that inherits from this class and overrides - some or all methods to change behavior. - - - To set the new formatter create a code-based configuration for EF using and then - set the formatter class to use with . - Note that setting the type of formatter to use with this method does change the way command are - logged when is used. It is still necessary to set a - onto before any commands will be logged. - For more low-level control over logging/interception see and - . - Interceptors can also be registered in the config file of the application. - See http://go.microsoft.com/fwlink/?LinkId=260883 for more information about Entity Framework configuration. - - - - - Creates a formatter that will not filter by any and will instead log every command - from any context and also commands that do not originate from a context. - - - This constructor is not used when a delegate is set on . Instead it can be - used by setting the formatter directly using . - - The delegate to which output will be sent. - - - - Creates a formatter that will only log commands the come from the given instance. - - - This constructor must be called by a class that inherits from this class to override the behavior - of . - - - The context for which commands should be logged. Pass null to log every command - from any context and also commands that do not originate from a context. - - The delegate to which output will be sent. - - - - The context for which commands are being logged, or null if commands from all contexts are - being logged. - - - - - Writes the given string to the underlying write delegate. - - The string to write. - - - - This property is obsolete. Using it can result in logging incorrect execution times. Call - instead. - - - - - The stopwatch used to time executions. This stopwatch is started at the end of - , , and - methods and is stopped at the beginning of the , , - and methods. If these methods are overridden and the stopwatch is being used - then the overrides should either call the base method or start/stop the stopwatch themselves. - - The interception context for which the stopwatch will be obtained. - The stopwatch. - - - - This method is called before a call to or - one of its async counterparts is made. - The default implementation calls and starts the stopwatch returned from - . - - The command being executed. - Contextual information associated with the call. - - - - This method is called after a call to or - one of its async counterparts is made. - The default implementation stopsthe stopwatch returned from and calls - . - - The command being executed. - Contextual information associated with the call. - - - - This method is called before a call to or - one of its async counterparts is made. - The default implementation calls and starts the stopwatch returned from - . - - The command being executed. - Contextual information associated with the call. - - - - This method is called after a call to or - one of its async counterparts is made. - The default implementation stopsthe stopwatch returned from and calls - . - - The command being executed. - Contextual information associated with the call. - - - - This method is called before a call to or - one of its async counterparts is made. - The default implementation calls and starts the stopwatch returned from - . - - The command being executed. - Contextual information associated with the call. - - - - This method is called after a call to or - one of its async counterparts is made. - The default implementation stopsthe stopwatch returned from and calls - . - - The command being executed. - Contextual information associated with the call. - - - - Called whenever a command is about to be executed. The default implementation of this method - filters by set into , if any, and then calls - . This method would typically only be overridden to change the - context filtering behavior. - - The type of the operation's results. - The command that will be executed. - Contextual information associated with the command. - - - - Called whenever a command has completed executing. The default implementation of this method - filters by set into , if any, and then calls - . This method would typically only be overridden to change the context - filtering behavior. - - The type of the operation's results. - The command that was executed. - Contextual information associated with the command. - - - - Called to log a command that is about to be executed. Override this method to change how the - command is logged to . - - The type of the operation's results. - The command to be logged. - Contextual information associated with the command. - - - - Called by to log each parameter. This method can be called from an overridden - implementation of to log parameters, and/or can be overridden to - change the way that parameters are logged to . - - The type of the operation's results. - The command being logged. - Contextual information associated with the command. - The parameter to log. - - - - Called to log the result of executing a command. Override this method to change how results are - logged to . - - The type of the operation's results. - The command being logged. - Contextual information associated with the command. - - - - Does not write to log unless overridden. - - The connection beginning the transaction. - Contextual information associated with the call. - - - - Called after is invoked. - The default implementation of this method filters by set into - , if any, and then logs the event. - - The connection that began the transaction. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection being opened. - Contextual information associated with the call. - - - - Called after or its async counterpart is invoked. - The default implementation of this method filters by set into - , if any, and then logs the event. - - The connection that was opened. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection being closed. - Contextual information associated with the call. - - - - Called after is invoked. - The default implementation of this method filters by set into - , if any, and then logs the event. - - The connection that was closed. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Called before is invoked. - The default implementation of this method filters by set into - , if any, and then logs the event. - - The connection being disposed. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection that was disposed. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The connection. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The transaction. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The transaction. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - The transaction. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The transaction. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The transaction being committed. - Contextual information associated with the call. - - - - This method is called after is invoked. - The default implementation of this method filters by set into - , if any, and then logs the event. - - The transaction that was committed. - Contextual information associated with the call. - - - - This method is called before is invoked. - The default implementation of this method filters by set into - , if any, and then logs the event. - - The transaction being disposed. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The transaction that was disposed. - Contextual information associated with the call. - - - - Does not write to log unless overridden. - - The transaction being rolled back. - Contextual information associated with the call. - - - - This method is called after is invoked. - The default implementation of this method filters by set into - , if any, and then logs the event. - - The transaction that was rolled back. - Contextual information associated with the call. - - - - - - - - - - - - - - - - A simple logger for logging SQL and other database operations to the console or a file. - A logger can be registered in code or in the application's web.config /app.config file. - - - - - Creates a new logger that will send log output to the console. - - - - - Creates a new logger that will send log output to a file. If the file already exists then - it is overwritten. - - A path to the file to which log output will be written. - - - - Creates a new logger that will send log output to a file. - - A path to the file to which log output will be written. - True to append data to the file if it exists; false to overwrite the file. - - - - Stops logging and closes the underlying file if output is being written to a file. - - - - - Stops logging and closes the underlying file if output is being written to a file. - - - True to release both managed and unmanaged resources; False to release only unmanaged resources. - - - - - Starts logging. This method is a no-op if logging is already started. - - - - - Stops logging. This method is a no-op if logging is not started. - - - - - Called to start logging during Entity Framework initialization when this logger is registered. - as an . - - Arguments to the event that this interceptor mirrors. - Contextual information about the event. - - - - Used for dispatching operations to a such that any - registered on will be notified before and after the - operation executes. - Instances of this class are obtained through the fluent API. - - - This class is used internally by Entity Framework when executing commands. It is provided publicly so that - code that runs outside of the core EF assemblies can opt-in to command interception/tracing. This is - typically done by EF providers that are executing commands on behalf of EF. - - - - - Sends and - to any - registered on before/after making a - call to . - - - Note that the result of executing the command is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The command on which the operation will be executed. - Optional information about the context of the call being made. - The result of the operation, which may have been modified by interceptors. - - - - Sends and - to any - registered on before/after making a - call to . - - - Note that the result of executing the command is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The command on which the operation will be executed. - Optional information about the context of the call being made. - The result of the operation, which may have been modified by interceptors. - - - - Sends and - to any - registered on before/after making a - call to . - - - Note that the result of executing the command is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The command on which the operation will be executed. - Optional information about the context of the call being made. - The result of the operation, which may have been modified by interceptors. - - - - Sends and - to any - registered on before/after making a - call to . - - - Note that the result of executing the command is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The command on which the operation will be executed. - Optional information about the context of the call being made. - The cancellation token for the asynchronous operation. - The result of the operation, which may have been modified by interceptors. - - - - Sends and - to any - registered on before/after making a - call to . - - - Note that the result of executing the command is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The command on which the operation will be executed. - Optional information about the context of the call being made. - The cancellation token for the asynchronous operation. - The result of the operation, which may have been modified by interceptors. - - - - Sends and - to any - registered on before/after making a - call to . - - - Note that the result of executing the command is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The command on which the operation will be executed. - Optional information about the context of the call being made. - The cancellation token for the asynchronous operation. - The result of the operation, which may have been modified by interceptors. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Represents contextual information associated with calls into - implementations. - - - An instance of this class is passed to the dispatch methods of - and does not contain mutable information such as the result of the operation. This mutable information - is obtained from the that is passed to the interceptors. - Instances of this class are publicly immutable. To add contextual information use one of the - With... or As... methods to create a new interception context containing the new information. - - - - - Constructs a new with no state. - - - - - Creates a new by copying state from the given - interception context. Also see - - The context from which to copy state. - - - - The that will be used or has been used to execute the command with a - . This property is only used for - and its async counterparts. - - - - - Creates a new that contains all the contextual information in this - interception context together with the given . - - The command behavior to associate. - A new interception context associated with the given command behavior. - - - - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context the flag set to true. - - A new interception context associated with the async flag set. - - - - - - - - - - - - - - - - Represents contextual information associated with calls into - implementations including the result of the operation. - - The type of the operation's results. - - Instances of this class are publicly immutable for contextual information. To add - contextual information use one of the With... or As... methods to create a new - interception context containing the new information. - - - - - Constructs a new with no state. - - - - - Creates a new by copying immutable state from the given - interception context. Also see - - The context from which to copy state. - - - - If execution of the operation completes without throwing, then this property will contain - the result of the operation. If the operation was suppressed or did not fail, then this property - will always contain the default value for the generic type. - - - When an operation completes without throwing both this property and the - property are set. However, the property can be set or changed by interceptors, - while this property will always represent the actual result returned by the operation, if any. - - - - - If this property is set before the operation has executed, then execution of the operation will - be suppressed and the set result will be returned instead. Otherwise, if the operation succeeds, then - this property will be set to the returned result. In either case, interceptors that run - after the operation can change this property to change the result that will be returned. - - - When an operation completes without throwing both this property and the - property are set. However, this property can be set or changed by interceptors, while the - property will always represent the actual result returned by the - operation, if any. - - - - - When true, this flag indicates that execution of the operation has been suppressed by - one of the interceptors. This can be done before the operation has executed by calling - , by setting an to be thrown, or - by setting the operation result using . - - - - - Gets or sets a value containing arbitrary user-specified state information associated with the operation. - - - - - Gets a value containing arbitrary user-specified state information associated with the operation. - - A key used to identify the user state. - The user state set, or null if none was found for the given key. - - - - Sets a value containing arbitrary user-specified state information associated with the operation. - - A key used to identify the user state. - The state to set. - - - - Prevents the operation from being executed if called before the operation has executed. - - - Thrown if this method is called after the operation has already executed. - - - - - If execution of the operation fails, then this property will contain the exception that was - thrown. If the operation was suppressed or did not fail, then this property will always be null. - - - When an operation fails both this property and the property are set - to the exception that was thrown. However, the property can be set or - changed by interceptors, while this property will always represent the original exception thrown. - - - - - If this property is set before the operation has executed, then execution of the operation will - be suppressed and the set exception will be thrown instead. Otherwise, if the operation fails, then - this property will be set to the exception that was thrown. In either case, interceptors that run - after the operation can change this property to change the exception that will be thrown, or set this - property to null to cause no exception to be thrown at all. - - - When an operation fails both this property and the property are set - to the exception that was thrown. However, the this property can be set or changed by - interceptors, while the property will always represent - the original exception thrown. - - - - - Set to the status of the after an async operation has finished. Not used for - synchronous operations. - - - - - Creates a new that contains all the contextual information in this - interception context together with the flag set to true. - - A new interception context associated with the async flag set. - - - - Creates a new that contains all the contextual information in this - interception context together with the given . - - The command behavior to associate. - A new interception context associated with the given command behavior. - - - - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - - - - - - - - - - - - - Base class that implements . This class is a convenience for - use when only one or two methods of the interface actually need to have any implementation. - - - - - - - - - - - - - - - - - - - - - - - Represents contextual information associated with calls into - implementations. - - - Instances of this class are publicly immutable for contextual information. To add - contextual information use one of the With... or As... methods to create a new - interception context containing the new information. - - - - - Constructs a new with no state. - - - - - Creates a new by copying state from the given - interception context. Also see - - The context from which to copy state. - - - - The original tree created by Entity Framework. Interceptors can change the - property to change the tree that will be used, but the - will always be the tree created by Entity Framework. - - - - - The command tree that will be used by Entity Framework. This starts as the tree contained in the - the property but can be set by interceptors to change - the tree that will be used by Entity Framework. - - - - - Gets or sets a value containing arbitrary user-specified state information associated with the operation. - - - - - Gets a value containing arbitrary user-specified state information associated with the operation. - - A key used to identify the user state. - The user state set, or null if none was found for the given key. - - - - Sets a value containing arbitrary user-specified state information associated with the operation. - - A key used to identify the user state. - The state to set. - - - - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context the flag set to true. - - A new interception context associated with the async flag set. - - - - - - - - - - - - - - - - Represents contextual information associated with calls into - implementations. - - - Instances of this class are publicly immutable for contextual information. To add - contextual information use one of the With... or As... methods to create a new - interception context containing the new information. - - - - - Constructs a new with no state. - - - - - Creates a new by copying state from the given - interception context. Also see - - The context from which to copy state. - - - - - - - Creates a new that contains all the contextual information in - this interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in - this interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in - this interception context the flag set to true. - - A new interception context associated with the async flag set. - - - - - - - - - - - - - - - - Used for dispatching operations to a such that any - registered on will be notified before and after the - operation executes. - Instances of this class are obtained through the fluent API. - - - This class is used internally by Entity Framework when interacting with . - It is provided publicly so that code that runs outside of the core EF assemblies can opt-in to command - interception/tracing. This is typically done by EF providers that are executing commands on behalf of EF. - - - - - Sends and - to any - registered on before/after making a - call to . - - - Note that the result of executing the command is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The connection on which the operation will be executed. - Optional information about the context of the call being made. - The result of the operation, which may have been modified by interceptors. - - - - Sends and - to any - registered on before/after making a - call to . - - The connection on which the operation will be executed. - Optional information about the context of the call being made. - - - - Sends and - to any - registered on before/after making a - call to . - - The connection on which the operation will be executed. - Optional information about the context of the call being made. - - - - Sends and - to any - registered on before/after - getting . - - - Note that the value of the property is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The connection on which the operation will be executed. - Optional information about the context of the call being made. - The result of the operation, which may have been modified by interceptors. - - - - Sends and - to any - registered on before/after - setting . - - The connection on which the operation will be executed. - Information about the context of the call being made, including the value to be set. - - - - Sends and - to any - registered on before/after - getting . - - - Note that the value of the property is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The connection on which the operation will be executed. - Optional information about the context of the call being made. - The result of the operation, which may have been modified by interceptors. - - - - Sends and - to any - registered on before/after - getting . - - - Note that the value of the property is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The connection on which the operation will be executed. - Optional information about the context of the call being made. - The result of the operation, which may have been modified by interceptors. - - - - Sends and - to any - registered on before/after - getting . - - - Note that the value of the property is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The connection on which the operation will be executed. - Optional information about the context of the call being made. - The result of the operation, which may have been modified by interceptors. - - - - Sends and - to any - registered on before/after making a - call to . - - The connection on which the operation will be executed. - Optional information about the context of the call being made. - - - - Sends and - to any - registered on before/after making a - call to . - - The connection on which the operation will be executed. - Optional information about the context of the call being made. - - - - Sends and - to any - registered on before/after making a - call to . - - The connection on which the operation will be executed. - Optional information about the context of the call being made. - The cancellation token. - A task that represents the asynchronous operation. - - - - Sends and - to any - registered on before/after - getting . - - - Note that the value of the property is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The connection on which the operation will be executed. - Optional information about the context of the call being made. - The result of the operation, which may have been modified by interceptors. - - - - Sends and - to any - registered on before/after - getting . - - - Note that the value of the property is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The connection on which the operation will be executed. - Optional information about the context of the call being made. - The result of the operation, which may have been modified by interceptors. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Represents contextual information associated with calls to that don't return any results. - - - - - Constructs a new with no state. - - - - - Creates a new by copying immutable state from the given - interception context. Also see - - The context from which to copy state. - - - - Creates a new that contains all the contextual information in this - interception context together with the flag set to true. - - A new interception context associated with the async flag set. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - - - - - - - - - - - - - - - - Represents contextual information associated with calls to with return type . - - The return type of the target method. - - - - Constructs a new with no state. - - - - - Creates a new by copying immutable state from the given - interception context. Also see - - The context from which to copy state. - - - - Creates a new that contains all the contextual information in this - interception context together with the flag set to true. - - A new interception context associated with the async flag set. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - - - - - - - - - - - - - - - - Represents contextual information associated with calls to property setters of type on a . - - The type of the target property. - - - - Constructs a new with no state. - - - - - Creates a new by copying immutable state from the given - interception context. Also see - - The context from which to copy state. - - - - Creates a new that contains all the contextual information in this - interception context together with the given property value. - - The value that will be assigned to the target property. - A new interception context associated with the given property value. - - - - - - - Creates a new that contains all the contextual information in this - interception context together with the flag set to true. - - A new interception context associated with the async flag set. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - - - - - - - - - - - - - Provides access to all dispatchers through the fluent API. - - - - - Provides methods for dispatching to interceptors for - interception of methods on . - - - - - Provides methods for dispatching to interceptors for - interception of methods on . - - - - - Provides methods for dispatching to interceptors for - interception of methods on . - - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - This is the registration point for interceptors. Interceptors - receive notifications when EF performs certain operations such as executing commands against - the database. For example, see . - - - - - Registers a new to receive notifications. Note that the interceptor - must implement some interface that extends from to be useful. - - The interceptor to add. - - - - Removes a registered so that it will no longer receive notifications. - If the given interceptor is not registered, then this is a no-op. - - The interceptor to remove. - - - - This is the entry point for dispatching to interceptors. This is usually only used internally by - Entity Framework but it is provided publicly so that other code can make sure that registered - interceptors are called when operations are performed on behalf of EF. For example, EF providers - a may make use of this when executing commands. - - - - - Represents contextual information associated with calls into - implementations. - - - Note that specific types/operations that can be intercepted may use a more specific - interception context derived from this class. For example, if SQL is being executed by - a , then the DbContext will be contained in the - instance that is passed to the methods - of . - Instances of this class are publicly immutable for contextual information. To add - contextual information use one of the With... or As... methods to create a new - interception context containing the new information. - - - - - Constructs a new with no state. - - - - - Creates a new by copying state from the given - interception context. See - - The context from which to copy state. - - - - Gets all the instances associated with this interception context. - - - This list usually contains zero or one items. However, it can contain more than one item if - a single has been used to construct multiple - instances. - - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Gets all the instances associated with this interception context. - - - This list usually contains zero or one items. However, it can contain more than one item when - EF has created a new for use in database creation and initialization, or - if a single is used with multiple . - - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - True if the operation is being executed asynchronously, otherwise false. - - - - - Creates a new that contains all the contextual information in this - interception context the flag set to true. - - A new interception context associated with the async flag set. - - - - Call this method when creating a copy of an interception context in order to add new state - to it. Using this method instead of calling the constructor directly ensures virtual dispatch - so that the new type will have the same type (and any specialized state) as the context that - is being cloned. - - A new context with all state copied. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Used for dispatching operations to a such that any - registered on will be notified before and after the - operation executes. - Instances of this class are obtained through the fluent API. - - - This class is used internally by Entity Framework when interacting with . - It is provided publicly so that code that runs outside of the core EF assemblies can opt-in to command - interception/tracing. This is typically done by EF providers that are executing commands on behalf of EF. - - - - - Sends and - to any - registered on before/after - getting . - - - Note that the value of the property is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The transaction on which the operation will be executed. - Optional information about the context of the call being made. - The result of the operation, which may have been modified by interceptors. - - - - Sends and - to any - registered on before/after - getting . - - - Note that the value of the property is returned by this method. The result is not available - in the interception context passed into this method since the interception context is cloned before - being passed to interceptors. - - The transaction on which the operation will be executed. - Optional information about the context of the call being made. - The result of the operation, which may have been modified by interceptors. - - - - Sends and - to any - registered on before/after making a - call to . - - The transaction on which the operation will be executed. - Optional information about the context of the call being made. - - - - Sends and - to any - registered on before/after making a - call to . - - The transaction on which the operation will be executed. - Optional information about the context of the call being made. - - - - Sends and - to any - registered on before/after making a - call to . - - The transaction on which the operation will be executed. - Optional information about the context of the call being made. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Represents contextual information associated with calls to that don't return any results. - - - - - Constructs a new with no state. - - - - - Creates a new by copying immutable state from the given - interception context. Also see - - The context from which to copy state. - - - - The connection on which the transaction was started - - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The connection on which the transaction was started. - A new interception context that also contains the connection on which the transaction was started. - - - - Creates a new that contains all the contextual information in this - interception context together with the flag set to true. - - A new interception context associated with the async flag set. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - - - - - - - - - - - - - - - - Represents contextual information associated with calls to with return type . - - The return type of the target method. - - - - Constructs a new with no state. - - - - - Creates a new by copying immutable state from the given - interception context. Also see - - The context from which to copy state. - - - - Creates a new that contains all the contextual information in this - interception context together with the flag set to true. - - A new interception context associated with the async flag set. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - - - - - - - - - - - - - - - - Represents contextual information associated with calls to - implementations. - - - Instances of this class are publicly immutable for contextual information. To add - contextual information use one of the With... or As... methods to create a new - interception context containing the new information. - - - - - Constructs a new with no state. - - - - - Creates a new by copying immutable state from the given - interception context. Also see - - The context from which to copy state. - - - - Creates a new that contains all the contextual information in this - interception context together with the flag set to true. - - A new interception context associated with the async flag set. - - - - The that will be used or has been used to enlist a connection. - - - - - Creates a new that contains all the contextual information in this - interception context together with the given . - - The transaction to be used in the invocation. - A new interception context associated with the given isolation level. - - - - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - - - - - - - - - - - - - An object that implements this interface can be registered with to - receive notifications when Entity Framework executes commands. - - - Interceptors can also be registered in the config file of the application. - See http://go.microsoft.com/fwlink/?LinkId=260883 for more information about Entity Framework configuration. - - - - - This method is called before a call to or - one of its async counterparts is made. - - The command being executed. - Contextual information associated with the call. - - - - This method is called after a call to or - one of its async counterparts is made. The result used by Entity Framework can be changed by setting - . - - - For async operations this method is not called until after the async task has completed - or failed. - - The command being executed. - Contextual information associated with the call. - - - - This method is called before a call to or - one of its async counterparts is made. - - The command being executed. - Contextual information associated with the call. - - - - This method is called after a call to or - one of its async counterparts is made. The result used by Entity Framework can be changed by setting - . - - - For async operations this method is not called until after the async task has completed - or failed. - - The command being executed. - Contextual information associated with the call. - - - - This method is called before a call to or - one of its async counterparts is made. - - The command being executed. - Contextual information associated with the call. - - - - This method is called after a call to or - one of its async counterparts is made. The result used by Entity Framework can be changed by setting - . - - - For async operations this method is not called until after the async task has completed - or failed. - - The command being executed. - Contextual information associated with the call. - - - - An object that implements this interface can be registered with to - receive notifications when Entity Framework creates command trees. - - - Interceptors can also be registered in the config file of the application. - See http://go.microsoft.com/fwlink/?LinkId=260883 for more information about Entity Framework configuration. - - - - - This method is called after a new has been created. - The tree that is used after interception can be changed by setting - while intercepting. - - - Command trees are created for both queries and insert/update/delete commands. However, query - command trees are cached by model which means that command tree creation only happens the - first time a query is executed and this notification will only happen at that time - - Contextual information associated with the call. - - - - An object that implements this interface can be registered with to - receive notifications when Entity Framework loads the application's . - - - Interceptors can also be registered in the config file of the application. - See http://go.microsoft.com/fwlink/?LinkId=260883 for more information about Entity Framework configuration. - - - - - Occurs during EF initialization after the has been constructed but just before - it is locked ready for use. Use this event to inspect and/or override services that have been - registered before the configuration is locked. Note that an interceptor of this type should be used carefully - since it may prevent tooling from discovering the same configuration that is used at runtime. - - - Handlers can only be added before EF starts to use the configuration and so handlers should - generally be added as part of application initialization. Do not access the DbConfiguration - static methods inside the handler; instead use the members of - to get current services and/or add overrides. - - Arguments to the event that this interceptor mirrors. - Contextual information about the event. - - - - An object that implements this interface can be registered with to - receive notifications when Entity Framework performs operations on a . - - - Interceptors can also be registered in the config file of the application. - See http://go.microsoft.com/fwlink/?LinkId=260883 for more information about Entity Framework configuration. - - - - - Called before is invoked. - - The connection beginning the transaction. - Contextual information associated with the call. - - - - Called after is invoked. - The transaction used by Entity Framework can be changed by setting - . - - The connection that began the transaction. - Contextual information associated with the call. - - - - Called before is invoked. - - The connection being closed. - Contextual information associated with the call. - - - - Called after is invoked. - - The connection that was closed. - Contextual information associated with the call. - - - - Called before is retrieved. - - The connection. - Contextual information associated with the call. - - - - Called after is retrieved. - - The connection. - Contextual information associated with the call. - - - - Called before is set. - - The connection. - Contextual information associated with the call. - - - - Called after is set. - - The connection. - Contextual information associated with the call. - - - - Called before is retrieved. - - The connection. - Contextual information associated with the call. - - - - Called after is retrieved. - - The connection. - Contextual information associated with the call. - - - - Called before is retrieved. - - The connection. - Contextual information associated with the call. - - - - Called after is retrieved. - - The connection. - Contextual information associated with the call. - - - - Called before is retrieved. - - The connection. - Contextual information associated with the call. - - - - Called after is retrieved. - - The connection. - Contextual information associated with the call. - - - - Called before is invoked. - - The connection being disposed. - Contextual information associated with the call. - - - - Called after is invoked. - - The connection that was disposed. - Contextual information associated with the call. - - - - Called before is invoked. - - The connection. - Contextual information associated with the call. - - - - Called after is invoked. - - The connection. - Contextual information associated with the call. - - - - Called before or its async counterpart is invoked. - - The connection being opened. - Contextual information associated with the call. - - - - Called after or its async counterpart is invoked. - - The connection that was opened. - Contextual information associated with the call. - - - - Called before is retrieved. - - The connection. - Contextual information associated with the call. - - - - Called after is retrieved. - - The connection. - Contextual information associated with the call. - - - - Called before is retrieved. - - The connection. - Contextual information associated with the call. - - - - Called after is retrieved. - - The connection. - Contextual information associated with the call. - - - - This is the base interface for all interfaces that provide interception points for various - different types and operations. For example, see . - Interceptors are registered on the class. - - - - - An object that implements this interface can be registered with to - receive notifications when Entity Framework commits or rollbacks a transaction. - - - Interceptors can also be registered in the config file of the application. - See http://go.microsoft.com/fwlink/?LinkId=260883 for more information about Entity Framework configuration. - - - - - Called before is retrieved. - - The transaction. - Contextual information associated with the call. - - - - Called after is retrieved. - - The transaction. - Contextual information associated with the call. - - - - Called before is retrieved. - - The transaction. - Contextual information associated with the call. - - - - Called after is retrieved. - - The transaction. - Contextual information associated with the call. - - - - This method is called before is invoked. - - The transaction being committed. - Contextual information associated with the call. - - - - This method is called after is invoked. - - The transaction that was committed. - Contextual information associated with the call. - - - - This method is called before is invoked. - - The transaction being disposed. - Contextual information associated with the call. - - - - This method is called after is invoked. - - The transaction that was disposed. - Contextual information associated with the call. - - - - This method is called before is invoked. - - The transaction being rolled back. - Contextual information associated with the call. - - - - This method is called after is invoked. - - The transaction that was rolled back. - Contextual information associated with the call. - - - - Represents contextual information associated with calls that don't return any results. - - - - - Constructs a new with no state. - - - - - Creates a new by copying immutable state from the given - interception context. Also see - - The context from which to copy state. - - - - When true, this flag indicates that execution of the operation has been suppressed by - one of the interceptors. This can be done before the operation has executed by calling - or by setting an to be thrown - - - - - Prevents the operation from being executed if called before the operation has executed. - - - Thrown if this method is called after the operation has already executed. - - - - - If execution of the operation fails, then this property will contain the exception that was - thrown. If the operation was suppressed or did not fail, then this property will always be null. - - - When an operation fails both this property and the property are set - to the exception that was thrown. However, the property can be set or - changed by interceptors, while this property will always represent the original exception thrown. - - - - - If this property is set before the operation has executed, then execution of the operation will - be suppressed and the set exception will be thrown instead. Otherwise, if the operation fails, then - this property will be set to the exception that was thrown. In either case, interceptors that run - after the operation can change this property to change the exception that will be thrown, or set this - property to null to cause no exception to be thrown at all. - - - When an operation fails both this property and the property are set - to the exception that was thrown. However, the this property can be set or changed by - interceptors, while the property will always represent - the original exception thrown. - - - - - Set to the status of the after an async operation has finished. Not used for - synchronous operations. - - - - - Gets or sets a value containing arbitrary user-specified state information associated with the operation. - - - - - Gets a value containing arbitrary user-specified state information associated with the operation. - - A key used to identify the user state. - The user state set, or null if none was found for the given key. - - - - Sets a value containing arbitrary user-specified state information associated with the operation. - - A key used to identify the user state. - The state to set. - - - - Creates a new that contains all the contextual information in this - interception context together with the flag set to true. - - A new interception context associated with the async flag set. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - - - - - - - - - - - - - Represents contextual information associated with calls with return type . - - The return type of the target method. - - - - Constructs a new with no state. - - - - - Creates a new by copying immutable state from the given - interception context. Also see - - The context from which to copy state. - - - - If execution of the operation completes without throwing, then this property will contain - the result of the operation. If the operation was suppressed or did not fail, then this property - will always contain the default value for the generic type. - - - When an operation completes without throwing both this property and the - property are set. However, the property can be set or changed by interceptors, - while this property will always represent the actual result returned by the operation, if any. - - - - - If this property is set before the operation has executed, then execution of the operation will - be suppressed and the set result will be returned instead. Otherwise, if the operation succeeds, then - this property will be set to the returned result. In either case, interceptors that run - after the operation can change this property to change the result that will be returned. - - - When an operation completes without throwing both this property and the - property are set. However, this property can be set or changed by interceptors, while the - property will always represent the actual result returned by the - operation, if any. - - - - - When true, this flag indicates that execution of the operation has been suppressed by - one of the interceptors. This can be done before the operation has executed by calling - , by setting an to be thrown, or - by setting the operation result using . - - - - - Gets or sets a value containing arbitrary user-specified state information associated with the operation. - - - - - Gets a value containing arbitrary user-specified state information associated with the operation. - - A key used to identify the user state. - The user state set, or null if none was found for the given key. - - - - Sets a value containing arbitrary user-specified state information associated with the operation. - - A key used to identify the user state. - The state to set. - - - - Prevents the operation from being executed if called before the operation has executed. - - - Thrown if this method is called after the operation has already executed. - - - - - If execution of the operation fails, then this property will contain the exception that was - thrown. If the operation was suppressed or did not fail, then this property will always be null. - - - When an operation fails both this property and the property are set - to the exception that was thrown. However, the property can be set or - changed by interceptors, while this property will always represent the original exception thrown. - - - - - If this property is set before the operation has executed, then execution of the operation will - be suppressed and the set exception will be thrown instead. Otherwise, if the operation fails, then - this property will be set to the exception that was thrown. In either case, interceptors that run - after the operation can change this property to change the exception that will be thrown, or set this - property to null to cause no exception to be thrown at all. - - - When an operation fails both this property and the property are set - to the exception that was thrown. However, the this property can be set or changed by - interceptors, while the property will always represent - the original exception thrown. - - - - - Set to the status of the after an async operation has finished. Not used for - synchronous operations. - - - - - Creates a new that contains all the contextual information in this - interception context together with the flag set to true. - - A new interception context associated with the async flag set. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - - - - - - - - - - - - - Represents contextual information associated with calls to property setters of type . - - - An instance of this class is passed to the dispatch methods and does not contain mutable information such as - the result of the operation. This mutable information is obtained from the - that is passed to the interceptors. Instances of this class are publicly immutable. To add contextual information - use one of the With... or As... methods to create a new interception context containing the new information. - - The type of the target property. - - - - Constructs a new with no state. - - - - - Creates a new by copying immutable state from the given - interception context. Also see - - The context from which to copy state. - - - - The value that will be assigned to the target property. - - - - - Gets or sets a value containing arbitrary user-specified state information associated with the operation. - - - - - Gets a value containing arbitrary user-specified state information associated with the operation. - - A key used to identify the user state. - The user state set, or null if none was found for the given key. - - - - Sets a value containing arbitrary user-specified state information associated with the operation. - - A key used to identify the user state. - The state to set. - - - - Creates a new that contains all the contextual information in this - interception context together with the given property value. - - The value that will be assigned to the target property. - A new interception context associated with the given property value. - - - - - - - When true, this flag indicates that execution of the operation has been suppressed by - one of the interceptors. This can be done before the operation has executed by calling - or by setting an to be thrown - - - - - Prevents the operation from being executed if called before the operation has executed. - - - Thrown if this method is called after the operation has already executed. - - - - - If execution of the operation fails, then this property will contain the exception that was - thrown. If the operation was suppressed or did not fail, then this property will always be null. - - - When an operation fails both this property and the property are set - to the exception that was thrown. However, the property can be set or - changed by interceptors, while this property will always represent the original exception thrown. - - - - - If this property is set before the operation has executed, then execution of the operation will - be suppressed and the set exception will be thrown instead. Otherwise, if the operation fails, then - this property will be set to the exception that was thrown. In either case, interceptors that run - after the operation can change this property to change the exception that will be thrown, or set this - property to null to cause no exception to be thrown at all. - - - When an operation fails both this property and the property are set - to the exception that was thrown. However, the this property can be set or changed by - interceptors, while the property will always represent - the original exception thrown. - - - - - Set to the status of the after an async operation has finished. Not used for - synchronous operations. - - - - - Creates a new that contains all the contextual information in this - interception context together with the flag set to true. - - A new interception context associated with the async flag set. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - Creates a new that contains all the contextual information in this - interception context with the addition of the given . - - The context to associate. - A new interception context associated with the given context. - - - - - - - - - - - - - - - - Interface implemented by objects that can provide an instance. - The class implements this interface to provide access to the underlying - ObjectContext. - - - - - Gets the object context. - - The object context. - - - - Used by and when resolving - a provider invariant name from a . - - - - Gets the name of the provider. - The name of the provider. - - - - Instances of this class are used to create DbConnection objects for - SQL Server LocalDb based on a given database name or connection string. - - - An instance of this class can be set on the class or in the - app.config/web.config for the application to cause all DbContexts created with no - connection information or just a database name to use SQL Server LocalDb by default. - This class is immutable since multiple threads may access instances simultaneously - when creating connections. - - - - - Initializes a new instance of the class. - - - - - Creates a new instance of the connection factory for the given version of LocalDb. - For SQL Server 2012 LocalDb use "v11.0". - For SQL Server 2014 and later LocalDb use "mssqllocaldb". - - The LocalDb version to use. - - - - Creates a new instance of the connection factory for the given version of LocalDb. - For SQL Server 2012 LocalDb use "v11.0". - For SQL Server 2014 and later LocalDb use "mssqllocaldb". - - The LocalDb version to use. - The connection string to use for options to the database other than the 'Initial Catalog', 'Data Source', and 'AttachDbFilename'. The 'Initial Catalog' and 'AttachDbFilename' will be prepended to this string based on the database name when CreateConnection is called. The 'Data Source' will be set based on the LocalDbVersion argument. - - - - The connection string to use for options to the database other than the 'Initial Catalog', - 'Data Source', and 'AttachDbFilename'. - The 'Initial Catalog' and 'AttachDbFilename' will be prepended to this string based on the - database name when CreateConnection is called. - The 'Data Source' will be set based on the LocalDbVersion argument. - The default is 'Integrated Security=True;'. - - - - - Creates a connection for SQL Server LocalDb based on the given database name or connection string. - If the given string contains an '=' character then it is treated as a full connection string, - otherwise it is treated as a database name only. - - The database name or connection string. - An initialized DbConnection. - - - - Represents a mapping view. - - - - - Creates a instance having the specified entity SQL. - - A string that specifies the entity SQL. - - - - Gets the entity SQL. - - - - - Base abstract class for mapping view cache implementations. - Derived classes must have a parameterless constructor if used with . - - - - - Gets a hash value computed over the mapping closure. - - - - - Gets a view corresponding to the specified extent. - - An that specifies the extent. - A that specifies the mapping view, - or null if the extent is not associated with a mapping view. - - - - Specifies the means to create concrete instances. - - - - - Creates a generated view cache instance for the container mapping specified by - the names of the mapped containers. - - The name of a container in the conceptual model. - The name of a container in the store model. - - A that specifies the generated view cache. - - - - - Defines a custom attribute that specifies the mapping view cache type (subclass of ) - associated with a context type (subclass of or ). - The cache type is instantiated at runtime and used to retrieve pre-generated views in the - corresponding context. - - - - - Creates a instance that associates a context type - with a mapping view cache type. - - - A subclass of or . - - - A subclass of . - - - - - Creates a instance that associates a context type - with a mapping view cache type. - - - A subclass of or . - - The assembly qualified full name of the cache type. - - - - This convention uses the name of the derived - class as the container for the conceptual model built by - Code First. - - - - - Applies the convention to the given model. - - The container to apply the convention to. - The model. - - - - This convention uses the namespace of the derived - class as the namespace of the conceptual model built by - Code First. - - - - - Compares objects using reference equality. - - - - - Gets the default instance. - - - - - Represents a custom pluralization term to be used by the - - - - - Get the singular. - - - - - Get the plural. - - - - - Create a new instance - - A non null or empty string representing the singular. - A non null or empty string representing the plural. - - - - Default pluralization service implementation to be used by Entity Framework. This pluralization - service is based on English locale. - - - - - Constructs a new instance of default pluralization service - used in Entity Framework. - - - - - Constructs a new instance of default pluralization service - used in Entity Framework. - - - A collection of user dictionary entries to be used by this service.These inputs - can customize the service according the user needs. - - - - Returns the plural form of the specified word. - The plural form of the input parameter. - The word to be made plural. - - - Returns the singular form of the specified word. - The singular form of the input parameter. - The word to be made singular. - - - - Pluralization services to be used by the EF runtime implement this interface. - By default the is used, but the pluralization service to use - can be set in a class derived from . - - - - - Pluralize a word using the service. - - The word to pluralize. - The pluralized word - - - - Singularize a word using the service. - - The word to singularize. - The singularized word. - - - - Instances of this class are used internally to create constant expressions for - that are inserted into the expression tree to replace references to - and . - - The type of the element. - - - - The public property expected in the LINQ expression tree. - - The query. - - - - The exception that is thrown when the action failed again after being retried the configured number of times. - - - - - Initializes a new instance of the class with no error message. - - - - - Initializes a new instance of the class with a specified error message. - - The message that describes the error. - - - - Initializes a new instance of the class. - - The message that describes the error. - The exception that is the cause of the current exception. - - - - Instances of this class are used to create DbConnection objects for - SQL Server Compact Edition based on a given database name or connection string. - - - It is necessary to provide the provider invariant name of the SQL Server Compact - Edition to use when creating an instance of this class. This is because different - versions of SQL Server Compact Editions use different invariant names. - An instance of this class can be set on the class to - cause all DbContexts created with no connection information or just a database - name or connection string to use SQL Server Compact Edition by default. - This class is immutable since multiple threads may access instances simultaneously - when creating connections. - - - - - Creates a new connection factory with empty (default) DatabaseDirectory and BaseConnectionString - properties. - - The provider invariant name that specifies the version of SQL Server Compact Edition that should be used. - - - - Creates a new connection factory with the given DatabaseDirectory and BaseConnectionString properties. - - The provider invariant name that specifies the version of SQL Server Compact Edition that should be used. - The path to prepend to the database name that will form the file name used by SQL Server Compact Edition when it creates or reads the database file. An empty string means that SQL Server Compact Edition will use its default for the database file location. - The connection string to use for options to the database other than the 'Data Source'. The Data Source will be prepended to this string based on the database name when CreateConnection is called. - - - - The path to prepend to the database name that will form the file name used by - SQL Server Compact Edition when it creates or reads the database file. - The default value is "|DataDirectory|", which means the file will be placed - in the designated data directory. - - - - - The connection string to use for options to the database other than the 'Data Source'. - The Data Source will be prepended to this string based on the database name when - CreateConnection is called. - The default is the empty string, which means no other options will be used. - - - - - The provider invariant name that specifies the version of SQL Server Compact Edition - that should be used. - - - - - Creates a connection for SQL Server Compact Edition based on the given database name or connection string. - If the given string contains an '=' character then it is treated as a full connection string, - otherwise it is treated as a database name only. - - The database name or connection string. - An initialized DbConnection. - - - - Instances of this class are used to create DbConnection objects for - SQL Server based on a given database name or connection string. By default, the connection is - made to '.\SQLEXPRESS'. This can be changed by changing the base connection - string when constructing a factory instance. - - - An instance of this class can be set on the class to - cause all DbContexts created with no connection information or just a database - name or connection string to use SQL Server by default. - This class is immutable since multiple threads may access instances simultaneously - when creating connections. - - - - - Creates a new connection factory with a default BaseConnectionString property of - 'Data Source=.\SQLEXPRESS; Integrated Security=True; MultipleActiveResultSets=True;'. - - - - - Creates a new connection factory with the given BaseConnectionString property. - - The connection string to use for options to the database other than the 'Initial Catalog'. The 'Initial Catalog' will be prepended to this string based on the database name when CreateConnection is called. - - - - The connection string to use for options to the database other than the 'Initial Catalog'. - The 'Initial Catalog' will be prepended to this string based on the database name when - CreateConnection is called. - The default is 'Data Source=.\SQLEXPRESS; Integrated Security=True;'. - - - - - Creates a connection for SQL Server based on the given database name or connection string. - If the given string contains an '=' character then it is treated as a full connection string, - otherwise it is treated as a database name only. - - The database name or connection string. - An initialized DbConnection. - - - - This attribute can be applied to either an entire derived class or to - individual or properties on that class. When applied - any discovered or properties will still be included - in the model but will not be automatically initialized. - - - - - Implemented by Entity Framework providers and used to check whether or not tables exist - in a given database. This is used by database initializers when determining whether or not to - treat an existing database as empty such that tables should be created. - - - - - When overridden in a derived class checks where the given tables exist in the database - for the given connection. - - - The context for which table checking is being performed, usually used to obtain an appropriate - . - - - A connection to the database. May be open or closed; should be closed again if opened. Do not - dispose. - - The tables to check for existence. - The name of the EdmMetadata table to check for existence. - True if any of the model tables or EdmMetadata table exists. - - - - Helper method to get the table name for the given s-space . - - The s-space entity set for the table. - The table name. - - - - Thrown when an error occurs committing a . - - - - - Initializes a new instance of - - - - - Initializes a new instance of - - The exception message. - - - - Initializes a new instance of - - The exception message. - The inner exception. - - - - Initializes a new instance of the class. - - The data necessary to serialize or deserialize an object. - Description of the source and destination of the specified serialized stream. - - - - A transaction handler that allows to gracefully recover from connection failures - during transaction commit by storing transaction tracing information in the database. - It needs to be registered by using . - - - This transaction handler uses to store the transaction information - the schema used can be configured by creating a class derived from - that overrides and passing it to the constructor of this class. - - - - - Initializes a new instance of the class using the default . - - - One of the Initialize methods needs to be called before this instance can be used. - - - - - Initializes a new instance of the class. - - The transaction context factory. - - One of the Initialize methods needs to be called before this instance can be used. - - - - - Gets the transaction context. - - - The transaction context. - - - - - The map between the store transactions and the transaction tracking objects - - - - - Creates a new instance of an to use for quering the transaction log. - If null the default will be used. - - An instance or null. - - - - - - - - - - Gets the number of transactions to be executed on the context before the transaction log will be cleaned. - The default value is 20. - - - - - - - - - - - Stores the tracking information for the new transaction to the database in the same transaction. - - The connection that began the transaction. - Contextual information associated with the call. - - - - - If there was an exception thrown checks the database for this transaction and rethrows it if not found. - Otherwise marks the commit as succeeded and queues the transaction information to be deleted. - - The transaction that was committed. - Contextual information associated with the call. - - - - - Stops tracking the transaction that was rolled back. - - The transaction that was rolled back. - Contextual information associated with the call. - - - - - Stops tracking the transaction that was disposed. - - The transaction that was disposed. - Contextual information associated with the call. - - - - - Removes all the transaction history. - - - This method should only be invoked when there are no active transactions to remove any leftover history - that was not deleted due to catastrophic failures - - - - - Asynchronously removes all the transaction history. - - - This method should only be invoked when there are no active transactions to remove any leftover history - that was not deleted due to catastrophic failures - - A task that represents the asynchronous operation. - - - - Asynchronously removes all the transaction history. - - - This method should only be invoked when there are no active transactions to remove any leftover history - that was not deleted due to catastrophic failures - - The cancellation token. - A task that represents the asynchronous operation. - - - - Adds the specified transaction to the list of transactions that can be removed from the database - - The transaction to be removed from the database. - - - - Removes the transactions marked for deletion. - - - - - Asynchronously removes the transactions marked for deletion. - - A task that represents the asynchronous operation. - - - - Asynchronously removes the transactions marked for deletion. - - The cancellation token. - A task that represents the asynchronous operation. - - - - Removes the transactions marked for deletion if their number exceeds . - - - if set to true will remove all the old transactions even if their number does not exceed . - - - if set to true the operation will be executed using the associated execution strategy - - - - - Removes the transactions marked for deletion if their number exceeds . - - - if set to true will remove all the old transactions even if their number does not exceed . - - - if set to true the operation will be executed using the associated execution strategy - - The cancellation token. - A task that represents the asynchronous operation. - - - - Gets the associated with the if there is one; - otherwise returns null. - - The context - The associated . - - - - Gets the associated with the if there is one; - otherwise returns null. - - The context - The associated . - - - - This class is used by to write and read transaction tracing information - from the database. - To customize the definition of the transaction table you can derive from - this class and override . Derived classes can be registered - using . - - - By default EF will poll the resolved to check wether the database schema is compatible and - will try to modify it accordingly if it's not. To disable this check call - Database.SetInitializer<TTransactionContext>(null) where TTransactionContext is the type of the resolved context. - - - - - Initializes a new instance of the class. - - The connection used by the context for which the transactions will be recorded. - - - - Gets or sets a that can be used to read and write instances. - - - - - - - - The base class for interceptors that handle the transaction operations. Derived classes can be registered using - or - . - - - - - Initializes a new instance of the class. - - - One of the Initialize methods needs to be called before this instance can be used. - - - - - Initializes this instance using the specified context. - - The context for which transaction operations will be handled. - - - - Initializes this instance using the specified context. - - The context for which transaction operations will be handled. - The connection to use for the initialization. - - This method is called by migrations. It is important that no action is performed on the - specified context that causes it to be initialized. - - - - - Gets the context. - - - The for which the transaction operations will be handled. - - - - - Gets the context. - - - The for which the transaction operations will be handled, could be null. - - - - - Gets the connection. - - - The for which the transaction operations will be handled. - - - This connection object is only used to determine whether a particular operation needs to be handled - in cases where a context is not available. - - - - - - - - Gets or sets a value indicating whether this transaction handler is disposed. - - - true if disposed; otherwise, false. - - - - - Releases the resources used by this transaction handler. - - - true to release both managed and unmanaged resources; false to release only unmanaged resources. - - - - - Checks whether the supplied interception context contains the target context - or the supplied connection is the same as the one used by the target context. - - A connection. - An interception context. - - true if the supplied interception context contains the target context or - the supplied connection is the same as the one used by the target context if - the supplied interception context doesn't contain any contexts; false otherwise. - - - Note that calling this method will trigger initialization of any DbContext referenced from the - - - - - When implemented in a derived class returns the script to prepare the database - for this transaction handler. - - A script to change the database schema for this transaction handler. - - - - Can be implemented in a derived class. - - The connection beginning the transaction. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection that began the transaction. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection being closed. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection that was closed. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection being disposed. - Contextual information associated with the call. - - - - Can be implemented in a derived class. - - The connection that was disposed. - Contextual information associated with the call. - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection being opened. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection that was opened. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The connection. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The transaction. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The transaction. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The transaction. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The transaction. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The transaction being committed. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The transaction that was committed. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The transaction being disposed. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The transaction that was disposed. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The transaction being rolled back. - Contextual information associated with the call. - - - - - Can be implemented in a derived class. - - The transaction that was rolled back. - Contextual information associated with the call. - - - - - Rrepresents a transaction - - - - - A unique id assigned to a transaction object. - - - - - The local time when the transaction was started. - - - - - - - - - - - Thrown when a context is generated from the templates in Database First or Model - First mode and is then used in Code First mode. - - - Code generated using the T4 templates provided for Database First and Model First use may not work - correctly if used in Code First mode. To use these classes with Code First please add any additional - configuration using attributes or the DbModelBuilder API and then remove the code that throws this - exception. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The object that holds the serialized object data. - The contextual information about the source or destination. - - - - Initializes a new instance of the class. - - The message. - - - - Initializes a new instance of the class. - - The message. - The inner exception. - - - - Allows configuration to be performed for an complex type in a model. - A ComplexTypeConfiguration can be obtained via the ComplexType method on - or a custom type derived from ComplexTypeConfiguration - can be registered via the Configurations property on . - - The complex type to be configured. - - - - Initializes a new instance of ComplexTypeConfiguration - - - - - Excludes a property from the model so that it will not be mapped to the database. - - The type of the property to be ignored. - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The same ComplexTypeConfiguration instance so that multiple calls can be chained. - - - - - - - - - - - - - - - - Allows derived configuration classes for entities and complex types to be registered with a - . - - - Derived configuration classes are created by deriving from - or and using a type to be included in the model as the generic - parameter. - Configuration can be performed without creating derived configuration classes via the Entity and ComplexType - methods on . - - - - - Discovers all types that inherit from or - in the given assembly and adds an instance - of each discovered type to this registrar. - - - Note that only types that are abstract or generic type definitions are skipped. Every - type that is discovered and added must provide a parameterless constructor. - - The assembly containing model configurations to add. - The same ConfigurationRegistrar instance so that multiple calls can be chained. - - - - Adds an to the . - Only one can be added for each type in a model. - - The entity type being configured. - The entity type configuration to be added. - The same ConfigurationRegistrar instance so that multiple calls can be chained. - - - - Adds an to the . - Only one can be added for each type in a model. - - The complex type being configured. - The complex type configuration to be added - The same ConfigurationRegistrar instance so that multiple calls can be chained. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Allows the conventions used by a instance to be customized. - The default conventions can be found in the System.Data.Entity.ModelConfiguration.Conventions namespace. - - - - - Discover all conventions in the given assembly and add them to the . - - - This method add all conventions ordered by type name. The order in which conventions are added - can have an impact on how they behave because it governs the order in which they are run. - All conventions found must have a parameterless public constructor. - - The assembly containing conventions to be added. - - - - Enables one or more conventions for the . - - The conventions to be enabled. - - - - Enables a convention for the . - - The type of the convention to be enabled. - - - - Enables a convention for the . This convention - will run after the one specified. - - The type of the convention after which the enabled one will run. - The convention to enable. - - - - Enables a configuration convention for the . This convention - will run before the one specified. - - The type of the convention before which the enabled one will run. - The convention to enable. - - - - Disables one or more conventions for the . - - The conventions to be disabled. - - - - Disables a convention for the . - The default conventions that are available for removal can be found in the - System.Data.Entity.ModelConfiguration.Conventions namespace. - - The type of the convention to be disabled. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Allows configuration to be performed for a lightweight convention based on - the properties in a model. - - - - - Filters the properties that this convention applies to based on a predicate. - - A function to test each property for a condition. - - A instance so that multiple calls can be chained. - - - - - Filters the properties that this convention applies to based on a predicate - while capturing a value to use later during configuration. - - Type of the captured value. - - A function to capture a value for each property. If the value is null, the - property will be filtered out. - - - A instance so that multiple calls can be chained. - - - - - Allows configuration of the properties that this convention applies to. - - - An action that performs configuration against a - - . - - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Allows configuration to be performed for a lightweight convention based on - the properties of entity types in a model and a captured value. - - The type of the captured value. - - - - Allows configuration of the properties that this convention applies to. - - - An action that performs configuration against a - using a captured value. - - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Allows configuration to be performed for a lightweight convention based on - the entity types in a model. - - - - - Filters the entity types that this convention applies to based on a - predicate. - - A function to test each entity type for a condition. - - An instance so that multiple calls can be chained. - - - - - Filters the entity types that this convention applies to based on a predicate - while capturing a value to use later during configuration. - - Type of the captured value. - - A function to capture a value for each entity type. If the value is null, the - entity type will be filtered out. - - - An instance so that multiple calls can be chained. - - - - - Allows configuration of the entity types that this convention applies to. - - - An action that performs configuration against a - - . - - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Allows configuration to be performed for a lightweight convention based on - the entity types in a model that inherit from a common, specified type. - - The common type of the entity types that this convention applies to. - - - - Filters the entity types that this convention applies to based on a - predicate. - - A function to test each entity type for a condition. - - An instance so that multiple calls can be chained. - - - - - Filters the entity types that this convention applies to based on a predicate - while capturing a value to use later during configuration. - - Type of the captured value. - - A function to capture a value for each entity type. If the value is null, the - entity type will be filtered out. - - - An instance so that multiple calls can be chained. - - - - - Allows configuration of the entity types that this convention applies to. - - - An action that performs configuration against a - - . - - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Allows configuration to be performed for a lightweight convention based on - the entity types in a model and a captured value. - - Type of the captured value. - - - - Allows configuration of the entity types that this convention applies to. - - - An action that performs configuration against a - using a captured value. - - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Allows configuration to be performed for a lightweight convention based on - the entity types in a model that inherit from a common, specified type and a - captured value. - - The common type of the entity types that this convention applies to. - Type of the captured value. - - - - Allows configuration of the entity types that this convention applies to. - - - An action that performs configuration against a - using a captured value. - - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Allows configuration to be performed for a stored procedure that is used to modify a relationship. - - The type of the entity that the relationship is being configured from. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - The type of the property. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - The type of the property. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - - Creates a convention that configures stored procedures to be used to delete entities in the database. - - - - Configures the name of the stored procedure. - The same configuration instance so that multiple calls can be chained. - The stored procedure name. - - - Configures the name of the stored procedure. - The same configuration instance so that multiple calls can be chained. - The stored procedure name. - The schema name. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - The name of the property to configure the parameter for. - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - The property to configure the parameter for. - The name of the parameter. - - - Configures the output parameter that returns the rows affected by this stored procedure. - The same configuration instance so that multiple calls can be chained. - The name of the parameter. - - - - - - - - - - - - - - - - Creates a convention that configures stored procedures to be used to insert entities in the database. - - - - Configures the name of the stored procedure. - The same configuration instance so that multiple calls can be chained. - The stored procedure name. - - - Configures the name of the stored procedure. - The same configuration instance so that multiple calls can be chained. - The stored procedure name. - The schema name. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - The name of the property to configure the parameter for. - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - The property to configure the parameter for. - The name of the parameter. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The same configuration instance so that multiple calls can be chained. - The name of the property to configure the result for. - The name of the result column. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The same configuration instance so that multiple calls can be chained. - The property to configure the result for. - The name of the result column. - - - - - - - - - - - - - - - - Creates a convention that configures stored procedures to be used to modify entities in the database. - - - - - Creates a convention that configures stored procedures to be used to modify entities in the database. - - - - Configures stored procedure used to insert entities. - The same configuration instance so that multiple calls can be chained. - A lambda expression that performs configuration for the stored procedure. - - - Configures stored procedure used to update entities. - The same configuration instance so that multiple calls can be chained. - A lambda expression that performs configuration for the stored procedure. - - - Configures stored procedure used to delete entities. - The same configuration instance so that multiple calls can be chained. - A lambda expression that performs configuration for the stored procedure. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Creates a convention that configures stored procedures to be used to update entities in the database. - - - - Configures the name of the stored procedure. - The same configuration instance so that multiple calls can be chained. - The stored procedure name. - - - Configures the name of the stored procedure. - The same configuration instance so that multiple calls can be chained. - The stored procedure name. - The schema name. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - The name of the property to configure the parameter for. - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - The property to configure the parameter for. - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - The name of the property to configure the parameter for. - The current value parameter name. - The original value parameter name. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - The property to configure the parameter for. - The current value parameter name. - The original value parameter name. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The same configuration instance so that multiple calls can be chained. - The name of the property to configure the result for. - The name of the result column. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The same configuration instance so that multiple calls can be chained. - The property to configure the result for. - The name of the result column. - - - Configures the output parameter that returns the rows affected by this stored procedure. - The same configuration instance so that multiple calls can be chained. - The name of the parameter. - - - - - - - - - - - - - - - - Allows configuration to be performed for a stored procedure that is used to delete entities. - - The type of the entity that the stored procedure can be used to delete. - - - Configures the name of the stored procedure. - The same configuration instance so that multiple calls can be chained. - The stored procedure name. - - - Configures the name of the stored procedure. - The same configuration instance so that multiple calls can be chained. - The stored procedure name. - The schema name. - - - Configures a parameter for this stored procedure. - The type of the property to configure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The type of the property to configure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures the output parameter that returns the rows affected by this stored procedure. - The same configuration instance so that multiple calls can be chained. - The name of the parameter. - - - Configures parameters for a relationship where the foreign key property is not included in the class. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the navigation property for the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A lambda expression that performs the configuration. - The type of the principal entity in the relationship. - - - Configures parameters for a relationship where the foreign key property is not included in the class. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the navigation property for the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A lambda expression that performs the configuration. - The type of the principal entity in the relationship. - - - - - - - - - - - - - - - - Allows configuration to be performed for a stored procedure that is used to insert entities. - - The type of the entity that the stored procedure can be used to insert. - - - Configures the name of the stored procedure. - The same configuration instance so that multiple calls can be chained. - The stored procedure name. - - - Configures the name of the stored procedure. - The same configuration instance so that multiple calls can be chained. - The stored procedure name. - The schema name. - - - Configures a parameter for this stored procedure. - The type of the property to configure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The type of the property to configure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The type of the property to configure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the result for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the result column. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The type of the property to configure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the result for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the result column. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the result for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the result column. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the result for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the result column. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the result for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the result column. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the result for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the result column. - - - Configures parameters for a relationship where the foreign key property is not included in the class. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the navigation property for the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A lambda expression that performs the configuration. - The type of the principal entity in the relationship. - - - Configures parameters for a relationship where the foreign key property is not included in the class. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the navigation property for the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A lambda expression that performs the configuration. - The type of the principal entity in the relationship. - - - - - - - - - - - - - - - - Allows configuration to be performed for a stored procedure that is used to modify a many to many relationship. - - The type of the entity that the relationship is being configured from. - The type of the entity that the other end of the relationship targets. - - - - Sets the name of the stored procedure. - - Name of the procedure. - The same configuration instance so that multiple calls can be chained. - - - - Sets the name of the stored procedure. - - Name of the procedure. - Name of the schema. - The same configuration instance so that multiple calls can be chained. - - - - Configures the parameter for the left key value(s). - - The type of the property to configure. - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - Name of the parameter. - The same configuration instance so that multiple calls can be chained. - - - - Configures the parameter for the left key value(s). - - The type of the property to configure. - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - Name of the parameter. - The same configuration instance so that multiple calls can be chained. - - - - Configures the parameter for the left key value(s). - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - Name of the parameter. - The same configuration instance so that multiple calls can be chained. - - - - Configures the parameter for the left key value(s). - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - Name of the parameter. - The same configuration instance so that multiple calls can be chained. - - - - Configures the parameter for the right key value(s). - - The type of the property to configure. - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - Name of the parameter. - The same configuration instance so that multiple calls can be chained. - - - - Configures the parameter for the right key value(s). - - The type of the property to configure. - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - Name of the parameter. - The same configuration instance so that multiple calls can be chained. - - - - Configures the parameter for the right key value(s). - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - Name of the parameter. - The same configuration instance so that multiple calls can be chained. - - - - Configures the parameter for the right key value(s). - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - Name of the parameter. - The same configuration instance so that multiple calls can be chained. - - - - - - - - - - - - - - - - Allows configuration to be performed for a stored procedure that is used to modify a many to many relationship. - - The type of the entity that the relationship is being configured from. - The type of the entity that the other end of the relationship targets. - - - Configures stored procedure used to insert relationships. - The same configuration instance so that multiple calls can be chained. - A lambda expression that performs configuration for the stored procedure. - - - Configures stored procedure used to delete relationships. - The same configuration instance so that multiple calls can be chained. - A lambda expression that performs configuration for the stored procedure. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Performs configuration of a stored procedure uses to modify an entity in the database. - - - - - Allows configuration to be performed for a stored procedure that is used to modify entities. - - The type of the entity that the stored procedure can be used to modify. - - - Configures stored procedure used to insert entities. - The same configuration instance so that multiple calls can be chained. - A lambda expression that performs configuration for the stored procedure. - - - Configures stored procedure used to update entities. - The same configuration instance so that multiple calls can be chained. - A lambda expression that performs configuration for the stored procedure. - - - Configures stored procedure used to delete entities. - The same configuration instance so that multiple calls can be chained. - A lambda expression that performs configuration for the stored procedure. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Allows configuration to be performed for a stored procedure that is used to update entities. - - The type of the entity that the stored procedure can be used to update. - - - Configures the name of the stored procedure. - The same configuration instance so that multiple calls can be chained. - The stored procedure name. - - - Configures the name of the stored procedure. - The same configuration instance so that multiple calls can be chained. - The stored procedure name. - The schema name. - - - Configures a parameter for this stored procedure. - The type of the property to configure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The type of the property to configure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the parameter. - - - Configures a parameter for this stored procedure. - The type of the property to configure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The current value parameter name. - The original value parameter name. - - - Configures a parameter for this stored procedure. - The type of the property to configure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The current value parameter name. - The original value parameter name. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The current value parameter name. - The original value parameter name. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The current value parameter name. - The original value parameter name. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The current value parameter name. - The original value parameter name. - - - Configures a parameter for this stored procedure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The current value parameter name. - The original value parameter name. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The type of the property to configure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the result for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the result column. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The type of the property to configure. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the result for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the result column. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the result for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the result column. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the result for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the result column. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the result for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the result column. - - - - Configures a column of the result for this stored procedure to map to a property. - This is used for database generated columns. - - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the property to configure the result for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The name of the result column. - - - Configures the output parameter that returns the rows affected by this stored procedure. - The same configuration instance so that multiple calls can be chained. - The name of the parameter. - - - Configures parameters for a relationship where the foreign key property is not included in the class. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the navigation property for the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A lambda expression that performs the configuration. - The type of the principal entity in the relationship. - - - Configures parameters for a relationship where the foreign key property is not included in the class. - The same configuration instance so that multiple calls can be chained. - A lambda expression representing the navigation property for the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A lambda expression that performs the configuration. - The type of the principal entity in the relationship. - - - - - - - - - - - - - - - - Configures the table and column mapping for an entity type or a sub-set of properties from an entity type. - This configuration functionality is available via the Code First Fluent API, see . - - The entity type to be mapped. - - - Initializes a new instance of the class. - - - - Configures the properties that will be included in this mapping fragment. - If this method is not called then all properties that have not yet been - included in a mapping fragment will be configured. - - An anonymous type including the properties to be mapped. - A lambda expression to an anonymous type that contains the properties to be mapped. C#: t => new { t.Id, t.Property1, t.Property2 } VB.Net: Function(t) New With { p.Id, t.Property1, t.Property2 } - - - - Configures a property that is included in this mapping fragment. - - The type of the property being configured. - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is included in this mapping fragment. - - The type of the property being configured. - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is included in this mapping fragment. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is included in this mapping fragment. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is included in this mapping fragment. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is included in this mapping fragment. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is included in this mapping fragment. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is included in this mapping fragment. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is included in this mapping fragment. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is included in this mapping fragment. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is included in this mapping fragment. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is included in this mapping fragment. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is included in this mapping fragment. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is included in this mapping fragment. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Re-maps all properties inherited from base types. - When configuring a derived type to be mapped to a separate table this will cause all properties to - be included in the table rather than just the non-inherited properties. This is known as - Table per Concrete Type (TPC) mapping. - - The same configuration instance so that multiple calls can be chained. - - - - Configures the table name to be mapped to. - - Name of the table. - The same configuration instance so that multiple calls can be chained. - - - - Configures the table name and schema to be mapped to. - - Name of the table. - Schema of the table. - The same configuration instance so that multiple calls can be chained. - - - - Sets an annotation in the model for the table to which this entity is mapped. The annotation - value can later be used when processing the table such as when creating migrations. - - - It will likely be necessary to register a if the type of - the annotation value is anything other than a string. Passing a null value clears any annotation with - the given name on the column that had been previously set. - - The annotation name, which must be a valid C#/EDM identifier. - The annotation value, which may be a string or some other type that - can be serialized with an . - The same configuration instance so that multiple calls can be chained. - - - - Configures the discriminator column used to differentiate between types in an inheritance hierarchy. - - The name of the discriminator column. - A configuration object to further configure the discriminator column and values. - - - - Configures the discriminator condition used to differentiate between types in an inheritance hierarchy. - - The type of the property being used to discriminate between types. - A lambda expression representing the property being used to discriminate between types. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object to further configure the discriminator condition. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Used to configure a column with length facets for an entity type or complex type. This configuration functionality is exposed by the Code First Fluent API, see . - - - - Configures the column to allow the maximum length supported by the database provider. - The same instance so that multiple calls can be chained. - - - Configures the column to have the specified maximum length. - The same instance so that multiple calls can be chained. - The maximum length for the column. Setting the value to null will remove any maximum length restriction from the column and a default length will be used for the database column. - - - Configures the column to be fixed length. - The same instance so that multiple calls can be chained. - - - Configures the column to be variable length. - The same instance so that multiple calls can be chained. - - - - - - - - - - - - - - - - Configures a condition used to discriminate between types in an inheritance hierarchy based on the values assigned to a property. - This configuration functionality is available via the Code First Fluent API, see . - - - - - Configures the condition to require a value in the property. - Rows that do not have a value assigned to column that this property is stored in are - assumed to be of the base type of this entity type. - - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Configures a primitive column from an entity type. - - - - Configures the primitive column to be optional. - The same instance so that multiple calls can be chained. - - - Configures the primitive column to be required. - The same instance so that multiple calls can be chained. - - - Configures the data type of the primitive column used to store the property. - The same instance so that multiple calls can be chained. - The name of the database provider specific data type. - - - Configures the order of the primitive column used to store the property. This method is also used to specify key ordering when an entity type has a composite key. - The same instance so that multiple calls can be chained. - The order that this column should appear in the database table. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Configures a database column used to store a string values. - This configuration functionality is available via the Code First Fluent API, see . - - - - - Configures the column to allow the maximum length supported by the database provider. - - The same StringColumnConfiguration instance so that multiple calls can be chained. - - - - Configures the property to have the specified maximum length. - - - The maximum length for the property. Setting 'null' will result in a default length being used for the column. - - The same StringColumnConfiguration instance so that multiple calls can be chained. - - - - Configures the column to be fixed length. - Use HasMaxLength to set the length that the property is fixed to. - - The same StringColumnConfiguration instance so that multiple calls can be chained. - - - - Configures the column to be variable length. - Columns are variable length by default. - - The same StringColumnConfiguration instance so that multiple calls can be chained. - - - - Configures the column to be optional. - - The same StringColumnConfiguration instance so that multiple calls can be chained. - - - - Configures the column to be required. - - The same StringColumnConfiguration instance so that multiple calls can be chained. - - - - Configures the data type of the database column. - - Name of the database provider specific data type. - The same StringColumnConfiguration instance so that multiple calls can be chained. - - - - Configures the order of the database column. - - The order that this column should appear in the database table. - The same StringColumnConfiguration instance so that multiple calls can be chained. - - - - Configures the column to support Unicode string content. - - The same StringColumnConfiguration instance so that multiple calls can be chained. - - - - Configures whether or not the column supports Unicode string content. - - Value indicating if the column supports Unicode string content or not. Specifying 'null' will remove the Unicode facet from the column. Specifying 'null' will cause the same runtime behavior as specifying 'false'. - The same StringColumnConfiguration instance so that multiple calls can be chained. - - - - - - - - - - - - - - - - Configures a discriminator column used to differentiate between types in an inheritance hierarchy. - This configuration functionality is available via the Code First Fluent API, see . - - - - - Configures the discriminator value used to identify the entity type being - configured from other types in the inheritance hierarchy. - - Type of the discriminator value. - The value to be used to identify the entity type. - A configuration object to configure the column used to store discriminator values. - - - - Configures the discriminator value used to identify the entity type being - configured from other types in the inheritance hierarchy. - - Type of the discriminator value. - The value to be used to identify the entity type. - A configuration object to configure the column used to store discriminator values. - - - - Configures the discriminator value used to identify the entity type being - configured from other types in the inheritance hierarchy. - - The value to be used to identify the entity type. - A configuration object to configure the column used to store discriminator values. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Configures an index. - - - - - Configures the index to be unique. - - The same IndexConfiguration instance so that multiple calls can be chained. - - - - Configures whether the index will be unique. - - Value indicating if the index should be unique or not. - The same IndexConfiguration instance so that multiple calls can be chained. - - - - Configures the index to be clustered. - - The same IndexConfigurationBase instance so that multiple calls can be chained. - - - - Configures whether or not the index will be clustered. - - Value indicating if the index should be clustered or not. - The same IndexConfigurationBase instance so that multiple calls can be chained. - - - - Configures the index to have a specific name. - - Value indicating what the index name should be. - The same IndexConfigurationBase instance so that multiple calls can be chained. - - - - Configures a primary key index. - - - - - Configures the index to be clustered. - - The same IndexConfigurationBase instance so that multiple calls can be chained. - - - - Configures whether or not the index will be clustered. - - Value indicating if the index should be clustered or not. - The same IndexConfigurationBase instance so that multiple calls can be chained. - - - - Configures the index to have a specific name. - - Value indicating what the index name should be. - The same IndexConfigurationBase instance so that multiple calls can be chained. - - - - Configures a many relationship from an entity type. - - The entity type that the relationship originates from. - The entity type that the relationship targets. - - - - Configures the relationship to be many:many with a navigation property on the other side of the relationship. - - An lambda expression representing the navigation property on the other end of the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be many:many without a navigation property on the other side of the relationship. - - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be many:required with a navigation property on the other side of the relationship. - - An lambda expression representing the navigation property on the other end of the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be many:required without a navigation property on the other side of the relationship. - - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be many:optional with a navigation property on the other side of the relationship. - - An lambda expression representing the navigation property on the other end of the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be many:optional without a navigation property on the other side of the relationship. - - A configuration object that can be used to further configure the relationship. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Configures an optional relationship from an entity type. - - The entity type that the relationship originates from. - The entity type that the relationship targets. - - - - Configures the relationship to be optional:many with a navigation property on the other side of the relationship. - - An lambda expression representing the navigation property on the other end of the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be optional:many without a navigation property on the other side of the relationship. - - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be optional:required with a navigation property on the other side of the relationship. - - An lambda expression representing the navigation property on the other end of the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be optional:required without a navigation property on the other side of the relationship. - - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be optional:optional with a navigation property on the other side of the relationship. - The entity type being configured will be the dependent and contain a foreign key to the principal. - The entity type that the relationship targets will be the principal in the relationship. - - An lambda expression representing the navigation property on the other end of the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be optional:optional without a navigation property on the other side of the relationship. - The entity type being configured will be the dependent and contain a foreign key to the principal. - The entity type that the relationship targets will be the principal in the relationship. - - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be optional:optional with a navigation property on the other side of the relationship. - The entity type being configured will be the principal in the relationship. - The entity type that the relationship targets will be the dependent and contain a foreign key to the principal. - - A lambda expression representing the navigation property on the other end of the relationship. - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be optional:optional without a navigation property on the other side of the relationship. - The entity type being configured will be the principal in the relationship. - The entity type that the relationship targets will be the dependent and contain a foreign key to the principal. - - A configuration object that can be used to further configure the relationship. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Configures an required relationship from an entity type. - - The entity type that the relationship originates from. - The entity type that the relationship targets. - - - - Configures the relationship to be required:many with a navigation property on the other side of the relationship. - - An lambda expression representing the navigation property on the other end of the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be required:many without a navigation property on the other side of the relationship. - - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be required:optional with a navigation property on the other side of the relationship. - - An lambda expression representing the navigation property on the other end of the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be required:optional without a navigation property on the other side of the relationship. - - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be required:required with a navigation property on the other side of the relationship. - The entity type being configured will be the dependent and contain a foreign key to the principal. - The entity type that the relationship targets will be the principal in the relationship. - - An lambda expression representing the navigation property on the other end of the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be required:required without a navigation property on the other side of the relationship. - The entity type being configured will be the dependent and contain a foreign key to the principal. - The entity type that the relationship targets will be the principal in the relationship. - - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be required:required with a navigation property on the other side of the relationship. - The entity type being configured will be the principal in the relationship. - The entity type that the relationship targets will be the dependent and contain a foreign key to the principal. - - An lambda expression representing the navigation property on the other end of the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to further configure the relationship. - - - - Configures the relationship to be required:required without a navigation property on the other side of the relationship. - The entity type being configured will be the principal in the relationship. - The entity type that the relationship targets will be the dependent and contain a foreign key to the principal. - - A configuration object that can be used to further configure the relationship. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Base class for performing configuration of a relationship. - This configuration functionality is available via the Code First Fluent API, see . - - - - - Configures a relationship that can support cascade on delete functionality. - - - - - Configures cascade delete to be on for the relationship. - - - - - Configures whether or not cascade delete is on for the relationship. - - Value indicating if cascade delete is on or not. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Configures a relationship that can support foreign key properties that are exposed in the object model. - This configuration functionality is available via the Code First Fluent API, see . - - The dependent entity type. - - - - Configures the relationship to use foreign key property(s) that are exposed in the object model. - If the foreign key property(s) are not exposed in the object model then use the Map method. - - The type of the key. - A lambda expression representing the property to be used as the foreign key. If the foreign key is made up of multiple properties then specify an anonymous type including the properties. When using multiple foreign key properties, the properties must be specified in the same order that the primary key properties were configured for the principal entity type. - A configuration object that can be used to further configure the relationship. - - - - - - - - - - - - - - - - Configures the table and column mapping of a relationship that does not expose foreign key properties in the object model. - This configuration functionality is available via the Code First Fluent API, see . - - - - - Configures the name of the column(s) for the foreign key. - - The foreign key column names. When using multiple foreign key properties, the properties must be specified in the same order that the primary key properties were configured for the target entity type. - The same ForeignKeyAssociationMappingConfiguration instance so that multiple calls can be chained. - - - - Sets an annotation in the model for a database column that has been configured with . - The annotation value can later be used when processing the column such as when creating migrations. - - - It will likely be necessary to register a if the type of - the annotation value is anything other than a string. Passing a null value clears any annotation with - the given name on the column that had been previously set. - - The name of the column that was configured with the HasKey method. - The annotation name, which must be a valid C#/EDM identifier. - The annotation value, which may be a string or some other type that - can be serialized with an . - The same ForeignKeyAssociationMappingConfiguration instance so that multiple calls can be chained. - - - - Configures the table name that the foreign key column(s) reside in. - The table that is specified must already be mapped for the entity type. - If you want the foreign key(s) to reside in their own table then use the Map method - on to perform - entity splitting to create the table with just the primary key property. Foreign keys can - then be added to the table via this method. - - Name of the table. - The same ForeignKeyAssociationMappingConfiguration instance so that multiple calls can be chained. - - - - Configures the table name and schema that the foreign key column(s) reside in. - The table that is specified must already be mapped for the entity type. - If you want the foreign key(s) to reside in their own table then use the Map method - on to perform - entity splitting to create the table with just the primary key property. Foreign keys can - then be added to the table via this method. - - Name of the table. - Schema of the table. - The same ForeignKeyAssociationMappingConfiguration instance so that multiple calls can be chained. - - - - - - - - - - - - - - - - - - - Configures a relationship that can only support foreign key properties that are not exposed in the object model. - This configuration functionality is available via the Code First Fluent API, see . - - - - - Configures the relationship to use foreign key property(s) that are not exposed in the object model. - The column(s) and table can be customized by specifying a configuration action. - If an empty configuration action is specified then column name(s) will be generated by convention. - If foreign key properties are exposed in the object model then use the HasForeignKey method. - Not all relationships support exposing foreign key properties in the object model. - - Action that configures the foreign key column(s) and table. - A configuration object that can be used to further configure the relationship. - - - - - - - - - - - - - - - - Configures the table and column mapping of a many:many relationship. - This configuration functionality is available via the Code First Fluent API, see . - - - - - Configures the join table name for the relationship. - - Name of the table. - The same ManyToManyAssociationMappingConfiguration instance so that multiple calls can be chained. - - - - Configures the join table name and schema for the relationship. - - Name of the table. - Schema of the table. - The same ManyToManyAssociationMappingConfiguration instance so that multiple calls can be chained. - - - - Sets an annotation in the model for the join table. The annotation value can later be used when - processing the table such as when creating migrations. - - - It will likely be necessary to register a if the type of - the annotation value is anything other than a string. Passing a null value clears any annotation with - the given name on the column that had been previously set. - - The annotation name, which must be a valid C#/EDM identifier. - The annotation value, which may be a string or some other type that - can be serialized with an . - The same configuration instance so that multiple calls can be chained. - - - - Configures the name of the column(s) for the left foreign key. - The left foreign key points to the parent entity of the navigation property specified in the HasMany call. - - The foreign key column names. When using multiple foreign key properties, the properties must be specified in the same order that the primary key properties were configured for the target entity type. - The same ManyToManyAssociationMappingConfiguration instance so that multiple calls can be chained. - - - - Configures the name of the column(s) for the right foreign key. - The right foreign key points to the parent entity of the navigation property specified in the WithMany call. - - The foreign key column names. When using multiple foreign key properties, the properties must be specified in the same order that the primary key properties were configured for the target entity type. - The same ManyToManyAssociationMappingConfiguration instance so that multiple calls can be chained. - - - - - - Determines whether the specified object is equal to the current object. - true if the specified object is equal to the current object; otherwise, false. - The object to compare with the current object. - - - - - - - - - - - - - Configures a many:many relationship. - This configuration functionality is available via the Code First Fluent API, see . - - The type of the parent entity of the navigation property specified in the HasMany call. - The type of the parent entity of the navigation property specified in the WithMany call. - - - - Configures the foreign key column(s) and table used to store the relationship. - - Action that configures the foreign key column(s) and table. - The same instance so that multiple calls can be chained. - - - - Configures stored procedures to be used for modifying this relationship. - The default conventions for procedure and parameter names will be used. - - The same instance so that multiple calls can be chained. - - - - Configures stored procedures to be used for modifying this relationship. - - - Configuration to override the default conventions for procedure and parameter names. - - The same instance so that multiple calls can be chained. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Used to configure a property of an entity type or complex type. - This configuration functionality is available via the Code First Fluent API, see . - - - - - Configures the property to allow the maximum length supported by the database provider. - - The same BinaryPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to have the specified maximum length. - - The maximum length for the property. Setting 'null' will remove any maximum length restriction from the property. - The same BinaryPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be fixed length. - Use HasMaxLength to set the length that the property is fixed to. - - The same BinaryPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be variable length. - properties are variable length by default. - - The same BinaryPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be optional. - The database column used to store this property will be nullable. - properties are optional by default. - - The same BinaryPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be required. - The database column used to store this property will be non-nullable. - - The same BinaryPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures how values for the property are generated by the database. - - - The pattern used to generate values for the property in the database. - Setting 'null' will cause the default option to be used, which may be 'None', 'Identity', or 'Computed' depending - on the type of the property, its semantics in the model (e.g. primary keys are treated differently), and which - set of conventions are being used. - - The same BinaryPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be used as an optimistic concurrency token. - - The same BinaryPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures whether or not the property is to be used as an optimistic concurrency token. - - Value indicating if the property is a concurrency token or not. Specifying 'null' will remove the concurrency token facet from the property. Specifying 'null' will cause the same runtime behavior as specifying 'false'. - The same BinaryPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the name of the database column used to store the property. - - The name of the column. - The same BinaryPropertyConfiguration instance so that multiple calls can be chained. - - - - Sets an annotation in the model for the database column used to store the property. The annotation - value can later be used when processing the column such as when creating migrations. - - - It will likely be necessary to register a if the type of - the annotation value is anything other than a string. Passing a null value clears any annotation with - the given name on the column that had been previously set. - - The annotation name, which must be a valid C#/EDM identifier. - The annotation value, which may be a string or some other type that - can be serialized with an . - The same BinaryPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the data type of the database column used to store the property. - - Name of the database provider specific data type. - The same BinaryPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the order of the database column used to store the property. - This method is also used to specify key ordering when an entity type has a composite key. - - The order that this column should appear in the database table. - The same BinaryPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be a row version in the database. - The actual data type will vary depending on the database provider being used. - Setting the property to be a row version will automatically configure it to be an - optimistic concurrency token. - - The same BinaryPropertyConfiguration instance so that multiple calls can be chained. - - - - Used to configure a property of an entity type or complex type. - This configuration functionality is available via the Code First Fluent API, see . - - - - - Configures the property to be optional. - The database column used to store this property will be nullable. - - The same DateTimePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be required. - The database column used to store this property will be non-nullable. - properties are required by default. - - The same DateTimePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures how values for the property are generated by the database. - - - The pattern used to generate values for the property in the database. - Setting 'null' will cause the default option to be used, which may be 'None', 'Identity', or 'Computed' depending - on the type of the property, its semantics in the model (e.g. primary keys are treated differently), and which - set of conventions are being used. - - The same DateTimePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be used as an optimistic concurrency token. - - The same DateTimePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures whether or not the property is to be used as an optimistic concurrency token. - - Value indicating if the property is a concurrency token or not. Specifying 'null' will remove the concurrency token facet from the property. Specifying 'null' will cause the same runtime behavior as specifying 'false'. - The same DateTimePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the name of the database column used to store the property. - - The name of the column. - The same DateTimePropertyConfiguration instance so that multiple calls can be chained. - - - - Sets an annotation in the model for the database column used to store the property. The annotation - value can later be used when processing the column such as when creating migrations. - - - It will likely be necessary to register a if the type of - the annotation value is anything other than a string. Passing a null value clears any annotation with - the given name on the column that had been previously set. - - The annotation name, which must be a valid C#/EDM identifier. - The annotation value, which may be a string or some other type that - can be serialized with an . - The same DateTimePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the data type of the database column used to store the property. - - Name of the database provider specific data type. - The same DateTimePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the order of the database column used to store the property. - This method is also used to specify key ordering when an entity type has a composite key. - - The order that this column should appear in the database table. - The same DateTimePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the precision of the property. - If the database provider does not support precision for the data type of the column then the value is ignored. - - Precision of the property. - The same DateTimePropertyConfiguration instance so that multiple calls can be chained. - - - - Used to configure a property of an entity type or complex type. - This configuration functionality is available via the Code First Fluent API, see . - - - - - Configures the property to be optional. - The database column used to store this property will be nullable. - - The same DecimalPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be required. - The database column used to store this property will be non-nullable. - properties are required by default. - - The same DecimalPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures how values for the property are generated by the database. - - - The pattern used to generate values for the property in the database. - Setting 'null' will cause the default option to be used, which may be 'None', 'Identity', or 'Computed' depending - on the type of the property, its semantics in the model (e.g. primary keys are treated differently), and which - set of conventions are being used. - - The same DecimalPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be used as an optimistic concurrency token. - - The same DecimalPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures whether or not the property is to be used as an optimistic concurrency token. - - Value indicating if the property is a concurrency token or not. Specifying 'null' will remove the concurrency token facet from the property. Specifying 'null' will cause the same runtime behavior as specifying 'false'. - The same DecimalPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the name of the database column used to store the property. - - The name of the column. - The same DecimalPropertyConfiguration instance so that multiple calls can be chained. - - - - Sets an annotation in the model for the database column used to store the property. The annotation - value can later be used when processing the column such as when creating migrations. - - - It will likely be necessary to register a if the type of - the annotation value is anything other than a string. Passing a null value clears any annotation with - the given name on the column that had been previously set. - - The annotation name, which must be a valid C#/EDM identifier. - The annotation value, which may be a string or some other type that - can be serialized with an . - The same DecimalPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the data type of the database column used to store the property. - - Name of the database provider specific data type. - The same DecimalPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the order of the database column used to store the property. - This method is also used to specify key ordering when an entity type has a composite key. - - The order that this column should appear in the database table. - The same DecimalPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the precision and scale of the property. - - The precision of the property. - The scale of the property. - The same DecimalPropertyConfiguration instance so that multiple calls can be chained. - - - - Used to configure a property with length facets for an entity type or complex type. - This configuration functionality is available via the Code First Fluent API, see . - - - - - Configures the property to allow the maximum length supported by the database provider. - - The same LengthPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to have the specified maximum length. - - The maximum length for the property. Setting 'null' will remove any maximum length restriction from the property and a default length will be used for the database column. - The same LengthPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be fixed length. - Use HasMaxLength to set the length that the property is fixed to. - - The same LengthPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be variable length. - Properties are variable length by default. - - The same LengthPropertyConfiguration instance so that multiple calls can be chained. - - - - Used to configure a primitive property of an entity type or complex type. - This configuration functionality is available via the Code First Fluent API, see . - - - - - Configures the property to be optional. - The database column used to store this property will be nullable. - - The same PrimitivePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be required. - The database column used to store this property will be non-nullable. - - The same PrimitivePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures how values for the property are generated by the database. - - - The pattern used to generate values for the property in the database. - Setting 'null' will cause the default option to be used, which may be 'None', 'Identity', or 'Computed' depending - on the type of the property, its semantics in the model (e.g. primary keys are treated differently), and which - set of conventions are being used. - - The same PrimitivePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be used as an optimistic concurrency token. - - The same PrimitivePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures whether or not the property is to be used as an optimistic concurrency token. - - Value indicating if the property is a concurrency token or not. Specifying 'null' will remove the concurrency token facet from the property. Specifying 'null' will cause the same runtime behavior as specifying 'false'. - The same PrimitivePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the data type of the database column used to store the property. - - Name of the database provider specific data type. - The same PrimitivePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the name of the database column used to store the property. - - The name of the column. - The same PrimitivePropertyConfiguration instance so that multiple calls can be chained. - - - - Sets an annotation in the model for the database column used to store the property. The annotation - value can later be used when processing the column such as when creating migrations. - - - It will likely be necessary to register a if the type of - the annotation value is anything other than a string. Passing a null value clears any annotation with - the given name on the column that had been previously set. - - The annotation name, which must be a valid C#/EDM identifier. - The annotation value, which may be a string or some other type that - can be serialized with an . - The same PrimitivePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the name of the parameter used in stored procedures for this property. - - Name of the parameter. - The same PrimitivePropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the order of the database column used to store the property. - This method is also used to specify key ordering when an entity type has a composite key. - - The order that this column should appear in the database table. - The same PrimitivePropertyConfiguration instance so that multiple calls can be chained. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Used to configure a property in a mapping fragment. - This configuration functionality is available via the Code First Fluent API, see . - - - - - Configures the name of the database column used to store the property, in a mapping fragment. - - The name of the column. - The same PropertyMappingConfiguration instance so that multiple calls can be chained. - - - - Sets an annotation in the model for the database column used to store the property. The annotation - value can later be used when processing the column such as when creating migrations. - - - It will likely be necessary to register a if the type of - the annotation value is anything other than a string. Passing a null value clears any annotation with - the given name on the column that had been previously set. - - The annotation name, which must be a valid C#/EDM identifier. - The annotation value, which may be a string or some other type that - can be serialized with an . - The same PropertyMappingConfiguration instance so that multiple calls can be chained. - - - - Used to configure a property of an entity type or complex type. - This configuration functionality is available via the Code First Fluent API, see . - - - - - Configures the property to allow the maximum length supported by the database provider. - - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to have the specified maximum length. - - The maximum length for the property. Setting 'null' will remove any maximum length restriction from the property and a default length will be used for the database column.. - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be fixed length. - Use HasMaxLength to set the length that the property is fixed to. - - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be variable length. - properties are variable length by default. - - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be optional. - The database column used to store this property will be nullable. - properties are optional by default. - - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be required. - The database column used to store this property will be non-nullable. - - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures how values for the property are generated by the database. - - - The pattern used to generate values for the property in the database. - Setting 'null' will cause the default option to be used, which may be 'None', 'Identity', or 'Computed' depending - on the type of the property, its semantics in the model (e.g. primary keys are treated differently), and which - set of conventions are being used. - - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to be used as an optimistic concurrency token. - - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures whether or not the property is to be used as an optimistic concurrency token. - - Value indicating if the property is a concurrency token or not. Specifying 'null' will remove the concurrency token facet from the property. Specifying 'null' will cause the same runtime behavior as specifying 'false'. - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the name of the database column used to store the property. - - The name of the column. - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Sets an annotation in the model for the database column used to store the property. The annotation - value can later be used when processing the column such as when creating migrations. - - - It will likely be necessary to register a if the type of - the annotation value is anything other than a string. Passing a null value clears any annotation with - the given name on the column that had been previously set. - - The annotation name, which must be a valid C#/EDM identifier. - The annotation value, which may be a string or some other type that - can be serialized with an . - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the data type of the database column used to store the property. - - Name of the database provider specific data type. - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the order of the database column used to store the property. - This method is also used to specify key ordering when an entity type has a composite key. - - The order that this column should appear in the database table. - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures the property to support Unicode string content. - - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Configures whether or not the property supports Unicode string content. - - Value indicating if the property supports Unicode string content or not. Specifying 'null' will remove the Unicode facet from the property. Specifying 'null' will cause the same runtime behavior as specifying 'false'. - The same StringPropertyConfiguration instance so that multiple calls can be chained. - - - - Used to configure a primitive property of an entity type or complex type. - This configuration functionality is available via lightweight conventions. - - - - - Gets the for this property. - - - - - Configures the name of the database column used to store the property. - - The name of the column. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Sets an annotation in the model for the database column used to store the property. The annotation - value can later be used when processing the column such as when creating migrations. - - - It will likely be necessary to register a if the type of - the annotation value is anything other than a string. Calling this method will have no effect if the - annotation with the given name has already been configured. - - The annotation name, which must be a valid C#/EDM identifier. - The annotation value, which may be a string or some other type that - can be serialized with an . - The same configuration instance so that multiple calls can be chained. - - - - Configures the name of the parameter used in stored procedures for this property. - - Name of the parameter. - - The same instance so that multiple calls can be chained. - - - - - Configures the order of the database column used to store the property. - This method is also used to specify key ordering when an entity type has a composite key. - - The order that this column should appear in the database table. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Configures the data type of the database column used to store the property. - - Name of the database provider specific data type. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Configures the property to be used as an optimistic concurrency token. - - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Configures whether or not the property is to be used as an optimistic concurrency token. - - Value indicating if the property is a concurrency token or not. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Configures how values for the property are generated by the database. - - The pattern used to generate values for the property in the database. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Configures the property to be optional. - The database column used to store this property will be nullable. - - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Configures the property to be required. - The database column used to store this property will be non-nullable. - - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Configures the property to support Unicode string content. - - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - This method throws if the property is not a . - - - - - Configures whether or not the property supports Unicode string content. - - Value indicating if the property supports Unicode string content or not. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - This method throws if the property is not a . - - - - - Configures the property to be fixed length. - Use HasMaxLength to set the length that the property is fixed to. - - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - This method throws if the property does not have length facets. - - - - - Configures the property to be variable length. - Properties are variable length by default. - - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - This method throws if the property does not have length facets. - - - - - Configures the property to have the specified maximum length. - - The maximum length for the property. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - This method throws if the property does not have length facets. - - - - - Configures the property to allow the maximum length supported by the database provider. - - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - This method throws if the property does not have length facets. - - - - - Configures the precision of the property. - If the database provider does not support precision for the data type of the column then the value is ignored. - - Precision of the property. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - This method will throw if the property is not a . - - - - - Configures the precision and scale of the property. - - The precision of the property. - The scale of the property. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - This method will throw if the property is not a . - - - - - Configures the property to be a row version in the database. - The actual data type will vary depending on the database provider being used. - Setting the property to be a row version will automatically configure it to be an - optimistic concurrency token. - - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - This method throws if the property is not a . - - - - - Configures this property to be part of the entity type's primary key. - - - The same instance so that - multiple calls can be chained. - - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Allows configuration to be performed for an entity type in a model. - This configuration functionality is available via lightweight conventions. - - - - - Gets the of this entity type. - - - - - Configures the entity set name to be used for this entity type. - The entity set name can only be configured for the base type in each set. - - The name of the entity set. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Excludes this entity type from the model so that it will not be mapped to the database. - - - The same instance so that multiple calls can be chained. - - - - - Changes this entity type to a complex type. - - - The same instance so that multiple calls can be chained. - - - - - Excludes a property from the model so that it will not be mapped to the database. - - The name of the property to be configured. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect if the property does not exist. - - - - - Excludes a property from the model so that it will not be mapped to the database. - - The property to be configured. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect if the property does not exist. - - - - - Configures a property that is defined on this type. - - The name of the property being configured. - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - The property being configured. - A configuration object that can be used to configure the property. - - - - Configures the primary key property for this entity type. - - The name of the property to be used as the primary key. - - The same instance so that multiple calls can be chained. - - - - - Configures the primary key property for this entity type. - - The property to be used as the primary key. - - The same instance so that multiple calls can be chained. - - - - - Configures the primary key property(s) for this entity type. - - The names of the properties to be used as the primary key. - - The same instance so that multiple calls can be chained. - - - - - Configures the primary key property(s) for this entity type. - - The properties to be used as the primary key. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured or if any - property does not exist. - - - - - Configures the table name that this entity type is mapped to. - - The name of the table. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Configures the table name that this entity type is mapped to. - - The name of the table. - The database schema of the table. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Sets an annotation in the model for the table to which this entity is mapped. The annotation - value can later be used when processing the table such as when creating migrations. - - - It will likely be necessary to register a if the type of - the annotation value is anything other than a string. Calling this method will have no effect if the - annotation with the given name has already been configured. - - The annotation name, which must be a valid C#/EDM identifier. - The annotation value, which may be a string or some other type that - can be serialized with an . - The same configuration instance so that multiple calls can be chained. - - - - Configures this type to use stored procedures for insert, update and delete. - The default conventions for procedure and parameter names will be used. - - The same configuration instance so that multiple calls can be chained. - - - - Configures this type to use stored procedures for insert, update and delete. - - - Configuration to override the default conventions for procedure and parameter names. - - The same configuration instance so that multiple calls can be chained. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Allows configuration to be performed for an entity type in a model. - This configuration functionality is available via lightweight conventions. - - A type inherited by the entity type. - - - - Gets the of this entity type. - - - - - Configures the entity set name to be used for this entity type. - The entity set name can only be configured for the base type in each set. - - The name of the entity set. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Excludes this entity type from the model so that it will not be mapped to the database. - - - The same instance so that multiple calls can be chained. - - - - - Changes this entity type to a complex type. - - - The same instance so that multiple calls can be chained. - - - - - Excludes a property from the model so that it will not be mapped to the database. - - The type of the property to be ignored. - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - - The same instance so that multiple calls can be chained. - - - - - Configures a property that is defined on this type. - - The type of the property being configured. - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures the primary key property(s) for this entity type. - - The type of the key. - A lambda expression representing the property to be used as the primary key. C#: t => t.Id VB.Net: Function(t) t.Id If the primary key is made up of multiple properties then specify an anonymous type including the properties. C#: t => new { t.Id1, t.Id2 } VB.Net: Function(t) New With { t.Id1, t.Id2 } - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Configures the table name that this entity type is mapped to. - - The name of the table. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Configures the table name that this entity type is mapped to. - - The name of the table. - The database schema of the table. - - The same instance so that multiple calls can be chained. - - - Calling this will have no effect once it has been configured. - - - - - Sets an annotation in the model for the table to which this entity is mapped. The annotation - value can later be used when processing the table such as when creating migrations. - - - It will likely be necessary to register a if the type of - the annotation value is anything other than a string. Calling this method will have no effect if the - annotation with the given name has already been configured. - - The annotation name, which must be a valid C#/EDM identifier. - The annotation value, which may be a string or some other type that - can be serialized with an . - The same configuration instance so that multiple calls can be chained. - - - - Configures this type to use stored procedures for insert, update and delete. - The default conventions for procedure and parameter names will be used. - - The same configuration instance so that multiple calls can be chained. - - - - Configures this type to use stored procedures for insert, update and delete. - - - Configuration to override the default conventions for procedure and parameter names. - - The same configuration instance so that multiple calls can be chained. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Allows configuration to be performed for a type in a model. - - The type to be configured. - - - - Configures a property that is defined on this type. - - The type of the property being configured. - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - The type of the property being configured. - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - Configures a property that is defined on this type. - - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to configure the property. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - A general purpose class for Code First conventions that read attributes from .NET properties - and generate column annotations based on those attributes. - - The type of attribute to discover. - The type of annotation that will be created. - - - - Constructs a convention that will create column annotations with the given name and - using the given factory delegate. - - The name of the annotations to create. - A factory for creating the annotation on each column. - - - - A general purpose class for Code First conventions that read attributes from .NET types - and generate table annotations based on those attributes. - - The type of attribute to discover. - The type of annotation that will be created. - - - - Constructs a convention that will create table annotations with the given name and - using the given factory delegate. - - The name of the annotations to create. - A factory for creating the annotation on each table. - - - - Convention to process instances of found on properties in the model - - - - - - - - Convention to process instances of found on properties in the model. - - - - - - - - Convention to process instances of found on properties in the model. - - - - - - - - Convention to process instances of found on foreign key properties in the model. - - - - - - - - A convention for discovering attributes on properties and generating - column annotations in the model. - - - - - Constructs a new instance of the convention. - - - - - Convention to process instances of found on properties in the model. - - - - - - - - Convention to process instances of found on properties in the model. - - - - - Convention to process instances of found on properties in the model. - - - - - - - - Convention to process instances of found on properties in the model. - - - - - - - - Base class for conventions that process CLR attributes found on primitive properties in the model. - - The type of the attribute to look for. - - - - Initializes a new instance of the class. - - - - - Applies this convention to a property that has an attribute of type TAttribute applied. - - The configuration for the property that has the attribute. - The attribute. - - - - Base class for conventions that process CLR attributes found on properties of types in the model. - - - Note that the derived convention will be applied for any non-static property on the mapped type that has - the specified attribute, even if it wasn't included in the model. - - The type of the attribute to look for. - - - - Initializes a new instance of the class. - - - - - Applies this convention to a property that has an attribute of type TAttribute applied. - - The member info for the property that has the attribute. - The configuration for the class that contains the property. - The attribute. - - - - Convention to process instances of found on navigation properties in the model. - - - - - Convention to process instances of found on primitive properties in the model. - - - - - - - - Convention to process instances of found on properties in the model. - - - - - - - - Convention to process instances of found on properties in the model. - - - - - - - - Convention to process instances of found on types in the model. - - - - - - - - Convention to process instances of found on types in the model. - - - - - - - - Convention to process instances of found on types in the model. - - - - - - - - Base class for conventions that process CLR attributes found in the model. - - The type of the attribute to look for. - - - - Initializes a new instance of the class. - - - - - Applies this convention to a class that has an attribute of type TAttribute applied. - - The configuration for the class that contains the property. - The attribute. - - - - A convention that doesn't override configuration. - - - - - The derived class can use the default constructor to apply a set rule of that change the model configuration. - - - - - Begins configuration of a lightweight convention that applies to all mapped types in - the model. - - A configuration object for the convention. - - - - Begins configuration of a lightweight convention that applies to all mapped types in - the model that derive from or implement the specified type. - - The type of the entities that this convention will apply to. - A configuration object for the convention. - This method does not add new types to the model. - - - - Begins configuration of a lightweight convention that applies to all properties - in the model. - - A configuration object for the convention. - - - - Begins configuration of a lightweight convention that applies to all primitive - properties of the specified type in the model. - - The type of the properties that the convention will apply to. - A configuration object for the convention. - - The convention will apply to both nullable and non-nullable properties of the - specified type. - - - - - Convention to detect navigation properties to be inverses of each other when only one pair - of navigation properties exists between the related types. - - - - - - - - Convention to configure a type as a complex type if it has no primary key, no mapped base type and no navigation properties. - - - - - - - - Convention to apply column ordering specified via - - or the API. - - - - - - - - Validates the ordering configuration supplied for columns. - This base implementation is a no-op. - - The name of the table that the columns belong to. - The definition of the table. - - - - Convention to apply column ordering specified via - - or the API. This convention throws if a duplicate configured column order - is detected. - - - - - Validates the ordering configuration supplied for columns to ensure - that the same ordinal was not supplied for two columns. - - The name of the table that the columns belong to. - The definition of the table. - - - - Convention to introduce indexes for foreign keys. - - - - - - - - Convention to add a cascade delete to the join table from both tables involved in a many to many relationship. - - - - - Convention to ensure an invalid/unsupported mapping is not created when mapping inherited properties - - - - - Convention to set the table name to be a pluralized version of the entity type name. - - - - - - - - Convention to set precision to 18 and scale to 2 for decimal properties. - - - - - Initializes a new instance of with the default precision and scale. - - - - - Initializes a new instance of with the specified precision and scale. - - Precision - Scale - - - - - - - Convention to move primary key properties to appear first. - - - - - - - - Convention to distinguish between optional and required relationships based on CLR nullability of the foreign key property. - - - - - - - - Base class for conventions that discover foreign key properties. - - - - - Returns true if the convention supports pairs of entity types that have multiple associations defined between them. - - - - - When overridden returns true if should be part of the foreign key. - - The association type being configured. - The dependent end. - The candidate property on the dependent end. - The principal end entity type. - A key property on the principal end that is a candidate target for the foreign key. - true if dependentProperty should be a part of the foreign key; otherwise, false. - - - - - - - Convention to process instances of found on navigation properties in the model. - - - - - - - - Convention to detect primary key properties. - Recognized naming patterns in order of precedence are: - 1. 'Id' - 2. [type name]Id - Primary key detection is case insensitive. - - - - - - - - Base class for conventions that discover primary key properties. - - - - - - - - When overridden returns the subset of properties that will be part of the primary key. - - The entity type. - The primitive types of the entities - The properties that should be part of the primary key. - - - - Convention to discover foreign key properties whose names are a combination - of the dependent navigation property name and the principal type primary key property name(s). - - - - - - - - - - - Convention to enable cascade delete for any required relationships. - - - - - - - - Convention to configure the primary key(s) of the dependent entity type as foreign key(s) in a one:one relationship. - - - - - - - - Convention to set the entity set name to be a pluralized version of the entity type name. - - - - - - - - Convention to discover foreign key properties whose names match the principal type primary key property name(s). - - - - - - - - Convention to set a maximum length for properties whose type supports length facets. The default value is 128. - - - - - Initializes a new instance of with the default length. - - - - - Initializes a new instance of with the specified length. - - The maximum length of properties. - - - - - - - - - - - - - Convention to set a default maximum length of 4000 for properties whose type supports length facets when SqlCe is the provider. - - - - - Initializes a new instance of with the default length. - - - - - Initializes a new instance of with the specified length. - - The default maximum length for properties. - - - - - - - - - - Convention to configure integer primary keys to be identity. - - - - - - - - Convention to discover foreign key properties whose names are a combination - of the principal type name and the principal type primary key property name(s). - - - - - - - - A convention that operates on the conceptual section of the model after the model is created. - - The type of metadata item that this convention operates on. - - - - Applies this convention to an item in the model. - - The item to apply the convention to. - The model. - - - - Identifies conventions that can be added to or removed from a instance. - - - Note that implementations of this interface must be immutable. - - - - - A convention that operates on the database section of the model after the model is created. - - The type of metadata item that this convention operates on. - - - - Applies this convention to an item in the model. - - The item to apply the convention to. - The model. - - - - Allows configuration to be performed for an entity type in a model. - An EntityTypeConfiguration can be obtained via the Entity method on - or a custom type derived from EntityTypeConfiguration - can be registered via the Configurations property on . - - The entity type being configured. - - - - Initializes a new instance of EntityTypeConfiguration - - - - - Configures the primary key property(s) for this entity type. - - The type of the key. - A lambda expression representing the property to be used as the primary key. C#: t => t.Id VB.Net: Function(t) t.Id If the primary key is made up of multiple properties then specify an anonymous type including the properties. C#: t => new { t.Id1, t.Id2 } VB.Net: Function(t) New With { t.Id1, t.Id2 } - The same EntityTypeConfiguration instance so that multiple calls can be chained. - - - - Configures the primary key property(s) for this entity type. - - The type of the key. - A lambda expression representing the property to be used as the primary key. C#: t => t.Id VB.Net: Function(t) t.Id If the primary key is made up of multiple properties then specify an anonymous type including the properties. C#: t => new { t.Id1, t.Id2 } VB.Net: Function(t) New With { t.Id1, t.Id2 } - A builder to configure the key. - The same EntityTypeConfiguration instance so that multiple calls can be chained. - - - - Configures index property(s) for this entity type. - - The type of the index. - A lambda expression representing the property to apply an index to. C#: t => t.Id VB.Net: Function(t) t.Id If the index is made up of multiple properties then specify an anonymous type including the properties. C#: t => new { t.Id1, t.Id2 } VB.Net: Function(t) New With { t.Id1, t.Id2 } - The IndexConfiguration instance so that the index can be further configured. - - - - Configures the entity set name to be used for this entity type. - The entity set name can only be configured for the base type in each set. - - The name of the entity set. - The same EntityTypeConfiguration instance so that multiple calls can be chained. - - - - Excludes a property from the model so that it will not be mapped to the database. - - The type of the property to be ignored. - A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - The same EntityTypeConfiguration instance so that multiple calls can be chained. - - - - Configures the table name that this entity type is mapped to. - - The name of the table. - The same EntityTypeConfiguration instance so that multiple calls can be chained. - - - - Configures the table name that this entity type is mapped to. - - The name of the table. - The database schema of the table. - The same EntityTypeConfiguration instance so that multiple calls can be chained. - - - - Sets an annotation in the model for the table to which this entity is mapped. The annotation - value can later be used when processing the table such as when creating migrations. - - - It will likely be necessary to register a if the type of - the annotation value is anything other than a string. Passing a null value clears any annotation with - the given name on the column that had been previously set. - - The annotation name, which must be a valid C#/EDM identifier. - The annotation value, which may be a string or some other type that - can be serialized with an . - The same configuration instance so that multiple calls can be chained. - - - - Configures this type to use stored procedures for insert, update and delete. - The default conventions for procedure and parameter names will be used. - - The same configuration instance so that multiple calls can be chained. - - - - Configures this type to use stored procedures for insert, update and delete. - - - Configuration to override the default conventions for procedure and parameter names. - - The same configuration instance so that multiple calls can be chained. - - - - Allows advanced configuration related to how this entity type is mapped to the database schema. - By default, any configuration will also apply to any type derived from this entity type. - Derived types can be configured via the overload of Map that configures a derived type or - by using an EntityTypeConfiguration for the derived type. - The properties of an entity can be split between multiple tables using multiple Map calls. - Calls to Map are additive, subsequent calls will not override configuration already preformed via Map. - - - An action that performs configuration against an - - . - - The same EntityTypeConfiguration instance so that multiple calls can be chained. - - - - Allows advanced configuration related to how a derived entity type is mapped to the database schema. - Calls to Map are additive, subsequent calls will not override configuration already preformed via Map. - - The derived entity type to be configured. - - An action that performs configuration against an - - . - - The same EntityTypeConfiguration instance so that multiple calls can be chained. - - - - Configures an optional relationship from this entity type. - Instances of the entity type will be able to be saved to the database without this relationship being specified. - The foreign key in the database will be nullable. - - The type of the entity at the other end of the relationship. - A lambda expression representing the navigation property for the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to further configure the relationship. - - - - Configures a required relationship from this entity type. - Instances of the entity type will not be able to be saved to the database unless this relationship is specified. - The foreign key in the database will be non-nullable. - - The type of the entity at the other end of the relationship. - A lambda expression representing the navigation property for the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to further configure the relationship. - - - - Configures a many relationship from this entity type. - - The type of the entity at the other end of the relationship. - A lambda expression representing the navigation property for the relationship. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty - A configuration object that can be used to further configure the relationship. - - - - - - - - - - - - - - - - Exception thrown by during model creation when an invalid model is generated. - - - - - Initializes a new instance of ModelValidationException - - - - - Initializes a new instance of ModelValidationException - - The exception message. - - - - Initializes a new instance of ModelValidationException - - The exception message. - The inner exception. - - - Initializes a new instance of class serialization info and streaming context. - The serialization info. - The streaming context. - - - - By default expression like - .Select(x => NewProperty = func(x.Property)).Where(x => x.NewProperty == ...) - are simplified to avoid nested SELECT - In some cases, simplifying query with UDFs could caused to suboptimal plans due to calling UDF twice. - Also some SQL functions aren't allow in WHERE clause. - Disabling that behavior - - - - - An implementation of that will use Code First Migrations - to update the database to the latest version. - - The type of the context. - The type of the migrations configuration to use during initialization. - - - - Initializes a new instance of the MigrateDatabaseToLatestVersion class that will use - the connection information from a context constructed using the default constructor - or registered factory if applicable - - - - - Initializes a new instance of the MigrateDatabaseToLatestVersion class specifying whether to - use the connection information from the context that triggered initialization to perform the migration. - - - If set to true the initializer is run using the connection information from the context that - triggered initialization. Otherwise, the connection information will be taken from a context constructed - using the default constructor or registered factory if applicable. - - - - - Initializes a new instance of the MigrateDatabaseToLatestVersion class specifying whether to - use the connection information from the context that triggered initialization to perform the migration. - Also allows specifying migrations configuration to use during initialization. - - - If set to true the initializer is run using the connection information from the context that - triggered initialization. Otherwise, the connection information will be taken from a context constructed - using the default constructor or registered factory if applicable. - - Migrations configuration to use during initialization. - - - - Initializes a new instance of the MigrateDatabaseToLatestVersion class that will - use a specific connection string from the configuration file to connect to - the database to perform the migration. - - The name of the connection string to use for migration. - - - - - - - Helper class that is used to configure a column. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Creates a new column definition to store Binary data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - The maximum allowable length of the array data. - Value indicating whether or not all data should be padded to the maximum length. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - Value indicating whether or not this column should be configured as a timestamp. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store Boolean data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store Byte data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - Value indicating whether or not the database will generate values for this column during insert. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store DateTime data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - The precision of the column. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store Decimal data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - The numeric precision of the column. - The numeric scale of the column. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Value indicating whether or not the database will generate values for this column during insert. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store Double data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store GUID data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - Value indicating whether or not the database will generate values for this column during insert. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store Single data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store Short data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - Value indicating whether or not the database will generate values for this column during insert. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store Integer data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - Value indicating whether or not the database will generate values for this column during insert. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store Long data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - Value indicating whether or not the database will generate values for this column during insert. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store String data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - The maximum allowable length of the string data. - Value indicating whether or not all data should be padded to the maximum length. - Value indicating whether or not the column supports Unicode content. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store Time data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - The precision of the column. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store DateTimeOffset data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - The precision of the column. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store hierarchyid data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store geography data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - Creates a new column definition to store geometry data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Value indicating whether or not the column allows null values. - Constant value to use as the default value for this column. - SQL expression used as the default value for this column. - The name of the column. - Provider specific data type to use for this column. - Custom annotations usually from the Code First model. - The newly constructed column definition. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Creates a shallow copy of the current . - - A shallow copy of the current . - - - - Helper class that is used to configure a parameter. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Creates a new parameter definition to pass Binary data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The maximum allowable length of the array data. - Value indicating whether or not all data should be padded to the maximum length. - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass Boolean data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass Byte data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass DateTime data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The precision of the parameter. - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass Decimal data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The numeric precision of the parameter. - The numeric scale of the parameter. - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass Double data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass GUID data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass Single data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass Short data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass Integer data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass Long data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass String data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The maximum allowable length of the string data. - Value indicating whether or not all data should be padded to the maximum length. - Value indicating whether or not the parameter supports Unicode content. - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass Time data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The precision of the parameter. - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass DateTimeOffset data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The precision of the parameter. - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass geography data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - Creates a new parameter definition to pass geometry data. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Constant value to use as the default value for this parameter. - SQL expression used as the default value for this parameter. - The name of the parameter. - Provider specific data type to use for this parameter. - A value indicating whether the parameter is an output parameter. - The newly constructed parameter definition. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Creates a shallow copy of the current . - - A shallow copy of the current . - - - - Helper class that is used to further configure a table being created from a CreateTable call on - - . - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The type that represents the table's columns. - - - - Initializes a new instance of the TableBuilder class. - - The table creation operation to be further configured. - The migration the table is created in. - - - - Specifies a primary key for the table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - A lambda expression representing the property to be used as the primary key. C#: t => t.Id VB.Net: Function(t) t.Id If the primary key is made up of multiple properties then specify an anonymous type including the properties. C#: t => new { t.Id1, t.Id2 } VB.Net: Function(t) New With { t.Id1, t.Id2 } - The name of the primary key. If null is supplied, a default name will be generated. - A value indicating whether or not this is a clustered primary key. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - Itself, so that multiple calls can be chained. - - - - Specifies an index to be created on the table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - A lambda expression representing the property to be indexed. C#: t => t.PropertyOne VB.Net: Function(t) t.PropertyOne If multiple properties are to be indexed then specify an anonymous type including the properties. C#: t => new { t.PropertyOne, t.PropertyTwo } VB.Net: Function(t) New With { t.PropertyOne, t.PropertyTwo } - The name of the index. - A value indicating whether or not this is a unique index. - A value indicating whether or not this is a clustered index. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - Itself, so that multiple calls can be chained. - - - - Specifies a foreign key constraint to be created on the table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Name of the table that the foreign key constraint targets. - A lambda expression representing the properties of the foreign key. C#: t => t.PropertyOne VB.Net: Function(t) t.PropertyOne If multiple properties make up the foreign key then specify an anonymous type including the properties. C#: t => new { t.PropertyOne, t.PropertyTwo } VB.Net: Function(t) New With { t.PropertyOne, t.PropertyTwo } - A value indicating whether or not cascade delete should be configured on the foreign key constraint. - The name of this foreign key constraint. If no name is supplied, a default name will be calculated. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - Itself, so that multiple calls can be chained. - - - - - - - - - - - - - Gets the of the current instance. - - The exact runtime type of the current instance. - - - - Creates a shallow copy of the current . - - A shallow copy of the current . - - - - Base class for code-based migrations. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Operations to be performed during the upgrade process. - - - - - Operations to be performed during the downgrade process. - - - - - Adds an operation to create a new stored procedure. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the stored procedure. Schema name is optional, if no schema is specified then dbo is - assumed. - - The body of the stored procedure. - - The additional arguments that may be processed by providers. Use anonymous type syntax - to specify arguments. For example, 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to create a new stored procedure. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the stored procedure. Schema name is optional, if no schema is specified then dbo is - assumed. - - The action that specifies the parameters of the stored procedure. - The body of the stored procedure. - - The additional arguments that may be processed by providers. Use anonymous type syntax - to specify arguments. For example, 'new { SampleArgument = "MyValue" }'. - - - The parameters in this create stored procedure operation. You do not need to specify this - type, it will be inferred from the parameter you supply. - - - - - Adds an operation to alter a stored procedure. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the stored procedure. Schema name is optional, if no schema is specified then dbo is - assumed. - - The body of the stored procedure. - - The additional arguments that may be processed by providers. Use anonymous type syntax - to specify arguments. For example, 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to alter a stored procedure. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The parameters in this alter stored procedure operation. You do not need to specify this - type, it will be inferred from the parameter you supply. - - - The name of the stored procedure. Schema name is optional, if no schema is specified then dbo is - assumed. - - The action that specifies the parameters of the stored procedure. - The body of the stored procedure. - - The additional arguments that may be processed by providers. Use anonymous type syntax - to specify arguments. For example, 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop an existing stored procedure with the specified name. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the procedure to drop. Schema name is optional, if no schema is specified then dbo is - assumed. - - - The additional arguments that may be processed by providers. Use anonymous type syntax - to specify arguments. For example, 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to create a new table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The columns in this create table operation. You do not need to specify this type, it will - be inferred from the columnsAction parameter you supply. - - The name of the table. Schema name is optional, if no schema is specified then dbo is assumed. - - An action that specifies the columns to be included in the table. i.e. t => new { Id = - t.Int(identity: true), Name = t.String() } - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - An object that allows further configuration of the table creation operation. - - - - Adds an operation to create a new table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The columns in this create table operation. You do not need to specify this type, it will - be inferred from the columnsAction parameter you supply. - - The name of the table. Schema name is optional, if no schema is specified then dbo is assumed. - - An action that specifies the columns to be included in the table. i.e. t => new { Id = - t.Int(identity: true), Name = t.String() } - - Custom annotations that exist on the table to be created. May be null or empty. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - An object that allows further configuration of the table creation operation. - - - - Adds an operation to handle changes in the annotations defined on tables. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The columns in this operation. You do not need to specify this type, it will - be inferred from the columnsAction parameter you supply. - - The name of the table. Schema name is optional, if no schema is specified then dbo is assumed. - - An action that specifies the columns to be included in the table. i.e. t => new { Id = - t.Int(identity: true), Name = t.String() } - - The custom annotations on the table that have changed. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to create a new foreign key constraint. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The table that contains the foreign key column. Schema name is optional, if no schema is - specified then dbo is assumed. - - The foreign key column. - - The table that contains the column this foreign key references. Schema name is optional, - if no schema is specified then dbo is assumed. - - - The column this foreign key references. If no value is supplied the primary key of the - principal table will be referenced. - - - A value indicating if cascade delete should be configured for the foreign key - relationship. If no value is supplied, cascade delete will be off. - - - The name of the foreign key constraint in the database. If no value is supplied a unique name will - be generated. - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to create a new foreign key constraint. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The table that contains the foreign key columns. Schema name is optional, if no schema is - specified then dbo is assumed. - - The foreign key columns. - - The table that contains the columns this foreign key references. Schema name is optional, - if no schema is specified then dbo is assumed. - - - The columns this foreign key references. If no value is supplied the primary key of the - principal table will be referenced. - - - A value indicating if cascade delete should be configured for the foreign key - relationship. If no value is supplied, cascade delete will be off. - - - The name of the foreign key constraint in the database. If no value is supplied a unique name will - be generated. - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop a foreign key constraint based on its name. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The table that contains the foreign key column. Schema name is optional, if no schema is - specified then dbo is assumed. - - The name of the foreign key constraint in the database. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop a foreign key constraint based on the column it targets. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The table that contains the foreign key column. Schema name is optional, if no schema is - specified then dbo is assumed. - - The foreign key column. - - The table that contains the column this foreign key references. Schema name is optional, - if no schema is specified then dbo is assumed. - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop a foreign key constraint based on the column it targets. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The table that contains the foreign key column. - Schema name is optional, if no schema is specified then dbo is assumed. - - The foreign key column. - - The table that contains the column this foreign key references. - Schema name is optional, if no schema is specified then dbo is assumed. - - The columns this foreign key references. - - Additional arguments that may be processed by providers. - Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop a foreign key constraint based on the columns it targets. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The table that contains the foreign key columns. Schema name is optional, if no schema is - specified then dbo is assumed. - - The foreign key columns. - - The table that contains the columns this foreign key references. Schema name is optional, - if no schema is specified then dbo is assumed. - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop a table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table to be dropped. Schema name is optional, if no schema is specified then dbo is - assumed. - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop a table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table to be dropped. Schema name is optional, if no schema is specified then dbo is - assumed. - - Custom annotations that exist on columns of the table that is being dropped. May be null or empty. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop a table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table to be dropped. Schema name is optional, if no schema is specified then dbo is - assumed. - - Custom annotations that exist on the table that is being dropped. May be null or empty. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop a table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table to be dropped. Schema name is optional, if no schema is specified then dbo is - assumed. - - Custom annotations that exist on the table that is being dropped. May be null or empty. - Custom annotations that exist on columns of the table that is being dropped. May be null or empty. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to move a table to a new schema. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table to be moved. Schema name is optional, if no schema is specified then dbo is - assumed. - - The schema the table is to be moved to. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to move a stored procedure to a new schema. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the stored procedure to be moved. Schema name is optional, if no schema is specified - then dbo is assumed. - - The schema the stored procedure is to be moved to. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to rename a table. To change the schema of a table use MoveTable. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table to be renamed. Schema name is optional, if no schema is specified then dbo is - assumed. - - - The new name for the table. Schema name is optional, if no schema is specified then dbo is - assumed. - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to rename a stored procedure. To change the schema of a stored procedure use MoveStoredProcedure - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the stored procedure to be renamed. Schema name is optional, if no schema is specified - then dbo is assumed. - - - The new name for the stored procedure. Schema name is optional, if no schema is specified then - dbo is assumed. - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to rename a column. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table that contains the column to be renamed. Schema name is optional, if no - schema is specified then dbo is assumed. - - The name of the column to be renamed. - The new name for the column. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to add a column to an existing table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table to add the column to. Schema name is optional, if no schema is specified - then dbo is assumed. - - The name of the column to be added. - - An action that specifies the column to be added. i.e. c => c.Int(nullable: false, - defaultValue: 3) - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop an existing column. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table to drop the column from. Schema name is optional, if no schema is specified - then dbo is assumed. - - The name of the column to be dropped. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop an existing column. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table to drop the column from. Schema name is optional, if no schema is specified - then dbo is assumed. - - The name of the column to be dropped. - Custom annotations that exist on the column that is being dropped. May be null or empty. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to alter the definition of an existing column. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table the column exists in. Schema name is optional, if no schema is specified - then dbo is assumed. - - The name of the column to be changed. - - An action that specifies the new definition for the column. i.e. c => c.String(nullable: - false, defaultValue: "none") - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to create a new primary key. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The table that contains the primary key column. Schema name is optional, if no schema is specified - then dbo is assumed. - - The primary key column. - - The name of the primary key in the database. If no value is supplied a unique name will be - generated. - - A value indicating whether or not this is a clustered primary key. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to create a new primary key based on multiple columns. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The table that contains the primary key columns. Schema name is optional, if no schema is - specified then dbo is assumed. - - The primary key columns. - - The name of the primary key in the database. If no value is supplied a unique name will be - generated. - - A value indicating whether or not this is a clustered primary key. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop an existing primary key that does not have the default name. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The table that contains the primary key column. Schema name is optional, if no schema is specified - then dbo is assumed. - - The name of the primary key to be dropped. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop an existing primary key that was created with the default name. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The table that contains the primary key column. Schema name is optional, if no schema is specified - then dbo is assumed. - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to create an index on a single column. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table to create the index on. Schema name is optional, if no schema is specified - then dbo is assumed. - - The name of the column to create the index on. - - A value indicating if this is a unique index. If no value is supplied a non-unique index will be - created. - - - The name to use for the index in the database. If no value is supplied a unique name will be - generated. - - A value indicating whether or not this is a clustered index. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to create an index on multiple columns. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table to create the index on. Schema name is optional, if no schema is specified - then dbo is assumed. - - The name of the columns to create the index on. - - A value indicating if this is a unique index. If no value is supplied a non-unique index will be - created. - - - The name to use for the index in the database. If no value is supplied a unique name will be - generated. - - A value indicating whether or not this is a clustered index. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop an index based on its name. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table to drop the index from. Schema name is optional, if no schema is specified - then dbo is assumed. - - The name of the index to be dropped. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to drop an index based on the columns it targets. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table to drop the index from. Schema name is optional, if no schema is specified - then dbo is assumed. - - The name of the column(s) the index targets. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to rename an index. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The name of the table that contains the index to be renamed. Schema name is optional, if no - schema is specified then dbo is assumed. - - The name of the index to be renamed. - The new name for the index. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to execute a SQL command or set of SQL commands. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The SQL to be executed. - - A value indicating if the SQL should be executed outside of the transaction being - used for the migration process. If no value is supplied the SQL will be executed within the transaction. - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to execute a SQL file. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The SQL file to be executed. Relative paths are assumed to be relative to the current AppDomain's BaseDirectory. - - - A value indicating if the SQL should be executed outside of the transaction being - used for the migration process. If no value is supplied the SQL will be executed within the transaction. - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Adds an operation to execute a SQL resource file. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The manifest resource name of the SQL resource file to be executed. - - The assembly containing the resource file. The calling assembly is assumed if not provided. - - - A value indicating if the SQL should be executed outside of the transaction being - used for the migration process. If no value is supplied the SQL will be executed within the transaction. - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - - - - - - - - - - - - - - - - - - - Configuration relating to the use of migrations for a given model. - You will typically create a configuration class that derives - from rather than - using this class. - - - - - The default directory that migrations are stored in. - - - - - Initializes a new instance of the DbMigrationsConfiguration class. - - - - - Gets or sets a value indicating if automatic migrations can be used when migrating the database. - - - - - Gets or sets the string used to distinguish migrations belonging to this configuration - from migrations belonging to other configurations using the same database. - This property enables migrations from multiple different models to be applied to a single database. - - - - - Gets or sets a value indicating if data loss is acceptable during automatic migration. - If set to false an exception will be thrown if data loss may occur as part of an automatic migration. - - - - - Adds a new SQL generator to be used for a given database provider. - - Name of the database provider to set the SQL generator for. - The SQL generator to be used. - - - - Gets the SQL generator that is set to be used with a given database provider. - - Name of the database provider to get the SQL generator for. - The SQL generator that is set for the database provider. - - - - Adds a new factory for creating instances to be used for a given database provider. - - Name of the database provider to set the SQL generator for. - - A factory for creating instances for a given and - representing the default schema. - - - - - Gets the history context factory that is set to be used with a given database provider. - - Name of the database provider to get thefactory for. - The history context factory that is set for the database provider. - - - - Gets or sets the derived DbContext representing the model to be migrated. - - - - - Gets or sets the namespace used for code-based migrations. - - - - - Gets or sets the sub-directory that code-based migrations are stored in. - Note that this property must be set to a relative path for a sub-directory under the - Visual Studio project root; it cannot be set to an absolute path. - - - - - Gets or sets the code generator to be used when scaffolding migrations. - - - - - Gets or sets the assembly containing code-based migrations. - - - - - Gets or sets a value to override the connection of the database to be migrated. - - - - - Gets or sets the timeout value used for the individual commands within a - migration. - - - The time in seconds to wait for the command to execute. A null value indicates - that the default value of the underlying provider will be used. - - - - - Configuration relating to the use of migrations for a given model. - - The context representing the model that this configuration applies to. - - - - Initializes a new instance of the DbMigrationsConfiguration class. - - - - - Runs after upgrading to the latest migration to allow seed data to be updated. - - - Note that the database may already contain seed data when this method runs. This means that - implementations of this method must check whether or not seed data is present and/or up-to-date - and then only make changes if necessary and in a non-destructive way. The - - can be used to help with this, but for seeding large amounts of data it may be necessary to do less - granular checks if performance is an issue. - If the database - initializer is being used, then this method will be called each time that the initializer runs. - If one of the , , - or initializers is being used, then this method will not be - called and the Seed method defined in the initializer should be used instead. - - Context to be used for updating seed data. - - - - - - - - - - - - - - - - - - - DbMigrator is used to apply existing migrations to a database. - DbMigrator can be used to upgrade and downgrade to any given migration. - To scaffold migrations based on changes to your model use - - - - - Migration Id representing the state of the database before any migrations are applied. - - - - - Initializes a new instance of the DbMigrator class. - - Configuration to be used for the migration process. - - - - Initializes a new instance of the DbMigrator class using the supplied context. - Use this constructor when applying migrations from code to avoid having migrations attempt - to create a context/connection for you. - - Configuration to be used for the migration process. - The to use. - - - - Gets the configuration that is being used for the migration process. - - - - - Gets all migrations that are defined in the configured migrations assembly. - - The list of migrations. - - - - Gets all migrations that have been applied to the target database. - - The list of migrations. - - - - Gets all migrations that are defined in the assembly but haven't been applied to the target database. - - The list of migrations. - - - - Updates the target database to a given migration. - - The migration to upgrade/downgrade to. - - - - A set of extension methods for - - - - - Adds or updates entities by key when SaveChanges is called. Equivalent to an "upsert" operation - from database terminology. - This method can be useful when seeding data using Migrations. - - The type of entities to add or update. - The set to which the entities belong. - The entities to add or update. - - When the parameter is a custom or fake IDbSet implementation, this method will - attempt to locate and invoke a public, instance method with the same signature as this extension method. - - - - - Adds or updates entities by a custom identification expression when SaveChanges is called. - Equivalent to an "upsert" operation from database terminology. - This method can useful when seeding data using Migrations. - - The type of entities to add or update. - The set to which the entities belong. - An expression specifying the properties that should be used when determining whether an Add or Update operation should be performed. - The entities to add or update. - - When the parameter is a custom or fake IDbSet implementation, this method will - attempt to locate and invoke a public, instance method with the same signature as this extension method. - - - - - Generates C# code for a code-based migration. - - - - - - - - Generates the primary code file that the user can view and edit. - - Operations to be performed by the migration. - Namespace that code should be generated in. - Name of the class that should be generated. - The generated code. - - - - Generates the code behind file with migration metadata. - - Unique identifier of the migration. - Source model to be stored in the migration metadata. - Target model to be stored in the migration metadata. - Namespace that code should be generated in. - Name of the class that should be generated. - The generated code. - - - - Generates a property to return the source or target model in the code behind file. - - Name of the property. - Value to be returned. - Text writer to add the generated code to. - - - - Generates class attributes. - - Text writer to add the generated code to. - A value indicating if this class is being generated for a code-behind file. - - - - Generates a namespace, using statements and class definition. - - Namespace that code should be generated in. - Name of the class that should be generated. - Text writer to add the generated code to. - Base class for the generated class. - A value indicating if this class is being generated for a code-behind file. - Namespaces for which using directives will be added. If null, then the namespaces returned from GetDefaultNamespaces will be used. - - - - Generates the closing code for a class that was started with WriteClassStart. - - Namespace that code should be generated in. - Text writer to add the generated code to. - - - - Generates code to perform an . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform an . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code for to re-create the given dictionary of annotations for use when passing - these annotations as a parameter of a . call. - - The annotations to generate. - The writer to which generated code should be written. - - - - Generates code for to re-create the given dictionary of annotations for use when passing - these annotations as a parameter of a . call. - - The annotations to generate. - The writer to which generated code should be written. - - - - Generates code for the given annotation value, which may be null. The default behavior is to use an - if one is registered, otherwise call ToString on the annotation value. - - - Note that a can be registered to generate code for custom annotations - without the need to override the entire code generator. - - The name of the annotation for which code is needed. - The annotation value to generate. - The writer to which generated code should be written. - - - Generates code to perform a . - The operation to generate code for. - Text writer to add the generated code to. - - - Generates code to perform a . - The operation to generate code for. - Text writer to add the generated code to. - - - Generates code to specify the definition for a . - The parameter definition to generate code for. - Text writer to add the generated code to. - A value indicating whether to include the column name in the definition. - - - Generates code to perform a . - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code for an . - - The operation for which code should be generated. - The writer to which generated code should be written. - - - - Generates code to perform an as part of a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform an as part of a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a as part of a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to specify a set of column names using a lambda expression. - - The columns to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform an . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform an . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to specify the definition for a . - - The column definition to generate code for. - Text writer to add the generated code to. - A value indicating whether to include the column name in the definition. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column of unknown data type. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Removes any invalid characters from the name of an database artifact. - - The name to be scrubbed. - The scrubbed name. - - - - Gets the type name to use for a column of the given data type. - - The data type to translate. - The type name to use in the generated migration. - - - - Quotes an identifier using appropriate escaping to allow it to be stored in a string. - - The identifier to be quoted. - The quoted identifier. - - - - Base class for providers that generate code for code-based migrations. - - - - - Generates the code that should be added to the users project. - - Unique identifier of the migration. - Operations to be performed by the migration. - Source model to be stored in the migration metadata. - Target model to be stored in the migration metadata. - Namespace that code should be generated in. - Name of the class that should be generated. - The generated code. - - - - Gets the namespaces that must be output as "using" or "Imports" directives to handle - the code generated by the given operations. - - The operations for which code is going to be generated. - An ordered list of namespace names. - - - - Gets the default namespaces that must be output as "using" or "Imports" directives for - any code generated. - - A value indicating if this class is being generated for a code-behind file. - An ordered list of namespace names. - - - - Gets the instances that are being used. - - - - - Scaffolds code-based migrations to apply pending model changes to the database. - - - - - Initializes a new instance of the MigrationScaffolder class. - - Configuration to be used for scaffolding. - - - - Gets or sets the namespace used in the migration's generated code. - By default, this is the same as MigrationsNamespace on the migrations - configuration object passed into the constructor. For VB.NET projects, this - will need to be updated to take into account the project's root namespace. - - - - - Scaffolds a code based migration to apply any pending model changes to the database. - - The name to use for the scaffolded migration. - The scaffolded migration. - - - - Scaffolds a code based migration to apply any pending model changes to the database. - - The name to use for the scaffolded migration. - Whether or not to include model changes. - The scaffolded migration. - - - - Scaffolds the initial code-based migration corresponding to a previously run database initializer. - - The scaffolded migration. - - - - Represents a code-based migration that has been scaffolded and is ready to be written to a file. - - - - - Gets or sets the unique identifier for this migration. - Typically used for the file name of the generated code. - - - - - Gets or sets the scaffolded migration code that the user can edit. - - - - - Gets or sets the scaffolded migration code that should be stored in a code behind file. - - - - - Gets or sets the programming language used for this migration. - Typically used for the file extension of the generated code. - - - - - Gets or sets the subdirectory in the user's project that this migration should be saved in. - - - - - Gets a dictionary of string resources to add to the migration resource file. - - - - - Gets or sets whether the migration was re-scaffolded. - - - - - Represents an exception that occurred while running an operation in another AppDomain in the - . - - - - - Initializes a new instance of the ToolingException class. - - - - - Initializes a new instance of the class with a specified error message. - - The message that describes the error. - - - - Initializes a new instance of the ToolingException class. - - Error that explains the reason for the exception. - The type of the exception that was thrown. - The stack trace of the exception that was thrown. - - - - Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Gets the type of the exception that was thrown. - - - - - Gets the stack trace of the exception that was thrown. - - - - - Helper class that is used by design time tools to run migrations related - commands that need to interact with an application that is being edited - in Visual Studio. - Because the application is being edited the assemblies need to - be loaded in a separate AppDomain to ensure the latest version - is always loaded. - The App/Web.config file from the startup project is also copied - to ensure that any configuration is applied. - - - - - Gets or sets an action to be run to log information. - - - - - Gets or sets an action to be run to log warnings. - - - - - Gets or sets an action to be run to log verbose information. - - - - - Initializes a new instance of the ToolingFacade class. - - The name of the assembly that contains the migrations configuration to be used. - The name of the assembly that contains the DbContext to be used. - The namespace qualified name of migrations configuration to be used. - The working directory containing the compiled assemblies. - The path of the config file from the startup project. - The path of the application data directory from the startup project. Typically the App_Data directory for web applications or the working directory for executables. - The connection to the database to be migrated. If null is supplied, the default connection for the context will be used. - - - - Releases all unmanaged resources used by the facade. - - - - - Gets the fully qualified name of all types deriving from . - - All context types found. - - - - Gets the fully qualified name of a type deriving from . - - The name of the context type. If null, the single context type found in the assembly will be returned. - The context type found. - - - - Gets a list of all migrations that have been applied to the database. - - Ids of applied migrations. - - - - Gets a list of all migrations that have not been applied to the database. - - Ids of pending migrations. - - - - Updates the database to the specified migration. - - The Id of the migration to migrate to. If null is supplied, the database will be updated to the latest migration. - Value indicating if data loss during automatic migration is acceptable. - - - - Generates a SQL script to migrate between two migrations. - - The migration to update from. If null is supplied, a script to update the current database will be produced. - The migration to update to. If null is supplied, a script to update to the latest migration will be produced. - Value indicating if data loss during automatic migration is acceptable. - The generated SQL script. - - - - Scaffolds a code-based migration to apply any pending model changes. - - The name for the generated migration. - The programming language of the generated migration. - The root namespace of the project the migration will be added to. - Whether or not to include model changes. - The scaffolded migration. - - - - Scaffolds the initial code-based migration corresponding to a previously run database initializer. - - The programming language of the generated migration. - The root namespace of the project the migration will be added to. - The scaffolded migration. - - - - - - - Releases all resources used by the facade. - - - true to release both managed and unmanaged resources; false to release only unmanaged resources. - - - - - Generates VB.Net code for a code-based migration. - - - - - - - - Generates the primary code file that the user can view and edit. - - Operations to be performed by the migration. - Namespace that code should be generated in. - Name of the class that should be generated. - The generated code. - - - - Generates the code behind file with migration metadata. - - Unique identifier of the migration. - Source model to be stored in the migration metadata. - Target model to be stored in the migration metadata. - Namespace that code should be generated in. - Name of the class that should be generated. - The generated code. - - - - Generates a property to return the source or target model in the code behind file. - - Name of the property. - Value to be returned. - Text writer to add the generated code to. - - - - Generates class attributes. - - Text writer to add the generated code to. - A value indicating if this class is being generated for a code-behind file. - - - - Generates a namespace, using statements and class definition. - - Namespace that code should be generated in. - Name of the class that should be generated. - Text writer to add the generated code to. - Base class for the generated class. - A value indicating if this class is being generated for a code-behind file. - Namespaces for which Imports directives will be added. If null, then the namespaces returned from GetDefaultNamespaces will be used. - - - - Generates the closing code for a class that was started with WriteClassStart. - - Namespace that code should be generated in. - Text writer to add the generated code to. - - - - Generates code to perform an . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform an . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code for to re-create the given dictionary of annotations for use when passing - these annotations as a parameter of a . call. - - The annotations to generate. - The writer to which generated code should be written. - - - - Generates code for to re-create the given dictionary of annotations for use when passing - these annotations as a parameter of a . call. - - The annotations to generate. - The writer to which generated code should be written. - - - - Generates code for the given annotation value, which may be null. The default behavior is to use an - if one is registered, otherwise call ToString on the annotation value. - - - Note that a can be registered to generate code for custom annotations - without the need to override the entire code generator. - - The name of the annotation for which code is needed. - The annotation value to generate. - The writer to which generated code should be written. - - - Generates code to perform a . - The operation to generate code for. - Text writer to add the generated code to. - - - Generates code to perform a . - The operation to generate code for. - Text writer to add the generated code to. - - - Generates code to perform a . - The parameter model definition to generate code for. - Text writer to add the generated code to. - true to include the column name in the definition; otherwise, false. - - - Generates code to perform a . - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code for an . - - The operation for which code should be generated. - The writer to which generated code should be written. - - - - Generates code to perform an as part of a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform an as part of a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a as part of a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to specify a set of column names using a lambda expression. - - The columns to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform an . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform an . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to specify the definition for a . - - The column definition to generate code for. - Text writer to add the generated code to. - A value indicating whether to include the column name in the definition. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to specify the default value for a column of unknown data type. - - The value to be used as the default. - Code representing the default value. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Generates code to perform a . - - The operation to generate code for. - Text writer to add the generated code to. - - - - Removes any invalid characters from the name of an database artifact. - - The name to be scrubbed. - The scrubbed name. - - - - Gets the type name to use for a column of the given data type. - - The data type to translate. - The type name to use in the generated migration. - - - - Quotes an identifier using appropriate escaping to allow it to be stored in a string. - - The identifier to be quoted. - The quoted identifier. - - - - This class is used by Code First Migrations to read and write migration history - from the database. - To customize the definition of the migrations history table you can derive from - this class and override OnModelCreating. Derived instances can either be registered - on a per migrations configuration basis using , - or globally using . - - - - - The default name used for the migrations history table. - - - - - Initializes a new instance of the HistoryContext class. - If you are creating a derived history context you will generally expose a constructor - that accepts these same parameters and passes them to this base constructor. - - - An existing connection to use for the new context. - - - The default schema of the model being migrated. - This schema will be used for the migrations history table unless a different schema is configured in OnModelCreating. - - - - - Gets the key used to locate a model that was previously built for this context. This is used - to avoid processing OnModelCreating and calculating the model every time a new context instance is created. - By default this property returns the default schema. - In most cases you will not need to override this property. However, if your implementation of OnModelCreating - contains conditional logic that results in a different model being built for the same database provider and - default schema you should override this property and calculate an appropriate key. - - - - - Gets the default schema of the model being migrated. - This schema will be used for the migrations history table unless a different schema is configured in OnModelCreating. - - - - - Gets or sets a that can be used to read and write instances. - - - - - Applies the default configuration for the migrations history table. If you override - this method it is recommended that you call this base implementation before applying your - custom configuration. - - The builder that defines the model for the context being created. - - - - This class is used by Code First Migrations to read and write migration history - from the database. - - - - - Gets or sets the Id of the migration this row represents. - - - - - Gets or sets a key representing to which context the row applies. - - - - - Gets or sets the state of the model after this migration was applied. - - - - - Gets or sets the version of Entity Framework that created this entry. - - - - - Represents an error that occurs when an automatic migration would result in data loss. - - - - - Initializes a new instance of the AutomaticDataLossException class. - - - - - Initializes a new instance of the AutomaticDataLossException class. - - The message that describes the error. - - - - Initializes a new instance of the MigrationsException class. - - The message that describes the error. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Represents an error that occurs when there are pending model changes after applying the last migration and automatic migration is disabled. - - - - - Initializes a new instance of the AutomaticMigrationsDisabledException class. - - - - - Initializes a new instance of the AutomaticMigrationsDisabledException class. - - The message that describes the error. - - - - Initializes a new instance of the MigrationsException class. - - The message that describes the error. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Explicitly implemented by to prevent certain members from showing up - in the IntelliSense of scaffolded migrations. - - - - - Adds a custom to the migration. - Custom operation implementors are encouraged to create extension methods on - that provide a fluent-style API for adding new operations. - - The operation to add. - - - - Provides additional metadata about a code-based migration. - - - - - Gets the unique identifier for the migration. - - - - - Gets the state of the model before this migration is run. - - - - - Gets the state of the model after this migration is run. - - - - - Represents errors that occur inside the Code First Migrations pipeline. - - - - - Initializes a new instance of the MigrationsException class. - - - - - Initializes a new instance of the MigrationsException class. - - The message that describes the error. - - - - Initializes a new instance of the MigrationsException class. - - The message that describes the error. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the MigrationsException class with serialized data. - - - The that holds the serialized object data about the exception being thrown. - - - The that contains contextual information about the source or destination. - - - - - Base class for loggers that can be used for the migrations process. - - - - - Logs an informational message. - - The message to be logged. - - - - Logs a warning that the user should be made aware of. - - The message to be logged. - - - - Logs some additional information that should only be presented to the user if they request verbose output. - - The message to be logged. - - - - Thrown when an operation can't be performed because there are existing migrations that have not been applied to the database. - - - - - Initializes a new instance of the MigrationsPendingException class. - - - - - Initializes a new instance of the MigrationsPendingException class. - - The message that describes the error. - - - - Initializes a new instance of the MigrationsPendingException class. - - The message that describes the error. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Base class for decorators that wrap the core - - - - - Initializes a new instance of the MigratorBase class. - - The migrator that this decorator is wrapping. - - - - Gets a list of the pending migrations that have not been applied to the database. - - List of migration Ids - - - - Gets the configuration being used for the migrations process. - - - - - Updates the target database to the latest migration. - - - - - Updates the target database to a given migration. - - The migration to upgrade/downgrade to. - - - - Gets a list of the migrations that are defined in the assembly. - - List of migration Ids - - - - Gets a list of the migrations that have been applied to the database. - - List of migration Ids - - - - Decorator to provide logging during migrations operations.. - - - - - Initializes a new instance of the MigratorLoggingDecorator class. - - The migrator that this decorator is wrapping. - The logger to write messages to. - - - - Decorator to produce a SQL script instead of applying changes to the database. - Using this decorator to wrap will prevent - from applying any changes to the target database. - - - - - Initializes a new instance of the MigratorScriptingDecorator class. - - The migrator that this decorator is wrapping. - - - - Produces a script to update the database. - - - The migration to update from. If null is supplied, a script to update the - current database will be produced. - - - The migration to update to. If null is supplied, - a script to update to the latest migration will be produced. - - The generated SQL script. - - - - Represents a column being added to a table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the AddColumnOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the table the column should be added to. - Details of the column being added. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets the name of the table the column should be added to. - - - - - Gets the details of the column being added. - - - - - Gets an operation that represents dropping the added column. - - - - - - - - Represents a foreign key constraint being added to a table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the AddForeignKeyOperation class. - The PrincipalTable, PrincipalColumns, DependentTable and DependentColumns properties should also be populated. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - The names of the column(s) that the foreign key constraint should target. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Gets or sets a value indicating if cascade delete should be configured on the foreign key constraint. - - - - - Gets an operation to create an index on the foreign key column(s). - - An operation to add the index. - - - - Gets an operation to drop the foreign key constraint. - - - - - - - - Represents adding a primary key to a table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the AddPrimaryKeyOperation class. - The Table and Columns properties should also be populated. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets an operation to drop the primary key. - - - - - Represents altering an existing column. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the AlterColumnOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the table that the column belongs to. - Details of what the column should be altered to. - Value indicating if this change will result in data loss. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Initializes a new instance of the AlterColumnOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the table that the column belongs to. - Details of what the column should be altered to. - Value indicating if this change will result in data loss. - An operation to revert this alteration of the column. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets the name of the table that the column belongs to. - - - - - Gets the new definition for the column. - - - - - Gets an operation that represents reverting the alteration. - The inverse cannot be automatically calculated, - if it was not supplied to the constructor this property will return null. - - - - - - - - Represents altering an existing stored procedure. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the stored procedure. - The body of the stored procedure expressed in SQL. - Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets an operation that will revert this operation. - Always returns a . - - - - - Represents changes made to custom annotations on a table. - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the AlterTableOperation class. - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Name of the table on which annotations have changed. - The custom annotations on the table that have changed. - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Gets the name of the table on which annotations have changed. - - - - - Gets the columns to be included in the table for which annotations have changed. - - - - - Gets the custom annotations that have changed on the table. - - - - - Gets an operation that is the inverse of this one such that annotations will be changed back to how - they were before this operation was applied. - - - - - - - - Represents information about a column. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the ColumnModel class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The data type for this column. - - - - Initializes a new instance of the ColumnModel class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The data type for this column. - Additional details about the data type. This includes details such as maximum length, nullability etc. - - - - Gets the CLR type corresponding to the database type of this column. - - - - - Gets the default value for the CLR type corresponding to the database type of this column. - - - - - Gets or sets a value indicating if this column can store null values. - - - - - Gets or sets a value indicating if values for this column will be generated by the database using the identity pattern. - - - - - Gets or sets a value indicating if this property model should be configured as a timestamp. - - - - - Gets or sets the custom annotations that have changed on the column. - - - - - Determines if this column is a narrower data type than another column. - Used to determine if altering the supplied column definition to this definition will result in data loss. - - The column to compare to. - Details of the database provider being used. - True if this column is of a narrower data type. - - - - Represents creating a database index. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the CreateIndexOperation class. - The Table and Columns properties should also be populated. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets or sets a value indicating if this is a unique index. - - - - - Gets an operation to drop this index. - - - - - - - - Gets or sets whether this is a clustered index. - - - - - A migration operation to add a new stored procedure to the database. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the stored procedure. - The body of the stored procedure expressed in SQL. - Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets an operation to drop the stored procedure. - - - - - Represents creating a table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the CreateTableOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Name of the table to be created. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Initializes a new instance of the CreateTableOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Name of the table to be created. - Custom annotations that exist on the table to be created. May be null or empty. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets the name of the table to be created. - - - - - Gets the columns to be included in the new table. - - - - - Gets or sets the primary key for the new table. - - - - - Gets custom annotations that exist on the table to be created. - - - - - Gets an operation to drop the table. - - - - - - - - Represents a column being dropped from a table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the DropColumnOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the table the column should be dropped from. - The name of the column to be dropped. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Initializes a new instance of the DropColumnOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the table the column should be dropped from. - The name of the column to be dropped. - Custom annotations that exist on the column that is being dropped. May be null or empty. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Initializes a new instance of the DropColumnOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the table the column should be dropped from. - The name of the column to be dropped. - The operation that represents reverting the drop operation. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Initializes a new instance of the DropColumnOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the table the column should be dropped from. - The name of the column to be dropped. - Custom annotations that exist on the column that is being dropped. May be null or empty. - The operation that represents reverting the drop operation. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets the name of the table the column should be dropped from. - - - - - Gets the name of the column to be dropped. - - - - - Gets custom annotations that exist on the column that is being dropped. - - - - - Gets an operation that represents reverting dropping the column. - The inverse cannot be automatically calculated, - if it was not supplied to the constructor this property will return null. - - - - - - - - Represents a foreign key constraint being dropped from a table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the DropForeignKeyOperation class. - The PrincipalTable, DependentTable and DependentColumns properties should also be populated. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Initializes a new instance of the DropForeignKeyOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc.. - - The operation that represents reverting dropping the foreign key constraint. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets an operation to drop the associated index on the foreign key column(s). - - An operation to drop the index. - - - - Gets an operation that represents reverting dropping the foreign key constraint. - The inverse cannot be automatically calculated, - if it was not supplied to the constructor this property will return null. - - - - - - - - Represents dropping an existing index. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the DropIndexOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Initializes a new instance of the DropIndexOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The operation that represents reverting dropping the index. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets an operation that represents reverting dropping the index. - The inverse cannot be automatically calculated, - if it was not supplied to the constructor this property will return null. - - - - - - - - Represents dropping a primary key from a table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the DropPrimaryKeyOperation class. - The Table and Columns properties should also be populated. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets an operation to add the primary key. - - - - - Used when altering the migrations history table so that the table can be rebuilt rather than just dropping and adding the primary key. - - - The create table operation for the migrations history table. - - - - - Drops a stored procedure from the database. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the stored procedure to drop. - Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets the name of the stored procedure to drop. - - - The name of the stored procedure to drop. - - - - - Gets an operation that will revert this operation. - Always returns a . - - - - - Gets a value indicating if this operation may result in data loss. Always returns false. - - - - - Represents dropping an existing table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the DropTableOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the table to be dropped. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Initializes a new instance of the DropTableOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the table to be dropped. - Custom annotations that exist on the table that is being dropped. May be null or empty. - Custom annotations that exist on columns of the table that is being dropped. May be null or empty. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Initializes a new instance of the DropTableOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the table to be dropped. - An operation that represents reverting dropping the table. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Initializes a new instance of the DropTableOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the table to be dropped. - Custom annotations that exist on the table that is being dropped. May be null or empty. - Custom annotations that exist on columns of the table that is being dropped. May be null or empty. - An operation that represents reverting dropping the table. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets the name of the table to be dropped. - - - - - Gets custom annotations that exist on the table that is being dropped. - - - - - Gets custom annotations that exist on columns of the table that is being dropped. - - - - - Gets an operation that represents reverting dropping the table. - The inverse cannot be automatically calculated, - if it was not supplied to the constructor this property will return null. - - - - - - - - Base class for changes that affect foreign key constraints. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the ForeignKeyOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets or sets the name of the table that the foreign key constraint targets. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Gets or sets the name of the table that the foreign key columns exist in. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - The names of the foreign key column(s). - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Gets a value indicating if a specific name has been supplied for this foreign key constraint. - - - - - Gets or sets the name of this foreign key constraint. - If no name is supplied, a default name will be calculated. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Operation representing DML changes to the migrations history table. - The migrations history table is used to store a log of the migrations that have been applied to the database. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the HistoryOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - A sequence of command trees representing the operations being applied to the history table. - Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - A sequence of commands representing the operations being applied to the history table. - - - - - - - - Common base class for operations affecting indexes. - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Creates a default index name based on the supplied column names. - - The column names used to create a default index name. - A default index name. - - - - Initializes a new instance of the IndexOperation class. - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - Additional arguments that may be processed by providers. Use anonymous type syntax to - specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - - Gets or sets the table the index belongs to. - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Gets the columns that are indexed. - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Gets a value indicating if a specific name has been supplied for this index. - - - - - Gets or sets the name of this index. - If no name is supplied, a default name will be calculated. - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Represents an operation to modify a database schema. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the MigrationOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" - }'. - - - - - Gets additional arguments that may be processed by providers. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Gets an operation that will revert this operation. - - - - - Gets a value indicating if this operation may result in data loss. - - - - - Represents moving a stored procedure to a new schema in the database. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the stored procedure to move. - The new schema for the stored procedure. - Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets the name of the stored procedure to move. - - - The name of the stored procedure to move. - - - - - Gets the new schema for the stored procedure. - - - The new schema for the stored procedure. - - - - - Gets an operation that will revert this operation. - - - - - Gets a value indicating if this operation may result in data loss. Always returns false. - - - - - Represents moving a table from one schema to another. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the MoveTableOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Name of the table to be moved. - Name of the schema to move the table to. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets the name of the table to be moved. - - - - - Gets the name of the schema to move the table to. - - - - - Gets an operation that moves the table back to its original schema. - - - - - - - - Used when altering the migrations history table so that data can be moved to the new table. - - - The context key for the model. - - - - - Gets a value that indicates whether this is a system table. - - - true if the table is a system table; otherwise, false. - - - - - Used when altering the migrations history table so that the table can be rebuilt rather than just dropping and adding the primary key. - - - The create table operation for the migrations history table. - - - - - Represents a migration operation that can not be performed, possibly because it is not supported by the targeted database provider. - - - - - Gets a value indicating if this operation may result in data loss. Always returns false. - - - - - Represents information about a parameter. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the ParameterModel class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The data type for this parameter. - - - - Initializes a new instance of the ParameterModel class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The data type for this parameter. - Additional details about the data type. This includes details such as maximum length, nullability etc. - - - - Gets or sets a value indicating whether this instance is out parameter. - - - true if this instance is out parameter; otherwise, false. - - - - - Common base class to represent operations affecting primary keys. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Returns the default name for the primary key. - - The target table name. - The default primary key name. - - - - Initializes a new instance of the PrimaryKeyOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets or sets the name of the table that contains the primary key. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Gets the column(s) that make up the primary key. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Gets a value indicating if a specific name has been supplied for this primary key. - - - - - Gets or sets the name of this primary key. - If no name is supplied, a default name will be calculated. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - - - - Gets or sets whether this is a clustered primary key. - - - - - A migration operation that affects stored procedures. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the stored procedure. - The body of the stored procedure expressed in SQL. - Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets the name of the stored procedure. - - - The name of the stored procedure. - - - - - Gets the body of the stored procedure expressed in SQL. - - - The body of the stored procedure expressed in SQL. - - - - - Gets the parameters of the stored procedure. - - - The parameters of the stored procedure. - - - - - Gets a value indicating if this operation may result in data loss. Always returns false. - - - - - Represents information about a property of an entity. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the PropertyModel class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The data type for this property model. - Additional details about the data type. This includes details such as maximum length, nullability etc. - - - - Gets the data type for this property model. - - - - - Gets additional details about the data type of this property model. - This includes details such as maximum length, nullability etc. - - - - - Gets or sets the name of the property model. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Gets or sets a provider specific data type to use for this property model. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Gets or sets the maximum length for this property model. - Only valid for array data types. - - - - - Gets or sets the precision for this property model. - Only valid for decimal data types. - - - - - Gets or sets the scale for this property model. - Only valid for decimal data types. - - - - - Gets or sets a constant value to use as the default value for this property model. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Gets or sets a SQL expression used as the default value for this property model. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Gets or sets a value indicating if this property model is fixed length. - Only valid for array data types. - - - - - Gets or sets a value indicating if this property model supports Unicode characters. - Only valid for textual data types. - - - - - Represents renaming an existing column. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the RenameColumnOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Name of the table the column belongs to. - Name of the column to be renamed. - New name for the column. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets the name of the table the column belongs to. - - - - - Gets the name of the column to be renamed. - - - - - Gets the new name for the column. - - - - - Gets an operation that reverts the rename. - - - - - - - - Represents renaming an existing index. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the RenameIndexOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Name of the table the index belongs to. - Name of the index to be renamed. - New name for the index. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets the name of the table the index belongs to. - - - - - Gets the name of the index to be renamed. - - - - - Gets the new name for the index. - - - - - Gets an operation that reverts the rename. - - - - - - - - Represents renaming a stored procedure in the database. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The name of the stored procedure to rename. - The new name for the stored procedure. - Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets the name of the stored procedure to rename. - - - The name of the stored procedure to rename. - - - - - Gets the new name for the stored procedure. - - - The new name for the stored procedure. - - - - - Gets an operation that will revert this operation. - - - - - Gets a value indicating if this operation may result in data loss. Always returns false. - - - - - Represents renaming an existing table. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the RenameTableOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - Name of the table to be renamed. - New name for the table. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets the name of the table to be renamed. - - - - - Gets the new name for the table. - - - - - Gets an operation that reverts the rename. - - - - - - - - Represents a provider specific SQL statement to be executed directly against the target database. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Initializes a new instance of the SqlOperation class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The SQL to be executed. - Additional arguments that may be processed by providers. Use anonymous type syntax to specify arguments e.g. 'new { SampleArgument = "MyValue" }'. - - - - Gets the SQL to be executed. - - - - - Gets or sets a value indicating whether this statement should be performed outside of - the transaction scope that is used to make the migration process transactional. - If set to true, this operation will not be rolled back if the migration process fails. - - - - - - - - Used when scripting an update database operation to store the operations that would have been performed against the database. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Represents a migration to be applied to the database. - - - - - Gets the id of the migration. - - - The id of the migration. - - - - - Gets the individual operations applied by this migration. - - - The individual operations applied by this migration. - - - - - Initializes a new instance of the class. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The queries used to determine if this migration needs to be applied to the database. - This is used to generate an idempotent SQL script that can be run against a database at any version. - - - - - The queries used to determine if this migration needs to be applied to the database. - This is used to generate an idempotent SQL script that can be run against a database at any version. - - - - - Gets the migrations applied during the update database operation. - - - The migrations applied during the update database operation. - - - - - Adds a migration to this update database operation. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - The id of the migration. - The individual operations applied by the migration. - - - - Gets a value indicating if any of the operations may result in data loss. - - - - - Common base class for providers that convert provider agnostic migration - operations into database provider specific SQL commands. - - - - - Gets or sets the provider manifest. - - - The provider manifest. - - - - - Converts a set of migration operations into database provider specific SQL. - - The operations to be converted. - Token representing the version of the database being targeted. - A list of SQL statements to be executed to perform the migration operations. - - - - Generates the SQL body for a stored procedure. - - The command trees representing the commands for an insert, update or delete operation. - The rows affected parameter name. - The provider manifest token. - The SQL body for the stored procedure. - - - - Determines if a provider specific exception corresponds to a database-level permission denied error. - - The database exception. - true if the supplied exception corresponds to a database-level permission denied error; otherwise false. - - - - Builds the store type usage for the specified using the facets from the specified . - - Name of the store type. - The target property. - A store-specific TypeUsage - - - - Represents a migration operation that has been translated into a SQL statement. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Gets or sets the SQL to be executed to perform this migration operation. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - - - Gets or sets a value indicating whether this statement should be performed outside of - the transaction scope that is used to make the migration process transactional. - If set to true, this operation will not be rolled back if the migration process fails. - - - - - Gets or sets the batch terminator for the database provider. - - Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources - (such as the end user of an application). If input is accepted from such sources it should be validated - before being passed to these APIs to protect against SQL injection attacks etc. - - - The batch terminator for the database provider. - - - - - The same as but works in partial trust and adds explicit caching of - generated indentation string and also recognizes writing a string that contains just \r\n or \n as a write-line to ensure - we indent the next line properly. - - - - - Specifies the default tab string. This field is constant. - - - - - Specifies the culture what will be used by the underlying TextWriter. This static property is read-only. - Note that any writer passed to one of the constructors of must use this - same culture. The culture is . - - - - - Gets the encoding for the text writer to use. - - - An that indicates the encoding for the text writer to use. - - - - - Gets or sets the new line character to use. - - The new line character to use. - - - - Gets or sets the number of spaces to indent. - - The number of spaces to indent. - - - - Gets the to use. - - - The to use. - - - - - Initializes a new instance of the IndentedTextWriter class using the specified text writer and default tab string. - Note that the writer passed to this constructor must use the specified by the - property. - - - The to use for output. - - - - - Initializes a new instance of the IndentedTextWriter class using the specified text writer and tab string. - Note that the writer passed to this constructor must use the specified by the - property. - - - The to use for output. - - The tab string to use for indentation. - - - - Closes the document being written to. - - - - - Flushes the stream. - - - - - Outputs the tab string once for each level of indentation according to the - - property. - - - - - Builds a string representing the current indentation level for a new line. - - - Does NOT check if tabs are currently pending, just returns a string that would be - useful in replacing embedded newline characters. - - An empty string, or a string that contains .Indent level's worth of specified tab-string. - - - - Writes the specified string to the text stream. - - The string to write. - - - - Writes the text representation of a Boolean value to the text stream. - - The Boolean value to write. - - - - Writes a character to the text stream. - - The character to write. - - - - Writes a character array to the text stream. - - The character array to write. - - - - Writes a subarray of characters to the text stream. - - The character array to write data from. - Starting index in the buffer. - The number of characters to write. - - - - Writes the text representation of a Double to the text stream. - - The double to write. - - - - Writes the text representation of a Single to the text stream. - - The single to write. - - - - Writes the text representation of an integer to the text stream. - - The integer to write. - - - - Writes the text representation of an 8-byte integer to the text stream. - - The 8-byte integer to write. - - - - Writes the text representation of an object to the text stream. - - The object to write. - - - - Writes out a formatted string, using the same semantics as specified. - - The formatting string. - The object to write into the formatted string. - - - - Writes out a formatted string, using the same semantics as specified. - - The formatting string to use. - The first object to write into the formatted string. - The second object to write into the formatted string. - - - - Writes out a formatted string, using the same semantics as specified. - - The formatting string to use. - The argument array to output. - - - - Writes the specified string to a line without tabs. - - The string to write. - - - - Writes the specified string, followed by a line terminator, to the text stream. - - The string to write. - - - - Writes a line terminator. - - - - - Writes the text representation of a Boolean, followed by a line terminator, to the text stream. - - The Boolean to write. - - - - Writes a character, followed by a line terminator, to the text stream. - - The character to write. - - - - Writes a character array, followed by a line terminator, to the text stream. - - The character array to write. - - - - Writes a subarray of characters, followed by a line terminator, to the text stream. - - The character array to write data from. - Starting index in the buffer. - The number of characters to write. - - - - Writes the text representation of a Double, followed by a line terminator, to the text stream. - - The double to write. - - - - Writes the text representation of a Single, followed by a line terminator, to the text stream. - - The single to write. - - - - Writes the text representation of an integer, followed by a line terminator, to the text stream. - - The integer to write. - - - - Writes the text representation of an 8-byte integer, followed by a line terminator, to the text stream. - - The 8-byte integer to write. - - - - Writes the text representation of an object, followed by a line terminator, to the text stream. - - The object to write. - - - - Writes out a formatted string, followed by a line terminator, using the same semantics as specified. - - The formatting string. - The object to write into the formatted string. - - - - Writes out a formatted string, followed by a line terminator, using the same semantics as specified. - - The formatting string to use. - The first object to write into the formatted string. - The second object to write into the formatted string. - - - - Writes out a formatted string, followed by a line terminator, using the same semantics as specified. - - The formatting string to use. - The argument array to output. - - - - Writes the text representation of a UInt32, followed by a line terminator, to the text stream. - - A UInt32 to output. - - - - An implementation of that does nothing. Using this - initializer disables database initialization for the given context type. Passing an instance - of this class to is equivalent to passing null. - When is being used to resolve initializers an instance of - this class must be used to disable initialization. - - The type of the context. - - - - - - - Extension methods for . - - - - - Returns an implementation that stays in sync with the given - . - - The element type. - The collection that the binding list will stay in sync with. - The binding list. - - - - Useful extension methods for use with Entity Framework LINQ queries. - - - - - Specifies the related objects to include in the query results. - - - This extension method calls the Include(String) method of the source object, - if such a method exists. If the source does not have a matching method, - then this method does nothing. The , , - and types all have an appropriate Include method to call. - Paths are all-inclusive. For example, if an include call indicates Include("Orders.OrderLines"), not only will - OrderLines be included, but also Orders. When you call the Include method, the query path is only valid on - the returned instance of the . Other instances of - and the object context itself are not affected. Because the Include method returns the query object, - you can call this method multiple times on an to specify multiple paths for the query. - - The type of entity being queried. - - The source on which to call Include. - - The dot-separated list of related objects to return in the query results. - - A new with the defined query path. - - - - - Specifies the related objects to include in the query results. - - - This extension method calls the Include(String) method of the source object, - if such a method exists. If the source does not have a matching method, - then this method does nothing. The , , - and types all have an appropriate Include method to call. - Paths are all-inclusive. For example, if an include call indicates Include("Orders.OrderLines"), not only will - OrderLines be included, but also Orders. When you call the Include method, the query path is only valid on - the returned instance of the . Other instances of - and the object context itself are not affected. Because the Include method returns the query object, - you can call this method multiple times on an to specify multiple paths for the query. - - - The source on which to call Include. - - The dot-separated list of related objects to return in the query results. - - A new with the defined query path. - - - - - Specifies the related objects to include in the query results. - - - The path expression must be composed of simple property access expressions together with calls to Select for - composing additional includes after including a collection proprty. Examples of possible include paths are: - To include a single reference: query.Include(e => e.Level1Reference) - To include a single collection: query.Include(e => e.Level1Collection) - To include a reference and then a reference one level down: query.Include(e => e.Level1Reference.Level2Reference) - To include a reference and then a collection one level down: query.Include(e => e.Level1Reference.Level2Collection) - To include a collection and then a reference one level down: query.Include(e => e.Level1Collection.Select(l1 => l1.Level2Reference)) - To include a collection and then a collection one level down: query.Include(e => e.Level1Collection.Select(l1 => l1.Level2Collection)) - To include a collection and then a reference one level down: query.Include(e => e.Level1Collection.Select(l1 => l1.Level2Reference)) - To include a collection and then a collection one level down: query.Include(e => e.Level1Collection.Select(l1 => l1.Level2Collection)) - To include a collection, a reference, and a reference two levels down: query.Include(e => e.Level1Collection.Select(l1 => l1.Level2Reference.Level3Reference)) - To include a collection, a collection, and a reference two levels down: query.Include(e => e.Level1Collection.Select(l1 => l1.Level2Collection.Select(l2 => l2.Level3Reference))) - This extension method calls the Include(String) method of the source IQueryable object, if such a method exists. - If the source IQueryable does not have a matching method, then this method does nothing. - The Entity Framework ObjectQuery, ObjectSet, DbQuery, and DbSet types all have an appropriate Include method to call. - When you call the Include method, the query path is only valid on the returned instance of the IQueryable<T>. Other - instances of IQueryable<T> and the object context itself are not affected. Because the Include method returns the - query object, you can call this method multiple times on an IQueryable<T> to specify multiple paths for the query. - - The type of entity being queried. - The type of navigation property being included. - The source IQueryable on which to call Include. - A lambda expression representing the path to include. - - A new IQueryable<T> with the defined query path. - - - - - Returns a new query where the entities returned will not be cached in the - or . This method works by calling the AsNoTracking method of the - underlying query object. If the underlying query object does not have an AsNoTracking method, - then calling this method will have no affect. - - The element type. - The source query. - A new query with NoTracking applied, or the source query if NoTracking is not supported. - - - - Returns a new query where the entities returned will not be cached in the - or . This method works by calling the AsNoTracking method of the - underlying query object. If the underlying query object does not have an AsNoTracking method, - then calling this method will have no affect. - - The source query. - A new query with NoTracking applied, or the source query if NoTracking is not supported. - - - - Returns a new query that will stream the results instead of buffering. This method works by calling - the AsStreaming method of the underlying query object. If the underlying query object does not have - an AsStreaming method, then calling this method will have no affect. - - - The type of the elements of . - - - An to apply AsStreaming to. - - A new query with AsStreaming applied, or the source query if AsStreaming is not supported. - - - - Returns a new query that will stream the results instead of buffering. This method works by calling - the AsStreaming method of the underlying query object. If the underlying query object does not have - an AsStreaming method, then calling this method will have no affect. - - - An to apply AsStreaming to. - - A new query with AsStreaming applied, or the source query if AsStreaming is not supported. - - - - Enumerates the query such that for server queries such as those of , - - , - , and others the results of the query will be loaded into the associated - - , - or other cache on the client. - This is equivalent to calling ToList and then throwing away the list without the overhead of actually creating the list. - - The source query. - - - - Asynchronously enumerates the query such that for server queries such as those of , - - , - , and others the results of the query will be loaded into the associated - - , - or other cache on the client. - This is equivalent to calling ToList and then throwing away the list without the overhead of actually creating the list. - - The source query. - - A task that represents the asynchronous operation. - - - - - Asynchronously enumerates the query such that for server queries such as those of , - - , - , and others the results of the query will be loaded into the associated - - , - or other cache on the client. - This is equivalent to calling ToList and then throwing away the list without the overhead of actually creating the list. - - The source query. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - - - - - Asynchronously enumerates the query results and performs the specified action on each element. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - An to enumerate. - - The action to perform on each element. - A task that represents the asynchronous operation. - - - - Asynchronously enumerates the query results and performs the specified action on each element. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - An to enumerate. - - The action to perform on each element. - - A to observe while waiting for the task to complete. - - A task that represents the asynchronous operation. - - - - Asynchronously enumerates the query results and performs the specified action on each element. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to enumerate. - - The action to perform on each element. - A task that represents the asynchronous operation. - - - - Asynchronously enumerates the query results and performs the specified action on each element. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to enumerate. - - The action to perform on each element. - - A to observe while waiting for the task to complete. - - A task that represents the asynchronous operation. - - - - Creates a from an by enumerating it asynchronously. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - An to create a from. - - - A task that represents the asynchronous operation. - The task result contains a that contains elements from the input sequence. - - - - - Creates a from an by enumerating it asynchronously. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - An to create a from. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains a that contains elements from the input sequence. - - - - - Creates a from an by enumerating it asynchronously. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to create a from. - - - A task that represents the asynchronous operation. - The task result contains a that contains elements from the input sequence. - - - - - Creates a from an by enumerating it asynchronously. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to create a list from. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains a that contains elements from the input sequence. - - - - - Creates an array from an by enumerating it asynchronously. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to create an array from. - - - A task that represents the asynchronous operation. - The task result contains an array that contains elements from the input sequence. - - - - - Creates an array from an by enumerating it asynchronously. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to create an array from. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains an array that contains elements from the input sequence. - - - - - Creates a from an by enumerating it asynchronously - according to a specified key selector function. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - The type of the key returned by . - - - An to create a from. - - A function to extract a key from each element. - - A task that represents the asynchronous operation. - The task result contains a that contains selected keys and values. - - - - - Creates a from an by enumerating it asynchronously - according to a specified key selector function. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - The type of the key returned by . - - - An to create a from. - - A function to extract a key from each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains a that contains selected keys and values. - - - - - Creates a from an by enumerating it asynchronously - according to a specified key selector function and a comparer. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - The type of the key returned by . - - - An to create a from. - - A function to extract a key from each element. - - An to compare keys. - - - A task that represents the asynchronous operation. - The task result contains a that contains selected keys and values. - - - - - Creates a from an by enumerating it asynchronously - according to a specified key selector function and a comparer. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - The type of the key returned by . - - - An to create a from. - - A function to extract a key from each element. - - An to compare keys. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains a that contains selected keys and values. - - - - - Creates a from an by enumerating it asynchronously - according to a specified key selector and an element selector function. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - The type of the key returned by . - - - The type of the value returned by . - - - An to create a from. - - A function to extract a key from each element. - A transform function to produce a result element value from each element. - - A task that represents the asynchronous operation. - The task result contains a that contains values of type - selected from the input sequence. - - - - - Creates a from an by enumerating it asynchronously - according to a specified key selector and an element selector function. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - The type of the key returned by . - - - The type of the value returned by . - - - An to create a from. - - A function to extract a key from each element. - A transform function to produce a result element value from each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains a that contains values of type - selected from the input sequence. - - - - - Creates a from an by enumerating it asynchronously - according to a specified key selector function, a comparer, and an element selector function. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - The type of the key returned by . - - - The type of the value returned by . - - - An to create a from. - - A function to extract a key from each element. - A transform function to produce a result element value from each element. - - An to compare keys. - - - A task that represents the asynchronous operation. - The task result contains a that contains values of type - selected from the input sequence. - - - - - Creates a from an by enumerating it asynchronously - according to a specified key selector function, a comparer, and an element selector function. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - The type of the key returned by . - - - The type of the value returned by . - - - An to create a from. - - A function to extract a key from each element. - A transform function to produce a result element value from each element. - - An to compare keys. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains a that contains values of type - selected from the input sequence. - - - - - Asynchronously returns the first element of a sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the first element of. - - - A task that represents the asynchronous operation. - The task result contains the first element in . - - - is null. - - - doesn't implement . - - The source sequence is empty. - - - - Asynchronously returns the first element of a sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the first element of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the first element in . - - - - is - null - . - - - - doesn't implement - - . - - The source sequence is empty. - - - - Asynchronously returns the first element of a sequence that satisfies a specified condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the first element of. - - A function to test each element for a condition. - - A task that represents the asynchronous operation. - The task result contains the first element in that passes the test in - . - - - - or - - is - null - . - - - - doesn't implement - - . - - - No element satisfies the condition in - - . - - - - - Asynchronously returns the first element of a sequence that satisfies a specified condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the first element of. - - A function to test each element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the first element in that passes the test in - . - - - - or - - is - null - . - - - - doesn't implement - - . - - - No element satisfies the condition in - - . - - - - - Asynchronously returns the first element of a sequence, or a default value if the sequence contains no elements. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the first element of. - - - A task that represents the asynchronous operation. - The task result contains default ( ) if - is empty; otherwise, the first element in . - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously returns the first element of a sequence, or a default value if the sequence contains no elements. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the first element of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains default ( ) if - is empty; otherwise, the first element in . - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously returns the first element of a sequence that satisfies a specified condition - or a default value if no such element is found. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the first element of. - - A function to test each element for a condition. - - A task that represents the asynchronous operation. - The task result contains default ( ) if - is empty or if no element passes the test specified by ; otherwise, the first - element in that passes the test specified by . - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously returns the first element of a sequence that satisfies a specified condition - or a default value if no such element is found. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the first element of. - - A function to test each element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains default ( ) if - is empty or if no element passes the test specified by ; otherwise, the first - element in that passes the test specified by . - - - - or - - is - null - . - - - - doesn't implement - - . - - - - has more than one element. - - - - - Asynchronously returns the only element of a sequence, and throws an exception - if there is not exactly one element in the sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the single element of. - - - A task that represents the asynchronous operation. - The task result contains the single element of the input sequence. - - - - is - null - . - - - - doesn't implement - - . - - The source sequence is empty. - - - - Asynchronously returns the only element of a sequence, and throws an exception - if there is not exactly one element in the sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the single element of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the single element of the input sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - has more than one element. - - The source sequence is empty. - - - - Asynchronously returns the only element of a sequence that satisfies a specified condition, - and throws an exception if more than one such element exists. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the single element of. - - A function to test an element for a condition. - - A task that represents the asynchronous operation. - The task result contains the single element of the input sequence that satisfies the condition in - . - - - - or - - is - null - . - - - - doesn't implement - - . - - - No element satisfies the condition in - - . - - - More than one element satisfies the condition in - - . - - - - - Asynchronously returns the only element of a sequence that satisfies a specified condition, - and throws an exception if more than one such element exists. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the single element of. - - A function to test an element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the single element of the input sequence that satisfies the condition in - . - - - - or - - is - null - . - - - - doesn't implement - - . - - - No element satisfies the condition in - - . - - - More than one element satisfies the condition in - - . - - - - - Asynchronously returns the only element of a sequence, or a default value if the sequence is empty; - this method throws an exception if there is more than one element in the sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the single element of. - - - A task that represents the asynchronous operation. - The task result contains the single element of the input sequence, or default () - if the sequence contains no elements. - - - - is - null - . - - - - doesn't implement - - . - - - - has more than one element. - - - - - Asynchronously returns the only element of a sequence, or a default value if the sequence is empty; - this method throws an exception if there is more than one element in the sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the single element of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the single element of the input sequence, or default () - if the sequence contains no elements. - - - - is - null - . - - - - doesn't implement - - . - - - - has more than one element. - - - - - Asynchronously returns the only element of a sequence that satisfies a specified condition or - a default value if no such element exists; this method throws an exception if more than one element - satisfies the condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the single element of. - - A function to test an element for a condition. - - A task that represents the asynchronous operation. - The task result contains the single element of the input sequence that satisfies the condition in - , or default ( ) if no such element is found. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously returns the only element of a sequence that satisfies a specified condition or - a default value if no such element exists; this method throws an exception if more than one element - satisfies the condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the single element of. - - A function to test an element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the single element of the input sequence that satisfies the condition in - , or default ( ) if no such element is found. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously determines whether a sequence contains a specified element by using the default equality comparer. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the single element of. - - The object to locate in the sequence. - - A task that represents the asynchronous operation. - The task result contains true if the input sequence contains the specified value; otherwise, false. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously determines whether a sequence contains a specified element by using the default equality comparer. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to return the single element of. - - The object to locate in the sequence. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains true if the input sequence contains the specified value; otherwise, false. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously determines whether a sequence contains any elements. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to check for being empty. - - - A task that represents the asynchronous operation. - The task result contains true if the source sequence contains any elements; otherwise, false. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously determines whether a sequence contains any elements. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An to check for being empty. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains true if the source sequence contains any elements; otherwise, false. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously determines whether any element of a sequence satisfies a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An whose elements to test for a condition. - - A function to test each element for a condition. - - A task that represents the asynchronous operation. - The task result contains true if any elements in the source sequence pass the test in the specified predicate; otherwise, false. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously determines whether any element of a sequence satisfies a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An whose elements to test for a condition. - - A function to test each element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains true if any elements in the source sequence pass the test in the specified predicate; otherwise, false. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously determines whether all the elements of a sequence satisfy a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An whose elements to test for a condition. - - A function to test each element for a condition. - - A task that represents the asynchronous operation. - The task result contains true if every element of the source sequence passes the test in the specified predicate; otherwise, false. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously determines whether all the elements of a sequence satisfy a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An whose elements to test for a condition. - - A function to test each element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains true if every element of the source sequence passes the test in the specified predicate; otherwise, false. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously returns the number of elements in a sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An that contains the elements to be counted. - - - A task that represents the asynchronous operation. - The task result contains the number of elements in the input sequence. - - - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously returns the number of elements in a sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An that contains the elements to be counted. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the number of elements in the input sequence. - - - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously returns the number of elements in a sequence that satisfy a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An that contains the elements to be counted. - - A function to test each element for a condition. - - A task that represents the asynchronous operation. - The task result contains the number of elements in the sequence that satisfy the condition in the predicate function. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - that satisfy the condition in the predicate function - is larger than - - . - - - - - Asynchronously returns the number of elements in a sequence that satisfy a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An that contains the elements to be counted. - - A function to test each element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the number of elements in the sequence that satisfy the condition in the predicate function. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - that satisfy the condition in the predicate function - is larger than - - . - - - - - Asynchronously returns an that represents the total number of elements in a sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An that contains the elements to be counted. - - - A task that represents the asynchronous operation. - The task result contains the number of elements in the input sequence. - - - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously returns an that represents the total number of elements in a sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An that contains the elements to be counted. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the number of elements in the input sequence. - - - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously returns an that represents the number of elements in a sequence - that satisfy a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An that contains the elements to be counted. - - A function to test each element for a condition. - - A task that represents the asynchronous operation. - The task result contains the number of elements in the sequence that satisfy the condition in the predicate function. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - that satisfy the condition in the predicate function - is larger than - - . - - - - - Asynchronously returns an that represents the number of elements in a sequence - that satisfy a condition. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An that contains the elements to be counted. - - A function to test each element for a condition. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the number of elements in the sequence that satisfy the condition in the predicate function. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - that satisfy the condition in the predicate function - is larger than - - . - - - - - Asynchronously returns the minimum value of a sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An that contains the elements to determine the minimum of. - - - A task that represents the asynchronous operation. - The task result contains the minimum value in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously returns the minimum value of a sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An that contains the elements to determine the minimum of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the minimum value in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously invokes a projection function on each element of a sequence and returns the minimum resulting value. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - The type of the value returned by the function represented by . - - - An that contains the elements to determine the minimum of. - - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the minimum value in the sequence. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously invokes a projection function on each element of a sequence and returns the minimum resulting value. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - The type of the value returned by the function represented by . - - - An that contains the elements to determine the minimum of. - - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the minimum value in the sequence. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously returns the maximum value of a sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An that contains the elements to determine the maximum of. - - - A task that represents the asynchronous operation. - The task result contains the maximum value in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously returns the maximum value of a sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - An that contains the elements to determine the maximum of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the maximum value in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously invokes a projection function on each element of a sequence and returns the maximum resulting value. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - The type of the value returned by the function represented by . - - - An that contains the elements to determine the maximum of. - - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the maximum value in the sequence. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously invokes a projection function on each element of a sequence and returns the maximum resulting value. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - The type of the value returned by the function represented by . - - - An that contains the elements to determine the maximum of. - - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the maximum value in the sequence. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the sum of. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the sum of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the sum of. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the sum of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the sum of. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the sum of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the sum of. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the sum of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the sum of. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the sum of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the sum of. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the sum of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the sum of. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the sum of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the sum of. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the sum of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the sum of. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the sum of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the sum of. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the sum of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the values in the sequence. - - - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of the sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of the sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of the sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of the sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of the sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of the sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of the sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of the sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of the sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of the sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of the sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of the sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of the sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of the sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of the sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of the sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the sum of the sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of the sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of the sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the sum of the sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - - A sequence of values of type . - - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the sum of the projected values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - The number of elements in - - is larger than - - . - - - - - Asynchronously computes the average of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the average of. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the average of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the average of. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the average of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the average of. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the average of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the average of. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the average of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the average of. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the average of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the average of. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the average of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the average of. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the average of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the average of. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the average of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the average of. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of values to calculate the average of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the average of. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of nullable values. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - A sequence of nullable values to calculate the average of. - - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - contains no elements. - - - - - Asynchronously computes the average of a sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Asynchronously computes the average of a sequence of nullable values that is obtained - by invoking a projection function on each element of the input sequence. - - - Multiple active operations on the same context instance are not supported. Use 'await' to ensure - that any asynchronous operations have completed before calling another method on this context. - - - The type of the elements of . - - A sequence of values to calculate the average of. - A projection function to apply to each element. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the average of the sequence of values. - - - - or - - is - null - . - - - - doesn't implement - - . - - - - - Bypasses a specified number of elements in a sequence and then returns the remaining elements. - - The type of the elements of source. - A sequence to return elements from. - An expression that evaluates to the number of elements to skip. - A sequence that contains elements that occur after the specified index in the - input sequence. - - - - Returns a specified number of contiguous elements from the start of a sequence. - - The type of the elements of source. - The sequence to return elements from. - An expression that evaluates to the number of elements - to return. - A sequence that contains the specified number of elements from the - start of the input sequence. - - - - Represents data in a geodetic (round earth) coordinate system. - - - - Gets the default coordinate system id (SRID) for geography values (WGS 84) - The default coordinate system id (SRID) for geography values (WGS 84) - - - Gets a representation of this DbGeography value that is specific to the underlying provider that constructed it. - A representation of this DbGeography value. - - - - Gets the spatial provider that will be used for operations on this spatial type. - - - - Gets or sets a data contract serializable well known representation of this DbGeography value. - A data contract serializable well known representation of this DbGeography value. - - - - Creates a new value based on the specified well known binary value. - - - A new DbGeography value as defined by the well known binary value with the default geography coordinate system identifier (SRID)( - - ). - - A byte array that contains a well known binary representation of the geography value. - - - - Creates a new value based on the specified well known binary value and coordinate system identifier (SRID). - - A new DbGeography value as defined by the well known binary value with the specified coordinate system identifier. - A byte array that contains a well known binary representation of the geography value. - The identifier of the coordinate system that the new DbGeography value should use. - - - - Creates a new line value based on the specified well known binary value and coordinate system identifier (SRID). - - A new DbGeography value as defined by the well known binary value with the specified coordinate system identifier. - A byte array that contains a well known binary representation of the geography value. - The identifier of the coordinate system that the new DbGeography value should use. - - - - Creates a new point value based on the specified well known binary value and coordinate system identifier (SRID). - - A new DbGeography value as defined by the well known binary value with the specified coordinate system identifier. - A byte array that contains a well known binary representation of the geography value. - The identifier of the coordinate system that the new DbGeography value should use. - - - - Creates a new polygon value based on the specified well known binary value and coordinate system identifier (SRID). - - A new DbGeography value as defined by the well known binary value with the specified coordinate system identifier. - A byte array that contains a well known binary representation of the geography value. - The identifier of the coordinate system that the new DbGeography value should use. - - - Returns the multiline value from a binary value. - The multiline value from a binary value. - The well-known binary value. - The coordinate system identifier. - - - Returns the multipoint value from a well-known binary value. - The multipoint value from a well-known binary value. - The well-known binary value. - The coordinate system identifier. - - - Returns the multi polygon value from a well-known binary value. - The multi polygon value from a well-known binary value. - The multi polygon well-known binary value. - The coordinate system identifier. - - - - Creates a new collection value based on the specified well known binary value and coordinate system identifier (SRID). - - A new DbGeography value as defined by the well known binary value with the specified coordinate system identifier. - A byte array that contains a well known binary representation of the geography value. - The identifier of the coordinate system that the new DbGeography value should use. - - - - Creates a new value based on the specified Geography Markup Language (GML) value. - - - A new DbGeography value as defined by the GML value with the default geography coordinate system identifier (SRID) ( - - ). - - A string that contains a Geography Markup Language (GML) representation of the geography value. - - - - Creates a new value based on the specified Geography Markup Language (GML) value and coordinate system identifier (SRID). - - A new DbGeography value as defined by the GML value with the specified coordinate system identifier. - A string that contains a Geography Markup Language (GML) representation of the geography value. - The identifier of the coordinate system that the new DbGeography value should use. - - - - Creates a new value based on the specified well known text value. - - - A new DbGeography value as defined by the well known text value with the default geography coordinate system identifier (SRID) ( - - ). - - A string that contains a well known text representation of the geography value. - - - - Creates a new value based on the specified well known text value and coordinate system identifier (SRID). - - A new DbGeography value as defined by the well known text value with the specified coordinate system identifier. - A string that contains a well known text representation of the geography value. - The identifier of the coordinate system that the new DbGeography value should use. - - - - Creates a new line value based on the specified well known text value and coordinate system identifier (SRID). - - A new DbGeography value as defined by the well known text value with the specified coordinate system identifier. - A string that contains a well known text representation of the geography value. - The identifier of the coordinate system that the new DbGeography value should use. - - - - Creates a new point value based on the specified well known text value and coordinate system identifier (SRID). - - A new DbGeography value as defined by the well known text value with the specified coordinate system identifier. - A string that contains a well known text representation of the geography value. - The identifier of the coordinate system that the new DbGeography value should use. - - - - Creates a new polygon value based on the specified well known text value and coordinate system identifier (SRID). - - A new DbGeography value as defined by the well known text value with the specified coordinate system identifier. - A string that contains a well known text representation of the geography value. - The identifier of the coordinate system that the new DbGeography value should use. - - - Returns the multiline value from a well-known text value. - The multiline value from a well-known text value. - The well-known text. - The coordinate system identifier. - - - Returns the multipoint value from a well-known text value. - The multipoint value from a well-known text value. - The well-known text value. - The coordinate system identifier. - - - Returns the multi polygon value from a well-known text value. - The multi polygon value from a well-known text value. - The multi polygon well-known text value. - The coordinate system identifier. - - - - Creates a new collection value based on the specified well known text value and coordinate system identifier (SRID). - - A new DbGeography value as defined by the well known text value with the specified coordinate system identifier. - A string that contains a well known text representation of the geography value. - The identifier of the coordinate system that the new DbGeography value should use. - - - Gets the identifier associated with the coordinate system. - The identifier associated with the coordinate system. - - - - Gets the dimension of the given value or, if the value is a collections, the largest element dimension. - - - The dimension of the given value. - - - - Gets the spatial type name of the DBGeography. - The spatial type name of the DBGeography. - - - Gets a nullable Boolean value indicating whether this DbGeography value is empty. - True if this DbGeography value is empty; otherwise, false. - - - Generates the well known text representation of this DbGeography value. Includes only Longitude and Latitude for points. - A string containing the well known text representation of this DbGeography value. - - - Generates the well known binary representation of this DbGeography value. - The well-known binary representation of this DbGeography value. - - - Generates the Geography Markup Language (GML) representation of this DbGeography value. - A string containing the GML representation of this DbGeography value. - - - Determines whether this DbGeography is spatially equal to the specified DbGeography argument. - true if other is spatially equal to this geography value; otherwise false. - The geography value that should be compared with this geography value for equality. - - - Determines whether this DbGeography is spatially disjoint from the specified DbGeography argument. - true if other is disjoint from this geography value; otherwise false. - The geography value that should be compared with this geography value for disjointness. - - - Determines whether this DbGeography value spatially intersects the specified DbGeography argument. - true if other intersects this geography value; otherwise false. - The geography value that should be compared with this geography value for intersection. - - - Returns a geography object that represents the union of all points whose distance from a geography instance is less than or equal to a specified value. - A geography object that represents the union of all points - The distance. - - - Computes the distance between the closest points in this DbGeography value and another DbGeography value. - A double value that specifies the distance between the two closest points in this geography value and other. - The geography value for which the distance from this value should be computed. - - - Computes the intersection of this DbGeography value and another DbGeography value. - A new DbGeography value representing the intersection between this geography value and other. - The geography value for which the intersection with this value should be computed. - - - Computes the union of this DbGeography value and another DbGeography value. - A new DbGeography value representing the union between this geography value and other. - The geography value for which the union with this value should be computed. - - - Computes the difference of this DbGeography value and another DbGeography value. - A new DbGeography value representing the difference between this geography value and other. - The geography value for which the difference with this value should be computed. - - - Computes the symmetric difference of this DbGeography value and another DbGeography value. - A new DbGeography value representing the symmetric difference between this geography value and other. - The geography value for which the symmetric difference with this value should be computed. - - - Gets the number of elements in this DbGeography value, if it represents a geography collection. <returns>The number of elements in this geography value, if it represents a collection of other geography values; otherwise null.</returns> - The number of elements in this DbGeography value. - - - Returns an element of this DbGeography value from a specific position, if it represents a geography collection. <param name="index">The position within this geography value from which the element should be taken.</param><returns>The element in this geography value at the specified position, if it represents a collection of other geography values; otherwise null.</returns> - An element of this DbGeography value from a specific position - The index. - - - Gets the Latitude coordinate of this DbGeography value, if it represents a point. <returns>The Latitude coordinate value of this geography value, if it represents a point; otherwise null.</returns> - The Latitude coordinate of this DbGeography value. - - - Gets the Longitude coordinate of this DbGeography value, if it represents a point. <returns>The Longitude coordinate value of this geography value, if it represents a point; otherwise null.</returns> - The Longitude coordinate of this DbGeography value. - - - Gets the elevation (Z coordinate) of this DbGeography value, if it represents a point. <returns>The elevation (Z coordinate) value of this geography value, if it represents a point; otherwise null.</returns> - The elevation (Z coordinate) of this DbGeography value. - - - Gets the M (Measure) coordinate of this DbGeography value, if it represents a point. <returns>The M (Measure) coordinate value of this geography value, if it represents a point; otherwise null.</returns> - The M (Measure) coordinate of this DbGeography value. - - - Gets a nullable double value that indicates the length of this DbGeography value, which may be null if this value does not represent a curve. - A nullable double value that indicates the length of this DbGeography value. - - - Gets a DbGeography value representing the start point of this value, which may be null if this DbGeography value does not represent a curve. - A DbGeography value representing the start point of this value. - - - Gets a DbGeography value representing the start point of this value, which may be null if this DbGeography value does not represent a curve. - A DbGeography value representing the start point of this value. - - - Gets a nullable Boolean value indicating whether this DbGeography value is closed, which may be null if this value does not represent a curve. - True if this DbGeography value is closed; otherwise, false. - - - Gets the number of points in this DbGeography value, if it represents a linestring or linear ring. <returns>The number of elements in this geography value, if it represents a linestring or linear ring; otherwise null.</returns> - The number of points in this DbGeography value. - - - Returns an element of this DbGeography value from a specific position, if it represents a linestring or linear ring. <param name="index">The position within this geography value from which the element should be taken.</param><returns>The element in this geography value at the specified position, if it represents a linestring or linear ring; otherwise null.</returns> - An element of this DbGeography value from a specific position - The index. - - - Gets a nullable double value that indicates the area of this DbGeography value, which may be null if this value does not represent a surface. - A nullable double value that indicates the area of this DbGeography value. - - - Returns a string representation of the geography value. - A string representation of the geography value. - - - - A data contract serializable representation of a value. - - - - Gets or sets the coordinate system identifier (SRID) of this value. - - - Gets or sets the well known text representation of this value. - - - Gets or sets the well known binary representation of this value. - - - - Represents geometric shapes. - - - - Gets the default coordinate system id (SRID) for geometry values. - The default coordinate system id (SRID) for geometry values. - - - Gets a representation of this DbGeometry value that is specific to the underlying provider that constructed it. - A representation of this DbGeometry value. - - - - Gets the spatial provider that will be used for operations on this spatial type. - - - - Gets or sets a data contract serializable well known representation of this DbGeometry value. - A data contract serializable well known representation of this DbGeometry value. - - - - Creates a new value based on the specified well known binary value. - - - A new DbGeometry value as defined by the well known binary value with the default geometry coordinate system identifier ( - - ). - - A byte array that contains a well known binary representation of the geometry value. - wellKnownBinary - - - - Creates a new value based on the specified well known binary value and coordinate system identifier (SRID). - - A new DbGeometry value as defined by the well known binary value with the specified coordinate system identifier. - A byte array that contains a well known binary representation of the geometry value. - The identifier of the coordinate system that the new DbGeometry value should use. - wellKnownBinary - coordinateSystemId - - - - Creates a new line value based on the specified well known binary value and coordinate system identifier (SRID). - - A new DbGeometry value as defined by the well known binary value with the specified coordinate system identifier. - A byte array that contains a well known binary representation of the geometry value. - The identifier of the coordinate system that the new DbGeometry value should use. - lineWellKnownBinary - coordinateSystemId - - - - Creates a new point value based on the specified well known binary value and coordinate system identifier (SRID). - - A new DbGeometry value as defined by the well known binary value with the specified coordinate system identifier. - A byte array that contains a well known binary representation of the geometry value. - The identifier of the coordinate system that the new DbGeometry value should use. - pointWellKnownBinary - coordinateSystemId - - - - Creates a new polygon value based on the specified well known binary value and coordinate system identifier (SRID). - - A new DbGeometry value as defined by the well known binary value with the specified coordinate system identifier. - A byte array that contains a well known binary representation of the geometry value. - The identifier of the coordinate system that the new DbGeometry value should use. - polygonWellKnownBinary - coordinateSystemId - - - Returns the multiline value from a binary value. - The multiline value from a binary value. - The well-known binary value. - The coordinate system identifier. - - - Returns the multipoint value from a well-known binary value. - The multipoint value from a well-known binary value. - The well-known binary value. - The coordinate system identifier. - - - Returns the multi polygon value from a well-known binary value. - The multipoint value from a well-known text value. - The multi polygon well-known text value. - The coordinate system identifier. - - - - Creates a new collection value based on the specified well known binary value and coordinate system identifier (SRID). - - A new DbGeometry value as defined by the well known binary value with the specified coordinate system identifier. - A byte array that contains a well known binary representation of the geometry value. - The identifier of the coordinate system that the new DbGeometry value should use. - geometryCollectionWellKnownBinary - coordinateSystemId - - - - Creates a new value based on the specified Geography Markup Language (GML) value. - - - A new DbGeometry value as defined by the GML value with the default geometry coordinate system identifier (SRID) ( - - ). - - A string that contains a Geography Markup Language (GML) representation of the geometry value. - geometryMarkup - - - - Creates a new value based on the specified Geography Markup Language (GML) value and coordinate system identifier (SRID). - - A new DbGeometry value as defined by the GML value with the specified coordinate system identifier. - A string that contains a Geography Markup Language (GML) representation of the geometry value. - The identifier of the coordinate system that the new DbGeometry value should use. - geometryMarkup - coordinateSystemId - - - - Creates a new value based on the specified well known text value. - - - A new DbGeometry value as defined by the well known text value with the default geometry coordinate system identifier (SRID) ( - - ). - - A string that contains a well known text representation of the geometry value. - wellKnownText - - - - Creates a new value based on the specified well known text value and coordinate system identifier (SRID). - - A new DbGeometry value as defined by the well known text value with the specified coordinate system identifier. - A string that contains a well known text representation of the geometry value. - The identifier of the coordinate system that the new DbGeometry value should use. - wellKnownText - coordinateSystemId - - - - Creates a new line value based on the specified well known text value and coordinate system identifier (SRID). - - A new DbGeometry value as defined by the well known text value with the specified coordinate system identifier. - A string that contains a well known text representation of the geometry value. - The identifier of the coordinate system that the new DbGeometry value should use. - lineWellKnownText - coordinateSystemId - - - - Creates a new point value based on the specified well known text value and coordinate system identifier (SRID). - - A new DbGeometry value as defined by the well known text value with the specified coordinate system identifier. - A string that contains a well known text representation of the geometry value. - The identifier of the coordinate system that the new DbGeometry value should use. - pointWellKnownText - coordinateSystemId - - - - Creates a new polygon value based on the specified well known text value and coordinate system identifier (SRID). - - A new DbGeometry value as defined by the well known text value with the specified coordinate system identifier. - A string that contains a well known text representation of the geometry value. - The identifier of the coordinate system that the new DbGeometry value should use. - polygonWellKnownText - coordinateSystemId - - - Returns the multiline value from a well-known text value. - The multiline value from a well-known text value. - The well-known text. - The coordinate system identifier. - - - Returns the multipoint value from a well-known text value. - The multipoint value from a well-known text value. - The well-known text value. - The coordinate system identifier. - - - Returns the multi polygon value from a well-known binary value. - The multi polygon value from a well-known binary value. - The multi polygon well-known text value. - The coordinate system identifier. - - - - Creates a new collection value based on the specified well known text value and coordinate system identifier (SRID). - - A new DbGeometry value as defined by the well known text value with the specified coordinate system identifier. - A string that contains a well known text representation of the geometry value. - The identifier of the coordinate system that the new DbGeometry value should use. - geometryCollectionWellKnownText - coordinateSystemId - - - Gets the coordinate system identifier of the DbGeometry object. - The coordinate system identifier of the DbGeometry object. - - - Gets the boundary of the DbGeometry objects. - The boundary of the DbGeometry objects. - - - - Gets the dimension of the given value or, if the value is a collection, the dimension of its largest element. - - - The dimension of the given value. - - - - Gets the envelope (minimum bounding box) of this DbGeometry value, as a geometry value. - The envelope (minimum bounding box) of this DbGeometry value. - - - Gets a spatial type name representation of this DbGeometry value. - A spatial type name representation of this DbGeometry value. - - - Gets a nullable Boolean value indicating whether this DbGeometry value is empty, which may be null if this value does not represent a curve. - True if this DbGeometry value is empty; otherwise, false. - - - Gets a nullable Boolean value indicating whether this DbGeometry value is simple. - True if this DbGeometry value is simple; otherwise, false. - - - Gets a nullable Boolean value indicating whether this DbGeometry value is valid. - True if this DbGeometry value is valid; otherwise, false. - - - Generates the well known text representation of this DbGeometry value. Includes only X and Y coordinates for points. - A string containing the well known text representation of this DbGeometry value. - - - Generates the well known binary representation of this DbGeometry value. - The well-known binary representation of this DbGeometry value. - - - Generates the Geography Markup Language (GML) representation of this DbGeometry value. - A string containing the GML representation of this DbGeometry value. - - - Determines whether this DbGeometry is spatially equal to the specified DbGeometry argument. - true if other is spatially equal to this geometry value; otherwise false. - The geometry value that should be compared with this geometry value for equality. - other - - - Determines whether this DbGeometry is spatially disjoint from the specified DbGeometry argument. - true if other is disjoint from this geometry value; otherwise false. - The geometry value that should be compared with this geometry value for disjointness. - other - - - Determines whether this DbGeometry value spatially intersects the specified DbGeometry argument. - true if other intersects this geometry value; otherwise false. - The geometry value that should be compared with this geometry value for intersection. - other - - - Determines whether this DbGeometry value spatially touches the specified DbGeometry argument. - true if other touches this geometry value; otherwise false. - The geometry value that should be compared with this geometry value. - other - - - Determines whether this DbGeometry value spatially crosses the specified DbGeometry argument. - true if other crosses this geometry value; otherwise false. - The geometry value that should be compared with this geometry value. - other - - - Determines whether this DbGeometry value is spatially within the specified DbGeometry argument. - true if this geometry value is within other; otherwise false. - The geometry value that should be compared with this geometry value for containment. - other - - - Determines whether this DbGeometry value spatially contains the specified DbGeometry argument. - true if this geometry value contains other; otherwise false. - The geometry value that should be compared with this geometry value for containment. - other - - - Determines whether this DbGeometry value spatially overlaps the specified DbGeometry argument. - true if this geometry value overlaps other; otherwise false. - The geometry value that should be compared with this geometry value for overlap. - other - - - Determines whether this DbGeometry value spatially relates to the specified DbGeometry argument according to the given Dimensionally Extended Nine-Intersection Model (DE-9IM) intersection pattern. - true if this geometry value relates to other according to the specified intersection pattern matrix; otherwise false. - The geometry value that should be compared with this geometry value for relation. - A string that contains the text representation of the (DE-9IM) intersection pattern that defines the relation. - other - matrix - - - Returns a geometry object that represents the union of all points whose distance from a geometry instance is less than or equal to a specified value. - A geometry object that represents the union of all points. - The distance. - - - Computes the distance between the closest points in this DbGeometry value and another DbGeometry value. - A double value that specifies the distance between the two closest points in this geometry value and other. - The geometry value for which the distance from this value should be computed. - other - - - Gets the convex hull of this DbGeometry value as another DbGeometry value. - The convex hull of this DbGeometry value as another DbGeometry value. - - - Computes the intersection of this DbGeometry value and another DbGeometry value. - A new DbGeometry value representing the intersection between this geometry value and other. - The geometry value for which the intersection with this value should be computed. - other - - - Computes the union of this DbGeometry value and another DbGeometry value. - A new DbGeometry value representing the union between this geometry value and other. - The geometry value for which the union with this value should be computed. - other - - - Computes the difference between this DbGeometry value and another DbGeometry value. - A new DbGeometry value representing the difference between this geometry value and other. - The geometry value for which the difference with this value should be computed. - other - - - Computes the symmetric difference between this DbGeometry value and another DbGeometry value. - A new DbGeometry value representing the symmetric difference between this geometry value and other. - The geometry value for which the symmetric difference with this value should be computed. - other - - - Gets the number of elements in this DbGeometry value, if it represents a geometry collection. <returns>The number of elements in this geometry value, if it represents a collection of other geometry values; otherwise null.</returns> - The number of elements in this DbGeometry value. - - - Returns an element of this DbGeometry value from a specific position, if it represents a geometry collection. <param name="index">The position within this geometry value from which the element should be taken.</param><returns>The element in this geometry value at the specified position, if it represents a collection of other geometry values; otherwise null.</returns> - An element of this DbGeometry value from a specific position. - The index. - - - Gets the X coordinate of this DbGeometry value, if it represents a point. <returns>The X coordinate value of this geometry value, if it represents a point; otherwise null.</returns> - The X coordinate of this DbGeometry value. - - - Gets the Y coordinate of this DbGeometry value, if it represents a point. <returns>The Y coordinate value of this geometry value, if it represents a point; otherwise null.</returns> - The Y coordinate of this DbGeometry value. - - - Gets the elevation (Z coordinate) of this DbGeometry value, if it represents a point. <returns>The elevation (Z coordinate) of this geometry value, if it represents a point; otherwise null.</returns> - The elevation (Z coordinate) of this DbGeometry value. - - - Gets the Measure (M coordinate) of this DbGeometry value, if it represents a point. <returns>The Measure (M coordinate) value of this geometry value, if it represents a point; otherwise null.</returns> - The Measure (M coordinate) of this DbGeometry value. - - - Gets a nullable double value that indicates the length of this DbGeometry value, which may be null if this value does not represent a curve. - The length of this DbGeometry value. - - - Gets a DbGeometry value representing the start point of this value, which may be null if this DbGeometry value does not represent a curve. - A DbGeometry value representing the start point of this value. - - - Gets a DbGeometry value representing the start point of this value, which may be null if this DbGeometry value does not represent a curve. - A DbGeometry value representing the start point of this value. - - - Gets a nullable Boolean value indicating whether this DbGeometry value is closed, which may be null if this value does not represent a curve. - True if this DbGeometry value is closed; otherwise, false. - - - Gets a nullable Boolean value indicating whether this DbGeometry value is a ring, which may be null if this value does not represent a curve. - True if this DbGeometry value is a ring; otherwise, false. - - - Gets the number of points in this DbGeometry value, if it represents a linestring or linear ring. <returns>The number of elements in this geometry value, if it represents a linestring or linear ring; otherwise null.</returns> - The number of points in this DbGeometry value. - - - Returns an element of this DbGeometry value from a specific position, if it represents a linestring or linear ring. <param name="index">The position within this geometry value from which the element should be taken.</param><returns>The element in this geometry value at the specified position, if it represents a linestring or linear ring; otherwise null.</returns> - An element of this DbGeometry value from a specific position. - The index. - - - Gets a nullable double value that indicates the area of this DbGeometry value, which may be null if this value does not represent a surface. - A nullable double value that indicates the area of this DbGeometry value. - - - Gets the DbGeometry value that represents the centroid of this DbGeometry value, which may be null if this value does not represent a surface. - The DbGeometry value that represents the centroid of this DbGeometry value. - - - Gets a point on the surface of this DbGeometry value, which may be null if this value does not represent a surface. - A point on the surface of this DbGeometry value. - - - Gets the DbGeometry value that represents the exterior ring of this DbGeometry value, which may be null if this value does not represent a polygon. - The DbGeometry value that represents the exterior ring of this DbGeometry value. - - - Gets the number of interior rings in this DbGeometry value, if it represents a polygon. <returns>The number of elements in this geometry value, if it represents a polygon; otherwise null.</returns> - The number of interior rings in this DbGeometry value. - - - Returns an interior ring from this DbGeometry value at a specific position, if it represents a polygon. <param name="index">The position within this geometry value from which the interior ring should be taken.</param><returns>The interior ring in this geometry value at the specified position, if it represents a polygon; otherwise null.</returns> - An interior ring from this DbGeometry value at a specific position. - The index. - - - Returns a string representation of the geometry value. - A string representation of the geometry value. - - - - A data contract serializable representation of a value. - - - - Gets or sets the coordinate system identifier (SRID) of this value. - - - Gets or sets the well known text representation of this value. - - - Gets or sets the well known binary representation of this value. - - - - A provider-independent service API for geospatial (Geometry/Geography) type support. - - - - - When implemented in derived types, reads an instance of from the column at the specified column ordinal. - - The instance of DbGeography at the specified column value - The ordinal of the column that contains the geography value - - - - Asynchronously reads an instance of from the column at the specified column ordinal. - - - Providers should override with an appropriate implementation. - The default implementation invokes the synchronous method and returns - a completed task, blocking the calling thread. - - The ordinal of the column that contains the geography value. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the instance of at the specified column value. - - - - - When implemented in derived types, reads an instance of from the column at the specified column ordinal. - - The instance of DbGeometry at the specified column value - The ordinal of the data record column that contains the provider-specific geometry data - - - - Asynchronously reads an instance of from the column at the specified column ordinal. - - - Providers should override with an appropriate implementation. - The default implementation invokes the synchronous method and returns - a completed task, blocking the calling thread. - - The ordinal of the data record column that contains the provider-specific geometry data. - - A to observe while waiting for the task to complete. - - - A task that represents the asynchronous operation. - The task result contains the instance of at the specified column value. - - - - - Returns whether the column at the specified column ordinal is of geography type - - The column ordinal. - - true if the column at the specified column ordinal is of geography type; - false otherwise. - - - - - Returns whether the column at the specified column ordinal is of geometry type - - The column ordinal. - - true if the column at the specified column ordinal is of geometry type; - false otherwise. - - - - - A provider-independent service API for geospatial (Geometry/Geography) type support. - - - - - Gets the default services for the . - - The default services. - - - - Override this property to allow the spatial provider to fail fast when native types or other - resources needed for the spatial provider to function correctly are not available. - The default value is true which means that EF will continue with the assumption - that the provider has the necessary types/resources rather than failing fast. - - - - - This method is intended for use by derived implementations of - - after suitable validation of the specified provider value to ensure it is suitable for use with the derived implementation. - - - A new instance that contains the specified providerValue and uses the specified spatialServices as its spatial implementation. - - - The spatial services instance that the returned value will depend on for its implementation of spatial functionality. - - The provider value. - - - - Creates a new value based on a provider-specific value that is compatible with this spatial services implementation. - - - A new value backed by this spatial services implementation and the specified provider value. - - A provider-specific value that this spatial services implementation is capable of interpreting as a geography value. - A new DbGeography value backed by this spatial services implementation and the specified provider value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Creates a provider-specific value compatible with this spatial services implementation based on the specified well-known - - representation. - - A provider-specific value that encodes the information contained in wellKnownValue in a fashion compatible with this spatial services implementation. - - An instance of that contains the well-known representation of a geography value. - - - - - Creates an instance of that represents the specified - - value using one or both of the standard well-known spatial formats. - - - The well-known representation of geographyValue, as a new - - . - - The geography value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Creates a new value based on the specified well-known binary value. - - - A new value as defined by the well-known binary value with the default - - coordinate system identifier (SRID) ( - - ). - - A byte array that contains a well-known binary representation of the geography value. - - - - Creates a new value based on the specified well-known binary value and coordinate system identifier (SRID). - - - A new value as defined by the well-known binary value with the specified coordinate system identifier (SRID) ( - - ). - - A byte array that contains a well-known binary representation of the geography value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new line value based on the specified well-known binary value and coordinate system identifier (SRID). - - - A new value as defined by the well-known binary value with the specified coordinate system identifier (SRID) ( - - ). - - A byte array that contains a well-known binary representation of the geography value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new point value based on the specified well-known binary value and coordinate system identifier (SRID). - - - A new value as defined by the well-known binary value with the specified coordinate system identifier (SRID) ( - - ). - - A byte array that contains a well-known binary representation of the geography value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new polygon value based on the specified well-known binary value and coordinate system identifier (SRID). - - - A new value as defined by the well-known binary value with the specified coordinate system identifier (SRID) ( - - ). - - A byte array that contains a well-known binary representation of the geography value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new multiline value based on the specified well-known binary value and coordinate system identifier. - - - The new multiline value. - - The well-known binary value. - The coordinate system identifier. - - - - Creates a new multipoint value based on the specified well-known binary value and coordinate system identifier. - - - A new multipoint value. - - The well-known binary value. - The coordinate system identifier. - - - - Creates a new multi polygon value based on the specified well-known binary value and coordinate system identifier. - - - A new multi polygon value. - - The well-known binary value. - The coordinate system identifier. - - - - Creates a new collection value based on the specified well-known binary value and coordinate system identifier (SRID). - - - A new value as defined by the well-known binary value with the specified coordinate system identifier (SRID) ( - - ). - - A byte array that contains a well-known binary representation of the geography value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new value based on the specified well-known text value. - - - A new value as defined by the well-known text value with the default - - coordinate system identifier (SRID) ( - - ). - - A string that contains a well-known text representation of the geography value. - - - - Creates a new value based on the specified well-known text value and coordinate system identifier (SRID). - - - A new value as defined by the well-known text value with the specified coordinate system identifier (SRID) ( - - ). - - A string that contains a well-known text representation of the geography value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new line value based on the specified well-known text value and coordinate system identifier (SRID). - - - A new value as defined by the well-known text value with the specified coordinate system identifier (SRID) ( - - ). - - A string that contains a well-known text representation of the geography value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new point value based on the specified well-known text value and coordinate system identifier (SRID). - - - A new value as defined by the well-known text value with the specified coordinate system identifier (SRID) ( - - ). - - A string that contains a well-known text representation of the geography value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new polygon value based on the specified well-known text value and coordinate system identifier (SRID). - - - A new value as defined by the well-known text value with the specified coordinate system identifier (SRID) ( - - ). - - A string that contains a well-known text representation of the geography value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new multiline value based on the specified well-known text value and coordinate system identifier. - - - A new multiline value. - - The well-known text value. - The coordinate system identifier. - - - - Creates a new multipoint value based on the specified well-known text value and coordinate system identifier. - - - A new multipoint value. - - The well-known text value. - The coordinate system identifier. - - - - Creates a new multi polygon value based on the specified well-known text value and coordinate system identifier. - - - A new multi polygon value. - - The well-known text value. - The coordinate system identifier. - - - - Creates a new collection value based on the specified well-known text value and coordinate system identifier (SRID). - - - A new value as defined by the well-known text value with the specified coordinate system identifier (SRID) ( - - ). - - A string that contains a well-known text representation of the geography value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new value based on the specified Geography Markup Language (GML) value. - - - A new value as defined by the GML value with the default - - coordinate system identifier (SRID) ( - - ). - - A string that contains a Geometry Markup Language (GML) representation of the geography value. - - - - Creates a new value based on the specified Geography Markup Language (GML) value and coordinate system identifier (SRID). - - - A new value as defined by the GML value with the specified coordinate system identifier (SRID). - - A string that contains a Geometry Markup Language (GML) representation of the geography value. - - The identifier of the coordinate system that the new value should use. - - - - - Returns the coordinate system identifier of the given value. - - - The coordinate system identifier of the given value. - - The geography value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Gets the dimension of the given value or, if the value is a collections, the largest element dimension. - - - The dimension of geographyValue, or the largest element dimension if - - is a collection. - - The geography value for which the dimension value should be retrieved. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a value that indicates the spatial type name of the given - - value. - - - The spatial type name of the given value. - - The geography value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a nullable Boolean value that whether the given value is empty. - - - True if the given value is empty; otherwise, false. - - The geography value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Gets the well-known text representation of the given value. This value should include only the Longitude and Latitude of points. - - A string containing the well-known text representation of geographyValue. - The geography value for which the well-known text should be generated. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a text representation of with elevation and measure. - - - A text representation of . - - The geography value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Gets the well-known binary representation of the given value. - - - The well-known binary representation of the given value. - - The geography value for which the well-known binary should be generated. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Generates the Geography Markup Language (GML) representation of this - - value. - - A string containing the GML representation of this DbGeography value. - The geography value for which the GML should be generated. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Determines whether the two given values are spatially equal. - - true if geographyValue is spatially equal to otherGeography; otherwise false. - The first geography value to compare for equality. - The second geography value to compare for equality. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Determines whether the two given values are spatially disjoint. - - true if geographyValue is disjoint from otherGeography; otherwise false. - The first geography value to compare for disjointness. - The second geography value to compare for disjointness. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Determines whether the two given values spatially intersect. - - true if geographyValue intersects otherGeography; otherwise false. - The first geography value to compare for intersection. - The second geography value to compare for intersection. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Creates a geography value representing all points less than or equal to distance from the given - - value. - - A new DbGeography value representing all points less than or equal to distance from geographyValue. - The geography value. - A double value specifying how far from geographyValue to buffer. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Computes the distance between the closest points in two values. - - A double value that specifies the distance between the two closest points in geographyValue and otherGeography. - The first geography value. - The second geography value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Computes the intersection of two values. - - - A new value representing the intersection of geographyValue and otherGeography. - - The first geography value. - The second geography value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Computes the union of two values. - - - A new value representing the union of geographyValue and otherGeography. - - The first geography value. - The second geography value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Computes the difference of two values. - - A new DbGeography value representing the difference of geographyValue and otherGeography. - The first geography value. - The second geography value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Computes the symmetric difference of two values. - - - A new value representing the symmetric difference of geographyValue and otherGeography. - - The first geography value. - The second geography value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Returns the number of elements in the given value, if it represents a geography collection. - - The number of elements in geographyValue, if it represents a collection of other geography values; otherwise null. - The geography value, which need not represent a geography collection. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns an element of the given value, if it represents a geography collection. - - The element in geographyValue at position index, if it represents a collection of other geography values; otherwise null. - The geography value, which need not represent a geography collection. - The position within the geography value from which the element should be taken. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns the Latitude coordinate of the given value, if it represents a point. - - - The Latitude coordinate of the given value. - - The geography value, which need not represent a point. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns the Longitude coordinate of the given value, if it represents a point. - - - The Longitude coordinate of the given value. - - The geography value, which need not represent a point. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns the elevation (Z coordinate) of the given value, if it represents a point. - - The elevation (Z coordinate) of geographyValue, if it represents a point; otherwise null. - The geography value, which need not represent a point. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns the M (Measure) coordinate of the given value, if it represents a point. - - - The M (Measure) coordinate of the given value. - - The geography value, which need not represent a point. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a nullable double value that indicates the length of the given - - value, which may be null if the value does not represent a curve. - - - The length of the given value. - - The geography value, which need not represent a curve. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a value that represents the start point of the given DbGeography value, which may be null if the value does not represent a curve. - - - The start point of the given value. - - The geography value, which need not represent a curve. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a value that represents the end point of the given DbGeography value, which may be null if the value does not represent a curve. - - The end point of geographyValue, if it represents a curve; otherwise null. - The geography value, which need not represent a curve. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a nullable Boolean value that whether the given value is closed, which may be null if the value does not represent a curve. - - - True if the given value is closed; otherwise, false. - - The geography value, which need not represent a curve. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns the number of points in the given value, if it represents a linestring or linear ring. - - - The number of points in the given value. - - The geography value, which need not represent a linestring or linear ring. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a point element of the given value, if it represents a linestring or linear ring. - - The point in geographyValue at position index, if it represents a linestring or linear ring; otherwise null. - The geography value, which need not represent a linestring or linear ring. - The position within the geography value from which the element should be taken. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a nullable double value that indicates the area of the given - - value, which may be null if the value does not represent a surface. - - - A nullable double value that indicates the area of the given value. - - The geography value, which need not represent a surface. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - This method is intended for use by derived implementations of - - after suitable validation of the specified provider value to ensure it is suitable for use with the derived implementation. - - - A new instance that contains the specified providerValue and uses the specified spatialServices as its spatial implementation. - - - The spatial services instance that the returned value will depend on for its implementation of spatial functionality. - - A provider value. - - - - Creates a provider-specific value compatible with this spatial services implementation based on the specified well-known - - representation. - - A provider-specific value that encodes the information contained in wellKnownValue in a fashion compatible with this spatial services implementation. - - An instance of that contains the well-known representation of a geometry value. - - - - - Creates an instance of that represents the specified - - value using one or both of the standard well-known spatial formats. - - - The well-known representation of geometryValue, as a new - - . - - The geometry value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Creates a new value based on a provider-specific value that is compatible with this spatial services implementation. - - - A new value backed by this spatial services implementation and the specified provider value. - - A provider-specific value that this spatial services implementation is capable of interpreting as a geometry value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Creates a new value based on the specified well-known binary value. - - - A new value as defined by the well-known binary value with the default - - coordinate system identifier (SRID) ( - - ). - - A byte array that contains a well-known binary representation of the geometry value. - - - - Creates a new value based on the specified well-known binary value and coordinate system identifier (SRID). - - - A new value as defined by the well-known binary value with the specified coordinate system identifier (SRID) ( - - ). - - A byte array that contains a well-known binary representation of the geometry value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new line value based on the specified well-known binary value and coordinate system identifier (SRID). - - - A new value as defined by the well-known binary value with the specified coordinate system identifier (SRID) ( - - ). - - A byte array that contains a well-known binary representation of the geometry value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new point value based on the specified well-known binary value and coordinate system identifier (SRID). - - - A new value as defined by the well-known binary value with the specified coordinate system identifier (SRID) ( - - ). - - A byte array that contains a well-known binary representation of the geometry value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new polygon value based on the specified well-known binary value and coordinate system identifier (SRID). - - - A new value as defined by the well-known binary value with the specified coordinate system identifier (SRID) ( - - ). - - A byte array that contains a well-known binary representation of the geometry value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new multiline value based on the specified well-known binary value and coordinate system identifier. - - - The new multiline value - - The well-known binary value. - The coordinate system identifier. - - - - Creates a new multipoint value based on the specified well-known binary value and coordinate system identifier. - - - A new multipoint value. - - The well-known binary value. - The coordinate system identifier. - - - - Creates a new multi polygon value based on the specified well-known binary value and coordinate system identifier. - - - A new multi polygon value. - - The well-known binary value. - The coordinate system identifier. - - - - Creates a new collection value based on the specified well-known binary value and coordinate system identifier (SRID). - - - A new value as defined by the well-known binary value with the specified coordinate system identifier (SRID) ( - - ). - - A byte array that contains a well-known binary representation of the geometry value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new value based on the specified well-known text value. - - - A new value as defined by the well-known text value with the default - - coordinate system identifier (SRID) ( - - ). - - A string that contains a well-known text representation of the geometry value. - - - - Creates a new value based on the specified well-known text value and coordinate system identifier (SRID). - - - A new value as defined by the well-known text value with the specified coordinate system identifier (SRID) ( - - ). - - A string that contains a well-known text representation of the geometry value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new line value based on the specified well-known text value and coordinate system identifier (SRID). - - - A new value as defined by the well-known text value with the specified coordinate system identifier (SRID) ( - - ). - - A string that contains a well-known text representation of the geometry value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new point value based on the specified well-known text value and coordinate system identifier (SRID). - - - A new value as defined by the well-known text value with the specified coordinate system identifier (SRID) ( - - ). - - A string that contains a well-known text representation of the geometry value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new polygon value based on the specified well-known text value and coordinate system identifier (SRID). - - - A new value as defined by the well-known text value with the specified coordinate system identifier (SRID) ( - - ). - - A string that contains a well-known text representation of the geometry value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new multiline value based on the specified well-known text value and coordinate system identifier. - - - A new multiline value - - The well-known text value. - The coordinate system identifier. - - - - Creates a new multipoint value based on the specified well-known text value and coordinate system identifier. - - - A new multipoint value. - - The well-known text value. - The coordinate system identifier. - - - - Creates a new multi polygon value based on the specified well-known text value and coordinate system identifier. - - - A new multi polygon value. - - The well-known text value. - The coordinate system identifier. - - - - Creates a new collection value based on the specified well-known text value and coordinate system identifier (SRID). - - - A new value as defined by the well-known text value with the specified coordinate system identifier (SRID) ( - - ). - - A string that contains a well-known text representation of the geometry value. - - The identifier of the coordinate system that the new value should use. - - - - - Creates a new value based on the specified Geography Markup Language (GML) value. - - - A new value as defined by the GML value with the default - - coordinate system identifier (SRID) ( - - ). - - A string that contains a Geography Markup Language (GML) representation of the geometry value. - - - - Creates a new value based on the specified Geography Markup Language (GML) value and coordinate system identifier (SRID). - - - A new value as defined by the GML value with the specified coordinate system identifier (SRID). - - A string that contains a Geography Markup Language (GML) representation of the geometry value. - - The identifier of the coordinate system that the new value should use. - - - - - Returns the coordinate system identifier of the given value. - - - The coordinate system identifier of the given value. - - The geometry value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a nullable double value that indicates the boundary of the given - - value. - - - The boundary of the given value. - - The geometry value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Gets the dimension of the given value or, if the value is a collections, the largest element dimension. - - - The dimension of geometryValue, or the largest element dimension if - - is a collection. - - The geometry value for which the dimension value should be retrieved. - - - - Gets the envelope (minimum bounding box) of the given value, as a geometry value. - - - The envelope of geometryValue, as a value. - - The geometry value for which the envelope value should be retrieved. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a value that indicates the spatial type name of the given - - value. - - - The spatial type name of the given value. - - The geometry value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a nullable Boolean value that whether the given value is empty. - - - True if the given value is empty; otherwise, false. - - The geometry value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a nullable Boolean value that whether the given value is simple. - - - True if the given value is simple; otherwise, false. - - The geometry value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a nullable Boolean value that whether the given value is valid. - - - True if the given value is valid; otherwise, false. - - The geometry value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Gets the well-known text representation of the given value, including only X and Y coordinates for points. - - A string containing the well-known text representation of geometryValue. - The geometry value for which the well-known text should be generated. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a text representation of with elevation and measure. - - - A text representation of with elevation and measure. - - The geometry value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Gets the well-known binary representation of the given value. - - - The well-known binary representation of the given value. - - The geometry value for which the well-known binary should be generated. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Generates the Geography Markup Language (GML) representation of this - - value. - - A string containing the GML representation of this DbGeometry value. - The geometry value for which the GML should be generated. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Determines whether the two given values are spatially equal. - - true if geometryValue is spatially equal to otherGeometry; otherwise false. - The first geometry value to compare for equality. - The second geometry value to compare for equality. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Determines whether the two given values are spatially disjoint. - - true if geometryValue is disjoint from otherGeometry; otherwise false. - The first geometry value to compare for disjointness. - The second geometry value to compare for disjointness. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Determines whether the two given values spatially intersect. - - true if geometryValue intersects otherGeometry; otherwise false. - The first geometry value to compare for intersection. - The second geometry value to compare for intersection. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Determines whether the two given values spatially touch. - - true if geometryValue touches otherGeometry; otherwise false. - The first geometry value. - The second geometry value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Determines whether the two given values spatially cross. - - true if geometryValue crosses otherGeometry; otherwise false. - The first geometry value. - The second geometry value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Determines whether one value is spatially within the other. - - true if geometryValue is within otherGeometry; otherwise false. - The first geometry value. - The second geometry value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Determines whether one value spatially contains the other. - - true if geometryValue contains otherGeometry; otherwise false. - The first geometry value. - The second geometry value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Determines whether the two given values spatially overlap. - - true if geometryValue overlaps otherGeometry; otherwise false. - The first geometry value. - The second geometry value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Determines whether the two given values are spatially related according to the given Dimensionally Extended Nine-Intersection Model (DE-9IM) intersection pattern. - - true if this geometryValue value relates to otherGeometry according to the specified intersection pattern matrix; otherwise false. - The first geometry value. - The geometry value that should be compared with the first geometry value for relation. - A string that contains the text representation of the (DE-9IM) intersection pattern that defines the relation. - - - , - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Creates a geometry value representing all points less than or equal to distance from the given - - value. - - A new DbGeometry value representing all points less than or equal to distance from geometryValue. - The geometry value. - A double value specifying how far from geometryValue to buffer. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Computes the distance between the closest points in two values. - - A double value that specifies the distance between the two closest points in geometryValue and otherGeometry. - The first geometry value. - The second geometry value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Returns a nullable double value that indicates the convex hull of the given - - value. - - - The convex hull of the given value. - - The geometry value. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Computes the intersection of two values. - - - A new value representing the intersection of geometryValue and otherGeometry. - - The first geometry value. - The second geometry value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Computes the union of two values. - - - A new value representing the union of geometryValue and otherGeometry. - - The first geometry value. - The second geometry value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Computes the difference between two values. - - A new DbGeometry value representing the difference between geometryValue and otherGeometry. - The first geometry value. - The second geometry value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Computes the symmetric difference between two values. - - - A new value representing the symmetric difference between geometryValue and otherGeometry. - - The first geometry value. - The second geometry value. - - - or - - is null. - - - - or - - is not compatible with this spatial services implementation. - - - - - Returns the number of elements in the given value, if it represents a geometry collection. - - The number of elements in geometryValue, if it represents a collection of other geometry values; otherwise null. - The geometry value, which need not represent a geometry collection. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns an element of the given value, if it represents a geometry collection. - - The element in geometryValue at position index, if it represents a collection of other geometry values; otherwise null. - The geometry value, which need not represent a geometry collection. - The position within the geometry value from which the element should be taken. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns the X coordinate of the given value, if it represents a point. - - - The X coordinate of the given value. - - The geometry value, which need not represent a point. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns the Y coordinate of the given value, if it represents a point. - - - The Y coordinate of the given value. - - The geometry value, which need not represent a point. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns the elevation (Z) of the given value, if it represents a point. - - The elevation (Z) of geometryValue, if it represents a point; otherwise null. - The geometry value, which need not represent a point. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns the M (Measure) coordinate of the given value, if it represents a point. - - - The M (Measure) coordinate of the given value. - - The geometry value, which need not represent a point. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a nullable double value that indicates the length of the given - - value, which may be null if the value does not represent a curve. - - - The length of the given value. - - The geometry value, which need not represent a curve. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a value that represents the start point of the given DbGeometry value, which may be null if the value does not represent a curve. - - - The start point of the given value. - - The geometry value, which need not represent a curve. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a value that represents the end point of the given DbGeometry value, which may be null if the value does not represent a curve. - - The end point of geometryValue, if it represents a curve; otherwise null. - The geometry value, which need not represent a curve. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a nullable Boolean value that whether the given value is closed, which may be null if the value does not represent a curve. - - - True if the given value is closed; otherwise, false. - - The geometry value, which need not represent a curve. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a nullable Boolean value that whether the given value is a ring, which may be null if the value does not represent a curve. - - - True if the given value is a ring; otherwise, false. - - The geometry value, which need not represent a curve. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns the number of points in the given value, if it represents a linestring or linear ring. - - - The number of points in the given value. - - The geometry value, which need not represent a linestring or linear ring. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a point element of the given value, if it represents a linestring or linear ring. - - The point in geometryValue at position index, if it represents a linestring or linear ring; otherwise null. - The geometry value, which need not represent a linestring or linear ring. - The position within the geometry value from which the element should be taken. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a nullable double value that indicates the area of the given - - value, which may be null if the value does not represent a surface. - - - A nullable double value that indicates the area of the given value. - - The geometry value, which need not represent a surface. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a value that represents the centroid of the given DbGeometry value, which may be null if the value does not represent a surface. - - The centroid of geometryValue, if it represents a surface; otherwise null. - The geometry value, which need not represent a surface. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a value that represents a point on the surface of the given DbGeometry value, which may be null if the value does not represent a surface. - - - A value that represents a point on the surface of the given DbGeometry value. - - The geometry value, which need not represent a surface. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns a value that represents the exterior ring of the given DbGeometry value, which may be null if the value does not represent a polygon. - - A DbGeometry value representing the exterior ring on geometryValue, if it represents a polygon; otherwise null. - The geometry value, which need not represent a polygon. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns the number of interior rings in the given value, if it represents a polygon. - - The number of elements in geometryValue, if it represents a polygon; otherwise null. - The geometry value, which need not represent a polygon. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Returns an interior ring from the given value, if it represents a polygon. - - The interior ring in geometryValue at position index, if it represents a polygon; otherwise null. - The geometry value, which need not represent a polygon. - The position within the geometry value from which the element should be taken. - - - is null. - - - - is not compatible with this spatial services implementation. - - - - - Controls the transaction creation behavior while executing a database command or query. - - - - - If no transaction is present then a new transaction will be used for the operation. - - - - - If an existing transaction is present then use it, otherwise execute the command or query without a transaction. - - - - - Contains extension methods for the class. - - - - - Configures an awaiter used to await this to avoid - marshalling the continuation - back to the original context, but preserve the current culture and UI culture. - - - The type of the result produced by the associated . - - The task to be awaited on. - An object used to await this task. - - - - Configures an awaiter used to await this to avoid - marshalling the continuation - back to the original context, but preserve the current culture and UI culture. - - The task to be awaited on. - An object used to await this task. - - - - Provides an awaitable object that allows for awaits on that - preserve the culture. - - - The type of the result produced by the associated . - - This type is intended for compiler use only. - - - - Constructs a new instance of the class. - - The task to be awaited on. - - - Gets an awaiter used to await this . - An awaiter instance. - This method is intended for compiler user rather than use directly in code. - - - - Gets whether this Task has completed. - - - will return true when the Task is in one of the three - final states: RanToCompletion, - Faulted, or - Canceled. - - - - Ends the await on the completed . - The result of the completed . - The awaiter was not properly initialized. - The task was canceled. - The task completed in a Faulted state. - - - This method is not implemented and should not be called. - The action to invoke when the await operation completes. - - - - Schedules the continuation onto the associated with this - . - - The action to invoke when the await operation completes. - - The argument is null - (Nothing in Visual Basic). - - The awaiter was not properly initialized. - This method is intended for compiler user rather than use directly in code. - - - - Provides an awaitable object that allows for awaits on that - preserve the culture. - - This type is intended for compiler use only. - - - - Constructs a new instance of the class. - - The task to be awaited on. - - - Gets an awaiter used to await this . - An awaiter instance. - This method is intended for compiler user rather than use directly in code. - - - - Gets whether this Task has completed. - - - will return true when the Task is in one of the three - final states: RanToCompletion, - Faulted, or - Canceled. - - - - Ends the await on the completed . - The awaiter was not properly initialized. - The task was canceled. - The task completed in a Faulted state. - - - This method is not implemented and should not be called. - The action to invoke when the await operation completes. - - - - Schedules the continuation onto the associated with this - . - - The action to invoke when the await operation completes. - - The argument is null - (Nothing in Visual Basic). - - The awaiter was not properly initialized. - This method is intended for compiler user rather than use directly in code. - - - - Exception thrown from when validating entities fails. - - - - - Initializes a new instance of DbEntityValidationException. - - - - - Initializes a new instance of DbEntityValidationException. - - The exception message. - - - - Initializes a new instance of DbEntityValidationException. - - The exception message. - Validation results. - - - - Initializes a new instance of DbEntityValidationException. - - The exception message. - The inner exception. - - - - Initializes a new instance of DbEntityValidationException. - - The exception message. - Validation results. - The inner exception. - - - - Initializes a new instance of the DbEntityValidationException class with the specified serialization information and context. - - The data necessary to serialize or deserialize an object. - Description of the source and destination of the specified serialized stream. - - - - Validation results. - - - - - Sets the with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Represents validation results for single entity. - - - - - Creates an instance of class. - - Entity entry the results applies to. Never null. - - List of instances. Never null. Can be empty meaning the entity is valid. - - - - - Gets an instance of the results applies to. - - - - - Gets validation errors. Never null. - - - - - Gets an indicator if the entity is valid. - - - - - Exception thrown from when an exception is thrown from the validation - code. - - - - - Initializes a new instance of DbUnexpectedValidationException. - - - - - Initializes a new instance of DbUnexpectedValidationException. - - The exception message. - - - - Initializes a new instance of DbUnexpectedValidationException. - - The exception message. - The inner exception. - - - - Initializes a new instance of DbUnexpectedValidationException with the specified serialization info and - context. - - The serialization info. - The streaming context. - - - - Validation error. Can be either entity or property level validation error. - - - - - Creates an instance of . - - Name of the invalid property. Can be null. - Validation error message. Can be null. - - - - Gets name of the invalid property. - - - - - Gets validation error message. - - - - - When this attribute is placed on a property it indicates that the database column to which the - property is mapped has an index. - - - This attribute is used by Entity Framework Migrations to create indexes on mapped database columns. - Multi-column indexes are created by using the same index name in multiple attributes. The information - in these attributes is then merged together to specify the actual database index. - - - - - Creates a instance for an index that will be named by convention and - has no column order, clustering, or uniqueness specified. - - - - - Creates a instance for an index with the given name and - has no column order, clustering, or uniqueness specified. - - The index name. - - - - Creates a instance for an index with the given name and column order, - but with no clustering or uniqueness specified. - - - Multi-column indexes are created by using the same index name in multiple attributes. The information - in these attributes is then merged together to specify the actual database index. - - The index name. - A number which will be used to determine column ordering for multi-column indexes. - - - - The index name. - - - Multi-column indexes are created by using the same index name in multiple attributes. The information - in these attributes is then merged together to specify the actual database index. - - - - - A number which will be used to determine column ordering for multi-column indexes. This will be -1 if no - column order has been specified. - - - Multi-column indexes are created by using the same index name in multiple attributes. The information - in these attributes is then merged together to specify the actual database index. - - - - - Set this property to true to define a clustered index. Set this property to false to define a - non-clustered index. - - - The value of this property is only relevant if returns true. - If returns false, then the value of this property is meaningless. - - - - - Returns true if has been set to a value. - - - - - Set this property to true to define a unique index. Set this property to false to define a - non-unique index. - - - The value of this property is only relevant if returns true. - If returns false, then the value of this property is meaningless. - - - - - Returns true if has been set to a value. - - - - - Returns a different ID for each object instance such that type descriptors won't - attempt to combine all IndexAttribute instances into a single instance. - - - - - Returns true if this attribute specifies the same name and configuration as the given attribute. - - The attribute to compare. - True if the other object is equal to this object; otherwise false. - - - - - - - Returns true if this attribute specifies the same name and configuration as the given attribute. - - The attribute to compare. - True if the other object is equal to this object; otherwise false. - - - - - - diff --git a/SYS.Library/Properties/AssemblyInfo.cs b/SYS.Library/Properties/AssemblyInfo.cs index 34d16fec1e5c97ebdb2ddef44f990b1b4b2a66c2..5e8acd38bb0216b2e53aff93d35928d5e2cc838c 100644 --- a/SYS.Library/Properties/AssemblyInfo.cs +++ b/SYS.Library/Properties/AssemblyInfo.cs @@ -8,9 +8,9 @@ using System.Runtime.InteropServices; [assembly: AssemblyTitle("SYS.Library")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("java-and-net")] [assembly: AssemblyProduct("SYS.Library")] -[assembly: AssemblyCopyright("Copyright © 2020")] +[assembly: AssemblyCopyright("Copyright © 2020 java-and-net")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 //通过使用 "*",如下所示: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] diff --git a/SYS.Library/SYS.Application.dll b/SYS.Library/SYS.Application.dll index a87d8f89fa22c7f3cef26c0002e4e7b5e569e340..dbe6a3df19cefba6c52470260c0ab4fa5ccd299c 100644 Binary files a/SYS.Library/SYS.Application.dll and b/SYS.Library/SYS.Application.dll differ diff --git a/SYS.Library/SYS.Application.xml b/SYS.Library/SYS.Application.xml new file mode 100644 index 0000000000000000000000000000000000000000..b147c2cd41e1067b90cb79b122ec0503c6f69012 --- /dev/null +++ b/SYS.Library/SYS.Application.xml @@ -0,0 +1,1731 @@ + + + + SYS.Application + + + + + 酒店宣传联动内容接口实现类 + + + + + 查询所有宣传联动内容(跑马灯) + + + + + + 资产信息接口 + + + + + 添加资产信息 + + + + + + + 查询资产信息 + + + + + + 酒店宣传联动内容接口 + + + + + 查询所有宣传联动内容(跑马灯) + + + + + + 预约信息接口 + + + + + 获取所有预约信息 + + + + + + 根据房间编号获取预约信息 + + + + + + + 删除预约信息 + + + + + + + 添加预约信息 + + + + + + + 商品接口 + + + + + 查询所有商品 + + + + + + 根据商品ID查询 + + + + + + + 根据商品名称查询 + + + + + + + 修改商品 + + + + + + + + 撤回客户消费信息 + + + + + + + + 根据商品编号删除商品信息 + + + + + + + 根据商品名称和价格查询商品编号 + + + + + + + + 根据商品编号查询商品信息 + + + + + + + 添加商品 + + + + + + + 消费信息接口 + + + + + 添加消费信息 + + + + + + + 根据客户编号查询消费信息 + + + + + + + 根据房间编号查询消费信息 + + + + + + + 查询消费的所有信息 + + + + + + 根据房间号查询消费的所有信息 + + + + + + 根据房间编号、入住时间到当前时间查询消费总金额 + + + + + + + + 根据房间编号、入住时间和当前时间修改结算状态 + + + + + + + + 将转房前的未结算记录一同转移到新房间 + + + + + + + + + 水电信息接口 + + + + + 根据房间编号查询水电费信息 + + + + + + + 根据房间编号、使用时间查询水电费信息 + + + + + + + + + 获取所有水电费信息 + + + + + + 添加水电费信息 + + + + + + + 修改水电费信息(根据房间编号) + + + + + + + 根据房间信息、使用时间修改水电费 + + + + + + + 删除水电费信息:根据房间编号 + + + + + + + 根据房间编号、使用时间删除水电费信息 + + + + + + + + + 监管统计接口 + + + + + 查询所有监管统计信息 + + + + + + 客户信息接口 + + + + + 添加客户信息 + + + + + + + 查询酒店盈利情况 + + + + + + 查询所有客户信息 + + + + + + 根据客户编号查询客户信息 + + + + + + + 房间信息接口 + + + + + 根据房间状态获取相应状态的房间信息 + + + + + + + 根据房间状态来查询可使用的房间 + + + + + + 获取所有房间信息 + + + + + + 获取房间分区的信息 + + + + + + 根据房间编号查询房间信息 + + + + + + + 根据房间编号退房(退房) + + + + + + + 根据房间编号查询截止到今天住了多少天 + + + + + + + 根据房间编号修改房间信息(入住) + + + + + + + 根据房间编号修改房间信息(预约) + + + + + + + 查询可入住房间数量 + + + + + + 查询已入住房间数量 + + + + + + 根据房间编号查询房间价格 + + + + + + 查询脏房数量 + + + + + + 查询维修房数量 + + + + + + 查询预约房数量 + + + + + + 根据房间编号更改房间状态 + + + + + + + + 添加房间 + + + + + + + 查询所有可消费(已住)房间 + + + + + + 获取所有房间状态 + + + + + + 根据房间编号查询房间状态编号 + + + + + + + 客房信息接口 + + + + + 获取所有房间类型 + + + + + + 根据房间编号查询房间类型名称 + + + + + + + 员工打卡接口 + + + + + 根据员工编号查询其所有的打卡记录 + + + + + + + 查询员工签到天数 + + + + + + + 查询今天员工是否已签到 + + + + + + + 添加员工打卡数据 + + + + + + + 员工奖惩信息接口 + + + + + 添加员工奖惩记录 + + + + + + + 根据工号查找所有的奖惩记录信息 + + + + + + + 员工履历信息接口 + + + + + 根据工号添加员工履历 + + + + + + + 根据工号查询履历信息 + + + + + + + 员工信息接口 + + + + + 修改员工信息 + + + + + + + 更新员工职位和部门 + + + + + + + 添加员工信息 + + + + + + + 获取所有工作人员信息 + + + + + + 根据登录名称查询员工信息 + + + + + + + 根据登录名称、密码查询员工信息 + + + 登录名称 + + 登录密码 + + + + + 管理员数据访问层 + + + + + 根据超管密码查询员工类型和权限 + + + + + + + + 根据超管账号查询对应的密码 + + + + + + + 资产信息接口实现类 + + + + + 添加资产信息 + + + + + + + 查询资产信息 + + + + + + 监管统计接口实现类 + + + + + 查询所有监管统计信息 + + + + + + 客户信息接口实现类 + + + + + 添加客户信息 + + + + + + + 查询酒店盈利情况 + + + + + + 查询所有客户信息 + + + + + + 根据客户编号查询客户信息 + + + + + + + 基础信息接口实现类 + + + + + 查询所有性别类型 + + + + + + 查询性别类型 + + + + + + 添加性别类型 + + + + + + + 删除性别类型 + + + + + + + 更新性别类型 + + + + + + + 查询所有职位类型 + + + + + + 查询职位类型 + + + + + + 添加职位类型 + + + + + + + 删除职位类型 + + + + + + + 更新职位类型 + + + + + + + 查询所有民族类型 + + + + + + 查询民族类型 + + + + + + 添加民族类型 + + + + + + + 删除民族类型 + + + + + + + 更新民族类型 + + + + + + + 查询所有学历类型 + + + + + + 查询学历类型 + + + + + + 添加学历类型 + + + + + + + 删除学历类型 + + + + + + + 更新学历类型 + + + + + + + 查询所有部门类型 + + + + + + 查询部门类型 + + + + + + 添加部门类型 + + + + + + + 删除部门类型 + + + + + + + 更新部门类型 + + + + + + + 查询所有客户类型 + + + + + + 根据客户类型ID查询类型名称 + + + + + + + 添加客户类型 + + + + + + + 删除客户类型 + + + + + + + 更新客户类型 + + + + + + + 查询所有证件类型 + + + + + + 根据证件类型ID查询类型名称 + + + + + + + 添加证件类型 + + + + + + + 删除证件类型 + + + + + + + 更新证件类型 + + + + + + + 管理员数据访问接口 + + + + + 根据超管密码查询员工类型和权限 + + + + + + + + 根据超管账号查询对应的密码 + + + + + + + 基础信息接口 + + + + + 查询所有性别类型 + + + + + + 查询性别类型 + + + + + + 添加性别类型 + + + + + + + 删除性别类型 + + + + + + + 更新性别类型 + + + + + + + 查询所有职位类型 + + + + + + 查询职位类型 + + + + + + 添加职位类型 + + + + + + + 删除职位类型 + + + + + + + 更新职位类型 + + + + + + + 查询所有民族类型 + + + + + + 查询民族类型 + + + + + + 添加民族类型 + + + + + + + 删除民族类型 + + + + + + + 更新民族类型 + + + + + + + 查询所有学历类型 + + + + + + 查询学历类型 + + + + + + 添加学历类型 + + + + + + + 删除学历类型 + + + + + + + 更新学历类型 + + + + + + + 查询所有部门类型 + + + + + + 查询部门类型 + + + + + + 添加部门类型 + + + + + + + 删除部门类型 + + + + + + + 更新部门类型 + + + + + + + 查询所有客户类型 + + + + + + 根据客户类型ID查询类型名称 + + + + + + + 添加客户类型 + + + + + + + 删除客户类型 + + + + + + + 更新客户类型 + + + + + + + 查询所有证件类型 + + + + + + 根据证件类型ID查询类型名称 + + + + + + + 添加证件类型 + + + + + + + 删除证件类型 + + + + + + + 更新证件类型 + + + + + + + 公告接口 + + + + + 获取所有公告信息 + + + + + + 上传公告信息 + + + + + + + 公告信息接口实现类 + + + + + 获取所有公告信息 + + + + + + 根据公告编号查找公告信息 + + + + + + + 上传公告信息 + + + + + + + 操作日志数据访问层 + + + + + 添加操作日志 + + + + + + + 查询所有操作日志 + + + + + + 预约信息接口实现类 + + + + + 获取所有预约信息 + + + + + + 根据房间编号获取预约信息 + + + + + + + 删除预约信息 + + + + + + + 添加预约信息 + + + + + + + 客房信息接口实现类 + + + + + 根据房间状态获取相应状态的房间信息 + + + + + + + 根据房间状态来查询可使用的房间 + + + + + + 获取所有房间信息 + + + + + + 获取房间分区的信息 + + + + + + 根据房间编号查询房间信息 + + + + + + + 根据房间编号退房(退房) + + + + + + + 根据房间编号查询截止到今天住了多少天 + + + + + + + 根据房间编号修改房间信息(入住) + + + + + + + 根据房间编号修改房间信息(预约) + + + + + + + 查询可入住房间数量 + + + + + + 查询已入住房间数量 + + + + + + 根据房间编号查询房间价格 + + + + + + 查询脏房数量 + + + + + + 查询维修房数量 + + + + + + 查询预约房数量 + + + + + + 根据房间编号更改房间状态 + + + + + + + + 添加房间 + + + + + + + 查询所有可消费(已住)房间 + + + + + + 获取所有房间状态 + + + + + + 根据房间编号查询房间状态编号 + + + + + + + 房间类型接口实现类 + + + + + 获取所有房间类型 + + + + + + 根据房间编号查询房间类型名称 + + + + + + + 商品信息接口实现类 + + + + + 查询所有商品 + + + + + + 根据商品ID查询 + + + + + + + 根据商品名称查询 + + + + + + + 修改商品 + + + + + + + + 撤回客户消费信息 + + + + + + + + 根据商品编号删除商品信息 + + + + + + + 根据商品名称和价格查询商品编号 + + + + + + + + 根据商品编号查询商品信息 + + + + + + + 添加商品 + + + + + + + 商品消费接口实现类 + + + + + 添加消费信息 + + + + + + + 根据客户编号查询消费信息 + + + + + + + 根据房间编号查询消费信息 + + + + + + + 查询消费的所有信息 + + + + + + 根据房间号查询消费的所有信息 + + + + + + 根据房间编号、入住时间到当前时间查询消费总金额 + + + + + + + + 根据房间编号、入住时间和当前时间修改结算状态 + + + + + + + + 将转房前的未结算记录一同转移到新房间 + + + + + + + + + 员工打卡接口实现类 + + + + + 根据员工编号查询其所有的打卡记录 + + + + + + + 查询员工签到天数 + + + + + + + 查询今天员工是否已签到 + + + + + + + 添加员工打卡数据 + + + + + + + 员工奖惩记录接口实现类 + + + + + 添加员工奖惩记录 + + + + + + + 根据工号查找所有的奖惩记录信息 + + + + + + + 员工履历接口实现类 + + + + + 根据工号添加员工履历 + + + + + + + 根据工号查询履历信息 + + + + + + + 员工信息接口实现类 + + + + + 修改员工信息 + + + + + + + 更新员工职位和部门 + + + + + + + 添加员工信息 + + + + + + + 获取所有工作人员信息 + + + + + + 根据登录名称查询员工信息 + + + + + + + 根据登录名称、密码查询员工信息 + + + 登录名称 + + 登录密码 + + + + + 水电信息接口实现类 + + + + + 根据房间编号查询水电费信息 + + + + + + + 根据房间编号、使用时间查询水电费信息 + + + + + + + + + 获取所有水电费信息 + + + + + + 添加水电费信息 + + + + + + + 修改水电费信息(根据房间编号) + + + + + + + 根据房间信息、使用时间修改水电费 + + + + + + + 删除水电费信息:根据房间编号 + + + + + + + 根据房间编号、使用时间删除水电费信息 + + + + + + + + diff --git a/SYS.Library/SYS.Common.dll b/SYS.Library/SYS.Common.dll new file mode 100644 index 0000000000000000000000000000000000000000..98fa98f33d92f3ab3841438bce578b4b5de6fb9d Binary files /dev/null and b/SYS.Library/SYS.Common.dll differ diff --git a/SYS.Library/SYS.Core.dll b/SYS.Library/SYS.Core.dll index dc1497dd14a922dbc53df3ef7268f7e2215b4110..0687aef580f5f6c4267ae3240587b99654a2966e 100644 Binary files a/SYS.Library/SYS.Core.dll and b/SYS.Library/SYS.Core.dll differ diff --git a/SYS.Library/SYS.Core.xml b/SYS.Library/SYS.Core.xml new file mode 100644 index 0000000000000000000000000000000000000000..552baecd2ca3eafa13ea1b226b3234dd63698812 --- /dev/null +++ b/SYS.Library/SYS.Core.xml @@ -0,0 +1,1698 @@ + + + + SYS.Core + + + + + 证件类型 + + + + + 证件类型 + + + + + 证件名称 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 性别 + + + + + 性别ID + + + + + 性别名称 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 一个强类型的资源类,用于查找本地化的字符串等。 + + + + + 返回此类使用的缓存的 ResourceManager 实例。 + + + + + 重写当前线程的 CurrentUICulture 属性,对 + 使用此强类型资源类的所有资源查找执行重写。 + + + + + 查找 System.Byte[] 类型的本地化资源。 + + + + + 程序版本号检测 + + + + + 检测版本号 + + + + + + 流水号 + + + + + 版本号 + + + + + 流水号规则 + + + + + 获取生成编号 + + + + + + + + + + + + + + + + + 规则编号 + + + + + 规格名称 + + + + + 规则描述 + + + + + 当前ID + + + + + 规则简写 + + + + + 规则格式 + + + + + 编号前缀 + + + + + 规则分割符 + + + + + 资料新增人 + + + + + 资料新增时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 身份证号码工具类 + + + + + 查询地区码 + + + + + + + + + + + + + + + + + 编号 + + + + + 省份 + + + + + 城市 + + + + + 地区 + + + + + 地区识别码 + + + + + MD5加密工具类 + + + + + 对字符串进行32位MD5加密 + + + + + + + 对字符串进行32位MD5解密 + + + + + + + 管理员实体类 + + + + + 构造函数 + + + + + 管理员账号 + + + + + 管理员密码 + + + + + 管理员类型 + + + + + 管理员名称 + + + + + 是否为超级管理员 + + + + + 删除标记 + + + + + 资料新增人 + + + + + 资料新增时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 存储当前超管账号 + + + + + 存储当前超管类型 + + + + + 存储当前超管用户组 + + + + + 存储当前超管名称 + + + + + 资产管理 + + + + + 资产编号 + + + + + 资产名称 + + + + + 资产总值 + + + + + 所属部门 + + + + + 入库时间 + + + + + 资产来源 + + + + + 资产经办人 + + + + + 监管统计 + + + + + 监管统计编号 + + + + + 监管部门 + + + + + 监管进度 + + + + + + + + + + + + + + + + + + + + + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 客户信息 + + + + + 客户编号 + + + + + 客户名称 + + + + + 客户性别 + + + + + 客户电话 + + + + + 证件类型 + + + + + 证件号码 + + + + + 居住地址 + + + + + 出生日期 + + + + + 客户类型 + + + + + 客户类型 + + + + + 证件类型 + + + + + 性别 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 酒店盈利情况 + + + + + 年 + + + + + 总金额 + + + + + 客户类型 + + + + + 客户类型 + + + + + 类型名字 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 酒店宣传联动内容 + + + + + 宣传内容编号 + + + + + 宣传内容 + + + + + 部门表 + + + + + 部门编号 + + + + + 部门名称 + + + + + 部门描述 + + + + + 创建时间(部门) + + + + + 部门主管 + + + + + 上级部门 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 学历 + + + + + 学历编号 + + + + + 学历名称 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 存储当前员工编号 + + + + + 存储当前员工姓名 + + + + + 存储当前员工职位 + + + + + 存储当前员工部门 + + + + + 民族 + + + + + 民族编号 + + + + + 民族名称 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 任命公告 + + + + + 公告编号 + + + + + 公告主题 + + + + + 公告类型 + + + + + 公告类型(描述) + + + + + 公告时间 + + + + + 公告正文 + + + + + 发文部门 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 操作日志 + + + + + 操作时间 + + + + + 操作信息 + + + + + 操作账号 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 预约列表 + + + + + 预约编号 + + + + + 客户名称 + + + + + 预约电话 + + + + + 预约渠道 + + + + + 预约房号 + + + + + 预约起始 + + + + + 预约止日 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 房间实体类 + + + + + 房间编号 + + + + + 房间类型 + + + + + 客户编号 + + + + + 最后一次入住时间 + + + + + 最后一次退房时间 + + + + + 房间状态ID + + + + + 房间状态 + + + + + 房间单价 + + + + + 房间位置 + + + + + 客户类型名称 + + + + + 房间名称 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 房间状态 + + + + + 房间状态编号 + + + + + 房间状态 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 房间类型 + + + + + 类型编号 + + + + + 房间类型 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 商品信息 + + + + + 商品编号 + + + + + 商品名称 + + + + + 商品价格 + + + + + 规格型号 + + + + + 库存 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 消费信息 + + + + + 房间编号 + + + + + 客户编号 + + + + + 商品名称 + + + + + 消费数量 + + + + + 商品单价 + + + + + 消费金额 + + + + + 消费时间 + + + + + 结算状态 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 员工信息 + + + + + 员工账号/工号 + + + + + 员工姓名 + + + + + 出生日期 + + + + + 员工性别 + + + + + 员工性别(名称描述) + + + + + 民族类型 + + + + + 民族名称 + + + + + 员工电话 + + + + + 所属部门 + + + + + 部门名称 + + + + + 居住地址 + + + + + 员工职位 + + + + + 职位名称 + + + + + 证件号码 + + + + + 员工密码 + + + + + 员工入职时间 + + + + + 员工面貌 + + + + + 群众面貌描述 + + + + + 教育程度 + + + + + 教育程度名称 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 员工打卡考勤 + + + + + 工号 + + + + + 打卡时间 + + + + + 打卡方式 + + + + + 打卡状态 + + + + + 打卡状态 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 员工奖罚 + + + + + 工号 + + + + + 奖惩信息 + + + + + 奖惩类型 + + + + + 奖惩操作人 + + + + + 奖惩时间 + + + + + 类型名称 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 员工履历 + + + + + 工号 + + + + + 开始时间 + + + + + 结束时间 + + + + + 职位 + + + + + 公司 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 水电信息 + + + + + 信息编号 + + + + + 房间编号 + + + + + 开始使用时间 + + + + + 结束使用时间 + + + + + 水费 + + + + + 电费 + + + + + 记录员 + + + + + 客户编号 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 职位 + + + + + 职位编号 + + + + + 职位名称 + + + + + 删除标记 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 奖惩类型实体类 + + + + + 奖惩编号 + + + + + 奖惩名称 + + + + + 删除标记 + + + + + 资料新增人 + + + + + 资料新增日期 + + + + + 资料更新人 + + + + + 资料更新日期 + + + + diff --git a/SYS.Library/SYS.Library.csproj b/SYS.Library/SYS.Library.csproj index 07374a4ccfd791c22178b8af82b873c37139242d..a7a4faee8f1eb8d5801e7cbd57decc5b71200ea2 100644 --- a/SYS.Library/SYS.Library.csproj +++ b/SYS.Library/SYS.Library.csproj @@ -31,6 +31,9 @@ prompt 4 + + bitbug_favicon %281%29.ico + @@ -45,26 +48,41 @@ - - - - + + + + - + {600f4cc8-4323-4237-a55c-bfef4b67d57c} SYS.Application + + {008aa4b4-cf4c-4cee-9940-4785191b22b6} + SYS.Browser.WebAPI + + + {65501af6-c629-448a-847e-1bcd60665865} + SYS.Common + {cd039d0f-bd50-4fbf-b9cd-cdfab25c7dfa} SYS.Core + + {8854dcb7-f2d7-4276-8d10-c7a124436145} + SYS.FormUI + + + + \ No newline at end of file diff --git a/SYS.Library/SYS.Manager.dll b/SYS.Library/SYS.Manager.dll deleted file mode 100644 index 6116ea7fa855e1e9aaf4321b854ea72ac64680fb..0000000000000000000000000000000000000000 Binary files a/SYS.Library/SYS.Manager.dll and /dev/null differ diff --git a/SYS.Library/app.config b/SYS.Library/app.config new file mode 100644 index 0000000000000000000000000000000000000000..06bfe9484b4b1643a47d5ac0171865e3cf29201b --- /dev/null +++ b/SYS.Library/app.config @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SYS.Library/bitbug_favicon (1).ico b/SYS.Library/bitbug_favicon (1).ico new file mode 100644 index 0000000000000000000000000000000000000000..deaead31de45df54f39388e2b4727a00a4f99eca Binary files /dev/null and b/SYS.Library/bitbug_favicon (1).ico differ diff --git a/SYS.Library/kse.dll b/SYS.Library/kse.dll new file mode 100644 index 0000000000000000000000000000000000000000..276a3e12bf12f30c71b905dfd3cd43a7348eeb98 Binary files /dev/null and b/SYS.Library/kse.dll differ diff --git a/SYS.Library/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/SYS.Library/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 56bafbde467ad2e8d7c4781e77dbe9fc7e5a92c9..ef59979183838c02307d5bb754411cd9e7f6f7c7 100644 Binary files a/SYS.Library/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/SYS.Library/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/SYS.Library/obj/Debug/SYS.Library.csproj.FileListAbsolute.txt b/SYS.Library/obj/Debug/SYS.Library.csproj.FileListAbsolute.txt index af247d862f149070da41ba41284a4136e14843c4..eb966fe750e61ac013d68a0020f8f9ccf09714ac 100644 --- a/SYS.Library/obj/Debug/SYS.Library.csproj.FileListAbsolute.txt +++ b/SYS.Library/obj/Debug/SYS.Library.csproj.FileListAbsolute.txt @@ -32,6 +32,7 @@ D:\Gitee\TopskyHotelManagerSystem\SYS.Library\obj\Debug\SYS.Library.csproj.CoreC D:\Gitee\TopskyHotelManagerSystem\SYS.Library\obj\Debug\SYS.Library.csproj.CopyComplete D:\Gitee\TopskyHotelManagerSystem\SYS.Library\obj\Debug\SYS.Library.dll D:\Gitee\TopskyHotelManagerSystem\SYS.Library\obj\Debug\SYS.Library.pdb +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Util\IDCardUtil.cs D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Library.dll D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Library.pdb D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Application.dll @@ -39,12 +40,117 @@ D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.C D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\MySql.Data.dll D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Application.pdb D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Core.pdb +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Core.xml D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\obj\Debug\SYS.Library.csprojAssemblyReference.cache D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\obj\Debug\SYS.Library.csproj.CoreCompileInputs.cache D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\obj\Debug\SYS.Library.csproj.CopyComplete D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\obj\Debug\SYS.Library.dll D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\obj\Debug\SYS.Library.pdb -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Resource.resx -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Resource.Designer.cs -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Core.xml -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Resources\GFont.otf +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Application.xml +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Google.Protobuf.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Zstandard.Net.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\K4os.Compression.LZ4.Streams.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Ubiety.Dns.Core.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Memory.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Buffers.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\K4os.Compression.LZ4.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\K4os.Hash.xxHash.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Numerics.Vectors.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Library.dll.config +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Common.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SqlSugar.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Application.dll.config +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Common.pdb +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Common.dll.config +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\AppUserControls\CtrlOrgChar.resx +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\AppUserControls\CtrlOrgPanel.resx +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\AppUserControls\CtrlOrgChar.cs +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\AppUserControls\CtrlOrgChar.Designer.cs +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\AppUserControls\CtrlOrgPanel.cs +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\AppUserControls\CtrlOrgPanel.Designer.cs +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\AppUserControls\OrgCharGenerator.cs +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Browser.WebAPI.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\TS酒店管理系统.exe +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\WebActivatorEx.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Swashbuckle.Core.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Web.Http.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Web.Http.WebHost.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\kse.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Microsoft.Web.Infrastructure.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Net.Http.Formatting.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Browser.WebAPI.pdb +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Browser.WebAPI.xml +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Browser.WebAPI.dll.config +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\TS酒店管理系统.pdb +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\TS酒店管理系统.xml +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\TS酒店管理系统.exe.config +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Web.Http.xml +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Web.Http.WebHost.xml +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Net.Http.Formatting.xml +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\zh-Hans\System.Web.Http.resources.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\zh-Hans\System.Web.Http.WebHost.resources.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\zh-Hans\System.Net.Http.Formatting.resources.dll +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Resources\Alibaba-PuHuiTi-Regular.ttf +D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Resources\Resource.resx +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\obj\Debug\SYS.Library.csprojAssemblyReference.cache +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\obj\Debug\SYS.Library.csproj.CoreCompileInputs.cache +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Util\IDCardUtil.cs +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Resources\Alibaba-PuHuiTi-Regular.ttf +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\AppUserControls\CtrlOrgChar.resx +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\AppUserControls\CtrlOrgPanel.resx +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Resources\Resource.resx +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\AppUserControls\CtrlOrgChar.cs +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\AppUserControls\CtrlOrgChar.Designer.cs +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\AppUserControls\CtrlOrgPanel.cs +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\AppUserControls\CtrlOrgPanel.Designer.cs +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\AppUserControls\OrgCharGenerator.cs +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Library.dll.config +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Library.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Library.pdb +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Application.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Browser.WebAPI.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Common.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Core.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\TS酒店管理系统.exe +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\MySql.Data.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SqlSugar.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\WebActivatorEx.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Swashbuckle.Core.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Web.Http.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Web.Http.WebHost.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\kse.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Google.Protobuf.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Zstandard.Net.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\K4os.Compression.LZ4.Streams.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Ubiety.Dns.Core.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\Microsoft.Web.Infrastructure.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Net.Http.Formatting.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Memory.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Buffers.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\K4os.Compression.LZ4.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\K4os.Hash.xxHash.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Numerics.Vectors.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Application.pdb +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Application.xml +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Application.dll.config +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Browser.WebAPI.pdb +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Browser.WebAPI.xml +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Browser.WebAPI.dll.config +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Common.pdb +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Common.dll.config +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Core.pdb +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\SYS.Core.xml +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\TS酒店管理系统.pdb +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\TS酒店管理系统.xml +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\TS酒店管理系统.exe.config +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Web.Http.xml +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Web.Http.WebHost.xml +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\System.Net.Http.Formatting.xml +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\zh-Hans\System.Web.Http.resources.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\zh-Hans\System.Web.Http.WebHost.resources.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\bin\Debug\zh-Hans\System.Net.Http.Formatting.resources.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\obj\Debug\SYS.Library.csproj.CopyComplete +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\obj\Debug\SYS.Library.dll +F:\DownloadFile\java-and-net-TopskyHotelManagerSystem-dev-Jackson\TopskyHotelManagerSystem\SYS.Library\obj\Debug\SYS.Library.pdb diff --git a/SYS.Manager/Business/CashManager.cs b/SYS.Manager/Business/CashManager.cs deleted file mode 100644 index 9ce4a7a2853ecc8e2e567ba2badff5f2bcb56555..0000000000000000000000000000000000000000 --- a/SYS.Manager/Business/CashManager.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System.Collections.Generic; -using SYS.Core; -using SYS.Application; - -namespace SYS.Manager -{ - public class CashManager - { - public static List SelectCashInfoAll() - { - - return CashService.SelectCashInfoAll(); - } - - public static object AddCashInfo(Cash cash) - { - return CashService.AddCashInfo(cash); - } - } -} diff --git a/SYS.Manager/Business/SellThingManager.cs b/SYS.Manager/Business/SellThingManager.cs deleted file mode 100644 index 4bef8b8dc8746126b118e26db5c2411573d3e097..0000000000000000000000000000000000000000 --- a/SYS.Manager/Business/SellThingManager.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System; -using System.Collections.Generic; -using SYS.Core; -using SYS.Application; - -namespace SYS.Manager -{ - public class SellThingManager - { - public static List SelectSellThingAll() - { - return SellService.SelectSellThingAll(); - } - - public static SellThing SelectSellThingByNo(string No) - { - return SellService.SelectSellThingByNo(No); - } - - public static int UpdateSellThing(string stock, string sellNo) - { - return SellService.UpdateSellThing(stock, sellNo); - } - - public static int DeleteSellThing(string roomNo, string time) - { - return SellService.DeleteSellThing(roomNo, time); - } - - public static List SelectThingByName(string Name) - { - return SellService.SelectSellThingByName(Name); - } - - public static SellThing SelectSellThingByNameAndPrice(string name,string price) - { - return SellService.SelectSellThingByNameAndPrice(name, price); - } - - public static string GetRandomSellNo() - { - string SellNo = ""; - Random rand = new Random(); - SellNo = rand.NextDouble() + ""; - SellNo = "ST" + SellNo.Substring(2, 3); - SellThing card = SelectSellInfoBySellNo(SellNo); - while (card != null) - { - SellNo = rand.NextDouble() + ""; - SellNo = "ST" + SellNo.Substring(2, 3); - card = SelectSellInfoBySellNo(SellNo); - } - return SellNo; - } - - public static SellThing SelectSellInfoBySellNo(string SellNo) - { - return SellService.SelectSellInfoBySellNo(SellNo); - } - - public static int InsertSellThing(SellThing st) - { - return SellService.InsertSellThing(st); - } - } -} diff --git a/SYS.Manager/Customer/CustoManager.cs b/SYS.Manager/Customer/CustoManager.cs deleted file mode 100644 index 07c4b77e29afa5315d10bec9e76d3b518abc4d78..0000000000000000000000000000000000000000 --- a/SYS.Manager/Customer/CustoManager.cs +++ /dev/null @@ -1,75 +0,0 @@ -using System; -using System.Data; -using MySql.Data.MySqlClient; -using SYS.Core; -using SYS.Application; - -namespace SYS.Manager -{ - public class CustoManager - { - #region 添加客户信息 - public static int InsertCustomerInfo(Custo custo) - { - return CustoService.InsertCustomerInfo(custo); - } - #endregion - - - public static Custo SelectCardInfoByCustoNo(string CustoNo) - { - Custo c = null; - string sql = "select * from USERINFO where CustoNo='" + CustoNo + "'"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - if (dr.Read()) - { - c = new Custo(); - c.CustoNo = Convert.ToString(dr["CustoNo"]); - c.CustoName = Convert.ToString(dr["CustoName"]); - c.CustoSex = Convert.ToInt32(dr["CustoSex"]); - c.CustoTel = Convert.ToString(dr["CustoTel"]); - c.CustoID = Convert.ToString(dr["CustoID"]); - c.CustoAdress = Convert.ToString(dr["CustoAdress"]); - c.CustoBirth = Convert.ToDateTime(dr["CustoBirth"]); - c.CustoType = Convert.ToInt32(dr["CustoType"]); - } - dr.Close(); - DBHelper.Closecon(); - return c; - } - - #region 根据客户编号查询客户信息 - /// - /// 根据客户编号查询客户信息 - /// - /// - /// - public static Custo SelectCustoByCustoNo(string cno) - { - return CustoService.SelectCustoByCustoNo(cno); - } - #endregion - - #region 随机客户编号(用于注册) - /// - /// 随机客户编号(用于注册) - /// - /// - public static string GetRandomCustoNo() - { - string CustoNo = ""; - Random rand = new Random(); - CustoNo = rand.NextDouble() + ""; - CustoNo = "TS1" + CustoNo.Substring(2, 3); - Custo card = SelectCardInfoByCustoNo(CustoNo); - while (card != null) - { - CustoNo = rand.NextDouble() + ""; - CustoNo = "TS1" + CustoNo.Substring(2, 3); - card = SelectCardInfoByCustoNo(CustoNo); - } - return CustoNo; - } - #endregion - } -} diff --git a/SYS.Manager/Room/ReserManager.cs b/SYS.Manager/Room/ReserManager.cs deleted file mode 100644 index 823ab1740ef75f4c258b48efba6319880463f3a9..0000000000000000000000000000000000000000 --- a/SYS.Manager/Room/ReserManager.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System.Collections.Generic; -using SYS.Core; -using SYS.Application; - -namespace SYS.Manager -{ - public class ReserManager - { - public static Reser SelectReserInfoByRoomNo(string no) - { - Reser r = ReserService.SelectReserInfoByRoomNo(no); - return r; - } - - public static int DeleteReserInfo(string rid) - { - return ReserService.DeleteReserInfo(rid); - } - - public static List SelectReserAll() - { - return ReserService.SelectReserAll(); - } - - public static int InserReserInfo(Reser r) - { - return ReserService.InserReserInfo(r); - } - } -} diff --git a/SYS.Manager/SYS.Manager.csproj b/SYS.Manager/SYS.Manager.csproj deleted file mode 100644 index 0b7c19d9a117a114a9db1a344775def51acb4bd4..0000000000000000000000000000000000000000 --- a/SYS.Manager/SYS.Manager.csproj +++ /dev/null @@ -1,77 +0,0 @@ - - - - - Debug - AnyCPU - {C60DF246-C4FC-4045-91E5-093B0AA4D4EF} - Library - Properties - SYS.Manager - SYS.Manager - v4.6.1 - 512 - true - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - x64 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {600F4CC8-4323-4237-A55C-BFEF4B67D57C} - SYS.Application - - - {CD039D0F-BD50-4FBF-B9CD-CDFAB25C7DFA} - SYS.Core - - - - \ No newline at end of file diff --git a/SYS.Manager/Util/FontsManager.cs b/SYS.Manager/Util/FontsManager.cs deleted file mode 100644 index 27535dac29d4a0cae28bbe98eda74fd898f5441e..0000000000000000000000000000000000000000 --- a/SYS.Manager/Util/FontsManager.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System.Collections.Generic; -using MySql.Data.MySqlClient; -using SYS.Core; - -namespace SYS.Manager -{ - public class FontsManager - { - public List SelectFontAll() - { - List fonts = new List(); - string sql = "select * from Fonts"; - MySqlDataReader dr = DBHelper.ExecuteReader(sql); - while (dr.Read()) - { - Fonts font = new Fonts(); - font.FontsId = (int)dr["FontsId"]; - font.FontsMess = dr["FontsMess"].ToString(); - fonts.Add(font); - } - dr.Close(); - DBHelper.Closecon(); - return fonts; - } - - } -} diff --git a/SYS.Manager/Worker/CheckInfoManager.cs b/SYS.Manager/Worker/CheckInfoManager.cs deleted file mode 100644 index 120db6f57d2a44a725cf628557cd60dddfacce28..0000000000000000000000000000000000000000 --- a/SYS.Manager/Worker/CheckInfoManager.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System.Collections.Generic; -using SYS.Core; -using SYS.Application; - -namespace SYS.Manager -{ - public class CheckInfoManager - { - public static string CheckBaseVersion() - { - return CheckInfoService.CheckBaseVersion(); - } - public static List SelectCheckInfoAll() - { - - return CheckInfoService.SelectCheckInfoAll(); - } - } -} diff --git a/SYS.Manager/Worker/WorkerGoodBadManager.cs b/SYS.Manager/Worker/WorkerGoodBadManager.cs deleted file mode 100644 index 90abee47eaac4479befa8acf12739b75eeaba910..0000000000000000000000000000000000000000 --- a/SYS.Manager/Worker/WorkerGoodBadManager.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using SYS.Core; -using SYS.Application; - -namespace SYS.Manager -{ - public class WorkerGoodBadManager - { - public static int AddGoodBad(WorkerGoodBad goodBad) - { - return WorkerGoodBadService.AddGoodBad(goodBad); - } - - public static List SelectAllGoodBadByWorkNo(string wn) - { - return WorkerGoodBadService.SelectAllGoodBadByWorkNo(wn); - } - } -} diff --git a/SYS.Manager/Worker/WorkerHistoryManager.cs b/SYS.Manager/Worker/WorkerHistoryManager.cs deleted file mode 100644 index a4c2f8f1069f91fa14d48430d26d874b1d7b2b8d..0000000000000000000000000000000000000000 --- a/SYS.Manager/Worker/WorkerHistoryManager.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System.Collections.Generic; -using SYS.Core; -using SYS.Application; - -namespace SYS.Manager -{ - public class WorkerHistoryManager - { - public static int AddHistoryByWorkerId(WorkerHistory workerHistory, string wid) - { - return WorkerHistoryService.AddHistoryByWorkerId(workerHistory, wid); - } - - public static List SelectHistoryByWorkerId(string wid) - { - return WorkerHistoryService.SelectHistoryByWorkerId(wid); - } - } -} diff --git a/SYS.Manager/Zero/OperationManager.cs b/SYS.Manager/Zero/OperationManager.cs deleted file mode 100644 index e6aa02cea784947aa85a986398472157651f160e..0000000000000000000000000000000000000000 --- a/SYS.Manager/Zero/OperationManager.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System.Collections.Generic; -using SYS.Core; -using SYS.Application; - -namespace SYS.Manager -{ - public class OperationManager - { - public static int InsertOperationLog(Operation opr) - { - return OperationService.InsertOperationLog(opr); - } - public static List SelectOperationlogAll() - { - return Operationlog.SelectOperationlogAll(); - } - } -} \ No newline at end of file diff --git a/SYS.Manager/bin/Debug/MySql.Data.dll b/SYS.Manager/bin/Debug/MySql.Data.dll deleted file mode 100644 index 3a5c1b1c10d7dc45606fbb0e8c7b4239ba2bb657..0000000000000000000000000000000000000000 Binary files a/SYS.Manager/bin/Debug/MySql.Data.dll and /dev/null differ diff --git a/SYS.Manager/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs b/SYS.Manager/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs deleted file mode 100644 index 3aa53186c9efc5bd6af75a8596fcf3d2247fb54d..0000000000000000000000000000000000000000 --- a/SYS.Manager/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")] diff --git a/SYS.Manager/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/SYS.Manager/obj/Debug/DesignTimeResolveAssemblyReferences.cache deleted file mode 100644 index 4c3c428fb283348c64fd54d85f847fae2f36a0fa..0000000000000000000000000000000000000000 Binary files a/SYS.Manager/obj/Debug/DesignTimeResolveAssemblyReferences.cache and /dev/null differ diff --git a/SYS.Manager/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/SYS.Manager/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache deleted file mode 100644 index f6a5c3d67fa8b86d22fc3be6d17deb721b62cd01..0000000000000000000000000000000000000000 Binary files a/SYS.Manager/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and /dev/null differ diff --git a/SYS.Manager/obj/Debug/SYS.Manager.csproj.FileListAbsolute.txt b/SYS.Manager/obj/Debug/SYS.Manager.csproj.FileListAbsolute.txt deleted file mode 100644 index 990cccc8df331001566f1a82fbf907243b11caf1..0000000000000000000000000000000000000000 --- a/SYS.Manager/obj/Debug/SYS.Manager.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,49 +0,0 @@ -E:\MyProject\SYS.Manager\bin\Debug\SYS.Manager.dll -E:\MyProject\SYS.Manager\bin\Debug\SYS.Manager.pdb -E:\MyProject\SYS.Manager\bin\Debug\SYS.Application.dll -E:\MyProject\SYS.Manager\bin\Debug\SYS.Core.dll -E:\MyProject\SYS.Manager\bin\Debug\SYS.Application.pdb -E:\MyProject\SYS.Manager\bin\Debug\SYS.Core.pdb -E:\MyProject\SYS.Manager\obj\Debug\SYS.Manager.csprojAssemblyReference.cache -E:\MyProject\SYS.Manager\obj\Debug\SYS.Manager.csproj.CoreCompileInputs.cache -E:\MyProject\SYS.Manager\obj\Debug\SYS.Manager.csproj.CopyComplete -E:\MyProject\SYS.Manager\obj\Debug\SYS.Manager.dll -E:\MyProject\SYS.Manager\obj\Debug\SYS.Manager.pdb -E:\MyProject\SYS.Manager\bin\Debug\MySql.Data.dll -E:\MyProject\SYS.Manager\bin\Debug\Google.Protobuf.dll -E:\MyProject\SYS.Manager\bin\Debug\Zstandard.Net.dll -E:\MyProject\SYS.Manager\bin\Debug\K4os.Compression.LZ4.Streams.dll -E:\MyProject\SYS.Manager\bin\Debug\BouncyCastle.Crypto.dll -E:\MyProject\SYS.Manager\bin\Debug\Ubiety.Dns.Core.dll -E:\MyProject\SYS.Manager\bin\Debug\Renci.SshNet.dll -E:\MyProject\SYS.Manager\bin\Debug\System.Buffers.dll -E:\MyProject\SYS.Manager\bin\Debug\K4os.Compression.LZ4.dll -E:\MyProject\SYS.Manager\bin\Debug\K4os.Hash.xxHash.dll -E:\MyProject\SYS.Manager\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll -E:\MyProject\SYS.Manager\bin\Debug\MySql.Data.xml -D:\Gitee\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\SYS.Manager.dll -D:\Gitee\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\SYS.Manager.pdb -D:\Gitee\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\SYS.Application.dll -D:\Gitee\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\SYS.Core.dll -D:\Gitee\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\SYS.Application.pdb -D:\Gitee\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\SYS.Core.pdb -D:\Gitee\TopskyHotelManagerSystem\SYS.Manager\obj\Debug\SYS.Manager.csprojAssemblyReference.cache -D:\Gitee\TopskyHotelManagerSystem\SYS.Manager\obj\Debug\SYS.Manager.csproj.CoreCompileInputs.cache -D:\Gitee\TopskyHotelManagerSystem\SYS.Manager\obj\Debug\SYS.Manager.csproj.CopyComplete -D:\Gitee\TopskyHotelManagerSystem\SYS.Manager\obj\Debug\SYS.Manager.dll -D:\Gitee\TopskyHotelManagerSystem\SYS.Manager\obj\Debug\SYS.Manager.pdb -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\SYS.Manager.dll -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\SYS.Manager.pdb -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\SYS.Application.dll -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\SYS.Core.dll -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\SYS.Application.pdb -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\SYS.Core.pdb -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\obj\Debug\SYS.Manager.csprojAssemblyReference.cache -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\obj\Debug\SYS.Manager.csproj.CoreCompileInputs.cache -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\obj\Debug\SYS.Manager.csproj.CopyComplete -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\obj\Debug\SYS.Manager.dll -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\obj\Debug\SYS.Manager.pdb -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\Resource.resx -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\Resource.Designer.cs -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\SYS.Core.xml -D:\TopSkyHotelManagerSystem\TopskyHotelManagerSystem\SYS.Manager\bin\Debug\Resources\GFont.otf diff --git a/SYS.Manager/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/SYS.Manager/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/SYS.Manager/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/SYS.Manager/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/SYS.Manager/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/SYS.Manager/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/TSHotelManagerSystem.sln b/TSHotelManagerSystem.sln index 83a5328fe6601e0682af859f706e0fba7e067fb9..a44f9b86d991b86f4630ef1258d91ad45f29d4d2 100644 --- a/TSHotelManagerSystem.sln +++ b/TSHotelManagerSystem.sln @@ -11,10 +11,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SYS.Application", "SYS.Appl EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SYS.Library", "SYS.Library\SYS.Library.csproj", "{BCEA3E3C-E6D2-4210-95DD-42B461D5F22A}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SYS.Manager", "SYS.Manager\SYS.Manager.csproj", "{C60DF246-C4FC-4045-91E5-093B0AA4D4EF}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SYS.Common", "SYS.Common\SYS.Common.csproj", "{65501AF6-C629-448A-847E-1BCD60665865}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SYS.Browser.WebAPI", "SYS.Browser.WebAPI\SYS.Browser.WebAPI.csproj", "{008AA4B4-CF4C-4CEE-9940-4785191B22B6}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -37,14 +37,14 @@ Global {BCEA3E3C-E6D2-4210-95DD-42B461D5F22A}.Debug|Any CPU.Build.0 = Debug|Any CPU {BCEA3E3C-E6D2-4210-95DD-42B461D5F22A}.Release|Any CPU.ActiveCfg = Release|Any CPU {BCEA3E3C-E6D2-4210-95DD-42B461D5F22A}.Release|Any CPU.Build.0 = Release|Any CPU - {C60DF246-C4FC-4045-91E5-093B0AA4D4EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C60DF246-C4FC-4045-91E5-093B0AA4D4EF}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C60DF246-C4FC-4045-91E5-093B0AA4D4EF}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C60DF246-C4FC-4045-91E5-093B0AA4D4EF}.Release|Any CPU.Build.0 = Release|Any CPU {65501AF6-C629-448A-847E-1BCD60665865}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {65501AF6-C629-448A-847E-1BCD60665865}.Debug|Any CPU.Build.0 = Debug|Any CPU {65501AF6-C629-448A-847E-1BCD60665865}.Release|Any CPU.ActiveCfg = Release|Any CPU {65501AF6-C629-448A-847E-1BCD60665865}.Release|Any CPU.Build.0 = Release|Any CPU + {008AA4B4-CF4C-4CEE-9940-4785191B22B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {008AA4B4-CF4C-4CEE-9940-4785191B22B6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {008AA4B4-CF4C-4CEE-9940-4785191B22B6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {008AA4B4-CF4C-4CEE-9940-4785191B22B6}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/Data.sql" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/Data.sql" deleted file mode 100644 index 7c3a4e3373e76758e9864c3a2bdfb1077ec58e32..0000000000000000000000000000000000000000 --- "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/Data.sql" +++ /dev/null @@ -1,8679 +0,0 @@ -INSERT INTO [ADMININFO]([AdminPassword], [AdminType], [AdminName]) VALUES ('admin', '总经理', '杨俊杰'); GO -INSERT INTO [ADMININFO]([AdminPassword], [AdminType], [AdminName]) VALUES ('cashmin', '财务经理', '熊越明'); GO -INSERT INTO [ADMININFO]([AdminPassword], [AdminType], [AdminName]) VALUES ('hotelmin', '酒店经理', '宾华安'); GO -INSERT INTO [BACKINFO]([BackNo], [BackName], [BackSource], [BackCash], [BackType], [BackPerson], [ControlClub], [BackClub]) VALUES ('B001', '一次性毛巾', '超市', 1000.00, 1, '李杰峰', '财务部', '餐饮部'); GO -INSERT INTO [BACKINFO]([BackNo], [BackName], [BackSource], [BackCash], [BackType], [BackPerson], [ControlClub], [BackClub]) VALUES ('B002', '一次性牙刷', '超市', 2000.00, 2, '李杰峰', '财务部', '酒店部'); GO -INSERT INTO [baseversion]([base_version]) VALUES ('1.4.1.0'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (300, N'河北省', N'保定地区', N'高碑店市', N'132404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (301, N'河北省', N'保定地区', N'易县', N'132421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (302, N'河北省', N'保定地区', N'满城县', N'132422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (303, N'河北省', N'保定地区', N'徐水县', N'132423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (304, N'河北省', N'保定地区', N'涞源县', N'132424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (305, N'河北省', N'保定地区', N'定兴县', N'132425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (306, N'河北省', N'保定地区', N'完县', N'132426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (307, N'河北省', N'保定地区', N'唐县', N'132427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (308, N'河北省', N'保定地区', N'望都县', N'132428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (309, N'河北省', N'保定地区', N'涞水县', N'132429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (310, N'河北省', N'保定地区', N'涿县', N'132430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (311, N'河北省', N'保定地区', N'清苑县', N'132431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (312, N'河北省', N'保定地区', N'高阳县', N'132432'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (313, N'河北省', N'保定地区', N'安新县', N'132433'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (314, N'河北省', N'保定地区', N'雄县', N'132434'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (315, N'河北省', N'保定地区', N'容城县', N'132435'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (316, N'河北省', N'保定地区', N'新城县', N'132436'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (317, N'河北省', N'保定地区', N'曲阳县', N'132437'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (318, N'河北省', N'保定地区', N'阜平县', N'132438'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (319, N'河北省', N'保定地区', N'定县', N'132439'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (320, N'河北省', N'保定地区', N'安国县', N'132440'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (321, N'河北省', N'保定地区', N'博野县', N'132441'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (322, N'河北省', N'保定地区', N'蠡县', N'132442'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (323, N'河北省', N'张家口地区', N'张家口市', N'132501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (324, N'河北省', N'张家口地区', N'张北市', N'132521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (325, N'河北省', N'张家口地区', N'康保县', N'132522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (326, N'河北省', N'张家口地区', N'沽源县', N'132523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (327, N'河北省', N'张家口地区', N'尚义县', N'132524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (328, N'河北省', N'张家口地区', N'蔚县', N'132525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (329, N'河北省', N'张家口地区', N'阳原县', N'132526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (330, N'河北省', N'张家口地区', N'怀安县', N'132527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (331, N'河北省', N'张家口地区', N'万全县', N'132528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (332, N'河北省', N'张家口地区', N'怀来县', N'132529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (333, N'河北省', N'张家口地区', N'涿鹿县', N'132530'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (334, N'河北省', N'张家口地区', N'宣化县', N'132531'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (335, N'河北省', N'张家口地区', N'赤城县', N'132532'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (336, N'河北省', N'张家口地区', N'崇礼县', N'132533'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (337, N'河北省', N'承德地区', N'承德市', N'132601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (338, N'河北省', N'承德地区', N'青龙县', N'132621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (339, N'河北省', N'承德地区', N'宽城满族自治县', N'132622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (340, N'河北省', N'承德地区', N'兴隆县', N'132623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (341, N'河北省', N'承德地区', N'平泉县', N'132624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (342, N'河北省', N'承德地区', N'承德县', N'132625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (343, N'河北省', N'承德地区', N'滦平县', N'132626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (344, N'河北省', N'承德地区', N'丰宁满族自治县', N'132627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (345, N'河北省', N'承德地区', N'隆化县', N'132628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (346, N'河北省', N'承德地区', N'围场满族蒙古族自治县', N'132629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (347, N'河北省', N'廊坊地区', N'廊坊市', N'132801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (348, N'河北省', N'廊坊地区', N'三河县', N'132821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (349, N'河北省', N'廊坊地区', N'大厂回族自治县', N'132822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (350, N'河北省', N'廊坊地区', N'香河县', N'132823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (351, N'河北省', N'廊坊地区', N'永清县', N'132825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (352, N'河北省', N'廊坊地区', N'固安县', N'132826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (353, N'河北省', N'廊坊地区', N'霸县', N'132827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (354, N'河北省', N'廊坊地区', N'文安县', N'132828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (355, N'河北省', N'廊坊地区', N'大城县', N'132829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (356, N'河北省', N'沧州地区', N'沧州市', N'132901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (357, N'河北省', N'沧州地区', N'泊头市', N'132902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (358, N'河北省', N'沧州地区', N'任丘市', N'132903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (359, N'河北省', N'沧州地区', N'黄骅市', N'132904'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (360, N'河北省', N'沧州地区', N'河间市', N'132905'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (361, N'河北省', N'沧州地区', N'沧县', N'132921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (362, N'河北省', N'沧州地区', N'河间县', N'132922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (363, N'河北省', N'沧州地区', N'肃宁县', N'132923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (364, N'河北省', N'沧州地区', N'献县', N'132924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (365, N'河北省', N'沧州地区', N'交河县', N'132925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (366, N'河北省', N'沧州地区', N'吴桥县', N'132926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (367, N'河北省', N'沧州地区', N'东光县', N'132927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (368, N'河北省', N'沧州地区', N'南皮县', N'132928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (369, N'河北省', N'沧州地区', N'盐山县', N'132929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (370, N'河北省', N'沧州地区', N'黄骅县', N'132930'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (371, N'河北省', N'沧州地区', N'孟村回族自治县', N'132931'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (372, N'河北省', N'沧州地区', N'青县', N'132932'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (373, N'河北省', N'沧州地区', N'任丘县', N'132933'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (374, N'河北省', N'沧州地区', N'海兴县', N'132934'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (375, N'河北省', N'衡水地区', N'衡水市', N'133001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (376, N'河北省', N'衡水地区', N'冀州市', N'133002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (377, N'河北省', N'衡水地区', N'衡水县', N'133021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (378, N'河北省', N'衡水地区', N'冀县', N'133022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (379, N'河北省', N'衡水地区', N'枣强县', N'133023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (380, N'河北省', N'衡水地区', N'武邑县', N'133024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (381, N'河北省', N'衡水地区', N'深县', N'133025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (382, N'河北省', N'衡水地区', N'武强县', N'133026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (383, N'河北省', N'衡水地区', N'饶阳县', N'133027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (384, N'河北省', N'衡水地区', N'安平县', N'133028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (385, N'河北省', N'衡水地区', N'故城县', N'133029'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (386, N'河北省', N'衡水地区', N'景县', N'133030'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (387, N'河北省', N'衡水地区', N'阜城县', N'133031'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (388, N'河北省', NULL, N'武安市', N'139001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (389, N'山西省', N'太原市', N'市辖区', N'140101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (390, N'山西省', N'太原市', N'南城区', N'140102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (391, N'山西省', N'太原市', N'北城区', N'140103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (392, N'山西省', N'太原市', N'河西区', N'140104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (393, N'山西省', N'太原市', N'小店区', N'140105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (394, N'山西省', N'太原市', N'迎泽区', N'140106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (395, N'山西省', N'太原市', N'杏花岭区', N'140107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (396, N'山西省', N'太原市', N'尖草坪区', N'140108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (397, N'山西省', N'太原市', N'万柏林区', N'140109'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (398, N'山西省', N'太原市', N'晋源区', N'140110'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (399, N'山西省', N'太原市', N'古交工矿区', N'140111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (400, N'山西省', N'太原市', N'南郊区', N'140112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (401, N'山西省', N'太原市', N'北郊区', N'140113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (402, N'山西省', N'太原市', N'清徐县', N'140121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (403, N'山西省', N'太原市', N'阳曲县', N'140122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (404, N'山西省', N'太原市', N'娄烦县', N'140123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (405, N'山西省', N'太原市', N'古交市', N'140181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (406, N'山西省', N'大同市', N'市辖区', N'140201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (407, N'山西省', N'大同市', N'城区', N'140202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (408, N'山西省', N'大同市', N'矿区', N'140203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (409, N'山西省', N'大同市', N'南郊区', N'140211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (410, N'山西省', N'大同市', N'新荣区', N'140212'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (411, N'山西省', N'大同市', N'阳高县', N'140221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (412, N'山西省', N'大同市', N'天镇县', N'140222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (413, N'山西省', N'大同市', N'广灵县', N'140223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (414, N'山西省', N'大同市', N'灵丘县', N'140224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (415, N'山西省', N'大同市', N'浑源县', N'140225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (416, N'山西省', N'大同市', N'左云县', N'140226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (417, N'山西省', N'大同市', N'大同县', N'140227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (418, N'山西省', N'大同市', N'左云县', N'140230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (419, N'山西省', N'大同市', N'大同县', N'140232'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (420, N'山西省', N'阳泉市', N'市辖区', N'140301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (421, N'山西省', N'阳泉市', N'城区', N'140302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (422, N'山西省', N'阳泉市', N'矿区', N'140303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (423, N'山西省', N'阳泉市', N'郊区', N'140311'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (424, N'山西省', N'阳泉市', N'平定县', N'140321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (425, N'山西省', N'阳泉市', N'盂县', N'140322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (426, N'山西省', N'长治市', N'市辖区', N'140401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (427, N'山西省', N'长治市', N'城区', N'140402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (428, N'山西省', N'长治市', N'郊区', N'140411'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (429, N'山西省', N'长治市', N'长治县', N'140421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (430, N'山西省', N'长治市', N'襄垣县', N'140423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (431, N'山西省', N'长治市', N'屯留县', N'140424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (432, N'山西省', N'长治市', N'平顺县', N'140425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (433, N'山西省', N'长治市', N'黎城县', N'140426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (434, N'山西省', N'长治市', N'壶关县', N'140427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (435, N'山西省', N'长治市', N'长子县', N'140428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (436, N'山西省', N'长治市', N'武乡县', N'140429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (437, N'山西省', N'长治市', N'沁县', N'140430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (438, N'山西省', N'长治市', N'沁源县', N'140431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (439, N'山西省', N'长治市', N'潞城市', N'140481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (440, N'山西省', N'晋城市', N'市辖区', N'140501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (441, N'山西省', N'晋城市', N'城区', N'140502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (442, N'山西省', N'晋城市', N'郊区', N'140511'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (443, N'山西省', N'晋城市', N'沁水县', N'140521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (444, N'山西省', N'晋城市', N'阳城县', N'140522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (445, N'山西省', N'晋城市', N'高平县', N'140523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (446, N'山西省', N'晋城市', N'陵川县', N'140524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (447, N'山西省', N'晋城市', N'泽州县', N'140525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (448, N'山西省', N'晋城市', N'高平市', N'140581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (449, N'山西省', N'朔州市', N'市辖区', N'140601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (450, N'山西省', N'朔州市', N'朔城区', N'140602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (451, N'山西省', N'朔州市', N'平鲁区', N'140603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (452, N'山西省', N'朔州市', N'山阴县', N'140621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (453, N'山西省', N'朔州市', N'应县', N'140622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (454, N'山西省', N'朔州市', N'右玉县', N'140623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (455, N'山西省', N'朔州市', N'怀仁县', N'140624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (456, N'山西省', N'晋中市', N'市辖区', N'140701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (457, N'山西省', N'晋中市', N'榆次区', N'140702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (458, N'山西省', N'晋中市', N'榆社县', N'140721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (459, N'山西省', N'晋中市', N'左权县', N'140722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (460, N'山西省', N'晋中市', N'和顺县', N'140723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (461, N'山西省', N'晋中市', N'昔阳县', N'140724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (462, N'山西省', N'晋中市', N'寿阳县', N'140725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (463, N'山西省', N'晋中市', N'太谷县', N'140726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (464, N'山西省', N'晋中市', N'祁县', N'140727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (465, N'山西省', N'晋中市', N'平遥县', N'140728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (466, N'山西省', N'晋中市', N'灵石县', N'140729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (467, N'山西省', N'晋中市', N'介休市', N'140781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (468, N'山西省', N'运城市', N'市辖区', N'140801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (469, N'山西省', N'运城市', N'盐湖区', N'140802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (470, N'山西省', N'运城市', N'临猗县', N'140821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (471, N'山西省', N'运城市', N'万荣县', N'140822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (472, N'山西省', N'运城市', N'闻喜县', N'140823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (473, N'山西省', N'运城市', N'稷山县', N'140824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (474, N'山西省', N'运城市', N'新绛县', N'140825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (475, N'山西省', N'运城市', N'绛县', N'140826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (476, N'山西省', N'运城市', N'垣曲县', N'140827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (477, N'山西省', N'运城市', N'夏县', N'140828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (478, N'山西省', N'运城市', N'平陆县', N'140829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (479, N'山西省', N'运城市', N'芮城县', N'140830'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (480, N'山西省', N'运城市', N'永济市', N'140881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (481, N'山西省', N'运城市', N'河津市', N'140882'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (482, N'山西省', N'忻州市', N'市辖区', N'140901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (483, N'山西省', N'忻州市', N'忻府区', N'140902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (484, N'山西省', N'忻州市', N'定襄县', N'140921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (485, N'山西省', N'忻州市', N'五台县', N'140922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (486, N'山西省', N'忻州市', N'代县', N'140923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (487, N'山西省', N'忻州市', N'繁峙县', N'140924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (488, N'山西省', N'忻州市', N'宁武县', N'140925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (489, N'山西省', N'忻州市', N'静乐县', N'140926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (490, N'山西省', N'忻州市', N'神池县', N'140927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (491, N'山西省', N'忻州市', N'五寨县', N'140928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (492, N'山西省', N'忻州市', N'岢岚县', N'140929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (493, N'山西省', N'忻州市', N'河曲县', N'140930'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (494, N'山西省', N'忻州市', N'保德县', N'140931'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (495, N'山西省', N'忻州市', N'偏关县', N'140932'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (496, N'山西省', N'忻州市', N'原平市', N'140981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (497, N'山西省', N'临汾市', N'市辖区', N'141001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (498, N'山西省', N'临汾市', N'尧都区', N'141002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (499, N'山西省', N'临汾市', N'曲沃县', N'141021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (500, N'山西省', N'临汾市', N'翼城县', N'141022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (501, N'山西省', N'临汾市', N'襄汾县', N'141023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (502, N'山西省', N'临汾市', N'洪洞县', N'141024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (503, N'山西省', N'临汾市', N'古县', N'141025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (504, N'山西省', N'临汾市', N'安泽县', N'141026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (505, N'山西省', N'临汾市', N'浮山县', N'141027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (506, N'山西省', N'临汾市', N'吉县', N'141028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (507, N'山西省', N'临汾市', N'乡宁县', N'141029'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (508, N'山西省', N'临汾市', N'大宁县', N'141030'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (509, N'山西省', N'临汾市', N'隰县', N'141031'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (510, N'山西省', N'临汾市', N'永和县', N'141032'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (511, N'山西省', N'临汾市', N'蒲县', N'141033'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (512, N'山西省', N'临汾市', N'汾西县', N'141034'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (513, N'山西省', N'临汾市', N'侯马市', N'141081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (514, N'山西省', N'临汾市', N'霍州市', N'141082'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (515, N'山西省', N'吕梁市', N'市辖区', N'141101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (516, N'山西省', N'吕梁市', N'离石区', N'141102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (517, N'山西省', N'吕梁市', N'文水县', N'141121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (518, N'山西省', N'吕梁市', N'交城县', N'141122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (519, N'山西省', N'吕梁市', N'兴县', N'141123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (520, N'山西省', N'吕梁市', N'临县', N'141124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (521, N'山西省', N'吕梁市', N'柳林县', N'141125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (522, N'山西省', N'吕梁市', N'石楼县', N'141126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (523, N'山西省', N'吕梁市', N'岚县', N'141127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (524, N'山西省', N'吕梁市', N'方山县', N'141128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (525, N'山西省', N'吕梁市', N'中阳县', N'141129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (526, N'山西省', N'吕梁市', N'交口县', N'141130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (527, N'山西省', N'吕梁市', N'孝义市', N'141181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (528, N'山西省', N'吕梁市', N'汾阳市', N'141182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (529, N'山西省', N'雁北地区', N'阳高县', N'142121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (530, N'山西省', N'雁北地区', N'天镇县', N'142122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (531, N'山西省', N'雁北地区', N'广灵县', N'142123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (532, N'山西省', N'雁北地区', N'灵丘县', N'142124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (533, N'山西省', N'雁北地区', N'浑源县', N'142125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (534, N'山西省', N'雁北地区', N'应县', N'142126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (535, N'山西省', N'雁北地区', N'山阴县', N'142127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (536, N'山西省', N'雁北地区', N'朔县', N'142128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (537, N'山西省', N'雁北地区', N'平鲁县', N'142129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (538, N'山西省', N'雁北地区', N'左云县', N'142130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (539, N'山西省', N'雁北地区', N'右玉县', N'142131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (540, N'山西省', N'雁北地区', N'大同县', N'142132'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (541, N'山西省', N'雁北地区', N'怀仁县', N'142133'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (542, N'山西省', N'忻州地区', N'忻州市', N'142201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (543, N'山西省', N'忻州地区', N'原平市', N'142202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (544, N'山西省', N'忻州地区', N'定襄县', N'142222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (545, N'山西省', N'忻州地区', N'五台县', N'142223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (546, N'山西省', N'忻州地区', N'代县', N'142225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (547, N'山西省', N'忻州地区', N'繁峙县', N'142226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (548, N'山西省', N'忻州地区', N'宁武县', N'142227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (549, N'山西省', N'忻州地区', N'静乐县', N'142228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (550, N'山西省', N'忻州地区', N'神池县', N'142229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (551, N'山西省', N'忻州地区', N'五寨县', N'142230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (552, N'山西省', N'忻州地区', N'岢岚县', N'142231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (553, N'山西省', N'忻州地区', N'河曲县', N'142232'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (554, N'山西省', N'忻州地区', N'保德县', N'142233'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (555, N'山西省', N'忻州地区', N'偏关县', N'142234'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (556, N'山西省', N'吕梁地区', N'孝义市', N'142301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (557, N'山西省', N'吕梁地区', N'离石市', N'142302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (558, N'山西省', N'吕梁地区', N'汾阳市', N'142303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (559, N'山西省', N'吕梁地区', N'汾阳县', N'142321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (560, N'山西省', N'吕梁地区', N'文水县', N'142322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (561, N'山西省', N'吕梁地区', N'交城县', N'142323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (562, N'山西省', N'吕梁地区', N'兴县', N'142325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (563, N'山西省', N'吕梁地区', N'临县', N'142326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (564, N'山西省', N'吕梁地区', N'柳林县', N'142327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (565, N'山西省', N'吕梁地区', N'石楼县', N'142328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (566, N'山西省', N'吕梁地区', N'岚县', N'142329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (567, N'山西省', N'吕梁地区', N'方山县', N'142330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (568, N'山西省', N'吕梁地区', N'中阳县', N'142332'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (569, N'山西省', N'吕梁地区', N'交口县', N'142333'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (570, N'山西省', N'晋中地区', N'榆次市', N'142401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (571, N'山西省', N'晋中地区', N'介休市', N'142402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (572, N'山西省', N'晋中地区', N'榆社县', N'142421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (573, N'山西省', N'晋中地区', N'左权县', N'142422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (574, N'山西省', N'晋中地区', N'和顺县', N'142423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (575, N'山西省', N'晋中地区', N'昔阳县', N'142424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (576, N'山西省', N'晋中地区', N'寿阳县', N'142427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (577, N'山西省', N'晋中地区', N'太谷县', N'142429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (578, N'山西省', N'晋中地区', N'祁县', N'142430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (579, N'山西省', N'晋中地区', N'平遥县', N'142431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (580, N'山西省', N'晋中地区', N'灵石县', N'142433'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (581, N'山西省', N'临汾地区', N'临汾市', N'142601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (582, N'山西省', N'临汾地区', N'侯马市', N'142602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (583, N'山西省', N'临汾地区', N'霍州市', N'142603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (584, N'山西省', N'临汾地区', N'曲沃县', N'142621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (585, N'山西省', N'临汾地区', N'翼城县', N'142622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (586, N'山西省', N'临汾地区', N'襄汾县', N'142623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (587, N'山西省', N'临汾地区', N'洪洞县', N'142625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (588, N'山西省', N'临汾地区', N'古县', N'142627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (589, N'山西省', N'临汾地区', N'安泽县', N'142628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (590, N'山西省', N'临汾地区', N'浮山县', N'142629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (591, N'山西省', N'临汾地区', N'吉县', N'142630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (592, N'山西省', N'临汾地区', N'乡宁县', N'142631'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (593, N'山西省', N'临汾地区', N'蒲县', N'142632'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (594, N'山西省', N'临汾地区', N'大宁县', N'142633'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (595, N'山西省', N'临汾地区', N'永和县', N'142634'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (596, N'山西省', N'临汾地区', N'隰县', N'142635'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (597, N'山西省', N'临汾地区', N'汾西县', N'142636'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (598, N'山西省', N'运城地区', N'运城市', N'142701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (599, N'山西省', N'运城地区', N'永济市', N'142702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (600, N'山西省', N'运城地区', N'河津市', N'142703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (601, N'山西省', N'运城地区', N'芮城县', N'142723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (602, N'山西省', N'运城地区', N'临猗县', N'142724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (603, N'山西省', N'运城地区', N'万荣县', N'142725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (604, N'山西省', N'运城地区', N'新绛县', N'142726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (605, N'山西省', N'运城地区', N'稷山县', N'142727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (606, N'山西省', N'运城地区', N'闻喜县', N'142729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (607, N'山西省', N'运城地区', N'夏县', N'142730'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (608, N'山西省', N'运城地区', N'绛县', N'142731'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (609, N'山西省', N'运城地区', N'平陆县', N'142732'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (610, N'山西省', N'运城地区', N'垣曲县', N'142733'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (611, N'山西省', NULL, N'古交市', N'149001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (612, N'内蒙古自治区', N'呼和浩特市', N'市辖区', N'150101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (613, N'内蒙古自治区', N'呼和浩特市', N'新城区', N'150102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (614, N'内蒙古自治区', N'呼和浩特市', N'回民区', N'150103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (615, N'内蒙古自治区', N'呼和浩特市', N'玉泉区', N'150104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (616, N'内蒙古自治区', N'呼和浩特市', N'郊区', N'150105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (617, N'内蒙古自治区', N'呼和浩特市', N'土默特左旗', N'150121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (618, N'内蒙古自治区', N'呼和浩特市', N'托克托县', N'150122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (619, N'内蒙古自治区', N'呼和浩特市', N'和林格尔县', N'150123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (620, N'内蒙古自治区', N'呼和浩特市', N'清水河县', N'150124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (621, N'内蒙古自治区', N'呼和浩特市', N'武川县', N'150125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (622, N'内蒙古自治区', N'包头市', N'市辖区', N'150201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (623, N'内蒙古自治区', N'包头市', N'东河区', N'150202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (624, N'内蒙古自治区', N'包头市', N'昆都伦区', N'150203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (625, N'内蒙古自治区', N'包头市', N'青山区', N'150204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (626, N'内蒙古自治区', N'包头市', N'石拐矿区', N'150205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (627, N'内蒙古自治区', N'包头市', N'白云矿区', N'150206'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (628, N'内蒙古自治区', N'包头市', N'郊区', N'150207'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (629, N'内蒙古自治区', N'包头市', N'土默特右旗', N'150221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (630, N'内蒙古自治区', N'包头市', N'固阳县', N'150222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (631, N'内蒙古自治区', N'包头市', N'达尔罕茂明安联合旗', N'150223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (632, N'内蒙古自治区', N'乌海市', N'市辖区', N'150301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (633, N'内蒙古自治区', N'乌海市', N'海勃湾区', N'150302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (634, N'内蒙古自治区', N'乌海市', N'海南区', N'150303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (635, N'内蒙古自治区', N'乌海市', N'乌达区', N'150304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (636, N'内蒙古自治区', N'赤峰市', N'市辖区', N'150401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (637, N'内蒙古自治区', N'赤峰市', N'红山区', N'150402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (638, N'内蒙古自治区', N'赤峰市', N'元宝山区', N'150403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (639, N'内蒙古自治区', N'赤峰市', N'松山区', N'150404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (640, N'内蒙古自治区', N'赤峰市', N'阿鲁科尔沁旗', N'150421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (641, N'内蒙古自治区', N'赤峰市', N'巴林左旗', N'150422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (642, N'内蒙古自治区', N'赤峰市', N'巴林右旗', N'150423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (643, N'内蒙古自治区', N'赤峰市', N'林西县', N'150424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (644, N'内蒙古自治区', N'赤峰市', N'克什克腾旗', N'150425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (645, N'内蒙古自治区', N'赤峰市', N'翁牛特旗', N'150426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (646, N'内蒙古自治区', N'赤峰市', N'喀喇沁旗', N'150428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (647, N'内蒙古自治区', N'赤峰市', N'宁城县', N'150429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (648, N'内蒙古自治区', N'赤峰市', N'敖汉旗', N'150430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (649, N'内蒙古自治区', N'通辽市', N'市辖区', N'150501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (650, N'内蒙古自治区', N'通辽市', N'科尔沁区', N'150502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (651, N'内蒙古自治区', N'通辽市', N'科尔沁左翼中旗', N'150521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (652, N'内蒙古自治区', N'通辽市', N'科尔沁左翼后旗', N'150522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (653, N'内蒙古自治区', N'通辽市', N'开鲁县', N'150523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (654, N'内蒙古自治区', N'通辽市', N'库伦旗', N'150524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (655, N'内蒙古自治区', N'通辽市', N'奈曼旗', N'150525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (656, N'内蒙古自治区', N'通辽市', N'扎鲁特旗', N'150526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (657, N'内蒙古自治区', N'通辽市', N'霍林郭勒市', N'150581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (658, N'内蒙古自治区', N'鄂尔多斯市', N'鄂尔多斯市', N'150601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (659, N'内蒙古自治区', N'鄂尔多斯市', N'东胜区', N'150602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (660, N'内蒙古自治区', N'鄂尔多斯市', N'达拉特旗', N'150621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (661, N'内蒙古自治区', N'鄂尔多斯市', N'准格尔旗', N'150622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (662, N'内蒙古自治区', N'鄂尔多斯市', N'鄂托克前旗', N'150623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (663, N'内蒙古自治区', N'鄂尔多斯市', N'鄂托克旗', N'150624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (664, N'内蒙古自治区', N'鄂尔多斯市', N'杭锦旗', N'150625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (665, N'内蒙古自治区', N'鄂尔多斯市', N'乌审旗', N'150626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (666, N'内蒙古自治区', N'鄂尔多斯市', N'伊金霍洛旗', N'150627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (667, N'内蒙古自治区', N'呼伦贝尔市', N'市辖区', N'150701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (668, N'内蒙古自治区', N'呼伦贝尔市', N'海拉尔区', N'150702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (669, N'内蒙古自治区', N'呼伦贝尔市', N'阿荣旗', N'150721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (670, N'内蒙古自治区', N'呼伦贝尔市', N'莫力达瓦达斡尔族自治旗', N'150722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (671, N'内蒙古自治区', N'呼伦贝尔市', N'鄂伦春自治旗', N'150723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (672, N'内蒙古自治区', N'呼伦贝尔市', N'鄂温克族自治旗', N'150724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (673, N'内蒙古自治区', N'呼伦贝尔市', N'陈巴尔虎旗', N'150725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (674, N'内蒙古自治区', N'呼伦贝尔市', N'新巴尔虎左旗', N'150726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (675, N'内蒙古自治区', N'呼伦贝尔市', N'新巴尔虎右旗', N'150727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (676, N'内蒙古自治区', N'呼伦贝尔市', N'满洲里市', N'150781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (677, N'内蒙古自治区', N'呼伦贝尔市', N'牙克石市', N'150782'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (678, N'内蒙古自治区', N'呼伦贝尔市', N'扎兰屯市', N'150783'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (679, N'内蒙古自治区', N'呼伦贝尔市', N'额尔古纳市', N'150784'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (680, N'内蒙古自治区', N'呼伦贝尔市', N'根河市', N'150785'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (681, N'内蒙古自治区', N'巴彦淖尔市', N'市辖区', N'150801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (682, N'内蒙古自治区', N'巴彦淖尔市', N'临河区', N'150802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (683, N'内蒙古自治区', N'巴彦淖尔市', N'五原县', N'150821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (684, N'内蒙古自治区', N'巴彦淖尔市', N'磴口县', N'150822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (685, N'内蒙古自治区', N'巴彦淖尔市', N'乌拉特前旗', N'150823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (686, N'内蒙古自治区', N'巴彦淖尔市', N'乌拉特中旗', N'150824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (687, N'内蒙古自治区', N'巴彦淖尔市', N'乌拉特后旗', N'150825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (688, N'内蒙古自治区', N'巴彦淖尔市', N'杭锦后旗', N'150826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (689, N'内蒙古自治区', N'乌兰察布市', N'市辖区', N'150901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (690, N'内蒙古自治区', N'乌兰察布市', N'集宁区', N'150902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (691, N'内蒙古自治区', N'乌兰察布市', N'卓资县', N'150921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (692, N'内蒙古自治区', N'乌兰察布市', N'化德县', N'150922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (693, N'内蒙古自治区', N'乌兰察布市', N'商都县', N'150923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (694, N'内蒙古自治区', N'乌兰察布市', N'兴和县', N'150924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (695, N'内蒙古自治区', N'乌兰察布市', N'凉城县', N'150925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (696, N'内蒙古自治区', N'乌兰察布市', N'察哈尔右翼前旗', N'150926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (697, N'内蒙古自治区', N'乌兰察布市', N'察哈尔右翼中旗', N'150927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (698, N'内蒙古自治区', N'乌兰察布市', N'察哈尔右翼后旗', N'150928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (699, N'内蒙古自治区', N'乌兰察布市', N'四子王旗', N'150929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (700, N'内蒙古自治区', N'乌兰察布市', N'丰镇市', N'150981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (701, N'内蒙古自治区', N'呼伦贝尔盟', N'海拉尔市', N'152101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (702, N'内蒙古自治区', N'呼伦贝尔盟', N'满洲里市', N'152102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (703, N'内蒙古自治区', N'呼伦贝尔盟', N'扎兰屯市', N'152103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (704, N'内蒙古自治区', N'呼伦贝尔盟', N'牙克石市', N'152104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (705, N'内蒙古自治区', N'呼伦贝尔盟', N'根河市', N'152105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (706, N'内蒙古自治区', N'呼伦贝尔盟', N'额尔古纳市', N'152106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (707, N'内蒙古自治区', N'呼伦贝尔盟', N'布特哈旗', N'152121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (708, N'内蒙古自治区', N'呼伦贝尔盟', N'阿荣旗', N'152122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (709, N'内蒙古自治区', N'呼伦贝尔盟', N'莫力达瓦达斡尔族自治旗', N'152123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (710, N'内蒙古自治区', N'呼伦贝尔盟', N'喜桂图旗', N'152124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (711, N'内蒙古自治区', N'呼伦贝尔盟', N'额尔古纳右旗', N'152125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (712, N'内蒙古自治区', N'呼伦贝尔盟', N'额尔古纳左旗', N'152126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (713, N'内蒙古自治区', N'呼伦贝尔盟', N'鄂伦春自治旗', N'152127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (714, N'内蒙古自治区', N'呼伦贝尔盟', N'鄂温克族自治旗', N'152128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (715, N'内蒙古自治区', N'呼伦贝尔盟', N'新巴尔虎右旗', N'152129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (716, N'内蒙古自治区', N'呼伦贝尔盟', N'新巴尔虎左旗', N'152130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (717, N'内蒙古自治区', N'呼伦贝尔盟', N'陈巴尔虎旗', N'152131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (718, N'内蒙古自治区', N'兴安盟', N'乌兰浩特市', N'152201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (719, N'内蒙古自治区', N'兴安盟', N'阿尔山市', N'152202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (720, N'内蒙古自治区', N'兴安盟', N'科尔沁右翼前旗', N'152221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (721, N'内蒙古自治区', N'兴安盟', N'科尔沁右翼中旗', N'152222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (722, N'内蒙古自治区', N'兴安盟', N'扎赉特旗', N'152223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (723, N'内蒙古自治区', N'兴安盟', N'突泉县', N'152224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (724, N'内蒙古自治区', N'哲里木盟', N'通辽市', N'152301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (725, N'内蒙古自治区', N'哲里木盟', N'霍林郭勒市', N'152302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (726, N'内蒙古自治区', N'哲里木盟', N'通辽县', N'152321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (727, N'内蒙古自治区', N'哲里木盟', N'科尔沁左翼中旗', N'152322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (728, N'内蒙古自治区', N'哲里木盟', N'科尔沁左翼后旗', N'152323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (729, N'内蒙古自治区', N'哲里木盟', N'开鲁县', N'152324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (730, N'内蒙古自治区', N'哲里木盟', N'库伦旗', N'152325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (731, N'内蒙古自治区', N'哲里木盟', N'奈曼旗', N'152326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (732, N'内蒙古自治区', N'哲里木盟', N'扎鲁特旗', N'152327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (733, N'内蒙古自治区', N'锡林郭勒盟', N'二连浩特市', N'152501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (734, N'内蒙古自治区', N'锡林郭勒盟', N'锡林浩特市', N'152502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (735, N'内蒙古自治区', N'锡林郭勒盟', N'阿巴嘎旗', N'152522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (736, N'内蒙古自治区', N'锡林郭勒盟', N'苏尼特左旗', N'152523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (737, N'内蒙古自治区', N'锡林郭勒盟', N'苏尼特右旗', N'152524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (738, N'内蒙古自治区', N'锡林郭勒盟', N'东乌珠穆沁旗', N'152525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (739, N'内蒙古自治区', N'锡林郭勒盟', N'西乌珠穆沁旗', N'152526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (740, N'内蒙古自治区', N'锡林郭勒盟', N'太仆寺旗', N'152527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (741, N'内蒙古自治区', N'锡林郭勒盟', N'镶黄旗', N'152528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (742, N'内蒙古自治区', N'锡林郭勒盟', N'正镶白旗', N'152529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (743, N'内蒙古自治区', N'锡林郭勒盟', N'正蓝旗', N'152530'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (744, N'内蒙古自治区', N'锡林郭勒盟', N'多伦县', N'152531'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (745, N'内蒙古自治区', N'乌兰察布盟', N'集宁市', N'152601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (746, N'内蒙古自治区', N'乌兰察布盟', N'丰镇市', N'152602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (747, N'内蒙古自治区', N'乌兰察布盟', N'武川县', N'152621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (748, N'内蒙古自治区', N'乌兰察布盟', N'和林格尔县', N'152622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (749, N'内蒙古自治区', N'乌兰察布盟', N'清水河县', N'152623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (750, N'内蒙古自治区', N'乌兰察布盟', N'卓资县', N'152624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (751, N'内蒙古自治区', N'乌兰察布盟', N'化德县', N'152625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (752, N'内蒙古自治区', N'乌兰察布盟', N'商都县', N'152626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (753, N'内蒙古自治区', N'乌兰察布盟', N'兴和县', N'152627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (754, N'内蒙古自治区', N'乌兰察布盟', N'丰镇县', N'152628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (755, N'内蒙古自治区', N'乌兰察布盟', N'凉城县', N'152629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (756, N'内蒙古自治区', N'乌兰察布盟', N'察哈尔右翼前旗', N'152630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (757, N'内蒙古自治区', N'乌兰察布盟', N'察哈尔右翼中旗', N'152631'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (758, N'内蒙古自治区', N'乌兰察布盟', N'察哈尔右翼后旗', N'152632'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (759, N'内蒙古自治区', N'乌兰察布盟', N'达尔罕茂明安联合旗', N'152633'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (760, N'内蒙古自治区', N'乌兰察布盟', N'四子王旗', N'152634'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (761, N'内蒙古自治区', N'伊克昭盟', N'东胜市', N'152701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (762, N'内蒙古自治区', N'伊克昭盟', N'东胜县', N'152721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (763, N'内蒙古自治区', N'伊克昭盟', N'达拉特旗', N'152722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (764, N'内蒙古自治区', N'伊克昭盟', N'准格尔旗', N'152723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (765, N'内蒙古自治区', N'伊克昭盟', N'鄂托克前旗', N'152724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (766, N'内蒙古自治区', N'伊克昭盟', N'鄂托克旗', N'152725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (767, N'内蒙古自治区', N'伊克昭盟', N'杭锦旗', N'152726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (768, N'内蒙古自治区', N'伊克昭盟', N'乌审旗', N'152727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (769, N'内蒙古自治区', N'伊克昭盟', N'伊金霍洛旗', N'152728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (770, N'内蒙古自治区', N'巴彦淖尔盟', N'临河市', N'152801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (771, N'内蒙古自治区', N'巴彦淖尔盟', N'临河县', N'152821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (772, N'内蒙古自治区', N'巴彦淖尔盟', N'五原县', N'152822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (773, N'内蒙古自治区', N'巴彦淖尔盟', N'磴口县', N'152823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (774, N'内蒙古自治区', N'巴彦淖尔盟', N'乌拉特前旗', N'152824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (775, N'内蒙古自治区', N'巴彦淖尔盟', N'乌拉特中旗', N'152825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (776, N'内蒙古自治区', N'巴彦淖尔盟', N'乌拉特后旗', N'152826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (777, N'内蒙古自治区', N'巴彦淖尔盟', N'杭锦后旗', N'152827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (778, N'内蒙古自治区', N'阿拉善盟', N'阿拉善左旗', N'152921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (779, N'内蒙古自治区', N'阿拉善盟', N'阿拉善右旗', N'152922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (780, N'内蒙古自治区', N'阿拉善盟', N'额济纳旗', N'152923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (781, N'辽宁省', N'沈阳市', N'市辖区', N'210101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (782, N'辽宁省', N'沈阳市', N'和平区', N'210102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (783, N'辽宁省', N'沈阳市', N'沈河区', N'210103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (784, N'辽宁省', N'沈阳市', N'大东区', N'210104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (785, N'辽宁省', N'沈阳市', N'皇姑区', N'210105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (786, N'辽宁省', N'沈阳市', N'铁西区', N'210106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (787, N'辽宁省', N'沈阳市', N'苏家屯区', N'210111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (788, N'辽宁省', N'沈阳市', N'东陵区', N'210112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (789, N'辽宁省', N'沈阳市', N'沈北新区', N'210113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (790, N'辽宁省', N'沈阳市', N'于洪区', N'210114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (791, N'辽宁省', N'沈阳市', N'市区', N'210120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (792, N'辽宁省', N'沈阳市', N'新民县', N'210121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (793, N'辽宁省', N'沈阳市', N'辽中县', N'210122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (794, N'辽宁省', N'沈阳市', N'康平县', N'210123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (795, N'辽宁省', N'沈阳市', N'法库县', N'210124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (796, N'辽宁省', N'沈阳市', N'新民市', N'210181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (797, N'辽宁省', N'大连市', N'市辖区', N'210201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (798, N'辽宁省', N'大连市', N'中山区', N'210202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (799, N'辽宁省', N'大连市', N'西岗区', N'210203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (800, N'辽宁省', N'大连市', N'沙河口区', N'210204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (801, N'辽宁省', N'大连市', N'甘井子区', N'210211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (802, N'辽宁省', N'大连市', N'旅顺口区', N'210212'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (803, N'辽宁省', N'大连市', N'金州区', N'210213'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (804, N'辽宁省', N'大连市', N'瓦房店市', N'210219'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (805, N'辽宁省', N'大连市', N'市区', N'210220'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (806, N'辽宁省', N'大连市', N'金县', N'210221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (807, N'辽宁省', N'大连市', N'新金县', N'210222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (808, N'辽宁省', N'大连市', N'复县', N'210223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (809, N'辽宁省', N'大连市', N'长海县', N'210224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (810, N'辽宁省', N'大连市', N'庄河县', N'210225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (811, N'辽宁省', N'大连市', N'瓦房店市', N'210281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (812, N'辽宁省', N'大连市', N'普兰店市', N'210282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (813, N'辽宁省', N'大连市', N'庄河市', N'210283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (814, N'辽宁省', N'鞍山市', N'市辖区', N'210301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (815, N'辽宁省', N'鞍山市', N'铁东区', N'210302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (816, N'辽宁省', N'鞍山市', N'铁西区', N'210303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (817, N'辽宁省', N'鞍山市', N'立山区', N'210304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (818, N'辽宁省', N'鞍山市', N'千山区', N'210311'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (819, N'辽宁省', N'鞍山市', N'开发区', N'210319'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (820, N'辽宁省', N'鞍山市', N'台安县', N'210321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (821, N'辽宁省', N'鞍山市', N'岫岩满族自治县', N'210323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (822, N'辽宁省', N'鞍山市', N'海城市', N'210381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (823, N'辽宁省', N'抚顺市', N'市辖区', N'210401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (824, N'辽宁省', N'抚顺市', N'新抚区', N'210402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (825, N'辽宁省', N'抚顺市', N'东洲区', N'210403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (826, N'辽宁省', N'抚顺市', N'望花区', N'210404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (827, N'辽宁省', N'抚顺市', N'顺城区', N'210411'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (828, N'辽宁省', N'抚顺市', N'抚顺县', N'210421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (829, N'辽宁省', N'抚顺市', N'新宾满族自治县', N'210422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (830, N'辽宁省', N'抚顺市', N'清原满族自治县', N'210423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (831, N'辽宁省', N'本溪市', N'市辖区', N'210501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (832, N'辽宁省', N'本溪市', N'平山区', N'210502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (833, N'辽宁省', N'本溪市', N'溪湖区', N'210503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (834, N'辽宁省', N'本溪市', N'明山区', N'210504'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (835, N'辽宁省', N'本溪市', N'南芬区', N'210505'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (836, N'辽宁省', N'本溪市', N'南芬区', N'210511'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (837, N'辽宁省', N'本溪市', N'本溪满族自治县', N'210521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (838, N'辽宁省', N'本溪市', N'桓仁满族自治县', N'210522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (839, N'辽宁省', N'丹东市', N'市辖区', N'210601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (840, N'辽宁省', N'丹东市', N'元宝区', N'210602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (841, N'辽宁省', N'丹东市', N'振兴区', N'210603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (842, N'辽宁省', N'丹东市', N'振安区', N'210604'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (843, N'辽宁省', N'丹东市', N'市区', N'210620'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (844, N'辽宁省', N'丹东市', N'凤城满族自治县', N'210621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (845, N'辽宁省', N'丹东市', N'岫岩满族自治县', N'210622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (846, N'辽宁省', N'丹东市', N'东沟县', N'210623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (847, N'辽宁省', N'丹东市', N'宽甸满族自治县', N'210624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (848, N'辽宁省', N'丹东市', N'东港市', N'210681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (849, N'辽宁省', N'丹东市', N'凤城市', N'210682'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (850, N'辽宁省', N'锦州市', N'市辖区', N'210701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (851, N'辽宁省', N'锦州市', N'古塔区', N'210702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (852, N'辽宁省', N'锦州市', N'凌河区', N'210703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (853, N'辽宁省', N'锦州市', N'南票区', N'210704'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (854, N'辽宁省', N'锦州市', N'葫芦岛区', N'210705'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (855, N'辽宁省', N'锦州市', N'太和区', N'210711'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (856, N'辽宁省', N'锦州市', N'锦西市', N'210719'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (857, N'辽宁省', N'锦州市', N'市区', N'210720'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (858, N'辽宁省', N'锦州市', N'锦西县', N'210721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (859, N'辽宁省', N'锦州市', N'兴城县', N'210722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (860, N'辽宁省', N'锦州市', N'绥中县', N'210723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (861, N'辽宁省', N'锦州市', N'锦县', N'210724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (862, N'辽宁省', N'锦州市', N'北镇满族自治县', N'210725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (863, N'辽宁省', N'锦州市', N'黑山县', N'210726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (864, N'辽宁省', N'锦州市', N'义县', N'210727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (865, N'辽宁省', N'锦州市', N'凌海市', N'210781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (866, N'辽宁省', N'锦州市', N'北镇市', N'210782'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (867, N'辽宁省', N'营口市', N'市辖区', N'210801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (868, N'辽宁省', N'营口市', N'站前区', N'210802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (869, N'辽宁省', N'营口市', N'西市区', N'210803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (870, N'辽宁省', N'营口市', N'鲅鱼圈区', N'210804'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (871, N'辽宁省', N'营口市', N'老边区', N'210811'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (872, N'辽宁省', N'营口市', N'营口县', N'210821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (873, N'辽宁省', N'营口市', N'盖县', N'210824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (874, N'辽宁省', N'营口市', N'盖州市', N'210881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (875, N'辽宁省', N'营口市', N'大石桥市', N'210882'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (876, N'辽宁省', N'阜新市', N'市辖区', N'210901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (877, N'辽宁省', N'阜新市', N'海州区', N'210902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (878, N'辽宁省', N'阜新市', N'新邱区', N'210903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (879, N'辽宁省', N'阜新市', N'太平区', N'210904'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (880, N'辽宁省', N'阜新市', N'清河门区', N'210905'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (881, N'辽宁省', N'阜新市', N'细河区', N'210911'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (882, N'辽宁省', N'阜新市', N'阜新蒙古族自治县', N'210921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (883, N'辽宁省', N'阜新市', N'彰武县', N'210922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (884, N'辽宁省', N'辽阳市', N'市辖区', N'211001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (885, N'辽宁省', N'辽阳市', N'白塔区', N'211002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (886, N'辽宁省', N'辽阳市', N'文圣区', N'211003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (887, N'辽宁省', N'辽阳市', N'宏伟区', N'211004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (888, N'辽宁省', N'辽阳市', N'弓长岭区', N'211005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (889, N'辽宁省', N'辽阳市', N'太子河区', N'211011'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (890, N'辽宁省', N'辽阳市', N'辽阳县', N'211021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (891, N'辽宁省', N'辽阳市', N'灯塔县', N'211022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (892, N'辽宁省', N'辽阳市', N'灯塔市', N'211081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (893, N'辽宁省', N'盘锦市', N'市辖区', N'211101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (894, N'辽宁省', N'盘锦市', N'双台子区', N'211102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (895, N'辽宁省', N'盘锦市', N'兴隆台区', N'211103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (896, N'辽宁省', N'盘锦市', N'郊区', N'211111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (897, N'辽宁省', N'盘锦市', N'大洼县', N'211121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (898, N'辽宁省', N'盘锦市', N'盘山县', N'211122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (899, N'辽宁省', N'铁岭市', N'市辖区', N'211201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (900, N'辽宁省', N'铁岭市', N'银州区', N'211202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (901, N'辽宁省', N'铁岭市', N'铁法区', N'211203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (902, N'辽宁省', N'铁岭市', N'清河区', N'211204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (903, N'辽宁省', N'铁岭市', N'铁岭县', N'211221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (904, N'辽宁省', N'铁岭市', N'开原县', N'211222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (905, N'辽宁省', N'铁岭市', N'西丰县', N'211223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (906, N'辽宁省', N'铁岭市', N'昌图县', N'211224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (907, N'辽宁省', N'铁岭市', N'康平县', N'211225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (908, N'辽宁省', N'铁岭市', N'法库县', N'211226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (909, N'辽宁省', N'铁岭市', N'调兵山市', N'211281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (910, N'辽宁省', N'铁岭市', N'开原市', N'211282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (911, N'辽宁省', N'朝阳市', N'市辖区', N'211301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (912, N'辽宁省', N'朝阳市', N'双塔区', N'211302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (913, N'辽宁省', N'朝阳市', N'龙城区', N'211303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (914, N'辽宁省', N'朝阳市', N'朝阳县', N'211321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (915, N'辽宁省', N'朝阳市', N'建平县', N'211322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (916, N'辽宁省', N'朝阳市', N'凌源县', N'211323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (917, N'辽宁省', N'朝阳市', N'喀喇沁左翼蒙古族自治县', N'211324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (918, N'辽宁省', N'朝阳市', N'建昌县', N'211325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (919, N'辽宁省', N'朝阳市', N'北票县', N'211326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (920, N'辽宁省', N'朝阳市', N'北票市', N'211381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (921, N'辽宁省', N'朝阳市', N'凌源市', N'211382'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (922, N'辽宁省', N'葫芦岛市', N'市辖区', N'211401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (923, N'辽宁省', N'葫芦岛市', N'连山区', N'211402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (924, N'辽宁省', N'葫芦岛市', N'龙港区', N'211403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (925, N'辽宁省', N'葫芦岛市', N'南票区', N'211404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (926, N'辽宁省', N'葫芦岛市', N'绥中县', N'211421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (927, N'辽宁省', N'葫芦岛市', N'建昌县', N'211422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (928, N'辽宁省', N'葫芦岛市', N'兴城市', N'211481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (929, N'辽宁省', N'铁岭市', N'铁岭市', N'212101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (930, N'辽宁省', N'铁岭市', N'铁法市', N'212102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (931, N'辽宁省', N'铁岭市', N'铁岭县', N'212121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (932, N'辽宁省', N'铁岭市', N'开原县', N'212122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (933, N'辽宁省', N'铁岭市', N'西丰县', N'212123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (934, N'辽宁省', N'铁岭市', N'昌图县', N'212124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (935, N'辽宁省', N'铁岭市', N'康平县', N'212125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (936, N'辽宁省', N'铁岭市', N'法库县', N'212126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (937, N'辽宁省', N'朝阳市', N'建昌县', N'212225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (938, N'辽宁省', N'朝阳市', N'北票县', N'212226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (939, N'辽宁省', NULL, N'瓦房店市', N'219001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (940, N'辽宁省', NULL, N'海城市', N'219002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (941, N'辽宁省', NULL, N'锦西市', N'219003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (942, N'辽宁省', NULL, N'兴城市', N'219004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (943, N'辽宁省', NULL, N'铁法市', N'219005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (944, N'辽宁省', NULL, N'北票市', N'219006'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (945, N'辽宁省', NULL, N'开原市', N'219007'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (946, N'吉林省', N'长春市', N'市辖区', N'220101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (947, N'吉林省', N'长春市', N'南关区', N'220102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (948, N'吉林省', N'长春市', N'宽城区', N'220103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (949, N'吉林省', N'长春市', N'朝阳区', N'220104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (950, N'吉林省', N'长春市', N'二道区', N'220105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (951, N'吉林省', N'长春市', N'绿园区', N'220106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (952, N'吉林省', N'长春市', N'郊区', N'220111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (953, N'吉林省', N'长春市', N'双阳区', N'220112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (954, N'吉林省', N'长春市', N'市区', N'220120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (955, N'吉林省', N'长春市', N'榆树县', N'220121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (956, N'吉林省', N'长春市', N'农安县', N'220122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (957, N'吉林省', N'长春市', N'九台县', N'220123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (958, N'吉林省', N'长春市', N'德惠县', N'220124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (959, N'吉林省', N'长春市', N'双阳县', N'220125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (960, N'吉林省', N'长春市', N'九台市', N'220181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (961, N'吉林省', N'长春市', N'榆树市', N'220182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (962, N'吉林省', N'长春市', N'德惠市', N'220183'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (963, N'吉林省', N'吉林市', N'市辖区', N'220201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (964, N'吉林省', N'吉林市', N'昌邑区', N'220202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (965, N'吉林省', N'吉林市', N'龙潭区', N'220203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (966, N'吉林省', N'吉林市', N'船营区', N'220204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (967, N'吉林省', N'吉林市', N'丰满区', N'220211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (968, N'吉林省', N'吉林市', N'市区', N'220220'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (969, N'吉林省', N'吉林市', N'永吉县', N'220221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (970, N'吉林省', N'吉林市', N'舒兰县', N'220222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (971, N'吉林省', N'吉林市', N'磐石县', N'220223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (972, N'吉林省', N'吉林市', N'蛟河县', N'220224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (973, N'吉林省', N'吉林市', N'桦甸县', N'220225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (974, N'吉林省', N'吉林市', N'蛟河市', N'220281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (975, N'吉林省', N'吉林市', N'桦甸市', N'220282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (976, N'吉林省', N'吉林市', N'舒兰市', N'220283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (977, N'吉林省', N'吉林市', N'磐石市', N'220284'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (978, N'吉林省', N'四平市', N'市辖区', N'220301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (979, N'吉林省', N'四平市', N'铁西区', N'220302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (980, N'吉林省', N'四平市', N'铁东区', N'220303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (981, N'吉林省', N'四平市', N'公主岭市', N'220319'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (982, N'吉林省', N'四平市', N'怀德县', N'220321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (983, N'吉林省', N'四平市', N'梨树县', N'220322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (984, N'吉林省', N'四平市', N'伊通满族自治县', N'220323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (985, N'吉林省', N'四平市', N'双辽县', N'220324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (986, N'吉林省', N'四平市', N'公主岭市', N'220381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (987, N'吉林省', N'四平市', N'双辽市', N'220382'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (988, N'吉林省', N'辽源市', N'市辖区', N'220401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (989, N'吉林省', N'辽源市', N'龙山区', N'220402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (990, N'吉林省', N'辽源市', N'西安区', N'220403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (991, N'吉林省', N'辽源市', N'东丰县', N'220421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (992, N'吉林省', N'辽源市', N'东辽县', N'220422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (993, N'吉林省', N'通化市', N'市辖区', N'220501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (994, N'吉林省', N'通化市', N'东昌区', N'220502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (995, N'吉林省', N'通化市', N'二道江区', N'220503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (996, N'吉林省', N'通化市', N'梅河口市', N'220519'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (997, N'吉林省', N'通化市', N'通化县', N'220521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (998, N'吉林省', N'通化市', N'集安县', N'220522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (999, N'吉林省', N'通化市', N'辉南县', N'220523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1000, N'吉林省', N'通化市', N'柳河县', N'220524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1001, N'吉林省', N'通化市', N'梅河口市', N'220581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1002, N'吉林省', N'通化市', N'集安市', N'220582'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1003, N'吉林省', N'白山市', N'市辖区', N'220601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1004, N'吉林省', N'白山市', N'八道江区', N'220602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1005, N'吉林省', N'白山市', N'三岔子区', N'220603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1006, N'吉林省', N'白山市', N'临江区', N'220604'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1007, N'吉林省', N'白山市', N'抚松县', N'220621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1008, N'吉林省', N'白山市', N'靖宇县', N'220622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1009, N'吉林省', N'白山市', N'长白朝鲜族自治县', N'220623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1010, N'吉林省', N'白山市', N'江源县', N'220625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1011, N'吉林省', N'白山市', N'临江市', N'220681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1012, N'吉林省', N'松原市', N'市辖区', N'220701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1013, N'吉林省', N'松原市', N'宁江区', N'220702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1014, N'吉林省', N'松原市', N'前郭尔罗斯蒙古族自治县', N'220721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1015, N'吉林省', N'松原市', N'长岭县', N'220722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1016, N'吉林省', N'松原市', N'乾安县', N'220723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1017, N'吉林省', N'松原市', N'扶余县', N'220724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1018, N'吉林省', N'白城市', N'市辖区', N'220801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1019, N'吉林省', N'白城市', N'洮北区', N'220802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1020, N'吉林省', N'白城市', N'镇赉县', N'220821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1021, N'吉林省', N'白城市', N'通榆县', N'220822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1022, N'吉林省', N'白城市', N'洮南市', N'220881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1023, N'吉林省', N'白城市', N'大安市', N'220882'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1024, N'吉林省', N'白城地区', N'白城市', N'222301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1025, N'吉林省', N'白城地区', N'洮南市', N'222302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1026, N'吉林省', N'白城地区', N'扶余市', N'222303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1027, N'吉林省', N'白城地区', N'大安市', N'222304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1028, N'吉林省', N'白城地区', N'扶余县', N'222321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1029, N'吉林省', N'白城地区', N'洮安县', N'222322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1030, N'吉林省', N'白城地区', N'长岭县', N'222323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1031, N'吉林省', N'白城地区', N'前郭尔罗斯蒙古族自治县', N'222324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1032, N'吉林省', N'白城地区', N'大安县', N'222325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1033, N'吉林省', N'白城地区', N'镇赉县', N'222326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1034, N'吉林省', N'白城地区', N'通榆县', N'222327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1035, N'吉林省', N'白城地区', N'乾安县', N'222328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1036, N'吉林省', N'延边朝鲜族自治州', N'延吉市', N'222401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1037, N'吉林省', N'延边朝鲜族自治州', N'图们市', N'222402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1038, N'吉林省', N'延边朝鲜族自治州', N'敦化市', N'222403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1039, N'吉林省', N'延边朝鲜族自治州', N'珲春市', N'222404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1040, N'吉林省', N'延边朝鲜族自治州', N'龙井市', N'222405'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1041, N'吉林省', N'延边朝鲜族自治州', N'和龙市', N'222406'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1042, N'吉林省', N'延边朝鲜族自治州', N'龙井县', N'222421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1043, N'吉林省', N'延边朝鲜族自治州', N'敦化县', N'222422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1044, N'吉林省', N'延边朝鲜族自治州', N'和龙县', N'222423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1045, N'吉林省', N'延边朝鲜族自治州', N'汪清县', N'222424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1046, N'吉林省', N'延边朝鲜族自治州', N'珲春县', N'222425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1047, N'吉林省', N'延边朝鲜族自治州', N'安图县', N'222426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1048, N'吉林省', NULL, N'四平市', N'222101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1049, N'吉林省', NULL, N'辽源市', N'222102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1050, N'吉林省', NULL, N'怀德县', N'222121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1051, N'吉林省', NULL, N'梨树县', N'222122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1052, N'吉林省', NULL, N'伊通满族自治县', N'222123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1053, N'吉林省', NULL, N'东丰县', N'222124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1054, N'吉林省', NULL, N'双辽县', N'222125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1055, N'吉林省', NULL, N'通化市', N'222201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1056, N'吉林省', NULL, N'浑江市', N'222202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1057, N'吉林省', NULL, N'海龙县', N'222221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1058, N'吉林省', NULL, N'通化县', N'222222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1059, N'吉林省', NULL, N'柳河县', N'222223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1060, N'吉林省', NULL, N'辉南县', N'222224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1061, N'吉林省', NULL, N'集安县', N'222225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1062, N'吉林省', NULL, N'抚松县', N'222226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1063, N'吉林省', NULL, N'靖宇县', N'222227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1064, N'吉林省', NULL, N'长白朝鲜族自治县', N'222228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1065, N'吉林省', NULL, N'公主岭市', N'229001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1066, N'吉林省', NULL, N'梅河口市', N'229002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1067, N'吉林省', NULL, N'集安市', N'229003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1068, N'吉林省', NULL, N'桦甸市', N'229004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1069, N'吉林省', NULL, N'九台市', N'229005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1070, N'黑龙江省', N'哈尔滨市', N'市辖区', N'230101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1071, N'黑龙江省', N'哈尔滨市', N'道里区', N'230102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1072, N'黑龙江省', N'哈尔滨市', N'南岗区', N'230103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1073, N'黑龙江省', N'哈尔滨市', N'道外区', N'230104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1074, N'黑龙江省', N'哈尔滨市', N'太平区', N'230105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1075, N'黑龙江省', N'哈尔滨市', N'香坊区', N'230106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1076, N'黑龙江省', N'哈尔滨市', N'动力区', N'230107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1077, N'黑龙江省', N'哈尔滨市', N'平房区', N'230108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1078, N'黑龙江省', N'哈尔滨市', N'松北区', N'230109'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1079, N'黑龙江省', N'哈尔滨市', N'香坊区', N'230110'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1080, N'黑龙江省', N'哈尔滨市', N'呼兰区', N'230111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1081, N'黑龙江省', N'哈尔滨市', N'阿城区', N'230112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1082, N'黑龙江省', N'哈尔滨市', N'阿城市', N'230119'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1083, N'黑龙江省', N'哈尔滨市', N'呼兰县', N'230121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1084, N'黑龙江省', N'哈尔滨市', N'阿城县', N'230122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1085, N'黑龙江省', N'哈尔滨市', N'依兰县', N'230123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1086, N'黑龙江省', N'哈尔滨市', N'方正县', N'230124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1087, N'黑龙江省', N'哈尔滨市', N'宾县', N'230125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1088, N'黑龙江省', N'哈尔滨市', N'巴彦县', N'230126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1089, N'黑龙江省', N'哈尔滨市', N'木兰县', N'230127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1090, N'黑龙江省', N'哈尔滨市', N'通河县', N'230128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1091, N'黑龙江省', N'哈尔滨市', N'延寿县', N'230129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1092, N'黑龙江省', N'哈尔滨市', N'阿城市', N'230181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1093, N'黑龙江省', N'哈尔滨市', N'双城市', N'230182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1094, N'黑龙江省', N'哈尔滨市', N'尚志市', N'230183'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1095, N'黑龙江省', N'哈尔滨市', N'五常市', N'230184'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1096, N'黑龙江省', N'齐齐哈尔市', N'市辖区', N'230201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1097, N'黑龙江省', N'齐齐哈尔市', N'龙沙区', N'230202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1098, N'黑龙江省', N'齐齐哈尔市', N'建华区', N'230203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1099, N'黑龙江省', N'齐齐哈尔市', N'铁锋区', N'230204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1100, N'黑龙江省', N'齐齐哈尔市', N'昂昂溪区', N'230205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1101, N'黑龙江省', N'齐齐哈尔市', N'富拉尔基区', N'230206'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1102, N'黑龙江省', N'齐齐哈尔市', N'碾子山区', N'230207'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1103, N'黑龙江省', N'齐齐哈尔市', N'梅里斯达斡尔族区', N'230208'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1104, N'黑龙江省', N'齐齐哈尔市', N'龙江县', N'230221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1105, N'黑龙江省', N'齐齐哈尔市', N'讷河县', N'230222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1106, N'黑龙江省', N'齐齐哈尔市', N'依安县', N'230223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1107, N'黑龙江省', N'齐齐哈尔市', N'泰来县', N'230224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1108, N'黑龙江省', N'齐齐哈尔市', N'甘南县', N'230225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1109, N'黑龙江省', N'齐齐哈尔市', N'杜尔伯特蒙古族自治县', N'230226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1110, N'黑龙江省', N'齐齐哈尔市', N'富裕县', N'230227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1111, N'黑龙江省', N'齐齐哈尔市', N'林甸县', N'230228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1112, N'黑龙江省', N'齐齐哈尔市', N'克山县', N'230229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1113, N'黑龙江省', N'齐齐哈尔市', N'克东县', N'230230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1114, N'黑龙江省', N'齐齐哈尔市', N'拜泉县', N'230231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1115, N'黑龙江省', N'齐齐哈尔市', N'讷河市', N'230281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1116, N'黑龙江省', N'鸡西市', N'市辖区', N'230301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1117, N'黑龙江省', N'鸡西市', N'鸡冠区', N'230302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1118, N'黑龙江省', N'鸡西市', N'恒山区', N'230303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1119, N'黑龙江省', N'鸡西市', N'滴道区', N'230304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1120, N'黑龙江省', N'鸡西市', N'梨树区', N'230305'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1121, N'黑龙江省', N'鸡西市', N'城子河区', N'230306'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1122, N'黑龙江省', N'鸡西市', N'麻山区', N'230307'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1123, N'黑龙江省', N'鸡西市', N'鸡东县', N'230321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1124, N'黑龙江省', N'鸡西市', N'虎林市', N'230381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1125, N'黑龙江省', N'鸡西市', N'密山市', N'230382'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1126, N'黑龙江省', N'鹤岗市', N'市辖区', N'230401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1127, N'黑龙江省', N'鹤岗市', N'向阳区', N'230402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1128, N'黑龙江省', N'鹤岗市', N'工农区', N'230403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1129, N'黑龙江省', N'鹤岗市', N'南山区', N'230404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1130, N'黑龙江省', N'鹤岗市', N'兴安区', N'230405'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1131, N'黑龙江省', N'鹤岗市', N'东山区', N'230406'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1132, N'黑龙江省', N'鹤岗市', N'兴山区', N'230407'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1133, N'黑龙江省', N'鹤岗市', N'萝北县', N'230421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1134, N'黑龙江省', N'鹤岗市', N'绥滨县', N'230422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1135, N'黑龙江省', N'双鸭山市', N'市辖区', N'230501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1136, N'黑龙江省', N'双鸭山市', N'尖山区', N'230502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1137, N'黑龙江省', N'双鸭山市', N'岭东区', N'230503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1138, N'黑龙江省', N'双鸭山市', N'岭西区', N'230504'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1139, N'黑龙江省', N'双鸭山市', N'四方台区', N'230505'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1140, N'黑龙江省', N'双鸭山市', N'宝山区', N'230506'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1141, N'黑龙江省', N'双鸭山市', N'集贤县', N'230521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1142, N'黑龙江省', N'双鸭山市', N'友谊县', N'230522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1143, N'黑龙江省', N'双鸭山市', N'宝清县', N'230523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1144, N'黑龙江省', N'双鸭山市', N'饶河县', N'230524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1145, N'黑龙江省', N'大庆市', N'市辖区', N'230601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1146, N'黑龙江省', N'大庆市', N'萨尔图区', N'230602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1147, N'黑龙江省', N'大庆市', N'龙凤区', N'230603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1148, N'黑龙江省', N'大庆市', N'让胡路区', N'230604'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1149, N'黑龙江省', N'大庆市', N'红岗区', N'230605'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1150, N'黑龙江省', N'大庆市', N'大同区', N'230606'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1151, N'黑龙江省', N'大庆市', N'肇州县', N'230621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1152, N'黑龙江省', N'大庆市', N'肇源县', N'230622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1153, N'黑龙江省', N'大庆市', N'林甸县', N'230623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1154, N'黑龙江省', N'大庆市', N'杜尔伯特蒙古族自治县', N'230624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1155, N'黑龙江省', N'伊春市', N'市辖区', N'230701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1156, N'黑龙江省', N'伊春市', N'伊春区', N'230702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1157, N'黑龙江省', N'伊春市', N'南岔区', N'230703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1158, N'黑龙江省', N'伊春市', N'友好区', N'230704'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1159, N'黑龙江省', N'伊春市', N'西林区', N'230705'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1160, N'黑龙江省', N'伊春市', N'翠峦区', N'230706'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1161, N'黑龙江省', N'伊春市', N'新青区', N'230707'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1162, N'黑龙江省', N'伊春市', N'美溪区', N'230708'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1163, N'黑龙江省', N'伊春市', N'金山屯区', N'230709'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1164, N'黑龙江省', N'伊春市', N'五营区', N'230710'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1165, N'黑龙江省', N'伊春市', N'乌马河区', N'230711'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1166, N'黑龙江省', N'伊春市', N'汤旺河区', N'230712'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1167, N'黑龙江省', N'伊春市', N'带岭区', N'230713'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1168, N'黑龙江省', N'伊春市', N'乌伊岭区', N'230714'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1169, N'黑龙江省', N'伊春市', N'红星区', N'230715'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1170, N'黑龙江省', N'伊春市', N'上甘岭区', N'230716'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1171, N'黑龙江省', N'伊春市', N'铁力县', N'230721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1172, N'黑龙江省', N'伊春市', N'嘉荫县', N'230722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1173, N'黑龙江省', N'伊春市', N'铁力市', N'230781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1174, N'黑龙江省', N'佳木斯市', N'市辖区', N'230801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1175, N'黑龙江省', N'佳木斯市', N'永红区', N'230802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1176, N'黑龙江省', N'佳木斯市', N'向阳区', N'230803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1177, N'黑龙江省', N'佳木斯市', N'前进区', N'230804'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1178, N'黑龙江省', N'佳木斯市', N'东风区', N'230805'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1179, N'黑龙江省', N'佳木斯市', N'郊区', N'230811'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1180, N'黑龙江省', N'佳木斯市', N'富锦县', N'230821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1181, N'黑龙江省', N'佳木斯市', N'桦南县', N'230822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1182, N'黑龙江省', N'佳木斯市', N'依兰县', N'230823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1183, N'黑龙江省', N'佳木斯市', N'集贤县', N'230825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1184, N'黑龙江省', N'佳木斯市', N'桦川县', N'230826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1185, N'黑龙江省', N'佳木斯市', N'宝清县', N'230827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1186, N'黑龙江省', N'佳木斯市', N'汤原县', N'230828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1187, N'黑龙江省', N'佳木斯市', N'绥滨县', N'230829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1188, N'黑龙江省', N'佳木斯市', N'萝北县', N'230830'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1189, N'黑龙江省', N'佳木斯市', N'同江县', N'230831'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1190, N'黑龙江省', N'佳木斯市', N'饶河县', N'230832'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1191, N'黑龙江省', N'佳木斯市', N'抚远县', N'230833'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1192, N'黑龙江省', N'佳木斯市', N'友谊县', N'230834'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1193, N'黑龙江省', N'佳木斯市', N'同江市', N'230881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1194, N'黑龙江省', N'佳木斯市', N'富锦市', N'230882'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1195, N'黑龙江省', N'七台河市', N'市辖区', N'230901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1196, N'黑龙江省', N'七台河市', N'新兴区', N'230902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1197, N'黑龙江省', N'七台河市', N'桃山区', N'230903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1198, N'黑龙江省', N'七台河市', N'茄子河区', N'230904'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1199, N'黑龙江省', N'七台河市', N'勃利县', N'230921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1200, N'黑龙江省', N'牡丹江市', N'市辖区', N'231001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1201, N'黑龙江省', N'牡丹江市', N'东安区', N'231002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1202, N'黑龙江省', N'牡丹江市', N'阳明区', N'231003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1203, N'黑龙江省', N'牡丹江市', N'爱民区', N'231004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1204, N'黑龙江省', N'牡丹江市', N'西安区', N'231005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1205, N'黑龙江省', N'牡丹江市', N'郊区', N'231011'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1206, N'黑龙江省', N'牡丹江市', N'绥芬河市', N'231020'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1207, N'黑龙江省', N'牡丹江市', N'宁安县', N'231021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1208, N'黑龙江省', N'牡丹江市', N'海林县', N'231022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1209, N'黑龙江省', N'牡丹江市', N'穆棱县', N'231023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1210, N'黑龙江省', N'牡丹江市', N'东宁县', N'231024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1211, N'黑龙江省', N'牡丹江市', N'林口县', N'231025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1212, N'黑龙江省', N'牡丹江市', N'密山县', N'231026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1213, N'黑龙江省', N'牡丹江市', N'虎林县', N'231027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1214, N'黑龙江省', N'牡丹江市', N'绥芬河市', N'231081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1215, N'黑龙江省', N'牡丹江市', N'密山市', N'231082'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1216, N'黑龙江省', N'牡丹江市', N'海林市', N'231083'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1217, N'黑龙江省', N'牡丹江市', N'宁安市', N'231084'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1218, N'黑龙江省', N'牡丹江市', N'穆棱市', N'231085'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1219, N'黑龙江省', N'黑河市', N'市辖区', N'231101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1220, N'黑龙江省', N'黑河市', N'爱辉区', N'231102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1221, N'黑龙江省', N'黑河市', N'嫩江县', N'231121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1222, N'黑龙江省', N'黑河市', N'逊克县', N'231123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1223, N'黑龙江省', N'黑河市', N'孙吴县', N'231124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1224, N'黑龙江省', N'黑河市', N'北安市', N'231181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1225, N'黑龙江省', N'黑河市', N'五大连池市', N'231182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1226, N'黑龙江省', N'绥化市', N'市辖区', N'231201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1227, N'黑龙江省', N'绥化市', N'北林区', N'231202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1228, N'黑龙江省', N'绥化市', N'望奎县', N'231221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1229, N'黑龙江省', N'绥化市', N'兰西县', N'231222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1230, N'黑龙江省', N'绥化市', N'青冈县', N'231223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1231, N'黑龙江省', N'绥化市', N'庆安县', N'231224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1232, N'黑龙江省', N'绥化市', N'明水县', N'231225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1233, N'黑龙江省', N'绥化市', N'绥棱县', N'231226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1234, N'黑龙江省', N'绥化市', N'安达市', N'231281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1235, N'黑龙江省', N'绥化市', N'肇东市', N'231282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1236, N'黑龙江省', N'绥化市', N'海伦市', N'231283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1237, N'黑龙江省', N'松花江地区', N'双城市', N'232101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1238, N'黑龙江省', N'松花江地区', N'尚志市', N'232102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1239, N'黑龙江省', N'松花江地区', N'五常市', N'232103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1240, N'黑龙江省', N'松花江地区', N'阿城市', N'232121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1241, N'黑龙江省', N'松花江地区', N'宾县', N'232122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1242, N'黑龙江省', N'松花江地区', N'呼兰县', N'232123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1243, N'黑龙江省', N'松花江地区', N'双城市', N'232124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1244, N'黑龙江省', N'松花江地区', N'五常市', N'232125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1245, N'黑龙江省', N'松花江地区', N'巴彦县', N'232126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1246, N'黑龙江省', N'松花江地区', N'木兰县', N'232127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1247, N'黑龙江省', N'松花江地区', N'通河县', N'232128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1248, N'黑龙江省', N'松花江地区', N'尚志市', N'232129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1249, N'黑龙江省', N'松花江地区', N'方正县', N'232130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1250, N'黑龙江省', N'松花江地区', N'延寿县', N'232131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1251, N'黑龙江省', N'绥化地区', N'绥化市', N'232301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1252, N'黑龙江省', N'绥化地区', N'安达市', N'232302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1253, N'黑龙江省', N'绥化地区', N'肇东市', N'232303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1254, N'黑龙江省', N'绥化地区', N'海伦市', N'232304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1255, N'黑龙江省', N'绥化地区', N'海伦县', N'232321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1256, N'黑龙江省', N'绥化地区', N'肇东县', N'232322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1257, N'黑龙江省', N'绥化地区', N'绥化县', N'232323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1258, N'黑龙江省', N'绥化地区', N'望奎县', N'232324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1259, N'黑龙江省', N'绥化地区', N'兰西县', N'232325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1260, N'黑龙江省', N'绥化地区', N'青冈县', N'232326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1261, N'黑龙江省', N'绥化地区', N'安达县', N'232327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1262, N'黑龙江省', N'绥化地区', N'肇源县', N'232328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1263, N'黑龙江省', N'绥化地区', N'肇州县', N'232329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1264, N'黑龙江省', N'绥化地区', N'庆安县', N'232330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1265, N'黑龙江省', N'绥化地区', N'明水县', N'232331'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1266, N'黑龙江省', N'绥化地区', N'绥棱县', N'232332'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1267, N'黑龙江省', N'佳木斯地区', N'佳木斯市', N'232401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1268, N'黑龙江省', N'佳木斯地区', N'富锦县', N'232421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1269, N'黑龙江省', N'佳木斯地区', N'桦南县', N'232422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1270, N'黑龙江省', N'佳木斯地区', N'依兰县', N'232423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1271, N'黑龙江省', N'佳木斯地区', N'勃利县', N'232424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1272, N'黑龙江省', N'佳木斯地区', N'集贤县', N'232425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1273, N'黑龙江省', N'佳木斯地区', N'桦川县', N'232426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1274, N'黑龙江省', N'佳木斯地区', N'宝清县', N'232427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1275, N'黑龙江省', N'佳木斯地区', N'汤原县', N'232428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1276, N'黑龙江省', N'佳木斯地区', N'绥滨县', N'232429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1277, N'黑龙江省', N'佳木斯地区', N'萝北县', N'232430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1278, N'黑龙江省', N'佳木斯地区', N'同江县', N'232431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1279, N'黑龙江省', N'佳木斯地区', N'饶河县', N'232432'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1280, N'黑龙江省', N'佳木斯地区', N'抚远县', N'232433'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1281, N'黑龙江省', N'牡丹江地区', N'牡丹江市', N'232501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1282, N'黑龙江省', N'牡丹江地区', N'绥芬河市', N'232502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1283, N'黑龙江省', N'牡丹江地区', N'宁安县', N'232521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1284, N'黑龙江省', N'牡丹江地区', N'海林县', N'232522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1285, N'黑龙江省', N'牡丹江地区', N'穆棱县', N'232523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1286, N'黑龙江省', N'牡丹江地区', N'东宁县', N'232524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1287, N'黑龙江省', N'牡丹江地区', N'林口县', N'232525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1288, N'黑龙江省', N'牡丹江地区', N'鸡东县', N'232526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1289, N'黑龙江省', N'牡丹江地区', N'密山县', N'232527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1290, N'黑龙江省', N'牡丹江地区', N'虎林县', N'232528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1291, N'黑龙江省', N'黑河地区', N'黑河市', N'232601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1292, N'黑龙江省', N'黑河地区', N'北安市', N'232602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1293, N'黑龙江省', N'黑河地区', N'五大连池市', N'232603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1294, N'黑龙江省', N'黑河地区', N'北安县', N'232621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1295, N'黑龙江省', N'黑河地区', N'嫩江县', N'232622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1296, N'黑龙江省', N'黑河地区', N'德都县', N'232623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1297, N'黑龙江省', N'黑河地区', N'逊克县', N'232625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1298, N'黑龙江省', N'黑河地区', N'孙吴县', N'232626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1299, N'黑龙江省', N'大兴安岭地区', N'加格达奇区', N'232701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1300, N'黑龙江省', N'大兴安岭地区', N'呼玛县', N'232721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1301, N'黑龙江省', N'大兴安岭地区', N'塔河县', N'232722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1302, N'黑龙江省', N'大兴安岭地区', N'漠河县', N'232723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1303, N'黑龙江省', N'大兴安岭地区', N'漠河县', N'232724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1304, N'黑龙江省', NULL, N'绥芬河市', N'239001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1305, N'黑龙江省', NULL, N'阿城市', N'239002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1306, N'黑龙江省', NULL, N'同江市', N'239003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1307, N'黑龙江省', NULL, N'富锦市', N'239004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1308, N'黑龙江省', NULL, N'铁力市', N'239005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1309, N'黑龙江省', NULL, N'密山市', N'239006'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1310, N'上海市', NULL, N'黄浦区', N'310101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1311, N'上海市', NULL, N'南市区', N'310102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1312, N'上海市', NULL, N'卢湾区', N'310103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1313, N'上海市', NULL, N'徐汇区', N'310104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1314, N'上海市', NULL, N'长宁区', N'310105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1315, N'上海市', NULL, N'静安区', N'310106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1316, N'上海市', NULL, N'普陀区', N'310107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1317, N'上海市', NULL, N'闸北区', N'310108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1318, N'上海市', NULL, N'虹口区', N'310109'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1319, N'上海市', NULL, N'杨浦区', N'310110'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1320, N'上海市', NULL, N'吴凇区', N'310111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1321, N'上海市', NULL, N'闵行区', N'310112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1322, N'上海市', NULL, N'宝山区', N'310113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1323, N'上海市', NULL, N'嘉定区', N'310114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1324, N'上海市', NULL, N'浦东新区', N'310115'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1325, N'上海市', NULL, N'金山区', N'310116'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1326, N'上海市', NULL, N'松江区', N'310117'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1327, N'上海市', NULL, N'青浦区', N'310118'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1328, N'上海市', NULL, N'南汇区', N'310119'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1329, N'上海市', NULL, N'奉贤区', N'310120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1330, N'上海市', NULL, N'上海县', N'310221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1331, N'上海市', NULL, N'嘉定县', N'310222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1332, N'上海市', NULL, N'宝山县', N'310223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1333, N'上海市', NULL, N'川沙县', N'310224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1334, N'上海市', NULL, N'南汇县', N'310225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1335, N'上海市', NULL, N'奉贤县', N'310226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1336, N'上海市', NULL, N'松江县', N'310227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1337, N'上海市', NULL, N'金山县', N'310228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1338, N'上海市', NULL, N'青浦县', N'310229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1339, N'上海市', NULL, N'崇明县', N'310230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1340, N'江苏省', N'南京市', N'市辖区', N'320101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1341, N'江苏省', N'南京市', N'玄武区', N'320102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1342, N'江苏省', N'南京市', N'白下区', N'320103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1343, N'江苏省', N'南京市', N'秦淮区', N'320104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1344, N'江苏省', N'南京市', N'建邺区', N'320105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1345, N'江苏省', N'南京市', N'鼓楼区', N'320106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1346, N'江苏省', N'南京市', N'下关区', N'320107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1347, N'江苏省', N'南京市', N'浦口区', N'320111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1348, N'江苏省', N'南京市', N'大厂区', N'320112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1349, N'江苏省', N'南京市', N'栖霞区', N'320113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1350, N'江苏省', N'南京市', N'雨花台区', N'320114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1351, N'江苏省', N'南京市', N'江宁区', N'320115'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1352, N'江苏省', N'南京市', N'六合区', N'320116'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1353, N'江苏省', N'南京市', N'市区', N'320120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1354, N'江苏省', N'南京市', N'江宁县', N'320121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1355, N'江苏省', N'南京市', N'江浦县', N'320122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1356, N'江苏省', N'南京市', N'六合县', N'320123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1357, N'江苏省', N'南京市', N'溧水县', N'320124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1358, N'江苏省', N'南京市', N'高淳县', N'320125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1359, N'江苏省', N'南京市', N'江都县', N'320126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1360, N'江苏省', N'无锡市', N'市辖区', N'320201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1361, N'江苏省', N'无锡市', N'崇安区', N'320202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1362, N'江苏省', N'无锡市', N'南长区', N'320203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1363, N'江苏省', N'无锡市', N'北塘区', N'320204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1364, N'江苏省', N'无锡市', N'锡山区', N'320205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1365, N'江苏省', N'无锡市', N'惠山区', N'320206'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1366, N'江苏省', N'无锡市', N'郊区', N'320211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1367, N'江苏省', N'无锡市', N'马山区', N'320212'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1368, N'江苏省', N'无锡市', N'江阴县', N'320219'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1369, N'江苏省', N'无锡市', N'江阴县', N'320221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1370, N'江苏省', N'无锡市', N'无锡县', N'320222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1371, N'江苏省', N'无锡市', N'宜兴县', N'320223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1372, N'江苏省', N'无锡市', N'江阴市', N'320281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1373, N'江苏省', N'无锡市', N'宜兴市', N'320282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1374, N'江苏省', N'无锡市', N'锡山市', N'320283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1375, N'江苏省', N'徐州市', N'市辖区', N'320301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1376, N'江苏省', N'徐州市', N'鼓楼区', N'320302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1, N'北京市', NULL, N'东城区', N'110101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2, N'北京市', NULL, N'西城区', N'110102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3, N'北京市', NULL, N'崇文区', N'110103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4, N'北京市', NULL, N'宣武区', N'110104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5, N'北京市', NULL, N'朝阳区', N'110105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (6, N'北京市', NULL, N'丰台区', N'110106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (7, N'北京市', NULL, N'石景山区', N'110107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (8, N'北京市', NULL, N'海淀区', N'110108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (9, N'北京市', NULL, N'门头沟区', N'110109'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (10, N'北京市', NULL, N'燕山区', N'110110'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (11, N'北京市', NULL, N'房山区', N'110111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (12, N'北京市', NULL, N'通州区', N'110112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (13, N'北京市', NULL, N'顺义区', N'110113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (14, N'北京市', NULL, N'昌平区', N'110114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (15, N'北京市', NULL, N'大兴区', N'110115'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (16, N'北京市', NULL, N'怀柔区', N'110116'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (17, N'北京市', NULL, N'平谷区', N'110117'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (18, N'北京市', NULL, N'昌平县', N'110221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (19, N'北京市', NULL, N'顺义县', N'110222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (20, N'北京市', NULL, N'通县', N'110223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (21, N'北京市', NULL, N'大兴县', N'110224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (22, N'北京市', NULL, N'房山县', N'110225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (23, N'北京市', NULL, N'平谷县', N'110226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (24, N'北京市', NULL, N'怀柔县', N'110227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (25, N'北京市', NULL, N'密云县', N'110228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (26, N'北京市', NULL, N'延庆县', N'110229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (27, N'天津市', NULL, N'和平区', N'120101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (28, N'天津市', NULL, N'河东区', N'120102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (29, N'天津市', NULL, N'河西区', N'120103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (30, N'天津市', NULL, N'南开区', N'120104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (31, N'天津市', NULL, N'河北区', N'120105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (32, N'天津市', NULL, N'红桥区', N'120106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (33, N'天津市', NULL, N'塘沽区', N'120107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (34, N'天津市', NULL, N'汉沽区', N'120108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (35, N'天津市', NULL, N'大港区', N'120109'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (36, N'天津市', NULL, N'东丽区', N'120110'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (37, N'天津市', NULL, N'西青区', N'120111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (38, N'天津市', NULL, N'津南区', N'120112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (39, N'天津市', NULL, N'北辰区', N'120113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (40, N'天津市', NULL, N'武清区', N'120114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (41, N'天津市', NULL, N'宝坻区', N'120115'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (42, N'天津市', NULL, N'宁河县', N'120221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (43, N'天津市', NULL, N'武清县', N'120222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (44, N'天津市', NULL, N'静海县', N'120223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (45, N'天津市', NULL, N'宝坻县', N'120224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (46, N'天津市', NULL, N'蓟县', N'120225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (47, N'河北省', N'石家庄市', N'市辖区', N'130101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (48, N'河北省', N'石家庄市', N'长安区', N'130102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (49, N'河北省', N'石家庄市', N'桥东区', N'130103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (50, N'河北省', N'石家庄市', N'桥西区', N'130104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (51, N'河北省', N'石家庄市', N'新华区', N'130105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (52, N'河北省', N'石家庄市', N'郊区', N'130106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (53, N'河北省', N'石家庄市', N'井陉矿区', N'130107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (54, N'河北省', N'石家庄市', N'裕华区', N'130108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (55, N'河北省', N'石家庄市', N'井陉县', N'130121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (56, N'河北省', N'石家庄市', N'获鹿县', N'130122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (57, N'河北省', N'石家庄市', N'正定县', N'130123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (58, N'河北省', N'石家庄市', N'栾城县', N'130124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (59, N'河北省', N'石家庄市', N'行唐县', N'130125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (60, N'河北省', N'石家庄市', N'灵寿县', N'130126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (61, N'河北省', N'石家庄市', N'高邑县', N'130127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (62, N'河北省', N'石家庄市', N'深泽县', N'130128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (63, N'河北省', N'石家庄市', N'赞皇县', N'130129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (64, N'河北省', N'石家庄市', N'无极县', N'130130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (65, N'河北省', N'石家庄市', N'平山县', N'130131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (66, N'河北省', N'石家庄市', N'元氏县', N'130132'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (67, N'河北省', N'石家庄市', N'赵县', N'130133'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (68, N'河北省', N'石家庄市', N'辛集市', N'130181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (69, N'河北省', N'石家庄市', N'藁城市', N'130182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (70, N'河北省', N'石家庄市', N'晋州市', N'130183'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (71, N'河北省', N'石家庄市', N'新乐市', N'130184'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (72, N'河北省', N'石家庄市', N'鹿泉市', N'130185'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (73, N'河北省', N'唐山市', N'市辖区', N'130201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (74, N'河北省', N'唐山市', N'路南区', N'130202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (75, N'河北省', N'唐山市', N'路北区', N'130203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (76, N'河北省', N'唐山市', N'古冶区', N'130204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (77, N'河北省', N'唐山市', N'开平区', N'130205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (78, N'河北省', N'唐山市', N'新区', N'130206'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (79, N'河北省', N'唐山市', N'丰南区', N'130207'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (80, N'河北省', N'唐山市', N'丰润区', N'130208'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (81, N'河北省', N'唐山市', N'丰润县', N'130221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (82, N'河北省', N'唐山市', N'丰南县', N'130222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (83, N'河北省', N'唐山市', N'滦县', N'130223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (84, N'河北省', N'唐山市', N'滦南县', N'130224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (85, N'河北省', N'唐山市', N'乐亭县', N'130225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (86, N'河北省', N'唐山市', N'迁安县', N'130226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (87, N'河北省', N'唐山市', N'迁西县', N'130227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (88, N'河北省', N'唐山市', N'遵化县', N'130228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (89, N'河北省', N'唐山市', N'玉田县', N'130229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (90, N'河北省', N'唐山市', N'唐海县', N'130230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (91, N'河北省', N'唐山市', N'遵化市', N'130281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (92, N'河北省', N'唐山市', N'丰南市', N'130282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (93, N'河北省', N'唐山市', N'迁安市', N'130283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (94, N'河北省', N'秦皇岛市', N'市辖区', N'130301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (95, N'河北省', N'秦皇岛市', N'海港区', N'130302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (96, N'河北省', N'秦皇岛市', N'山海关区', N'130303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (97, N'河北省', N'秦皇岛市', N'北戴河区', N'130304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (98, N'河北省', N'秦皇岛市', N'青龙满族自治县', N'130321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (99, N'河北省', N'秦皇岛市', N'昌黎县', N'130322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (100, N'河北省', N'秦皇岛市', N'抚宁县', N'130323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (101, N'河北省', N'秦皇岛市', N'卢龙县', N'130324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (102, N'河北省', N'邯郸市', N'市辖区', N'130401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (103, N'河北省', N'邯郸市', N'邯山区', N'130402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (104, N'河北省', N'邯郸市', N'丛台区', N'130403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (105, N'河北省', N'邯郸市', N'复兴区', N'130404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (106, N'河北省', N'邯郸市', N'郊区', N'130405'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (107, N'河北省', N'邯郸市', N'峰峰矿区', N'130406'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (108, N'河北省', N'邯郸市', N'邯郸县', N'130421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (109, N'河北省', N'邯郸市', N'武安县', N'130422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (110, N'河北省', N'邯郸市', N'临漳县', N'130423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (111, N'河北省', N'邯郸市', N'成安县', N'130424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (112, N'河北省', N'邯郸市', N'大名县', N'130425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (113, N'河北省', N'邯郸市', N'涉县', N'130426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (114, N'河北省', N'邯郸市', N'磁县', N'130427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (115, N'河北省', N'邯郸市', N'肥乡县', N'130428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (116, N'河北省', N'邯郸市', N'永年县', N'130429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (117, N'河北省', N'邯郸市', N'邱县', N'130430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (118, N'河北省', N'邯郸市', N'鸡泽县', N'130431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (119, N'河北省', N'邯郸市', N'广平县', N'130432'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (120, N'河北省', N'邯郸市', N'馆陶县', N'130433'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (121, N'河北省', N'邯郸市', N'魏县', N'130434'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (122, N'河北省', N'邯郸市', N'曲周县', N'130435'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (123, N'河北省', N'邯郸市', N'武安市', N'130481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (124, N'河北省', N'邢台市', N'市辖区', N'130501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (125, N'河北省', N'邢台市', N'桥东区', N'130502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (126, N'河北省', N'邢台市', N'桥西区', N'130503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (127, N'河北省', N'邢台市', N'邢台县', N'130521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (128, N'河北省', N'邢台市', N'临城县', N'130522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (129, N'河北省', N'邢台市', N'内丘县', N'130523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (130, N'河北省', N'邢台市', N'柏乡县', N'130524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (131, N'河北省', N'邢台市', N'隆尧县', N'130525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (132, N'河北省', N'邢台市', N'任县', N'130526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (133, N'河北省', N'邢台市', N'南和县', N'130527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (134, N'河北省', N'邢台市', N'宁晋县', N'130528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (135, N'河北省', N'邢台市', N'巨鹿县', N'130529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (136, N'河北省', N'邢台市', N'新河县', N'130530'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (137, N'河北省', N'邢台市', N'广宗县', N'130531'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (138, N'河北省', N'邢台市', N'平乡县', N'130532'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (139, N'河北省', N'邢台市', N'威县', N'130533'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (140, N'河北省', N'邢台市', N'清河县', N'130534'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (141, N'河北省', N'邢台市', N'临西县', N'130535'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (142, N'河北省', N'邢台市', N'南宫市', N'130581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (143, N'河北省', N'邢台市', N'沙河市', N'130582'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (144, N'河北省', N'保定市', N'市辖区', N'130601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (145, N'河北省', N'保定市', N'新市区', N'130602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (146, N'河北省', N'保定市', N'北市区', N'130603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (147, N'河北省', N'保定市', N'南市区', N'130604'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (148, N'河北省', N'保定市', N'满城县', N'130621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (149, N'河北省', N'保定市', N'清苑县', N'130622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (150, N'河北省', N'保定市', N'涞水县', N'130623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (151, N'河北省', N'保定市', N'阜平县', N'130624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (152, N'河北省', N'保定市', N'徐水县', N'130625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (153, N'河北省', N'保定市', N'定兴县', N'130626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (154, N'河北省', N'保定市', N'唐县', N'130627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (155, N'河北省', N'保定市', N'高阳县', N'130628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (156, N'河北省', N'保定市', N'容城县', N'130629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (157, N'河北省', N'保定市', N'涞源县', N'130630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (158, N'河北省', N'保定市', N'望都县', N'130631'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (159, N'河北省', N'保定市', N'安新县', N'130632'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (160, N'河北省', N'保定市', N'易县', N'130633'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (161, N'河北省', N'保定市', N'曲阳县', N'130634'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (162, N'河北省', N'保定市', N'蠡县', N'130635'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (163, N'河北省', N'保定市', N'顺平县', N'130636'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (164, N'河北省', N'保定市', N'博野县', N'130637'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (165, N'河北省', N'保定市', N'雄县', N'130638'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (166, N'河北省', N'保定市', N'涿州市', N'130681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (167, N'河北省', N'保定市', N'定州市', N'130682'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (168, N'河北省', N'保定市', N'安国市', N'130683'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (169, N'河北省', N'保定市', N'高碑店市', N'130684'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (170, N'河北省', N'张家口市', N'市辖区', N'130701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (171, N'河北省', N'张家口市', N'桥东区', N'130702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (172, N'河北省', N'张家口市', N'桥西区', N'130703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (173, N'河北省', N'张家口市', N'宣化区', N'130705'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (174, N'河北省', N'张家口市', N'下花园区', N'130706'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (175, N'河北省', N'张家口市', N'宣化县', N'130721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (176, N'河北省', N'张家口市', N'张北县', N'130722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (177, N'河北省', N'张家口市', N'康保县', N'130723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (178, N'河北省', N'张家口市', N'沽源县', N'130724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (179, N'河北省', N'张家口市', N'尚义县', N'130725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (180, N'河北省', N'张家口市', N'蔚县', N'130726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (181, N'河北省', N'张家口市', N'阳原县', N'130727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (182, N'河北省', N'张家口市', N'怀安县', N'130728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (183, N'河北省', N'张家口市', N'万全县', N'130729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (184, N'河北省', N'张家口市', N'怀来县', N'130730'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (185, N'河北省', N'张家口市', N'涿鹿县', N'130731'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (186, N'河北省', N'张家口市', N'赤城县', N'130732'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (187, N'河北省', N'张家口市', N'崇礼县', N'130733'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (188, N'河北省', N'承德市', N'市辖区', N'130801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (189, N'河北省', N'承德市', N'双桥区', N'130802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (190, N'河北省', N'承德市', N'双滦区', N'130803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (191, N'河北省', N'承德市', N'鹰手营子矿区', N'130804'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (192, N'河北省', N'承德市', N'承德县', N'130821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (193, N'河北省', N'承德市', N'兴隆县', N'130822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (194, N'河北省', N'承德市', N'平泉县', N'130823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (195, N'河北省', N'承德市', N'滦平县', N'130824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (196, N'河北省', N'承德市', N'隆化县', N'130825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (197, N'河北省', N'承德市', N'丰宁满族自治县', N'130826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (198, N'河北省', N'承德市', N'宽城满族自治县', N'130827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (199, N'河北省', N'承德市', N'围场满族蒙古族自治县', N'130828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (200, N'河北省', N'沧州市', N'市辖区', N'130901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (201, N'河北省', N'沧州市', N'新华区', N'130902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (202, N'河北省', N'沧州市', N'运河区', N'130903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (203, N'河北省', N'沧州市', N'郊区', N'130904'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (204, N'河北省', N'沧州市', N'沧县', N'130921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (205, N'河北省', N'沧州市', N'青县', N'130922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (206, N'河北省', N'沧州市', N'东光县', N'130923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (207, N'河北省', N'沧州市', N'海兴县', N'130924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (208, N'河北省', N'沧州市', N'盐山县', N'130925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (209, N'河北省', N'沧州市', N'肃宁县', N'130926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (210, N'河北省', N'沧州市', N'南皮县', N'130927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (211, N'河北省', N'沧州市', N'吴桥县', N'130928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (212, N'河北省', N'沧州市', N'献县', N'130929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (213, N'河北省', N'沧州市', N'孟村回族自治县', N'130930'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (214, N'河北省', N'沧州市', N'泊头市', N'130981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (215, N'河北省', N'沧州市', N'任丘市', N'130982'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (216, N'河北省', N'沧州市', N'黄骅市', N'130983'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (217, N'河北省', N'沧州市', N'河间市', N'130984'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (218, N'河北省', N'廊坊市', N'市辖区', N'131001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (219, N'河北省', N'廊坊市', N'安次区', N'131002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (220, N'河北省', N'廊坊市', N'广阳区', N'131003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (221, N'河北省', N'廊坊市', N'三河县', N'131021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (222, N'河北省', N'廊坊市', N'固安县', N'131022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (223, N'河北省', N'廊坊市', N'永清县', N'131023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (224, N'河北省', N'廊坊市', N'香河县', N'131024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (225, N'河北省', N'廊坊市', N'大城县', N'131025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (226, N'河北省', N'廊坊市', N'文安县', N'131026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (227, N'河北省', N'廊坊市', N'霸县', N'131027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (228, N'河北省', N'廊坊市', N'大厂回族自治县', N'131028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (229, N'河北省', N'廊坊市', N'霸州市', N'131081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (230, N'河北省', N'廊坊市', N'三河市', N'131082'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (231, N'河北省', N'衡水市', N'市辖区', N'131101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (232, N'河北省', N'衡水市', N'桃城区', N'131102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (233, N'河北省', N'衡水市', N'枣强县', N'131121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (234, N'河北省', N'衡水市', N'武邑县', N'131122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (235, N'河北省', N'衡水市', N'武强县', N'131123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (236, N'河北省', N'衡水市', N'饶阳县', N'131124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (237, N'河北省', N'衡水市', N'安平县', N'131125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (238, N'河北省', N'衡水市', N'故城县', N'131126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (239, N'河北省', N'衡水市', N'景县', N'131127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (240, N'河北省', N'衡水市', N'阜城县', N'131128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (241, N'河北省', N'衡水市', N'冀州市', N'131181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (242, N'河北省', N'衡水市', N'深州市', N'131182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (243, N'河北省', N'邯郸地区', N'邯郸市', N'132101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (244, N'河北省', N'邯郸地区', N'大名县', N'132121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (245, N'河北省', N'邯郸地区', N'魏县', N'132122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (246, N'河北省', N'邯郸地区', N'曲周县', N'132123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (247, N'河北省', N'邯郸地区', N'丘县', N'132124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (248, N'河北省', N'邯郸地区', N'鸡泽县', N'132125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (249, N'河北省', N'邯郸地区', N'肥乡县', N'132126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (250, N'河北省', N'邯郸地区', N'广平县', N'132127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (251, N'河北省', N'邯郸地区', N'成安县', N'132128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (252, N'河北省', N'邯郸地区', N'临漳县', N'132129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (253, N'河北省', N'邯郸地区', N'磁县', N'132130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (254, N'河北省', N'邯郸地区', N'武安县', N'132131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (255, N'河北省', N'邯郸地区', N'涉县', N'132132'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (256, N'河北省', N'邯郸地区', N'永年县', N'132133'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (257, N'河北省', N'邯郸地区', N'邯郸县', N'132134'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (258, N'河北省', N'邯郸地区', N'馆陶县', N'132135'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (259, N'河北省', N'邢台地区', N'南宫市', N'132201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (260, N'河北省', N'邢台地区', N'沙河市', N'132202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (261, N'河北省', N'邢台地区', N'邢台县', N'132221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (262, N'河北省', N'邢台地区', N'沙河县', N'132222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (263, N'河北省', N'邢台地区', N'临城县', N'132223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (264, N'河北省', N'邢台地区', N'内丘县', N'132224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (265, N'河北省', N'邢台地区', N'柏乡县', N'132225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (266, N'河北省', N'邢台地区', N'隆尧县', N'132226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (267, N'河北省', N'邢台地区', N'任县', N'132227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (268, N'河北省', N'邢台地区', N'南和县', N'132228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (269, N'河北省', N'邢台地区', N'宁晋县', N'132229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (270, N'河北省', N'邢台地区', N'南宫县', N'132230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (271, N'河北省', N'邢台地区', N'巨鹿县', N'132231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (272, N'河北省', N'邢台地区', N'新河县', N'132232'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (273, N'河北省', N'邢台地区', N'广宗县', N'132233'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (274, N'河北省', N'邢台地区', N'平乡县', N'132234'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (275, N'河北省', N'邢台地区', N'威县', N'132235'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (276, N'河北省', N'邢台地区', N'清河县', N'132236'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (277, N'河北省', N'邢台地区', N'临西县', N'132237'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (278, N'河北省', N'石家庄市', N'辛集市', N'132301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (279, N'河北省', N'石家庄市', N'藁城市', N'132302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (280, N'河北省', N'石家庄市', N'束鹿县', N'132321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (281, N'河北省', N'石家庄市', N'晋县', N'132322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (282, N'河北省', N'石家庄市', N'深泽县', N'132323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (283, N'河北省', N'石家庄市', N'无极县', N'132324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (284, N'河北省', N'石家庄市', N'藁城县', N'132325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (285, N'河北省', N'石家庄市', N'赵县', N'132326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (286, N'河北省', N'石家庄市', N'栾城县', N'132327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (287, N'河北省', N'石家庄市', N'正定县', N'132328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (288, N'河北省', N'石家庄市', N'新乐县', N'132329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (289, N'河北省', N'石家庄市', N'高邑县', N'132330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (290, N'河北省', N'石家庄市', N'元氏县', N'132331'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (291, N'河北省', N'石家庄市', N'赞皇县', N'132332'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (292, N'河北省', N'石家庄市', N'井陉县', N'132333'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (293, N'河北省', N'石家庄市', N'获鹿县', N'132334'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (294, N'河北省', N'石家庄市', N'平山县', N'132335'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (295, N'河北省', N'石家庄市', N'灵寿县', N'132336'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (296, N'河北省', N'石家庄市', N'行唐县', N'132337'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (297, N'河北省', N'保定地区', N'定州市', N'132401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (298, N'河北省', N'保定地区', N'涿州市', N'132402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (299, N'河北省', N'保定地区', N'安国市', N'132403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (300, N'河北省', N'保定地区', N'高碑店市', N'132404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (301, N'河北省', N'保定地区', N'易县', N'132421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (302, N'河北省', N'保定地区', N'满城县', N'132422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (303, N'河北省', N'保定地区', N'徐水县', N'132423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (304, N'河北省', N'保定地区', N'涞源县', N'132424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (305, N'河北省', N'保定地区', N'定兴县', N'132425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (306, N'河北省', N'保定地区', N'完县', N'132426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (307, N'河北省', N'保定地区', N'唐县', N'132427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (308, N'河北省', N'保定地区', N'望都县', N'132428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (309, N'河北省', N'保定地区', N'涞水县', N'132429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (310, N'河北省', N'保定地区', N'涿县', N'132430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (311, N'河北省', N'保定地区', N'清苑县', N'132431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (312, N'河北省', N'保定地区', N'高阳县', N'132432'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (313, N'河北省', N'保定地区', N'安新县', N'132433'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (314, N'河北省', N'保定地区', N'雄县', N'132434'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (315, N'河北省', N'保定地区', N'容城县', N'132435'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (316, N'河北省', N'保定地区', N'新城县', N'132436'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (317, N'河北省', N'保定地区', N'曲阳县', N'132437'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (318, N'河北省', N'保定地区', N'阜平县', N'132438'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (319, N'河北省', N'保定地区', N'定县', N'132439'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (320, N'河北省', N'保定地区', N'安国县', N'132440'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (321, N'河北省', N'保定地区', N'博野县', N'132441'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (322, N'河北省', N'保定地区', N'蠡县', N'132442'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (323, N'河北省', N'张家口地区', N'张家口市', N'132501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (324, N'河北省', N'张家口地区', N'张北市', N'132521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (325, N'河北省', N'张家口地区', N'康保县', N'132522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (326, N'河北省', N'张家口地区', N'沽源县', N'132523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (327, N'河北省', N'张家口地区', N'尚义县', N'132524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (328, N'河北省', N'张家口地区', N'蔚县', N'132525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (329, N'河北省', N'张家口地区', N'阳原县', N'132526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (330, N'河北省', N'张家口地区', N'怀安县', N'132527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (331, N'河北省', N'张家口地区', N'万全县', N'132528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (332, N'河北省', N'张家口地区', N'怀来县', N'132529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (333, N'河北省', N'张家口地区', N'涿鹿县', N'132530'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (334, N'河北省', N'张家口地区', N'宣化县', N'132531'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (335, N'河北省', N'张家口地区', N'赤城县', N'132532'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (336, N'河北省', N'张家口地区', N'崇礼县', N'132533'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (337, N'河北省', N'承德地区', N'承德市', N'132601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (338, N'河北省', N'承德地区', N'青龙县', N'132621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (339, N'河北省', N'承德地区', N'宽城满族自治县', N'132622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (340, N'河北省', N'承德地区', N'兴隆县', N'132623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (341, N'河北省', N'承德地区', N'平泉县', N'132624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (342, N'河北省', N'承德地区', N'承德县', N'132625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (343, N'河北省', N'承德地区', N'滦平县', N'132626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (344, N'河北省', N'承德地区', N'丰宁满族自治县', N'132627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (345, N'河北省', N'承德地区', N'隆化县', N'132628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (346, N'河北省', N'承德地区', N'围场满族蒙古族自治县', N'132629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (347, N'河北省', N'廊坊地区', N'廊坊市', N'132801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (348, N'河北省', N'廊坊地区', N'三河县', N'132821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (349, N'河北省', N'廊坊地区', N'大厂回族自治县', N'132822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (350, N'河北省', N'廊坊地区', N'香河县', N'132823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (351, N'河北省', N'廊坊地区', N'永清县', N'132825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (352, N'河北省', N'廊坊地区', N'固安县', N'132826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (353, N'河北省', N'廊坊地区', N'霸县', N'132827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (354, N'河北省', N'廊坊地区', N'文安县', N'132828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (355, N'河北省', N'廊坊地区', N'大城县', N'132829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (356, N'河北省', N'沧州地区', N'沧州市', N'132901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (357, N'河北省', N'沧州地区', N'泊头市', N'132902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (358, N'河北省', N'沧州地区', N'任丘市', N'132903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (359, N'河北省', N'沧州地区', N'黄骅市', N'132904'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (360, N'河北省', N'沧州地区', N'河间市', N'132905'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (361, N'河北省', N'沧州地区', N'沧县', N'132921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (362, N'河北省', N'沧州地区', N'河间县', N'132922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (363, N'河北省', N'沧州地区', N'肃宁县', N'132923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (364, N'河北省', N'沧州地区', N'献县', N'132924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (365, N'河北省', N'沧州地区', N'交河县', N'132925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (366, N'河北省', N'沧州地区', N'吴桥县', N'132926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (367, N'河北省', N'沧州地区', N'东光县', N'132927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (368, N'河北省', N'沧州地区', N'南皮县', N'132928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (369, N'河北省', N'沧州地区', N'盐山县', N'132929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (370, N'河北省', N'沧州地区', N'黄骅县', N'132930'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (371, N'河北省', N'沧州地区', N'孟村回族自治县', N'132931'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (372, N'河北省', N'沧州地区', N'青县', N'132932'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (373, N'河北省', N'沧州地区', N'任丘县', N'132933'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (374, N'河北省', N'沧州地区', N'海兴县', N'132934'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (375, N'河北省', N'衡水地区', N'衡水市', N'133001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (376, N'河北省', N'衡水地区', N'冀州市', N'133002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (377, N'河北省', N'衡水地区', N'衡水县', N'133021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (378, N'河北省', N'衡水地区', N'冀县', N'133022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (379, N'河北省', N'衡水地区', N'枣强县', N'133023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (380, N'河北省', N'衡水地区', N'武邑县', N'133024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (381, N'河北省', N'衡水地区', N'深县', N'133025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (382, N'河北省', N'衡水地区', N'武强县', N'133026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (383, N'河北省', N'衡水地区', N'饶阳县', N'133027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (384, N'河北省', N'衡水地区', N'安平县', N'133028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (385, N'河北省', N'衡水地区', N'故城县', N'133029'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (386, N'河北省', N'衡水地区', N'景县', N'133030'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (387, N'河北省', N'衡水地区', N'阜城县', N'133031'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (388, N'河北省', NULL, N'武安市', N'139001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (389, N'山西省', N'太原市', N'市辖区', N'140101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (390, N'山西省', N'太原市', N'南城区', N'140102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (391, N'山西省', N'太原市', N'北城区', N'140103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (392, N'山西省', N'太原市', N'河西区', N'140104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (393, N'山西省', N'太原市', N'小店区', N'140105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (394, N'山西省', N'太原市', N'迎泽区', N'140106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (395, N'山西省', N'太原市', N'杏花岭区', N'140107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (396, N'山西省', N'太原市', N'尖草坪区', N'140108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (397, N'山西省', N'太原市', N'万柏林区', N'140109'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (398, N'山西省', N'太原市', N'晋源区', N'140110'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (399, N'山西省', N'太原市', N'古交工矿区', N'140111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (400, N'山西省', N'太原市', N'南郊区', N'140112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (401, N'山西省', N'太原市', N'北郊区', N'140113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (402, N'山西省', N'太原市', N'清徐县', N'140121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (403, N'山西省', N'太原市', N'阳曲县', N'140122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (404, N'山西省', N'太原市', N'娄烦县', N'140123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (405, N'山西省', N'太原市', N'古交市', N'140181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (406, N'山西省', N'大同市', N'市辖区', N'140201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (407, N'山西省', N'大同市', N'城区', N'140202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (408, N'山西省', N'大同市', N'矿区', N'140203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (409, N'山西省', N'大同市', N'南郊区', N'140211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (410, N'山西省', N'大同市', N'新荣区', N'140212'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (411, N'山西省', N'大同市', N'阳高县', N'140221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (412, N'山西省', N'大同市', N'天镇县', N'140222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (413, N'山西省', N'大同市', N'广灵县', N'140223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (414, N'山西省', N'大同市', N'灵丘县', N'140224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (415, N'山西省', N'大同市', N'浑源县', N'140225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (416, N'山西省', N'大同市', N'左云县', N'140226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (417, N'山西省', N'大同市', N'大同县', N'140227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (418, N'山西省', N'大同市', N'左云县', N'140230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (419, N'山西省', N'大同市', N'大同县', N'140232'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (420, N'山西省', N'阳泉市', N'市辖区', N'140301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (421, N'山西省', N'阳泉市', N'城区', N'140302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (422, N'山西省', N'阳泉市', N'矿区', N'140303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (423, N'山西省', N'阳泉市', N'郊区', N'140311'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (424, N'山西省', N'阳泉市', N'平定县', N'140321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (425, N'山西省', N'阳泉市', N'盂县', N'140322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (426, N'山西省', N'长治市', N'市辖区', N'140401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (427, N'山西省', N'长治市', N'城区', N'140402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (428, N'山西省', N'长治市', N'郊区', N'140411'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (429, N'山西省', N'长治市', N'长治县', N'140421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (430, N'山西省', N'长治市', N'襄垣县', N'140423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (431, N'山西省', N'长治市', N'屯留县', N'140424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (432, N'山西省', N'长治市', N'平顺县', N'140425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (433, N'山西省', N'长治市', N'黎城县', N'140426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (434, N'山西省', N'长治市', N'壶关县', N'140427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (435, N'山西省', N'长治市', N'长子县', N'140428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (436, N'山西省', N'长治市', N'武乡县', N'140429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (437, N'山西省', N'长治市', N'沁县', N'140430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (438, N'山西省', N'长治市', N'沁源县', N'140431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (439, N'山西省', N'长治市', N'潞城市', N'140481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (440, N'山西省', N'晋城市', N'市辖区', N'140501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (441, N'山西省', N'晋城市', N'城区', N'140502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (442, N'山西省', N'晋城市', N'郊区', N'140511'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (443, N'山西省', N'晋城市', N'沁水县', N'140521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (444, N'山西省', N'晋城市', N'阳城县', N'140522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (445, N'山西省', N'晋城市', N'高平县', N'140523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (446, N'山西省', N'晋城市', N'陵川县', N'140524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (447, N'山西省', N'晋城市', N'泽州县', N'140525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (448, N'山西省', N'晋城市', N'高平市', N'140581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (449, N'山西省', N'朔州市', N'市辖区', N'140601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (450, N'山西省', N'朔州市', N'朔城区', N'140602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (451, N'山西省', N'朔州市', N'平鲁区', N'140603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (452, N'山西省', N'朔州市', N'山阴县', N'140621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (453, N'山西省', N'朔州市', N'应县', N'140622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (454, N'山西省', N'朔州市', N'右玉县', N'140623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (455, N'山西省', N'朔州市', N'怀仁县', N'140624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (456, N'山西省', N'晋中市', N'市辖区', N'140701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (457, N'山西省', N'晋中市', N'榆次区', N'140702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (458, N'山西省', N'晋中市', N'榆社县', N'140721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (459, N'山西省', N'晋中市', N'左权县', N'140722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (460, N'山西省', N'晋中市', N'和顺县', N'140723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (461, N'山西省', N'晋中市', N'昔阳县', N'140724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (462, N'山西省', N'晋中市', N'寿阳县', N'140725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (463, N'山西省', N'晋中市', N'太谷县', N'140726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (464, N'山西省', N'晋中市', N'祁县', N'140727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (465, N'山西省', N'晋中市', N'平遥县', N'140728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (466, N'山西省', N'晋中市', N'灵石县', N'140729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (467, N'山西省', N'晋中市', N'介休市', N'140781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (468, N'山西省', N'运城市', N'市辖区', N'140801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (469, N'山西省', N'运城市', N'盐湖区', N'140802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (470, N'山西省', N'运城市', N'临猗县', N'140821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (471, N'山西省', N'运城市', N'万荣县', N'140822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (472, N'山西省', N'运城市', N'闻喜县', N'140823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (473, N'山西省', N'运城市', N'稷山县', N'140824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (474, N'山西省', N'运城市', N'新绛县', N'140825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (475, N'山西省', N'运城市', N'绛县', N'140826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (476, N'山西省', N'运城市', N'垣曲县', N'140827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (477, N'山西省', N'运城市', N'夏县', N'140828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (478, N'山西省', N'运城市', N'平陆县', N'140829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (479, N'山西省', N'运城市', N'芮城县', N'140830'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (480, N'山西省', N'运城市', N'永济市', N'140881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (481, N'山西省', N'运城市', N'河津市', N'140882'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (482, N'山西省', N'忻州市', N'市辖区', N'140901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (483, N'山西省', N'忻州市', N'忻府区', N'140902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (484, N'山西省', N'忻州市', N'定襄县', N'140921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (485, N'山西省', N'忻州市', N'五台县', N'140922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (486, N'山西省', N'忻州市', N'代县', N'140923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (487, N'山西省', N'忻州市', N'繁峙县', N'140924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (488, N'山西省', N'忻州市', N'宁武县', N'140925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (489, N'山西省', N'忻州市', N'静乐县', N'140926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (490, N'山西省', N'忻州市', N'神池县', N'140927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (491, N'山西省', N'忻州市', N'五寨县', N'140928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (492, N'山西省', N'忻州市', N'岢岚县', N'140929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (493, N'山西省', N'忻州市', N'河曲县', N'140930'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (494, N'山西省', N'忻州市', N'保德县', N'140931'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (495, N'山西省', N'忻州市', N'偏关县', N'140932'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (496, N'山西省', N'忻州市', N'原平市', N'140981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (497, N'山西省', N'临汾市', N'市辖区', N'141001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (498, N'山西省', N'临汾市', N'尧都区', N'141002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (499, N'山西省', N'临汾市', N'曲沃县', N'141021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (500, N'山西省', N'临汾市', N'翼城县', N'141022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (501, N'山西省', N'临汾市', N'襄汾县', N'141023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (502, N'山西省', N'临汾市', N'洪洞县', N'141024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (503, N'山西省', N'临汾市', N'古县', N'141025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (504, N'山西省', N'临汾市', N'安泽县', N'141026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (505, N'山西省', N'临汾市', N'浮山县', N'141027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (506, N'山西省', N'临汾市', N'吉县', N'141028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (507, N'山西省', N'临汾市', N'乡宁县', N'141029'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (508, N'山西省', N'临汾市', N'大宁县', N'141030'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (509, N'山西省', N'临汾市', N'隰县', N'141031'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (510, N'山西省', N'临汾市', N'永和县', N'141032'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (511, N'山西省', N'临汾市', N'蒲县', N'141033'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (512, N'山西省', N'临汾市', N'汾西县', N'141034'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (513, N'山西省', N'临汾市', N'侯马市', N'141081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (514, N'山西省', N'临汾市', N'霍州市', N'141082'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (515, N'山西省', N'吕梁市', N'市辖区', N'141101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (516, N'山西省', N'吕梁市', N'离石区', N'141102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (517, N'山西省', N'吕梁市', N'文水县', N'141121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (518, N'山西省', N'吕梁市', N'交城县', N'141122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (519, N'山西省', N'吕梁市', N'兴县', N'141123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (520, N'山西省', N'吕梁市', N'临县', N'141124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (521, N'山西省', N'吕梁市', N'柳林县', N'141125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (522, N'山西省', N'吕梁市', N'石楼县', N'141126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (523, N'山西省', N'吕梁市', N'岚县', N'141127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (524, N'山西省', N'吕梁市', N'方山县', N'141128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (525, N'山西省', N'吕梁市', N'中阳县', N'141129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (526, N'山西省', N'吕梁市', N'交口县', N'141130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (527, N'山西省', N'吕梁市', N'孝义市', N'141181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (528, N'山西省', N'吕梁市', N'汾阳市', N'141182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (529, N'山西省', N'雁北地区', N'阳高县', N'142121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (530, N'山西省', N'雁北地区', N'天镇县', N'142122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (531, N'山西省', N'雁北地区', N'广灵县', N'142123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (532, N'山西省', N'雁北地区', N'灵丘县', N'142124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (533, N'山西省', N'雁北地区', N'浑源县', N'142125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (534, N'山西省', N'雁北地区', N'应县', N'142126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (535, N'山西省', N'雁北地区', N'山阴县', N'142127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (536, N'山西省', N'雁北地区', N'朔县', N'142128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (537, N'山西省', N'雁北地区', N'平鲁县', N'142129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (538, N'山西省', N'雁北地区', N'左云县', N'142130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (539, N'山西省', N'雁北地区', N'右玉县', N'142131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (540, N'山西省', N'雁北地区', N'大同县', N'142132'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (541, N'山西省', N'雁北地区', N'怀仁县', N'142133'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (542, N'山西省', N'忻州地区', N'忻州市', N'142201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (543, N'山西省', N'忻州地区', N'原平市', N'142202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (544, N'山西省', N'忻州地区', N'定襄县', N'142222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (545, N'山西省', N'忻州地区', N'五台县', N'142223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (546, N'山西省', N'忻州地区', N'代县', N'142225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (547, N'山西省', N'忻州地区', N'繁峙县', N'142226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (548, N'山西省', N'忻州地区', N'宁武县', N'142227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (549, N'山西省', N'忻州地区', N'静乐县', N'142228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (550, N'山西省', N'忻州地区', N'神池县', N'142229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (551, N'山西省', N'忻州地区', N'五寨县', N'142230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (552, N'山西省', N'忻州地区', N'岢岚县', N'142231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (553, N'山西省', N'忻州地区', N'河曲县', N'142232'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (554, N'山西省', N'忻州地区', N'保德县', N'142233'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (555, N'山西省', N'忻州地区', N'偏关县', N'142234'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (556, N'山西省', N'吕梁地区', N'孝义市', N'142301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (557, N'山西省', N'吕梁地区', N'离石市', N'142302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (558, N'山西省', N'吕梁地区', N'汾阳市', N'142303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (559, N'山西省', N'吕梁地区', N'汾阳县', N'142321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (560, N'山西省', N'吕梁地区', N'文水县', N'142322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (561, N'山西省', N'吕梁地区', N'交城县', N'142323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (562, N'山西省', N'吕梁地区', N'兴县', N'142325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (563, N'山西省', N'吕梁地区', N'临县', N'142326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (564, N'山西省', N'吕梁地区', N'柳林县', N'142327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (565, N'山西省', N'吕梁地区', N'石楼县', N'142328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (566, N'山西省', N'吕梁地区', N'岚县', N'142329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (567, N'山西省', N'吕梁地区', N'方山县', N'142330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (568, N'山西省', N'吕梁地区', N'中阳县', N'142332'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (569, N'山西省', N'吕梁地区', N'交口县', N'142333'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (570, N'山西省', N'晋中地区', N'榆次市', N'142401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (571, N'山西省', N'晋中地区', N'介休市', N'142402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (572, N'山西省', N'晋中地区', N'榆社县', N'142421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (573, N'山西省', N'晋中地区', N'左权县', N'142422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (574, N'山西省', N'晋中地区', N'和顺县', N'142423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (575, N'山西省', N'晋中地区', N'昔阳县', N'142424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (576, N'山西省', N'晋中地区', N'寿阳县', N'142427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (577, N'山西省', N'晋中地区', N'太谷县', N'142429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (578, N'山西省', N'晋中地区', N'祁县', N'142430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (579, N'山西省', N'晋中地区', N'平遥县', N'142431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (580, N'山西省', N'晋中地区', N'灵石县', N'142433'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (581, N'山西省', N'临汾地区', N'临汾市', N'142601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (582, N'山西省', N'临汾地区', N'侯马市', N'142602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (583, N'山西省', N'临汾地区', N'霍州市', N'142603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (584, N'山西省', N'临汾地区', N'曲沃县', N'142621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (585, N'山西省', N'临汾地区', N'翼城县', N'142622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (586, N'山西省', N'临汾地区', N'襄汾县', N'142623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (587, N'山西省', N'临汾地区', N'洪洞县', N'142625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (588, N'山西省', N'临汾地区', N'古县', N'142627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (589, N'山西省', N'临汾地区', N'安泽县', N'142628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (590, N'山西省', N'临汾地区', N'浮山县', N'142629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (591, N'山西省', N'临汾地区', N'吉县', N'142630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (592, N'山西省', N'临汾地区', N'乡宁县', N'142631'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (593, N'山西省', N'临汾地区', N'蒲县', N'142632'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (594, N'山西省', N'临汾地区', N'大宁县', N'142633'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (595, N'山西省', N'临汾地区', N'永和县', N'142634'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (596, N'山西省', N'临汾地区', N'隰县', N'142635'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (597, N'山西省', N'临汾地区', N'汾西县', N'142636'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (598, N'山西省', N'运城地区', N'运城市', N'142701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (599, N'山西省', N'运城地区', N'永济市', N'142702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (600, N'山西省', N'运城地区', N'河津市', N'142703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (601, N'山西省', N'运城地区', N'芮城县', N'142723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (602, N'山西省', N'运城地区', N'临猗县', N'142724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (603, N'山西省', N'运城地区', N'万荣县', N'142725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (604, N'山西省', N'运城地区', N'新绛县', N'142726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (605, N'山西省', N'运城地区', N'稷山县', N'142727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (606, N'山西省', N'运城地区', N'闻喜县', N'142729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (607, N'山西省', N'运城地区', N'夏县', N'142730'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (608, N'山西省', N'运城地区', N'绛县', N'142731'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (609, N'山西省', N'运城地区', N'平陆县', N'142732'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (610, N'山西省', N'运城地区', N'垣曲县', N'142733'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (611, N'山西省', NULL, N'古交市', N'149001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (612, N'内蒙古自治区', N'呼和浩特市', N'市辖区', N'150101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (613, N'内蒙古自治区', N'呼和浩特市', N'新城区', N'150102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (614, N'内蒙古自治区', N'呼和浩特市', N'回民区', N'150103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (615, N'内蒙古自治区', N'呼和浩特市', N'玉泉区', N'150104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (616, N'内蒙古自治区', N'呼和浩特市', N'郊区', N'150105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (617, N'内蒙古自治区', N'呼和浩特市', N'土默特左旗', N'150121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (618, N'内蒙古自治区', N'呼和浩特市', N'托克托县', N'150122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (619, N'内蒙古自治区', N'呼和浩特市', N'和林格尔县', N'150123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (620, N'内蒙古自治区', N'呼和浩特市', N'清水河县', N'150124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (621, N'内蒙古自治区', N'呼和浩特市', N'武川县', N'150125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (622, N'内蒙古自治区', N'包头市', N'市辖区', N'150201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (623, N'内蒙古自治区', N'包头市', N'东河区', N'150202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (624, N'内蒙古自治区', N'包头市', N'昆都伦区', N'150203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (625, N'内蒙古自治区', N'包头市', N'青山区', N'150204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (626, N'内蒙古自治区', N'包头市', N'石拐矿区', N'150205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (627, N'内蒙古自治区', N'包头市', N'白云矿区', N'150206'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (628, N'内蒙古自治区', N'包头市', N'郊区', N'150207'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (629, N'内蒙古自治区', N'包头市', N'土默特右旗', N'150221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (630, N'内蒙古自治区', N'包头市', N'固阳县', N'150222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (631, N'内蒙古自治区', N'包头市', N'达尔罕茂明安联合旗', N'150223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (632, N'内蒙古自治区', N'乌海市', N'市辖区', N'150301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (633, N'内蒙古自治区', N'乌海市', N'海勃湾区', N'150302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (634, N'内蒙古自治区', N'乌海市', N'海南区', N'150303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (635, N'内蒙古自治区', N'乌海市', N'乌达区', N'150304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (636, N'内蒙古自治区', N'赤峰市', N'市辖区', N'150401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (637, N'内蒙古自治区', N'赤峰市', N'红山区', N'150402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (638, N'内蒙古自治区', N'赤峰市', N'元宝山区', N'150403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (639, N'内蒙古自治区', N'赤峰市', N'松山区', N'150404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (640, N'内蒙古自治区', N'赤峰市', N'阿鲁科尔沁旗', N'150421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (641, N'内蒙古自治区', N'赤峰市', N'巴林左旗', N'150422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (642, N'内蒙古自治区', N'赤峰市', N'巴林右旗', N'150423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (643, N'内蒙古自治区', N'赤峰市', N'林西县', N'150424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (644, N'内蒙古自治区', N'赤峰市', N'克什克腾旗', N'150425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (645, N'内蒙古自治区', N'赤峰市', N'翁牛特旗', N'150426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (646, N'内蒙古自治区', N'赤峰市', N'喀喇沁旗', N'150428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (647, N'内蒙古自治区', N'赤峰市', N'宁城县', N'150429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (648, N'内蒙古自治区', N'赤峰市', N'敖汉旗', N'150430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (649, N'内蒙古自治区', N'通辽市', N'市辖区', N'150501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (650, N'内蒙古自治区', N'通辽市', N'科尔沁区', N'150502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (651, N'内蒙古自治区', N'通辽市', N'科尔沁左翼中旗', N'150521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (652, N'内蒙古自治区', N'通辽市', N'科尔沁左翼后旗', N'150522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (653, N'内蒙古自治区', N'通辽市', N'开鲁县', N'150523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (654, N'内蒙古自治区', N'通辽市', N'库伦旗', N'150524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (655, N'内蒙古自治区', N'通辽市', N'奈曼旗', N'150525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (656, N'内蒙古自治区', N'通辽市', N'扎鲁特旗', N'150526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (657, N'内蒙古自治区', N'通辽市', N'霍林郭勒市', N'150581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (658, N'内蒙古自治区', N'鄂尔多斯市', N'鄂尔多斯市', N'150601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (659, N'内蒙古自治区', N'鄂尔多斯市', N'东胜区', N'150602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (660, N'内蒙古自治区', N'鄂尔多斯市', N'达拉特旗', N'150621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (661, N'内蒙古自治区', N'鄂尔多斯市', N'准格尔旗', N'150622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (662, N'内蒙古自治区', N'鄂尔多斯市', N'鄂托克前旗', N'150623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (663, N'内蒙古自治区', N'鄂尔多斯市', N'鄂托克旗', N'150624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (664, N'内蒙古自治区', N'鄂尔多斯市', N'杭锦旗', N'150625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (665, N'内蒙古自治区', N'鄂尔多斯市', N'乌审旗', N'150626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (666, N'内蒙古自治区', N'鄂尔多斯市', N'伊金霍洛旗', N'150627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (667, N'内蒙古自治区', N'呼伦贝尔市', N'市辖区', N'150701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (668, N'内蒙古自治区', N'呼伦贝尔市', N'海拉尔区', N'150702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (669, N'内蒙古自治区', N'呼伦贝尔市', N'阿荣旗', N'150721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (670, N'内蒙古自治区', N'呼伦贝尔市', N'莫力达瓦达斡尔族自治旗', N'150722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (671, N'内蒙古自治区', N'呼伦贝尔市', N'鄂伦春自治旗', N'150723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (672, N'内蒙古自治区', N'呼伦贝尔市', N'鄂温克族自治旗', N'150724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (673, N'内蒙古自治区', N'呼伦贝尔市', N'陈巴尔虎旗', N'150725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (674, N'内蒙古自治区', N'呼伦贝尔市', N'新巴尔虎左旗', N'150726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (675, N'内蒙古自治区', N'呼伦贝尔市', N'新巴尔虎右旗', N'150727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (676, N'内蒙古自治区', N'呼伦贝尔市', N'满洲里市', N'150781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (677, N'内蒙古自治区', N'呼伦贝尔市', N'牙克石市', N'150782'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (678, N'内蒙古自治区', N'呼伦贝尔市', N'扎兰屯市', N'150783'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (679, N'内蒙古自治区', N'呼伦贝尔市', N'额尔古纳市', N'150784'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (680, N'内蒙古自治区', N'呼伦贝尔市', N'根河市', N'150785'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (681, N'内蒙古自治区', N'巴彦淖尔市', N'市辖区', N'150801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (682, N'内蒙古自治区', N'巴彦淖尔市', N'临河区', N'150802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (683, N'内蒙古自治区', N'巴彦淖尔市', N'五原县', N'150821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (684, N'内蒙古自治区', N'巴彦淖尔市', N'磴口县', N'150822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (685, N'内蒙古自治区', N'巴彦淖尔市', N'乌拉特前旗', N'150823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (686, N'内蒙古自治区', N'巴彦淖尔市', N'乌拉特中旗', N'150824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (687, N'内蒙古自治区', N'巴彦淖尔市', N'乌拉特后旗', N'150825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (688, N'内蒙古自治区', N'巴彦淖尔市', N'杭锦后旗', N'150826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (689, N'内蒙古自治区', N'乌兰察布市', N'市辖区', N'150901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (690, N'内蒙古自治区', N'乌兰察布市', N'集宁区', N'150902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (691, N'内蒙古自治区', N'乌兰察布市', N'卓资县', N'150921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (692, N'内蒙古自治区', N'乌兰察布市', N'化德县', N'150922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (693, N'内蒙古自治区', N'乌兰察布市', N'商都县', N'150923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (694, N'内蒙古自治区', N'乌兰察布市', N'兴和县', N'150924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (695, N'内蒙古自治区', N'乌兰察布市', N'凉城县', N'150925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (696, N'内蒙古自治区', N'乌兰察布市', N'察哈尔右翼前旗', N'150926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (697, N'内蒙古自治区', N'乌兰察布市', N'察哈尔右翼中旗', N'150927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (698, N'内蒙古自治区', N'乌兰察布市', N'察哈尔右翼后旗', N'150928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (699, N'内蒙古自治区', N'乌兰察布市', N'四子王旗', N'150929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (700, N'内蒙古自治区', N'乌兰察布市', N'丰镇市', N'150981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (701, N'内蒙古自治区', N'呼伦贝尔盟', N'海拉尔市', N'152101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (702, N'内蒙古自治区', N'呼伦贝尔盟', N'满洲里市', N'152102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (703, N'内蒙古自治区', N'呼伦贝尔盟', N'扎兰屯市', N'152103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (704, N'内蒙古自治区', N'呼伦贝尔盟', N'牙克石市', N'152104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (705, N'内蒙古自治区', N'呼伦贝尔盟', N'根河市', N'152105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (706, N'内蒙古自治区', N'呼伦贝尔盟', N'额尔古纳市', N'152106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (707, N'内蒙古自治区', N'呼伦贝尔盟', N'布特哈旗', N'152121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (708, N'内蒙古自治区', N'呼伦贝尔盟', N'阿荣旗', N'152122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (709, N'内蒙古自治区', N'呼伦贝尔盟', N'莫力达瓦达斡尔族自治旗', N'152123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (710, N'内蒙古自治区', N'呼伦贝尔盟', N'喜桂图旗', N'152124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (711, N'内蒙古自治区', N'呼伦贝尔盟', N'额尔古纳右旗', N'152125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (712, N'内蒙古自治区', N'呼伦贝尔盟', N'额尔古纳左旗', N'152126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (713, N'内蒙古自治区', N'呼伦贝尔盟', N'鄂伦春自治旗', N'152127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (714, N'内蒙古自治区', N'呼伦贝尔盟', N'鄂温克族自治旗', N'152128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (715, N'内蒙古自治区', N'呼伦贝尔盟', N'新巴尔虎右旗', N'152129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (716, N'内蒙古自治区', N'呼伦贝尔盟', N'新巴尔虎左旗', N'152130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (717, N'内蒙古自治区', N'呼伦贝尔盟', N'陈巴尔虎旗', N'152131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (718, N'内蒙古自治区', N'兴安盟', N'乌兰浩特市', N'152201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (719, N'内蒙古自治区', N'兴安盟', N'阿尔山市', N'152202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (720, N'内蒙古自治区', N'兴安盟', N'科尔沁右翼前旗', N'152221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (721, N'内蒙古自治区', N'兴安盟', N'科尔沁右翼中旗', N'152222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (722, N'内蒙古自治区', N'兴安盟', N'扎赉特旗', N'152223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (723, N'内蒙古自治区', N'兴安盟', N'突泉县', N'152224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (724, N'内蒙古自治区', N'哲里木盟', N'通辽市', N'152301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (725, N'内蒙古自治区', N'哲里木盟', N'霍林郭勒市', N'152302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (726, N'内蒙古自治区', N'哲里木盟', N'通辽县', N'152321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (727, N'内蒙古自治区', N'哲里木盟', N'科尔沁左翼中旗', N'152322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (728, N'内蒙古自治区', N'哲里木盟', N'科尔沁左翼后旗', N'152323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (729, N'内蒙古自治区', N'哲里木盟', N'开鲁县', N'152324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (730, N'内蒙古自治区', N'哲里木盟', N'库伦旗', N'152325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (731, N'内蒙古自治区', N'哲里木盟', N'奈曼旗', N'152326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (732, N'内蒙古自治区', N'哲里木盟', N'扎鲁特旗', N'152327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (733, N'内蒙古自治区', N'锡林郭勒盟', N'二连浩特市', N'152501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (734, N'内蒙古自治区', N'锡林郭勒盟', N'锡林浩特市', N'152502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (735, N'内蒙古自治区', N'锡林郭勒盟', N'阿巴嘎旗', N'152522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (736, N'内蒙古自治区', N'锡林郭勒盟', N'苏尼特左旗', N'152523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (737, N'内蒙古自治区', N'锡林郭勒盟', N'苏尼特右旗', N'152524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (738, N'内蒙古自治区', N'锡林郭勒盟', N'东乌珠穆沁旗', N'152525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (739, N'内蒙古自治区', N'锡林郭勒盟', N'西乌珠穆沁旗', N'152526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (740, N'内蒙古自治区', N'锡林郭勒盟', N'太仆寺旗', N'152527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (741, N'内蒙古自治区', N'锡林郭勒盟', N'镶黄旗', N'152528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (742, N'内蒙古自治区', N'锡林郭勒盟', N'正镶白旗', N'152529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (743, N'内蒙古自治区', N'锡林郭勒盟', N'正蓝旗', N'152530'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (744, N'内蒙古自治区', N'锡林郭勒盟', N'多伦县', N'152531'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (745, N'内蒙古自治区', N'乌兰察布盟', N'集宁市', N'152601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (746, N'内蒙古自治区', N'乌兰察布盟', N'丰镇市', N'152602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (747, N'内蒙古自治区', N'乌兰察布盟', N'武川县', N'152621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (748, N'内蒙古自治区', N'乌兰察布盟', N'和林格尔县', N'152622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (749, N'内蒙古自治区', N'乌兰察布盟', N'清水河县', N'152623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (750, N'内蒙古自治区', N'乌兰察布盟', N'卓资县', N'152624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (751, N'内蒙古自治区', N'乌兰察布盟', N'化德县', N'152625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (752, N'内蒙古自治区', N'乌兰察布盟', N'商都县', N'152626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (753, N'内蒙古自治区', N'乌兰察布盟', N'兴和县', N'152627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (754, N'内蒙古自治区', N'乌兰察布盟', N'丰镇县', N'152628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (755, N'内蒙古自治区', N'乌兰察布盟', N'凉城县', N'152629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (756, N'内蒙古自治区', N'乌兰察布盟', N'察哈尔右翼前旗', N'152630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (757, N'内蒙古自治区', N'乌兰察布盟', N'察哈尔右翼中旗', N'152631'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (758, N'内蒙古自治区', N'乌兰察布盟', N'察哈尔右翼后旗', N'152632'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (759, N'内蒙古自治区', N'乌兰察布盟', N'达尔罕茂明安联合旗', N'152633'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (760, N'内蒙古自治区', N'乌兰察布盟', N'四子王旗', N'152634'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (761, N'内蒙古自治区', N'伊克昭盟', N'东胜市', N'152701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (762, N'内蒙古自治区', N'伊克昭盟', N'东胜县', N'152721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (763, N'内蒙古自治区', N'伊克昭盟', N'达拉特旗', N'152722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (764, N'内蒙古自治区', N'伊克昭盟', N'准格尔旗', N'152723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (765, N'内蒙古自治区', N'伊克昭盟', N'鄂托克前旗', N'152724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (766, N'内蒙古自治区', N'伊克昭盟', N'鄂托克旗', N'152725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (767, N'内蒙古自治区', N'伊克昭盟', N'杭锦旗', N'152726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (768, N'内蒙古自治区', N'伊克昭盟', N'乌审旗', N'152727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (769, N'内蒙古自治区', N'伊克昭盟', N'伊金霍洛旗', N'152728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (770, N'内蒙古自治区', N'巴彦淖尔盟', N'临河市', N'152801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (771, N'内蒙古自治区', N'巴彦淖尔盟', N'临河县', N'152821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (772, N'内蒙古自治区', N'巴彦淖尔盟', N'五原县', N'152822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (773, N'内蒙古自治区', N'巴彦淖尔盟', N'磴口县', N'152823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (774, N'内蒙古自治区', N'巴彦淖尔盟', N'乌拉特前旗', N'152824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (775, N'内蒙古自治区', N'巴彦淖尔盟', N'乌拉特中旗', N'152825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (776, N'内蒙古自治区', N'巴彦淖尔盟', N'乌拉特后旗', N'152826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (777, N'内蒙古自治区', N'巴彦淖尔盟', N'杭锦后旗', N'152827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (778, N'内蒙古自治区', N'阿拉善盟', N'阿拉善左旗', N'152921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (779, N'内蒙古自治区', N'阿拉善盟', N'阿拉善右旗', N'152922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (780, N'内蒙古自治区', N'阿拉善盟', N'额济纳旗', N'152923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (781, N'辽宁省', N'沈阳市', N'市辖区', N'210101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (782, N'辽宁省', N'沈阳市', N'和平区', N'210102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (783, N'辽宁省', N'沈阳市', N'沈河区', N'210103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (784, N'辽宁省', N'沈阳市', N'大东区', N'210104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (785, N'辽宁省', N'沈阳市', N'皇姑区', N'210105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (786, N'辽宁省', N'沈阳市', N'铁西区', N'210106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (787, N'辽宁省', N'沈阳市', N'苏家屯区', N'210111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (788, N'辽宁省', N'沈阳市', N'东陵区', N'210112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (789, N'辽宁省', N'沈阳市', N'沈北新区', N'210113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (790, N'辽宁省', N'沈阳市', N'于洪区', N'210114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (791, N'辽宁省', N'沈阳市', N'市区', N'210120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (792, N'辽宁省', N'沈阳市', N'新民县', N'210121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (793, N'辽宁省', N'沈阳市', N'辽中县', N'210122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (794, N'辽宁省', N'沈阳市', N'康平县', N'210123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (795, N'辽宁省', N'沈阳市', N'法库县', N'210124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (796, N'辽宁省', N'沈阳市', N'新民市', N'210181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (797, N'辽宁省', N'大连市', N'市辖区', N'210201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (798, N'辽宁省', N'大连市', N'中山区', N'210202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (799, N'辽宁省', N'大连市', N'西岗区', N'210203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (800, N'辽宁省', N'大连市', N'沙河口区', N'210204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (801, N'辽宁省', N'大连市', N'甘井子区', N'210211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (802, N'辽宁省', N'大连市', N'旅顺口区', N'210212'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (803, N'辽宁省', N'大连市', N'金州区', N'210213'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (804, N'辽宁省', N'大连市', N'瓦房店市', N'210219'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (805, N'辽宁省', N'大连市', N'市区', N'210220'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (806, N'辽宁省', N'大连市', N'金县', N'210221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (807, N'辽宁省', N'大连市', N'新金县', N'210222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (808, N'辽宁省', N'大连市', N'复县', N'210223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (809, N'辽宁省', N'大连市', N'长海县', N'210224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (810, N'辽宁省', N'大连市', N'庄河县', N'210225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (811, N'辽宁省', N'大连市', N'瓦房店市', N'210281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (812, N'辽宁省', N'大连市', N'普兰店市', N'210282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (813, N'辽宁省', N'大连市', N'庄河市', N'210283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (814, N'辽宁省', N'鞍山市', N'市辖区', N'210301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (815, N'辽宁省', N'鞍山市', N'铁东区', N'210302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (816, N'辽宁省', N'鞍山市', N'铁西区', N'210303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (817, N'辽宁省', N'鞍山市', N'立山区', N'210304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (818, N'辽宁省', N'鞍山市', N'千山区', N'210311'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (819, N'辽宁省', N'鞍山市', N'开发区', N'210319'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (820, N'辽宁省', N'鞍山市', N'台安县', N'210321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (821, N'辽宁省', N'鞍山市', N'岫岩满族自治县', N'210323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (822, N'辽宁省', N'鞍山市', N'海城市', N'210381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (823, N'辽宁省', N'抚顺市', N'市辖区', N'210401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (824, N'辽宁省', N'抚顺市', N'新抚区', N'210402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (825, N'辽宁省', N'抚顺市', N'东洲区', N'210403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (826, N'辽宁省', N'抚顺市', N'望花区', N'210404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (827, N'辽宁省', N'抚顺市', N'顺城区', N'210411'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (828, N'辽宁省', N'抚顺市', N'抚顺县', N'210421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (829, N'辽宁省', N'抚顺市', N'新宾满族自治县', N'210422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (830, N'辽宁省', N'抚顺市', N'清原满族自治县', N'210423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (831, N'辽宁省', N'本溪市', N'市辖区', N'210501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (832, N'辽宁省', N'本溪市', N'平山区', N'210502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (833, N'辽宁省', N'本溪市', N'溪湖区', N'210503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (834, N'辽宁省', N'本溪市', N'明山区', N'210504'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (835, N'辽宁省', N'本溪市', N'南芬区', N'210505'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (836, N'辽宁省', N'本溪市', N'南芬区', N'210511'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (837, N'辽宁省', N'本溪市', N'本溪满族自治县', N'210521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (838, N'辽宁省', N'本溪市', N'桓仁满族自治县', N'210522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (839, N'辽宁省', N'丹东市', N'市辖区', N'210601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (840, N'辽宁省', N'丹东市', N'元宝区', N'210602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (841, N'辽宁省', N'丹东市', N'振兴区', N'210603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (842, N'辽宁省', N'丹东市', N'振安区', N'210604'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (843, N'辽宁省', N'丹东市', N'市区', N'210620'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (844, N'辽宁省', N'丹东市', N'凤城满族自治县', N'210621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (845, N'辽宁省', N'丹东市', N'岫岩满族自治县', N'210622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (846, N'辽宁省', N'丹东市', N'东沟县', N'210623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (847, N'辽宁省', N'丹东市', N'宽甸满族自治县', N'210624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (848, N'辽宁省', N'丹东市', N'东港市', N'210681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (849, N'辽宁省', N'丹东市', N'凤城市', N'210682'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (850, N'辽宁省', N'锦州市', N'市辖区', N'210701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (851, N'辽宁省', N'锦州市', N'古塔区', N'210702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (852, N'辽宁省', N'锦州市', N'凌河区', N'210703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (853, N'辽宁省', N'锦州市', N'南票区', N'210704'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (854, N'辽宁省', N'锦州市', N'葫芦岛区', N'210705'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (855, N'辽宁省', N'锦州市', N'太和区', N'210711'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (856, N'辽宁省', N'锦州市', N'锦西市', N'210719'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (857, N'辽宁省', N'锦州市', N'市区', N'210720'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (858, N'辽宁省', N'锦州市', N'锦西县', N'210721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (859, N'辽宁省', N'锦州市', N'兴城县', N'210722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (860, N'辽宁省', N'锦州市', N'绥中县', N'210723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (861, N'辽宁省', N'锦州市', N'锦县', N'210724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (862, N'辽宁省', N'锦州市', N'北镇满族自治县', N'210725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (863, N'辽宁省', N'锦州市', N'黑山县', N'210726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (864, N'辽宁省', N'锦州市', N'义县', N'210727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (865, N'辽宁省', N'锦州市', N'凌海市', N'210781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (866, N'辽宁省', N'锦州市', N'北镇市', N'210782'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (867, N'辽宁省', N'营口市', N'市辖区', N'210801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (868, N'辽宁省', N'营口市', N'站前区', N'210802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (869, N'辽宁省', N'营口市', N'西市区', N'210803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (870, N'辽宁省', N'营口市', N'鲅鱼圈区', N'210804'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (871, N'辽宁省', N'营口市', N'老边区', N'210811'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (872, N'辽宁省', N'营口市', N'营口县', N'210821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (873, N'辽宁省', N'营口市', N'盖县', N'210824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (874, N'辽宁省', N'营口市', N'盖州市', N'210881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (875, N'辽宁省', N'营口市', N'大石桥市', N'210882'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (876, N'辽宁省', N'阜新市', N'市辖区', N'210901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (877, N'辽宁省', N'阜新市', N'海州区', N'210902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (878, N'辽宁省', N'阜新市', N'新邱区', N'210903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (879, N'辽宁省', N'阜新市', N'太平区', N'210904'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (880, N'辽宁省', N'阜新市', N'清河门区', N'210905'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (881, N'辽宁省', N'阜新市', N'细河区', N'210911'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (882, N'辽宁省', N'阜新市', N'阜新蒙古族自治县', N'210921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (883, N'辽宁省', N'阜新市', N'彰武县', N'210922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (884, N'辽宁省', N'辽阳市', N'市辖区', N'211001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (885, N'辽宁省', N'辽阳市', N'白塔区', N'211002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (886, N'辽宁省', N'辽阳市', N'文圣区', N'211003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (887, N'辽宁省', N'辽阳市', N'宏伟区', N'211004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (888, N'辽宁省', N'辽阳市', N'弓长岭区', N'211005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (889, N'辽宁省', N'辽阳市', N'太子河区', N'211011'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (890, N'辽宁省', N'辽阳市', N'辽阳县', N'211021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (891, N'辽宁省', N'辽阳市', N'灯塔县', N'211022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (892, N'辽宁省', N'辽阳市', N'灯塔市', N'211081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (893, N'辽宁省', N'盘锦市', N'市辖区', N'211101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (894, N'辽宁省', N'盘锦市', N'双台子区', N'211102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (895, N'辽宁省', N'盘锦市', N'兴隆台区', N'211103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (896, N'辽宁省', N'盘锦市', N'郊区', N'211111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (897, N'辽宁省', N'盘锦市', N'大洼县', N'211121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (898, N'辽宁省', N'盘锦市', N'盘山县', N'211122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (899, N'辽宁省', N'铁岭市', N'市辖区', N'211201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (900, N'辽宁省', N'铁岭市', N'银州区', N'211202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (901, N'辽宁省', N'铁岭市', N'铁法区', N'211203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (902, N'辽宁省', N'铁岭市', N'清河区', N'211204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (903, N'辽宁省', N'铁岭市', N'铁岭县', N'211221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (904, N'辽宁省', N'铁岭市', N'开原县', N'211222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (905, N'辽宁省', N'铁岭市', N'西丰县', N'211223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (906, N'辽宁省', N'铁岭市', N'昌图县', N'211224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (907, N'辽宁省', N'铁岭市', N'康平县', N'211225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (908, N'辽宁省', N'铁岭市', N'法库县', N'211226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (909, N'辽宁省', N'铁岭市', N'调兵山市', N'211281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (910, N'辽宁省', N'铁岭市', N'开原市', N'211282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (911, N'辽宁省', N'朝阳市', N'市辖区', N'211301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (912, N'辽宁省', N'朝阳市', N'双塔区', N'211302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (913, N'辽宁省', N'朝阳市', N'龙城区', N'211303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (914, N'辽宁省', N'朝阳市', N'朝阳县', N'211321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (915, N'辽宁省', N'朝阳市', N'建平县', N'211322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (916, N'辽宁省', N'朝阳市', N'凌源县', N'211323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (917, N'辽宁省', N'朝阳市', N'喀喇沁左翼蒙古族自治县', N'211324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (918, N'辽宁省', N'朝阳市', N'建昌县', N'211325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (919, N'辽宁省', N'朝阳市', N'北票县', N'211326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (920, N'辽宁省', N'朝阳市', N'北票市', N'211381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (921, N'辽宁省', N'朝阳市', N'凌源市', N'211382'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (922, N'辽宁省', N'葫芦岛市', N'市辖区', N'211401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (923, N'辽宁省', N'葫芦岛市', N'连山区', N'211402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (924, N'辽宁省', N'葫芦岛市', N'龙港区', N'211403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (925, N'辽宁省', N'葫芦岛市', N'南票区', N'211404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (926, N'辽宁省', N'葫芦岛市', N'绥中县', N'211421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (927, N'辽宁省', N'葫芦岛市', N'建昌县', N'211422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (928, N'辽宁省', N'葫芦岛市', N'兴城市', N'211481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (929, N'辽宁省', N'铁岭市', N'铁岭市', N'212101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (930, N'辽宁省', N'铁岭市', N'铁法市', N'212102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (931, N'辽宁省', N'铁岭市', N'铁岭县', N'212121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (932, N'辽宁省', N'铁岭市', N'开原县', N'212122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (933, N'辽宁省', N'铁岭市', N'西丰县', N'212123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (934, N'辽宁省', N'铁岭市', N'昌图县', N'212124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (935, N'辽宁省', N'铁岭市', N'康平县', N'212125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (936, N'辽宁省', N'铁岭市', N'法库县', N'212126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (937, N'辽宁省', N'朝阳市', N'建昌县', N'212225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (938, N'辽宁省', N'朝阳市', N'北票县', N'212226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (939, N'辽宁省', NULL, N'瓦房店市', N'219001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (940, N'辽宁省', NULL, N'海城市', N'219002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (941, N'辽宁省', NULL, N'锦西市', N'219003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (942, N'辽宁省', NULL, N'兴城市', N'219004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (943, N'辽宁省', NULL, N'铁法市', N'219005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (944, N'辽宁省', NULL, N'北票市', N'219006'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (945, N'辽宁省', NULL, N'开原市', N'219007'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (946, N'吉林省', N'长春市', N'市辖区', N'220101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (947, N'吉林省', N'长春市', N'南关区', N'220102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (948, N'吉林省', N'长春市', N'宽城区', N'220103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (949, N'吉林省', N'长春市', N'朝阳区', N'220104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (950, N'吉林省', N'长春市', N'二道区', N'220105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (951, N'吉林省', N'长春市', N'绿园区', N'220106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (952, N'吉林省', N'长春市', N'郊区', N'220111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (953, N'吉林省', N'长春市', N'双阳区', N'220112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (954, N'吉林省', N'长春市', N'市区', N'220120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (955, N'吉林省', N'长春市', N'榆树县', N'220121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (956, N'吉林省', N'长春市', N'农安县', N'220122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (957, N'吉林省', N'长春市', N'九台县', N'220123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (958, N'吉林省', N'长春市', N'德惠县', N'220124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (959, N'吉林省', N'长春市', N'双阳县', N'220125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (960, N'吉林省', N'长春市', N'九台市', N'220181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (961, N'吉林省', N'长春市', N'榆树市', N'220182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (962, N'吉林省', N'长春市', N'德惠市', N'220183'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (963, N'吉林省', N'吉林市', N'市辖区', N'220201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (964, N'吉林省', N'吉林市', N'昌邑区', N'220202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (965, N'吉林省', N'吉林市', N'龙潭区', N'220203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (966, N'吉林省', N'吉林市', N'船营区', N'220204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (967, N'吉林省', N'吉林市', N'丰满区', N'220211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (968, N'吉林省', N'吉林市', N'市区', N'220220'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (969, N'吉林省', N'吉林市', N'永吉县', N'220221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (970, N'吉林省', N'吉林市', N'舒兰县', N'220222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (971, N'吉林省', N'吉林市', N'磐石县', N'220223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (972, N'吉林省', N'吉林市', N'蛟河县', N'220224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (973, N'吉林省', N'吉林市', N'桦甸县', N'220225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (974, N'吉林省', N'吉林市', N'蛟河市', N'220281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (975, N'吉林省', N'吉林市', N'桦甸市', N'220282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (976, N'吉林省', N'吉林市', N'舒兰市', N'220283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (977, N'吉林省', N'吉林市', N'磐石市', N'220284'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (978, N'吉林省', N'四平市', N'市辖区', N'220301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (979, N'吉林省', N'四平市', N'铁西区', N'220302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (980, N'吉林省', N'四平市', N'铁东区', N'220303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (981, N'吉林省', N'四平市', N'公主岭市', N'220319'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (982, N'吉林省', N'四平市', N'怀德县', N'220321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (983, N'吉林省', N'四平市', N'梨树县', N'220322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (984, N'吉林省', N'四平市', N'伊通满族自治县', N'220323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (985, N'吉林省', N'四平市', N'双辽县', N'220324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (986, N'吉林省', N'四平市', N'公主岭市', N'220381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (987, N'吉林省', N'四平市', N'双辽市', N'220382'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (988, N'吉林省', N'辽源市', N'市辖区', N'220401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (989, N'吉林省', N'辽源市', N'龙山区', N'220402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (990, N'吉林省', N'辽源市', N'西安区', N'220403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (991, N'吉林省', N'辽源市', N'东丰县', N'220421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (992, N'吉林省', N'辽源市', N'东辽县', N'220422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (993, N'吉林省', N'通化市', N'市辖区', N'220501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (994, N'吉林省', N'通化市', N'东昌区', N'220502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (995, N'吉林省', N'通化市', N'二道江区', N'220503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (996, N'吉林省', N'通化市', N'梅河口市', N'220519'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (997, N'吉林省', N'通化市', N'通化县', N'220521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (998, N'吉林省', N'通化市', N'集安县', N'220522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (999, N'吉林省', N'通化市', N'辉南县', N'220523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1000, N'吉林省', N'通化市', N'柳河县', N'220524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1001, N'吉林省', N'通化市', N'梅河口市', N'220581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1002, N'吉林省', N'通化市', N'集安市', N'220582'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1003, N'吉林省', N'白山市', N'市辖区', N'220601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1004, N'吉林省', N'白山市', N'八道江区', N'220602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1005, N'吉林省', N'白山市', N'三岔子区', N'220603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1006, N'吉林省', N'白山市', N'临江区', N'220604'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1007, N'吉林省', N'白山市', N'抚松县', N'220621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1008, N'吉林省', N'白山市', N'靖宇县', N'220622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1009, N'吉林省', N'白山市', N'长白朝鲜族自治县', N'220623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1010, N'吉林省', N'白山市', N'江源县', N'220625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1011, N'吉林省', N'白山市', N'临江市', N'220681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1012, N'吉林省', N'松原市', N'市辖区', N'220701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1013, N'吉林省', N'松原市', N'宁江区', N'220702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1014, N'吉林省', N'松原市', N'前郭尔罗斯蒙古族自治县', N'220721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1015, N'吉林省', N'松原市', N'长岭县', N'220722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1016, N'吉林省', N'松原市', N'乾安县', N'220723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1017, N'吉林省', N'松原市', N'扶余县', N'220724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1018, N'吉林省', N'白城市', N'市辖区', N'220801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1019, N'吉林省', N'白城市', N'洮北区', N'220802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1020, N'吉林省', N'白城市', N'镇赉县', N'220821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1021, N'吉林省', N'白城市', N'通榆县', N'220822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1022, N'吉林省', N'白城市', N'洮南市', N'220881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1023, N'吉林省', N'白城市', N'大安市', N'220882'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1024, N'吉林省', N'白城地区', N'白城市', N'222301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1025, N'吉林省', N'白城地区', N'洮南市', N'222302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1026, N'吉林省', N'白城地区', N'扶余市', N'222303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1027, N'吉林省', N'白城地区', N'大安市', N'222304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1028, N'吉林省', N'白城地区', N'扶余县', N'222321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1029, N'吉林省', N'白城地区', N'洮安县', N'222322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1030, N'吉林省', N'白城地区', N'长岭县', N'222323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1031, N'吉林省', N'白城地区', N'前郭尔罗斯蒙古族自治县', N'222324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1032, N'吉林省', N'白城地区', N'大安县', N'222325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1033, N'吉林省', N'白城地区', N'镇赉县', N'222326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1034, N'吉林省', N'白城地区', N'通榆县', N'222327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1035, N'吉林省', N'白城地区', N'乾安县', N'222328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1036, N'吉林省', N'延边朝鲜族自治州', N'延吉市', N'222401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1037, N'吉林省', N'延边朝鲜族自治州', N'图们市', N'222402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1038, N'吉林省', N'延边朝鲜族自治州', N'敦化市', N'222403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1039, N'吉林省', N'延边朝鲜族自治州', N'珲春市', N'222404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1040, N'吉林省', N'延边朝鲜族自治州', N'龙井市', N'222405'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1041, N'吉林省', N'延边朝鲜族自治州', N'和龙市', N'222406'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1042, N'吉林省', N'延边朝鲜族自治州', N'龙井县', N'222421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1043, N'吉林省', N'延边朝鲜族自治州', N'敦化县', N'222422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1044, N'吉林省', N'延边朝鲜族自治州', N'和龙县', N'222423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1045, N'吉林省', N'延边朝鲜族自治州', N'汪清县', N'222424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1046, N'吉林省', N'延边朝鲜族自治州', N'珲春县', N'222425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1047, N'吉林省', N'延边朝鲜族自治州', N'安图县', N'222426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1048, N'吉林省', NULL, N'四平市', N'222101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1049, N'吉林省', NULL, N'辽源市', N'222102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1050, N'吉林省', NULL, N'怀德县', N'222121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1051, N'吉林省', NULL, N'梨树县', N'222122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1052, N'吉林省', NULL, N'伊通满族自治县', N'222123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1053, N'吉林省', NULL, N'东丰县', N'222124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1054, N'吉林省', NULL, N'双辽县', N'222125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1055, N'吉林省', NULL, N'通化市', N'222201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1056, N'吉林省', NULL, N'浑江市', N'222202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1057, N'吉林省', NULL, N'海龙县', N'222221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1058, N'吉林省', NULL, N'通化县', N'222222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1059, N'吉林省', NULL, N'柳河县', N'222223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1060, N'吉林省', NULL, N'辉南县', N'222224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1061, N'吉林省', NULL, N'集安县', N'222225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1062, N'吉林省', NULL, N'抚松县', N'222226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1063, N'吉林省', NULL, N'靖宇县', N'222227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1064, N'吉林省', NULL, N'长白朝鲜族自治县', N'222228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1065, N'吉林省', NULL, N'公主岭市', N'229001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1066, N'吉林省', NULL, N'梅河口市', N'229002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1067, N'吉林省', NULL, N'集安市', N'229003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1068, N'吉林省', NULL, N'桦甸市', N'229004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1069, N'吉林省', NULL, N'九台市', N'229005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1070, N'黑龙江省', N'哈尔滨市', N'市辖区', N'230101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1071, N'黑龙江省', N'哈尔滨市', N'道里区', N'230102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1072, N'黑龙江省', N'哈尔滨市', N'南岗区', N'230103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1073, N'黑龙江省', N'哈尔滨市', N'道外区', N'230104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1074, N'黑龙江省', N'哈尔滨市', N'太平区', N'230105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1075, N'黑龙江省', N'哈尔滨市', N'香坊区', N'230106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1076, N'黑龙江省', N'哈尔滨市', N'动力区', N'230107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1077, N'黑龙江省', N'哈尔滨市', N'平房区', N'230108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1078, N'黑龙江省', N'哈尔滨市', N'松北区', N'230109'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1079, N'黑龙江省', N'哈尔滨市', N'香坊区', N'230110'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1080, N'黑龙江省', N'哈尔滨市', N'呼兰区', N'230111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1081, N'黑龙江省', N'哈尔滨市', N'阿城区', N'230112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1082, N'黑龙江省', N'哈尔滨市', N'阿城市', N'230119'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1083, N'黑龙江省', N'哈尔滨市', N'呼兰县', N'230121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1084, N'黑龙江省', N'哈尔滨市', N'阿城县', N'230122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1085, N'黑龙江省', N'哈尔滨市', N'依兰县', N'230123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1086, N'黑龙江省', N'哈尔滨市', N'方正县', N'230124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1087, N'黑龙江省', N'哈尔滨市', N'宾县', N'230125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1088, N'黑龙江省', N'哈尔滨市', N'巴彦县', N'230126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1089, N'黑龙江省', N'哈尔滨市', N'木兰县', N'230127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1090, N'黑龙江省', N'哈尔滨市', N'通河县', N'230128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1091, N'黑龙江省', N'哈尔滨市', N'延寿县', N'230129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1092, N'黑龙江省', N'哈尔滨市', N'阿城市', N'230181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1093, N'黑龙江省', N'哈尔滨市', N'双城市', N'230182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1094, N'黑龙江省', N'哈尔滨市', N'尚志市', N'230183'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1095, N'黑龙江省', N'哈尔滨市', N'五常市', N'230184'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1096, N'黑龙江省', N'齐齐哈尔市', N'市辖区', N'230201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1097, N'黑龙江省', N'齐齐哈尔市', N'龙沙区', N'230202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1098, N'黑龙江省', N'齐齐哈尔市', N'建华区', N'230203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1099, N'黑龙江省', N'齐齐哈尔市', N'铁锋区', N'230204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1100, N'黑龙江省', N'齐齐哈尔市', N'昂昂溪区', N'230205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1101, N'黑龙江省', N'齐齐哈尔市', N'富拉尔基区', N'230206'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1102, N'黑龙江省', N'齐齐哈尔市', N'碾子山区', N'230207'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1103, N'黑龙江省', N'齐齐哈尔市', N'梅里斯达斡尔族区', N'230208'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1104, N'黑龙江省', N'齐齐哈尔市', N'龙江县', N'230221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1105, N'黑龙江省', N'齐齐哈尔市', N'讷河县', N'230222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1106, N'黑龙江省', N'齐齐哈尔市', N'依安县', N'230223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1107, N'黑龙江省', N'齐齐哈尔市', N'泰来县', N'230224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1108, N'黑龙江省', N'齐齐哈尔市', N'甘南县', N'230225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1109, N'黑龙江省', N'齐齐哈尔市', N'杜尔伯特蒙古族自治县', N'230226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1110, N'黑龙江省', N'齐齐哈尔市', N'富裕县', N'230227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1111, N'黑龙江省', N'齐齐哈尔市', N'林甸县', N'230228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1112, N'黑龙江省', N'齐齐哈尔市', N'克山县', N'230229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1113, N'黑龙江省', N'齐齐哈尔市', N'克东县', N'230230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1114, N'黑龙江省', N'齐齐哈尔市', N'拜泉县', N'230231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1115, N'黑龙江省', N'齐齐哈尔市', N'讷河市', N'230281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1116, N'黑龙江省', N'鸡西市', N'市辖区', N'230301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1117, N'黑龙江省', N'鸡西市', N'鸡冠区', N'230302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1118, N'黑龙江省', N'鸡西市', N'恒山区', N'230303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1119, N'黑龙江省', N'鸡西市', N'滴道区', N'230304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1120, N'黑龙江省', N'鸡西市', N'梨树区', N'230305'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1121, N'黑龙江省', N'鸡西市', N'城子河区', N'230306'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1122, N'黑龙江省', N'鸡西市', N'麻山区', N'230307'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1123, N'黑龙江省', N'鸡西市', N'鸡东县', N'230321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1124, N'黑龙江省', N'鸡西市', N'虎林市', N'230381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1125, N'黑龙江省', N'鸡西市', N'密山市', N'230382'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1126, N'黑龙江省', N'鹤岗市', N'市辖区', N'230401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1127, N'黑龙江省', N'鹤岗市', N'向阳区', N'230402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1128, N'黑龙江省', N'鹤岗市', N'工农区', N'230403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1129, N'黑龙江省', N'鹤岗市', N'南山区', N'230404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1130, N'黑龙江省', N'鹤岗市', N'兴安区', N'230405'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1131, N'黑龙江省', N'鹤岗市', N'东山区', N'230406'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1132, N'黑龙江省', N'鹤岗市', N'兴山区', N'230407'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1133, N'黑龙江省', N'鹤岗市', N'萝北县', N'230421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1134, N'黑龙江省', N'鹤岗市', N'绥滨县', N'230422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1135, N'黑龙江省', N'双鸭山市', N'市辖区', N'230501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1136, N'黑龙江省', N'双鸭山市', N'尖山区', N'230502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1137, N'黑龙江省', N'双鸭山市', N'岭东区', N'230503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1138, N'黑龙江省', N'双鸭山市', N'岭西区', N'230504'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1139, N'黑龙江省', N'双鸭山市', N'四方台区', N'230505'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1140, N'黑龙江省', N'双鸭山市', N'宝山区', N'230506'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1141, N'黑龙江省', N'双鸭山市', N'集贤县', N'230521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1142, N'黑龙江省', N'双鸭山市', N'友谊县', N'230522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1143, N'黑龙江省', N'双鸭山市', N'宝清县', N'230523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1144, N'黑龙江省', N'双鸭山市', N'饶河县', N'230524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1145, N'黑龙江省', N'大庆市', N'市辖区', N'230601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1146, N'黑龙江省', N'大庆市', N'萨尔图区', N'230602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1147, N'黑龙江省', N'大庆市', N'龙凤区', N'230603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1148, N'黑龙江省', N'大庆市', N'让胡路区', N'230604'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1149, N'黑龙江省', N'大庆市', N'红岗区', N'230605'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1150, N'黑龙江省', N'大庆市', N'大同区', N'230606'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1151, N'黑龙江省', N'大庆市', N'肇州县', N'230621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1152, N'黑龙江省', N'大庆市', N'肇源县', N'230622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1153, N'黑龙江省', N'大庆市', N'林甸县', N'230623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1154, N'黑龙江省', N'大庆市', N'杜尔伯特蒙古族自治县', N'230624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1155, N'黑龙江省', N'伊春市', N'市辖区', N'230701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1156, N'黑龙江省', N'伊春市', N'伊春区', N'230702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1157, N'黑龙江省', N'伊春市', N'南岔区', N'230703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1158, N'黑龙江省', N'伊春市', N'友好区', N'230704'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1159, N'黑龙江省', N'伊春市', N'西林区', N'230705'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1160, N'黑龙江省', N'伊春市', N'翠峦区', N'230706'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1161, N'黑龙江省', N'伊春市', N'新青区', N'230707'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1162, N'黑龙江省', N'伊春市', N'美溪区', N'230708'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1163, N'黑龙江省', N'伊春市', N'金山屯区', N'230709'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1164, N'黑龙江省', N'伊春市', N'五营区', N'230710'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1165, N'黑龙江省', N'伊春市', N'乌马河区', N'230711'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1166, N'黑龙江省', N'伊春市', N'汤旺河区', N'230712'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1167, N'黑龙江省', N'伊春市', N'带岭区', N'230713'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1168, N'黑龙江省', N'伊春市', N'乌伊岭区', N'230714'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1169, N'黑龙江省', N'伊春市', N'红星区', N'230715'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1170, N'黑龙江省', N'伊春市', N'上甘岭区', N'230716'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1171, N'黑龙江省', N'伊春市', N'铁力县', N'230721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1172, N'黑龙江省', N'伊春市', N'嘉荫县', N'230722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1173, N'黑龙江省', N'伊春市', N'铁力市', N'230781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1174, N'黑龙江省', N'佳木斯市', N'市辖区', N'230801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1175, N'黑龙江省', N'佳木斯市', N'永红区', N'230802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1176, N'黑龙江省', N'佳木斯市', N'向阳区', N'230803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1177, N'黑龙江省', N'佳木斯市', N'前进区', N'230804'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1178, N'黑龙江省', N'佳木斯市', N'东风区', N'230805'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1179, N'黑龙江省', N'佳木斯市', N'郊区', N'230811'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1180, N'黑龙江省', N'佳木斯市', N'富锦县', N'230821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1181, N'黑龙江省', N'佳木斯市', N'桦南县', N'230822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1182, N'黑龙江省', N'佳木斯市', N'依兰县', N'230823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1183, N'黑龙江省', N'佳木斯市', N'集贤县', N'230825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1184, N'黑龙江省', N'佳木斯市', N'桦川县', N'230826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1185, N'黑龙江省', N'佳木斯市', N'宝清县', N'230827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1186, N'黑龙江省', N'佳木斯市', N'汤原县', N'230828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1187, N'黑龙江省', N'佳木斯市', N'绥滨县', N'230829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1188, N'黑龙江省', N'佳木斯市', N'萝北县', N'230830'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1189, N'黑龙江省', N'佳木斯市', N'同江县', N'230831'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1190, N'黑龙江省', N'佳木斯市', N'饶河县', N'230832'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1191, N'黑龙江省', N'佳木斯市', N'抚远县', N'230833'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1192, N'黑龙江省', N'佳木斯市', N'友谊县', N'230834'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1193, N'黑龙江省', N'佳木斯市', N'同江市', N'230881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1194, N'黑龙江省', N'佳木斯市', N'富锦市', N'230882'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1195, N'黑龙江省', N'七台河市', N'市辖区', N'230901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1196, N'黑龙江省', N'七台河市', N'新兴区', N'230902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1197, N'黑龙江省', N'七台河市', N'桃山区', N'230903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1198, N'黑龙江省', N'七台河市', N'茄子河区', N'230904'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1199, N'黑龙江省', N'七台河市', N'勃利县', N'230921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1200, N'黑龙江省', N'牡丹江市', N'市辖区', N'231001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1201, N'黑龙江省', N'牡丹江市', N'东安区', N'231002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1202, N'黑龙江省', N'牡丹江市', N'阳明区', N'231003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1203, N'黑龙江省', N'牡丹江市', N'爱民区', N'231004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1204, N'黑龙江省', N'牡丹江市', N'西安区', N'231005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1205, N'黑龙江省', N'牡丹江市', N'郊区', N'231011'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1206, N'黑龙江省', N'牡丹江市', N'绥芬河市', N'231020'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1207, N'黑龙江省', N'牡丹江市', N'宁安县', N'231021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1208, N'黑龙江省', N'牡丹江市', N'海林县', N'231022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1209, N'黑龙江省', N'牡丹江市', N'穆棱县', N'231023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1210, N'黑龙江省', N'牡丹江市', N'东宁县', N'231024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1211, N'黑龙江省', N'牡丹江市', N'林口县', N'231025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1212, N'黑龙江省', N'牡丹江市', N'密山县', N'231026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1213, N'黑龙江省', N'牡丹江市', N'虎林县', N'231027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1214, N'黑龙江省', N'牡丹江市', N'绥芬河市', N'231081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1215, N'黑龙江省', N'牡丹江市', N'密山市', N'231082'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1216, N'黑龙江省', N'牡丹江市', N'海林市', N'231083'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1217, N'黑龙江省', N'牡丹江市', N'宁安市', N'231084'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1218, N'黑龙江省', N'牡丹江市', N'穆棱市', N'231085'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1219, N'黑龙江省', N'黑河市', N'市辖区', N'231101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1220, N'黑龙江省', N'黑河市', N'爱辉区', N'231102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1221, N'黑龙江省', N'黑河市', N'嫩江县', N'231121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1222, N'黑龙江省', N'黑河市', N'逊克县', N'231123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1223, N'黑龙江省', N'黑河市', N'孙吴县', N'231124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1224, N'黑龙江省', N'黑河市', N'北安市', N'231181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1225, N'黑龙江省', N'黑河市', N'五大连池市', N'231182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1226, N'黑龙江省', N'绥化市', N'市辖区', N'231201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1227, N'黑龙江省', N'绥化市', N'北林区', N'231202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1228, N'黑龙江省', N'绥化市', N'望奎县', N'231221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1229, N'黑龙江省', N'绥化市', N'兰西县', N'231222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1230, N'黑龙江省', N'绥化市', N'青冈县', N'231223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1231, N'黑龙江省', N'绥化市', N'庆安县', N'231224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1232, N'黑龙江省', N'绥化市', N'明水县', N'231225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1233, N'黑龙江省', N'绥化市', N'绥棱县', N'231226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1234, N'黑龙江省', N'绥化市', N'安达市', N'231281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1235, N'黑龙江省', N'绥化市', N'肇东市', N'231282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1236, N'黑龙江省', N'绥化市', N'海伦市', N'231283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1237, N'黑龙江省', N'松花江地区', N'双城市', N'232101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1238, N'黑龙江省', N'松花江地区', N'尚志市', N'232102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1239, N'黑龙江省', N'松花江地区', N'五常市', N'232103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1240, N'黑龙江省', N'松花江地区', N'阿城市', N'232121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1241, N'黑龙江省', N'松花江地区', N'宾县', N'232122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1242, N'黑龙江省', N'松花江地区', N'呼兰县', N'232123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1243, N'黑龙江省', N'松花江地区', N'双城市', N'232124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1244, N'黑龙江省', N'松花江地区', N'五常市', N'232125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1245, N'黑龙江省', N'松花江地区', N'巴彦县', N'232126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1246, N'黑龙江省', N'松花江地区', N'木兰县', N'232127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1247, N'黑龙江省', N'松花江地区', N'通河县', N'232128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1248, N'黑龙江省', N'松花江地区', N'尚志市', N'232129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1249, N'黑龙江省', N'松花江地区', N'方正县', N'232130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1250, N'黑龙江省', N'松花江地区', N'延寿县', N'232131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1251, N'黑龙江省', N'绥化地区', N'绥化市', N'232301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1252, N'黑龙江省', N'绥化地区', N'安达市', N'232302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1253, N'黑龙江省', N'绥化地区', N'肇东市', N'232303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1254, N'黑龙江省', N'绥化地区', N'海伦市', N'232304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1255, N'黑龙江省', N'绥化地区', N'海伦县', N'232321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1256, N'黑龙江省', N'绥化地区', N'肇东县', N'232322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1257, N'黑龙江省', N'绥化地区', N'绥化县', N'232323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1258, N'黑龙江省', N'绥化地区', N'望奎县', N'232324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1259, N'黑龙江省', N'绥化地区', N'兰西县', N'232325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1260, N'黑龙江省', N'绥化地区', N'青冈县', N'232326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1261, N'黑龙江省', N'绥化地区', N'安达县', N'232327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1262, N'黑龙江省', N'绥化地区', N'肇源县', N'232328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1263, N'黑龙江省', N'绥化地区', N'肇州县', N'232329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1264, N'黑龙江省', N'绥化地区', N'庆安县', N'232330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1265, N'黑龙江省', N'绥化地区', N'明水县', N'232331'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1266, N'黑龙江省', N'绥化地区', N'绥棱县', N'232332'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1267, N'黑龙江省', N'佳木斯地区', N'佳木斯市', N'232401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1268, N'黑龙江省', N'佳木斯地区', N'富锦县', N'232421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1269, N'黑龙江省', N'佳木斯地区', N'桦南县', N'232422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1270, N'黑龙江省', N'佳木斯地区', N'依兰县', N'232423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1271, N'黑龙江省', N'佳木斯地区', N'勃利县', N'232424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1272, N'黑龙江省', N'佳木斯地区', N'集贤县', N'232425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1273, N'黑龙江省', N'佳木斯地区', N'桦川县', N'232426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1274, N'黑龙江省', N'佳木斯地区', N'宝清县', N'232427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1275, N'黑龙江省', N'佳木斯地区', N'汤原县', N'232428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1276, N'黑龙江省', N'佳木斯地区', N'绥滨县', N'232429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1277, N'黑龙江省', N'佳木斯地区', N'萝北县', N'232430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1278, N'黑龙江省', N'佳木斯地区', N'同江县', N'232431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1279, N'黑龙江省', N'佳木斯地区', N'饶河县', N'232432'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1280, N'黑龙江省', N'佳木斯地区', N'抚远县', N'232433'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1281, N'黑龙江省', N'牡丹江地区', N'牡丹江市', N'232501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1282, N'黑龙江省', N'牡丹江地区', N'绥芬河市', N'232502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1283, N'黑龙江省', N'牡丹江地区', N'宁安县', N'232521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1284, N'黑龙江省', N'牡丹江地区', N'海林县', N'232522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1285, N'黑龙江省', N'牡丹江地区', N'穆棱县', N'232523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1286, N'黑龙江省', N'牡丹江地区', N'东宁县', N'232524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1287, N'黑龙江省', N'牡丹江地区', N'林口县', N'232525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1288, N'黑龙江省', N'牡丹江地区', N'鸡东县', N'232526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1289, N'黑龙江省', N'牡丹江地区', N'密山县', N'232527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1290, N'黑龙江省', N'牡丹江地区', N'虎林县', N'232528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1291, N'黑龙江省', N'黑河地区', N'黑河市', N'232601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1292, N'黑龙江省', N'黑河地区', N'北安市', N'232602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1293, N'黑龙江省', N'黑河地区', N'五大连池市', N'232603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1294, N'黑龙江省', N'黑河地区', N'北安县', N'232621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1295, N'黑龙江省', N'黑河地区', N'嫩江县', N'232622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1296, N'黑龙江省', N'黑河地区', N'德都县', N'232623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1297, N'黑龙江省', N'黑河地区', N'逊克县', N'232625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1298, N'黑龙江省', N'黑河地区', N'孙吴县', N'232626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1299, N'黑龙江省', N'大兴安岭地区', N'加格达奇区', N'232701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1300, N'黑龙江省', N'大兴安岭地区', N'呼玛县', N'232721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1301, N'黑龙江省', N'大兴安岭地区', N'塔河县', N'232722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1302, N'黑龙江省', N'大兴安岭地区', N'漠河县', N'232723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1303, N'黑龙江省', N'大兴安岭地区', N'漠河县', N'232724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1304, N'黑龙江省', NULL, N'绥芬河市', N'239001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1305, N'黑龙江省', NULL, N'阿城市', N'239002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1306, N'黑龙江省', NULL, N'同江市', N'239003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1307, N'黑龙江省', NULL, N'富锦市', N'239004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1308, N'黑龙江省', NULL, N'铁力市', N'239005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1309, N'黑龙江省', NULL, N'密山市', N'239006'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1310, N'上海市', NULL, N'黄浦区', N'310101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1311, N'上海市', NULL, N'南市区', N'310102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1312, N'上海市', NULL, N'卢湾区', N'310103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1313, N'上海市', NULL, N'徐汇区', N'310104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1314, N'上海市', NULL, N'长宁区', N'310105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1315, N'上海市', NULL, N'静安区', N'310106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1316, N'上海市', NULL, N'普陀区', N'310107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1317, N'上海市', NULL, N'闸北区', N'310108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1318, N'上海市', NULL, N'虹口区', N'310109'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1319, N'上海市', NULL, N'杨浦区', N'310110'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1320, N'上海市', NULL, N'吴凇区', N'310111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1321, N'上海市', NULL, N'闵行区', N'310112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1322, N'上海市', NULL, N'宝山区', N'310113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1323, N'上海市', NULL, N'嘉定区', N'310114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1324, N'上海市', NULL, N'浦东新区', N'310115'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1325, N'上海市', NULL, N'金山区', N'310116'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1326, N'上海市', NULL, N'松江区', N'310117'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1327, N'上海市', NULL, N'青浦区', N'310118'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1328, N'上海市', NULL, N'南汇区', N'310119'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1329, N'上海市', NULL, N'奉贤区', N'310120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1330, N'上海市', NULL, N'上海县', N'310221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1331, N'上海市', NULL, N'嘉定县', N'310222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1332, N'上海市', NULL, N'宝山县', N'310223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1333, N'上海市', NULL, N'川沙县', N'310224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1334, N'上海市', NULL, N'南汇县', N'310225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1335, N'上海市', NULL, N'奉贤县', N'310226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1336, N'上海市', NULL, N'松江县', N'310227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1337, N'上海市', NULL, N'金山县', N'310228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1338, N'上海市', NULL, N'青浦县', N'310229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1339, N'上海市', NULL, N'崇明县', N'310230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1340, N'江苏省', N'南京市', N'市辖区', N'320101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1341, N'江苏省', N'南京市', N'玄武区', N'320102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1342, N'江苏省', N'南京市', N'白下区', N'320103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1343, N'江苏省', N'南京市', N'秦淮区', N'320104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1344, N'江苏省', N'南京市', N'建邺区', N'320105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1345, N'江苏省', N'南京市', N'鼓楼区', N'320106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1346, N'江苏省', N'南京市', N'下关区', N'320107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1347, N'江苏省', N'南京市', N'浦口区', N'320111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1348, N'江苏省', N'南京市', N'大厂区', N'320112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1349, N'江苏省', N'南京市', N'栖霞区', N'320113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1350, N'江苏省', N'南京市', N'雨花台区', N'320114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1351, N'江苏省', N'南京市', N'江宁区', N'320115'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1352, N'江苏省', N'南京市', N'六合区', N'320116'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1353, N'江苏省', N'南京市', N'市区', N'320120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1354, N'江苏省', N'南京市', N'江宁县', N'320121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1355, N'江苏省', N'南京市', N'江浦县', N'320122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1356, N'江苏省', N'南京市', N'六合县', N'320123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1357, N'江苏省', N'南京市', N'溧水县', N'320124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1358, N'江苏省', N'南京市', N'高淳县', N'320125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1359, N'江苏省', N'南京市', N'江都县', N'320126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1360, N'江苏省', N'无锡市', N'市辖区', N'320201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1361, N'江苏省', N'无锡市', N'崇安区', N'320202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1362, N'江苏省', N'无锡市', N'南长区', N'320203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1363, N'江苏省', N'无锡市', N'北塘区', N'320204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1364, N'江苏省', N'无锡市', N'锡山区', N'320205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1365, N'江苏省', N'无锡市', N'惠山区', N'320206'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1366, N'江苏省', N'无锡市', N'郊区', N'320211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1367, N'江苏省', N'无锡市', N'马山区', N'320212'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1368, N'江苏省', N'无锡市', N'江阴县', N'320219'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1369, N'江苏省', N'无锡市', N'江阴县', N'320221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1370, N'江苏省', N'无锡市', N'无锡县', N'320222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1371, N'江苏省', N'无锡市', N'宜兴县', N'320223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1372, N'江苏省', N'无锡市', N'江阴市', N'320281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1373, N'江苏省', N'无锡市', N'宜兴市', N'320282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1374, N'江苏省', N'无锡市', N'锡山市', N'320283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1375, N'江苏省', N'徐州市', N'市辖区', N'320301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1376, N'江苏省', N'徐州市', N'鼓楼区', N'320302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1377, N'江苏省', N'徐州市', N'云龙区', N'320303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1378, N'江苏省', N'徐州市', N'九里区', N'320304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1379, N'江苏省', N'徐州市', N'贾汪区', N'320305'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1380, N'江苏省', N'徐州市', N'泉山区', N'320311'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1381, N'江苏省', N'徐州市', N'丰县', N'320321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1382, N'江苏省', N'徐州市', N'沛县', N'320322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1383, N'江苏省', N'徐州市', N'铜山县', N'320323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1384, N'江苏省', N'徐州市', N'睢宁县', N'320324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1385, N'江苏省', N'徐州市', N'邳县', N'320325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1386, N'江苏省', N'徐州市', N'新沂县', N'320326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1387, N'江苏省', N'徐州市', N'新沂市', N'320381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1388, N'江苏省', N'徐州市', N'邳州市', N'320382'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1389, N'江苏省', N'常州市', N'市辖区', N'320401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1390, N'江苏省', N'常州市', N'天宁区', N'320402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1391, N'江苏省', N'常州市', N'钟楼区', N'320404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1392, N'江苏省', N'常州市', N'戚墅堰区', N'320405'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1393, N'江苏省', N'常州市', N'郊区', N'320411'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1394, N'江苏省', N'常州市', N'武进区', N'320412'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1395, N'江苏省', N'常州市', N'武进市', N'320419'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1396, N'江苏省', N'常州市', N'武进县', N'320421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1397, N'江苏省', N'常州市', N'金坛县', N'320422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1398, N'江苏省', N'常州市', N'溧阳县', N'320423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1399, N'江苏省', N'常州市', N'溧阳市', N'320481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1400, N'江苏省', N'常州市', N'金坛市', N'320482'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1401, N'江苏省', N'常州市', N'武进市', N'320483'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1402, N'江苏省', N'苏州市', N'市辖区', N'320501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1403, N'江苏省', N'苏州市', N'沧浪区', N'320502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1404, N'江苏省', N'苏州市', N'平江区', N'320503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1405, N'江苏省', N'苏州市', N'金阊区', N'320504'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1406, N'江苏省', N'苏州市', N'虎丘区', N'320505'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1407, N'江苏省', N'苏州市', N'吴中区', N'320506'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1408, N'江苏省', N'苏州市', N'相城区', N'320507'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1409, N'江苏省', N'苏州市', N'郊区', N'320511'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1410, N'江苏省', N'苏州市', N'常熟市', N'320520'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1411, N'江苏省', N'苏州市', N'沙洲县', N'320521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1412, N'江苏省', N'苏州市', N'太仓县', N'320522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1413, N'江苏省', N'苏州市', N'昆山县', N'320523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1414, N'江苏省', N'苏州市', N'吴县', N'320524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1415, N'江苏省', N'苏州市', N'吴江县', N'320525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1416, N'江苏省', N'苏州市', N'常熟市', N'320581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1417, N'江苏省', N'苏州市', N'张家港市', N'320582'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1418, N'江苏省', N'苏州市', N'昆山市', N'320583'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1419, N'江苏省', N'苏州市', N'吴江市', N'320584'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1420, N'江苏省', N'苏州市', N'太仓市', N'320585'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1421, N'江苏省', N'苏州市', N'吴县市', N'320586'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1422, N'江苏省', N'南通市', N'市辖区', N'320601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1423, N'江苏省', N'南通市', N'崇川区', N'320602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1424, N'江苏省', N'南通市', N'港闸区', N'320611'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1425, N'江苏省', N'南通市', N'海安县', N'320621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1426, N'江苏省', N'南通市', N'如皋县', N'320622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1427, N'江苏省', N'南通市', N'如东县', N'320623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1428, N'江苏省', N'南通市', N'南通县', N'320624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1429, N'江苏省', N'南通市', N'海门县', N'320625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1430, N'江苏省', N'南通市', N'启东县', N'320626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1431, N'江苏省', N'南通市', N'启东市', N'320681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1432, N'江苏省', N'南通市', N'如皋市', N'320682'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1433, N'江苏省', N'南通市', N'通州市', N'320683'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1434, N'江苏省', N'南通市', N'海门市', N'320684'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1435, N'江苏省', N'连云港市', N'市辖区', N'320701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1436, N'江苏省', N'连云港市', N'连云区', N'320703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1437, N'江苏省', N'连云港市', N'云台区', N'320704'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1438, N'江苏省', N'连云港市', N'新浦区', N'320705'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1439, N'江苏省', N'连云港市', N'海州区', N'320706'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1440, N'江苏省', N'连云港市', N'赣榆县', N'320721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1441, N'江苏省', N'连云港市', N'东海县', N'320722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1442, N'江苏省', N'连云港市', N'灌云县', N'320723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1443, N'江苏省', N'连云港市', N'灌南县', N'320724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1444, N'江苏省', N'淮安市', N'市辖区', N'320801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1445, N'江苏省', N'淮安市', N'清河区', N'320802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1446, N'江苏省', N'淮安市', N'楚州区', N'320803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1447, N'江苏省', N'淮安市', N'淮阴区', N'320804'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1448, N'江苏省', N'淮安市', N'清浦区', N'320811'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1449, N'江苏省', N'淮安市', N'宿迁市', N'320819'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1450, N'江苏省', N'淮安市', N'淮阴县', N'320821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1451, N'江苏省', N'淮安市', N'灌南县', N'320822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1452, N'江苏省', N'淮安市', N'沭阳县', N'320823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1453, N'江苏省', N'淮安市', N'宿迁县', N'320824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1454, N'江苏省', N'淮安市', N'泗阳县', N'320825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1455, N'江苏省', N'淮安市', N'涟水县', N'320826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1456, N'江苏省', N'淮安市', N'泗洪县', N'320827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1457, N'江苏省', N'淮安市', N'淮安县', N'320828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1458, N'江苏省', N'淮安市', N'洪泽县', N'320829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1459, N'江苏省', N'淮安市', N'盱眙县', N'320830'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1460, N'江苏省', N'淮安市', N'金湖县', N'320831'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1461, N'江苏省', N'淮安市', N'宿迁市', N'320881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1462, N'江苏省', N'淮安市', N'淮安市', N'320882'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1463, N'江苏省', N'盐城市', N'市辖区', N'320901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1464, N'江苏省', N'盐城市', N'城区', N'320902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1465, N'江苏省', N'盐城市', N'盐都区', N'320903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1466, N'江苏省', N'盐城市', N'郊区', N'320911'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1467, N'江苏省', N'盐城市', N'东台市', N'320919'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1468, N'江苏省', N'盐城市', N'响水县', N'320921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1469, N'江苏省', N'盐城市', N'滨海县', N'320922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1470, N'江苏省', N'盐城市', N'阜宁县', N'320923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1471, N'江苏省', N'盐城市', N'射阳县', N'320924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1472, N'江苏省', N'盐城市', N'建湖县', N'320925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1473, N'江苏省', N'盐城市', N'大丰县', N'320926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1474, N'江苏省', N'盐城市', N'东台县', N'320927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1475, N'江苏省', N'盐城市', N'盐都县', N'320928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1476, N'江苏省', N'盐城市', N'东台市', N'320981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1477, N'江苏省', N'盐城市', N'大丰市', N'320982'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1478, N'江苏省', N'扬州市', N'市辖区', N'321001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1479, N'江苏省', N'扬州市', N'广陵区', N'321002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1480, N'江苏省', N'扬州市', N'邗江区', N'321003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1481, N'江苏省', N'扬州市', N'郊区', N'321011'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1482, N'江苏省', N'扬州市', N'仪征市', N'321019'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1483, N'江苏省', N'扬州市', N'泰州市', N'321020'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1484, N'江苏省', N'扬州市', N'兴化县', N'321021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1485, N'江苏省', N'扬州市', N'高邮县', N'321022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1486, N'江苏省', N'扬州市', N'宝应县', N'321023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1487, N'江苏省', N'扬州市', N'靖江县', N'321024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1488, N'江苏省', N'扬州市', N'泰兴县', N'321025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1489, N'江苏省', N'扬州市', N'江都县', N'321026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1490, N'江苏省', N'扬州市', N'邗江县', N'321027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1491, N'江苏省', N'扬州市', N'泰县', N'321028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1492, N'江苏省', N'扬州市', N'仪征县', N'321029'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1493, N'江苏省', N'扬州市', N'仪征市', N'321081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1494, N'江苏省', N'扬州市', N'泰州市', N'321082'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1495, N'江苏省', N'扬州市', N'兴化市', N'321083'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1377, N'江苏省', N'徐州市', N'云龙区', N'320303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1378, N'江苏省', N'徐州市', N'九里区', N'320304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1379, N'江苏省', N'徐州市', N'贾汪区', N'320305'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1380, N'江苏省', N'徐州市', N'泉山区', N'320311'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1381, N'江苏省', N'徐州市', N'丰县', N'320321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1382, N'江苏省', N'徐州市', N'沛县', N'320322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1383, N'江苏省', N'徐州市', N'铜山县', N'320323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1384, N'江苏省', N'徐州市', N'睢宁县', N'320324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1385, N'江苏省', N'徐州市', N'邳县', N'320325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1386, N'江苏省', N'徐州市', N'新沂县', N'320326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1387, N'江苏省', N'徐州市', N'新沂市', N'320381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1388, N'江苏省', N'徐州市', N'邳州市', N'320382'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1389, N'江苏省', N'常州市', N'市辖区', N'320401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1390, N'江苏省', N'常州市', N'天宁区', N'320402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1391, N'江苏省', N'常州市', N'钟楼区', N'320404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1392, N'江苏省', N'常州市', N'戚墅堰区', N'320405'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1393, N'江苏省', N'常州市', N'郊区', N'320411'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1394, N'江苏省', N'常州市', N'武进区', N'320412'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1395, N'江苏省', N'常州市', N'武进市', N'320419'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1396, N'江苏省', N'常州市', N'武进县', N'320421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1397, N'江苏省', N'常州市', N'金坛县', N'320422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1398, N'江苏省', N'常州市', N'溧阳县', N'320423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1399, N'江苏省', N'常州市', N'溧阳市', N'320481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1400, N'江苏省', N'常州市', N'金坛市', N'320482'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1401, N'江苏省', N'常州市', N'武进市', N'320483'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1402, N'江苏省', N'苏州市', N'市辖区', N'320501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1403, N'江苏省', N'苏州市', N'沧浪区', N'320502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1404, N'江苏省', N'苏州市', N'平江区', N'320503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1405, N'江苏省', N'苏州市', N'金阊区', N'320504'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1406, N'江苏省', N'苏州市', N'虎丘区', N'320505'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1407, N'江苏省', N'苏州市', N'吴中区', N'320506'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1408, N'江苏省', N'苏州市', N'相城区', N'320507'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1409, N'江苏省', N'苏州市', N'郊区', N'320511'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1410, N'江苏省', N'苏州市', N'常熟市', N'320520'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1411, N'江苏省', N'苏州市', N'沙洲县', N'320521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1412, N'江苏省', N'苏州市', N'太仓县', N'320522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1413, N'江苏省', N'苏州市', N'昆山县', N'320523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1414, N'江苏省', N'苏州市', N'吴县', N'320524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1415, N'江苏省', N'苏州市', N'吴江县', N'320525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1416, N'江苏省', N'苏州市', N'常熟市', N'320581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1417, N'江苏省', N'苏州市', N'张家港市', N'320582'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1418, N'江苏省', N'苏州市', N'昆山市', N'320583'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1419, N'江苏省', N'苏州市', N'吴江市', N'320584'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1420, N'江苏省', N'苏州市', N'太仓市', N'320585'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1421, N'江苏省', N'苏州市', N'吴县市', N'320586'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1422, N'江苏省', N'南通市', N'市辖区', N'320601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1423, N'江苏省', N'南通市', N'崇川区', N'320602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1424, N'江苏省', N'南通市', N'港闸区', N'320611'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1425, N'江苏省', N'南通市', N'海安县', N'320621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1426, N'江苏省', N'南通市', N'如皋县', N'320622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1427, N'江苏省', N'南通市', N'如东县', N'320623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1428, N'江苏省', N'南通市', N'南通县', N'320624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1429, N'江苏省', N'南通市', N'海门县', N'320625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1430, N'江苏省', N'南通市', N'启东县', N'320626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1431, N'江苏省', N'南通市', N'启东市', N'320681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1432, N'江苏省', N'南通市', N'如皋市', N'320682'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1433, N'江苏省', N'南通市', N'通州市', N'320683'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1434, N'江苏省', N'南通市', N'海门市', N'320684'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1435, N'江苏省', N'连云港市', N'市辖区', N'320701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1436, N'江苏省', N'连云港市', N'连云区', N'320703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1437, N'江苏省', N'连云港市', N'云台区', N'320704'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1438, N'江苏省', N'连云港市', N'新浦区', N'320705'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1439, N'江苏省', N'连云港市', N'海州区', N'320706'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1440, N'江苏省', N'连云港市', N'赣榆县', N'320721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1441, N'江苏省', N'连云港市', N'东海县', N'320722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1442, N'江苏省', N'连云港市', N'灌云县', N'320723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1443, N'江苏省', N'连云港市', N'灌南县', N'320724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1444, N'江苏省', N'淮安市', N'市辖区', N'320801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1445, N'江苏省', N'淮安市', N'清河区', N'320802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1446, N'江苏省', N'淮安市', N'楚州区', N'320803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1447, N'江苏省', N'淮安市', N'淮阴区', N'320804'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1448, N'江苏省', N'淮安市', N'清浦区', N'320811'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1449, N'江苏省', N'淮安市', N'宿迁市', N'320819'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1450, N'江苏省', N'淮安市', N'淮阴县', N'320821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1451, N'江苏省', N'淮安市', N'灌南县', N'320822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1452, N'江苏省', N'淮安市', N'沭阳县', N'320823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1453, N'江苏省', N'淮安市', N'宿迁县', N'320824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1454, N'江苏省', N'淮安市', N'泗阳县', N'320825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1455, N'江苏省', N'淮安市', N'涟水县', N'320826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1456, N'江苏省', N'淮安市', N'泗洪县', N'320827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1457, N'江苏省', N'淮安市', N'淮安县', N'320828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1458, N'江苏省', N'淮安市', N'洪泽县', N'320829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1459, N'江苏省', N'淮安市', N'盱眙县', N'320830'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1460, N'江苏省', N'淮安市', N'金湖县', N'320831'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1461, N'江苏省', N'淮安市', N'宿迁市', N'320881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1462, N'江苏省', N'淮安市', N'淮安市', N'320882'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1463, N'江苏省', N'盐城市', N'市辖区', N'320901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1464, N'江苏省', N'盐城市', N'城区', N'320902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1465, N'江苏省', N'盐城市', N'盐都区', N'320903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1466, N'江苏省', N'盐城市', N'郊区', N'320911'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1467, N'江苏省', N'盐城市', N'东台市', N'320919'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1468, N'江苏省', N'盐城市', N'响水县', N'320921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1469, N'江苏省', N'盐城市', N'滨海县', N'320922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1470, N'江苏省', N'盐城市', N'阜宁县', N'320923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1471, N'江苏省', N'盐城市', N'射阳县', N'320924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1472, N'江苏省', N'盐城市', N'建湖县', N'320925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1473, N'江苏省', N'盐城市', N'大丰县', N'320926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1474, N'江苏省', N'盐城市', N'东台县', N'320927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1475, N'江苏省', N'盐城市', N'盐都县', N'320928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1476, N'江苏省', N'盐城市', N'东台市', N'320981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1477, N'江苏省', N'盐城市', N'大丰市', N'320982'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1478, N'江苏省', N'扬州市', N'市辖区', N'321001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1479, N'江苏省', N'扬州市', N'广陵区', N'321002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1480, N'江苏省', N'扬州市', N'邗江区', N'321003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1481, N'江苏省', N'扬州市', N'郊区', N'321011'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1482, N'江苏省', N'扬州市', N'仪征市', N'321019'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1483, N'江苏省', N'扬州市', N'泰州市', N'321020'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1484, N'江苏省', N'扬州市', N'兴化县', N'321021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1485, N'江苏省', N'扬州市', N'高邮县', N'321022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1486, N'江苏省', N'扬州市', N'宝应县', N'321023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1487, N'江苏省', N'扬州市', N'靖江县', N'321024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1488, N'江苏省', N'扬州市', N'泰兴县', N'321025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1489, N'江苏省', N'扬州市', N'江都县', N'321026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1490, N'江苏省', N'扬州市', N'邗江县', N'321027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1491, N'江苏省', N'扬州市', N'泰县', N'321028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1492, N'江苏省', N'扬州市', N'仪征县', N'321029'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1493, N'江苏省', N'扬州市', N'仪征市', N'321081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1494, N'江苏省', N'扬州市', N'泰州市', N'321082'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1495, N'江苏省', N'扬州市', N'兴化市', N'321083'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2991, N'湖北省', N'咸宁市', N'市辖区', N'421201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2992, N'湖北省', N'咸宁市', N'咸安区', N'421202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2993, N'湖北省', N'咸宁市', N'嘉鱼县', N'421221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2994, N'湖北省', N'咸宁市', N'通城县', N'421222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2995, N'湖北省', N'咸宁市', N'崇阳县', N'421223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2996, N'湖北省', N'咸宁市', N'通山县', N'421224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2997, N'湖北省', N'咸宁市', N'赤壁市', N'421281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2998, N'湖北省', N'随州市', N'市辖区', N'421301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2999, N'湖北省', N'随州市', N'曾都区', N'421302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3000, N'湖北省', N'随州市', N'广水市', N'421381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3001, N'湖北省', N'黄冈地区', N'鄂州市', N'422101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3002, N'湖北省', N'黄冈地区', N'武穴市', N'422102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3003, N'湖北省', N'黄冈地区', N'黄州市', N'422103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3004, N'湖北省', N'黄冈地区', N'黄冈县', N'422121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3005, N'湖北省', N'黄冈地区', N'新洲县', N'422122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3006, N'湖北省', N'黄冈地区', N'红安县', N'422123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3007, N'湖北省', N'黄冈地区', N'麻城县', N'422124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2991, N'湖北省', N'咸宁市', N'市辖区', N'421201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2992, N'湖北省', N'咸宁市', N'咸安区', N'421202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2993, N'湖北省', N'咸宁市', N'嘉鱼县', N'421221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2994, N'湖北省', N'咸宁市', N'通城县', N'421222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2995, N'湖北省', N'咸宁市', N'崇阳县', N'421223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2996, N'湖北省', N'咸宁市', N'通山县', N'421224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2997, N'湖北省', N'咸宁市', N'赤壁市', N'421281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2998, N'湖北省', N'随州市', N'市辖区', N'421301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2999, N'湖北省', N'随州市', N'曾都区', N'421302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3000, N'湖北省', N'随州市', N'广水市', N'421381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3001, N'湖北省', N'黄冈地区', N'鄂州市', N'422101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3002, N'湖北省', N'黄冈地区', N'武穴市', N'422102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3003, N'湖北省', N'黄冈地区', N'黄州市', N'422103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3004, N'湖北省', N'黄冈地区', N'黄冈县', N'422121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3005, N'湖北省', N'黄冈地区', N'新洲县', N'422122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3006, N'湖北省', N'黄冈地区', N'红安县', N'422123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3007, N'湖北省', N'黄冈地区', N'麻城县', N'422124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3008, N'湖北省', N'黄冈地区', N'罗田县', N'422125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3009, N'湖北省', N'黄冈地区', N'英山县', N'422126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3010, N'湖北省', N'黄冈地区', N'浠水县', N'422127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3011, N'湖北省', N'黄冈地区', N'蕲春县', N'422128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3012, N'湖北省', N'黄冈地区', N'广济县', N'422129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3013, N'湖北省', N'黄冈地区', N'黄梅县', N'422130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3014, N'湖北省', N'黄冈地区', N'鄂城县', N'422131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3015, N'湖北省', N'孝感地区', N'孝感市', N'422201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3016, N'湖北省', N'孝感地区', N'应城市', N'422202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3017, N'湖北省', N'孝感地区', N'安陆市', N'422203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3018, N'湖北省', N'孝感地区', N'广水市', N'422204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3019, N'湖北省', N'孝感地区', N'孝感县', N'422221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3020, N'湖北省', N'孝感地区', N'黄陂县', N'422222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3021, N'湖北省', N'孝感地区', N'大悟县', N'422223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3022, N'湖北省', N'孝感地区', N'应山县', N'422224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3023, N'湖北省', N'孝感地区', N'安陆县', N'422225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3024, N'湖北省', N'孝感地区', N'云梦县', N'422226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3025, N'湖北省', N'孝感地区', N'应城县', N'422227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3026, N'湖北省', N'孝感地区', N'汉川县', N'422228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3027, N'湖北省', N'省直辖行政单位', N'神农架林区', N'422921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3028, N'湖北省', N'省直辖行政单位', N'随州市', N'429001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3029, N'湖北省', N'省直辖行政单位', N'枣阳市', N'429003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3030, N'湖北省', N'省直辖行政单位', N'仙桃市', N'429004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3031, N'湖北省', N'省直辖行政单位', N'潜江市', N'429005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3032, N'湖北省', N'省直辖行政单位', N'天门市', N'429006'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3033, N'湖北省', N'省直辖行政单位', N'神农架林区', N'429021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3034, N'湖北省', N'武汉市', N'市辖区', N'420101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3035, N'湖北省', N'武汉市', N'江岸区', N'420102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3036, N'湖北省', N'武汉市', N'江汉区', N'420103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3037, N'湖北省', N'武汉市', N'乔口区', N'420104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3038, N'湖北省', N'武汉市', N'汉阳区', N'420105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3039, N'湖北省', N'武汉市', N'武昌区', N'420106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3040, N'湖北省', N'武汉市', N'青山区', N'420107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3041, N'湖北省', N'武汉市', N'东湖管理分局', N'420109'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3042, N'湖北省', N'武汉市', N'洪山区', N'420111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3043, N'湖北省', N'武汉市', N'东西湖区', N'420112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3044, N'湖北省', N'武汉市', N'汉南区', N'420113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3045, N'湖北省', N'武汉市', N'蔡甸区', N'420114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3046, N'湖北省', N'武汉市', N'江夏区', N'420115'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3047, N'湖北省', N'武汉市', N'黄陂区', N'420116'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3048, N'湖北省', N'武汉市', N'新洲区', N'420117'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3049, N'湖北省', N'武汉市', N'蔡甸区', N'420121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3050, N'湖北省', N'武汉市', N'江夏区', N'420122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3051, N'湖北省', N'武汉市', N'黄陂区', N'420123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3052, N'湖北省', N'武汉市', N'新洲县', N'420124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3053, N'湖北省', N'黄石市', N'市辖区', N'420201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3054, N'湖北省', N'黄石市', N'黄石港区', N'420202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3055, N'湖北省', N'黄石市', N'石灰窑区', N'420203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3056, N'湖北省', N'黄石市', N'下陆区', N'420204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3057, N'湖北省', N'黄石市', N'铁山区', N'420205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3058, N'湖北省', N'黄石市', N'市区', N'420220'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3059, N'湖北省', N'黄石市', N'大冶县', N'420221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3060, N'湖北省', N'黄石市', N'阳新县', N'420222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3061, N'湖北省', N'黄石市', N'大冶市', N'420281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3062, N'湖北省', N'十堰市', N'市辖区', N'420301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3063, N'湖北省', N'十堰市', N'茅箭区', N'420302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3064, N'湖北省', N'十堰市', N'张湾区', N'420303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3065, N'湖北省', N'十堰市', N'郧县', N'420321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3066, N'湖北省', N'十堰市', N'郧西县', N'420322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3067, N'湖北省', N'十堰市', N'竹山县', N'420323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3068, N'湖北省', N'十堰市', N'竹溪县', N'420324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3069, N'湖北省', N'十堰市', N'房县', N'420325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3070, N'湖北省', N'十堰市', N'丹江口市', N'420381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3071, N'湖北省', N'咸宁地区', N'咸宁市', N'422301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3072, N'湖北省', N'咸宁地区', N'赤壁市', N'422302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3073, N'湖北省', N'咸宁地区', N'咸宁县', N'422321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3074, N'湖北省', N'咸宁地区', N'嘉鱼县', N'422322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3075, N'湖北省', N'咸宁地区', N'蒲圻县', N'422323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3076, N'湖北省', N'咸宁地区', N'通城县', N'422324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3077, N'湖北省', N'咸宁地区', N'崇阳县', N'422325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3078, N'湖北省', N'咸宁地区', N'通山县', N'422326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3079, N'湖北省', N'咸宁地区', N'阳新县', N'422327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3080, N'湖北省', N'荆州地区', N'仙桃市', N'422401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3081, N'湖北省', N'荆州地区', N'石首市', N'422402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3082, N'湖北省', N'荆州地区', N'洪湖市', N'422403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3083, N'湖北省', N'荆州地区', N'天门市', N'422404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3084, N'湖北省', N'荆州地区', N'潜江市', N'422405'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3085, N'湖北省', N'荆州地区', N'钟祥市', N'422406'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3086, N'湖北省', N'荆州地区', N'江陵县', N'422421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3087, N'湖北省', N'荆州地区', N'松滋县', N'422422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3088, N'湖北省', N'荆州地区', N'公安县', N'422423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3089, N'湖北省', N'荆州地区', N'石首县', N'422424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3090, N'湖北省', N'荆州地区', N'监利县', N'422425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3091, N'湖北省', N'荆州地区', N'洪湖县', N'422426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3092, N'湖北省', N'荆州地区', N'沔阳县', N'422427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3093, N'湖北省', N'荆州地区', N'天门县', N'422428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3094, N'湖北省', N'荆州地区', N'潜江县', N'422429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3095, N'湖北省', N'荆州地区', N'荆门县', N'422430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3096, N'湖北省', N'荆州地区', N'钟祥县', N'422431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3097, N'湖北省', N'荆州地区', N'京山县', N'422432'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3098, N'湖北省', N'随州地区', N'随州市', N'422501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3099, N'湖北省', N'随州地区', N'老河口市', N'422502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3100, N'湖北省', N'随州地区', N'襄阳县', N'422521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3101, N'湖北省', N'随州地区', N'枣阳县', N'422522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3102, N'湖北省', N'随州地区', N'宜城县', N'422524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3103, N'湖北省', N'随州地区', N'南漳县', N'422525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3104, N'湖北省', N'随州地区', N'谷城县', N'422527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3105, N'湖北省', N'随州地区', N'保康县', N'422528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3106, N'湖北省', N'郧阳地区', N'丹江口市', N'422601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3107, N'湖北省', N'郧阳地区', N'郧县', N'422622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3108, N'湖北省', N'郧阳地区', N'郧西县', N'422623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3109, N'湖北省', N'郧阳地区', N'竹山县', N'422624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3110, N'湖北省', N'郧阳地区', N'竹溪县', N'422625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3111, N'湖北省', N'郧阳地区', N'房县', N'422626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3112, N'湖北省', N'郧阳地区', N'神农架林区', N'422627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3113, N'湖北省', N'宜昌地区', N'枝城市', N'422701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3114, N'湖北省', N'宜昌地区', N'当阳市', N'422702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3115, N'湖北省', N'宜昌地区', N'宜昌县', N'422721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3116, N'湖北省', N'宜昌地区', N'宜都县', N'422722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3117, N'湖北省', N'宜昌地区', N'枝江县', N'422723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3118, N'湖北省', N'宜昌地区', N'当阳县', N'422724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3119, N'湖北省', N'宜昌地区', N'远安县', N'422725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3120, N'湖北省', N'宜昌地区', N'兴山县', N'422726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3121, N'湖北省', N'宜昌地区', N'秭归县', N'422727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3122, N'湖北省', N'宜昌地区', N'长阳土家族自治县', N'422728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3123, N'湖北省', N'宜昌地区', N'五峰土家族自治县', N'422729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3124, N'湖北省', N'恩施土家族苗族自治州', N'恩施市', N'422801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3125, N'湖北省', N'恩施土家族苗族自治州', N'利川市', N'422802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3126, N'湖北省', N'恩施土家族苗族自治州', N'建始县', N'422822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3127, N'湖北省', N'恩施土家族苗族自治州', N'巴东县', N'422823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3128, N'湖北省', N'恩施土家族苗族自治州', N'宣恩县', N'422825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3129, N'湖北省', N'恩施土家族苗族自治州', N'咸丰县', N'422826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3130, N'湖北省', N'恩施土家族苗族自治州', N'来凤县', N'422827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3131, N'湖北省', N'恩施土家族苗族自治州', N'鹤峰县', N'422828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3132, N'湖北省', NULL, N'沙市', N'420400'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3133, N'湖北省', NULL, N'沙洋监狱管理局', N'423022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3134, N'湖南省', N'长沙市', N'市辖区', N'430101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3135, N'湖南省', N'长沙市', N'芙蓉区', N'430102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3136, N'湖南省', N'长沙市', N'天心区', N'430103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3137, N'湖南省', N'长沙市', N'岳麓区', N'430104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3138, N'湖南省', N'长沙市', N'开福区', N'430105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3139, N'湖南省', N'长沙市', N'雨花区', N'430111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3140, N'湖南省', N'长沙市', N'市区', N'430120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3141, N'湖南省', N'长沙市', N'长沙县', N'430121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3142, N'湖南省', N'长沙市', N'望城县', N'430122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3143, N'湖南省', N'长沙市', N'浏阳县', N'430123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3144, N'湖南省', N'长沙市', N'宁乡县', N'430124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3145, N'湖南省', N'长沙市', N'浏阳市', N'430181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3146, N'湖南省', N'株洲市', N'市辖区', N'430201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3147, N'湖南省', N'株洲市', N'荷塘区', N'430202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3148, N'湖南省', N'株洲市', N'芦淞区', N'430203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3149, N'湖南省', N'株洲市', N'石峰区', N'430204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3150, N'湖南省', N'株洲市', N'天元区', N'430211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3151, N'湖南省', N'株洲市', N'醴陵市', N'430219'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3152, N'湖南省', N'株洲市', N'市区', N'430220'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3153, N'湖南省', N'株洲市', N'株洲县', N'430221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3154, N'湖南省', N'株洲市', N'醴陵县', N'430222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3155, N'湖南省', N'株洲市', N'攸县', N'430223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3156, N'湖南省', N'株洲市', N'茶陵县', N'430224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3157, N'湖南省', N'株洲市', N'炎陵县', N'430225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3158, N'湖南省', N'株洲市', N'醴陵市', N'430281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3159, N'湖南省', N'湘潭市', N'市辖区', N'430301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3160, N'湖南省', N'湘潭市', N'雨湖区', N'430302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3161, N'湖南省', N'湘潭市', N'湘江区', N'430303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3162, N'湖南省', N'湘潭市', N'岳塘区', N'430304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3163, N'湖南省', N'湘潭市', N'板塘区', N'430305'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3164, N'湖南省', N'湘潭市', N'韶山区', N'430306'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3165, N'湖南省', N'湘潭市', N'郊区', N'430311'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3166, N'湖南省', N'湘潭市', N'韶山区', N'430312'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3167, N'湖南省', N'湘潭市', N'湘潭县', N'430321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3168, N'湖南省', N'湘潭市', N'湘乡县', N'430322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3169, N'湖南省', N'湘潭市', N'湘乡市', N'430381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3170, N'湖南省', N'湘潭市', N'韶山市', N'430382'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3171, N'湖南省', N'衡阳市', N'市辖区', N'430401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3172, N'湖南省', N'衡阳市', N'江东区', N'430402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3173, N'湖南省', N'衡阳市', N'城南区', N'430403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3174, N'湖南省', N'衡阳市', N'城北区', N'430404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3175, N'湖南省', N'衡阳市', N'珠晖区', N'430405'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3176, N'湖南省', N'衡阳市', N'雁峰区', N'430406'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3177, N'湖南省', N'衡阳市', N'石鼓区', N'430407'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3178, N'湖南省', N'衡阳市', N'蒸湘区', N'430408'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3179, N'湖南省', N'衡阳市', N'郊区', N'430411'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3180, N'湖南省', N'衡阳市', N'南岳区', N'430412'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3181, N'湖南省', N'衡阳市', N'耒阳市', N'430419'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3182, N'湖南省', N'衡阳市', N'衡阳县', N'430421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3183, N'湖南省', N'衡阳市', N'衡南县', N'430422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3184, N'湖南省', N'衡阳市', N'衡山县', N'430423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3185, N'湖南省', N'衡阳市', N'衡东县', N'430424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3186, N'湖南省', N'衡阳市', N'常宁县', N'430425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3187, N'湖南省', N'衡阳市', N'祁东县', N'430426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3188, N'湖南省', N'衡阳市', N'耒阳县', N'430427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3189, N'湖南省', N'衡阳市', N'耒阳市', N'430481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3190, N'湖南省', N'衡阳市', N'常宁市', N'430482'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3191, N'湖南省', N'湘潭地区', N'湘潭县', N'432121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3192, N'湖南省', N'湘潭地区', N'湘乡县', N'432122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3193, N'湖南省', N'湘潭地区', N'醴陵县', N'432123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3194, N'湖南省', N'湘潭地区', N'浏阳县', N'432124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3195, N'湖南省', N'湘潭地区', N'攸县', N'432125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3196, N'湖南省', N'湘潭地区', N'茶陵县', N'432126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3197, N'湖南省', N'湘潭地区', N'酃县', N'432127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3198, N'湖南省', N'岳阳地区', N'岳阳市', N'432201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3199, N'湖南省', N'岳阳地区', N'平江县', N'432222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3200, N'湖南省', N'岳阳地区', N'湘阴县', N'432223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3201, N'湖南省', N'岳阳地区', N'汨罗县', N'432224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3202, N'湖南省', N'岳阳地区', N'临湘市', N'432225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3203, N'湖南省', N'岳阳地区', N'华容县', N'432226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3204, N'湖南省', N'益阳地区', N'益阳市', N'432301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3205, N'湖南省', N'益阳地区', N'沅江市', N'432302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3206, N'湖南省', N'益阳地区', N'益阳县', N'432321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3207, N'湖南省', N'益阳地区', N'南县', N'432322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3208, N'湖南省', N'益阳地区', N'沅江县', N'432323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3209, N'湖南省', N'益阳地区', N'宁乡县', N'432324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3210, N'湖南省', N'益阳地区', N'桃江县', N'432325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3211, N'湖南省', N'益阳地区', N'安化县', N'432326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3212, N'湖南省', N'常德地区', N'常德市', N'432401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3213, N'湖南省', N'常德地区', N'津市市', N'432402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3214, N'湖南省', N'常德地区', N'常德县', N'432421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3215, N'湖南省', N'常德地区', N'安乡县', N'432422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3216, N'湖南省', N'常德地区', N'汉寿县', N'432423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3217, N'湖南省', N'常德地区', N'澧县', N'432424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3218, N'湖南省', N'常德地区', N'临澧县', N'432425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3219, N'湖南省', N'常德地区', N'桃源县', N'432426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3220, N'湖南省', N'常德地区', N'石门县', N'432427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3221, N'湖南省', N'常德地区', N'慈利县', N'432428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3222, N'湖南省', N'娄底地区', N'娄底市', N'432501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3223, N'湖南省', N'娄底地区', N'冷水江市', N'432502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3224, N'湖南省', N'娄底地区', N'涟源市', N'432503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3225, N'湖南省', N'娄底地区', N'涟源县', N'432521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3226, N'湖南省', N'娄底地区', N'双峰县', N'432522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3227, N'湖南省', N'娄底地区', N'邵东县', N'432523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3228, N'湖南省', N'娄底地区', N'新化县', N'432524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3229, N'湖南省', N'娄底地区', N'新邵县', N'432525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3230, N'湖南省', N'邵阳地区', N'邵阳县', N'432621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3231, N'湖南省', N'邵阳地区', N'隆回县', N'432622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3232, N'湖南省', N'邵阳地区', N'武冈县', N'432623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3233, N'湖南省', N'邵阳地区', N'洞口县', N'432624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3234, N'湖南省', N'邵阳地区', N'新宁县', N'432625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3235, N'湖南省', N'邵阳地区', N'绥宁县', N'432626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3236, N'湖南省', N'邵阳地区', N'城步苗族自治县', N'432627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3237, N'湖南省', N'衡阳地区', N'衡阳县', N'432721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3238, N'湖南省', N'衡阳地区', N'衡南县', N'432722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3239, N'湖南省', N'衡阳地区', N'衡山县', N'432723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3240, N'湖南省', N'衡阳地区', N'衡东县', N'432724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3241, N'湖南省', N'衡阳地区', N'常宁县', N'432725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3242, N'湖南省', N'衡阳地区', N'祁东县', N'432726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3243, N'湖南省', N'衡阳地区', N'祁阳县', N'432727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3244, N'湖南省', N'郴州地区', N'郴州市', N'432801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3245, N'湖南省', N'郴州地区', N'资兴市', N'432802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3246, N'湖南省', N'郴州地区', N'郴县', N'432821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3247, N'湖南省', N'郴州地区', N'桂阳县', N'432822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3248, N'湖南省', N'郴州地区', N'永兴县', N'432823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3249, N'湖南省', N'郴州地区', N'宜章县', N'432824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3250, N'湖南省', N'郴州地区', N'资兴县', N'432825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3251, N'湖南省', N'郴州地区', N'嘉禾县', N'432826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3252, N'湖南省', N'郴州地区', N'临武县', N'432827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3253, N'湖南省', N'郴州地区', N'汝城县', N'432828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3254, N'湖南省', N'郴州地区', N'桂东县', N'432829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3255, N'湖南省', N'郴州地区', N'耒阳县', N'432830'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3256, N'湖南省', N'郴州地区', N'安仁县', N'432831'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3257, N'湖南省', N'零陵地区', N'永州市', N'432901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3258, N'湖南省', N'零陵地区', N'冷水滩市', N'432902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3259, N'湖南省', N'零陵地区', N'零陵县', N'432921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3260, N'湖南省', N'零陵地区', N'东安县', N'432922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3261, N'湖南省', N'零陵地区', N'道县', N'432923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3262, N'湖南省', N'零陵地区', N'宁远县', N'432924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3263, N'湖南省', N'零陵地区', N'江永县', N'432925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3264, N'湖南省', N'零陵地区', N'江华瑶族自治县', N'432926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3265, N'湖南省', N'零陵地区', N'蓝山县', N'432927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3266, N'湖南省', N'零陵地区', N'新田县', N'432928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3267, N'湖南省', N'零陵地区', N'双牌县', N'432929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3268, N'湖南省', N'零陵地区', N'双牌县', N'432930'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3269, N'湖南省', N'邵阳市', N'市辖区', N'430501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3270, N'湖南省', N'邵阳市', N'双清区', N'430502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3271, N'湖南省', N'邵阳市', N'大祥区', N'430503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3272, N'湖南省', N'邵阳市', N'北塔区', N'430511'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3273, N'湖南省', N'邵阳市', N'邵东县', N'430521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3274, N'湖南省', N'邵阳市', N'新邵县', N'430522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3275, N'湖南省', N'邵阳市', N'邵阳县', N'430523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3276, N'湖南省', N'邵阳市', N'隆回县', N'430524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3277, N'湖南省', N'邵阳市', N'洞口县', N'430525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3278, N'湖南省', N'邵阳市', N'武冈县', N'430526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3279, N'湖南省', N'邵阳市', N'绥宁县', N'430527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3280, N'湖南省', N'邵阳市', N'新宁县', N'430528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3281, N'湖南省', N'邵阳市', N'城步苗族自治县', N'430529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3282, N'湖南省', N'邵阳市', N'武冈市', N'430581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3283, N'湖南省', N'岳阳市', N'市辖区', N'430601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3284, N'湖南省', N'岳阳市', N'岳阳楼区', N'430602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3285, N'湖南省', N'岳阳市', N'云溪区', N'430603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3286, N'湖南省', N'岳阳市', N'君山区', N'430611'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3287, N'湖南省', N'岳阳市', N'岳阳县', N'430621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3288, N'湖南省', N'岳阳市', N'临湘县', N'430622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3289, N'湖南省', N'岳阳市', N'华容县', N'430623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3290, N'湖南省', N'岳阳市', N'湘阴县', N'430624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3291, N'湖南省', N'岳阳市', N'汨罗县', N'430625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3292, N'湖南省', N'岳阳市', N'平江县', N'430626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3293, N'湖南省', N'岳阳市', N'汨罗市', N'430681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3294, N'湖南省', N'岳阳市', N'临湘市', N'430682'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3295, N'湖南省', N'常德市', N'市辖区', N'430701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3296, N'湖南省', N'常德市', N'武陵区', N'430702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3297, N'湖南省', N'常德市', N'鼎城区', N'430703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3298, N'湖南省', N'常德市', N'安乡县', N'430721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3299, N'湖南省', N'常德市', N'汉寿县', N'430722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3300, N'湖南省', N'常德市', N'澧县', N'430723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3301, N'湖南省', N'常德市', N'临澧县', N'430724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3302, N'湖南省', N'常德市', N'桃源县', N'430725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3303, N'湖南省', N'常德市', N'石门县', N'430726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3304, N'湖南省', N'常德市', N'津市市', N'430781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3305, N'湖南省', N'张家界市', N'市辖区', N'430801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3306, N'湖南省', N'张家界市', N'永定区', N'430802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3307, N'湖南省', N'张家界市', N'武陵源区', N'430811'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3308, N'湖南省', N'张家界市', N'慈利县', N'430821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3309, N'湖南省', N'张家界市', N'桑植县', N'430822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3310, N'湖南省', N'益阳市', N'市辖区', N'430901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3311, N'湖南省', N'益阳市', N'资阳区', N'430902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3312, N'湖南省', N'益阳市', N'赫山区', N'430903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3313, N'湖南省', N'益阳市', N'市区', N'430911'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3314, N'湖南省', N'益阳市', N'南县', N'430921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3315, N'湖南省', N'益阳市', N'桃江县', N'430922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3316, N'湖南省', N'益阳市', N'安化县', N'430923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3317, N'湖南省', N'益阳市', N'沅江市', N'430981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3318, N'湖南省', N'郴州市', N'市辖区', N'431001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3319, N'湖南省', N'郴州市', N'北湖区', N'431002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3320, N'湖南省', N'郴州市', N'苏仙区', N'431003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3321, N'湖南省', N'郴州市', N'桂阳县', N'431021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3322, N'湖南省', N'郴州市', N'宜章县', N'431022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3323, N'湖南省', N'郴州市', N'永兴县', N'431023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3324, N'湖南省', N'郴州市', N'嘉禾县', N'431024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3325, N'湖南省', N'郴州市', N'临武县', N'431025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3326, N'湖南省', N'郴州市', N'汝城县', N'431026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3327, N'湖南省', N'郴州市', N'桂东县', N'431027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3328, N'湖南省', N'郴州市', N'安仁县', N'431028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3329, N'湖南省', N'郴州市', N'资兴市', N'431081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3330, N'湖南省', N'永州市', N'市辖区', N'431101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3331, N'湖南省', N'永州市', N'零陵区', N'431102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3332, N'湖南省', N'永州市', N'冷水滩区', N'431103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3333, N'湖南省', N'永州市', N'祁阳县', N'431121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3334, N'湖南省', N'永州市', N'东安县', N'431122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3335, N'湖南省', N'永州市', N'双牌县', N'431123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3336, N'湖南省', N'永州市', N'道县', N'431124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3337, N'湖南省', N'永州市', N'江永县', N'431125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3338, N'湖南省', N'永州市', N'宁远县', N'431126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3339, N'湖南省', N'永州市', N'蓝山县', N'431127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3340, N'湖南省', N'永州市', N'新田县', N'431128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3341, N'湖南省', N'永州市', N'江华瑶族自治县', N'431129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3342, N'湖南省', N'怀化市', N'市辖区', N'431201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3343, N'湖南省', N'怀化市', N'鹤城区', N'431202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3344, N'湖南省', N'怀化市', N'中方县', N'431221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3345, N'湖南省', N'怀化市', N'沅陵县', N'431222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3346, N'湖南省', N'怀化市', N'辰溪县', N'431223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3347, N'湖南省', N'怀化市', N'溆浦县', N'431224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3348, N'湖南省', N'怀化市', N'会同县', N'431225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3349, N'湖南省', N'怀化市', N'麻阳苗族自治县', N'431226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3350, N'湖南省', N'怀化市', N'新晃侗族自治县', N'431227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3351, N'湖南省', N'怀化市', N'芷江侗族自治县', N'431228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3352, N'湖南省', N'怀化市', N'靖州苗族侗族自治县', N'431229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3353, N'湖南省', N'怀化市', N'通道侗族自治县', N'431230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3354, N'湖南省', N'怀化市', N'洪江市', N'431281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3355, N'湖南省', N'娄底市', N'市辖区', N'431301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3356, N'湖南省', N'娄底市', N'娄星区', N'431302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3357, N'湖南省', N'娄底市', N'双峰县', N'431321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3358, N'湖南省', N'娄底市', N'新化县', N'431322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3359, N'湖南省', N'娄底市', N'冷水江市', N'431381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3360, N'湖南省', N'娄底市', N'涟源市', N'431382'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3361, N'湖南省', N'怀化地区', N'怀化市', N'433001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3362, N'湖南省', N'怀化地区', N'洪江市', N'433002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3363, N'湖南省', N'怀化地区', N'黔阳县', N'433021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3364, N'湖南省', N'怀化地区', N'沅陵县', N'433022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3365, N'湖南省', N'怀化地区', N'辰溪县', N'433023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3366, N'湖南省', N'怀化地区', N'溆浦县', N'433024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3367, N'湖南省', N'怀化地区', N'麻阳县', N'433025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3368, N'湖南省', N'怀化地区', N'新晃侗族自治县', N'433026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3369, N'湖南省', N'怀化地区', N'芷江县', N'433027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3370, N'湖南省', N'怀化地区', N'怀化县', N'433028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3371, N'湖南省', N'怀化地区', N'会同县', N'433029'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3372, N'湖南省', N'怀化地区', N'靖县', N'433030'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3373, N'湖南省', N'怀化地区', N'通道侗族自治县', N'433031'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3374, N'湖南省', N'湘西土家族苗族自治州', N'吉首市', N'433101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3375, N'湖南省', N'湘西土家族苗族自治州', N'吉首县', N'433121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3376, N'湖南省', N'湘西土家族苗族自治州', N'泸溪县', N'433122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3377, N'湖南省', N'湘西土家族苗族自治州', N'凤凰县', N'433123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3378, N'湖南省', N'湘西土家族苗族自治州', N'花垣县', N'433124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3379, N'湖南省', N'湘西土家族苗族自治州', N'保靖县', N'433125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3380, N'湖南省', N'湘西土家族苗族自治州', N'古丈县', N'433126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3381, N'湖南省', N'湘西土家族苗族自治州', N'永顺县', N'433127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3382, N'湖南省', N'湘西土家族苗族自治州', N'大庸县', N'433128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3383, N'湖南省', N'湘西土家族苗族自治州', N'桑植县', N'433129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3384, N'湖南省', N'湘西土家族苗族自治州', N'龙山县', N'433130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3385, N'湖南省', NULL, N'醴陵市', N'439001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3386, N'湖南省', NULL, N'湘乡市', N'439002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3387, N'湖南省', NULL, N'耒阳市', N'439003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3388, N'湖南省', NULL, N'汨罗市', N'439004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3389, N'湖南省', NULL, N'津市市', N'439005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3390, N'广东省', N'广州市', N'市辖区', N'440101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3391, N'广东省', N'广州市', N'东山区', N'440102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3392, N'广东省', N'广州市', N'荔湾区', N'440103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3393, N'广东省', N'广州市', N'越秀区', N'440104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3394, N'广东省', N'广州市', N'海珠区', N'440105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3395, N'广东省', N'广州市', N'天河区', N'440106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3396, N'广东省', N'广州市', N'芳村区', N'440107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3397, N'广东省', N'广州市', N'白云区', N'440111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3398, N'广东省', N'广州市', N'黄埔区', N'440112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3399, N'广东省', N'广州市', N'番禺区', N'440113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3400, N'广东省', N'广州市', N'花都区', N'440114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3401, N'广东省', N'广州市', N'南沙区', N'440115'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3402, N'广东省', N'广州市', N'萝岗区', N'440116'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3403, N'广东省', N'广州市', N'市区', N'440120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3404, N'广东省', N'广州市', N'花县', N'440121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3405, N'广东省', N'广州市', N'从化县', N'440122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3406, N'广东省', N'广州市', N'新丰县', N'440123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3407, N'广东省', N'广州市', N'龙门县', N'440124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3408, N'广东省', N'广州市', N'增城县', N'440125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3409, N'广东省', N'广州市', N'番禺县', N'440126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3410, N'广东省', N'广州市', N'清远县', N'440127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3411, N'广东省', N'广州市', N'佛冈县', N'440128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3412, N'广东省', N'广州市', N'番禺市', N'440181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3413, N'广东省', N'广州市', N'花都市', N'440182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3414, N'广东省', N'广州市', N'增城市', N'440183'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3415, N'广东省', N'广州市', N'从化市', N'440184'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3416, N'广东省', N'韶关市', N'市辖区', N'440201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3417, N'广东省', N'韶关市', N'北江区', N'440202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3418, N'广东省', N'韶关市', N'武江区', N'440203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3419, N'广东省', N'韶关市', N'浈江区', N'440204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3420, N'广东省', N'韶关市', N'曲江区', N'440205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3421, N'广东省', N'韶关市', N'曲江县', N'440221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3422, N'广东省', N'韶关市', N'始兴县', N'440222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3423, N'广东省', N'韶关市', N'南雄县', N'440223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3424, N'广东省', N'韶关市', N'仁化县', N'440224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3425, N'广东省', N'韶关市', N'乐昌县', N'440225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3426, N'广东省', N'韶关市', N'连县', N'440226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3427, N'广东省', N'韶关市', N'阳山县', N'440227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3428, N'广东省', N'韶关市', N'英德县', N'440228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3429, N'广东省', N'韶关市', N'翁源县', N'440229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3430, N'广东省', N'韶关市', N'连山壮族瑶族自治县', N'440230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3431, N'广东省', N'韶关市', N'连南瑶族自治县', N'440231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3432, N'广东省', N'韶关市', N'乳源瑶族自治县', N'440232'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3433, N'广东省', N'韶关市', N'新丰县', N'440233'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3434, N'广东省', N'韶关市', N'乐昌市', N'440281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3435, N'广东省', N'韶关市', N'南雄市', N'440282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3436, N'广东省', N'深圳市', N'市辖区', N'440301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3437, N'广东省', N'深圳市', N'盐田区', N'440302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3438, N'广东省', N'深圳市', N'罗湖区', N'440303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3439, N'广东省', N'深圳市', N'福田区', N'440304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3440, N'广东省', N'深圳市', N'南山区', N'440305'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3441, N'广东省', N'深圳市', N'宝安区', N'440306'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3442, N'广东省', N'深圳市', N'龙岗区', N'440307'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3443, N'广东省', N'深圳市', N'盐田区', N'440308'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3444, N'广东省', N'深圳市', N'市区', N'440320'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3445, N'广东省', N'深圳市', N'宝安县', N'440321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3446, N'广东省', N'珠海市', N'市辖区', N'440401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3447, N'广东省', N'珠海市', N'香洲区', N'440402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3448, N'广东省', N'珠海市', N'斗门区', N'440403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3449, N'广东省', N'珠海市', N'金湾区', N'440404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3450, N'广东省', N'珠海市', N'斗门县', N'440421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3451, N'广东省', N'汕头市', N'市辖区', N'440501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3452, N'广东省', N'汕头市', N'同平区', N'440502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3453, N'广东省', N'汕头市', N'安平区', N'440503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3454, N'广东省', N'汕头市', N'公园区', N'440504'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3455, N'广东省', N'汕头市', N'金砂区', N'440505'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3456, N'广东省', N'汕头市', N'达濠区', N'440506'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3457, N'广东省', N'汕头市', N'龙湖区', N'440507'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3458, N'广东省', N'汕头市', N'金园区', N'440508'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3459, N'广东省', N'汕头市', N'升平区', N'440509'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3460, N'广东省', N'汕头市', N'河浦区', N'440510'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3461, N'广东省', N'汕头市', N'金平区', N'440511'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3462, N'广东省', N'汕头市', N'濠江区', N'440512'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3463, N'广东省', N'汕头市', N'潮阳区', N'440513'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3464, N'广东省', N'汕头市', N'潮南区', N'440514'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3465, N'广东省', N'汕头市', N'澄海区', N'440515'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3466, N'广东省', N'汕头市', N'潮州市', N'440520'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3467, N'广东省', N'汕头市', N'澄海县', N'440521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3468, N'广东省', N'汕头市', N'饶平县', N'440522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3469, N'广东省', N'汕头市', N'南澳县', N'440523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3470, N'广东省', N'汕头市', N'潮阳县', N'440524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3471, N'广东省', N'汕头市', N'揭阳县', N'440525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3472, N'广东省', N'汕头市', N'揭西县', N'440526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3473, N'广东省', N'汕头市', N'普宁县', N'440527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3474, N'广东省', N'汕头市', N'惠来县', N'440528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3475, N'广东省', N'汕头市', N'潮州市', N'440581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3476, N'广东省', N'汕头市', N'潮阳市', N'440582'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3477, N'广东省', N'汕头市', N'澄海市', N'440583'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3478, N'广东省', N'佛山市', N'市辖区', N'440601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3479, N'广东省', N'佛山市', N'城区', N'440602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3480, N'广东省', N'佛山市', N'石湾区', N'440603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3481, N'广东省', N'佛山市', N'禅城区', N'440604'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3482, N'广东省', N'佛山市', N'南海区', N'440605'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3483, N'广东省', N'佛山市', N'顺德区', N'440606'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3484, N'广东省', N'佛山市', N'三水区', N'440607'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3485, N'广东省', N'佛山市', N'高明区', N'440608'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3486, N'广东省', N'佛山市', N'中山市', N'440620'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3487, N'广东省', N'佛山市', N'三水县', N'440621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3488, N'广东省', N'佛山市', N'南海县', N'440622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3489, N'广东省', N'佛山市', N'顺德县', N'440623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3490, N'广东省', N'佛山市', N'高明县', N'440624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3491, N'广东省', N'佛山市', N'顺德市', N'440681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3492, N'广东省', N'佛山市', N'南海市', N'440682'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3493, N'广东省', N'佛山市', N'三水市', N'440683'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3494, N'广东省', N'佛山市', N'高明市', N'440684'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3495, N'广东省', N'江门市', N'市辖区', N'440701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3496, N'广东省', N'江门市', N'城区', N'440702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3497, N'广东省', N'江门市', N'蓬江区', N'440703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3498, N'广东省', N'江门市', N'江海区', N'440704'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3499, N'广东省', N'江门市', N'新会区', N'440705'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3500, N'广东省', N'江门市', N'郊区', N'440711'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3501, N'广东省', N'江门市', N'新会县', N'440721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3502, N'广东省', N'江门市', N'台山县', N'440722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3503, N'广东省', N'江门市', N'恩平县', N'440723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3504, N'广东省', N'江门市', N'开平县', N'440724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3505, N'广东省', N'江门市', N'鹤山县', N'440725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3506, N'广东省', N'江门市', N'阳江县', N'440726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3507, N'广东省', N'江门市', N'阳春县', N'440727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3508, N'广东省', N'江门市', N'台山市', N'440781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3509, N'广东省', N'江门市', N'新会市', N'440782'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3510, N'广东省', N'江门市', N'开平市', N'440783'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3511, N'广东省', N'江门市', N'鹤山市', N'440784'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3512, N'广东省', N'江门市', N'恩平市', N'440785'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3513, N'广东省', N'清远市', N'连州市', N'441882'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3514, N'广东省', N'清远市', N'市辖区', N'441801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3515, N'广东省', N'清远市', N'清城区', N'441802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3516, N'广东省', N'清远市', N'清郊区', N'441811'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3517, N'广东省', N'清远市', N'佛冈县', N'441821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3518, N'广东省', N'清远市', N'英德县', N'441822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3519, N'广东省', N'清远市', N'阳山县', N'441823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3520, N'广东省', N'清远市', N'连县', N'441824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3521, N'广东省', N'清远市', N'连山壮族瑶族自治县', N'441825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3522, N'广东省', N'清远市', N'连南瑶族自治县', N'441826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3523, N'广东省', N'清远市', N'清新县', N'441827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3524, N'广东省', N'清远市', N'英德市', N'441881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3525, N'广东省', N'佛山市', N'佛山市', N'442701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3526, N'广东省', N'佛山市', N'江门市', N'442702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3527, N'广东省', N'佛山市', N'三水县', N'442721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3528, N'广东省', N'佛山市', N'南海县', N'442722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3529, N'广东省', N'佛山市', N'顺德县', N'442723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3530, N'广东省', N'佛山市', N'中山县', N'442724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3531, N'广东省', N'佛山市', N'斗门县', N'442725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3532, N'广东省', N'佛山市', N'新会县', N'442726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3533, N'广东省', N'佛山市', N'台山县', N'442727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3534, N'广东省', N'佛山市', N'恩平县', N'442728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3535, N'广东省', N'佛山市', N'开平县', N'442729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3536, N'广东省', N'佛山市', N'鹤山县', N'442731'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3537, N'广东省', N'佛山市', N'高明县', N'442732'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3538, N'广东省', N'湛江市', N'湛江市', N'442901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3539, N'广东省', N'湛江市', N'茂名市', N'442902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3540, N'广东省', N'湛江市', N'阳江县', N'442921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3541, N'广东省', N'湛江市', N'阳春县', N'442922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3542, N'广东省', N'湛江市', N'信宜县', N'442923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3543, N'广东省', N'湛江市', N'高州县', N'442924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3544, N'广东省', N'湛江市', N'电白县', N'442925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3545, N'广东省', N'湛江市', N'吴川县', N'442926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3546, N'广东省', N'湛江市', N'化州县', N'442927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3547, N'广东省', N'湛江市', N'廉江县', N'442928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3548, N'广东省', N'湛江市', N'遂溪县', N'442929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3549, N'广东省', N'湛江市', N'海康县', N'442930'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3550, N'广东省', N'湛江市', N'徐闻县', N'442931'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3551, N'广东省', N'潮州市', N'市辖区', N'445101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3552, N'广东省', N'潮州市', N'湘桥区', N'445102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3553, N'广东省', N'潮州市', N'潮安县', N'445121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3554, N'广东省', N'潮州市', N'饶平县', N'445122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3555, N'广东省', N'揭阳市', N'市辖区', N'445201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3556, N'广东省', N'揭阳市', N'榕城区', N'445202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3557, N'广东省', N'揭阳市', N'揭东县', N'445221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3558, N'广东省', N'揭阳市', N'揭西县', N'445222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3559, N'广东省', N'揭阳市', N'惠来县', N'445224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3560, N'广东省', N'揭阳市', N'普宁市', N'445281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3561, N'广东省', N'湛江市', N'市辖区', N'440801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3562, N'广东省', N'湛江市', N'赤坎区', N'440802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3563, N'广东省', N'湛江市', N'霞山区', N'440803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3564, N'广东省', N'湛江市', N'坡头区', N'440804'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3565, N'广东省', N'湛江市', N'麻章区', N'440811'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3566, N'广东省', N'湛江市', N'吴川县', N'440821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3567, N'广东省', N'湛江市', N'廉江县', N'440822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3568, N'广东省', N'湛江市', N'遂溪县', N'440823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3569, N'广东省', N'湛江市', N'海康县', N'440824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3570, N'广东省', N'湛江市', N'徐闻县', N'440825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3571, N'广东省', N'湛江市', N'廉江市', N'440881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3572, N'广东省', N'湛江市', N'雷州市', N'440882'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3573, N'广东省', N'湛江市', N'吴川市', N'440883'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3574, N'广东省', N'茂名市', N'市辖区', N'440901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3575, N'广东省', N'茂名市', N'茂南区', N'440902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3576, N'广东省', N'茂名市', N'茂港区', N'440903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3577, N'广东省', N'茂名市', N'信宜县', N'440921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3578, N'广东省', N'茂名市', N'高州县', N'440922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3579, N'广东省', N'茂名市', N'电白县', N'440923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3580, N'广东省', N'茂名市', N'化州县', N'440924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3581, N'广东省', N'茂名市', N'高州市', N'440981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3582, N'广东省', N'茂名市', N'化州市', N'440982'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3583, N'广东省', N'茂名市', N'信宜市', N'440983'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3584, N'广东省', N'肇庆市', N'市辖区', N'441201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3585, N'广东省', N'肇庆市', N'端州区', N'441202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3586, N'广东省', N'肇庆市', N'鼎湖区', N'441203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3587, N'广东省', N'肇庆市', N'高要县', N'441221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3588, N'广东省', N'肇庆市', N'四会县', N'441222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3589, N'广东省', N'肇庆市', N'广宁县', N'441223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3590, N'广东省', N'肇庆市', N'怀集县', N'441224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3591, N'广东省', N'肇庆市', N'封开县', N'441225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3592, N'广东省', N'肇庆市', N'德庆县', N'441226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3593, N'广东省', N'肇庆市', N'云浮县', N'441227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3594, N'广东省', N'肇庆市', N'新兴县', N'441228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3595, N'广东省', N'肇庆市', N'郁南县', N'441229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3596, N'广东省', N'肇庆市', N'罗定县', N'441230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3597, N'广东省', N'肇庆市', N'云浮市', N'441281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3598, N'广东省', N'肇庆市', N'罗定市', N'441282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3599, N'广东省', N'肇庆市', N'高要市', N'441283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3600, N'广东省', N'肇庆市', N'四会市', N'441284'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3601, N'广东省', N'惠州市', N'市辖区', N'441301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3602, N'广东省', N'惠州市', N'惠城区', N'441302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3603, N'广东省', N'惠州市', N'惠阳区', N'441303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3604, N'广东省', N'惠州市', N'惠阳县', N'441321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3605, N'广东省', N'惠州市', N'博罗县', N'441322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3606, N'广东省', N'惠州市', N'惠东县', N'441323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3607, N'广东省', N'惠州市', N'龙门县', N'441324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3608, N'广东省', N'惠州市', N'惠阳市', N'441381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3609, N'广东省', N'梅州市', N'市辖区', N'441401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3610, N'广东省', N'梅州市', N'梅江区', N'441402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3611, N'广东省', N'梅州市', N'梅县', N'441421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3612, N'广东省', N'梅州市', N'大埔县', N'441422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3613, N'广东省', N'梅州市', N'丰顺县', N'441423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3614, N'广东省', N'梅州市', N'五华县', N'441424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3615, N'广东省', N'梅州市', N'兴宁县', N'441425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3616, N'广东省', N'梅州市', N'平远县', N'441426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3617, N'广东省', N'梅州市', N'蕉岭县', N'441427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3618, N'广东省', N'梅州市', N'兴宁市', N'441481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3619, N'广东省', N'汕尾市', N'市辖区', N'441501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3620, N'广东省', N'汕尾市', N'城区', N'441502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3621, N'广东省', N'汕尾市', N'海丰县', N'441521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3622, N'广东省', N'汕尾市', N'陆丰县', N'441522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3623, N'广东省', N'汕尾市', N'陆河县', N'441523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3624, N'广东省', N'汕尾市', N'陆丰市', N'441581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3625, N'广东省', N'河源市', N'市辖区', N'441601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3626, N'广东省', N'河源市', N'源城区', N'441602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3627, N'广东省', N'河源市', N'郊区', N'441611'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3628, N'广东省', N'河源市', N'紫金县', N'441621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3629, N'广东省', N'河源市', N'龙川县', N'441622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3630, N'广东省', N'河源市', N'连平县', N'441623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3631, N'广东省', N'河源市', N'和平县', N'441624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3632, N'广东省', N'河源市', N'东源县', N'441625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3633, N'广东省', N'阳江市', N'市辖区', N'441701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3634, N'广东省', N'阳江市', N'江城区', N'441702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3635, N'广东省', N'阳江市', N'阳东区', N'441703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3636, N'广东省', N'阳江市', N'阳西县', N'441721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3637, N'广东省', N'阳江市', N'阳春县', N'441722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3638, N'广东省', N'阳江市', N'阳东县', N'441723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3639, N'广东省', N'阳江市', N'阳春市', N'441781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3640, N'广东省', N'云浮市', N'市辖区', N'445301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3641, N'广东省', N'云浮市', N'云城区', N'445302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3642, N'广东省', N'云浮市', N'新兴县', N'445321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3643, N'广东省', N'云浮市', N'郁南县', N'445322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3644, N'广东省', N'云浮市', N'云安县', N'445323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3645, N'广东省', N'云浮市', N'罗定市', N'445381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3646, N'广东省', NULL, N'东莞市', N'441900'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3647, N'广东省', NULL, N'中山市', N'442000'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3648, N'广东省', NULL, N'连平县', N'442524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3649, N'广东省', NULL, N'河源县', N'442525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3650, N'广东省', NULL, N'博罗县', N'442526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3651, N'广东省', NULL, N'东莞县', N'442527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3652, N'广东省', NULL, N'惠东县', N'442528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3653, N'广东省', NULL, N'龙川县', N'442529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3654, N'广东省', NULL, N'陆丰县', N'442530'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3655, N'广东省', NULL, N'海丰县', N'442531'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3656, N'广东省', NULL, N'始兴县', N'442621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3657, N'广东省', NULL, N'南雄县', N'442622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3658, N'广东省', NULL, N'仁化县', N'442623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3659, N'广东省', NULL, N'乐昌县', N'442624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3660, N'广东省', NULL, N'清远县', N'442628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3661, N'广东省', NULL, N'翁源县', N'442630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3662, N'广东省', NULL, N'连山壮族瑶族自治县', N'442631'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3663, N'广东省', NULL, N'连南瑶族自治县', N'442632'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3664, N'广东省', NULL, N'乳源瑶族自治县', N'442633'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3665, N'广东省', NULL, N'高要县', N'442821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3666, N'广东省', NULL, N'四会县', N'442822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3667, N'广东省', NULL, N'广宁县', N'442823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3668, N'广东省', NULL, N'怀集县', N'442824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3669, N'广东省', NULL, N'封开县', N'442825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3670, N'广东省', NULL, N'德庆县', N'442826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3671, N'广东省', NULL, N'云浮县', N'442827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3672, N'广东省', NULL, N'新兴县', N'442828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3673, N'广东省', NULL, N'郁南县', N'442829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3674, N'广东省', NULL, N'罗定县', N'442830'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3675, N'广东省', NULL, N'惠州市', N'442501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3676, N'广东省', NULL, N'东莞市', N'442502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3677, N'广东省', NULL, N'惠阳县', N'442521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3678, N'广东省', NULL, N'紫金县', N'442522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3679, N'广东省', NULL, N'和平县', N'442523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3680, N'广西壮族自治区', N'百色市', N'市辖区', N'451001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3681, N'广西壮族自治区', N'百色市', N'右江区', N'451002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3682, N'广西壮族自治区', N'百色市', N'田阳县', N'451021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3683, N'广西壮族自治区', N'百色市', N'田东县', N'451022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3684, N'广西壮族自治区', N'百色市', N'平果县', N'451023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3685, N'广西壮族自治区', N'百色市', N'德保县', N'451024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3686, N'广西壮族自治区', N'百色市', N'靖西县', N'451025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3687, N'广西壮族自治区', N'百色市', N'那坡县', N'451026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3688, N'广西壮族自治区', N'百色市', N'凌云县', N'451027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3689, N'广西壮族自治区', N'百色市', N'乐业县', N'451028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3690, N'广西壮族自治区', N'百色市', N'田林县', N'451029'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3691, N'广西壮族自治区', N'百色市', N'西林县', N'451030'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3692, N'广西壮族自治区', N'百色市', N'隆林各族自治县', N'451031'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3693, N'广西壮族自治区', N'贺州市', N'市辖区', N'451101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3694, N'广西壮族自治区', N'贺州市', N'八步区', N'451102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3695, N'广西壮族自治区', N'贺州市', N'昭平县', N'451121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3696, N'广西壮族自治区', N'贺州市', N'钟山县', N'451122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3697, N'广西壮族自治区', N'贺州市', N'富川瑶族自治县', N'451123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3698, N'广西壮族自治区', N'河池市', N'市辖区', N'451201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3699, N'广西壮族自治区', N'河池市', N'金城江区', N'451202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3700, N'广西壮族自治区', N'河池市', N'南丹县', N'451221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3701, N'广西壮族自治区', N'河池市', N'天峨县', N'451222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3702, N'广西壮族自治区', N'河池市', N'凤山县', N'451223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3703, N'广西壮族自治区', N'河池市', N'东兰县', N'451224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3704, N'广西壮族自治区', N'河池市', N'罗城仫佬族自治县', N'451225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3705, N'广西壮族自治区', N'河池市', N'环江毛南族自治县', N'451226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3706, N'广西壮族自治区', N'河池市', N'巴马瑶族自治县', N'451227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3707, N'广西壮族自治区', N'河池市', N'都安瑶族自治县', N'451228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3708, N'广西壮族自治区', N'河池市', N'大化瑶族自治县', N'451229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3709, N'广西壮族自治区', N'河池市', N'宜州市', N'451281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3710, N'广西壮族自治区', N'来宾市', N'市辖区', N'451301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3711, N'广西壮族自治区', N'来宾市', N'兴宾区', N'451302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3712, N'广西壮族自治区', N'来宾市', N'忻城县', N'451321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3713, N'广西壮族自治区', N'来宾市', N'象州县', N'451322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3714, N'广西壮族自治区', N'来宾市', N'武宣县', N'451323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3715, N'广西壮族自治区', N'来宾市', N'金秀瑶族自治县', N'451324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3716, N'广西壮族自治区', N'来宾市', N'合山市', N'451381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3717, N'广西壮族自治区', N'崇左市', N'市辖区', N'451401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3718, N'广西壮族自治区', N'崇左市', N'江洲区', N'451402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3719, N'广西壮族自治区', N'崇左市', N'扶绥县', N'451421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3720, N'广西壮族自治区', N'崇左市', N'宁明县', N'451422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3721, N'广西壮族自治区', N'崇左市', N'龙州县', N'451423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3722, N'广西壮族自治区', N'崇左市', N'大新县', N'451424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3723, N'广西壮族自治区', N'崇左市', N'天等县', N'451425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3724, N'广西壮族自治区', N'崇左市', N'凭祥市', N'451481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3725, N'广西壮族自治区', N'南宁地区', N'凭祥市', N'452101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3726, N'广西壮族自治区', N'南宁地区', N'横县', N'452122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3727, N'广西壮族自治区', N'南宁地区', N'宾阳县', N'452123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3728, N'广西壮族自治区', N'南宁地区', N'上林县', N'452124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3729, N'广西壮族自治区', N'南宁地区', N'隆安县', N'452126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3730, N'广西壮族自治区', N'南宁地区', N'马山县', N'452127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3731, N'广西壮族自治区', N'南宁地区', N'扶绥县', N'452128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3732, N'广西壮族自治区', N'南宁地区', N'崇左县', N'452129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3733, N'广西壮族自治区', N'南宁地区', N'大新县', N'452130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3734, N'广西壮族自治区', N'南宁地区', N'天等县', N'452131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3735, N'广西壮族自治区', N'南宁地区', N'宁明县', N'452132'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3736, N'广西壮族自治区', N'南宁地区', N'龙州县', N'452133'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3737, N'广西壮族自治区', N'柳州地区', N'合山市', N'452201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3738, N'广西壮族自治区', N'柳州地区', N'鹿寨县', N'452223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3739, N'广西壮族自治区', N'柳州地区', N'象州县', N'452224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3740, N'广西壮族自治区', N'柳州地区', N'武宣县', N'452225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3741, N'广西壮族自治区', N'柳州地区', N'来宾县', N'452226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3742, N'广西壮族自治区', N'柳州地区', N'融安县', N'452227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3743, N'广西壮族自治区', N'柳州地区', N'三江侗族自治县', N'452228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3744, N'广西壮族自治区', N'柳州地区', N'融水苗族自治县', N'452229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3745, N'广西壮族自治区', N'柳州地区', N'金秀瑶族自治县', N'452230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3746, N'广西壮族自治区', N'柳州地区', N'忻城县', N'452231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3747, N'广西壮族自治区', N'南宁市', N'市辖区', N'450101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3748, N'广西壮族自治区', N'南宁市', N'兴宁区', N'450102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3749, N'广西壮族自治区', N'南宁市', N'青秀区', N'450103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3750, N'广西壮族自治区', N'南宁市', N'城北区', N'450104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3751, N'广西壮族自治区', N'南宁市', N'江南区', N'450105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3752, N'广西壮族自治区', N'南宁市', N'永新区', N'450106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3753, N'广西壮族自治区', N'南宁市', N'西乡塘区', N'450107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3754, N'广西壮族自治区', N'南宁市', N'良庆区', N'450108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3755, N'广西壮族自治区', N'南宁市', N'邕宁区', N'450109'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3756, N'广西壮族自治区', N'南宁市', N'郊区', N'450111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3757, N'广西壮族自治区', N'南宁市', N'邕宁县', N'450121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3758, N'广西壮族自治区', N'南宁市', N'武鸣县', N'450122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3759, N'广西壮族自治区', N'南宁市', N'隆安县', N'450123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3760, N'广西壮族自治区', N'南宁市', N'马山县', N'450124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3761, N'广西壮族自治区', N'南宁市', N'上林县', N'450125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3762, N'广西壮族自治区', N'南宁市', N'宾阳县', N'450126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3763, N'广西壮族自治区', N'南宁市', N'横县', N'450127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3764, N'广西壮族自治区', N'柳州市', N'市辖区', N'450201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3765, N'广西壮族自治区', N'柳州市', N'城中区', N'450202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3766, N'广西壮族自治区', N'柳州市', N'鱼峰区', N'450203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3767, N'广西壮族自治区', N'柳州市', N'柳南区', N'450204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3768, N'广西壮族自治区', N'柳州市', N'柳北区', N'450205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3769, N'广西壮族自治区', N'柳州市', N'市郊区', N'450211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3770, N'广西壮族自治区', N'柳州市', N'柳江县', N'450221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3771, N'广西壮族自治区', N'柳州市', N'柳城县', N'450222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3772, N'广西壮族自治区', N'柳州市', N'鹿寨县', N'450223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3773, N'广西壮族自治区', N'柳州市', N'融安县', N'450224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3774, N'广西壮族自治区', N'柳州市', N'融水苗族自治县', N'450225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3775, N'广西壮族自治区', N'柳州市', N'三江侗族自治县', N'450226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3776, N'广西壮族自治区', N'桂林市', N'市辖区', N'450301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3777, N'广西壮族自治区', N'桂林市', N'秀峰区', N'450302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3778, N'广西壮族自治区', N'桂林市', N'叠彩区', N'450303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3779, N'广西壮族自治区', N'桂林市', N'象山区', N'450304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3780, N'广西壮族自治区', N'桂林市', N'七星区', N'450305'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3781, N'广西壮族自治区', N'桂林市', N'雁山区', N'450311'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3782, N'广西壮族自治区', N'桂林市', N'阳朔县', N'450321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3783, N'广西壮族自治区', N'桂林市', N'临桂县', N'450322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3784, N'广西壮族自治区', N'桂林市', N'灵川县', N'450323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3785, N'广西壮族自治区', N'桂林市', N'全州县', N'450324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3786, N'广西壮族自治区', N'桂林市', N'兴安县', N'450325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3787, N'广西壮族自治区', N'桂林市', N'永福县', N'450326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3788, N'广西壮族自治区', N'桂林市', N'灌阳县', N'450327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3789, N'广西壮族自治区', N'桂林市', N'龙胜各族自治县', N'450328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3790, N'广西壮族自治区', N'桂林市', N'资源县', N'450329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3791, N'广西壮族自治区', N'桂林市', N'平乐县', N'450330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3792, N'广西壮族自治区', N'桂林市', N'荔蒲县', N'450331'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3793, N'广西壮族自治区', N'桂林市', N'恭城瑶族自治县', N'450332'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3794, N'广西壮族自治区', N'梧州市', N'市辖区', N'450401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3795, N'广西壮族自治区', N'梧州市', N'白云区', N'450402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3796, N'广西壮族自治区', N'梧州市', N'万秀区', N'450403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3797, N'广西壮族自治区', N'梧州市', N'蝶山区', N'450404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3798, N'广西壮族自治区', N'梧州市', N'长洲区', N'450405'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3799, N'广西壮族自治区', N'梧州市', N'市郊区', N'450411'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3800, N'广西壮族自治区', N'梧州市', N'苍梧县', N'450421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3801, N'广西壮族自治区', N'梧州市', N'藤县', N'450422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3802, N'广西壮族自治区', N'梧州市', N'蒙山县', N'450423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3803, N'广西壮族自治区', N'梧州市', N'岑溪市', N'450481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3804, N'广西壮族自治区', N'北海市', N'市辖区', N'450501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3805, N'广西壮族自治区', N'北海市', N'海城区', N'450502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3806, N'广西壮族自治区', N'北海市', N'银海区', N'450503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3807, N'广西壮族自治区', N'北海市', N'铁山港区', N'450512'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3808, N'广西壮族自治区', N'北海市', N'合浦县', N'450521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3809, N'广西壮族自治区', N'防城港市', N'市辖区', N'450601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3810, N'广西壮族自治区', N'防城港市', N'港口区', N'450602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3811, N'广西壮族自治区', N'防城港市', N'防城区', N'450603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3812, N'广西壮族自治区', N'防城港市', N'上思县', N'450621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3813, N'广西壮族自治区', N'防城港市', N'东兴市', N'450681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3814, N'广西壮族自治区', N'钦州市', N'市辖区', N'450701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3815, N'广西壮族自治区', N'钦州市', N'钦南区', N'450702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3816, N'广西壮族自治区', N'钦州市', N'钦北区', N'450703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3817, N'广西壮族自治区', N'钦州市', N'灵山县', N'450721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3818, N'广西壮族自治区', N'钦州市', N'浦北县', N'450722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3819, N'广西壮族自治区', N'贵港市', N'市辖区', N'450801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3820, N'广西壮族自治区', N'贵港市', N'港北区', N'450802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3821, N'广西壮族自治区', N'贵港市', N'港南区', N'450803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3822, N'广西壮族自治区', N'贵港市', N'覃塘区', N'450804'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3823, N'广西壮族自治区', N'贵港市', N'平南县', N'450821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3824, N'广西壮族自治区', N'贵港市', N'桂平市', N'450881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3825, N'广西壮族自治区', N'玉林市', N'市辖区', N'450901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3826, N'广西壮族自治区', N'玉林市', N'玉州区', N'450902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3827, N'广西壮族自治区', N'玉林市', N'容县', N'450921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3828, N'广西壮族自治区', N'玉林市', N'陆川县', N'450922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3829, N'广西壮族自治区', N'玉林市', N'博白县', N'450923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3830, N'广西壮族自治区', N'玉林市', N'兴业县', N'450924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3831, N'广西壮族自治区', N'玉林市', N'北流市', N'450981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3832, N'广西壮族自治区', N'桂林地区', N'临桂县', N'452321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3833, N'广西壮族自治区', N'桂林地区', N'灵川县', N'452322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3834, N'广西壮族自治区', N'桂林地区', N'全州县', N'452323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3835, N'广西壮族自治区', N'桂林地区', N'兴安县', N'452324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3836, N'广西壮族自治区', N'桂林地区', N'永福县', N'452325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3837, N'广西壮族自治区', N'桂林地区', N'灌阳县', N'452327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3838, N'广西壮族自治区', N'桂林地区', N'龙胜各族自治县', N'452328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3839, N'广西壮族自治区', N'桂林地区', N'资源县', N'452329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3840, N'广西壮族自治区', N'桂林地区', N'平乐县', N'452330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3841, N'广西壮族自治区', N'桂林地区', N'荔蒲县', N'452331'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3842, N'广西壮族自治区', N'桂林地区', N'恭城瑶族自治县', N'452332'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3843, N'广西壮族自治区', N'贺州地区', N'岑溪市', N'452401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3844, N'广西壮族自治区', N'贺州地区', N'贺州市', N'452402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3845, N'广西壮族自治区', N'贺州地区', N'岑溪县', N'452421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3846, N'广西壮族自治区', N'贺州地区', N'苍梧县', N'452422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3847, N'广西壮族自治区', N'贺州地区', N'藤县', N'452423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3848, N'广西壮族自治区', N'贺州地区', N'昭平县', N'452424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3849, N'广西壮族自治区', N'贺州地区', N'蒙山县', N'452425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3850, N'广西壮族自治区', N'贺州地区', N'贺县', N'452426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3851, N'广西壮族自治区', N'贺州地区', N'钟山县', N'452427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3852, N'广西壮族自治区', N'贺州地区', N'富川瑶族自治县', N'452428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3853, N'广西壮族自治区', N'玉林地区', N'玉林市', N'452501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3854, N'广西壮族自治区', N'玉林地区', N'贵港市', N'452502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3855, N'广西壮族自治区', N'玉林地区', N'北流市', N'452503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3856, N'广西壮族自治区', N'玉林地区', N'桂平市', N'452504'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3857, N'广西壮族自治区', N'玉林地区', N'玉林县', N'452521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3858, N'广西壮族自治区', N'玉林地区', N'贵县', N'452522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3859, N'广西壮族自治区', N'玉林地区', N'桂平县', N'452523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3860, N'广西壮族自治区', N'玉林地区', N'平南县', N'452524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3861, N'广西壮族自治区', N'玉林地区', N'容县', N'452525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3862, N'广西壮族自治区', N'玉林地区', N'北流县', N'452526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3863, N'广西壮族自治区', N'玉林地区', N'陆川县', N'452527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3864, N'广西壮族自治区', N'玉林地区', N'博白县', N'452528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3865, N'广西壮族自治区', N'百色地区', N'百色市', N'452601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3866, N'广西壮族自治区', N'百色地区', N'百色县', N'452621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3867, N'广西壮族自治区', N'百色地区', N'田阳县', N'452622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3868, N'广西壮族自治区', N'百色地区', N'田东县', N'452623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3869, N'广西壮族自治区', N'百色地区', N'平果县', N'452624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3870, N'广西壮族自治区', N'百色地区', N'德保县', N'452625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3871, N'广西壮族自治区', N'百色地区', N'靖西县', N'452626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3872, N'广西壮族自治区', N'百色地区', N'那坡县', N'452627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3873, N'广西壮族自治区', N'百色地区', N'凌云县', N'452628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3874, N'广西壮族自治区', N'百色地区', N'乐业县', N'452629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3875, N'广西壮族自治区', N'百色地区', N'田林县', N'452630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3876, N'广西壮族自治区', N'百色地区', N'隆林各族自治县', N'452631'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3877, N'广西壮族自治区', N'百色地区', N'西林县', N'452632'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3878, N'广西壮族自治区', N'河池地区', N'河池市', N'452701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3879, N'广西壮族自治区', N'河池地区', N'宜州市', N'452702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3880, N'广西壮族自治区', N'河池地区', N'河池县', N'452721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3881, N'广西壮族自治区', N'河池地区', N'宜山县', N'452722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3882, N'广西壮族自治区', N'河池地区', N'罗城仫佬族自治县', N'452723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3883, N'广西壮族自治区', N'河池地区', N'环江毛南族自治县', N'452724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3884, N'广西壮族自治区', N'河池地区', N'南丹县', N'452725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3885, N'广西壮族自治区', N'河池地区', N'天峨县', N'452726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3886, N'广西壮族自治区', N'河池地区', N'凤山县', N'452727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3887, N'广西壮族自治区', N'河池地区', N'东兰县', N'452728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3888, N'广西壮族自治区', N'河池地区', N'巴马瑶族自治县', N'452729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3889, N'广西壮族自治区', N'河池地区', N'都安瑶族自治县', N'452730'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3890, N'广西壮族自治区', N'河池地区', N'大化瑶族自治县', N'452731'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3891, N'广西壮族自治区', N'钦州地区', N'北海市', N'452801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3892, N'广西壮族自治区', N'钦州地区', N'钦州市', N'452802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3893, N'广西壮族自治区', N'钦州地区', N'上思县', N'452821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3894, N'广西壮族自治区', N'钦州地区', N'防城各族自治县', N'452822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3895, N'广西壮族自治区', N'钦州地区', N'钦州县', N'452823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3896, N'广西壮族自治区', N'钦州地区', N'灵山县', N'452824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3897, N'广西壮族自治区', N'钦州地区', N'合浦县', N'452825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3898, N'广西壮族自治区', N'钦州地区', N'浦北县', N'452826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3899, N'海南省', N'海口市', N'市辖区', N'460101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3900, N'海南省', N'海口市', N'振东区', N'460102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3901, N'海南省', N'海口市', N'新华区', N'460103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3902, N'海南省', N'海口市', N'秀英区', N'460104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3903, N'海南省', N'海口市', N'秀英区', N'460105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3904, N'海南省', N'海口市', N'龙华区', N'460106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3905, N'海南省', N'海口市', N'琼山区', N'460107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3906, N'海南省', N'海口市', N'美兰区', N'460108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3907, N'海南省', N'三亚市', N'市辖区', N'460201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3908, N'海南省', NULL, N'陵水黎族自治县', N'469034'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3909, N'海南省', NULL, N'保亭黎族苗族自治县', N'469035'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3910, N'海南省', NULL, N'琼中黎族苗族自治县', N'469036'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3911, N'海南省', NULL, N'西沙群岛', N'469037'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3912, N'海南省', NULL, N'南沙群岛', N'469038'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3913, N'海南省', NULL, N'中沙群岛的岛礁及其海域', N'469039'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3914, N'海南省', NULL, N'通什市', N'460001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3915, N'海南省', NULL, N'琼海市', N'460002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3916, N'海南省', NULL, N'儋州市', N'460003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3917, N'海南省', NULL, N'琼山市', N'460004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3918, N'海南省', NULL, N'文昌市', N'460005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3919, N'海南省', NULL, N'万宁市', N'460006'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3920, N'海南省', NULL, N'东方市', N'460007'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3921, N'海南省', NULL, N'琼山县', N'460021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3922, N'海南省', NULL, N'文昌县', N'460022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3923, N'海南省', NULL, N'琼海县', N'460023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3924, N'海南省', NULL, N'万宁县', N'460024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3925, N'海南省', NULL, N'定安县', N'460025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3926, N'海南省', NULL, N'屯昌县', N'460026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3927, N'海南省', NULL, N'澄迈县', N'460027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3928, N'海南省', NULL, N'临高县', N'460028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3929, N'海南省', NULL, N'儋县', N'460029'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3930, N'海南省', NULL, N'白沙黎族自治县', N'460030'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3931, N'海南省', NULL, N'昌江黎族自治县', N'460031'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3932, N'海南省', NULL, N'东方黎族自治县', N'460032'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3933, N'海南省', NULL, N'乐东黎族自治县', N'460033'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3934, N'海南省', NULL, N'陵水黎族自治县', N'460034'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3935, N'海南省', NULL, N'保亭黎族苗族自治县', N'460035'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3936, N'海南省', NULL, N'琼中黎族苗族自治县', N'460036'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3937, N'海南省', NULL, N'西沙群岛', N'460037'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3938, N'海南省', NULL, N'南沙群岛', N'460038'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3939, N'海南省', NULL, N'中沙群岛的岛礁及其海域', N'460039'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3940, N'海南省', NULL, N'五指山市', N'469001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3941, N'海南省', NULL, N'琼海市', N'469002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3942, N'海南省', NULL, N'儋州市', N'469003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3943, N'海南省', NULL, N'文昌市', N'469005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3944, N'海南省', NULL, N'万宁市', N'469006'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3945, N'海南省', NULL, N'东方市', N'469007'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3946, N'海南省', NULL, N'定安县', N'469025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3947, N'海南省', NULL, N'屯昌县', N'469026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3948, N'海南省', NULL, N'澄迈县', N'469027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3949, N'海南省', NULL, N'临高县', N'469028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3950, N'海南省', NULL, N'白沙黎族自治县', N'469030'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3951, N'海南省', NULL, N'昌江黎族自治县', N'469031'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3952, N'海南省', NULL, N'乐东黎族自治县', N'469033'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3953, N'重庆市', N'市', N'江津市', N'500381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3954, N'重庆市', N'市', N'合川市', N'500382'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3955, N'重庆市', N'市', N'永川市', N'500383'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3956, N'重庆市', N'市', N'南川市', N'500384'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3957, N'重庆市', NULL, N'万州区', N'500101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3958, N'重庆市', NULL, N'涪陵区', N'500102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3959, N'重庆市', NULL, N'渝中区', N'500103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3960, N'重庆市', NULL, N'大渡口区', N'500104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3961, N'重庆市', NULL, N'江北区', N'500105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3962, N'重庆市', NULL, N'沙坪坝区', N'500106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3963, N'重庆市', NULL, N'九龙坡区', N'500107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3964, N'重庆市', NULL, N'南岸区', N'500108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3965, N'重庆市', NULL, N'北碚区', N'500109'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3966, N'重庆市', NULL, N'万盛区', N'500110'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3967, N'重庆市', NULL, N'双桥区', N'500111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3968, N'重庆市', NULL, N'渝北区', N'500112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3969, N'重庆市', NULL, N'巴南区', N'500113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3970, N'重庆市', NULL, N'黔江区', N'500114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3971, N'重庆市', NULL, N'长寿区', N'500115'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3972, N'重庆市', NULL, N'渝中区', N'500201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3973, N'重庆市', NULL, N'江北区', N'500211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3974, N'重庆市', NULL, N'沙坪坝区', N'500212'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3975, N'重庆市', NULL, N'九龙坡区', N'500213'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3976, N'重庆市', NULL, N'南岸区', N'500214'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3977, N'重庆市', NULL, N'北碚区', N'500215'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3978, N'重庆市', NULL, N'万盛区', N'500216'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3979, N'重庆市', NULL, N'双桥区', N'500217'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3980, N'重庆市', NULL, N'长寿县', N'500221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3981, N'重庆市', NULL, N'綦江县', N'500222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3982, N'重庆市', NULL, N'潼南县', N'500223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3983, N'重庆市', NULL, N'铜梁县', N'500224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3984, N'重庆市', NULL, N'大足县', N'500225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3985, N'重庆市', NULL, N'荣昌县', N'500226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3986, N'重庆市', NULL, N'璧山县', N'500227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3987, N'重庆市', NULL, N'梁平县', N'500228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3988, N'重庆市', NULL, N'城口县', N'500229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3989, N'重庆市', NULL, N'丰都县', N'500230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3990, N'重庆市', NULL, N'垫江县', N'500231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3991, N'重庆市', NULL, N'武隆县', N'500232'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3992, N'重庆市', NULL, N'忠县', N'500233'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3993, N'重庆市', NULL, N'开县', N'500234'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3994, N'重庆市', NULL, N'云阳县', N'500235'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3995, N'重庆市', NULL, N'奉节县', N'500236'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3996, N'重庆市', NULL, N'巫山县', N'500237'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3997, N'重庆市', NULL, N'巫溪县', N'500238'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3998, N'重庆市', NULL, N'黔江土家族苗族自治县', N'500239'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3999, N'重庆市', NULL, N'石柱土家族自治县', N'500240'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4000, N'重庆市', NULL, N'秀山土家族苗族自治县', N'500241'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4001, N'重庆市', NULL, N'酉阳土家族苗族自治县', N'500242'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4002, N'重庆市', NULL, N'彭水苗族土家族自治县', N'500243'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4003, N'四川省', N'自贡市', N'市辖区', N'510301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4004, N'四川省', N'自贡市', N'自流井区', N'510302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4005, N'四川省', N'自贡市', N'贡井区', N'510303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4006, N'四川省', N'自贡市', N'大安区', N'510304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4007, N'四川省', N'自贡市', N'沿滩区', N'510311'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4008, N'四川省', N'自贡市', N'荣县', N'510321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4009, N'四川省', N'自贡市', N'富顺县', N'510322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4010, N'四川省', N'攀枝花市', N'市辖区', N'510401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4011, N'四川省', N'攀枝花市', N'东区', N'510402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4012, N'四川省', N'攀枝花市', N'西区', N'510403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4013, N'四川省', N'攀枝花市', N'仁和区', N'510411'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4014, N'四川省', N'攀枝花市', N'米易县', N'510421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4015, N'四川省', N'攀枝花市', N'盐边县', N'510422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4016, N'四川省', N'泸州市', N'市辖区', N'510501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4017, N'四川省', N'泸州市', N'江阳区', N'510502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4018, N'四川省', N'泸州市', N'纳溪区', N'510503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4019, N'四川省', N'泸州市', N'龙马潭区', N'510504'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4020, N'四川省', N'泸州市', N'泸县', N'510521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4021, N'四川省', N'泸州市', N'合江县', N'510522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4022, N'四川省', N'泸州市', N'纳溪县', N'510523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4023, N'四川省', N'泸州市', N'叙永县', N'510524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4024, N'四川省', N'泸州市', N'古蔺县', N'510525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4025, N'四川省', N'德阳市', N'市辖区', N'510601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4026, N'四川省', N'德阳市', N'市中区', N'510602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4027, N'四川省', N'德阳市', N'旌阳区', N'510603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4028, N'四川省', N'德阳市', N'绵竹县', N'510622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4029, N'四川省', N'德阳市', N'中江县', N'510623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4030, N'四川省', N'德阳市', N'广汉县', N'510624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4031, N'四川省', N'德阳市', N'什邡县', N'510625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4032, N'四川省', N'德阳市', N'罗江县', N'510626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4033, N'四川省', N'德阳市', N'广汉市', N'510681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4034, N'四川省', N'德阳市', N'什邡市', N'510682'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4035, N'四川省', N'德阳市', N'绵竹市', N'510683'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4036, N'四川省', N'绵阳市', N'市辖区', N'510701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4037, N'四川省', N'绵阳市', N'市中区', N'510702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4038, N'四川省', N'绵阳市', N'涪城区', N'510703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4039, N'四川省', N'绵阳市', N'游仙区', N'510704'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4040, N'四川省', N'绵阳市', N'江油县', N'510721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4041, N'四川省', N'绵阳市', N'三台县', N'510722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4042, N'四川省', N'绵阳市', N'盐亭县', N'510723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4043, N'四川省', N'绵阳市', N'安县', N'510724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4044, N'四川省', N'绵阳市', N'梓潼县', N'510725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4045, N'四川省', N'绵阳市', N'北川县', N'510726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4046, N'四川省', N'绵阳市', N'平武县', N'510727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4047, N'四川省', N'绵阳市', N'江油市', N'510781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4048, N'四川省', N'广元市', N'市辖区', N'510801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4049, N'四川省', N'广元市', N'市中区', N'510802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4050, N'四川省', N'广元市', N'元坝区', N'510811'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4051, N'四川省', N'广元市', N'朝天区', N'510812'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4052, N'四川省', N'广元市', N'旺苍县', N'510821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4053, N'四川省', N'广元市', N'青川县', N'510822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4054, N'四川省', N'广元市', N'剑阁县', N'510823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4055, N'四川省', N'广元市', N'苍溪县', N'510824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4056, N'四川省', N'遂宁市', N'市辖区', N'510901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4057, N'四川省', N'遂宁市', N'市中区', N'510902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4058, N'四川省', N'遂宁市', N'船山区', N'510903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4059, N'四川省', N'遂宁市', N'安居区', N'510904'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4060, N'四川省', N'遂宁市', N'蓬溪县', N'510921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4061, N'四川省', N'遂宁市', N'射洪县', N'510922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4062, N'四川省', N'遂宁市', N'大英县', N'510923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4063, N'四川省', N'内江市', N'市辖区', N'511001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4064, N'四川省', N'内江市', N'市中区', N'511002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4065, N'四川省', N'内江市', N'东兴区', N'511011'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4066, N'四川省', N'内江市', N'内江县', N'511021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4067, N'四川省', N'内江市', N'乐至县', N'511022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4068, N'四川省', N'内江市', N'安岳县', N'511023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4069, N'四川省', N'内江市', N'威远县', N'511024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4070, N'四川省', N'内江市', N'资中县', N'511025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4071, N'四川省', N'内江市', N'资阳市', N'511026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4072, N'四川省', N'内江市', N'简阳县', N'511027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4073, N'四川省', N'内江市', N'隆昌县', N'511028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4074, N'四川省', N'内江市', N'资阳市', N'511081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4075, N'四川省', N'万县地区', N'奉节县', N'512226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4076, N'四川省', N'万县地区', N'巫山县', N'512227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4077, N'四川省', N'万县地区', N'巫溪县', N'512228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4078, N'四川省', N'万县地区', N'城口县', N'512229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4079, N'四川省', N'万县地区', N'万县市', N'512201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4080, N'四川省', N'万县地区', N'万县', N'512221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4081, N'四川省', N'万县地区', N'开县', N'512222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4082, N'四川省', N'万县地区', N'忠县', N'512223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4083, N'四川省', N'万县地区', N'梁平县', N'512224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4084, N'四川省', N'万县地区', N'云阳县', N'512225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4085, N'四川省', N'涪陵地区', N'涪陵市', N'512301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4086, N'四川省', N'涪陵地区', N'南川市', N'512302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4087, N'四川省', N'涪陵地区', N'涪陵县', N'512321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4088, N'四川省', N'涪陵地区', N'垫江县', N'512322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4089, N'四川省', N'涪陵地区', N'南川县', N'512323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4090, N'四川省', N'涪陵地区', N'丰都县', N'512324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4091, N'四川省', N'涪陵地区', N'石柱县', N'512325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4092, N'四川省', N'涪陵地区', N'武隆县', N'512326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4093, N'四川省', N'涪陵地区', N'彭水县', N'512327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4094, N'四川省', N'涪陵地区', N'黔江县', N'512328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4095, N'四川省', N'涪陵地区', N'酉阳县', N'512329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4096, N'四川省', N'涪陵地区', N'秀山县', N'512330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4097, N'四川省', N'宜宾地区', N'宜宾市', N'512501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4098, N'四川省', N'宜宾地区', N'宜宾县', N'512527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4099, N'四川省', N'宜宾地区', N'南溪县', N'512528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4100, N'四川省', N'宜宾地区', N'江安县', N'512529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4101, N'四川省', N'宜宾地区', N'长宁县', N'512530'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4102, N'四川省', N'宜宾地区', N'高县', N'512531'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4103, N'四川省', N'宜宾地区', N'筠连县', N'512532'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4104, N'四川省', N'宜宾地区', N'珙县', N'512533'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4105, N'四川省', N'宜宾地区', N'兴文县', N'512534'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4106, N'四川省', N'宜宾地区', N'屏山县', N'512535'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4107, N'四川省', N'南充地区', N'南充市', N'512901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4108, N'四川省', N'南充地区', N'华蓥市', N'512902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4109, N'四川省', N'南充地区', N'阆中市', N'512903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4110, N'四川省', N'南充地区', N'南充县', N'512921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4111, N'四川省', N'南充地区', N'南部县', N'512922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4112, N'四川省', N'南充地区', N'岳池县', N'512923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4113, N'四川省', N'南充地区', N'营山县', N'512924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4114, N'四川省', N'南充地区', N'广安县', N'512925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4115, N'四川省', N'南充地区', N'蓬安县', N'512926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4116, N'四川省', N'南充地区', N'仪陇县', N'512927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4117, N'四川省', N'南充地区', N'武胜县', N'512928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4118, N'四川省', N'南充地区', N'西充县', N'512929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4119, N'四川省', N'南充地区', N'阆中县', N'512930'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4120, N'四川省', N'南充地区', N'苍溪县', N'512931'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4121, N'四川省', N'南充地区', N'华云工农区', N'512932'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4122, N'四川省', N'达川地区', N'达川市', N'513001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4123, N'四川省', N'达川地区', N'万源市', N'513002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4124, N'四川省', N'达川地区', N'达县', N'513021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4125, N'四川省', N'达川地区', N'宣汉县', N'513022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4126, N'四川省', N'达川地区', N'开江县', N'513023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4127, N'四川省', N'达川地区', N'万源县', N'513024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4128, N'四川省', N'达川地区', N'通江县', N'513025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4129, N'四川省', N'达川地区', N'南江县', N'513026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4130, N'四川省', N'达川地区', N'巴中县', N'513027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4131, N'四川省', N'达川地区', N'平昌县', N'513028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4132, N'四川省', N'达川地区', N'大竹县', N'513029'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4133, N'四川省', N'达川地区', N'渠县', N'513030'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4134, N'四川省', N'达川地区', N'邻水县', N'513031'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4135, N'四川省', N'达川地区', N'白沙工农区', N'513032'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4136, N'四川省', N'雅安地区', N'雅安市', N'513101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4137, N'四川省', N'雅安地区', N'名山县', N'513122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4138, N'四川省', N'雅安地区', N'荥经县', N'513123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4139, N'四川省', N'雅安地区', N'汉源县', N'513124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4140, N'四川省', N'雅安地区', N'石棉县', N'513125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4141, N'四川省', N'雅安地区', N'天全县', N'513126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4142, N'四川省', N'雅安地区', N'芦山县', N'513127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4143, N'四川省', N'雅安地区', N'宝兴县', N'513128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4144, N'四川省', N'阿坝藏族羌族自治州', N'汶川县', N'513221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4145, N'四川省', N'阿坝藏族羌族自治州', N'理县', N'513222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4146, N'四川省', N'阿坝藏族羌族自治州', N'茂县', N'513223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4147, N'四川省', N'阿坝藏族羌族自治州', N'松潘县', N'513224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4148, N'四川省', N'阿坝藏族羌族自治州', N'九寨沟县', N'513225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4149, N'四川省', N'阿坝藏族羌族自治州', N'金川县', N'513226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4150, N'四川省', N'阿坝藏族羌族自治州', N'小金县', N'513227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4151, N'四川省', N'阿坝藏族羌族自治州', N'黑水县', N'513228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4152, N'四川省', N'阿坝藏族羌族自治州', N'马尔康县', N'513229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4153, N'四川省', N'阿坝藏族羌族自治州', N'壤塘县', N'513230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4154, N'四川省', N'阿坝藏族羌族自治州', N'阿坝县', N'513231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4155, N'四川省', N'阿坝藏族羌族自治州', N'若尔盖县', N'513232'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4156, N'四川省', N'阿坝藏族羌族自治州', N'红原县', N'513233'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4157, N'四川省', N'甘孜藏族自治州', N'康定县', N'513321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4158, N'四川省', N'甘孜藏族自治州', N'泸定县', N'513322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4159, N'四川省', N'甘孜藏族自治州', N'丹巴县', N'513323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4160, N'四川省', N'甘孜藏族自治州', N'九龙县', N'513324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4161, N'四川省', N'甘孜藏族自治州', N'雅江县', N'513325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4162, N'四川省', N'甘孜藏族自治州', N'道孚县', N'513326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4163, N'四川省', N'甘孜藏族自治州', N'炉霍县', N'513327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4164, N'四川省', N'甘孜藏族自治州', N'甘孜县', N'513328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4165, N'四川省', N'甘孜藏族自治州', N'新龙县', N'513329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4166, N'四川省', N'甘孜藏族自治州', N'德格县', N'513330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4167, N'四川省', N'甘孜藏族自治州', N'白玉县', N'513331'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4168, N'四川省', N'甘孜藏族自治州', N'石渠县', N'513332'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4169, N'四川省', N'甘孜藏族自治州', N'色达县', N'513333'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4170, N'四川省', N'甘孜藏族自治州', N'理塘县', N'513334'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4171, N'四川省', N'甘孜藏族自治州', N'巴塘县', N'513335'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4172, N'四川省', N'甘孜藏族自治州', N'乡城县', N'513336'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4173, N'四川省', N'甘孜藏族自治州', N'稻城县', N'513337'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4174, N'四川省', N'甘孜藏族自治州', N'得荣县', N'513338'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4175, N'四川省', N'凉山彝族自治州', N'西昌市', N'513401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4176, N'四川省', N'凉山彝族自治州', N'木里藏族自治县', N'513422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4177, N'四川省', N'凉山彝族自治州', N'盐源县', N'513423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4178, N'四川省', N'凉山彝族自治州', N'德昌县', N'513424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4179, N'四川省', N'凉山彝族自治州', N'会理县', N'513425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4180, N'四川省', N'凉山彝族自治州', N'会东县', N'513426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4181, N'四川省', N'凉山彝族自治州', N'宁南县', N'513427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4182, N'四川省', N'凉山彝族自治州', N'普格县', N'513428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4183, N'四川省', N'凉山彝族自治州', N'布拖县', N'513429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4184, N'四川省', N'凉山彝族自治州', N'金阳县', N'513430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4185, N'四川省', N'凉山彝族自治州', N'昭觉县', N'513431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4186, N'四川省', N'凉山彝族自治州', N'喜德县', N'513432'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4187, N'四川省', N'凉山彝族自治州', N'冕宁县', N'513433'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4188, N'四川省', N'凉山彝族自治州', N'越西县', N'513434'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4189, N'四川省', N'凉山彝族自治州', N'甘洛县', N'513435'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4190, N'四川省', N'凉山彝族自治州', N'美姑县', N'513436'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4191, N'四川省', N'凉山彝族自治州', N'雷波县', N'513437'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4192, N'四川省', N'成都市', N'市辖区', N'510101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4193, N'四川省', N'成都市', N'东城区', N'510102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4194, N'四川省', N'成都市', N'西城区', N'510103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4195, N'四川省', N'成都市', N'锦江区', N'510104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4196, N'四川省', N'成都市', N'青羊区', N'510105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4197, N'四川省', N'成都市', N'金牛区', N'510106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4198, N'四川省', N'成都市', N'武侯区', N'510107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4199, N'四川省', N'成都市', N'成华区', N'510108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4200, N'四川省', N'成都市', N'金牛区', N'510111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4201, N'四川省', N'成都市', N'龙泉驿区', N'510112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4202, N'四川省', N'成都市', N'青白江区', N'510113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4203, N'四川省', N'成都市', N'新都区', N'510114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4204, N'四川省', N'成都市', N'市区', N'510120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4205, N'四川省', N'成都市', N'金堂县', N'510121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4206, N'四川省', N'成都市', N'双流县', N'510122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4207, N'四川省', N'成都市', N'温江县', N'510123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4208, N'四川省', N'成都市', N'郫县', N'510124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4209, N'四川省', N'成都市', N'新都县', N'510125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4210, N'四川省', N'成都市', N'彭县', N'510126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4211, N'四川省', N'成都市', N'灌县', N'510127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4212, N'四川省', N'成都市', N'崇庆县', N'510128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4213, N'四川省', N'成都市', N'大邑县', N'510129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4214, N'四川省', N'成都市', N'邛崃县', N'510130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4215, N'四川省', N'成都市', N'蒲江县', N'510131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4216, N'四川省', N'成都市', N'新津县', N'510132'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4217, N'四川省', N'成都市', N'都江堰市', N'510181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4218, N'四川省', N'成都市', N'彭州市', N'510182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4219, N'四川省', N'成都市', N'邛崃市', N'510183'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4220, N'四川省', N'成都市', N'崇州市', N'510184'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4221, N'四川省', N'重庆市', N'市辖区', N'510201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4222, N'四川省', N'重庆市', N'市中区', N'510202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4223, N'四川省', N'重庆市', N'大渡口区', N'510203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4224, N'四川省', N'重庆市', N'江北区', N'510211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4225, N'四川省', N'重庆市', N'沙坪坝区', N'510212'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4226, N'四川省', N'重庆市', N'九龙坡区', N'510213'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4227, N'四川省', N'重庆市', N'南岸区', N'510214'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4228, N'四川省', N'重庆市', N'北碚区', N'510215'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4229, N'四川省', N'重庆市', N'万盛区', N'510216'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4230, N'四川省', N'重庆市', N'双桥区', N'510217'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4231, N'四川省', N'重庆市', N'渝北区', N'510218'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4232, N'四川省', N'重庆市', N'巴南区', N'510219'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4233, N'四川省', N'重庆市', N'市区', N'510220'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4234, N'四川省', N'重庆市', N'长寿县', N'510221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4235, N'四川省', N'重庆市', N'巴县', N'510222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4236, N'四川省', N'重庆市', N'綦江县', N'510223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4237, N'四川省', N'重庆市', N'江北县', N'510224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4238, N'四川省', N'重庆市', N'江津县', N'510225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4239, N'四川省', N'重庆市', N'合川县', N'510226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4240, N'四川省', N'重庆市', N'潼南县', N'510227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4241, N'四川省', N'重庆市', N'铜梁县', N'510228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4242, N'四川省', N'重庆市', N'永川县', N'510229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4243, N'四川省', N'重庆市', N'大足县', N'510230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4244, N'四川省', N'重庆市', N'北碚区', N'510231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4245, N'四川省', N'重庆市', N'璧山县', N'510232'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4246, N'四川省', N'重庆市', N'永川市', N'510281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4247, N'四川省', N'重庆市', N'江津市', N'510282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4248, N'四川省', N'重庆市', N'合川市', N'510283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4249, N'四川省', N'乐山市', N'市辖区', N'511101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4250, N'四川省', N'乐山市', N'市中区', N'511102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4251, N'四川省', N'乐山市', N'沙湾区', N'511111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4252, N'四川省', N'乐山市', N'五通桥区', N'511112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4253, N'四川省', N'乐山市', N'金口河区', N'511113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4254, N'四川省', N'乐山市', N'仁寿县', N'511121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4255, N'四川省', N'乐山市', N'眉山县', N'511122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4256, N'四川省', N'乐山市', N'犍为县', N'511123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4257, N'四川省', N'乐山市', N'井研县', N'511124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4258, N'四川省', N'乐山市', N'峨眉县', N'511125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4259, N'四川省', N'乐山市', N'夹江县', N'511126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4260, N'四川省', N'乐山市', N'洪雅县', N'511127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4261, N'四川省', N'乐山市', N'彭山县', N'511128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4262, N'四川省', N'乐山市', N'沐川县', N'511129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4263, N'四川省', N'乐山市', N'青神县', N'511130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4264, N'四川省', N'乐山市', N'丹棱县', N'511131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4265, N'四川省', N'乐山市', N'峨边彝族自治县', N'511132'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4266, N'四川省', N'乐山市', N'马边彝族自治县', N'511133'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4267, N'四川省', N'乐山市', N'峨眉山市', N'511181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4268, N'四川省', N'万县市', N'市辖区', N'511201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4269, N'四川省', N'万县市', N'龙宝区', N'511202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4270, N'四川省', N'万县市', N'天成区', N'511203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4271, N'四川省', N'万县市', N'五桥区', N'511204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4272, N'四川省', N'万县市', N'开县', N'511221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4273, N'四川省', N'万县市', N'忠县', N'511222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4274, N'四川省', N'万县市', N'梁平县', N'511223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4275, N'四川省', N'万县市', N'云阳县', N'511224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4276, N'四川省', N'万县市', N'奉节县', N'511225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4277, N'四川省', N'万县市', N'巫山县', N'511226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4278, N'四川省', N'万县市', N'巫溪县', N'511227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4279, N'四川省', N'万县市', N'城口县', N'511228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4280, N'四川省', N'南充市', N'市辖区', N'511301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4281, N'四川省', N'南充市', N'顺庆区', N'511302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4282, N'四川省', N'南充市', N'高坪区', N'511303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4283, N'四川省', N'南充市', N'嘉陵区', N'511304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4284, N'四川省', N'南充市', N'南部县', N'511321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4285, N'四川省', N'南充市', N'营山县', N'511322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4286, N'四川省', N'南充市', N'蓬安县', N'511323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4287, N'四川省', N'南充市', N'仪陇县', N'511324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4288, N'四川省', N'南充市', N'西充县', N'511325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4289, N'四川省', N'南充市', N'阆中市', N'511381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4290, N'四川省', N'眉山市', N'市辖区', N'511401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4291, N'四川省', N'眉山市', N'东坡区', N'511402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4292, N'四川省', N'眉山市', N'仁寿县', N'511421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4293, N'四川省', N'眉山市', N'彭山县', N'511422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4294, N'四川省', N'眉山市', N'洪雅县', N'511423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4295, N'四川省', N'眉山市', N'丹棱县', N'511424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4296, N'四川省', N'眉山市', N'青神县', N'511425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4297, N'四川省', N'宜宾市', N'市辖区', N'511501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4298, N'四川省', N'宜宾市', N'翠屏区', N'511502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4299, N'四川省', N'宜宾市', N'宜宾县', N'511521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4300, N'四川省', N'宜宾市', N'南溪县', N'511522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4301, N'四川省', N'宜宾市', N'江安县', N'511523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4302, N'四川省', N'宜宾市', N'长宁县', N'511524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4303, N'四川省', N'宜宾市', N'高县', N'511525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4304, N'四川省', N'宜宾市', N'珙县', N'511526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4305, N'四川省', N'宜宾市', N'筠连县', N'511527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4306, N'四川省', N'宜宾市', N'兴文县', N'511528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4307, N'四川省', N'宜宾市', N'屏山县', N'511529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4308, N'四川省', N'广安市', N'市辖区', N'511601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4309, N'四川省', N'广安市', N'广安区', N'511602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4310, N'四川省', N'广安市', N'岳池县', N'511621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4311, N'四川省', N'广安市', N'武胜县', N'511622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4312, N'四川省', N'广安市', N'邻水县', N'511623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4313, N'四川省', N'广安市', N'华蓥市', N'511681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4314, N'四川省', N'达州市', N'市辖区', N'511701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4315, N'四川省', N'达州市', N'通川区', N'511702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4316, N'四川省', N'达州市', N'达县', N'511721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4317, N'四川省', N'达州市', N'宣汉县', N'511722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4318, N'四川省', N'达州市', N'开江县', N'511723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4319, N'四川省', N'达州市', N'大竹县', N'511724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4320, N'四川省', N'达州市', N'渠县', N'511725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4321, N'四川省', N'达州市', N'万源市', N'511781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4322, N'四川省', N'雅安市', N'市辖区', N'511801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4323, N'四川省', N'雅安市', N'雨城区', N'511802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4324, N'四川省', N'雅安市', N'名山县', N'511821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4325, N'四川省', N'雅安市', N'荥经县', N'511822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4326, N'四川省', N'雅安市', N'汉源县', N'511823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4327, N'四川省', N'雅安市', N'石棉县', N'511824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4328, N'四川省', N'雅安市', N'天全县', N'511825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4329, N'四川省', N'雅安市', N'芦山县', N'511826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4330, N'四川省', N'雅安市', N'宝兴县', N'511827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4331, N'四川省', N'巴中市', N'市辖区', N'511901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4332, N'四川省', N'巴中市', N'巴州区', N'511902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4333, N'四川省', N'巴中市', N'通江县', N'511921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4334, N'四川省', N'巴中市', N'南江县', N'511922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4335, N'四川省', N'巴中市', N'平昌县', N'511923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4336, N'四川省', N'资阳市', N'市辖区', N'512001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4337, N'四川省', N'资阳市', N'雁江区', N'512002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4338, N'四川省', N'资阳市', N'安岳县', N'512021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4339, N'四川省', N'资阳市', N'乐至县', N'512022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4340, N'四川省', N'资阳市', N'简阳市', N'512081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4341, N'四川省', N'黔江地区', N'石柱土家族自治县', N'513521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4342, N'四川省', N'黔江地区', N'秀山土家族苗族自治县', N'513522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4343, N'四川省', N'黔江地区', N'黔江土家族苗族自治县', N'513523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4344, N'四川省', N'黔江地区', N'酉阳土家族苗族自治县', N'513524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4345, N'四川省', N'广安市', N'华蓥市', N'513601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4346, N'四川省', N'广安市', N'岳池县', N'513621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4347, N'四川省', N'广安市', N'广安县', N'513622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4348, N'四川省', N'广安市', N'武胜县', N'513623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4349, N'四川省', N'广安市', N'邻水县', N'513624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4350, N'四川省', N'巴中地区', N'巴中市', N'513701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4351, N'四川省', N'巴中地区', N'通江县', N'513721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4352, N'四川省', N'巴中地区', N'南江县', N'513722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4353, N'四川省', N'巴中地区', N'平昌县', N'513723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4354, N'四川省', N'眉山地区', N'眉山县', N'513821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4355, N'四川省', N'眉山地区', N'仁寿县', N'513822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4356, N'四川省', N'眉山地区', N'彭山县', N'513823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4357, N'四川省', N'眉山地区', N'洪雅县', N'513824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4358, N'四川省', N'眉山地区', N'丹棱县', N'513825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4359, N'四川省', N'眉山地区', N'青神县', N'513826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4360, N'四川省', N'资阳地区', N'资阳市', N'513901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4361, N'四川省', N'资阳地区', N'简阳市', N'513902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4362, N'四川省', N'资阳地区', N'安岳县', N'513921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4363, N'四川省', N'资阳地区', N'乐至县', N'513922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4364, N'四川省', NULL, N'广汉市', N'519001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4365, N'四川省', NULL, N'江油市', N'519002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4366, N'四川省', NULL, N'都江堰市', N'519003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4367, N'四川省', NULL, N'峨眉山市', N'519004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4368, N'贵州省', N'贵阳市', N'市辖区', N'520101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4369, N'贵州省', N'贵阳市', N'南明区', N'520102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4370, N'贵州省', N'贵阳市', N'云岩区', N'520103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4371, N'贵州省', N'贵阳市', N'花溪区', N'520111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4372, N'贵州省', N'贵阳市', N'乌当区', N'520112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4373, N'贵州省', N'贵阳市', N'白云区', N'520113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4374, N'贵州省', N'贵阳市', N'小河区', N'520114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4375, N'贵州省', N'贵阳市', N'开阳县', N'520121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4376, N'贵州省', N'贵阳市', N'息烽县', N'520122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4377, N'贵州省', N'贵阳市', N'修文县', N'520123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4378, N'贵州省', N'贵阳市', N'清镇市', N'520181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4379, N'贵州省', N'六盘水市', N'钟山区', N'520201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4380, N'贵州省', N'六盘水市', N'盘县特区', N'520202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4381, N'贵州省', N'六盘水市', N'六枝特区', N'520203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4382, N'贵州省', N'六盘水市', N'水城县', N'520221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4383, N'贵州省', N'六盘水市', N'盘县', N'520222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4384, N'贵州省', N'遵义市', N'市辖区', N'520301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4385, N'贵州省', N'遵义市', N'红花岗区', N'520302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4386, N'贵州省', N'遵义市', N'汇川区', N'520303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4387, N'贵州省', N'遵义市', N'遵义县', N'520321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4388, N'贵州省', N'遵义市', N'桐梓县', N'520322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4389, N'贵州省', N'遵义市', N'绥阳县', N'520323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4390, N'贵州省', N'遵义市', N'正安县', N'520324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4391, N'贵州省', N'遵义市', N'道真仡佬族苗族自治县', N'520325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4392, N'贵州省', N'遵义市', N'务川仡佬族苗族自治县', N'520326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4393, N'贵州省', N'遵义市', N'凤冈县', N'520327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4394, N'贵州省', N'遵义市', N'湄潭县', N'520328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4395, N'贵州省', N'遵义市', N'余庆县', N'520329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4396, N'贵州省', N'遵义市', N'习水县', N'520330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4397, N'贵州省', N'遵义市', N'赤水市', N'520381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4398, N'贵州省', N'遵义市', N'仁怀市', N'520382'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4399, N'贵州省', N'安顺市', N'市辖区', N'520401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4400, N'贵州省', N'安顺市', N'西秀区', N'520402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4401, N'贵州省', N'安顺市', N'平坝县', N'520421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4402, N'贵州省', N'安顺市', N'普定县', N'520422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4403, N'贵州省', N'安顺市', N'镇宁布依族苗族自治县', N'520423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4404, N'贵州省', N'安顺市', N'关岭布依族苗族自治县', N'520424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4405, N'贵州省', N'安顺市', N'紫云苗族布依族自治县', N'520425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4406, N'贵州省', N'遵义地区', N'遵义市', N'522101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4407, N'贵州省', N'遵义地区', N'赤水市', N'522102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4408, N'贵州省', N'遵义地区', N'仁怀市', N'522103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4409, N'贵州省', N'遵义地区', N'遵义县', N'522121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4410, N'贵州省', N'遵义地区', N'桐梓县', N'522122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4411, N'贵州省', N'遵义地区', N'绥阳县', N'522123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4412, N'贵州省', N'遵义地区', N'正安县', N'522124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4413, N'贵州省', N'遵义地区', N'道真仡佬族苗族自治县', N'522125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4414, N'贵州省', N'遵义地区', N'务川仡佬族苗族自治县', N'522126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4415, N'贵州省', N'遵义地区', N'凤冈县', N'522127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4416, N'贵州省', N'遵义地区', N'湄潭县', N'522128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4417, N'贵州省', N'遵义地区', N'余庆县', N'522129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4418, N'贵州省', N'遵义地区', N'仁怀县', N'522130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4419, N'贵州省', N'遵义地区', N'赤水县', N'522131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4420, N'贵州省', N'遵义地区', N'习水县', N'522132'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4421, N'贵州省', N'铜仁地区', N'铜仁市', N'522201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4422, N'贵州省', N'铜仁地区', N'铜仁县', N'522221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4423, N'贵州省', N'铜仁地区', N'江口县', N'522222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4424, N'贵州省', N'铜仁地区', N'玉屏侗族自治县', N'522223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4425, N'贵州省', N'铜仁地区', N'石阡县', N'522224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4426, N'贵州省', N'铜仁地区', N'思南县', N'522225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4427, N'贵州省', N'铜仁地区', N'印江土家族苗族自治县', N'522226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4428, N'贵州省', N'铜仁地区', N'德江县', N'522227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4429, N'贵州省', N'铜仁地区', N'沿河土家族自治县', N'522228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4430, N'贵州省', N'铜仁地区', N'松桃苗族自治县', N'522229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4431, N'贵州省', N'铜仁地区', N'万山特区', N'522230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4432, N'贵州省', N'黔西南布依族苗族自治州', N'兴义市', N'522301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4433, N'贵州省', N'黔西南布依族苗族自治州', N'赤壁市', N'522302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4434, N'贵州省', N'黔西南布依族苗族自治州', N'兴义县', N'522321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4435, N'贵州省', N'黔西南布依族苗族自治州', N'兴仁县', N'522322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4436, N'贵州省', N'黔西南布依族苗族自治州', N'普安县', N'522323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4437, N'贵州省', N'黔西南布依族苗族自治州', N'晴隆县', N'522324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4438, N'贵州省', N'黔西南布依族苗族自治州', N'贞丰县', N'522325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4439, N'贵州省', N'黔西南布依族苗族自治州', N'望谟县', N'522326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4440, N'贵州省', N'黔西南布依族苗族自治州', N'册亨县', N'522327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4441, N'贵州省', N'黔西南布依族苗族自治州', N'安龙县', N'522328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4442, N'贵州省', N'毕节地区', N'毕节市', N'522401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4443, N'贵州省', N'毕节地区', N'毕节县', N'522421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4444, N'贵州省', N'毕节地区', N'大方县', N'522422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4445, N'贵州省', N'毕节地区', N'黔西县', N'522423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4446, N'贵州省', N'毕节地区', N'金沙县', N'522424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4447, N'贵州省', N'毕节地区', N'织金县', N'522425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4448, N'贵州省', N'毕节地区', N'纳雍县', N'522426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4449, N'贵州省', N'毕节地区', N'威宁彝族回族苗族自治县', N'522427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4450, N'贵州省', N'毕节地区', N'赫章县', N'522428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4451, N'贵州省', N'安顺地区', N'安顺市', N'522501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4452, N'贵州省', N'安顺地区', N'清镇市', N'522502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4453, N'贵州省', N'安顺地区', N'安顺县', N'522521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4454, N'贵州省', N'安顺地区', N'开阳县', N'522522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4455, N'贵州省', N'安顺地区', N'息烽县', N'522523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4456, N'贵州省', N'安顺地区', N'修文县', N'522524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4457, N'贵州省', N'安顺地区', N'清镇县', N'522525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4458, N'贵州省', N'安顺地区', N'平坝县', N'522526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4459, N'贵州省', N'安顺地区', N'普定县', N'522527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4460, N'贵州省', N'安顺地区', N'关岭布依族苗族自治县', N'522528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4461, N'贵州省', N'安顺地区', N'镇宁布依族苗族自治县', N'522529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4462, N'贵州省', N'安顺地区', N'紫云苗族布依族自治县', N'522530'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4463, N'贵州省', N'黔东南苗族侗族自治州', N'凯里市', N'522601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4464, N'贵州省', N'黔东南苗族侗族自治州', N'黄平县', N'522622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4465, N'贵州省', N'黔东南苗族侗族自治州', N'施秉县', N'522623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4466, N'贵州省', N'黔东南苗族侗族自治州', N'三穗县', N'522624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4467, N'贵州省', N'黔东南苗族侗族自治州', N'镇远县', N'522625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4468, N'贵州省', N'黔东南苗族侗族自治州', N'岑巩县', N'522626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4469, N'贵州省', N'黔东南苗族侗族自治州', N'天柱县', N'522627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4470, N'贵州省', N'黔东南苗族侗族自治州', N'锦屏县', N'522628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4471, N'贵州省', N'黔东南苗族侗族自治州', N'剑河县', N'522629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4472, N'贵州省', N'黔东南苗族侗族自治州', N'台江县', N'522630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4473, N'贵州省', N'黔东南苗族侗族自治州', N'黎平县', N'522631'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4474, N'贵州省', N'黔东南苗族侗族自治州', N'榕江县', N'522632'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4475, N'贵州省', N'黔东南苗族侗族自治州', N'从江县', N'522633'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4476, N'贵州省', N'黔东南苗族侗族自治州', N'雷山县', N'522634'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4477, N'贵州省', N'黔东南苗族侗族自治州', N'麻江县', N'522635'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4478, N'贵州省', N'黔东南苗族侗族自治州', N'丹寨县', N'522636'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4479, N'贵州省', N'黔南布依族苗族自治州', N'都匀市', N'522701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4480, N'贵州省', N'黔南布依族苗族自治州', N'福泉市', N'522702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4481, N'贵州省', N'黔南布依族苗族自治州', N'荔波县', N'522722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4482, N'贵州省', N'黔南布依族苗族自治州', N'贵定县', N'522723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4483, N'贵州省', N'黔南布依族苗族自治州', N'福泉县', N'522724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4484, N'贵州省', N'黔南布依族苗族自治州', N'瓮安县', N'522725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4485, N'贵州省', N'黔南布依族苗族自治州', N'独山县', N'522726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1, N'北京市', NULL, N'东城区', N'110101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2, N'北京市', NULL, N'西城区', N'110102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (3, N'北京市', NULL, N'崇文区', N'110103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4, N'北京市', NULL, N'宣武区', N'110104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5, N'北京市', NULL, N'朝阳区', N'110105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (6, N'北京市', NULL, N'丰台区', N'110106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (7, N'北京市', NULL, N'石景山区', N'110107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (8, N'北京市', NULL, N'海淀区', N'110108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (9, N'北京市', NULL, N'门头沟区', N'110109'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (10, N'北京市', NULL, N'燕山区', N'110110'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (11, N'北京市', NULL, N'房山区', N'110111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (12, N'北京市', NULL, N'通州区', N'110112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (13, N'北京市', NULL, N'顺义区', N'110113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (14, N'北京市', NULL, N'昌平区', N'110114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (15, N'北京市', NULL, N'大兴区', N'110115'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (16, N'北京市', NULL, N'怀柔区', N'110116'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (17, N'北京市', NULL, N'平谷区', N'110117'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (18, N'北京市', NULL, N'昌平县', N'110221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (19, N'北京市', NULL, N'顺义县', N'110222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (20, N'北京市', NULL, N'通县', N'110223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (21, N'北京市', NULL, N'大兴县', N'110224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (22, N'北京市', NULL, N'房山县', N'110225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (23, N'北京市', NULL, N'平谷县', N'110226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (24, N'北京市', NULL, N'怀柔县', N'110227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (25, N'北京市', NULL, N'密云县', N'110228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (26, N'北京市', NULL, N'延庆县', N'110229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (27, N'天津市', NULL, N'和平区', N'120101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (28, N'天津市', NULL, N'河东区', N'120102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (29, N'天津市', NULL, N'河西区', N'120103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (30, N'天津市', NULL, N'南开区', N'120104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (31, N'天津市', NULL, N'河北区', N'120105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (32, N'天津市', NULL, N'红桥区', N'120106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (33, N'天津市', NULL, N'塘沽区', N'120107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (34, N'天津市', NULL, N'汉沽区', N'120108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (35, N'天津市', NULL, N'大港区', N'120109'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (36, N'天津市', NULL, N'东丽区', N'120110'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (37, N'天津市', NULL, N'西青区', N'120111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (38, N'天津市', NULL, N'津南区', N'120112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (39, N'天津市', NULL, N'北辰区', N'120113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (40, N'天津市', NULL, N'武清区', N'120114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (41, N'天津市', NULL, N'宝坻区', N'120115'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (42, N'天津市', NULL, N'宁河县', N'120221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (43, N'天津市', NULL, N'武清县', N'120222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (44, N'天津市', NULL, N'静海县', N'120223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (45, N'天津市', NULL, N'宝坻县', N'120224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (46, N'天津市', NULL, N'蓟县', N'120225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (47, N'河北省', N'石家庄市', N'市辖区', N'130101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (48, N'河北省', N'石家庄市', N'长安区', N'130102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (49, N'河北省', N'石家庄市', N'桥东区', N'130103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (50, N'河北省', N'石家庄市', N'桥西区', N'130104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (51, N'河北省', N'石家庄市', N'新华区', N'130105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (52, N'河北省', N'石家庄市', N'郊区', N'130106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (53, N'河北省', N'石家庄市', N'井陉矿区', N'130107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (54, N'河北省', N'石家庄市', N'裕华区', N'130108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (55, N'河北省', N'石家庄市', N'井陉县', N'130121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (56, N'河北省', N'石家庄市', N'获鹿县', N'130122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (57, N'河北省', N'石家庄市', N'正定县', N'130123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (58, N'河北省', N'石家庄市', N'栾城县', N'130124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (59, N'河北省', N'石家庄市', N'行唐县', N'130125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (60, N'河北省', N'石家庄市', N'灵寿县', N'130126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (61, N'河北省', N'石家庄市', N'高邑县', N'130127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (62, N'河北省', N'石家庄市', N'深泽县', N'130128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (63, N'河北省', N'石家庄市', N'赞皇县', N'130129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (64, N'河北省', N'石家庄市', N'无极县', N'130130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (65, N'河北省', N'石家庄市', N'平山县', N'130131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (66, N'河北省', N'石家庄市', N'元氏县', N'130132'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (67, N'河北省', N'石家庄市', N'赵县', N'130133'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (68, N'河北省', N'石家庄市', N'辛集市', N'130181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (69, N'河北省', N'石家庄市', N'藁城市', N'130182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (70, N'河北省', N'石家庄市', N'晋州市', N'130183'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (71, N'河北省', N'石家庄市', N'新乐市', N'130184'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (72, N'河北省', N'石家庄市', N'鹿泉市', N'130185'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (73, N'河北省', N'唐山市', N'市辖区', N'130201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (74, N'河北省', N'唐山市', N'路南区', N'130202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (75, N'河北省', N'唐山市', N'路北区', N'130203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (76, N'河北省', N'唐山市', N'古冶区', N'130204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (77, N'河北省', N'唐山市', N'开平区', N'130205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (78, N'河北省', N'唐山市', N'新区', N'130206'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (79, N'河北省', N'唐山市', N'丰南区', N'130207'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (80, N'河北省', N'唐山市', N'丰润区', N'130208'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (81, N'河北省', N'唐山市', N'丰润县', N'130221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (82, N'河北省', N'唐山市', N'丰南县', N'130222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (83, N'河北省', N'唐山市', N'滦县', N'130223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (84, N'河北省', N'唐山市', N'滦南县', N'130224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (85, N'河北省', N'唐山市', N'乐亭县', N'130225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (86, N'河北省', N'唐山市', N'迁安县', N'130226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (87, N'河北省', N'唐山市', N'迁西县', N'130227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (88, N'河北省', N'唐山市', N'遵化县', N'130228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (89, N'河北省', N'唐山市', N'玉田县', N'130229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (90, N'河北省', N'唐山市', N'唐海县', N'130230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (91, N'河北省', N'唐山市', N'遵化市', N'130281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (92, N'河北省', N'唐山市', N'丰南市', N'130282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (93, N'河北省', N'唐山市', N'迁安市', N'130283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (94, N'河北省', N'秦皇岛市', N'市辖区', N'130301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (95, N'河北省', N'秦皇岛市', N'海港区', N'130302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (96, N'河北省', N'秦皇岛市', N'山海关区', N'130303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (97, N'河北省', N'秦皇岛市', N'北戴河区', N'130304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (98, N'河北省', N'秦皇岛市', N'青龙满族自治县', N'130321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (99, N'河北省', N'秦皇岛市', N'昌黎县', N'130322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (100, N'河北省', N'秦皇岛市', N'抚宁县', N'130323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (101, N'河北省', N'秦皇岛市', N'卢龙县', N'130324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (102, N'河北省', N'邯郸市', N'市辖区', N'130401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (103, N'河北省', N'邯郸市', N'邯山区', N'130402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (104, N'河北省', N'邯郸市', N'丛台区', N'130403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (105, N'河北省', N'邯郸市', N'复兴区', N'130404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (106, N'河北省', N'邯郸市', N'郊区', N'130405'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (107, N'河北省', N'邯郸市', N'峰峰矿区', N'130406'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (108, N'河北省', N'邯郸市', N'邯郸县', N'130421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (109, N'河北省', N'邯郸市', N'武安县', N'130422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (110, N'河北省', N'邯郸市', N'临漳县', N'130423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (111, N'河北省', N'邯郸市', N'成安县', N'130424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (112, N'河北省', N'邯郸市', N'大名县', N'130425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (113, N'河北省', N'邯郸市', N'涉县', N'130426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (114, N'河北省', N'邯郸市', N'磁县', N'130427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (115, N'河北省', N'邯郸市', N'肥乡县', N'130428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (116, N'河北省', N'邯郸市', N'永年县', N'130429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (117, N'河北省', N'邯郸市', N'邱县', N'130430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (118, N'河北省', N'邯郸市', N'鸡泽县', N'130431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (119, N'河北省', N'邯郸市', N'广平县', N'130432'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (120, N'河北省', N'邯郸市', N'馆陶县', N'130433'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (121, N'河北省', N'邯郸市', N'魏县', N'130434'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (122, N'河北省', N'邯郸市', N'曲周县', N'130435'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (123, N'河北省', N'邯郸市', N'武安市', N'130481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (124, N'河北省', N'邢台市', N'市辖区', N'130501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (125, N'河北省', N'邢台市', N'桥东区', N'130502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (126, N'河北省', N'邢台市', N'桥西区', N'130503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (127, N'河北省', N'邢台市', N'邢台县', N'130521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (128, N'河北省', N'邢台市', N'临城县', N'130522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (129, N'河北省', N'邢台市', N'内丘县', N'130523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (130, N'河北省', N'邢台市', N'柏乡县', N'130524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (131, N'河北省', N'邢台市', N'隆尧县', N'130525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (132, N'河北省', N'邢台市', N'任县', N'130526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (133, N'河北省', N'邢台市', N'南和县', N'130527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (134, N'河北省', N'邢台市', N'宁晋县', N'130528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (135, N'河北省', N'邢台市', N'巨鹿县', N'130529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (136, N'河北省', N'邢台市', N'新河县', N'130530'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (137, N'河北省', N'邢台市', N'广宗县', N'130531'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (138, N'河北省', N'邢台市', N'平乡县', N'130532'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (139, N'河北省', N'邢台市', N'威县', N'130533'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (140, N'河北省', N'邢台市', N'清河县', N'130534'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1496, N'江苏省', N'扬州市', N'高邮市', N'321084'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1497, N'江苏省', N'扬州市', N'泰兴市', N'321085'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1498, N'江苏省', N'扬州市', N'靖江市', N'321086'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1499, N'江苏省', N'扬州市', N'江都市', N'321087'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1500, N'江苏省', N'扬州市', N'江都市', N'321088'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1501, N'江苏省', N'镇江市', N'市辖区', N'321101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1502, N'江苏省', N'镇江市', N'京口区', N'321102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1503, N'江苏省', N'镇江市', N'润州区', N'321111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1504, N'江苏省', N'镇江市', N'丹徒区', N'321112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1505, N'江苏省', N'镇江市', N'丹阳市', N'321119'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1506, N'江苏省', N'镇江市', N'丹徒县', N'321121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1507, N'江苏省', N'镇江市', N'丹阳县', N'321122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1508, N'江苏省', N'镇江市', N'句容县', N'321123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1509, N'江苏省', N'镇江市', N'扬中县', N'321124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1510, N'江苏省', N'镇江市', N'丹阳市', N'321181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1511, N'江苏省', N'镇江市', N'扬中市', N'321182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1512, N'江苏省', N'镇江市', N'句容市', N'321183'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1513, N'江苏省', N'泰州市', N'市辖区', N'321201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1514, N'江苏省', N'泰州市', N'海陵区', N'321202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1515, N'江苏省', N'泰州市', N'高港区', N'321203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1516, N'江苏省', N'泰州市', N'兴化市', N'321281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1517, N'江苏省', N'泰州市', N'靖江市', N'321282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1518, N'江苏省', N'泰州市', N'泰兴市', N'321283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1519, N'江苏省', N'泰州市', N'姜堰市', N'321284'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1520, N'江苏省', N'宿迁市', N'市辖区', N'321301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1521, N'江苏省', N'宿迁市', N'宿城区', N'321302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1522, N'江苏省', N'宿迁市', N'宿豫区', N'321311'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1523, N'江苏省', N'宿迁市', N'宿豫县', N'321321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1524, N'江苏省', N'宿迁市', N'沭阳县', N'321322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1525, N'江苏省', N'宿迁市', N'泗阳县', N'321323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1526, N'江苏省', N'宿迁市', N'泗洪县', N'321324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1527, N'浙江省', N'杭州市', N'市辖区', N'330101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1528, N'浙江省', N'杭州市', N'上城区', N'330102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1529, N'浙江省', N'杭州市', N'下城区', N'330103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1530, N'浙江省', N'杭州市', N'江干区', N'330104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1531, N'浙江省', N'杭州市', N'拱墅区', N'330105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1532, N'浙江省', N'杭州市', N'西湖区', N'330106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1533, N'浙江省', N'杭州市', N'滨江区', N'330107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1534, N'浙江省', N'杭州市', N'滨江区', N'330108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1535, N'浙江省', N'杭州市', N'萧山区', N'330109'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1536, N'浙江省', N'杭州市', N'余杭区', N'330110'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1537, N'浙江省', N'杭州市', N'市区', N'330120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1538, N'浙江省', N'杭州市', N'萧山县', N'330121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1539, N'浙江省', N'杭州市', N'桐庐县', N'330122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1540, N'浙江省', N'杭州市', N'富阳县', N'330123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1541, N'浙江省', N'杭州市', N'临安县', N'330124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1542, N'浙江省', N'杭州市', N'余杭县', N'330125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1543, N'浙江省', N'杭州市', N'建德县', N'330126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1544, N'浙江省', N'杭州市', N'淳安县', N'330127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1545, N'浙江省', N'杭州市', N'萧山市', N'330181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1546, N'浙江省', N'杭州市', N'建德市', N'330182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1547, N'浙江省', N'杭州市', N'富阳市', N'330183'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1548, N'浙江省', N'杭州市', N'余杭市', N'330184'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1549, N'浙江省', N'杭州市', N'临安市', N'330185'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1550, N'浙江省', N'台州市', N'椒江区', N'331002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1551, N'浙江省', N'台州市', N'黄岩区', N'331003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1552, N'浙江省', N'台州市', N'路桥区', N'331004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1553, N'浙江省', N'台州市', N'玉环县', N'331021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1554, N'浙江省', N'台州市', N'三门县', N'331022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1555, N'浙江省', N'台州市', N'天台县', N'331023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1556, N'浙江省', N'台州市', N'仙居县', N'331024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1557, N'浙江省', N'台州市', N'温岭市', N'331081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1558, N'浙江省', N'台州市', N'临海市', N'331082'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1559, N'浙江省', N'台州市', N'市辖区', N'331001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1560, N'浙江省', N'丽水市', N'市辖区', N'331101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1561, N'浙江省', N'丽水市', N'莲都区', N'331102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1562, N'浙江省', N'丽水市', N'青田县', N'331121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1563, N'浙江省', N'丽水市', N'缙云县', N'331122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1564, N'浙江省', N'丽水市', N'遂昌县', N'331123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1565, N'浙江省', N'丽水市', N'松阳县', N'331124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1566, N'浙江省', N'丽水市', N'云和县', N'331125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1567, N'浙江省', N'丽水市', N'庆元县', N'331126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1568, N'浙江省', N'丽水市', N'景宁畲族自治县', N'331127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1569, N'浙江省', N'丽水市', N'龙泉市', N'331181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1570, N'浙江省', N'丽水地区', N'丽水市', N'332501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1571, N'浙江省', N'丽水地区', N'龙泉市', N'332502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1572, N'浙江省', N'丽水地区', N'丽水县', N'332521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1573, N'浙江省', N'丽水地区', N'青田县', N'332522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1574, N'浙江省', N'丽水地区', N'云和县', N'332523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1575, N'浙江省', N'丽水地区', N'龙泉县', N'332524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1576, N'浙江省', N'丽水地区', N'庆元县', N'332525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1577, N'浙江省', N'丽水地区', N'缙云县', N'332526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1578, N'浙江省', N'丽水地区', N'遂昌县', N'332527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1579, N'浙江省', N'丽水地区', N'松阳县', N'332528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1580, N'浙江省', N'丽水地区', N'景宁畲族自治县', N'332529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1581, N'浙江省', N'台州地区', N'椒江市', N'332601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1582, N'浙江省', N'台州地区', N'临海市', N'332602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1583, N'浙江省', N'台州地区', N'黄岩市', N'332603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1584, N'浙江省', N'台州地区', N'临海县', N'332621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1585, N'浙江省', N'台州地区', N'黄岩县', N'332622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1586, N'浙江省', N'台州地区', N'温岭县', N'332623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1587, N'浙江省', N'台州地区', N'仙居县', N'332624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1588, N'浙江省', N'台州地区', N'天台县', N'332625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1589, N'浙江省', N'台州地区', N'三门县', N'332626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1590, N'浙江省', N'台州地区', N'玉环县', N'332627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1591, N'浙江省', N'舟山地区', N'定海县', N'332721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1592, N'浙江省', N'舟山地区', N'普陀县', N'332722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1593, N'浙江省', N'舟山地区', N'岱山县', N'332723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1594, N'浙江省', N'舟山地区', N'嵊泗县', N'332724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1595, N'浙江省', N'宁波市', N'市辖区', N'330201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1596, N'浙江省', N'宁波市', N'镇明区', N'330202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1597, N'浙江省', N'宁波市', N'海曙区', N'330203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1598, N'浙江省', N'宁波市', N'江东区', N'330204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1599, N'浙江省', N'宁波市', N'江北区', N'330205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1600, N'浙江省', N'宁波市', N'北仑区', N'330206'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1601, N'浙江省', N'宁波市', N'鄞州区', N'330207'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1602, N'浙江省', N'宁波市', N'镇海区', N'330211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1603, N'浙江省', N'宁波市', N'鄞州区', N'330212'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1604, N'浙江省', N'宁波市', N'余姚市', N'330219'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1605, N'浙江省', N'宁波市', N'镇海县', N'330221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1606, N'浙江省', N'宁波市', N'慈溪县', N'330222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1607, N'浙江省', N'宁波市', N'余姚县', N'330223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1608, N'浙江省', N'宁波市', N'奉化县', N'330224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1609, N'浙江省', N'宁波市', N'象山县', N'330225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1610, N'浙江省', N'宁波市', N'宁海县', N'330226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1611, N'浙江省', N'宁波市', N'鄞县', N'330227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1612, N'浙江省', N'宁波市', N'余姚市', N'330281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1613, N'浙江省', N'宁波市', N'慈溪市', N'330282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1614, N'浙江省', N'宁波市', N'奉化市', N'330283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1615, N'浙江省', N'温州市', N'市辖区', N'330301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1616, N'浙江省', N'温州市', N'鹿城区', N'330302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1617, N'浙江省', N'温州市', N'龙湾区', N'330303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1618, N'浙江省', N'温州市', N'瓯海区', N'330304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1619, N'浙江省', N'温州市', N'瓯海县', N'330321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1620, N'浙江省', N'温州市', N'洞头县', N'330322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1621, N'浙江省', N'温州市', N'乐清县', N'330323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1622, N'浙江省', N'温州市', N'永嘉县', N'330324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1623, N'浙江省', N'温州市', N'瑞安县', N'330325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1624, N'浙江省', N'温州市', N'平阳县', N'330326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1625, N'浙江省', N'温州市', N'苍南县', N'330327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1626, N'浙江省', N'温州市', N'文成县', N'330328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1627, N'浙江省', N'温州市', N'泰顺县', N'330329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1628, N'浙江省', N'温州市', N'瑞安市', N'330381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1629, N'浙江省', N'温州市', N'乐清市', N'330382'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1630, N'浙江省', N'嘉兴市', N'市辖区', N'330401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1631, N'浙江省', N'嘉兴市', N'秀城区', N'330402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1632, N'浙江省', N'嘉兴市', N'郊区', N'330411'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1633, N'浙江省', N'嘉兴市', N'海宁市', N'330419'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1634, N'浙江省', N'嘉兴市', N'嘉善县', N'330421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1635, N'浙江省', N'嘉兴市', N'平湖县', N'330422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1636, N'浙江省', N'嘉兴市', N'海宁县', N'330423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1637, N'浙江省', N'嘉兴市', N'海盐县', N'330424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1638, N'浙江省', N'嘉兴市', N'桐乡县', N'330425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1639, N'浙江省', N'嘉兴市', N'海宁市', N'330481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1640, N'浙江省', N'嘉兴市', N'平湖市', N'330482'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1641, N'浙江省', N'嘉兴市', N'桐乡市', N'330483'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1642, N'浙江省', N'湖州市', N'市辖区', N'330501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1643, N'浙江省', N'湖州市', N'吴兴区', N'330502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1644, N'浙江省', N'湖州市', N'南浔区', N'330503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1645, N'浙江省', N'湖州市', N'郊区', N'330511'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1646, N'浙江省', N'湖州市', N'德清县', N'330521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1647, N'浙江省', N'湖州市', N'长兴县', N'330522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1648, N'浙江省', N'湖州市', N'安吉县', N'330523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1649, N'浙江省', N'绍兴市', N'市辖区', N'330601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1650, N'浙江省', N'绍兴市', N'越城区', N'330602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1651, N'浙江省', N'绍兴市', N'绍兴县', N'330621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1652, N'浙江省', N'绍兴市', N'上虞县', N'330622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1653, N'浙江省', N'绍兴市', N'嵊县', N'330623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1654, N'浙江省', N'绍兴市', N'新昌县', N'330624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1655, N'浙江省', N'绍兴市', N'诸暨县', N'330625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1656, N'浙江省', N'绍兴市', N'诸暨市', N'330681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1657, N'浙江省', N'绍兴市', N'上虞市', N'330682'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1658, N'浙江省', N'绍兴市', N'嵊州市', N'330683'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1659, N'浙江省', N'金华市', N'市辖区', N'330701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1660, N'浙江省', N'金华市', N'婺城区', N'330702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1661, N'浙江省', N'金华市', N'金东区', N'330703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1662, N'浙江省', N'金华市', N'兰溪市', N'330719'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1663, N'浙江省', N'金华市', N'金华县', N'330721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1664, N'浙江省', N'金华市', N'永康县', N'330722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1665, N'浙江省', N'金华市', N'武义县', N'330723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1666, N'浙江省', N'金华市', N'东阳县', N'330724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1667, N'浙江省', N'金华市', N'义乌县', N'330725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1668, N'浙江省', N'金华市', N'浦江县', N'330726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1669, N'浙江省', N'金华市', N'磐安县', N'330727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1670, N'浙江省', N'金华市', N'兰溪市', N'330781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1671, N'浙江省', N'金华市', N'义乌市', N'330782'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1672, N'浙江省', N'金华市', N'东阳市', N'330783'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1673, N'浙江省', N'金华市', N'永康市', N'330784'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1674, N'浙江省', N'衢州市', N'市辖区', N'330801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1675, N'浙江省', N'衢州市', N'柯城区', N'330802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1676, N'浙江省', N'衢州市', N'衢江区', N'330803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1677, N'浙江省', N'衢州市', N'衢县', N'330821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1678, N'浙江省', N'衢州市', N'常山县', N'330822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1679, N'浙江省', N'衢州市', N'江山县', N'330823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1680, N'浙江省', N'衢州市', N'开化县', N'330824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1681, N'浙江省', N'衢州市', N'龙游县', N'330825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1682, N'浙江省', N'衢州市', N'江山市', N'330881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1683, N'浙江省', N'舟山市', N'市辖区', N'330901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1684, N'浙江省', N'舟山市', N'定海区', N'330902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1685, N'浙江省', N'舟山市', N'普陀区', N'330903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1686, N'浙江省', N'舟山市', N'岱山县', N'330921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1687, N'浙江省', N'舟山市', N'嵊泗县', N'330922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1688, N'浙江省', NULL, N'余姚市', N'339001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1689, N'浙江省', NULL, N'海宁市', N'339002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1690, N'浙江省', NULL, N'兰溪市', N'339003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1691, N'浙江省', NULL, N'瑞安市', N'339004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1692, N'浙江省', NULL, N'萧山市', N'339005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1693, N'浙江省', NULL, N'江山市', N'339006'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1694, N'浙江省', NULL, N'义乌市', N'339007'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1695, N'浙江省', NULL, N'东阳市', N'339008'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1696, N'浙江省', NULL, N'慈溪市', N'339009'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1697, N'浙江省', NULL, N'奉化市', N'339010'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1698, N'浙江省', NULL, N'诸暨市', N'339011'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1699, N'安徽省', N'阜阳市', N'临泉县', N'341221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1700, N'安徽省', N'阜阳市', N'太和县', N'341222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1701, N'安徽省', N'阜阳市', N'涡阳县', N'341223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1702, N'安徽省', N'阜阳市', N'蒙城县', N'341224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1703, N'安徽省', N'阜阳市', N'阜南县', N'341225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1704, N'安徽省', N'阜阳市', N'颍上县', N'341226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1705, N'安徽省', N'阜阳市', N'利辛县', N'341227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1706, N'安徽省', N'阜阳市', N'亳州市', N'341281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1707, N'安徽省', N'阜阳市', N'界首市', N'341282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1708, N'安徽省', N'阜阳市', N'市辖区', N'341201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1709, N'安徽省', N'阜阳市', N'颍州区', N'341202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1710, N'安徽省', N'阜阳市', N'颍东区', N'341203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1711, N'安徽省', N'阜阳市', N'颍泉区', N'341204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1712, N'安徽省', N'宿州市', N'市辖区', N'341301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1713, N'安徽省', N'宿州市', N'墉桥区', N'341302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1714, N'安徽省', N'宿州市', N'砀山县', N'341321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1715, N'安徽省', N'宿州市', N'萧县', N'341322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1716, N'安徽省', N'宿州市', N'灵璧县', N'341323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1717, N'安徽省', N'宿州市', N'泗县', N'341324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1718, N'安徽省', N'巢湖市', N'市辖区', N'341401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1719, N'安徽省', N'巢湖市', N'居巢区', N'341402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1720, N'安徽省', N'巢湖市', N'庐江县', N'341421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1721, N'安徽省', N'巢湖市', N'无为县', N'341422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1722, N'安徽省', N'巢湖市', N'含山县', N'341423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1723, N'安徽省', N'巢湖市', N'和县', N'341424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1724, N'安徽省', N'六安市', N'市辖区', N'341501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1725, N'安徽省', N'六安市', N'金安区', N'341502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1726, N'安徽省', N'六安市', N'裕安区', N'341503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1727, N'安徽省', N'六安市', N'寿县', N'341521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1728, N'安徽省', N'六安市', N'霍邱县', N'341522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1729, N'安徽省', N'六安市', N'舒城县', N'341523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1730, N'安徽省', N'六安市', N'金寨县', N'341524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1731, N'安徽省', N'六安市', N'霍山县', N'341525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1732, N'安徽省', N'亳州市', N'市辖区', N'341601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1733, N'安徽省', N'亳州市', N'谯城区', N'341602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1734, N'安徽省', N'亳州市', N'涡阳县', N'341621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1735, N'安徽省', N'亳州市', N'蒙城县', N'341622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1736, N'安徽省', N'亳州市', N'利辛县', N'341623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1737, N'安徽省', N'池州市', N'市辖区', N'341701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1738, N'安徽省', N'池州市', N'贵池区', N'341702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1739, N'安徽省', N'池州市', N'东至县', N'341721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1740, N'安徽省', N'池州市', N'石台县', N'341722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1741, N'安徽省', N'池州市', N'青阳县', N'341723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1742, N'安徽省', N'宣城市', N'市辖区', N'341801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1743, N'安徽省', N'宣城市', N'宣州区', N'341802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1744, N'安徽省', N'宣城市', N'郎溪县', N'341821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1745, N'安徽省', N'宣城市', N'广德县', N'341822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1746, N'安徽省', N'宣城市', N'泾县', N'341823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1747, N'安徽省', N'宣城市', N'绩溪县', N'341824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1748, N'安徽省', N'宣城市', N'旌德县', N'341825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1749, N'安徽省', N'宣城市', N'宁国市', N'341881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1750, N'安徽省', N'阜阳地区', N'阜阳市', N'342101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1751, N'安徽省', N'阜阳地区', N'阜阳县', N'342121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1752, N'安徽省', N'阜阳地区', N'临泉县', N'342122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1753, N'安徽省', N'阜阳地区', N'太和县', N'342123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1754, N'安徽省', N'阜阳地区', N'涡阳县', N'342124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1755, N'安徽省', N'阜阳地区', N'蒙城县', N'342125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1756, N'安徽省', N'阜阳地区', N'亳县', N'342126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1757, N'安徽省', N'阜阳地区', N'阜南县', N'342127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1758, N'安徽省', N'阜阳地区', N'颍上县', N'342128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1759, N'安徽省', N'阜阳地区', N'界首县', N'342129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1760, N'安徽省', N'阜阳地区', N'利辛县', N'342130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1761, N'安徽省', N'宿县地区', N'宿州市', N'342201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1762, N'安徽省', N'宿县地区', N'砀山县', N'342221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1763, N'安徽省', N'宿县地区', N'萧县', N'342222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1764, N'安徽省', N'宿县地区', N'宿县', N'342223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1765, N'安徽省', N'宿县地区', N'灵璧县', N'342224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1766, N'安徽省', N'宿县地区', N'泗县', N'342225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1767, N'安徽省', N'宿县地区', N'怀远县', N'342226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1768, N'安徽省', N'宿县地区', N'五河县', N'342227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1769, N'安徽省', N'宿县地区', N'固镇县', N'342228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1770, N'安徽省', N'滁县地区', N'滁州市', N'342301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1771, N'安徽省', N'滁县地区', N'天长县', N'342321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1772, N'安徽省', N'滁县地区', N'来安县', N'342322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1773, N'安徽省', N'滁县地区', N'滁县', N'342323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1774, N'安徽省', N'滁县地区', N'全椒县', N'342324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1775, N'安徽省', N'滁县地区', N'定远县', N'342325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1776, N'安徽省', N'滁县地区', N'凤阳县', N'342326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1777, N'安徽省', N'滁县地区', N'嘉山县', N'342327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1778, N'安徽省', N'六安地区', N'六安市', N'342401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1779, N'安徽省', N'六安地区', N'六安县', N'342421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1780, N'安徽省', N'六安地区', N'寿县', N'342422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1781, N'安徽省', N'六安地区', N'霍邱县', N'342423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1782, N'安徽省', N'六安地区', N'肥西县', N'342424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1783, N'安徽省', N'六安地区', N'舒城县', N'342425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1784, N'安徽省', N'六安地区', N'金寨县', N'342426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1785, N'安徽省', N'六安地区', N'霍山县', N'342427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1786, N'安徽省', N'宣城地区', N'宣州市', N'342501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1787, N'安徽省', N'宣城地区', N'宁国市', N'342502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1788, N'安徽省', N'宣城地区', N'宣州县', N'342521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1789, N'安徽省', N'宣城地区', N'郎溪县', N'342522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1790, N'安徽省', N'宣城地区', N'广德县', N'342523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1791, N'安徽省', N'宣城地区', N'宁国县', N'342524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1792, N'安徽省', N'宣城地区', N'当涂县', N'342525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1793, N'安徽省', N'宣城地区', N'繁昌县', N'342526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1794, N'安徽省', N'宣城地区', N'南陵县', N'342527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1795, N'安徽省', N'宣城地区', N'青阳县', N'342528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1796, N'安徽省', N'宣城地区', N'泾县', N'342529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1797, N'安徽省', N'宣城地区', N'旌德县', N'342530'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1798, N'安徽省', N'宣城地区', N'绩溪县', N'342531'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1799, N'安徽省', N'巢湖地区', N'巢湖市', N'342601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1800, N'安徽省', N'巢湖地区', N'肥东县', N'342621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1801, N'安徽省', N'巢湖地区', N'庐江县', N'342622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1802, N'安徽省', N'巢湖地区', N'无为县', N'342623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1803, N'安徽省', N'巢湖地区', N'巢县', N'342624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1804, N'安徽省', N'巢湖地区', N'含山县', N'342625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1805, N'安徽省', N'巢湖地区', N'和县', N'342626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1806, N'安徽省', N'徽州地区', N'屯溪市', N'342701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1807, N'安徽省', N'徽州地区', N'绩溪县', N'342721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1808, N'安徽省', N'徽州地区', N'旌德县', N'342722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1809, N'安徽省', N'徽州地区', N'歙县', N'342723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1810, N'安徽省', N'徽州地区', N'休宁县', N'342724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1811, N'安徽省', N'徽州地区', N'黟县', N'342725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1812, N'安徽省', N'徽州地区', N'祁门县', N'342726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1813, N'安徽省', N'徽州地区', N'太平县', N'342727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1814, N'安徽省', N'徽州地区', N'石台县', N'342728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1815, N'安徽省', N'安庆地区', N'怀宁县', N'342821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1816, N'安徽省', N'安庆地区', N'桐城县', N'342822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1817, N'安徽省', N'安庆地区', N'枞阳县', N'342823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1818, N'安徽省', N'安庆地区', N'潜山县', N'342824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1819, N'安徽省', N'安庆地区', N'太湖县', N'342825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1820, N'安徽省', N'安庆地区', N'宿松县', N'342826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1821, N'安徽省', N'安庆地区', N'望江县', N'342827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1822, N'安徽省', N'安庆地区', N'岳西县', N'342828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1823, N'安徽省', N'安庆地区', N'东至县', N'342829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1824, N'安徽省', N'安庆地区', N'贵池县', N'342830'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1825, N'安徽省', N'池州地区', N'贵池市', N'342901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1826, N'安徽省', N'池州地区', N'东至县', N'342921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1827, N'安徽省', N'池州地区', N'石台县', N'342922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1828, N'安徽省', N'池州地区', N'青阳县', N'342923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1829, N'安徽省', N'合肥市', N'市辖区', N'340101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1830, N'安徽省', N'合肥市', N'瑶海区', N'340102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1831, N'安徽省', N'合肥市', N'庐阳区', N'340103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1832, N'安徽省', N'合肥市', N'蜀山区', N'340104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1833, N'安徽省', N'合肥市', N'包河区', N'340111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1834, N'安徽省', N'合肥市', N'长丰县', N'340121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1835, N'安徽省', N'合肥市', N'肥西县', N'340122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1836, N'安徽省', N'合肥市', N'肥东县', N'340123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1837, N'安徽省', N'芜湖市', N'市辖区', N'340201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1838, N'安徽省', N'芜湖市', N'镜湖区', N'340202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1839, N'安徽省', N'芜湖市', N'弋江区', N'340203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1840, N'安徽省', N'芜湖市', N'新芜区', N'340204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1841, N'安徽省', N'芜湖市', N'裕溪口区', N'340205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1842, N'安徽省', N'芜湖市', N'四褐山区', N'340206'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1843, N'安徽省', N'芜湖市', N'鸠江区', N'340207'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1844, N'安徽省', N'芜湖市', N'三山区', N'340208'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1845, N'安徽省', N'芜湖市', N'郊区', N'340211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1846, N'安徽省', N'芜湖市', N'市区', N'340220'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1847, N'安徽省', N'芜湖市', N'芜湖县', N'340221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1848, N'安徽省', N'芜湖市', N'繁昌县', N'340222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1849, N'安徽省', N'芜湖市', N'南陵县', N'340223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1850, N'安徽省', N'芜湖市', N'青阳县', N'340224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1851, N'安徽省', N'蚌埠市', N'市辖区', N'340301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1852, N'安徽省', N'蚌埠市', N'龙子湖区', N'340302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1853, N'安徽省', N'蚌埠市', N'蚌山区', N'340303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1854, N'安徽省', N'蚌埠市', N'禹会区', N'340304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1855, N'安徽省', N'蚌埠市', N'淮上区', N'340311'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1856, N'安徽省', N'蚌埠市', N'怀远县', N'340321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1857, N'安徽省', N'蚌埠市', N'五河县', N'340322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1858, N'安徽省', N'蚌埠市', N'固镇县', N'340323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1859, N'安徽省', N'淮南市', N'市辖区', N'340401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1860, N'安徽省', N'淮南市', N'大通区', N'340402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1861, N'安徽省', N'淮南市', N'田家庵区', N'340403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1862, N'安徽省', N'淮南市', N'谢家集区', N'340404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1863, N'安徽省', N'淮南市', N'八公山区', N'340405'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1864, N'安徽省', N'淮南市', N'潘集区', N'340406'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1865, N'安徽省', N'淮南市', N'凤台县', N'340421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1866, N'安徽省', N'马鞍山市', N'市辖区', N'340501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1867, N'安徽省', N'马鞍山市', N'金家庄区', N'340502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1868, N'安徽省', N'马鞍山市', N'花山区', N'340503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1869, N'安徽省', N'马鞍山市', N'雨山区', N'340504'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1870, N'安徽省', N'马鞍山市', N'向山区', N'340505'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1871, N'安徽省', N'马鞍山市', N'当涂县', N'340521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1872, N'安徽省', N'淮北市', N'市辖区', N'340601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1873, N'安徽省', N'淮北市', N'杜集区', N'340602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1874, N'安徽省', N'淮北市', N'相山区', N'340603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1875, N'安徽省', N'淮北市', N'烈山区', N'340604'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1876, N'安徽省', N'淮北市', N'濉溪县', N'340621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1877, N'安徽省', N'铜陵市', N'市辖区', N'340701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1878, N'安徽省', N'铜陵市', N'铜官山区', N'340702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1879, N'安徽省', N'铜陵市', N'狮子山区', N'340703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1880, N'安徽省', N'铜陵市', N'郊区', N'340711'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1881, N'安徽省', N'铜陵市', N'铜陵县', N'340721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1882, N'安徽省', N'安庆市', N'市辖区', N'340801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1883, N'安徽省', N'安庆市', N'迎江区', N'340802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1884, N'安徽省', N'安庆市', N'大观区', N'340803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1885, N'安徽省', N'安庆市', N'郊区', N'340811'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1886, N'安徽省', N'安庆市', N'桐城县', N'340821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1887, N'安徽省', N'安庆市', N'怀宁县', N'340822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1888, N'安徽省', N'安庆市', N'枞阳县', N'340823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1889, N'安徽省', N'安庆市', N'潜山县', N'340824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1890, N'安徽省', N'安庆市', N'太湖县', N'340825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1891, N'安徽省', N'安庆市', N'宿松县', N'340826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1892, N'安徽省', N'安庆市', N'望江县', N'340827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1893, N'安徽省', N'安庆市', N'岳西县', N'340828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1894, N'安徽省', N'安庆市', N'桐城市', N'340881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1895, N'安徽省', N'黄山市', N'市辖区', N'341001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1896, N'安徽省', N'黄山市', N'屯溪区', N'341002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1897, N'安徽省', N'黄山市', N'黄山区', N'341003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1898, N'安徽省', N'黄山市', N'徽州区', N'341004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1899, N'安徽省', N'黄山市', N'歙县', N'341021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1900, N'安徽省', N'黄山市', N'休宁县', N'341022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1901, N'安徽省', N'黄山市', N'黟县', N'341023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1902, N'安徽省', N'黄山市', N'祁门县', N'341024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1903, N'安徽省', N'滁州市', N'市辖区', N'341101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1904, N'安徽省', N'滁州市', N'琅琊区', N'341102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1905, N'安徽省', N'滁州市', N'南谯区', N'341103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1906, N'安徽省', N'滁州市', N'天长县', N'341121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1907, N'安徽省', N'滁州市', N'来安县', N'341122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1908, N'安徽省', N'滁州市', N'全椒县', N'341124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1909, N'安徽省', N'滁州市', N'定远县', N'341125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1910, N'安徽省', N'滁州市', N'凤阳县', N'341126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1911, N'安徽省', N'滁州市', N'嘉山县', N'341127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1912, N'安徽省', N'滁州市', N'天长市', N'341181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1913, N'安徽省', N'滁州市', N'明光市', N'341182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1914, N'福建省', N'宁德市', N'市辖区', N'350901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1915, N'福建省', N'宁德市', N'蕉城区', N'350902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1916, N'福建省', N'宁德市', N'霞浦县', N'350921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1917, N'福建省', N'宁德市', N'古田县', N'350922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1918, N'福建省', N'宁德市', N'屏南县', N'350923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1919, N'福建省', N'宁德市', N'寿宁县', N'350924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1920, N'福建省', N'宁德市', N'周宁县', N'350925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1921, N'福建省', N'宁德市', N'柘荣县', N'350926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1922, N'福建省', N'宁德市', N'福安市', N'350981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1923, N'福建省', N'宁德市', N'福鼎市', N'350982'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1924, N'福建省', N'南平地区', N'南平市', N'352101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1925, N'福建省', N'南平地区', N'邵武市', N'352102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1926, N'福建省', N'南平地区', N'武夷山市', N'352103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1927, N'福建省', N'南平地区', N'建瓯市', N'352104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1928, N'福建省', N'南平地区', N'顺昌县', N'352121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1929, N'福建省', N'南平地区', N'建阳县', N'352122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1930, N'福建省', N'南平地区', N'建瓯县', N'352123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1931, N'福建省', N'南平地区', N'浦城县', N'352124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1932, N'福建省', N'南平地区', N'邵武县', N'352125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1933, N'福建省', N'南平地区', N'崇安县', N'352126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1934, N'福建省', N'南平地区', N'光泽县', N'352127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1935, N'福建省', N'南平地区', N'松溪县', N'352128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1936, N'福建省', N'南平地区', N'政和县', N'352129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1937, N'福建省', N'宁德地区', N'宁德市', N'352201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1938, N'福建省', N'宁德地区', N'福安市', N'352202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1939, N'福建省', N'宁德地区', N'福鼎市', N'352203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1940, N'福建省', N'宁德地区', N'宁德县', N'352221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1941, N'福建省', N'宁德地区', N'连江县', N'352222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1942, N'福建省', N'宁德地区', N'罗源县', N'352223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1943, N'福建省', N'宁德地区', N'福鼎县', N'352224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1944, N'福建省', N'宁德地区', N'霞浦县', N'352225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1945, N'福建省', N'宁德地区', N'福安县', N'352226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1946, N'福建省', N'宁德地区', N'古田县', N'352227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1947, N'福建省', N'宁德地区', N'屏南县', N'352228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1948, N'福建省', N'宁德地区', N'寿宁县', N'352229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1949, N'福建省', N'宁德地区', N'周宁县', N'352230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1950, N'福建省', N'宁德地区', N'柘荣县', N'352231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1951, N'福建省', N'龙岩地区', N'龙岩市', N'352601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1952, N'福建省', N'龙岩地区', N'漳平市', N'352602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1953, N'福建省', N'龙岩地区', N'长汀县', N'352622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1954, N'福建省', N'龙岩地区', N'永定县', N'352623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1955, N'福建省', N'龙岩地区', N'上杭县', N'352624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1956, N'福建省', N'龙岩地区', N'武平县', N'352625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1957, N'福建省', N'龙岩地区', N'漳平县', N'352626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1958, N'福建省', N'龙岩地区', N'连城县', N'352627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1959, N'福建省', N'三明市', N'三明市', N'352701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1960, N'福建省', N'三明市', N'明溪县', N'352721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1961, N'福建省', N'三明市', N'永安县', N'352722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1962, N'福建省', N'三明市', N'清流县', N'352723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1963, N'福建省', N'三明市', N'宁化县', N'352724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1964, N'福建省', N'三明市', N'大田县', N'352725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1965, N'福建省', N'三明市', N'尤溪县', N'352726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1966, N'福建省', N'三明市', N'沙县', N'352727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1967, N'福建省', N'三明市', N'将乐县', N'352728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1968, N'福建省', N'三明市', N'泰宁县', N'352729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1969, N'福建省', N'三明市', N'建宁县', N'352730'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1970, N'福建省', N'福州市', N'市辖区', N'350101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1971, N'福建省', N'福州市', N'鼓楼区', N'350102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1972, N'福建省', N'福州市', N'台江区', N'350103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1973, N'福建省', N'福州市', N'仓山区', N'350104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1974, N'福建省', N'福州市', N'马尾区', N'350105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1975, N'福建省', N'福州市', N'晋安区', N'350111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1976, N'福建省', N'福州市', N'市区', N'350120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1977, N'福建省', N'福州市', N'闽侯县', N'350121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1978, N'福建省', N'福州市', N'连江县', N'350122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1979, N'福建省', N'福州市', N'罗源县', N'350123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1980, N'福建省', N'福州市', N'闽清县', N'350124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1981, N'福建省', N'福州市', N'永泰县', N'350125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1982, N'福建省', N'福州市', N'长乐县', N'350126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1983, N'福建省', N'福州市', N'福清县', N'350127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1984, N'福建省', N'福州市', N'平潭县', N'350128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1985, N'福建省', N'福州市', N'福清市', N'350181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1986, N'福建省', N'福州市', N'长乐市', N'350182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1987, N'福建省', N'厦门市', N'市辖区', N'350201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1988, N'福建省', N'厦门市', N'鼓浪屿区', N'350202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1989, N'福建省', N'厦门市', N'思明区', N'350203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1990, N'福建省', N'厦门市', N'开元区', N'350204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1991, N'福建省', N'厦门市', N'海沧区', N'350205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1992, N'福建省', N'厦门市', N'湖里区', N'350206'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1993, N'福建省', N'厦门市', N'集美区', N'350211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1994, N'福建省', N'厦门市', N'同安区', N'350212'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1995, N'福建省', N'厦门市', N'翔安区', N'350213'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1996, N'福建省', N'莆田市', N'市辖区', N'350301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1997, N'福建省', N'莆田市', N'城厢区', N'350302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1998, N'福建省', N'莆田市', N'涵江区', N'350303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (1999, N'福建省', N'莆田市', N'荔城区', N'350304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2000, N'福建省', N'莆田市', N'秀屿区', N'350305'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2001, N'福建省', N'莆田市', N'莆田县', N'350321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2002, N'福建省', N'莆田市', N'仙游县', N'350322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2003, N'福建省', N'三明市', N'市辖区', N'350401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2004, N'福建省', N'三明市', N'梅列区', N'350402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2005, N'福建省', N'三明市', N'三元区', N'350403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2006, N'福建省', N'三明市', N'永安市', N'350404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2007, N'福建省', N'三明市', N'永安市', N'350420'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2008, N'福建省', N'三明市', N'明溪县', N'350421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2009, N'福建省', N'三明市', N'永安县', N'350422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2010, N'福建省', N'三明市', N'清流县', N'350423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2011, N'福建省', N'三明市', N'宁化县', N'350424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2012, N'福建省', N'三明市', N'大田县', N'350425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2013, N'福建省', N'三明市', N'尤溪县', N'350426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2014, N'福建省', N'三明市', N'沙县', N'350427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2015, N'福建省', N'三明市', N'将乐县', N'350428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2016, N'福建省', N'三明市', N'泰宁县', N'350429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2017, N'福建省', N'三明市', N'建宁县', N'350430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2018, N'福建省', N'三明市', N'永安市', N'350481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2019, N'福建省', N'泉州市', N'市辖区', N'350501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2020, N'福建省', N'泉州市', N'鲤城区', N'350502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2021, N'福建省', N'泉州市', N'丰泽区', N'350503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2022, N'福建省', N'泉州市', N'洛江区', N'350504'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2023, N'福建省', N'泉州市', N'泉港区', N'350505'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2024, N'福建省', N'泉州市', N'惠安县', N'350521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2025, N'福建省', N'泉州市', N'晋江县', N'350522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2026, N'福建省', N'泉州市', N'南安县', N'350523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2027, N'福建省', N'泉州市', N'安溪县', N'350524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2028, N'福建省', N'泉州市', N'永春县', N'350525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2029, N'福建省', N'泉州市', N'德化县', N'350526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2030, N'福建省', N'泉州市', N'金门县', N'350527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2031, N'福建省', N'泉州市', N'石狮市', N'350581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2032, N'福建省', N'泉州市', N'晋江市', N'350582'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2033, N'福建省', N'泉州市', N'南安市', N'350583'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2034, N'福建省', N'漳州市', N'市辖区', N'350601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2035, N'福建省', N'漳州市', N'芗城区', N'350602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2036, N'福建省', N'漳州市', N'龙文区', N'350603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2037, N'福建省', N'漳州市', N'龙海县', N'350621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2038, N'福建省', N'漳州市', N'云霄县', N'350622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2039, N'福建省', N'漳州市', N'漳浦县', N'350623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2040, N'福建省', N'漳州市', N'诏安县', N'350624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2041, N'福建省', N'漳州市', N'长泰县', N'350625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2042, N'福建省', N'漳州市', N'东山县', N'350626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2043, N'福建省', N'漳州市', N'南靖县', N'350627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2044, N'福建省', N'漳州市', N'平和县', N'350628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2045, N'福建省', N'漳州市', N'华安县', N'350629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2046, N'福建省', N'漳州市', N'龙海市', N'350681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2047, N'福建省', N'南平市', N'市辖区', N'350701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2048, N'福建省', N'南平市', N'延平区', N'350702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2049, N'福建省', N'南平市', N'顺昌县', N'350721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2050, N'福建省', N'南平市', N'浦城县', N'350722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2051, N'福建省', N'南平市', N'光泽县', N'350723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2052, N'福建省', N'南平市', N'松溪县', N'350724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2053, N'福建省', N'南平市', N'政和县', N'350725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2054, N'福建省', N'南平市', N'邵武市', N'350781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2055, N'福建省', N'南平市', N'武夷山市', N'350782'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2056, N'福建省', N'南平市', N'建瓯市', N'350783'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2057, N'福建省', N'南平市', N'建阳市', N'350784'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2058, N'福建省', N'龙岩市', N'市辖区', N'350801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2059, N'福建省', N'龙岩市', N'新罗区', N'350802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2060, N'福建省', N'龙岩市', N'长汀县', N'350821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2061, N'福建省', N'龙岩市', N'永定县', N'350822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2062, N'福建省', N'龙岩市', N'上杭县', N'350823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2063, N'福建省', N'龙岩市', N'武平县', N'350824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2064, N'福建省', N'龙岩市', N'连城县', N'350825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2065, N'福建省', N'龙岩市', N'漳平市', N'350881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2066, N'福建省', NULL, N'永安市', N'359001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2067, N'福建省', NULL, N'石狮市', N'359002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2068, N'江西省', N'南昌市', N'市辖区', N'360101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2069, N'江西省', N'南昌市', N'东湖区', N'360102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2070, N'江西省', N'南昌市', N'西湖区', N'360103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2071, N'江西省', N'南昌市', N'青云谱区', N'360104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2072, N'江西省', N'南昌市', N'湾里区', N'360105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2073, N'江西省', N'南昌市', N'郊区', N'360111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2074, N'江西省', N'南昌市', N'南昌县', N'360121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2075, N'江西省', N'南昌市', N'新建县', N'360122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2076, N'江西省', N'南昌市', N'安义县', N'360123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2077, N'江西省', N'南昌市', N'进贤县', N'360124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2078, N'江西省', N'景德镇市', N'市辖区', N'360201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2079, N'江西省', N'景德镇市', N'昌江区', N'360202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2080, N'江西省', N'景德镇市', N'珠山区', N'360203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2081, N'江西省', N'景德镇市', N'鹅湖区', N'360211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2082, N'江西省', N'景德镇市', N'蛟潭区', N'360212'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2083, N'江西省', N'景德镇市', N'乐平县', N'360221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2084, N'江西省', N'景德镇市', N'浮梁县', N'360222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2085, N'江西省', N'景德镇市', N'乐平市', N'360281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2086, N'江西省', N'上饶市', N'鄱阳县', N'361128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2087, N'江西省', N'上饶市', N'万年县', N'361129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2088, N'江西省', N'上饶市', N'婺源县', N'361130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2089, N'江西省', N'上饶市', N'德兴市', N'361181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2090, N'江西省', N'上饶市', N'市辖区', N'361101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2091, N'江西省', N'上饶市', N'信州区', N'361102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2092, N'江西省', N'上饶市', N'上饶县', N'361121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2093, N'江西省', N'上饶市', N'广丰县', N'361122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2094, N'江西省', N'上饶市', N'玉山县', N'361123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2095, N'江西省', N'上饶市', N'铅山县', N'361124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2096, N'江西省', N'上饶市', N'横峰县', N'361125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2097, N'江西省', N'上饶市', N'弋阳县', N'361126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2098, N'江西省', N'上饶市', N'余干县', N'361127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2099, N'江西省', N'赣州地区', N'赣州市', N'362101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2100, N'江西省', N'赣州地区', N'瑞金市', N'362102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2101, N'江西省', N'赣州地区', N'南康市', N'362103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2102, N'江西省', N'赣州地区', N'赣县', N'362121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2103, N'江西省', N'赣州地区', N'南康市', N'362122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2104, N'江西省', N'赣州地区', N'信丰县', N'362123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2105, N'江西省', N'赣州地区', N'大余县', N'362124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2106, N'江西省', N'赣州地区', N'上犹县', N'362125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2107, N'江西省', N'赣州地区', N'崇义县', N'362126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2108, N'江西省', N'赣州地区', N'安远县', N'362127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2109, N'江西省', N'赣州地区', N'龙南县', N'362128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2110, N'江西省', N'赣州地区', N'定南县', N'362129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2111, N'江西省', N'赣州地区', N'全南县', N'362130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2112, N'江西省', N'赣州地区', N'宁都县', N'362131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2113, N'江西省', N'赣州地区', N'于都县', N'362132'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2114, N'江西省', N'赣州地区', N'兴国县', N'362133'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2115, N'江西省', N'赣州地区', N'瑞金市', N'362134'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2116, N'江西省', N'赣州地区', N'会昌县', N'362135'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2117, N'江西省', N'赣州地区', N'寻乌县', N'362136'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2118, N'江西省', N'赣州地区', N'石城县', N'362137'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2119, N'江西省', N'赣州地区', N'广昌县', N'362138'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2120, N'江西省', N'宜春地区', N'宜春市', N'362201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2121, N'江西省', N'宜春地区', N'丰城市', N'362202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2122, N'江西省', N'宜春地区', N'樟树市', N'362203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2123, N'江西省', N'宜春地区', N'高安市', N'362204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2124, N'江西省', N'宜春地区', N'丰城县', N'362221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2125, N'江西省', N'宜春地区', N'高安县', N'362222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2126, N'江西省', N'宜春地区', N'清江县', N'362223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2127, N'江西省', N'宜春地区', N'新余县', N'362224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2128, N'江西省', N'宜春地区', N'宜春县', N'362225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2129, N'江西省', N'宜春地区', N'奉新县', N'362226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2130, N'江西省', N'宜春地区', N'万载县', N'362227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2131, N'江西省', N'宜春地区', N'上高县', N'362228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2132, N'江西省', N'宜春地区', N'宜丰县', N'362229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2133, N'江西省', N'宜春地区', N'分宜县', N'362230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2134, N'江西省', N'宜春地区', N'安义县', N'362231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2135, N'江西省', N'宜春地区', N'靖安县', N'362232'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2136, N'江西省', N'宜春地区', N'铜鼓县', N'362233'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2137, N'江西省', N'上饶地区', N'上饶市', N'362301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2138, N'江西省', N'上饶地区', N'德兴市', N'362302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2139, N'江西省', N'上饶地区', N'上饶县', N'362321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2140, N'江西省', N'上饶地区', N'广丰县', N'362322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2141, N'江西省', N'上饶地区', N'玉山县', N'362323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2142, N'江西省', N'上饶地区', N'铅山县', N'362324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2143, N'江西省', N'上饶地区', N'横峰县', N'362325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2144, N'江西省', N'上饶地区', N'弋阳县', N'362326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2145, N'江西省', N'上饶地区', N'贵溪县', N'362327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2146, N'江西省', N'上饶地区', N'余江县', N'362328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2147, N'江西省', N'上饶地区', N'余干县', N'362329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2148, N'江西省', N'上饶地区', N'波阳县', N'362330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2149, N'江西省', N'上饶地区', N'万年县', N'362331'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2150, N'江西省', N'上饶地区', N'乐平县', N'362332'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2151, N'江西省', N'上饶地区', N'德兴县', N'362333'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2152, N'江西省', N'上饶地区', N'婺源县', N'362334'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2153, N'江西省', N'萍乡市', N'市辖区', N'360301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2154, N'江西省', N'萍乡市', N'安源区', N'360302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2155, N'江西省', N'萍乡市', N'上栗区', N'360311'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2156, N'江西省', N'萍乡市', N'芦溪区', N'360312'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2157, N'江西省', N'萍乡市', N'湘东区', N'360313'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2158, N'江西省', N'萍乡市', N'莲花县', N'360321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2159, N'江西省', N'萍乡市', N'上栗县', N'360322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2160, N'江西省', N'萍乡市', N'芦溪县', N'360323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2161, N'江西省', N'九江市', N'市辖区', N'360401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2162, N'江西省', N'九江市', N'庐山区', N'360402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2163, N'江西省', N'九江市', N'浔阳区', N'360403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2164, N'江西省', N'九江市', N'九江县', N'360421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2165, N'江西省', N'九江市', N'瑞昌县', N'360422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2166, N'江西省', N'九江市', N'武宁县', N'360423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2167, N'江西省', N'九江市', N'修水县', N'360424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2168, N'江西省', N'九江市', N'永修县', N'360425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2169, N'江西省', N'九江市', N'德安县', N'360426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2170, N'江西省', N'九江市', N'星子县', N'360427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2171, N'江西省', N'九江市', N'都昌县', N'360428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2172, N'江西省', N'九江市', N'湖口县', N'360429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2173, N'江西省', N'九江市', N'彭泽县', N'360430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2174, N'江西省', N'九江市', N'瑞昌市', N'360481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2175, N'江西省', N'新余市', N'市辖区', N'360501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2176, N'江西省', N'新余市', N'渝水区', N'360502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2177, N'江西省', N'新余市', N'分宜县', N'360521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2178, N'江西省', N'鹰潭市', N'市辖区', N'360601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2179, N'江西省', N'鹰潭市', N'月湖区', N'360602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2180, N'江西省', N'鹰潭市', N'贵溪县', N'360621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2181, N'江西省', N'鹰潭市', N'余江县', N'360622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2182, N'江西省', N'鹰潭市', N'贵溪市', N'360681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2183, N'江西省', N'赣州市', N'市辖区', N'360701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2184, N'江西省', N'赣州市', N'章贡区', N'360702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2185, N'江西省', N'赣州市', N'赣县', N'360721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2186, N'江西省', N'赣州市', N'信丰县', N'360722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2187, N'江西省', N'赣州市', N'大余县', N'360723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2188, N'江西省', N'赣州市', N'上犹县', N'360724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2189, N'江西省', N'赣州市', N'崇义县', N'360725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2190, N'江西省', N'赣州市', N'安远县', N'360726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2191, N'江西省', N'赣州市', N'龙南县', N'360727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2192, N'江西省', N'赣州市', N'定南县', N'360728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2193, N'江西省', N'赣州市', N'全南县', N'360729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2194, N'江西省', N'赣州市', N'宁都县', N'360730'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2195, N'江西省', N'赣州市', N'于都县', N'360731'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2196, N'江西省', N'赣州市', N'兴国县', N'360732'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2197, N'江西省', N'赣州市', N'会昌县', N'360733'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2198, N'江西省', N'赣州市', N'寻乌县', N'360734'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2199, N'江西省', N'赣州市', N'石城县', N'360735'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2200, N'江西省', N'赣州市', N'瑞金市', N'360781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2201, N'江西省', N'赣州市', N'南康市', N'360782'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2202, N'江西省', N'吉安市', N'市辖区', N'360801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2203, N'江西省', N'吉安市', N'吉州区', N'360802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2204, N'江西省', N'吉安市', N'青原区', N'360803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2205, N'江西省', N'吉安市', N'吉安县', N'360821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2206, N'江西省', N'吉安市', N'吉水县', N'360822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2207, N'江西省', N'吉安市', N'峡江县', N'360823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2208, N'江西省', N'吉安市', N'新干县', N'360824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2209, N'江西省', N'吉安市', N'永丰县', N'360825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2210, N'江西省', N'吉安市', N'泰和县', N'360826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2211, N'江西省', N'吉安市', N'遂川县', N'360827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2212, N'江西省', N'吉安市', N'万安县', N'360828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2213, N'江西省', N'吉安市', N'安福县', N'360829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2214, N'江西省', N'吉安市', N'永新县', N'360830'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2215, N'江西省', N'吉安市', N'井冈山市', N'360881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2216, N'江西省', N'宜春市', N'市辖区', N'360901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2217, N'江西省', N'宜春市', N'袁州区', N'360902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2218, N'江西省', N'宜春市', N'奉新县', N'360921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2219, N'江西省', N'宜春市', N'万载县', N'360922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2220, N'江西省', N'宜春市', N'上高县', N'360923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2221, N'江西省', N'宜春市', N'宜丰县', N'360924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2222, N'江西省', N'宜春市', N'靖安县', N'360925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2223, N'江西省', N'宜春市', N'铜鼓县', N'360926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2224, N'江西省', N'宜春市', N'丰城市', N'360981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2225, N'江西省', N'宜春市', N'樟树市', N'360982'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2226, N'江西省', N'宜春市', N'高安市', N'360983'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2227, N'江西省', N'抚州市', N'市辖区', N'361001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2228, N'江西省', N'抚州市', N'临川区', N'361002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2229, N'江西省', N'抚州市', N'南城县', N'361021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2230, N'江西省', N'抚州市', N'黎川县', N'361022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2231, N'江西省', N'抚州市', N'南丰县', N'361023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2232, N'江西省', N'抚州市', N'崇仁县', N'361024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2233, N'江西省', N'抚州市', N'乐安县', N'361025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2234, N'江西省', N'抚州市', N'宜黄县', N'361026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2235, N'江西省', N'抚州市', N'金溪县', N'361027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2236, N'江西省', N'抚州市', N'资溪县', N'361028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2237, N'江西省', N'抚州市', N'东乡县', N'361029'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2238, N'江西省', N'抚州市', N'广昌县', N'361030'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2239, N'江西省', N'吉安地区', N'吉安市', N'362401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2240, N'江西省', N'吉安地区', N'井冈山市', N'362402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2241, N'江西省', N'吉安地区', N'吉安县', N'362421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2242, N'江西省', N'吉安地区', N'吉水县', N'362422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2243, N'江西省', N'吉安地区', N'峡江县', N'362423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2244, N'江西省', N'吉安地区', N'新干县', N'362424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2245, N'江西省', N'吉安地区', N'永丰县', N'362425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2246, N'江西省', N'吉安地区', N'泰和县', N'362426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2247, N'江西省', N'吉安地区', N'遂川县', N'362427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2248, N'江西省', N'吉安地区', N'万安县', N'362428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2249, N'江西省', N'吉安地区', N'安福县', N'362429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2250, N'江西省', N'吉安地区', N'永新县', N'362430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2251, N'江西省', N'吉安地区', N'莲花县', N'362431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2252, N'江西省', N'吉安地区', N'宁冈县', N'362432'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2253, N'江西省', N'吉安地区', N'井岗山县', N'362433'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2254, N'江西省', N'抚州地区', N'临川市', N'362501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2255, N'江西省', N'抚州地区', N'临川市', N'362502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2256, N'江西省', N'抚州地区', N'临川县', N'362521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2257, N'江西省', N'抚州地区', N'南城县', N'362522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2258, N'江西省', N'抚州地区', N'黎川县', N'362523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2259, N'江西省', N'抚州地区', N'南丰县', N'362524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2260, N'江西省', N'抚州地区', N'崇仁县', N'362525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2261, N'江西省', N'抚州地区', N'乐安县', N'362526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2262, N'江西省', N'抚州地区', N'宜黄县', N'362527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2263, N'江西省', N'抚州地区', N'金溪县', N'362528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2264, N'江西省', N'抚州地区', N'资溪县', N'362529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2265, N'江西省', N'抚州地区', N'进贤县', N'362530'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2266, N'江西省', N'抚州地区', N'东乡县', N'362531'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2267, N'江西省', N'抚州地区', N'广昌县', N'362532'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2268, N'江西省', N'九江地区', N'九江县', N'362621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2269, N'江西省', N'九江地区', N'瑞昌县', N'362622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2270, N'江西省', N'九江地区', N'武宁县', N'362623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2271, N'江西省', N'九江地区', N'修水县', N'362624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2272, N'江西省', N'九江地区', N'永修县', N'362625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2273, N'江西省', N'九江地区', N'德安县', N'362626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2274, N'江西省', N'九江地区', N'星子县', N'362627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2275, N'江西省', N'九江地区', N'都昌县', N'362628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2276, N'江西省', N'九江地区', N'湖口县', N'362629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2277, N'江西省', N'九江地区', N'彭泽县', N'362630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2278, N'山东省', N'青岛市', N'崂山区', N'370212'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2279, N'山东省', N'青岛市', N'李沧区', N'370213'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2280, N'山东省', N'青岛市', N'城阳区', N'370214'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2281, N'山东省', N'青岛市', N'市区', N'370220'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2282, N'山东省', N'青岛市', N'崂山县', N'370221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2283, N'山东省', N'青岛市', N'即墨县', N'370222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2284, N'山东省', N'青岛市', N'胶南县', N'370223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2285, N'山东省', N'青岛市', N'胶县', N'370224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2286, N'山东省', N'青岛市', N'莱西县', N'370225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2287, N'山东省', N'青岛市', N'平度县', N'370226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2288, N'山东省', N'青岛市', N'胶州市', N'370281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2289, N'山东省', N'青岛市', N'即墨市', N'370282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2290, N'山东省', N'青岛市', N'平度市', N'370283'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2291, N'山东省', N'青岛市', N'胶南市', N'370284'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2292, N'山东省', N'青岛市', N'莱西市', N'370285'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2293, N'山东省', N'青岛市', N'市辖区', N'370201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2294, N'山东省', N'青岛市', N'市南区', N'370202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2295, N'山东省', N'青岛市', N'市北区', N'370203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2296, N'山东省', N'青岛市', N'台东区', N'370204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2297, N'山东省', N'青岛市', N'四方区', N'370205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2298, N'山东省', N'青岛市', N'沧口区', N'370206'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2299, N'山东省', N'青岛市', N'黄岛区', N'370211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2300, N'山东省', N'淄博市', N'市辖区', N'370301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2301, N'山东省', N'淄博市', N'淄川区', N'370302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2302, N'山东省', N'淄博市', N'张店区', N'370303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2303, N'山东省', N'淄博市', N'博山区', N'370304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2304, N'山东省', N'淄博市', N'临淄区', N'370305'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2305, N'山东省', N'淄博市', N'周村区', N'370306'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2306, N'山东省', N'淄博市', N'桓台县', N'370321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2307, N'山东省', N'淄博市', N'高青县', N'370322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2308, N'山东省', N'淄博市', N'沂源县', N'370323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2309, N'山东省', N'枣庄市', N'市辖区', N'370401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2310, N'山东省', N'枣庄市', N'市中区', N'370402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2311, N'山东省', N'枣庄市', N'薛城区', N'370403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2312, N'山东省', N'枣庄市', N'峄城区', N'370404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2313, N'山东省', N'枣庄市', N'台儿庄区', N'370405'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2314, N'山东省', N'枣庄市', N'山亭区', N'370406'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2315, N'山东省', N'枣庄市', N'市区', N'370420'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2316, N'山东省', N'枣庄市', N'滕县', N'370421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2317, N'山东省', N'枣庄市', N'滕州市', N'370481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2318, N'山东省', N'东营市', N'市辖区', N'370501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2319, N'山东省', N'东营市', N'东营区', N'370502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2320, N'山东省', N'东营市', N'河口区', N'370503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2321, N'山东省', N'东营市', N'垦利县', N'370521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2322, N'山东省', N'东营市', N'利津县', N'370522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2323, N'山东省', N'东营市', N'广饶县', N'370523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2324, N'山东省', N'烟台市', N'市辖区', N'370601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2325, N'山东省', N'烟台市', N'芝罘区', N'370602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2326, N'山东省', N'烟台市', N'福山区', N'370611'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2327, N'山东省', N'烟台市', N'牟平区', N'370612'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2328, N'山东省', N'烟台市', N'莱山区', N'370613'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2329, N'山东省', N'烟台市', N'龙口市', N'370619'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2330, N'山东省', N'烟台市', N'威海市', N'370620'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2331, N'山东省', N'烟台市', N'蓬莱县', N'370622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2332, N'山东省', N'烟台市', N'黄县', N'370623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2333, N'山东省', N'烟台市', N'招远县', N'370624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2334, N'山东省', N'烟台市', N'掖县', N'370625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2335, N'山东省', N'烟台市', N'莱阳县', N'370627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2336, N'山东省', N'烟台市', N'栖霞县', N'370628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2337, N'山东省', N'烟台市', N'海阳县', N'370629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2338, N'山东省', N'烟台市', N'牟平县', N'370631'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2339, N'山东省', N'烟台市', N'文登县', N'370632'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2340, N'山东省', N'烟台市', N'荣城县', N'370633'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2341, N'山东省', N'烟台市', N'长岛县', N'370634'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2342, N'山东省', N'烟台市', N'龙口市', N'370681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2343, N'山东省', N'烟台市', N'莱阳市', N'370682'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2344, N'山东省', N'烟台市', N'莱州市', N'370683'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2345, N'山东省', N'烟台市', N'蓬莱市', N'370684'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2346, N'山东省', N'烟台市', N'招远市', N'370685'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2347, N'山东省', N'烟台市', N'栖霞市', N'370686'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2348, N'山东省', N'烟台市', N'海阳市', N'370687'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2349, N'山东省', N'潍坊市', N'市辖区', N'370701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2350, N'山东省', N'潍坊市', N'潍城区', N'370702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2351, N'山东省', N'潍坊市', N'寒亭区', N'370703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2352, N'山东省', N'潍坊市', N'坊子区', N'370704'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2353, N'山东省', N'潍坊市', N'奎文区', N'370705'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2354, N'山东省', N'潍坊市', N'青州市', N'370719'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2355, N'山东省', N'潍坊市', N'益都县', N'370721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2356, N'山东省', N'潍坊市', N'安丘县', N'370722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2357, N'山东省', N'潍坊市', N'寿光县', N'370723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2358, N'山东省', N'潍坊市', N'临朐县', N'370724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2359, N'山东省', N'潍坊市', N'昌乐县', N'370725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2360, N'山东省', N'潍坊市', N'昌邑县', N'370726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2361, N'山东省', N'潍坊市', N'高密县', N'370727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2362, N'山东省', N'潍坊市', N'诸城县', N'370728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2363, N'山东省', N'潍坊市', N'五莲县', N'370729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2364, N'山东省', N'潍坊市', N'青州市', N'370781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2365, N'山东省', N'潍坊市', N'诸城市', N'370782'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2366, N'山东省', N'潍坊市', N'寿光市', N'370783'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2367, N'山东省', N'潍坊市', N'安丘市', N'370784'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2368, N'山东省', N'潍坊市', N'高密市', N'370785'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2369, N'山东省', N'潍坊市', N'昌邑市', N'370786'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2370, N'山东省', N'济宁市', N'市辖区', N'370801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2371, N'山东省', N'济宁市', N'市中区', N'370802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2372, N'山东省', N'济宁市', N'任城区', N'370811'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2373, N'山东省', N'济宁市', N'曲阜市', N'370819'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2374, N'山东省', N'济宁市', N'兖州县', N'370822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2375, N'山东省', N'济宁市', N'曲阜县', N'370823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2376, N'山东省', N'济宁市', N'邹县', N'370825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2377, N'山东省', N'济宁市', N'微山县', N'370826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2378, N'山东省', N'济宁市', N'鱼台县', N'370827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2379, N'山东省', N'济宁市', N'金乡县', N'370828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2380, N'山东省', N'济宁市', N'嘉祥县', N'370829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2381, N'山东省', N'济宁市', N'汶上县', N'370830'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2382, N'山东省', N'济宁市', N'泗水县', N'370831'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2383, N'山东省', N'济宁市', N'梁山县', N'370832'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2384, N'山东省', N'济宁市', N'曲阜市', N'370881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2385, N'山东省', N'济宁市', N'兖州市', N'370882'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2386, N'山东省', N'济宁市', N'邹城市', N'370883'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2387, N'山东省', N'泰安市', N'市辖区', N'370901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2388, N'山东省', N'泰安市', N'泰山区', N'370902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2389, N'山东省', N'泰安市', N'岱岳区', N'370903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2390, N'山东省', N'泰安市', N'郊区', N'370911'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2391, N'山东省', N'泰安市', N'莱芜市', N'370919'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2392, N'山东省', N'泰安市', N'新泰市', N'370920'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2393, N'山东省', N'泰安市', N'宁阳县', N'370921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2394, N'山东省', N'泰安市', N'肥城县', N'370922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2395, N'山东省', N'泰安市', N'东平县', N'370923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2396, N'山东省', N'泰安市', N'莱芜市', N'370981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2397, N'山东省', N'泰安市', N'新泰市', N'370982'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2398, N'山东省', N'泰安市', N'肥城市', N'370983'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2399, N'山东省', N'威海市', N'市辖区', N'371001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2400, N'山东省', N'威海市', N'环翠区', N'371002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2401, N'山东省', N'威海市', N'乳山县', N'371021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2402, N'山东省', N'威海市', N'文登市', N'371081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2403, N'山东省', N'威海市', N'荣成市', N'371082'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2404, N'山东省', N'威海市', N'乳山市', N'371083'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2405, N'山东省', N'日照市', N'市辖区', N'371101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2406, N'山东省', N'日照市', N'东港区', N'371102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2407, N'山东省', N'日照市', N'岚山区', N'371103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2408, N'山东省', N'日照市', N'五莲县', N'371121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2409, N'山东省', N'日照市', N'莒县', N'371122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2410, N'山东省', N'莱芜市', N'市辖区', N'371201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2411, N'山东省', N'莱芜市', N'莱城区', N'371202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2412, N'山东省', N'莱芜市', N'钢城区', N'371203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2413, N'山东省', N'临沂市', N'市辖区', N'371301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2414, N'山东省', N'临沂市', N'兰山区', N'371302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2415, N'山东省', N'临沂市', N'罗庄区', N'371311'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2416, N'山东省', N'临沂市', N'河东区', N'371312'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2417, N'山东省', N'临沂市', N'沂南县', N'371321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2418, N'山东省', N'临沂市', N'郯城县', N'371322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2419, N'山东省', N'临沂市', N'沂水县', N'371323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2420, N'山东省', N'临沂市', N'苍山县', N'371324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2421, N'山东省', N'临沂市', N'费县', N'371325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2422, N'山东省', N'临沂市', N'平邑县', N'371326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2423, N'山东省', N'临沂市', N'莒南县', N'371327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2424, N'山东省', N'临沂市', N'蒙阴县', N'371328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2425, N'山东省', N'临沂市', N'临沭县', N'371329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2426, N'山东省', N'德州市', N'市辖区', N'371401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2427, N'山东省', N'德州市', N'德城区', N'371402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2428, N'山东省', N'德州市', N'陵县', N'371421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2429, N'山东省', N'德州市', N'宁津县', N'371422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2430, N'山东省', N'德州市', N'庆云县', N'371423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2431, N'山东省', N'德州市', N'临邑县', N'371424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2432, N'山东省', N'德州市', N'齐河县', N'371425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2433, N'山东省', N'德州市', N'平原县', N'371426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2434, N'山东省', N'德州市', N'夏津县', N'371427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2435, N'山东省', N'德州市', N'武城县', N'371428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2436, N'山东省', N'德州市', N'乐陵市', N'371481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2437, N'山东省', N'德州市', N'禹城市', N'371482'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2438, N'山东省', N'聊城市', N'市辖区', N'371501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2439, N'山东省', N'聊城市', N'东昌府区', N'371502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2440, N'山东省', N'聊城市', N'阳谷县', N'371521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2441, N'山东省', N'聊城市', N'莘县', N'371522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2442, N'山东省', N'聊城市', N'茌平县', N'371523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2443, N'山东省', N'聊城市', N'东阿县', N'371524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2444, N'山东省', N'聊城市', N'冠县', N'371525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2445, N'山东省', N'聊城市', N'高唐县', N'371526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2446, N'山东省', N'聊城市', N'临清市', N'371581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2447, N'山东省', N'滨州市', N'市辖区', N'371601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2448, N'山东省', N'滨州市', N'滨城区', N'371602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2449, N'山东省', N'滨州市', N'惠民县', N'371621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2450, N'山东省', N'滨州市', N'阳信县', N'371622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2451, N'山东省', N'滨州市', N'无棣县', N'371623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2452, N'山东省', N'滨州市', N'沾化县', N'371624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2453, N'山东省', N'滨州市', N'博兴县', N'371625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2454, N'山东省', N'滨州市', N'邹平县', N'371626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2455, N'山东省', N'济南市', N'市辖区', N'370101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2456, N'山东省', N'济南市', N'历下区', N'370102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2457, N'山东省', N'济南市', N'市中区', N'370103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2458, N'山东省', N'济南市', N'槐荫区', N'370104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2459, N'山东省', N'济南市', N'天桥区', N'370105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2460, N'山东省', N'济南市', N'郊区', N'370111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2461, N'山东省', N'济南市', N'历城区', N'370112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2462, N'山东省', N'济南市', N'长清区', N'370113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2463, N'山东省', N'济南市', N'市区', N'370120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2464, N'山东省', N'济南市', N'历城县', N'370121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2465, N'山东省', N'济南市', N'章丘县', N'370122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2466, N'山东省', N'济南市', N'长清县', N'370123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2467, N'山东省', N'济南市', N'平阴县', N'370124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2468, N'山东省', N'济南市', N'济阳县', N'370125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2469, N'山东省', N'济南市', N'商河县', N'370126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2470, N'山东省', N'济南市', N'章丘市', N'370181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2471, N'山东省', N'菏泽市', N'市辖区', N'371701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2472, N'山东省', N'菏泽市', N'牡丹区', N'371702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2473, N'山东省', N'菏泽市', N'曹县', N'371721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2474, N'山东省', N'菏泽市', N'单县', N'371722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2475, N'山东省', N'菏泽市', N'成武县', N'371723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2476, N'山东省', N'菏泽市', N'巨野县', N'371724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2477, N'山东省', N'菏泽市', N'郓城县', N'371725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2478, N'山东省', N'菏泽市', N'鄄城县', N'371726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2479, N'山东省', N'菏泽市', N'定陶县', N'371727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2480, N'山东省', N'菏泽市', N'东明县', N'371728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2481, N'山东省', N'烟台地区', N'烟台市', N'372101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2482, N'山东省', N'烟台地区', N'威海市', N'372102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2483, N'山东省', N'烟台地区', N'福山县', N'372121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2484, N'山东省', N'烟台地区', N'蓬莱县', N'372122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2485, N'山东省', N'烟台地区', N'招远县', N'372124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2486, N'山东省', N'烟台地区', N'掖县', N'372125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2487, N'山东省', N'烟台地区', N'莱西县', N'372126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2488, N'山东省', N'烟台地区', N'莱阳县', N'372127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2489, N'山东省', N'烟台地区', N'栖霞县', N'372128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2490, N'山东省', N'烟台地区', N'海阳县', N'372129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2491, N'山东省', N'烟台地区', N'乳山县', N'372130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2492, N'山东省', N'烟台地区', N'牟平县', N'372131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2493, N'山东省', N'烟台地区', N'文登县', N'372132'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2494, N'山东省', N'烟台地区', N'荣城县', N'372133'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2495, N'山东省', N'烟台地区', N'长岛县', N'372134'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2496, N'山东省', N'潍坊地区', N'潍坊市', N'372201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2497, N'山东省', N'潍坊地区', N'益都县', N'372221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2498, N'山东省', N'潍坊地区', N'安丘县', N'372222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2499, N'山东省', N'潍坊地区', N'寿光县', N'372223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2500, N'山东省', N'潍坊地区', N'临朐县', N'372224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2501, N'山东省', N'潍坊地区', N'昌乐县', N'372225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2502, N'山东省', N'潍坊地区', N'昌邑县', N'372226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2503, N'山东省', N'潍坊地区', N'高密县', N'372227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2504, N'山东省', N'潍坊地区', N'诸城县', N'372228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2505, N'山东省', N'潍坊地区', N'平度县', N'372230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2506, N'山东省', N'潍坊地区', N'潍县', N'372231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2507, N'山东省', N'滨州地区', N'滨州市', N'372301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2508, N'山东省', N'滨州地区', N'惠民县', N'372321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2509, N'山东省', N'滨州地区', N'滨县', N'372322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2510, N'山东省', N'滨州地区', N'阳信县', N'372323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2511, N'山东省', N'滨州地区', N'无棣县', N'372324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2512, N'山东省', N'滨州地区', N'沾化县', N'372325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2513, N'山东省', N'滨州地区', N'利津县', N'372326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2514, N'山东省', N'滨州地区', N'广饶县', N'372327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2515, N'山东省', N'滨州地区', N'博兴县', N'372328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2516, N'山东省', N'滨州地区', N'桓台县', N'372329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2517, N'山东省', N'滨州地区', N'邹平县', N'372330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2518, N'山东省', N'滨州地区', N'高青县', N'372331'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2519, N'山东省', N'滨州地区', N'垦利县', N'372332'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2520, N'山东省', N'德州地区', N'德州市', N'372401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2521, N'山东省', N'德州地区', N'乐陵市', N'372402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2522, N'山东省', N'德州地区', N'禹城市', N'372403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2523, N'山东省', N'德州地区', N'陵县', N'372421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2524, N'山东省', N'德州地区', N'平原县', N'372422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2525, N'山东省', N'德州地区', N'夏津县', N'372423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2526, N'山东省', N'德州地区', N'武城县', N'372424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2527, N'山东省', N'德州地区', N'齐河县', N'372425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2528, N'山东省', N'德州地区', N'禹城县', N'372426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2529, N'山东省', N'德州地区', N'乐陵县', N'372427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2530, N'山东省', N'德州地区', N'临邑县', N'372428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2531, N'山东省', N'德州地区', N'商河县', N'372429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2532, N'山东省', N'德州地区', N'济阳县', N'372430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2533, N'山东省', N'德州地区', N'宁津县', N'372431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2534, N'山东省', N'德州地区', N'庆云县', N'372432'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2535, N'山东省', N'聊城市', N'聊城市', N'372501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2536, N'山东省', N'聊城市', N'东昌府区', N'372502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2537, N'山东省', N'聊城市', N'阳谷县', N'372521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2538, N'山东省', N'聊城市', N'莘县', N'372522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2539, N'山东省', N'聊城市', N'茌平县', N'372523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2540, N'山东省', N'聊城市', N'东阿县', N'372524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2541, N'山东省', N'聊城市', N'冠县', N'372525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2542, N'山东省', N'聊城市', N'高唐县', N'372526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2543, N'山东省', N'聊城市', N'高唐县', N'372527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2544, N'山东省', N'聊城市', N'临清县', N'372528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2545, N'山东省', N'聊城市', N'临清市', N'372581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2546, N'山东省', N'泰安地区', N'泰安市', N'372601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2547, N'山东省', N'泰安地区', N'莱芜市', N'372602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2548, N'山东省', N'泰安地区', N'新泰市', N'372603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2549, N'山东省', N'泰安地区', N'莱芜县', N'372622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2550, N'山东省', N'泰安地区', N'新泰县', N'372623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2551, N'山东省', N'泰安地区', N'宁阳县', N'372624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2552, N'山东省', N'泰安地区', N'肥城县', N'372625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2553, N'山东省', N'泰安地区', N'东平县', N'372626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2554, N'山东省', N'泰安地区', N'平阴县', N'372627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2555, N'山东省', N'泰安地区', N'新汶县', N'372628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2556, N'山东省', N'泰安地区', N'泗水县', N'372630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2557, N'山东省', N'济宁地区', N'济宁市', N'372701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2558, N'山东省', N'济宁地区', N'兖州县', N'372722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2559, N'山东省', N'济宁地区', N'曲阜县', N'372723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2560, N'山东省', N'济宁地区', N'泗水县', N'372724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2561, N'山东省', N'济宁地区', N'邹县', N'372725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2562, N'山东省', N'济宁地区', N'微山县', N'372726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2563, N'山东省', N'济宁地区', N'鱼台县', N'372727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2564, N'山东省', N'济宁地区', N'金乡县', N'372728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2565, N'山东省', N'济宁地区', N'嘉祥县', N'372729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2566, N'山东省', N'临沂地区', N'临沂市', N'372801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2567, N'山东省', N'临沂地区', N'日照市', N'372802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2568, N'山东省', N'临沂地区', N'临沂县', N'372821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2569, N'山东省', N'临沂地区', N'郯城县', N'372822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2570, N'山东省', N'临沂地区', N'苍山县', N'372823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2571, N'山东省', N'临沂地区', N'莒南县', N'372824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2572, N'山东省', N'临沂地区', N'日照县', N'372825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2573, N'山东省', N'临沂地区', N'莒县', N'372826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2574, N'山东省', N'临沂地区', N'沂水县', N'372827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2575, N'山东省', N'临沂地区', N'沂源县', N'372828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2576, N'山东省', N'临沂地区', N'蒙阴县', N'372829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2577, N'山东省', N'临沂地区', N'平邑县', N'372830'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2578, N'山东省', N'临沂地区', N'费县', N'372831'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2579, N'山东省', N'临沂地区', N'沂南县', N'372832'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2580, N'山东省', N'临沂地区', N'临沭县', N'372833'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2581, N'山东省', N'菏泽地区', N'菏泽市', N'372901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2582, N'山东省', N'菏泽地区', N'菏泽县', N'372921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2583, N'山东省', N'菏泽地区', N'曹县', N'372922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2584, N'山东省', N'菏泽地区', N'定陶县', N'372923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2585, N'山东省', N'菏泽地区', N'成武县', N'372924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2586, N'山东省', N'菏泽地区', N'单县', N'372925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2587, N'山东省', N'菏泽地区', N'巨野县', N'372926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2588, N'山东省', N'菏泽地区', N'粱山县', N'372927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2589, N'山东省', N'菏泽地区', N'郓城县', N'372928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2590, N'山东省', N'菏泽地区', N'鄄城县', N'372929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2591, N'山东省', N'菏泽地区', N'东明县', N'372930'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2592, N'山东省', NULL, N'青州市', N'379001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2593, N'山东省', NULL, N'龙口市', N'379002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2594, N'山东省', NULL, N'曲阜市', N'379003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2595, N'山东省', NULL, N'莱芜市', N'379004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2596, N'山东省', NULL, N'新泰市', N'379005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2597, N'山东省', NULL, N'胶州市', N'379006'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2598, N'山东省', NULL, N'诸城市', N'379007'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2599, N'山东省', NULL, N'莱阳市', N'379008'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2600, N'山东省', NULL, N'莱州市', N'379009'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2601, N'山东省', NULL, N'滕州市', N'379010'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2602, N'山东省', NULL, N'文登市', N'379011'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2603, N'山东省', NULL, N'荣城市', N'379012'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2604, N'河南省', N'鹤壁市', N'鹤山区', N'410602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2605, N'河南省', N'鹤壁市', N'山城区', N'410603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2606, N'河南省', N'鹤壁市', N'淇滨区', N'410611'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2607, N'河南省', N'鹤壁市', N'浚县', N'410621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2608, N'河南省', N'鹤壁市', N'淇县', N'410622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2609, N'河南省', N'鹤壁市', N'市辖区', N'410601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2610, N'河南省', N'新乡市', N'市辖区', N'410701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2611, N'河南省', N'新乡市', N'红旗区', N'410702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2612, N'河南省', N'新乡市', N'新华区', N'410703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2613, N'河南省', N'新乡市', N'北站区', N'410704'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2614, N'河南省', N'新乡市', N'郊区', N'410711'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2615, N'河南省', N'新乡市', N'新乡县', N'410721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2616, N'河南省', N'新乡市', N'汲县', N'410722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2617, N'河南省', N'新乡市', N'辉县', N'410723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2618, N'河南省', N'新乡市', N'获嘉县', N'410724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2619, N'河南省', N'新乡市', N'原阳县', N'410725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2620, N'河南省', N'新乡市', N'延津县', N'410726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2621, N'河南省', N'新乡市', N'封丘县', N'410727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2622, N'河南省', N'新乡市', N'长垣县', N'410728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2623, N'河南省', N'新乡市', N'卫辉市', N'410781'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2624, N'河南省', N'新乡市', N'辉县市', N'410782'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2625, N'河南省', N'焦作市', N'市辖区', N'410801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2626, N'河南省', N'焦作市', N'解放区', N'410802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2627, N'河南省', N'焦作市', N'中站区', N'410803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2628, N'河南省', N'焦作市', N'马村区', N'410804'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2629, N'河南省', N'焦作市', N'山阳区', N'410811'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2630, N'河南省', N'焦作市', N'修武县', N'410821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2631, N'河南省', N'焦作市', N'博爱县', N'410822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2632, N'河南省', N'焦作市', N'武陟县', N'410823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2633, N'河南省', N'焦作市', N'沁阳县', N'410824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2634, N'河南省', N'焦作市', N'温县', N'410825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2635, N'河南省', N'焦作市', N'孟县', N'410826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2636, N'河南省', N'焦作市', N'济源县', N'410827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2637, N'河南省', N'焦作市', N'济源市', N'410881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2638, N'河南省', N'焦作市', N'沁阳市', N'410882'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2639, N'河南省', N'焦作市', N'孟州市', N'410883'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2640, N'河南省', N'濮阳市', N'市辖区', N'410901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2641, N'河南省', N'濮阳市', N'市区', N'410902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2642, N'河南省', N'濮阳市', N'滑县', N'410921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2643, N'河南省', N'濮阳市', N'清丰县', N'410922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2644, N'河南省', N'濮阳市', N'南乐县', N'410923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2645, N'河南省', N'濮阳市', N'内黄县', N'410924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2646, N'河南省', N'濮阳市', N'长垣县', N'410925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2647, N'河南省', N'濮阳市', N'范县', N'410926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2648, N'河南省', N'濮阳市', N'台前县', N'410927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2649, N'河南省', N'濮阳市', N'濮阳县', N'410928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2650, N'河南省', N'许昌市', N'市辖区', N'411001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2651, N'河南省', N'许昌市', N'魏都区', N'411002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2652, N'河南省', N'许昌市', N'禹县', N'411021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2653, N'河南省', N'许昌市', N'长葛县', N'411022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2654, N'河南省', N'许昌市', N'许昌县', N'411023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2655, N'河南省', N'许昌市', N'鄢陵县', N'411024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2656, N'河南省', N'许昌市', N'襄城县', N'411025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2657, N'河南省', N'许昌市', N'禹州市', N'411081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2658, N'河南省', N'许昌市', N'长葛市', N'411082'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2659, N'河南省', N'漯河市', N'市辖区', N'411101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2660, N'河南省', N'漯河市', N'源汇区', N'411102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2661, N'河南省', N'漯河市', N'郾城区', N'411103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2662, N'河南省', N'漯河市', N'召陵区', N'411104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2663, N'河南省', N'漯河市', N'舞阳县', N'411121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2664, N'河南省', N'漯河市', N'临颍县', N'411122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2665, N'河南省', N'漯河市', N'郾城县', N'411123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2666, N'河南省', N'三门峡市', N'市辖区', N'411201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2667, N'河南省', N'三门峡市', N'湖滨区', N'411202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2668, N'河南省', N'三门峡市', N'渑池县', N'411221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2669, N'河南省', N'三门峡市', N'陕县', N'411222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2670, N'河南省', N'三门峡市', N'灵宝县', N'411223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2671, N'河南省', N'三门峡市', N'卢氏县', N'411224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2672, N'河南省', N'三门峡市', N'义马市', N'411281'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2673, N'河南省', N'三门峡市', N'灵宝市', N'411282'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2674, N'河南省', N'南阳市', N'市辖区', N'411301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2675, N'河南省', N'南阳市', N'宛城区', N'411302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2676, N'河南省', N'南阳市', N'卧龙区', N'411303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2677, N'河南省', N'南阳市', N'南召县', N'411321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2678, N'河南省', N'南阳市', N'方城县', N'411322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2679, N'河南省', N'南阳市', N'西峡县', N'411323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2680, N'河南省', N'南阳市', N'镇平县', N'411324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2681, N'河南省', N'南阳市', N'内乡县', N'411325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2682, N'河南省', N'南阳市', N'淅川县', N'411326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2683, N'河南省', N'南阳市', N'社旗县', N'411327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2684, N'河南省', N'南阳市', N'唐河县', N'411328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2685, N'河南省', N'南阳市', N'新野县', N'411329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2686, N'河南省', N'南阳市', N'桐柏县', N'411330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2687, N'河南省', N'南阳市', N'邓州市', N'411381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2688, N'河南省', N'郑州市', N'市辖区', N'410101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2689, N'河南省', N'郑州市', N'中原区', N'410102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2690, N'河南省', N'郑州市', N'二七区', N'410103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2691, N'河南省', N'郑州市', N'管城回族区', N'410104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2692, N'河南省', N'郑州市', N'金水区', N'410105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2693, N'河南省', N'郑州市', N'上街区', N'410106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2694, N'河南省', N'郑州市', N'新密区', N'410107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2695, N'河南省', N'郑州市', N'邙山区', N'410108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2696, N'河南省', N'郑州市', N'金海区', N'410111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2697, N'河南省', N'郑州市', N'郊区', N'410112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2698, N'河南省', N'郑州市', N'市区', N'410120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2699, N'河南省', N'郑州市', N'荥阳县', N'410121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2700, N'河南省', N'郑州市', N'中牟县', N'410122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2701, N'河南省', N'郑州市', N'新郑县', N'410123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2702, N'河南省', N'郑州市', N'巩县', N'410124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2703, N'河南省', N'郑州市', N'登封县', N'410125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2704, N'河南省', N'郑州市', N'密县', N'410126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2705, N'河南省', N'郑州市', N'巩义市', N'410181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2706, N'河南省', N'郑州市', N'荥阳市', N'410182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2707, N'河南省', N'郑州市', N'新密市', N'410183'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2708, N'河南省', N'郑州市', N'新郑市', N'410184'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2709, N'河南省', N'郑州市', N'登封市', N'410185'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2710, N'河南省', N'开封市', N'市辖区', N'410201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2711, N'河南省', N'开封市', N'龙亭区', N'410202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2712, N'河南省', N'开封市', N'顺河回族区', N'410203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2713, N'河南省', N'开封市', N'鼓楼区', N'410204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2714, N'河南省', N'开封市', N'禹王台区', N'410205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2715, N'河南省', N'开封市', N'金明区', N'410211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2716, N'河南省', N'开封市', N'杞县', N'410221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2717, N'河南省', N'开封市', N'通许县', N'410222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2718, N'河南省', N'开封市', N'尉氏县', N'410223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2719, N'河南省', N'开封市', N'开封县', N'410224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2720, N'河南省', N'开封市', N'兰考县', N'410225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2721, N'河南省', N'洛阳市', N'市辖区', N'410301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2722, N'河南省', N'洛阳市', N'老城区', N'410302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2723, N'河南省', N'洛阳市', N'西工区', N'410303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2724, N'河南省', N'洛阳市', N'廛河回族区', N'410304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2725, N'河南省', N'洛阳市', N'涧西区', N'410305'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2726, N'河南省', N'洛阳市', N'吉利区', N'410306'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2727, N'河南省', N'洛阳市', N'洛龙区', N'410307'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2728, N'河南省', N'洛阳市', N'郊区', N'410311'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2729, N'河南省', N'洛阳市', N'偃师县', N'410321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2730, N'河南省', N'洛阳市', N'孟津县', N'410322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2731, N'河南省', N'洛阳市', N'新安县', N'410323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2732, N'河南省', N'洛阳市', N'栾川县', N'410324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2733, N'河南省', N'洛阳市', N'嵩县', N'410325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2734, N'河南省', N'洛阳市', N'汝阳县', N'410326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2735, N'河南省', N'洛阳市', N'宜阳县', N'410327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2736, N'河南省', N'洛阳市', N'洛宁县', N'410328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2737, N'河南省', N'洛阳市', N'伊川县', N'410329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2738, N'河南省', N'洛阳市', N'偃师市', N'410381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2739, N'河南省', N'平顶山市', N'市辖区', N'410401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2740, N'河南省', N'平顶山市', N'新华区', N'410402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2741, N'河南省', N'平顶山市', N'卫东区', N'410403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2742, N'河南省', N'平顶山市', N'石龙区', N'410404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2743, N'河南省', N'平顶山市', N'湛河区', N'410411'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2744, N'河南省', N'平顶山市', N'舞钢区', N'410412'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2745, N'河南省', N'平顶山市', N'宝丰县', N'410421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2746, N'河南省', N'平顶山市', N'叶县', N'410422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2747, N'河南省', N'平顶山市', N'鲁山县', N'410423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2748, N'河南省', N'平顶山市', N'临汝县', N'410424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2749, N'河南省', N'平顶山市', N'郏县', N'410425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2750, N'河南省', N'平顶山市', N'襄城县', N'410426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2751, N'河南省', N'平顶山市', N'舞钢市', N'410481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2752, N'河南省', N'平顶山市', N'汝州市', N'410482'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2753, N'河南省', N'安阳市', N'市辖区', N'410501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2754, N'河南省', N'安阳市', N'文峰区', N'410502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2755, N'河南省', N'安阳市', N'北关区', N'410503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2756, N'河南省', N'安阳市', N'铁西区', N'410504'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2757, N'河南省', N'安阳市', N'殷都区', N'410505'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2758, N'河南省', N'安阳市', N'龙安区', N'410506'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2759, N'河南省', N'安阳市', N'郊区', N'410511'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2760, N'河南省', N'安阳市', N'林县', N'410521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2761, N'河南省', N'安阳市', N'安阳县', N'410522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2762, N'河南省', N'安阳市', N'汤阴县', N'410523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2763, N'河南省', N'安阳市', N'淇县', N'410524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2764, N'河南省', N'安阳市', N'浚县', N'410525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2765, N'河南省', N'安阳市', N'滑县', N'410526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2766, N'河南省', N'安阳市', N'内黄县', N'410527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2767, N'河南省', N'安阳市', N'林州市', N'410581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2768, N'河南省', N'商丘市', N'市辖区', N'411401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2769, N'河南省', N'商丘市', N'梁园区', N'411402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2770, N'河南省', N'商丘市', N'睢阳区', N'411403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2771, N'河南省', N'商丘市', N'民权县', N'411421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2772, N'河南省', N'商丘市', N'睢县', N'411422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2773, N'河南省', N'商丘市', N'宁陵县', N'411423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2774, N'河南省', N'商丘市', N'柘城县', N'411424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2775, N'河南省', N'商丘市', N'虞城县', N'411425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2776, N'河南省', N'商丘市', N'夏邑县', N'411426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2777, N'河南省', N'商丘市', N'永城市', N'411481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2778, N'河南省', N'信阳市', N'市辖区', N'411501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2779, N'河南省', N'信阳市', N'师河区', N'411502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2780, N'河南省', N'信阳市', N'平桥区', N'411503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2781, N'河南省', N'信阳市', N'罗山县', N'411521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2782, N'河南省', N'信阳市', N'光山县', N'411522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2783, N'河南省', N'信阳市', N'新县', N'411523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2784, N'河南省', N'信阳市', N'商城县', N'411524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2785, N'河南省', N'信阳市', N'固始县', N'411525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2786, N'河南省', N'信阳市', N'潢川县', N'411526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2787, N'河南省', N'信阳市', N'淮滨县', N'411527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2788, N'河南省', N'信阳市', N'息县', N'411528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2789, N'河南省', N'周口市', N'市辖区', N'411601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2790, N'河南省', N'周口市', N'川汇区', N'411602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2791, N'河南省', N'周口市', N'扶沟县', N'411621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2792, N'河南省', N'周口市', N'西华县', N'411622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2793, N'河南省', N'周口市', N'商水县', N'411623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2794, N'河南省', N'周口市', N'沈丘县', N'411624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2795, N'河南省', N'周口市', N'郸城县', N'411625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2796, N'河南省', N'周口市', N'淮阳县', N'411626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2797, N'河南省', N'周口市', N'太康县', N'411627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2798, N'河南省', N'周口市', N'鹿邑县', N'411628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2799, N'河南省', N'周口市', N'项城市', N'411681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2800, N'河南省', N'驻马店市', N'市辖区', N'411701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2801, N'河南省', N'驻马店市', N'驿城区', N'411702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2802, N'河南省', N'驻马店市', N'西平县', N'411721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2803, N'河南省', N'驻马店市', N'上蔡县', N'411722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2804, N'河南省', N'驻马店市', N'平舆县', N'411723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2805, N'河南省', N'驻马店市', N'正阳县', N'411724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2806, N'河南省', N'驻马店市', N'确山县', N'411725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2807, N'河南省', N'驻马店市', N'泌阳县', N'411726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2808, N'河南省', N'驻马店市', N'汝南县', N'411727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2809, N'河南省', N'驻马店市', N'遂平县', N'411728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2810, N'河南省', N'驻马店市', N'新蔡县', N'411729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2811, N'河南省', N'商丘地区', N'商丘市', N'412301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2812, N'河南省', N'商丘地区', N'永城市', N'412302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2813, N'河南省', N'商丘地区', N'虞城县', N'412321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2814, N'河南省', N'商丘地区', N'商丘县', N'412322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2815, N'河南省', N'商丘地区', N'民权县', N'412323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2816, N'河南省', N'商丘地区', N'宁陵县', N'412324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2817, N'河南省', N'商丘地区', N'睢县', N'412325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2818, N'河南省', N'商丘地区', N'夏邑县', N'412326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2819, N'河南省', N'商丘地区', N'柘城县', N'412327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2820, N'河南省', N'商丘地区', N'永城县', N'412328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2821, N'河南省', N'开封地区', N'杞县', N'412421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2822, N'河南省', N'开封地区', N'通许县', N'412422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2823, N'河南省', N'开封地区', N'尉氏县', N'412423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2824, N'河南省', N'开封地区', N'开封县', N'412424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2825, N'河南省', N'开封地区', N'中牟县', N'412425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2826, N'河南省', N'开封地区', N'新郑县', N'412426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2827, N'河南省', N'开封地区', N'巩县', N'412427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2828, N'河南省', N'开封地区', N'登封县', N'412428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2829, N'河南省', N'开封地区', N'密县', N'412429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2830, N'河南省', N'开封地区', N'兰考县', N'412430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2831, N'河南省', N'三门峡市', N'三门峡市', N'412501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2832, N'河南省', N'三门峡市', N'义马市', N'412502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2833, N'河南省', N'三门峡市', N'偃师县', N'412521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2834, N'河南省', N'三门峡市', N'孟津县', N'412522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2835, N'河南省', N'三门峡市', N'新安县', N'412523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2836, N'河南省', N'三门峡市', N'渑池县', N'412524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2837, N'河南省', N'三门峡市', N'陕县', N'412525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2838, N'河南省', N'三门峡市', N'灵宝县', N'412526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2839, N'河南省', N'三门峡市', N'伊川县', N'412527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2840, N'河南省', N'三门峡市', N'汝阳县', N'412528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2841, N'河南省', N'三门峡市', N'嵩县', N'412529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2842, N'河南省', N'三门峡市', N'洛宁县', N'412530'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2843, N'河南省', N'三门峡市', N'卢氏县', N'412531'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2844, N'河南省', N'三门峡市', N'栾川县', N'412532'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2845, N'河南省', N'三门峡市', N'临汝县', N'412533'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2846, N'河南省', N'三门峡市', N'宜阳县', N'412534'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2847, N'河南省', N'周口地区', N'周口市', N'412701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2848, N'河南省', N'周口地区', N'项城市', N'412702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2849, N'河南省', N'周口地区', N'扶沟县', N'412721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2850, N'河南省', N'周口地区', N'西华县', N'412722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2851, N'河南省', N'周口地区', N'商水县', N'412723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2852, N'河南省', N'周口地区', N'太康县', N'412724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2853, N'河南省', N'周口地区', N'鹿邑县', N'412725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2854, N'河南省', N'周口地区', N'郸城县', N'412726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2855, N'河南省', N'周口地区', N'淮阳县', N'412727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2856, N'河南省', N'周口地区', N'沈丘县', N'412728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2857, N'河南省', N'驻马店地区', N'驻马店市', N'412801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2858, N'河南省', N'驻马店地区', N'确山县', N'412821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2859, N'河南省', N'驻马店地区', N'泌阳县', N'412822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2860, N'河南省', N'驻马店地区', N'遂平县', N'412823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2861, N'河南省', N'驻马店地区', N'西平县', N'412824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2862, N'河南省', N'驻马店地区', N'上蔡县', N'412825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2863, N'河南省', N'驻马店地区', N'汝南县', N'412826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2864, N'河南省', N'驻马店地区', N'平舆县', N'412827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2865, N'河南省', N'驻马店地区', N'新蔡县', N'412828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2866, N'河南省', N'驻马店地区', N'正阳县', N'412829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2867, N'河南省', N'南阳市', N'卧龙区', N'412901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2868, N'河南省', N'南阳市', N'邓州市', N'412902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2869, N'河南省', N'南阳市', N'宛城区', N'412903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2870, N'河南省', N'南阳市', N'南召县', N'412921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2871, N'河南省', N'南阳市', N'方城县', N'412922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2872, N'河南省', N'南阳市', N'西峡县', N'412923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2873, N'河南省', N'南阳市', N'南阳县', N'412924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2874, N'河南省', N'南阳市', N'镇平县', N'412925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2875, N'河南省', N'南阳市', N'内乡县', N'412926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2876, N'河南省', N'南阳市', N'淅川县', N'412927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2877, N'河南省', N'南阳市', N'社旗县', N'412928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2878, N'河南省', N'南阳市', N'唐河县', N'412929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2879, N'河南省', N'南阳市', N'邓县', N'412930'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2880, N'河南省', N'南阳市', N'新野县', N'412931'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2881, N'河南省', N'南阳市', N'桐柏县', N'412932'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2882, N'河南省', N'南阳市', N'规划控制区', N'412933'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2883, N'河南省', N'信阳地区', N'信阳市', N'413001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2884, N'河南省', N'信阳地区', N'息县', N'413021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2885, N'河南省', N'信阳地区', N'淮滨县', N'413022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2886, N'河南省', N'信阳地区', N'平桥区', N'413023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2887, N'河南省', N'信阳地区', N'潢川县', N'413024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2888, N'河南省', N'信阳地区', N'光山县', N'413025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2889, N'河南省', N'信阳地区', N'固始县', N'413026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2890, N'河南省', N'信阳地区', N'商城县', N'413027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2891, N'河南省', N'信阳地区', N'罗山县', N'413028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2892, N'河南省', N'信阳地区', N'新县', N'413029'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2893, N'河南省', NULL, N'许昌市', N'412601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2894, N'河南省', NULL, N'漯河市', N'412602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2895, N'河南省', NULL, N'长葛县', N'412621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2896, N'河南省', NULL, N'禹县', N'412622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2897, N'河南省', NULL, N'鄢陵县', N'412623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2898, N'河南省', NULL, N'许昌县', N'412624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2899, N'河南省', NULL, N'郏县', N'412625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2900, N'河南省', NULL, N'临颍县', N'412626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2901, N'河南省', NULL, N'襄城县', N'412627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2902, N'河南省', NULL, N'宝丰县', N'412628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2903, N'河南省', NULL, N'郾城县', N'412629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2904, N'河南省', NULL, N'叶县', N'412630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2905, N'河南省', NULL, N'鲁山县', N'412631'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2906, N'河南省', NULL, N'舞阳县', N'412632'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2907, N'河南省', NULL, N'义马市', N'419001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2908, N'河南省', NULL, N'汝州市', N'419002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2909, N'河南省', NULL, N'济源市', N'419003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2910, N'河南省', NULL, N'禹州市', N'419004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2911, N'河南省', NULL, N'卫辉市', N'419005'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2912, N'河南省', NULL, N'辉县市', N'419006'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2913, N'湖北省', N'宜昌市', N'市辖区', N'420501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2914, N'湖北省', N'宜昌市', N'西陵区', N'420502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2915, N'湖北省', N'宜昌市', N'伍家岗区', N'420503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2916, N'湖北省', N'宜昌市', N'点军区', N'420504'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2917, N'湖北省', N'宜昌市', N'猇亭区', N'420505'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2918, N'湖北省', N'宜昌市', N'夷陵区', N'420506'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2919, N'湖北省', N'宜昌市', N'宜昌县', N'420521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2920, N'湖北省', N'宜昌市', N'枝江县', N'420523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2921, N'湖北省', N'宜昌市', N'远安县', N'420525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2922, N'湖北省', N'宜昌市', N'兴山县', N'420526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2923, N'湖北省', N'宜昌市', N'秭归县', N'420527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2924, N'湖北省', N'宜昌市', N'长阳土家族自治县', N'420528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2925, N'湖北省', N'宜昌市', N'五峰土家族自治县', N'420529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2926, N'湖北省', N'宜昌市', N'宜都市', N'420581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2927, N'湖北省', N'宜昌市', N'当阳市', N'420582'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2928, N'湖北省', N'宜昌市', N'枝江市', N'420583'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2929, N'湖北省', N'襄樊市', N'市辖区', N'420601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2930, N'湖北省', N'襄樊市', N'襄城区', N'420602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2931, N'湖北省', N'襄樊市', N'樊东区', N'420603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2932, N'湖北省', N'襄樊市', N'樊西区', N'420604'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2933, N'湖北省', N'襄樊市', N'郊区', N'420605'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2934, N'湖北省', N'襄樊市', N'樊城区', N'420606'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2935, N'湖北省', N'襄樊市', N'襄阳区', N'420607'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2936, N'湖北省', N'襄樊市', N'随州市', N'420619'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2937, N'湖北省', N'襄樊市', N'老河口市', N'420620'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2938, N'湖北省', N'襄樊市', N'襄阳县', N'420621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2939, N'湖北省', N'襄樊市', N'枣阳县', N'420622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2940, N'湖北省', N'襄樊市', N'宜城县', N'420623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2941, N'湖北省', N'襄樊市', N'南漳县', N'420624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2942, N'湖北省', N'襄樊市', N'谷城县', N'420625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2943, N'湖北省', N'襄樊市', N'保康县', N'420626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2944, N'湖北省', N'襄樊市', N'随州市', N'420681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2945, N'湖北省', N'襄樊市', N'老河口市', N'420682'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2946, N'湖北省', N'襄樊市', N'枣阳市', N'420683'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2947, N'湖北省', N'襄樊市', N'宜城市', N'420684'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2948, N'湖北省', N'鄂州市', N'市辖区', N'420701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2949, N'湖北省', N'鄂州市', N'梁子湖区', N'420702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2950, N'湖北省', N'鄂州市', N'华容区', N'420703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2951, N'湖北省', N'鄂州市', N'鄂城区', N'420704'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2952, N'湖北省', N'荆门市', N'市辖区', N'420801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2953, N'湖北省', N'荆门市', N'东宝区', N'420802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2954, N'湖北省', N'荆门市', N'沙洋区', N'420803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2955, N'湖北省', N'荆门市', N'掇刀区', N'420804'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2956, N'湖北省', N'荆门市', N'京山县', N'420821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2957, N'湖北省', N'荆门市', N'沙洋县', N'420822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2958, N'湖北省', N'荆门市', N'钟祥市', N'420881'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2959, N'湖北省', N'孝感市', N'市辖区', N'420901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2960, N'湖北省', N'孝感市', N'孝南区', N'420902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2961, N'湖北省', N'孝感市', N'孝昌县', N'420921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2962, N'湖北省', N'孝感市', N'大悟县', N'420922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2963, N'湖北省', N'孝感市', N'云梦县', N'420923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2964, N'湖北省', N'孝感市', N'应城市', N'420981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2965, N'湖北省', N'孝感市', N'安陆市', N'420982'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2966, N'湖北省', N'孝感市', N'广水市', N'420983'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2967, N'湖北省', N'孝感市', N'汉川市', N'420984'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2968, N'湖北省', N'荆州市', N'市辖区', N'421001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2969, N'湖北省', N'荆州市', N'沙市区', N'421002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2970, N'湖北省', N'荆州市', N'荆州区', N'421003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2971, N'湖北省', N'荆州市', N'江陵区', N'421004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2972, N'湖北省', N'荆州市', N'松滋县', N'421021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2973, N'湖北省', N'荆州市', N'公安县', N'421022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2974, N'湖北省', N'荆州市', N'监利县', N'421023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2975, N'湖北省', N'荆州市', N'江陵县', N'421024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2976, N'湖北省', N'荆州市', N'石首市', N'421081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2977, N'湖北省', N'荆州市', N'洪湖市', N'421083'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2978, N'湖北省', N'荆州市', N'松滋市', N'421087'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2979, N'湖北省', N'黄冈市', N'市辖区', N'421101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2980, N'湖北省', N'黄冈市', N'黄州区', N'421102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2981, N'湖北省', N'黄冈市', N'龙感湖管理区', N'421103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2982, N'湖北省', N'黄冈市', N'团风县', N'421121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2983, N'湖北省', N'黄冈市', N'红安县', N'421122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2984, N'湖北省', N'黄冈市', N'罗田县', N'421123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2985, N'湖北省', N'黄冈市', N'英山县', N'421124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2986, N'湖北省', N'黄冈市', N'浠水县', N'421125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2987, N'湖北省', N'黄冈市', N'蕲春县', N'421126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2988, N'湖北省', N'黄冈市', N'黄梅县', N'421127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2989, N'湖北省', N'黄冈市', N'麻城市', N'421181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (2990, N'湖北省', N'黄冈市', N'武穴市', N'421182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (141, N'河北省', N'邢台市', N'临西县', N'130535'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (142, N'河北省', N'邢台市', N'南宫市', N'130581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (143, N'河北省', N'邢台市', N'沙河市', N'130582'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (144, N'河北省', N'保定市', N'市辖区', N'130601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (145, N'河北省', N'保定市', N'新市区', N'130602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (146, N'河北省', N'保定市', N'北市区', N'130603'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (147, N'河北省', N'保定市', N'南市区', N'130604'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (148, N'河北省', N'保定市', N'满城县', N'130621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (149, N'河北省', N'保定市', N'清苑县', N'130622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (150, N'河北省', N'保定市', N'涞水县', N'130623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (151, N'河北省', N'保定市', N'阜平县', N'130624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (152, N'河北省', N'保定市', N'徐水县', N'130625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (153, N'河北省', N'保定市', N'定兴县', N'130626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (154, N'河北省', N'保定市', N'唐县', N'130627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (155, N'河北省', N'保定市', N'高阳县', N'130628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (156, N'河北省', N'保定市', N'容城县', N'130629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (157, N'河北省', N'保定市', N'涞源县', N'130630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (158, N'河北省', N'保定市', N'望都县', N'130631'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (159, N'河北省', N'保定市', N'安新县', N'130632'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (160, N'河北省', N'保定市', N'易县', N'130633'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (161, N'河北省', N'保定市', N'曲阳县', N'130634'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (162, N'河北省', N'保定市', N'蠡县', N'130635'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (163, N'河北省', N'保定市', N'顺平县', N'130636'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (164, N'河北省', N'保定市', N'博野县', N'130637'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (165, N'河北省', N'保定市', N'雄县', N'130638'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (166, N'河北省', N'保定市', N'涿州市', N'130681'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (167, N'河北省', N'保定市', N'定州市', N'130682'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (168, N'河北省', N'保定市', N'安国市', N'130683'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (169, N'河北省', N'保定市', N'高碑店市', N'130684'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (170, N'河北省', N'张家口市', N'市辖区', N'130701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (171, N'河北省', N'张家口市', N'桥东区', N'130702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (172, N'河北省', N'张家口市', N'桥西区', N'130703'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (173, N'河北省', N'张家口市', N'宣化区', N'130705'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (174, N'河北省', N'张家口市', N'下花园区', N'130706'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (175, N'河北省', N'张家口市', N'宣化县', N'130721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (176, N'河北省', N'张家口市', N'张北县', N'130722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (177, N'河北省', N'张家口市', N'康保县', N'130723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (178, N'河北省', N'张家口市', N'沽源县', N'130724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (179, N'河北省', N'张家口市', N'尚义县', N'130725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (180, N'河北省', N'张家口市', N'蔚县', N'130726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (181, N'河北省', N'张家口市', N'阳原县', N'130727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (182, N'河北省', N'张家口市', N'怀安县', N'130728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (183, N'河北省', N'张家口市', N'万全县', N'130729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (184, N'河北省', N'张家口市', N'怀来县', N'130730'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (185, N'河北省', N'张家口市', N'涿鹿县', N'130731'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (186, N'河北省', N'张家口市', N'赤城县', N'130732'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (187, N'河北省', N'张家口市', N'崇礼县', N'130733'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (188, N'河北省', N'承德市', N'市辖区', N'130801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (189, N'河北省', N'承德市', N'双桥区', N'130802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (190, N'河北省', N'承德市', N'双滦区', N'130803'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (191, N'河北省', N'承德市', N'鹰手营子矿区', N'130804'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (192, N'河北省', N'承德市', N'承德县', N'130821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4486, N'贵州省', N'黔南布依族苗族自治州', N'平塘县', N'522727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4487, N'贵州省', N'黔南布依族苗族自治州', N'罗甸县', N'522728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4488, N'贵州省', N'黔南布依族苗族自治州', N'长顺县', N'522729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4489, N'贵州省', N'黔南布依族苗族自治州', N'龙里县', N'522730'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4490, N'贵州省', N'黔南布依族苗族自治州', N'惠水县', N'522731'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4491, N'贵州省', N'黔南布依族苗族自治州', N'三都水族自治县', N'522732'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4492, N'云南省', N'昭通市', N'威信县', N'530629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4493, N'云南省', N'昭通市', N'水富县', N'530630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4494, N'云南省', N'昭通市', N'市辖区', N'530601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4495, N'云南省', N'昭通市', N'昭阳区', N'530602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4496, N'云南省', N'昭通市', N'鲁甸县', N'530621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4497, N'云南省', N'昭通市', N'巧家县', N'530622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4498, N'云南省', N'昭通市', N'盐津县', N'530623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4499, N'云南省', N'昭通市', N'大关县', N'530624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4500, N'云南省', N'昭通市', N'永善县', N'530625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4501, N'云南省', N'昭通市', N'绥江县', N'530626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4502, N'云南省', N'昭通市', N'镇雄县', N'530627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4503, N'云南省', N'昭通市', N'彝良县', N'530628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4504, N'云南省', N'丽江市', N'市辖区', N'530701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4505, N'云南省', N'丽江市', N'古城区', N'530702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4506, N'云南省', N'丽江市', N'玉龙纳西族自治县', N'530721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4507, N'云南省', N'丽江市', N'永胜县', N'530722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4508, N'云南省', N'丽江市', N'华坪县', N'530723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4509, N'云南省', N'丽江市', N'宁蒗彝族自治县', N'530724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4510, N'云南省', N'思茅市', N'市辖区', N'530801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4511, N'云南省', N'思茅市', N'翠云区', N'530802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4512, N'云南省', N'思茅市', N'普洱哈尼族彝族自治县', N'530821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4513, N'云南省', N'思茅市', N'墨江哈尼族自治县', N'530822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4514, N'云南省', N'思茅市', N'景东彝族自治县', N'530823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4515, N'云南省', N'思茅市', N'景谷傣族彝族自治县', N'530824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4516, N'云南省', N'思茅市', N'镇沅彝族哈尼族拉祜族自治县', N'530825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4517, N'云南省', N'思茅市', N'江城哈尼族彝族自治县', N'530826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4518, N'云南省', N'思茅市', N'孟连傣族拉祜族佤族自治县', N'530827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4519, N'云南省', N'思茅市', N'澜沧拉祜族自治县', N'530828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4520, N'云南省', N'思茅市', N'西盟佤族自治县', N'530829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4521, N'云南省', N'临沧市', N'市辖区', N'530901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4522, N'云南省', N'临沧市', N'临翔区', N'530902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4523, N'云南省', N'临沧市', N'凤庆县', N'530921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4524, N'云南省', N'临沧市', N'云县', N'530922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4525, N'云南省', N'临沧市', N'永德县', N'530923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4526, N'云南省', N'临沧市', N'镇康县', N'530924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4527, N'云南省', N'临沧市', N'双江拉祜族佤族布朗族傣族自治县', N'530925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4528, N'云南省', N'临沧市', N'耿马傣族佤族自治县', N'530926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4529, N'云南省', N'临沧市', N'沧源佤族自治县', N'530927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4530, N'云南省', N'昭通地区', N'昭通市', N'532101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4531, N'云南省', N'昭通地区', N'鲁甸县', N'532122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4532, N'云南省', N'昭通地区', N'巧家县', N'532123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4533, N'云南省', N'昭通地区', N'盐津县', N'532124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4534, N'云南省', N'昭通地区', N'大关县', N'532125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4535, N'云南省', N'昭通地区', N'永善县', N'532126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4536, N'云南省', N'昭通地区', N'绥江县', N'532127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4537, N'云南省', N'昭通地区', N'镇雄县', N'532128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4538, N'云南省', N'昭通地区', N'彝良县', N'532129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4539, N'云南省', N'昭通地区', N'威信县', N'532130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4540, N'云南省', N'昭通地区', N'水富县', N'532131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4541, N'云南省', N'曲靖地区', N'麒麟区', N'532201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4542, N'云南省', N'曲靖地区', N'曲靖县', N'532221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4543, N'云南省', N'曲靖地区', N'沾益县', N'532222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4544, N'云南省', N'曲靖地区', N'马龙县', N'532223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4545, N'云南省', N'曲靖地区', N'宣威市', N'532224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4546, N'云南省', N'曲靖地区', N'富源县', N'532225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4547, N'云南省', N'曲靖地区', N'罗平县', N'532226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4548, N'云南省', N'曲靖地区', N'师宗县', N'532227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4549, N'云南省', N'曲靖地区', N'陆良县', N'532228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4550, N'云南省', N'曲靖地区', N'宜良县', N'532229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4551, N'云南省', N'曲靖地区', N'路南彝族自治县', N'532230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4552, N'云南省', N'曲靖地区', N'寻甸回族彝族自治县', N'532231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4553, N'云南省', N'曲靖地区', N'嵩明县', N'532232'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4554, N'云南省', N'曲靖地区', N'会泽县', N'532233'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4555, N'云南省', N'楚雄彝族自治州', N'楚雄市', N'532301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4556, N'云南省', N'楚雄彝族自治州', N'楚雄县', N'532321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4557, N'云南省', N'楚雄彝族自治州', N'双柏县', N'532322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4558, N'云南省', N'楚雄彝族自治州', N'牟定县', N'532323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4559, N'云南省', N'楚雄彝族自治州', N'南华县', N'532324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4560, N'云南省', N'楚雄彝族自治州', N'姚安县', N'532325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4561, N'云南省', N'楚雄彝族自治州', N'大姚县', N'532326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4562, N'云南省', N'楚雄彝族自治州', N'永仁县', N'532327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4563, N'云南省', N'楚雄彝族自治州', N'元谋县', N'532328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4564, N'云南省', N'楚雄彝族自治州', N'武定县', N'532329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4565, N'云南省', N'楚雄彝族自治州', N'禄劝县', N'532330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4566, N'云南省', N'楚雄彝族自治州', N'禄丰县', N'532331'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4567, N'云南省', N'保山地区', N'龙陵县', N'533024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4568, N'云南省', N'保山地区', N'昌宁县', N'533025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4569, N'云南省', N'保山地区', N'保山市', N'533001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4570, N'云南省', N'保山地区', N'施甸县', N'533022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4571, N'云南省', N'保山地区', N'腾冲县', N'533023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4572, N'云南省', N'德宏傣族景颇族自治州', N'畹町市', N'533101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4573, N'云南省', N'德宏傣族景颇族自治州', N'瑞丽市', N'533102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4574, N'云南省', N'德宏傣族景颇族自治州', N'潞西市', N'533103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4575, N'云南省', N'德宏傣族景颇族自治州', N'潞西县', N'533121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4576, N'云南省', N'德宏傣族景颇族自治州', N'梁河县', N'533122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4577, N'云南省', N'德宏傣族景颇族自治州', N'盈江县', N'533123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4578, N'云南省', N'德宏傣族景颇族自治州', N'陇川县', N'533124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4579, N'云南省', N'德宏傣族景颇族自治州', N'瑞丽县', N'533125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4580, N'云南省', N'德宏傣族景颇族自治州', N'畹町镇', N'533126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4581, N'云南省', N'丽江地区', N'丽江纳西族自治县', N'533221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4582, N'云南省', N'丽江地区', N'永胜县', N'533222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4583, N'云南省', N'丽江地区', N'华坪县', N'533223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4584, N'云南省', N'丽江地区', N'宁蒗彝族自治县', N'533224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4585, N'云南省', N'怒江傈僳族自治州', N'泸水县', N'533321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4586, N'云南省', N'怒江傈僳族自治州', N'碧江县', N'533322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4587, N'云南省', N'怒江傈僳族自治州', N'福贡县', N'533323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4588, N'云南省', N'怒江傈僳族自治州', N'贡山独龙族怒族自治县', N'533324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4589, N'云南省', N'怒江傈僳族自治州', N'兰坪白族普米族自治县', N'533325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4590, N'云南省', N'昆明市', N'市辖区', N'530101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4591, N'云南省', N'昆明市', N'五华区', N'530102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4592, N'云南省', N'昆明市', N'盘龙区', N'530103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4593, N'云南省', N'昆明市', N'官渡区', N'530111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4594, N'云南省', N'昆明市', N'西山区', N'530112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4595, N'云南省', N'昆明市', N'东川区', N'530113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4596, N'云南省', N'昆明市', N'呈贡县', N'530121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4597, N'云南省', N'昆明市', N'晋宁县', N'530122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4598, N'云南省', N'昆明市', N'安宁县', N'530123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4599, N'云南省', N'昆明市', N'富民县', N'530124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4600, N'云南省', N'昆明市', N'宜良县', N'530125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4601, N'云南省', N'昆明市', N'石林彝族自治县', N'530126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4602, N'云南省', N'昆明市', N'嵩明县', N'530127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4603, N'云南省', N'昆明市', N'禄劝彝族苗族自治县', N'530128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4604, N'云南省', N'昆明市', N'寻甸回族彝族自治县', N'530129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4605, N'云南省', N'昆明市', N'安宁市', N'530181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4606, N'云南省', N'曲靖市', N'市辖区', N'530301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4607, N'云南省', N'曲靖市', N'麒麟区', N'530302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4608, N'云南省', N'曲靖市', N'马龙县', N'530321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4609, N'云南省', N'曲靖市', N'陆良县', N'530322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4610, N'云南省', N'曲靖市', N'师宗县', N'530323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4611, N'云南省', N'曲靖市', N'罗平县', N'530324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4612, N'云南省', N'曲靖市', N'富源县', N'530325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4613, N'云南省', N'曲靖市', N'会泽县', N'530326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4614, N'云南省', N'曲靖市', N'沾益县', N'530328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4615, N'云南省', N'曲靖市', N'宣威市', N'530381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4616, N'云南省', N'玉溪市', N'市辖区', N'530401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4617, N'云南省', N'玉溪市', N'红塔区', N'530402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4618, N'云南省', N'玉溪市', N'江川县', N'530421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4619, N'云南省', N'玉溪市', N'澄江县', N'530422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4620, N'云南省', N'玉溪市', N'通海县', N'530423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4621, N'云南省', N'玉溪市', N'华宁县', N'530424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4622, N'云南省', N'玉溪市', N'易门县', N'530425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4623, N'云南省', N'玉溪市', N'峨山彝族自治县', N'530426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4624, N'云南省', N'玉溪市', N'新平彝族傣族自治县', N'530427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4625, N'云南省', N'玉溪市', N'元江哈尼族彝族傣族自治县', N'530428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4626, N'云南省', N'保山市', N'市辖区', N'530501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4627, N'云南省', N'保山市', N'隆阳区', N'530502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4628, N'云南省', N'保山市', N'施甸县', N'530521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4629, N'云南省', N'保山市', N'腾冲县', N'530522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4630, N'云南省', N'保山市', N'龙陵县', N'530523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4631, N'云南省', N'保山市', N'昌宁县', N'530524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4632, N'云南省', N'玉溪地区', N'玉溪市', N'532401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4633, N'云南省', N'玉溪地区', N'玉溪县', N'532421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4634, N'云南省', N'玉溪地区', N'江川县', N'532422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4635, N'云南省', N'玉溪地区', N'澄江县', N'532423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4636, N'云南省', N'玉溪地区', N'通海县', N'532424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4637, N'云南省', N'玉溪地区', N'华宁县', N'532425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4638, N'云南省', N'玉溪地区', N'易门县', N'532426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4639, N'云南省', N'玉溪地区', N'峨山彝族自治县', N'532427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4640, N'云南省', N'玉溪地区', N'新平彝族傣族自治县', N'532428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4641, N'云南省', N'玉溪地区', N'元江哈尼族彝族傣族自治县', N'532429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4642, N'云南省', N'红河哈尼族彝族自治州', N'个旧市', N'532501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4643, N'云南省', N'红河哈尼族彝族自治州', N'开远市', N'532502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4644, N'云南省', N'红河哈尼族彝族自治州', N'蒙自县', N'532522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4645, N'云南省', N'红河哈尼族彝族自治州', N'屏边苗族自治县', N'532523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4646, N'云南省', N'红河哈尼族彝族自治州', N'建水县', N'532524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4647, N'云南省', N'红河哈尼族彝族自治州', N'石屏县', N'532525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4648, N'云南省', N'红河哈尼族彝族自治州', N'弥勒县', N'532526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4649, N'云南省', N'红河哈尼族彝族自治州', N'泸西县', N'532527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4650, N'云南省', N'红河哈尼族彝族自治州', N'元阳县', N'532528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4651, N'云南省', N'红河哈尼族彝族自治州', N'红河县', N'532529'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4652, N'云南省', N'红河哈尼族彝族自治州', N'金平苗族瑶族傣族自治县', N'532530'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4653, N'云南省', N'红河哈尼族彝族自治州', N'绿春县', N'532531'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4654, N'云南省', N'红河哈尼族彝族自治州', N'河口瑶族自治县', N'532532'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4655, N'云南省', N'文山壮族苗族自治州', N'文山县', N'532621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4656, N'云南省', N'文山壮族苗族自治州', N'砚山县', N'532622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4657, N'云南省', N'文山壮族苗族自治州', N'西畴县', N'532623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4658, N'云南省', N'文山壮族苗族自治州', N'麻栗坡县', N'532624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4659, N'云南省', N'文山壮族苗族自治州', N'马关县', N'532625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4660, N'云南省', N'文山壮族苗族自治州', N'丘北县', N'532626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4661, N'云南省', N'文山壮族苗族自治州', N'广南县', N'532627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4662, N'云南省', N'文山壮族苗族自治州', N'富宁县', N'532628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4663, N'云南省', N'思茅地区', N'思茅市', N'532701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4664, N'云南省', N'思茅地区', N'普洱哈尼族彝族自治县', N'532722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4665, N'云南省', N'思茅地区', N'墨江哈尼族自治县', N'532723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4666, N'云南省', N'思茅地区', N'景东彝族自治县', N'532724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4667, N'云南省', N'思茅地区', N'景谷傣族彝族自治县', N'532725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4668, N'云南省', N'思茅地区', N'镇沅彝族哈尼族拉祜族自治县', N'532726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4669, N'云南省', N'思茅地区', N'江城哈尼族彝族自治县', N'532727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4670, N'云南省', N'思茅地区', N'孟连傣族拉祜族佤族自治县', N'532728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4671, N'云南省', N'思茅地区', N'澜沧拉祜族自治县', N'532729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4672, N'云南省', N'思茅地区', N'西盟佤族自治县', N'532730'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4673, N'云南省', N'西双版纳傣族自治州', N'景洪市', N'532801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4674, N'云南省', N'西双版纳傣族自治州', N'勐海县', N'532822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4675, N'云南省', N'西双版纳傣族自治州', N'勐腊县', N'532823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4676, N'云南省', N'大理白族自治州', N'大理市', N'532901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4677, N'云南省', N'大理白族自治州', N'漾濞彝族自治县', N'532922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4678, N'云南省', N'大理白族自治州', N'祥云县', N'532923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4679, N'云南省', N'大理白族自治州', N'宾川县', N'532924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4680, N'云南省', N'大理白族自治州', N'弥渡县', N'532925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4681, N'云南省', N'大理白族自治州', N'南涧彝族自治县', N'532926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4682, N'云南省', N'大理白族自治州', N'巍山彝族回族自治县', N'532927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4683, N'云南省', N'大理白族自治州', N'永平县', N'532928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4684, N'云南省', N'大理白族自治州', N'云龙县', N'532929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4685, N'云南省', N'大理白族自治州', N'洱源县', N'532930'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4686, N'云南省', N'大理白族自治州', N'剑川县', N'532931'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4687, N'云南省', N'大理白族自治州', N'鹤庆县', N'532932'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4688, N'云南省', N'迪庆藏族自治州', N'香格里拉县', N'533421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4689, N'云南省', N'迪庆藏族自治州', N'德钦县', N'533422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4690, N'云南省', N'迪庆藏族自治州', N'维西傈僳族自治县', N'533423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4691, N'云南省', N'临沧地区', N'临沧县', N'533521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4692, N'云南省', N'临沧地区', N'凤庆县', N'533522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4693, N'云南省', N'临沧地区', N'云县', N'533523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4694, N'云南省', N'临沧地区', N'永德县', N'533524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4695, N'云南省', N'临沧地区', N'彭水苗族土家族自治县', N'533525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4696, N'云南省', N'临沧地区', N'双江拉祜族佤族布朗族傣族自治县', N'533526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4697, N'云南省', N'临沧地区', N'耿马傣族佤族自治县', N'533527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4698, N'云南省', N'临沧地区', N'沧源佤族自治县', N'533528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4699, N'西藏自治区', N'山南地区', N'乃东县', N'542221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4700, N'西藏自治区', N'山南地区', N'扎囊县', N'542222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4701, N'西藏自治区', N'山南地区', N'贡嘎县', N'542223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4702, N'西藏自治区', N'山南地区', N'桑日县', N'542224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4703, N'西藏自治区', N'山南地区', N'琼结县', N'542225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4704, N'西藏自治区', N'山南地区', N'曲松县', N'542226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4705, N'西藏自治区', N'山南地区', N'措美县', N'542227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4706, N'西藏自治区', N'山南地区', N'洛扎县', N'542228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4707, N'西藏自治区', N'山南地区', N'加查县', N'542229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4708, N'西藏自治区', N'山南地区', N'朗县', N'542230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4709, N'西藏自治区', N'山南地区', N'隆子县', N'542231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4710, N'西藏自治区', N'山南地区', N'错那县', N'542232'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4711, N'西藏自治区', N'山南地区', N'浪卡子县', N'542233'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4712, N'西藏自治区', N'日喀则地区', N'日喀则市', N'542301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4713, N'西藏自治区', N'日喀则地区', N'日喀则县', N'542321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4714, N'西藏自治区', N'日喀则地区', N'南木林县', N'542322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4715, N'西藏自治区', N'日喀则地区', N'江孜县', N'542323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4716, N'西藏自治区', N'日喀则地区', N'定日县', N'542324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4717, N'西藏自治区', N'日喀则地区', N'萨迦县', N'542325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4718, N'西藏自治区', N'日喀则地区', N'拉孜县', N'542326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4719, N'西藏自治区', N'日喀则地区', N'昂仁县', N'542327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4720, N'西藏自治区', N'日喀则地区', N'谢通门县', N'542328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4721, N'西藏自治区', N'日喀则地区', N'白朗县', N'542329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4722, N'西藏自治区', N'日喀则地区', N'仁布县', N'542330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4723, N'西藏自治区', N'日喀则地区', N'康马县', N'542331'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4724, N'西藏自治区', N'日喀则地区', N'定结县', N'542332'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4725, N'西藏自治区', N'日喀则地区', N'仲巴县', N'542333'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4726, N'西藏自治区', N'日喀则地区', N'亚东县', N'542334'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4727, N'西藏自治区', N'日喀则地区', N'吉隆县', N'542335'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4728, N'西藏自治区', N'日喀则地区', N'聂拉木县', N'542336'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4729, N'西藏自治区', N'日喀则地区', N'萨嘎县', N'542337'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4730, N'西藏自治区', N'日喀则地区', N'岗巴县', N'542338'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4731, N'西藏自治区', N'那曲地区', N'那曲县', N'542421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4732, N'西藏自治区', N'那曲地区', N'嘉黎县', N'542422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4733, N'西藏自治区', N'那曲地区', N'比如县', N'542423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4734, N'西藏自治区', N'那曲地区', N'聂荣县', N'542424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4735, N'西藏自治区', N'那曲地区', N'安多县', N'542425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4736, N'西藏自治区', N'那曲地区', N'申扎县', N'542426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4737, N'西藏自治区', N'那曲地区', N'索县', N'542427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4738, N'西藏自治区', N'那曲地区', N'班戈县', N'542428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4739, N'西藏自治区', N'那曲地区', N'巴青县', N'542429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4740, N'西藏自治区', N'那曲地区', N'尼玛县', N'542430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4741, N'西藏自治区', N'拉萨市', N'市辖区', N'540101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4742, N'西藏自治区', N'拉萨市', N'城关区', N'540102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4743, N'西藏自治区', N'拉萨市', N'市区', N'540120'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4744, N'西藏自治区', N'拉萨市', N'林周县', N'540121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4745, N'西藏自治区', N'拉萨市', N'当雄县', N'540122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4746, N'西藏自治区', N'拉萨市', N'尼木县', N'540123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4747, N'西藏自治区', N'拉萨市', N'曲水县', N'540124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4748, N'西藏自治区', N'拉萨市', N'堆龙德庆县', N'540125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4749, N'西藏自治区', N'拉萨市', N'达孜县', N'540126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4750, N'西藏自治区', N'拉萨市', N'墨竹工卡县', N'540127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4751, N'西藏自治区', N'拉萨市', N'工布江达县', N'540128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4752, N'西藏自治区', N'拉萨市', N'林芝县', N'540129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4753, N'西藏自治区', N'拉萨市', N'米林县', N'540130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4754, N'西藏自治区', N'拉萨市', N'墨脱县', N'540131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4755, N'西藏自治区', N'昌都地区', N'昌都县', N'542121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4756, N'西藏自治区', N'昌都地区', N'江达县', N'542122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4757, N'西藏自治区', N'昌都地区', N'贡觉县', N'542123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4758, N'西藏自治区', N'昌都地区', N'类乌齐县', N'542124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4759, N'西藏自治区', N'昌都地区', N'丁青县', N'542125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4760, N'西藏自治区', N'昌都地区', N'察雅县', N'542126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4761, N'西藏自治区', N'昌都地区', N'八宿县', N'542127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4762, N'西藏自治区', N'昌都地区', N'左贡县', N'542128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4763, N'西藏自治区', N'昌都地区', N'芒康县', N'542129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4764, N'西藏自治区', N'昌都地区', N'洛隆县', N'542132'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4765, N'西藏自治区', N'昌都地区', N'边坝县', N'542133'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4766, N'西藏自治区', N'昌都地区', N'盐井县', N'542134'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4767, N'西藏自治区', N'昌都地区', N'碧土县', N'542135'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4768, N'西藏自治区', N'昌都地区', N'妥坝县', N'542136'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4769, N'西藏自治区', N'昌都地区', N'生达县', N'542137'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4770, N'西藏自治区', N'阿里地区', N'普兰县', N'542521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4771, N'西藏自治区', N'阿里地区', N'札达县', N'542522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4772, N'西藏自治区', N'阿里地区', N'噶尔县', N'542523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4773, N'西藏自治区', N'阿里地区', N'日土县', N'542524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4774, N'西藏自治区', N'阿里地区', N'革吉县', N'542525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4775, N'西藏自治区', N'阿里地区', N'改则县', N'542526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4776, N'西藏自治区', N'阿里地区', N'措勤县', N'542527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4777, N'西藏自治区', N'阿里地区', N'隆格尔县', N'542528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4778, N'西藏自治区', N'林芝地区', N'林芝县', N'542621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4779, N'西藏自治区', N'林芝地区', N'工布江达县', N'542622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4780, N'西藏自治区', N'林芝地区', N'米林县', N'542623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4781, N'西藏自治区', N'林芝地区', N'墨脱县', N'542624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4782, N'西藏自治区', N'林芝地区', N'波密县', N'542625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4783, N'西藏自治区', N'林芝地区', N'察隅县', N'542626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4784, N'西藏自治区', N'林芝地区', N'朗县', N'542627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4785, N'西藏自治区', N'江孜地区', N'江孜县', N'542721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4786, N'西藏自治区', N'江孜地区', N'浪卡子县', N'542722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4787, N'西藏自治区', N'江孜地区', N'白朗县', N'542723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4788, N'西藏自治区', N'江孜地区', N'仁布县', N'542724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4789, N'西藏自治区', N'江孜地区', N'康马县', N'542725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4790, N'西藏自治区', N'江孜地区', N'亚东县', N'542726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4791, N'西藏自治区', N'江孜地区', N'岗巴县', N'542727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4792, N'陕西省', N'西安市', N'市辖区', N'610101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4793, N'陕西省', N'西安市', N'新城区', N'610102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4794, N'陕西省', N'西安市', N'碑林区', N'610103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4795, N'陕西省', N'西安市', N'莲湖区', N'610104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4796, N'陕西省', N'西安市', N'经济开发区', N'610106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4797, N'陕西省', N'西安市', N'灞桥区', N'610111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4798, N'陕西省', N'西安市', N'未央区', N'610112'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4799, N'陕西省', N'西安市', N'雁塔区', N'610113'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4800, N'陕西省', N'西安市', N'阎良区', N'610114'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4801, N'陕西省', N'西安市', N'临潼区', N'610115'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4802, N'陕西省', N'西安市', N'长安区', N'610116'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4803, N'陕西省', N'西安市', N'长安县', N'610121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4804, N'陕西省', N'西安市', N'蓝田县', N'610122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4805, N'陕西省', N'西安市', N'临潼县', N'610123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4806, N'陕西省', N'西安市', N'周至县', N'610124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4807, N'陕西省', N'西安市', N'户县', N'610125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4808, N'陕西省', N'西安市', N'高陵县', N'610126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4809, N'陕西省', N'安康市', N'镇坪县', N'610927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4810, N'陕西省', N'安康市', N'旬阳县', N'610928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4811, N'陕西省', N'安康市', N'白河县', N'610929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4812, N'陕西省', N'安康市', N'市辖区', N'610901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4813, N'陕西省', N'安康市', N'汉滨区', N'610902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4814, N'陕西省', N'安康市', N'汉阴县', N'610921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4815, N'陕西省', N'安康市', N'石泉县', N'610922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4816, N'陕西省', N'安康市', N'宁陕县', N'610923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4817, N'陕西省', N'安康市', N'紫阳县', N'610924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4818, N'陕西省', N'安康市', N'岚皋县', N'610925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4819, N'陕西省', N'安康市', N'平利县', N'610926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4820, N'陕西省', N'商洛市', N'市辖区', N'611001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4821, N'陕西省', N'商洛市', N'商州区', N'611002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4822, N'陕西省', N'商洛市', N'洛南县', N'611021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4823, N'陕西省', N'商洛市', N'丹凤县', N'611022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4824, N'陕西省', N'商洛市', N'商南县', N'611023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4825, N'陕西省', N'商洛市', N'山阳县', N'611024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4826, N'陕西省', N'商洛市', N'镇安县', N'611025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4827, N'陕西省', N'商洛市', N'柞水县', N'611026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4828, N'陕西省', N'渭南地区', N'渭南市', N'612101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4829, N'陕西省', N'渭南地区', N'韩城市', N'612102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4830, N'陕西省', N'渭南地区', N'华阴市', N'612103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4831, N'陕西省', N'渭南地区', N'蓝田县', N'612121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4832, N'陕西省', N'渭南地区', N'临潼县', N'612122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4833, N'陕西省', N'渭南地区', N'渭南县', N'612123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4834, N'陕西省', N'渭南地区', N'华县', N'612124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4835, N'陕西省', N'渭南地区', N'华阴县', N'612125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4836, N'陕西省', N'渭南地区', N'潼关县', N'612126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4837, N'陕西省', N'渭南地区', N'大荔县', N'612127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4838, N'陕西省', N'渭南地区', N'蒲城县', N'612128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4839, N'陕西省', N'渭南地区', N'澄城县', N'612129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4840, N'陕西省', N'渭南地区', N'白水县', N'612130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4841, N'陕西省', N'渭南地区', N'韩城县', N'612131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4842, N'陕西省', N'渭南地区', N'合阳县', N'612132'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4843, N'陕西省', N'渭南地区', N'富平县', N'612133'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4844, N'陕西省', N'咸阳地区', N'咸阳市', N'612201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4845, N'陕西省', N'咸阳地区', N'兴平县', N'612221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4846, N'陕西省', N'咸阳地区', N'周至县', N'612222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4847, N'陕西省', N'咸阳地区', N'户县', N'612223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4848, N'陕西省', N'咸阳地区', N'三原县', N'612224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4849, N'陕西省', N'咸阳地区', N'泾阳县', N'612225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4850, N'陕西省', N'咸阳地区', N'高陵县', N'612226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4851, N'陕西省', N'咸阳地区', N'乾县', N'612227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4852, N'陕西省', N'咸阳地区', N'礼泉县', N'612228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4853, N'陕西省', N'咸阳地区', N'永寿县', N'612229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4854, N'陕西省', N'咸阳地区', N'彬县', N'612230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4855, N'陕西省', N'咸阳地区', N'长武县', N'612231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4856, N'陕西省', N'咸阳地区', N'旬邑县', N'612232'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4857, N'陕西省', N'咸阳地区', N'淳化县', N'612233'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4858, N'陕西省', N'汉中地区', N'汉中市', N'612301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4859, N'陕西省', N'汉中地区', N'南郑县', N'612321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4860, N'陕西省', N'汉中地区', N'城固县', N'612322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4861, N'陕西省', N'汉中地区', N'洋县', N'612323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4862, N'陕西省', N'汉中地区', N'西乡县', N'612324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4863, N'陕西省', N'汉中地区', N'勉县', N'612325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4864, N'陕西省', N'汉中地区', N'宁强县', N'612326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4865, N'陕西省', N'汉中地区', N'略阳县', N'612327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4866, N'陕西省', N'汉中地区', N'镇巴县', N'612328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4867, N'陕西省', N'汉中地区', N'留坝县', N'612329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4868, N'陕西省', N'汉中地区', N'佛坪县', N'612330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4869, N'陕西省', N'安康地区', N'安康市', N'612401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4870, N'陕西省', N'安康地区', N'安康县', N'612421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4871, N'陕西省', N'安康地区', N'汉阴县', N'612422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4872, N'陕西省', N'安康地区', N'石泉县', N'612423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4873, N'陕西省', N'安康地区', N'宁陕县', N'612424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4874, N'陕西省', N'安康地区', N'紫阳县', N'612425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4875, N'陕西省', N'安康地区', N'岚皋县', N'612426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4876, N'陕西省', N'安康地区', N'平利县', N'612427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4877, N'陕西省', N'安康地区', N'镇坪县', N'612428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4878, N'陕西省', N'安康地区', N'旬阳县', N'612429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4879, N'陕西省', N'安康地区', N'白河县', N'612430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4880, N'陕西省', N'铜川市', N'市辖区', N'610201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4881, N'陕西省', N'铜川市', N'城区', N'610202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4882, N'陕西省', N'铜川市', N'郊区', N'610203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4883, N'陕西省', N'铜川市', N'耀州区', N'610204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4884, N'陕西省', N'铜川市', N'市区', N'610220'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4885, N'陕西省', N'铜川市', N'耀县', N'610221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4886, N'陕西省', N'铜川市', N'宜君县', N'610222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4887, N'陕西省', N'宝鸡市', N'市辖区', N'610301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4888, N'陕西省', N'宝鸡市', N'渭滨区', N'610302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4889, N'陕西省', N'宝鸡市', N'金台区', N'610303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4890, N'陕西省', N'宝鸡市', N'陈仓区', N'610304'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4891, N'陕西省', N'宝鸡市', N'市区', N'610320'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4892, N'陕西省', N'宝鸡市', N'宝鸡县', N'610321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4893, N'陕西省', N'宝鸡市', N'凤翔县', N'610322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4894, N'陕西省', N'宝鸡市', N'岐山县', N'610323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4895, N'陕西省', N'宝鸡市', N'扶风县', N'610324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4896, N'陕西省', N'宝鸡市', N'武功县', N'610325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4897, N'陕西省', N'宝鸡市', N'眉县', N'610326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4898, N'陕西省', N'宝鸡市', N'陇县', N'610327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4899, N'陕西省', N'宝鸡市', N'千阳县', N'610328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4900, N'陕西省', N'宝鸡市', N'麟游县', N'610329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4901, N'陕西省', N'宝鸡市', N'凤县', N'610330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4902, N'陕西省', N'宝鸡市', N'太白县', N'610331'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4903, N'陕西省', N'咸阳市', N'市辖区', N'610401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4904, N'陕西省', N'咸阳市', N'秦都区', N'610402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4905, N'陕西省', N'咸阳市', N'杨陵区', N'610403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4906, N'陕西省', N'咸阳市', N'渭城区', N'610404'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4907, N'陕西省', N'咸阳市', N'兴平县', N'610421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4908, N'陕西省', N'咸阳市', N'三原县', N'610422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4909, N'陕西省', N'咸阳市', N'泾阳县', N'610423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4910, N'陕西省', N'咸阳市', N'乾县', N'610424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4911, N'陕西省', N'咸阳市', N'礼泉县', N'610425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4912, N'陕西省', N'咸阳市', N'永寿县', N'610426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4913, N'陕西省', N'咸阳市', N'彬县', N'610427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4914, N'陕西省', N'咸阳市', N'长武县', N'610428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4915, N'陕西省', N'咸阳市', N'旬邑县', N'610429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4916, N'陕西省', N'咸阳市', N'淳化县', N'610430'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4917, N'陕西省', N'咸阳市', N'武功县', N'610431'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4918, N'陕西省', N'咸阳市', N'兴平市', N'610481'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4919, N'陕西省', N'渭南市', N'市辖区', N'610501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4920, N'陕西省', N'渭南市', N'临渭区', N'610502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4921, N'陕西省', N'渭南市', N'华县', N'610521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4922, N'陕西省', N'渭南市', N'潼关县', N'610522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4923, N'陕西省', N'渭南市', N'大荔县', N'610523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4924, N'陕西省', N'渭南市', N'合阳县', N'610524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4925, N'陕西省', N'渭南市', N'澄城县', N'610525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4926, N'陕西省', N'渭南市', N'蒲城县', N'610526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4927, N'陕西省', N'渭南市', N'白水县', N'610527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4928, N'陕西省', N'渭南市', N'富平县', N'610528'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4929, N'陕西省', N'渭南市', N'韩城市', N'610581'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4930, N'陕西省', N'渭南市', N'华阴市', N'610582'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4931, N'陕西省', N'延安市', N'市辖区', N'610601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4932, N'陕西省', N'延安市', N'宝塔区', N'610602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4933, N'陕西省', N'延安市', N'延长县', N'610621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4934, N'陕西省', N'延安市', N'延川县', N'610622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4935, N'陕西省', N'延安市', N'子长县', N'610623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4936, N'陕西省', N'延安市', N'安塞县', N'610624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4937, N'陕西省', N'延安市', N'志丹县', N'610625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4938, N'陕西省', N'延安市', N'吴起县', N'610626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4939, N'陕西省', N'延安市', N'甘泉县', N'610627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4940, N'陕西省', N'延安市', N'富县', N'610628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4941, N'陕西省', N'延安市', N'洛川县', N'610629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4942, N'陕西省', N'延安市', N'宜川县', N'610630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4943, N'陕西省', N'延安市', N'黄龙县', N'610631'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4944, N'陕西省', N'延安市', N'黄陵县', N'610632'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4945, N'陕西省', N'汉中市', N'市辖区', N'610701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4946, N'陕西省', N'汉中市', N'汉台区', N'610702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4947, N'陕西省', N'汉中市', N'南郑县', N'610721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4948, N'陕西省', N'汉中市', N'城固县', N'610722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4949, N'陕西省', N'汉中市', N'洋县', N'610723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4950, N'陕西省', N'汉中市', N'西乡县', N'610724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4951, N'陕西省', N'汉中市', N'勉县', N'610725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4952, N'陕西省', N'汉中市', N'宁强县', N'610726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4953, N'陕西省', N'汉中市', N'略阳县', N'610727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4954, N'陕西省', N'汉中市', N'镇巴县', N'610728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4955, N'陕西省', N'汉中市', N'留坝县', N'610729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4956, N'陕西省', N'汉中市', N'佛坪县', N'610730'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4957, N'陕西省', N'榆林市', N'市辖区', N'610801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4958, N'陕西省', N'榆林市', N'榆阳区', N'610802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4959, N'陕西省', N'榆林市', N'神木县', N'610821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4960, N'陕西省', N'榆林市', N'府谷县', N'610822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4961, N'陕西省', N'榆林市', N'横山县', N'610823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4962, N'陕西省', N'榆林市', N'靖边县', N'610824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4963, N'陕西省', N'榆林市', N'定边县', N'610825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4964, N'陕西省', N'榆林市', N'绥德县', N'610826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4965, N'陕西省', N'榆林市', N'米脂县', N'610827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4966, N'陕西省', N'榆林市', N'佳县', N'610828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4967, N'陕西省', N'榆林市', N'吴堡县', N'610829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4968, N'陕西省', N'榆林市', N'清涧县', N'610830'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4969, N'陕西省', N'榆林市', N'子洲县', N'610831'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4970, N'陕西省', N'商洛地区', N'商州市', N'612501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4971, N'陕西省', N'商洛地区', N'洛南县', N'612522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4972, N'陕西省', N'商洛地区', N'丹凤县', N'612523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4973, N'陕西省', N'商洛地区', N'商南县', N'612524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4974, N'陕西省', N'商洛地区', N'山阳县', N'612525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4975, N'陕西省', N'商洛地区', N'镇安县', N'612526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4976, N'陕西省', N'商洛地区', N'柞水县', N'612527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4977, N'陕西省', N'延安地区', N'延安市', N'612601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4978, N'陕西省', N'延安地区', N'延长县', N'612621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4979, N'陕西省', N'延安地区', N'延川县', N'612622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4980, N'陕西省', N'延安地区', N'子长县', N'612623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4981, N'陕西省', N'延安地区', N'安塞县', N'612624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4982, N'陕西省', N'延安地区', N'志丹县', N'612625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4983, N'陕西省', N'延安地区', N'吴旗县', N'612626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4984, N'陕西省', N'延安地区', N'甘泉县', N'612627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4985, N'陕西省', N'延安地区', N'富县', N'612628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4986, N'陕西省', N'延安地区', N'洛川县', N'612629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4987, N'陕西省', N'延安地区', N'宜川县', N'612630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4988, N'陕西省', N'延安地区', N'黄龙县', N'612631'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4989, N'陕西省', N'延安地区', N'黄陵县', N'612632'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4990, N'陕西省', N'延安地区', N'宜君县', N'612633'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4991, N'陕西省', N'榆林地区', N'榆林市', N'612701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4992, N'陕西省', N'榆林地区', N'榆林县', N'612721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4993, N'陕西省', N'榆林地区', N'神木县', N'612722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4994, N'陕西省', N'榆林地区', N'府谷县', N'612723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4995, N'陕西省', N'榆林地区', N'横山县', N'612724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4996, N'陕西省', N'榆林地区', N'靖边县', N'612725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4997, N'陕西省', N'榆林地区', N'定边县', N'612726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4998, N'陕西省', N'榆林地区', N'绥德县', N'612727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (4999, N'陕西省', N'榆林地区', N'米脂县', N'612728'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5000, N'陕西省', N'榆林地区', N'佳县', N'612729'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5001, N'陕西省', N'榆林地区', N'吴堡县', N'612730'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5002, N'陕西省', N'榆林地区', N'清涧县', N'612731'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5003, N'陕西省', N'榆林地区', N'子洲县', N'612732'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5004, N'甘肃省', N'平凉市', N'庄浪县', N'620825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5005, N'甘肃省', N'平凉市', N'静宁县', N'620826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5006, N'甘肃省', N'平凉市', N'市辖区', N'620801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5007, N'甘肃省', N'平凉市', N'崆峒区', N'620802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5008, N'甘肃省', N'平凉市', N'泾川县', N'620821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5009, N'甘肃省', N'平凉市', N'灵台县', N'620822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5010, N'甘肃省', N'平凉市', N'崇信县', N'620823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5011, N'甘肃省', N'平凉市', N'华亭县', N'620824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5012, N'甘肃省', N'酒泉市', N'市辖区', N'620901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5013, N'甘肃省', N'酒泉市', N'肃州区', N'620902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5014, N'甘肃省', N'酒泉市', N'金塔县', N'620921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5015, N'甘肃省', N'酒泉市', N'瓜州县', N'620922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5016, N'甘肃省', N'酒泉市', N'肃北蒙古族自治县', N'620923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5017, N'甘肃省', N'酒泉市', N'阿克塞哈萨克族自治县', N'620924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5018, N'甘肃省', N'酒泉市', N'玉门市', N'620981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5019, N'甘肃省', N'酒泉市', N'敦煌市', N'620982'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5020, N'甘肃省', N'庆阳市', N'市辖区', N'621001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5021, N'甘肃省', N'庆阳市', N'西峰区', N'621002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5022, N'甘肃省', N'庆阳市', N'庆城县', N'621021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5023, N'甘肃省', N'庆阳市', N'环县', N'621022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5024, N'甘肃省', N'庆阳市', N'华池县', N'621023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5025, N'甘肃省', N'庆阳市', N'合水县', N'621024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5026, N'甘肃省', N'庆阳市', N'正宁县', N'621025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5027, N'甘肃省', N'庆阳市', N'宁县', N'621026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5028, N'甘肃省', N'庆阳市', N'镇原县', N'621027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5029, N'甘肃省', N'定西市', N'市辖区', N'621101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5030, N'甘肃省', N'定西市', N'安定区', N'621102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5031, N'甘肃省', N'定西市', N'通渭县', N'621121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5032, N'甘肃省', N'定西市', N'陇西县', N'621122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5033, N'甘肃省', N'定西市', N'渭源县', N'621123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5034, N'甘肃省', N'定西市', N'临洮县', N'621124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5035, N'甘肃省', N'定西市', N'漳县', N'621125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5036, N'甘肃省', N'定西市', N'岷县', N'621126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5037, N'甘肃省', N'陇南市', N'市辖区', N'621201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5038, N'甘肃省', N'陇南市', N'武都区', N'621202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5039, N'甘肃省', N'陇南市', N'成县', N'621221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5040, N'甘肃省', N'陇南市', N'文县', N'621222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5041, N'甘肃省', N'陇南市', N'宕昌县', N'621223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5042, N'甘肃省', N'陇南市', N'康县', N'621224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5043, N'甘肃省', N'陇南市', N'西和县', N'621225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5044, N'甘肃省', N'陇南市', N'礼县', N'621226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5045, N'甘肃省', N'陇南市', N'徽县', N'621227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5046, N'甘肃省', N'陇南市', N'两当县', N'621228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5047, N'甘肃省', N'酒泉地区', N'玉门市', N'622101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5048, N'甘肃省', N'酒泉地区', N'酒泉市', N'622102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5049, N'甘肃省', N'酒泉地区', N'敦煌市', N'622103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5050, N'甘肃省', N'酒泉地区', N'金塔县', N'622123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5051, N'甘肃省', N'酒泉地区', N'肃北蒙古族自治县', N'622124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5052, N'甘肃省', N'酒泉地区', N'阿克塞哈萨克族自治县', N'622125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5053, N'甘肃省', N'酒泉地区', N'安西县', N'622126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5054, N'甘肃省', N'张掖地区', N'张掖市', N'622201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5055, N'甘肃省', N'张掖地区', N'肃南裕固族自治县', N'622222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5056, N'甘肃省', N'张掖地区', N'民乐县', N'622223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5057, N'甘肃省', N'张掖地区', N'临泽县', N'622224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5058, N'甘肃省', N'张掖地区', N'高台县', N'622225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5059, N'甘肃省', N'张掖地区', N'山丹县', N'622226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5060, N'甘肃省', N'武威地区', N'武威市', N'622301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5061, N'甘肃省', N'武威地区', N'民勤县', N'622322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5062, N'甘肃省', N'武威地区', N'古浪县', N'622323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5063, N'甘肃省', N'武威地区', N'天祝藏族自治县', N'622326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5064, N'甘肃省', N'武威地区', N'连古城国家级自然保护区管理局', N'622327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5065, N'甘肃省', N'武威地区', N'石羊河林业总场', N'622328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5066, N'甘肃省', N'武威地区', N'苏武山林场', N'622329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5067, N'甘肃省', N'定西地区', N'定西县', N'622421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5068, N'甘肃省', N'定西地区', N'通渭县', N'622424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5069, N'甘肃省', N'定西地区', N'陇西县', N'622425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5070, N'甘肃省', N'定西地区', N'渭源县', N'622426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5071, N'甘肃省', N'定西地区', N'临洮县', N'622427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5072, N'甘肃省', N'定西地区', N'漳县', N'622428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5073, N'甘肃省', N'定西地区', N'岷县', N'622429'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5074, N'甘肃省', N'陇南地区', N'武都县', N'622621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5075, N'甘肃省', N'陇南地区', N'宕昌县', N'622623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5076, N'甘肃省', N'陇南地区', N'成县', N'622624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5077, N'甘肃省', N'陇南地区', N'康县', N'622625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5078, N'甘肃省', N'陇南地区', N'文县', N'622626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5079, N'甘肃省', N'陇南地区', N'西和县', N'622627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5080, N'甘肃省', N'陇南地区', N'礼县', N'622628'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5081, N'甘肃省', N'陇南地区', N'两当县', N'622629'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5082, N'甘肃省', N'陇南地区', N'徽县', N'622630'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5083, N'甘肃省', N'平凉地区', N'平凉市', N'622701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5084, N'甘肃省', N'平凉地区', N'泾川县', N'622722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5085, N'甘肃省', N'平凉地区', N'灵台县', N'622723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5086, N'甘肃省', N'平凉地区', N'崇信县', N'622724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5087, N'甘肃省', N'平凉地区', N'华亭县', N'622725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5088, N'甘肃省', N'平凉地区', N'庄浪县', N'622726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5089, N'甘肃省', N'平凉地区', N'静宁县', N'622727'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5090, N'甘肃省', N'庆阳地区', N'西峰市', N'622801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5091, N'甘肃省', N'庆阳地区', N'庆阳县', N'622821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5092, N'甘肃省', N'庆阳地区', N'环县', N'622822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5093, N'甘肃省', N'庆阳地区', N'华池县', N'622823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5094, N'甘肃省', N'庆阳地区', N'合水县', N'622824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5095, N'甘肃省', N'庆阳地区', N'正宁县', N'622825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5096, N'甘肃省', N'庆阳地区', N'宁县', N'622826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5097, N'甘肃省', N'庆阳地区', N'镇原县', N'622827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5098, N'甘肃省', N'临夏回族自治州', N'临夏市', N'622901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5099, N'甘肃省', N'临夏回族自治州', N'临夏县', N'622921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5100, N'甘肃省', N'临夏回族自治州', N'康乐县', N'622922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5101, N'甘肃省', N'临夏回族自治州', N'永靖县', N'622923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5102, N'甘肃省', N'临夏回族自治州', N'广河县', N'622924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5103, N'甘肃省', N'临夏回族自治州', N'和政县', N'622925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5104, N'甘肃省', N'临夏回族自治州', N'东乡族自治县', N'622926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5105, N'甘肃省', N'临夏回族自治州', N'积石山保安族东乡族撒拉族自治县', N'622927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5106, N'甘肃省', N'甘南藏族自治州', N'合作市', N'623001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5107, N'甘肃省', N'甘南藏族自治州', N'临潭县', N'623021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5108, N'甘肃省', N'甘南藏族自治州', N'卓尼县', N'623022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5109, N'甘肃省', N'甘南藏族自治州', N'舟曲县', N'623023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5110, N'甘肃省', N'甘南藏族自治州', N'迭部县', N'623024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5111, N'甘肃省', N'甘南藏族自治州', N'玛曲县', N'623025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5112, N'甘肃省', N'甘南藏族自治州', N'碌曲县', N'623026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5113, N'甘肃省', N'甘南藏族自治州', N'夏河县', N'623027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5114, N'甘肃省', N'兰州市', N'市辖区', N'620101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5115, N'甘肃省', N'兰州市', N'城关区', N'620102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5116, N'甘肃省', N'兰州市', N'七里河区', N'620103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5117, N'甘肃省', N'兰州市', N'西固区', N'620104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5118, N'甘肃省', N'兰州市', N'安宁区', N'620105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5119, N'甘肃省', N'兰州市', N'红古区', N'620111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5120, N'甘肃省', N'兰州市', N'永登县', N'620121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5121, N'甘肃省', N'兰州市', N'皋兰县', N'620122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5122, N'甘肃省', N'兰州市', N'榆中县', N'620123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5123, N'甘肃省', N'嘉峪关市', N'市辖区', N'620201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5124, N'甘肃省', N'嘉峪关市', N'嘉峪关区', N'620202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5125, N'甘肃省', N'金昌市', N'市辖区', N'620301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5126, N'甘肃省', N'金昌市', N'金川区', N'620302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5127, N'甘肃省', N'金昌市', N'永昌县', N'620321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5128, N'甘肃省', N'白银市', N'市辖区', N'620401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5129, N'甘肃省', N'白银市', N'白银区', N'620402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5130, N'甘肃省', N'白银市', N'平川区', N'620403'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5131, N'甘肃省', N'白银市', N'靖远县', N'620421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5132, N'甘肃省', N'白银市', N'会宁县', N'620422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5133, N'甘肃省', N'白银市', N'景泰县', N'620423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5134, N'甘肃省', N'天水市', N'市辖区', N'620501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5135, N'甘肃省', N'天水市', N'秦州区', N'620502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5136, N'甘肃省', N'天水市', N'麦积区', N'620503'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5137, N'甘肃省', N'天水市', N'清水县', N'620521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5138, N'甘肃省', N'天水市', N'秦安县', N'620522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5139, N'甘肃省', N'天水市', N'甘谷县', N'620523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5140, N'甘肃省', N'天水市', N'武山县', N'620524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5141, N'甘肃省', N'天水市', N'张家川回族自治县', N'620525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5142, N'甘肃省', N'武威市', N'市辖区', N'620601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5143, N'甘肃省', N'武威市', N'凉州区', N'620602'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5144, N'甘肃省', N'武威市', N'民勤县', N'620621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5145, N'甘肃省', N'武威市', N'古浪县', N'620622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5146, N'甘肃省', N'武威市', N'天祝藏族自治县', N'620623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5147, N'甘肃省', N'张掖市', N'市辖区', N'620701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5148, N'甘肃省', N'张掖市', N'甘州区', N'620702'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5149, N'甘肃省', N'张掖市', N'肃南裕固族自治县', N'620721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5150, N'甘肃省', N'张掖市', N'民乐县', N'620722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5151, N'甘肃省', N'张掖市', N'临泽县', N'620723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5152, N'甘肃省', N'张掖市', N'高台县', N'620724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5153, N'甘肃省', N'张掖市', N'山丹县', N'620725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5154, N'青海省', N'西宁市', N'市辖区', N'630101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5155, N'青海省', N'西宁市', N'城东区', N'630102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5156, N'青海省', N'西宁市', N'城中区', N'630103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5157, N'青海省', N'西宁市', N'城西区', N'630104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5158, N'青海省', N'西宁市', N'城北区', N'630105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5159, N'青海省', N'西宁市', N'大通回族土族自治县', N'630121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5160, N'青海省', N'西宁市', N'湟中县', N'630122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5161, N'青海省', N'西宁市', N'湟源县', N'630123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5162, N'青海省', N'海南藏族自治州', N'共和县', N'632521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5163, N'青海省', N'海南藏族自治州', N'同德县', N'632522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5164, N'青海省', N'海南藏族自治州', N'贵德县', N'632523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5165, N'青海省', N'海南藏族自治州', N'兴海县', N'632524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5166, N'青海省', N'海南藏族自治州', N'贵南县', N'632525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5167, N'青海省', N'果洛藏族自治州', N'玛沁县', N'632621'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5168, N'青海省', N'果洛藏族自治州', N'班玛县', N'632622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5169, N'青海省', N'果洛藏族自治州', N'甘德县', N'632623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5170, N'青海省', N'果洛藏族自治州', N'达日县', N'632624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5171, N'青海省', N'果洛藏族自治州', N'久治县', N'632625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5172, N'青海省', N'果洛藏族自治州', N'玛多县', N'632626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5173, N'青海省', N'果洛藏族自治州', N'班玛县', N'632632'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5174, N'青海省', N'玉树藏族自治州', N'玉树县', N'632721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5175, N'青海省', N'玉树藏族自治州', N'杂多县', N'632722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5176, N'青海省', N'玉树藏族自治州', N'称多县', N'632723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5177, N'青海省', N'玉树藏族自治州', N'治多县', N'632724'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5178, N'青海省', N'玉树藏族自治州', N'囊谦县', N'632725'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5179, N'青海省', N'玉树藏族自治州', N'曲麻莱县', N'632726'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5180, N'青海省', N'海西蒙古族藏族自治州', N'格尔木市', N'632801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5181, N'青海省', N'海西蒙古族藏族自治州', N'德令哈市', N'632802'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5182, N'青海省', N'海西蒙古族藏族自治州', N'乌兰县', N'632821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5183, N'青海省', N'海西蒙古族藏族自治州', N'都兰县', N'632822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5184, N'青海省', N'海西蒙古族藏族自治州', N'天峻县', N'632823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5185, N'青海省', N'海西蒙古族藏族自治州', N'大柴旦行委', N'632824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5186, N'青海省', N'海西蒙古族藏族自治州', N'冷湖行委', N'632825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5187, N'青海省', N'海西蒙古族藏族自治州', N'茫崖行委', N'632826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5188, N'青海省', N'海东地区', N'平安县', N'632121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5189, N'青海省', N'海东地区', N'民和回族土族自治县', N'632122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5190, N'青海省', N'海东地区', N'乐都县', N'632123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5191, N'青海省', N'海东地区', N'湟中县', N'632124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5192, N'青海省', N'海东地区', N'湟源县', N'632125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5193, N'青海省', N'海东地区', N'互助土族自治县', N'632126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5194, N'青海省', N'海东地区', N'化隆回族自治县', N'632127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5195, N'青海省', N'海东地区', N'循化撒拉族自治县', N'632128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5196, N'青海省', N'海北藏族自治州', N'门源回族自治县', N'632221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5197, N'青海省', N'海北藏族自治州', N'祁连县', N'632222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5198, N'青海省', N'海北藏族自治州', N'海晏县', N'632223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5199, N'青海省', N'海北藏族自治州', N'刚察县', N'632224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5200, N'青海省', N'黄南藏族自治州', N'同仁县', N'632321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5201, N'青海省', N'黄南藏族自治州', N'尖扎县', N'632322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5202, N'青海省', N'黄南藏族自治州', N'泽库县', N'632323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5203, N'青海省', N'黄南藏族自治州', N'河南蒙古族自治县', N'632324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5204, N'宁夏回族自治区', N'银川市', N'市辖区', N'640101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5205, N'宁夏回族自治区', N'银川市', N'城区', N'640102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5206, N'宁夏回族自治区', N'银川市', N'新城区', N'640103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5207, N'宁夏回族自治区', N'银川市', N'兴庆区', N'640104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5208, N'宁夏回族自治区', N'银川市', N'西夏区', N'640105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5209, N'宁夏回族自治区', N'银川市', N'金凤区', N'640106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5210, N'宁夏回族自治区', N'银川市', N'郊区', N'640111'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5211, N'宁夏回族自治区', N'银川市', N'永宁县', N'640121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5212, N'宁夏回族自治区', N'银川市', N'贺兰县', N'640122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5213, N'宁夏回族自治区', N'银川市', N'灵武市', N'640181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5214, N'宁夏回族自治区', N'石嘴山市', N'市辖区', N'640201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5215, N'宁夏回族自治区', N'石嘴山市', N'大武口区', N'640202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5216, N'宁夏回族自治区', N'石嘴山市', N'石嘴山区', N'640203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5217, N'宁夏回族自治区', N'石嘴山市', N'石炭井区', N'640204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5218, N'宁夏回族自治区', N'石嘴山市', N'惠农区', N'640205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5219, N'宁夏回族自治区', N'石嘴山市', N'郊区', N'640211'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5220, N'宁夏回族自治区', N'石嘴山市', N'市区', N'640220'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5221, N'宁夏回族自治区', N'石嘴山市', N'平罗县', N'640221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5222, N'宁夏回族自治区', N'石嘴山市', N'陶乐县', N'640222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5223, N'宁夏回族自治区', N'石嘴山市', N'惠农县', N'640223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5224, N'宁夏回族自治区', N'吴忠市', N'市辖区', N'640301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5225, N'宁夏回族自治区', N'吴忠市', N'利通区', N'640302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5226, N'宁夏回族自治区', N'吴忠市', N'中卫县', N'640321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5227, N'宁夏回族自治区', N'吴忠市', N'中宁县', N'640322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5228, N'宁夏回族自治区', N'吴忠市', N'盐池县', N'640323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5229, N'宁夏回族自治区', N'吴忠市', N'同心县', N'640324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5230, N'宁夏回族自治区', N'吴忠市', N'青铜峡市', N'640381'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5231, N'宁夏回族自治区', N'吴忠市', N'灵武市', N'640382'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5232, N'宁夏回族自治区', N'固原市', N'市辖区', N'640401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5233, N'宁夏回族自治区', N'固原市', N'原州区', N'640402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5234, N'宁夏回族自治区', N'固原市', N'海原县', N'640421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5235, N'宁夏回族自治区', N'固原市', N'西吉县', N'640422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5236, N'宁夏回族自治区', N'固原市', N'隆德县', N'640423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5237, N'宁夏回族自治区', N'固原市', N'泾源县', N'640424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5238, N'宁夏回族自治区', N'固原市', N'彭阳县', N'640425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5239, N'宁夏回族自治区', N'中卫市', N'市辖区', N'640501'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5240, N'宁夏回族自治区', N'中卫市', N'沙坡头区', N'640502'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5241, N'宁夏回族自治区', N'中卫市', N'中宁县', N'640521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5242, N'宁夏回族自治区', N'中卫市', N'海原县', N'640522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5243, N'宁夏回族自治区', N'吴忠市', N'吴忠市', N'642101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5244, N'宁夏回族自治区', N'吴忠市', N'利通区', N'642102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5245, N'宁夏回族自治区', N'吴忠市', N'灵武市', N'642103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5246, N'宁夏回族自治区', N'吴忠市', N'吴忠县', N'642121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5247, N'宁夏回族自治区', N'吴忠市', N'青铜峡县', N'642122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5248, N'宁夏回族自治区', N'吴忠市', N'中卫县', N'642123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5249, N'宁夏回族自治区', N'吴忠市', N'中宁县', N'642124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5250, N'宁夏回族自治区', N'吴忠市', N'灵武县', N'642125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5251, N'宁夏回族自治区', N'吴忠市', N'盐池县', N'642126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5252, N'宁夏回族自治区', N'吴忠市', N'同心县', N'642127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5253, N'宁夏回族自治区', N'固原地区', N'固原县', N'642221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5254, N'宁夏回族自治区', N'固原地区', N'海原县', N'642222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5255, N'宁夏回族自治区', N'固原地区', N'西吉县', N'642223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5256, N'宁夏回族自治区', N'固原地区', N'隆德县', N'642224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5257, N'宁夏回族自治区', N'固原地区', N'泾源县', N'642225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5258, N'宁夏回族自治区', N'固原地区', N'彭阳县', N'642226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5259, N'新疆维吾尔自治区', N'乌鲁木齐市', N'市辖区', N'650101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5260, N'新疆维吾尔自治区', N'乌鲁木齐市', N'天山区', N'650102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5261, N'新疆维吾尔自治区', N'乌鲁木齐市', N'沙依巴克区', N'650103'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5262, N'新疆维吾尔自治区', N'乌鲁木齐市', N'新市区', N'650104'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5263, N'新疆维吾尔自治区', N'乌鲁木齐市', N'水磨沟区', N'650105'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5264, N'新疆维吾尔自治区', N'乌鲁木齐市', N'头屯河区', N'650106'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5265, N'新疆维吾尔自治区', N'乌鲁木齐市', N'南山矿区', N'650107'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5266, N'新疆维吾尔自治区', N'乌鲁木齐市', N'东山区', N'650108'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5267, N'新疆维吾尔自治区', N'乌鲁木齐市', N'乌鲁木齐县', N'650121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5268, N'新疆维吾尔自治区', N'克拉玛依市', N'市辖区', N'650201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5269, N'新疆维吾尔自治区', N'克拉玛依市', N'独山子区', N'650202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5270, N'新疆维吾尔自治区', N'克拉玛依市', N'克拉玛依区', N'650203'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5271, N'新疆维吾尔自治区', N'克拉玛依市', N'白碱滩区', N'650204'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5272, N'新疆维吾尔自治区', N'克拉玛依市', N'乌尔禾区', N'650205'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5273, N'新疆维吾尔自治区', N'吐鲁番地区', N'吐鲁番市', N'652101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5274, N'新疆维吾尔自治区', N'吐鲁番地区', N'鄯善县', N'652122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5275, N'新疆维吾尔自治区', N'吐鲁番地区', N'托克逊县', N'652123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5276, N'新疆维吾尔自治区', N'哈密地区', N'哈密市', N'652201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5277, N'新疆维吾尔自治区', N'哈密地区', N'巴里坤哈萨克自治县', N'652222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5278, N'新疆维吾尔自治区', N'哈密地区', N'伊吾县', N'652223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5279, N'新疆维吾尔自治区', N'昌吉回族自治州', N'昌吉市', N'652301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5280, N'新疆维吾尔自治区', N'昌吉回族自治州', N'阜康市', N'652302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5281, N'新疆维吾尔自治区', N'昌吉回族自治州', N'米泉市', N'652303'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5282, N'新疆维吾尔自治区', N'昌吉回族自治州', N'米泉市', N'652322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5283, N'新疆维吾尔自治区', N'昌吉回族自治州', N'呼图壁县', N'652323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5284, N'新疆维吾尔自治区', N'昌吉回族自治州', N'玛纳斯县', N'652324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5285, N'新疆维吾尔自治区', N'昌吉回族自治州', N'奇台县', N'652325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5286, N'新疆维吾尔自治区', N'昌吉回族自治州', N'阜康市', N'652326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5287, N'新疆维吾尔自治区', N'昌吉回族自治州', N'吉木萨尔县', N'652327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5288, N'新疆维吾尔自治区', N'昌吉回族自治州', N'木垒哈萨克自治县', N'652328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5289, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'伊宁市', N'652401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5290, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'奎屯市', N'652402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5291, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'伊宁县', N'652421'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5292, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'察布查尔锡伯自治县', N'652422'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5293, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'霍城县', N'652423'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5294, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'巩留县', N'652424'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5295, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'新源县', N'652425'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5296, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'昭苏县', N'652426'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5297, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'特克斯县', N'652427'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5298, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'尼勒克县', N'652428'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5299, N'新疆维吾尔自治区', N'塔城地区', N'塔城县', N'652521'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5300, N'新疆维吾尔自治区', N'塔城地区', N'额敏县', N'652522'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5301, N'新疆维吾尔自治区', N'塔城地区', N'乌苏市', N'652523'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5302, N'新疆维吾尔自治区', N'塔城地区', N'沙湾县', N'652524'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5303, N'新疆维吾尔自治区', N'塔城地区', N'托里县', N'652525'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5304, N'新疆维吾尔自治区', N'塔城地区', N'裕民县', N'652526'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5305, N'新疆维吾尔自治区', N'塔城地区', N'和布克赛尔蒙古自治县', N'652527'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5306, N'新疆维吾尔自治区', N'阿勒泰地区', N'阿勒泰县', N'652601'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5307, N'新疆维吾尔自治区', N'阿勒泰地区', N'布尔津县', N'652622'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5308, N'新疆维吾尔自治区', N'阿勒泰地区', N'富蕴县', N'652623'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5309, N'新疆维吾尔自治区', N'阿勒泰地区', N'福海县', N'652624'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5310, N'新疆维吾尔自治区', N'阿勒泰地区', N'哈巴河县', N'652625'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5311, N'新疆维吾尔自治区', N'阿勒泰地区', N'青河县', N'652626'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5312, N'新疆维吾尔自治区', N'阿勒泰地区', N'吉木乃县', N'652627'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5313, N'新疆维吾尔自治区', N'阿勒泰地区', N'富蕴县', N'654322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5314, N'新疆维吾尔自治区', N'阿勒泰地区', N'福海县', N'654323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5315, N'新疆维吾尔自治区', N'阿勒泰地区', N'哈巴河县', N'654324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5316, N'新疆维吾尔自治区', N'阿勒泰地区', N'青河县', N'654325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5317, N'新疆维吾尔自治区', N'阿勒泰地区', N'吉木乃县', N'654326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5318, N'新疆维吾尔自治区', N'阿勒泰地区', N'阿勒泰市', N'654301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5319, N'新疆维吾尔自治区', N'阿勒泰地区', N'布尔津县', N'654321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5320, N'新疆维吾尔自治区', N'省直辖行政单位', N'石河子市', N'659001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5321, N'新疆维吾尔自治区', N'省直辖行政单位', N'阿拉尔市', N'659002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5322, N'新疆维吾尔自治区', N'省直辖行政单位', N'图木舒克市', N'659003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5323, N'新疆维吾尔自治区', N'省直辖行政单位', N'五家渠市', N'659004'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5324, N'新疆维吾尔自治区', N'博尔塔拉蒙古自治州', N'博乐市', N'652701'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5325, N'新疆维吾尔自治区', N'博尔塔拉蒙古自治州', N'博乐县', N'652721'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5326, N'新疆维吾尔自治区', N'博尔塔拉蒙古自治州', N'精河县', N'652722'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5327, N'新疆维吾尔自治区', N'博尔塔拉蒙古自治州', N'温泉县', N'652723'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5328, N'新疆维吾尔自治区', N'巴音郭楞蒙古自治州', N'库尔勒市', N'652801'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5329, N'新疆维吾尔自治区', N'巴音郭楞蒙古自治州', N'库尔勒县', N'652821'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5330, N'新疆维吾尔自治区', N'巴音郭楞蒙古自治州', N'轮台县', N'652822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5331, N'新疆维吾尔自治区', N'巴音郭楞蒙古自治州', N'尉犁县', N'652823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5332, N'新疆维吾尔自治区', N'巴音郭楞蒙古自治州', N'若羌县', N'652824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5333, N'新疆维吾尔自治区', N'巴音郭楞蒙古自治州', N'且末县', N'652825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5334, N'新疆维吾尔自治区', N'巴音郭楞蒙古自治州', N'焉耆回族自治县', N'652826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5335, N'新疆维吾尔自治区', N'巴音郭楞蒙古自治州', N'和静县', N'652827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5336, N'新疆维吾尔自治区', N'巴音郭楞蒙古自治州', N'和硕县', N'652828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5337, N'新疆维吾尔自治区', N'巴音郭楞蒙古自治州', N'博湖县', N'652829'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5338, N'新疆维吾尔自治区', N'阿克苏地区', N'阿克苏市', N'652901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5339, N'新疆维吾尔自治区', N'阿克苏地区', N'阿克苏县', N'652921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5340, N'新疆维吾尔自治区', N'阿克苏地区', N'温宿县', N'652922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5341, N'新疆维吾尔自治区', N'阿克苏地区', N'库车县', N'652923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5342, N'新疆维吾尔自治区', N'阿克苏地区', N'沙雅县', N'652924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5343, N'新疆维吾尔自治区', N'阿克苏地区', N'新和县', N'652925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5344, N'新疆维吾尔自治区', N'阿克苏地区', N'拜城县', N'652926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5345, N'新疆维吾尔自治区', N'阿克苏地区', N'乌什县', N'652927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5346, N'新疆维吾尔自治区', N'阿克苏地区', N'阿瓦提县', N'652928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5347, N'新疆维吾尔自治区', N'阿克苏地区', N'柯坪县', N'652929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5348, N'新疆维吾尔自治区', N'克孜勒苏柯尔克孜自治州', N'阿图什市', N'653001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5349, N'新疆维吾尔自治区', N'克孜勒苏柯尔克孜自治州', N'阿图什县', N'653021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5350, N'新疆维吾尔自治区', N'克孜勒苏柯尔克孜自治州', N'阿克陶县', N'653022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5351, N'新疆维吾尔自治区', N'克孜勒苏柯尔克孜自治州', N'阿合奇县', N'653023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5352, N'新疆维吾尔自治区', N'克孜勒苏柯尔克孜自治州', N'乌恰县', N'653024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5353, N'新疆维吾尔自治区', N'喀什地区', N'喀什市', N'653101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5354, N'新疆维吾尔自治区', N'喀什地区', N'疏附县', N'653121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5355, N'新疆维吾尔自治区', N'喀什地区', N'疏勒县', N'653122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5356, N'新疆维吾尔自治区', N'喀什地区', N'英吉沙县', N'653123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5357, N'新疆维吾尔自治区', N'喀什地区', N'泽普县', N'653124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5358, N'新疆维吾尔自治区', N'喀什地区', N'莎车县', N'653125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5359, N'新疆维吾尔自治区', N'喀什地区', N'叶城县', N'653126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5360, N'新疆维吾尔自治区', N'喀什地区', N'麦盖提县', N'653127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5361, N'新疆维吾尔自治区', N'喀什地区', N'岳普湖县', N'653128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5362, N'新疆维吾尔自治区', N'喀什地区', N'伽师县', N'653129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5363, N'新疆维吾尔自治区', N'喀什地区', N'巴楚县', N'653130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5364, N'新疆维吾尔自治区', N'喀什地区', N'塔什库尔干塔吉克自治县', N'653131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5365, N'新疆维吾尔自治区', N'和田地区', N'和田市', N'653201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5366, N'新疆维吾尔自治区', N'和田地区', N'和田县', N'653221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5367, N'新疆维吾尔自治区', N'和田地区', N'墨玉县', N'653222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5368, N'新疆维吾尔自治区', N'和田地区', N'皮山县', N'653223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5369, N'新疆维吾尔自治区', N'和田地区', N'洛浦县', N'653224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5370, N'新疆维吾尔自治区', N'和田地区', N'策勒县', N'653225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5371, N'新疆维吾尔自治区', N'和田地区', N'于田县', N'653226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5372, N'新疆维吾尔自治区', N'和田地区', N'民丰县', N'653227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5373, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'奎屯市', N'654001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5374, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'伊宁市', N'654002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5375, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'奎屯市', N'654003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5376, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'伊宁县', N'654021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5377, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'察布查尔锡伯自治县', N'654022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5378, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'霍城县', N'654023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5379, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'巩留县', N'654024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5380, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'新源县', N'654025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5381, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'昭苏县', N'654026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5382, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'特克斯县', N'654027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5383, N'新疆维吾尔自治区', N'伊犁哈萨克自治州', N'尼勒克县', N'654028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5384, N'新疆维吾尔自治区', N'伊犁地区', N'伊宁市', N'654101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5385, N'新疆维吾尔自治区', N'伊犁地区', N'伊宁县', N'654121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5386, N'新疆维吾尔自治区', N'伊犁地区', N'察布查尔锡伯自治县', N'654122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5387, N'新疆维吾尔自治区', N'伊犁地区', N'霍城县', N'654123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5388, N'新疆维吾尔自治区', N'伊犁地区', N'巩留县', N'654124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5389, N'新疆维吾尔自治区', N'伊犁地区', N'新源县', N'654125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5390, N'新疆维吾尔自治区', N'伊犁地区', N'昭苏县', N'654126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5391, N'新疆维吾尔自治区', N'伊犁地区', N'特克斯县', N'654127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5392, N'新疆维吾尔自治区', N'伊犁地区', N'尼勒克县', N'654128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5393, N'新疆维吾尔自治区', N'塔城地区', N'塔城市', N'654201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5394, N'新疆维吾尔自治区', N'塔城地区', N'乌苏市', N'654202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5395, N'新疆维吾尔自治区', N'塔城地区', N'额敏县', N'654221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5396, N'新疆维吾尔自治区', N'塔城地区', N'乌苏市', N'654222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5397, N'新疆维吾尔自治区', N'塔城地区', N'沙湾县', N'654223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5398, N'新疆维吾尔自治区', N'塔城地区', N'托里县', N'654224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5399, N'新疆维吾尔自治区', N'塔城地区', N'裕民县', N'654225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5400, N'新疆维吾尔自治区', N'塔城地区', N'和布克赛尔蒙古自治县', N'654226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5401, N'台湾省(886)', NULL, NULL, N'710000'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5402, N'香港特别行政区(852)', NULL, NULL, N'810000'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (5403, N'澳门特别行政区(853)', NULL, NULL, N'820000'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (193, N'河北省', N'承德市', N'兴隆县', N'130822'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (194, N'河北省', N'承德市', N'平泉县', N'130823'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (195, N'河北省', N'承德市', N'滦平县', N'130824'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (196, N'河北省', N'承德市', N'隆化县', N'130825'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (197, N'河北省', N'承德市', N'丰宁满族自治县', N'130826'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (198, N'河北省', N'承德市', N'宽城满族自治县', N'130827'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (199, N'河北省', N'承德市', N'围场满族蒙古族自治县', N'130828'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (200, N'河北省', N'沧州市', N'市辖区', N'130901'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (201, N'河北省', N'沧州市', N'新华区', N'130902'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (202, N'河北省', N'沧州市', N'运河区', N'130903'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (203, N'河北省', N'沧州市', N'郊区', N'130904'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (204, N'河北省', N'沧州市', N'沧县', N'130921'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (205, N'河北省', N'沧州市', N'青县', N'130922'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (206, N'河北省', N'沧州市', N'东光县', N'130923'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (207, N'河北省', N'沧州市', N'海兴县', N'130924'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (208, N'河北省', N'沧州市', N'盐山县', N'130925'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (209, N'河北省', N'沧州市', N'肃宁县', N'130926'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (210, N'河北省', N'沧州市', N'南皮县', N'130927'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (211, N'河北省', N'沧州市', N'吴桥县', N'130928'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (212, N'河北省', N'沧州市', N'献县', N'130929'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (213, N'河北省', N'沧州市', N'孟村回族自治县', N'130930'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (214, N'河北省', N'沧州市', N'泊头市', N'130981'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (215, N'河北省', N'沧州市', N'任丘市', N'130982'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (216, N'河北省', N'沧州市', N'黄骅市', N'130983'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (217, N'河北省', N'沧州市', N'河间市', N'130984'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (218, N'河北省', N'廊坊市', N'市辖区', N'131001'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (219, N'河北省', N'廊坊市', N'安次区', N'131002'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (220, N'河北省', N'廊坊市', N'广阳区', N'131003'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (221, N'河北省', N'廊坊市', N'三河县', N'131021'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (222, N'河北省', N'廊坊市', N'固安县', N'131022'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (223, N'河北省', N'廊坊市', N'永清县', N'131023'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (224, N'河北省', N'廊坊市', N'香河县', N'131024'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (225, N'河北省', N'廊坊市', N'大城县', N'131025'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (226, N'河北省', N'廊坊市', N'文安县', N'131026'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (227, N'河北省', N'廊坊市', N'霸县', N'131027'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (228, N'河北省', N'廊坊市', N'大厂回族自治县', N'131028'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (229, N'河北省', N'廊坊市', N'霸州市', N'131081'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (230, N'河北省', N'廊坊市', N'三河市', N'131082'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (231, N'河北省', N'衡水市', N'市辖区', N'131101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (232, N'河北省', N'衡水市', N'桃城区', N'131102'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (233, N'河北省', N'衡水市', N'枣强县', N'131121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (234, N'河北省', N'衡水市', N'武邑县', N'131122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (235, N'河北省', N'衡水市', N'武强县', N'131123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (236, N'河北省', N'衡水市', N'饶阳县', N'131124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (237, N'河北省', N'衡水市', N'安平县', N'131125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (238, N'河北省', N'衡水市', N'故城县', N'131126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (239, N'河北省', N'衡水市', N'景县', N'131127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (240, N'河北省', N'衡水市', N'阜城县', N'131128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (241, N'河北省', N'衡水市', N'冀州市', N'131181'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (242, N'河北省', N'衡水市', N'深州市', N'131182'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (243, N'河北省', N'邯郸地区', N'邯郸市', N'132101'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (244, N'河北省', N'邯郸地区', N'大名县', N'132121'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (245, N'河北省', N'邯郸地区', N'魏县', N'132122'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (246, N'河北省', N'邯郸地区', N'曲周县', N'132123'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (247, N'河北省', N'邯郸地区', N'丘县', N'132124'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (248, N'河北省', N'邯郸地区', N'鸡泽县', N'132125'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (249, N'河北省', N'邯郸地区', N'肥乡县', N'132126'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (250, N'河北省', N'邯郸地区', N'广平县', N'132127'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (251, N'河北省', N'邯郸地区', N'成安县', N'132128'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (252, N'河北省', N'邯郸地区', N'临漳县', N'132129'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (253, N'河北省', N'邯郸地区', N'磁县', N'132130'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (254, N'河北省', N'邯郸地区', N'武安县', N'132131'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (255, N'河北省', N'邯郸地区', N'涉县', N'132132'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (256, N'河北省', N'邯郸地区', N'永年县', N'132133'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (257, N'河北省', N'邯郸地区', N'邯郸县', N'132134'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (258, N'河北省', N'邯郸地区', N'馆陶县', N'132135'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (259, N'河北省', N'邢台地区', N'南宫市', N'132201'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (260, N'河北省', N'邢台地区', N'沙河市', N'132202'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (261, N'河北省', N'邢台地区', N'邢台县', N'132221'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (262, N'河北省', N'邢台地区', N'沙河县', N'132222'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (263, N'河北省', N'邢台地区', N'临城县', N'132223'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (264, N'河北省', N'邢台地区', N'内丘县', N'132224'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (265, N'河北省', N'邢台地区', N'柏乡县', N'132225'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (266, N'河北省', N'邢台地区', N'隆尧县', N'132226'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (267, N'河北省', N'邢台地区', N'任县', N'132227'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (268, N'河北省', N'邢台地区', N'南和县', N'132228'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (269, N'河北省', N'邢台地区', N'宁晋县', N'132229'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (270, N'河北省', N'邢台地区', N'南宫县', N'132230'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (271, N'河北省', N'邢台地区', N'巨鹿县', N'132231'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (272, N'河北省', N'邢台地区', N'新河县', N'132232'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (273, N'河北省', N'邢台地区', N'广宗县', N'132233'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (274, N'河北省', N'邢台地区', N'平乡县', N'132234'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (275, N'河北省', N'邢台地区', N'威县', N'132235'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (276, N'河北省', N'邢台地区', N'清河县', N'132236'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (277, N'河北省', N'邢台地区', N'临西县', N'132237'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (278, N'河北省', N'石家庄市', N'辛集市', N'132301'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (279, N'河北省', N'石家庄市', N'藁城市', N'132302'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (280, N'河北省', N'石家庄市', N'束鹿县', N'132321'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (281, N'河北省', N'石家庄市', N'晋县', N'132322'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (282, N'河北省', N'石家庄市', N'深泽县', N'132323'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (283, N'河北省', N'石家庄市', N'无极县', N'132324'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (284, N'河北省', N'石家庄市', N'藁城县', N'132325'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (285, N'河北省', N'石家庄市', N'赵县', N'132326'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (286, N'河北省', N'石家庄市', N'栾城县', N'132327'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (287, N'河北省', N'石家庄市', N'正定县', N'132328'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (288, N'河北省', N'石家庄市', N'新乐县', N'132329'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (289, N'河北省', N'石家庄市', N'高邑县', N'132330'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (290, N'河北省', N'石家庄市', N'元氏县', N'132331'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (291, N'河北省', N'石家庄市', N'赞皇县', N'132332'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (292, N'河北省', N'石家庄市', N'井陉县', N'132333'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (293, N'河北省', N'石家庄市', N'获鹿县', N'132334'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (294, N'河北省', N'石家庄市', N'平山县', N'132335'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (295, N'河北省', N'石家庄市', N'灵寿县', N'132336'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (296, N'河北省', N'石家庄市', N'行唐县', N'132337'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (297, N'河北省', N'保定地区', N'定州市', N'132401'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (298, N'河北省', N'保定地区', N'涿州市', N'132402'); GO -INSERT INTO [CARDCODES]([id], [Province], [City], [District], [bm]) VALUES (299, N'河北省', N'保定地区', N'安国市', N'132403'); GO -INSERT INTO [CARDINFO]([CardID], [CardName], [CustoNo]) VALUES ('NC00103003', '年卡', 'TS1816'); GO -INSERT INTO [CARDINFO]([CardID], [CardName], [CustoNo]) VALUES ('NC00103004', '年卡', 'TS6666'); GO -INSERT INTO [CARDINFO]([CardID], [CardName], [CustoNo]) VALUES ('YC00204001', '月卡', 'TS1002'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('', '纪念品', '500', '餐饮部', '2020-08-22 15:22:44.000', '赠予', '杨俊杰'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN001', '购入18台PC', '15万', '酒店部', '2018-12-03 15:49:15.920', '联想电脑', '谭国平'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN002', '购入150平方的瓷砖', '80万', '酒店部', '2018-12-03 15:49:15.923', '京瓷', '李杰峰'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN003', '与KaMiFood达成合作', '87万', '经理部', '2018-12-04 00:00:00.000', '神之食餐饮', '杨俊杰'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN004', '购入40台高配笔记本', '90万', '财务部', '2018-12-05 00:00:00.000', '戴尔电脑', '财务部'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN005', '与闪修达成合作', '60万', '经理部', '2018-12-05 00:00:00.000', '闪修公司', '杨俊杰'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN006', '顶级床单3000张', '90万', '酒店部', '2018-12-15 00:00:00.000', '席梦思', '酒店部'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN007', '办公椅300张', '5万', '财务部', '2018-12-05 00:00:00.000', 'XX公司', '财务部'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN008', '办公桌300张', '8万', '经理部', '2018-12-05 00:00:00.000', 'XX公司', '杨俊杰'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN009', '测试数据', '20万', '商品部', '2018-12-05 00:00:00.000', 'XX公司', '杨俊杰'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN010', '测试数据', '30万', 'XX部', '2018-12-06 00:00:00.000', 'XX公司', 'XXX'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN011', '测试数据', '40万', 'XX部', '2018-12-07 00:00:00.000', 'XX公司', 'XXX'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN012', '测试数据', '50万', 'XX部', '2018-12-08 00:00:00.000', 'XX公司', 'XXX'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN013', '测试数据', '60万', 'XX部', '2018-12-09 00:00:00.000', 'XX公司', 'XXX'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN014', '测试数据', '70万', 'XX部', '2018-12-23 00:00:00.000', 'XX公司', 'XXX'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN015', '测试数据', '80万', 'XX部', '2018-12-23 00:00:00.000', 'XX公司', 'XXX'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN016', '测试数据', '90万', 'XX部', '2018-12-24 00:00:00.000', 'XX公司', 'XXX'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN1262', '古董', '10000000', '酒店部', '2020-08-22 15:22:44.000', '赠送', '杨俊杰'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN1631', 'aaa', '1000', '楼面部', '2020-08-22 15:38:29.000', '', '杨俊杰'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN4610', '购入20套办公桌', '50000', '行政部', '2020-04-16 23:25:22.000', '志远办公', '杨俊杰'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN4665', '购入10套办公桌椅', '50000', '行政部', '2020-04-16 23:26:57.000', '志远办公', '杨俊杰'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN6816', 'test', '20000', '酒店部', '2020-04-16 23:42:08.000', 'adasd', '杨俊杰'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('CN8051', 'cccccc', 'wccc', '酒店部', '2020-08-14 14:33:21.000', 'ccccccc', '杨俊杰'); GO -INSERT INTO [CASHINFO]([CashNo], [CashName], [CashPrice], [CashClub], [CashTime], [CashSource], [CashPerson]) VALUES ('RG001', '唯秒合作入股', '77万', '经理部', '2018-12-05 00:00:00.000', '唯秒', '牛战士'); GO -INSERT INTO [CHECKINFO]([CheckNo], [CheckClub], [CheckProgres], [CheckCash], [CheckScore], [CheckPerson], [CheckAdvice]) VALUES ('CI001', '后勤部', '有人偷懒', '(^-^)', 4, '罗良建', '合理分配时间'); GO -INSERT INTO [CHECKINFO]([CheckNo], [CheckClub], [CheckProgres], [CheckCash], [CheckScore], [CheckPerson], [CheckAdvice]) VALUES ('CI002', '餐饮部', '有人偷懒', 'QAQ', 4, '罗良建', '合理分配时间'); GO -INSERT INTO [CHECKINFO]([CheckNo], [CheckClub], [CheckProgres], [CheckCash], [CheckScore], [CheckPerson], [CheckAdvice]) VALUES ('CI003', '酒店部', '有人偷懒', '(-_-)', 4, '罗良建', '合理分配时间'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BS005', 'TS1081', '乐事薯片(原味)', 27, 20.00, 540.00, '2020-04-07 14:36:32.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BS001', 'TS1571', '片(原味)', 1, .00, .00, '2020-08-21 14:37:32.000', '未结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD001', 'TS1862', '特级DLS', 2, 40.00, 80.00, '2018-12-20 20:31:46.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD001', 'TS1239', '三只松鼠夏威夷坚果', 2, 40.00, 80.00, '2020-05-07 15:18:50.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BS005', 'TS1081', '特级杜蕾斯', 27, 40.00, 1080.00, '2020-04-07 14:36:37.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD002', 'TS1816', '雪碧', 1, 2.50, 2.50, '2018-12-21 07:38:57.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD002', 'TS1816', '特级DLS', 1, 40.00, 40.00, '2018-12-21 07:39:01.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BS005', 'TS1081', '青岛啤酒', 27, 15.00, 405.00, '2020-04-07 14:36:41.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BS005', 'TS1081', '可口可乐', 31, 10.00, 310.00, '2020-04-07 14:36:56.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('HD006', 'TS1364', '居住HD0057天', 7, 4375.00, 4375.00, '2020-04-14 19:39:08.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('ZT002', 'TS1364', '居住HD0067天', 7, 4375.00, 4375.00, '2020-04-14 19:40:26.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('ZT002', 'TS1364', '可口可乐', 5, 2.50, 12.50, '2020-04-14 19:41:32.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('HD003', 'TS1001', '居住BD0050天', 0, .00, .00, '2020-04-26 14:06:06.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD004', 'TS1480', '火腿肠', 3, 10.00, 30.00, '2020-04-29 12:40:44.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD004', 'TS1480', '雪碧', 3, 2.50, 7.50, '2020-04-29 12:40:58.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD004', 'TS1480', '92拉菲', 2, 10800.00, 21600.00, '2020-04-29 12:41:12.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('HD001', 'TS1862', '康师傅方便面', 10, 10.00, 100.00, '2018-12-26 14:00:05.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD007', 'TS1002', '居住BS00865天', 65, 27625.00, 27625.00, '2020-07-05 13:56:10.000', '未结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BS007', 'TS1003', '居住BS00965天', 65, 27625.00, 27625.00, '2020-07-05 14:01:29.000', '未结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('ZT005', 'TS1005', '居住HD00168天', 68, 42500.00, 42500.00, '2020-05-10 21:34:32.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('ZT005', 'TS1005', '特级杜蕾斯', 10, 40.00, 400.00, '2020-05-13 17:40:20.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BS003', 'TS1084', '特级杜蕾斯', 20, 40.00, 800.00, '2018-12-26 20:21:26.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BS007', 'TS1003', '特级杜蕾斯', 1, 40.00, 40.00, '2020-05-22 10:41:49.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('HS003', 'TS1194', '拉菲', 2, 10000.00, 20000.00, '2018-12-27 10:23:50.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('HS003', 'TS1194', '扑克牌', 2, 5.00, 10.00, '2018-12-27 10:24:02.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('HS003', 'TS1194', '火腿肠', 1, 10.00, 10.00, '2018-12-27 10:24:17.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD001', 'TS1365', '居住HD00247天', 47, 29375.00, 29375.00, '2020-07-19 01:49:25.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD001', 'TS1365', '香皂', 2, 25.00, 50.00, '2020-07-28 09:51:30.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD001', 'TS1365', '香皂', 2, 25.00, 50.00, '2020-07-28 09:51:37.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD001', 'TS1365', '青岛啤酒', 2, 15.00, 30.00, '2020-07-28 09:51:52.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BS001', 'TS1571', 'WAHAHA', 2, 5.00, 10.00, '2020-08-21 14:40:16.000', '未结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD002', 'TS1001', '三只松鼠夏威夷坚果', 12, 40.00, 480.00, '2019-10-07 13:32:18.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD005', 'TS1005', 'aaa', 1, 10.00, 10.00, '2020-08-22 14:43:44.000', '未结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('ZT001', 'TS1457', '拉菲', 30, 10000.00, 300000.00, '2019-10-28 21:14:08.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD002', 'TS1001', '康师傅方便面', 1, 10.00, 10.00, '2020-03-17 19:41:50.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 19:42:07.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 19:42:12.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 19:42:38.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 19:43:57.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 19:44:01.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD002', 'TS1001', '康师傅方便面', 2, 10.00, 20.00, '2020-03-17 19:44:06.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD002', 'TS1001', '三只松鼠夏威夷坚果', 2, 40.00, 80.00, '2020-03-17 19:44:52.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-18 09:55:19.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD002', 'TS1001', '乐事薯片(原味)', 2, 20.00, 40.00, '2020-03-25 12:04:59.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BS006', 'TS1998', '三只松鼠零食大礼包', 2, 299.00, 598.00, '2020-09-17 09:49:54.000', '未结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('BD001', 'TS1862', '青岛啤酒', 2, 15.00, 30.00, '2018-12-20 20:31:50.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('HD001', 'TS1862', '雪碧', 5, 10.00, 50.00, '2018-12-26 14:00:19.000', '已结算'); GO -INSERT INTO [CUSTOSPEND]([RoomNo], [CustoNo], [SpendName], [SpendAmount], [SpendPrice], [SpendMoney], [SpendTime], [MoneyState]) VALUES ('HD001', 'TS1862', 'TS纪念品', 2, 10.00, 20.00, '2018-12-26 14:00:35.000', '已结算'); GO -INSERT INTO [Fonts]([FontsId], [FontsMess]) VALUES (1, '本酒店即日起与闪修平台联合推出“多修多折”活动,详情请咨询前台!'); GO -INSERT INTO [Fonts]([FontsId], [FontsMess]) VALUES (2, '本酒店即日起与神之食餐厅联合推出“吃多折多”活动,详情请咨询前台!'); GO -INSERT INTO [Fonts]([FontsId], [FontsMess]) VALUES (3, '本酒店即日起与Second网吧联合推出“免费体验酒店式网吧”活动,详情请咨询前台!'); GO -INSERT INTO [GBType]([GBType], [GBName]) VALUES (0, '奖励'); GO -INSERT INTO [GBType]([GBType], [GBName]) VALUES (1, '惩罚'); GO -INSERT INTO [MONEYINFO]([MoneyNo], [MoneyType], [MoneyIn], [MoneyOut], [MoneyCheck], [MoneyPerson], [Remarks]) VALUES ('MI001', 1, 10000.00, 1000.00, '是', '李杰峰', NULL); GO -INSERT INTO [MONEYINFO]([MoneyNo], [MoneyType], [MoneyIn], [MoneyOut], [MoneyCheck], [MoneyPerson], [Remarks]) VALUES ('MI002', 2, 5000.00, 2000.00, '是', '李杰峰', NULL); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 17:21:22.000', 'WK010于2020-04-21 17:21:22登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 19:25:45.000', 'WK010于2020/4/21 19:25:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 19:27:21.000', 'WK010于2020/4/21 19:27:21登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 19:27:50.000', 'WK010于2020/4/21 19:27:50登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 20:28:59.000', 'WK010于2020/4/21 20:28:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 20:29:04.000', '杨俊杰【经理部总经理】于2020/4/21 20:29:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 20:31:44.000', 'WK010于2020/4/21 20:31:44登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 20:31:51.000', '杨俊杰【经理部总经理】于2020/4/21 20:31:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 20:33:39.000', 'WK010于2020/4/21 20:33:39登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 20:33:46.000', '杨俊杰【经理部总经理】于2020/4/21 20:33:46尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 20:34:28.000', 'WK010于2020/4/21 20:34:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 20:34:33.000', '杨俊杰【经理部总经理】于2020/4/21 20:34:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 21:01:54.000', 'WK010于2020/4/21 21:01:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 21:02:01.000', '杨俊杰【经理部总经理】于2020/4/21 21:02:01尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-21 21:02:50.000', '杨俊杰总经理于2020/4/21 21:02:50对员工:林淑仪进行了奖罚情况录入!', '杨俊杰总经理'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-22 09:22:38.000', 'WK010于2020-04-22 09:22:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-22 09:23:39.000', 'WK010于2020-04-22 09:23:39登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-22 09:24:04.000', '杨俊杰【经理部总经理】于2020-04-22 09:24:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-22 13:00:25.000', 'WK010于2020/4/22 13:00:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-22 13:01:17.000', 'WK010于2020/4/22 13:01:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-22 13:02:38.000', '杨俊杰【经理部总经理】于2020/4/22 13:02:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-22 13:04:13.000', '杨俊杰总经理于2020/4/22 13:04:13将员工:阿力晋升为财务部职员', '杨俊杰总经理'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-22 18:04:45.000', 'WK010于2020/4/22 18:04:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 11:18:29.000', 'WK010于2020-04-23 11:18:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 11:33:09.000', 'WK010于2020-04-23 11:33:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 15:12:50.000', 'WK010于2020-04-23 15:12:50登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 15:12:56.000', '杨俊杰【经理部总经理】于2020-04-23 15:12:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 15:34:23.000', 'WK010于2020/4/23 15:34:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 15:46:06.000', '杨俊杰【经理部总经理】于2020/4/23 15:46:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 15:46:14.000', '杨俊杰【经理部总经理】于2020/4/23 15:46:14尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 15:52:45.000', '经理部总经理杨俊杰于2020/4/23 15:52:45查看了TS1194的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 15:52:49.000', '经理部总经理杨俊杰于2020/4/23 15:52:49查看了TS1194的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 15:58:04.000', 'WK010于2020-04-23 15:58:04登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:00:16.000', '杨俊杰【经理部总经理】于2020-04-23 16:00:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:07:08.000', 'WK010于2020-04-23 16:07:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:19:03.000', 'WK010于2020-04-23 16:19:03登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:30:34.000', 'WK010于2020-04-23 16:30:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:36:17.000', '经理部总经理杨俊杰于2020-04-23 16:36:17帮助TS1032进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:44:10.000', 'WK010于2020-04-23 16:44:10登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 19:00:36.000', 'WK010于2020/4/23 19:00:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 19:00:48.000', '杨俊杰【经理部总经理】于2020/4/23 19:00:48尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 19:39:54.000', 'WK010于2020/4/23 19:39:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 20:49:17.000', 'WK010于2020-04-23 20:49:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 20:50:30.000', 'WK010于2020-04-23 20:50:30登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 20:53:48.000', '经理部总经理杨俊杰于2020-04-23 20:53:48帮助TS1364进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 20:56:11.000', '经理部总经理杨俊杰于2020-04-23 20:56:11帮助877889进行了预订房间操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 13:06:45.000', 'WK010于2020/4/24 13:06:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 13:45:48.000', 'WK010于2020/04/24 13:45:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 14:17:09.000', 'WK010于2020/04/24 14:17:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 14:24:30.000', 'WK010于2020/04/24 14:24:30登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 14:27:49.000', 'WK010于2020/04/24 14:27:49登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 16:35:20.000', 'WK010于2020/4/24 16:35:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 16:36:08.000', '杨俊杰【经理部总经理】于2020/4/24 16:36:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:44:16.000', 'WK010于2020-04-24 17:44:16登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:44:42.000', '杨俊杰【经理部总经理】于2020-04-24 17:44:42尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:44:44.000', '杨俊杰【经理部总经理】于2020-04-24 17:44:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:44:47.000', '杨俊杰【经理部总经理】于2020-04-24 17:44:47尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:44:49.000', '杨俊杰【经理部总经理】于2020-04-24 17:44:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:44:50.000', '杨俊杰【经理部总经理】于2020-04-24 17:44:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:50:05.000', '杨俊杰【经理部总经理】于2020-04-24 17:50:05尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:50:07.000', '杨俊杰【经理部总经理】于2020-04-24 17:50:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:50:10.000', '杨俊杰【经理部总经理】于2020-04-24 17:50:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:50:15.000', '杨俊杰【经理部总经理】于2020-04-24 17:50:15尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:50:20.000', '杨俊杰【经理部总经理】于2020-04-24 17:50:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:50:24.000', '杨俊杰【经理部总经理】于2020-04-24 17:50:24尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:50:29.000', '杨俊杰【经理部总经理】于2020-04-24 17:50:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:50:31.000', '杨俊杰【经理部总经理】于2020-04-24 17:50:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 17:50:33.000', '杨俊杰【经理部总经理】于2020-04-24 17:50:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 22:57:08.000', 'WK010于2020/4/24 22:57:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:30:24.000', 'WK010于2020/4/7 14:30:24登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:33:43.000', '经理部总经理杨俊杰于2020/4/7 14:33:43查看了TS1194的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:34:22.000', '经理部总经理杨俊杰于2020/4/7 14:34:22帮助TS1081进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:36:33.000', '经理部总经理杨俊杰于2020/4/7 14:36:33帮助TS1081进行了消费商品:乐事薯片(原味)操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:36:38.000', '经理部总经理杨俊杰于2020/4/7 14:36:38帮助TS1081进行了消费商品:特级杜蕾斯操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:36:42.000', '经理部总经理杨俊杰于2020/4/7 14:36:42帮助TS1081进行了消费商品:青岛啤酒操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:36:57.000', '经理部总经理杨俊杰于2020/4/7 14:36:57帮助TS1081进行了消费商品:可口可乐操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:37:31.000', '经理部总经理杨俊杰于2020/4/7 14:37:31帮助TS1081进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:38:09.000', '杨俊杰【经理部总经理】于2020/4/7 14:38:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:38:10.000', '杨俊杰【经理部总经理】于2020/4/7 14:38:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:46:46.000', 'WK010于2020-04-07 14:46:46登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:50:05.000', 'WK010于2020/4/7 14:50:05登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:52:08.000', 'WK010于2020/4/7 14:52:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:54:11.000', '杨俊杰【经理部总经理】于2020/4/7 14:54:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:54:23.000', '杨俊杰【经理部总经理】于2020/4/7 14:54:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 15:27:29.000', 'WK010于07/04/2020 15:27:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 15:30:50.000', 'WK010于07/04/2020 15:30:50登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 15:32:06.000', '经理部总经理杨俊杰于07/04/2020 15:32:06查看了TS1005的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 15:42:24.000', 'WK010于07/04/2020 15:42:24登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-08 12:48:35.000', 'WK010于2020/4/8 12:48:35登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-08 12:49:20.000', '经理部总经理杨俊杰于2020/4/8 12:49:20帮助TS6666进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-08 21:42:25.000', 'WK010于2020/4/8 21:42:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-09 00:10:34.000', 'WK010于2020/4/9 0:10:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-09 14:37:46.000', 'WK010于2020/4/9 14:37:46登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-09 14:40:04.000', '经理部总经理杨俊杰于2020/4/9 14:40:04帮助TS6666进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-09 15:23:56.000', 'WK010于2020-04-09 15:23:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-09 16:26:51.000', 'WK010于2020-04-09 16:26:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-09 18:17:02.000', 'WK010于2020/4/9 18:17:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-09 18:17:06.000', '杨俊杰【经理部总经理】于2020/4/9 18:17:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 07:27:16.000', 'WK010于2020/4/10 7:27:16登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 08:10:55.000', 'WK010于2020/4/10 8:10:55登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 09:04:17.000', 'WK010于2020/4/10 9:04:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-27 18:04:01.000', 'WK010于2020/3/27 星期五 18:04:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-27 18:04:05.000', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:04:05尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-27 18:04:07.000', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:04:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-27 18:04:49.000', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:04:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-27 18:15:02.000', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-27 18:15:09.000', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-27 18:15:15.000', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:15尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-27 18:15:18.000', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-27 18:15:19.000', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:19尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-27 19:59:10.000', 'WK010于2020/3/27 19:59:10登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-28 12:15:02.000', 'WK010于2020/3/28 星期六 12:15:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-28 12:19:08.000', 'WK010于2020/3/28 星期六 12:19:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-28 12:20:08.000', '杨俊杰【经理部总经理】于2020/3/28 星期六 12:20:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-28 22:31:38.000', 'WK010于2020/3/28 22:31:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-30 13:11:07.000', 'WK010于2020/3/30 13:11:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-30 13:11:13.000', '杨俊杰【经理部总经理】于2020/3/30 13:11:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-30 13:40:42.000', 'WK010于2020/3/30 13:40:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-30 13:44:36.000', 'WK010于2020/3/30 13:44:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-30 13:45:08.000', 'WK010于2020/3/30 13:45:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-02 14:58:09.000', 'WK010于2020/4/2 14:58:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-02 14:59:00.000', '杨俊杰【经理部总经理】于2020/4/2 14:59:00尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-02 15:53:54.000', 'WK010于2020/4/2 15:53:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-02 15:54:06.000', 'WK010于2020/4/2 15:54:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 15:03:59.000', 'WK010于2020/4/6 15:03:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 15:04:46.000', 'WK010于2020/4/6 15:04:46登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 15:09:00.000', 'WK010于2020/4/6 15:09:00登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 15:13:26.000', 'WK010于2020/4/6 15:13:26登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 15:55:05.000', 'WK010于2020/4/6 15:55:05登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 15:56:20.000', 'WK010于2020/4/6 15:56:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 15:57:48.000', 'WK010于2020/4/6 15:57:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 15:58:09.000', '经理部总经理杨俊杰于2020/4/6 15:58:09帮助789798789进行了预订房间操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 18:13:48.000', 'WK010于2020/4/6 18:13:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:01:17.000', 'WK010于2020/4/6 19:01:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:03:38.000', 'WK010于2020/4/6 19:03:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:05:23.000', 'WK010于2020/4/6 19:05:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:07:43.000', 'WK010于2020/4/6 19:07:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:10:41.000', 'WK010于2020/4/6 19:10:41登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:13:45.000', 'WK010于2020/4/6 19:13:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:14:54.000', 'WK010于2020/4/6 19:14:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:16:01.000', 'WK010于2020/4/6 19:16:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:16:42.000', 'WK010于2020/4/6 19:16:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:17:36.000', 'WK010于2020/4/6 19:17:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:18:32.000', 'WK010于2020/4/6 19:18:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:21:24.000', 'WK010于2020/4/6 19:21:24登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:21:58.000', 'WK010于2020/4/6 19:21:58登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:23:43.000', 'WK010于2020/4/6 19:23:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:24:47.000', 'WK010于2020/4/6 19:24:47登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:27:53.000', 'WK010于2020/4/6 19:27:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:31:36.000', 'WK010于2020/4/6 19:31:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:32:46.000', 'WK010于2020/4/6 19:32:46登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:34:18.000', 'WK010于2020/4/6 19:34:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:35:15.000', 'WK010于2020/4/6 19:35:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:37:15.000', 'WK010于2020/4/6 19:37:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:38:51.000', 'WK010于2020/4/6 19:38:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:39:51.000', 'WK010于2020/4/6 19:39:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:40:29.000', 'WK010于2020/4/6 19:40:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 22:06:12.000', 'WK010于2020/4/6 22:06:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 22:07:33.000', '杨俊杰【经理部总经理】于2020/4/6 22:07:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 00:20:02.000', 'WK010于2020/4/7 0:20:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 00:21:47.000', '经理部总经理杨俊杰于2020/4/7 0:21:47帮助123123123进行了预订房间操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 00:24:22.000', '经理部总经理杨俊杰于2020/4/7 0:24:22帮助进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 00:24:31.000', '杨俊杰【经理部总经理】于2020/4/7 0:24:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 00:27:56.000', '经理部杨俊杰总经理杨俊杰于2020/4/7 0:27:56导出了后台用户信息!', '经理部杨俊杰总经理'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 09:05:16.000', '经理部总经理杨俊杰于2020/4/10 9:05:16查看了TS1003的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 09:05:20.000', '经理部总经理杨俊杰于2020/4/10 9:05:20查看了TS1003的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 09:34:56.000', 'WK010于2020-04-10 09:34:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 09:42:29.000', 'WK010于2020-04-10 09:42:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 09:44:08.000', '经理部总经理杨俊杰于2020-04-10 09:44:08帮助TS1001进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 10:32:06.000', 'WK010于2020/4/10 10:32:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 11:11:51.000', 'WK010于2020/4/10 11:11:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 13:02:54.000', 'WK010于2020/4/10 13:02:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 13:09:51.000', '杨俊杰【经理部总经理】于2020/4/10 13:09:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 14:09:11.000', 'WK010于2020/4/10 14:09:11登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 15:15:54.000', 'WK010于2020/4/10 15:15:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-11 12:54:06.000', 'WK010于2020/4/11 12:54:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-11 12:55:10.000', '杨俊杰【经理部总经理】于2020/4/11 12:55:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-11 16:02:28.000', 'WK010于2020-04-11 16:02:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-12 17:31:38.000', 'WK010于2020/4/12 17:31:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 11:35:32.000', 'WK010于2020/4/13 11:35:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 11:38:41.000', 'WK010于2020/4/13 11:38:41登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 11:53:43.000', 'WK010于2020/4/13 11:53:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 11:54:57.000', '杨俊杰【经理部总经理】于2020/4/13 11:54:57尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 15:31:10.000', 'WK010于2020/4/13 15:31:10登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 16:52:11.000', 'WK010于2020/4/13 16:52:11登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 16:56:13.000', 'WK010于2020/4/13 16:56:13登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 22:00:36.000', 'WK010于2020/4/13 22:00:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 22:04:59.000', 'WK010于2020/4/13 22:04:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 22:05:48.000', 'WK010于2020/4/13 22:05:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 22:06:04.000', 'WK010于2020/4/13 22:06:04登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 22:07:08.000', 'TS1001于2020/4/13 22:07:08进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 22:07:18.000', 'TS1001于2020/4/13 22:07:18进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 22:11:30.000', '杨俊杰【经理部总经理】于2020/4/13 22:11:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 22:11:52.000', '杨俊杰【经理部总经理】于2020/4/13 22:11:52尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 22:17:20.000', '经理部总经理杨俊杰于2020/4/13 22:17:20查看了TS6128的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 22:17:31.000', '经理部总经理杨俊杰于2020/4/13 22:17:31查看了TS6128的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 22:35:33.000', 'WK010于2020/4/13 22:35:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 22:41:32.000', 'WK010于2020/4/13 22:41:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 22:42:40.000', '杨俊杰【经理部总经理】于2020/4/13 22:42:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-13 23:10:50.000', 'WK010于2020/4/13 23:10:50登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 08:46:33.000', 'WK010于2020/4/14 8:46:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 09:55:58.000', 'WK010于2020-04-14 9:55:58登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 14:50:22.000', 'WK010于2020/4/14 14:50:22登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 14:51:27.000', 'WK010于2020/4/14 14:51:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 14:54:24.000', 'WK010于2020/4/14 14:54:24登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 14:56:19.000', 'WK010于2020/4/14 14:56:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 15:17:09.000', 'WK010于2020/4/14 15:17:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 15:22:12.000', 'WK010于2020/4/14 15:22:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 15:23:21.000', '经理部总经理杨俊杰于2020/4/14 15:23:21查看了TS1001的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 15:25:18.000', 'WK010于2020/4/14 15:25:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 15:28:31.000', 'WK010于2020/4/14 15:28:31登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:04:16.000', 'WK010于2020/4/14 16:04:16登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:22:00.000', 'WK010于2020/4/14 16:22:00登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:22:28.000', '经理部总经理杨俊杰于2020/4/14 16:22:28帮助TS1251进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:23:22.000', '经理部总经理杨俊杰于2020/4/14 16:23:22帮助TS1266进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:24:54.000', 'WK010于2020/4/14 16:24:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:25:32.000', '经理部总经理杨俊杰于2020/4/14 16:25:32帮助TS1081进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:40:00.000', 'WK010于2020/4/14 16:40:00登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:41:33.000', 'WK010于2020/4/14 16:41:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:42:14.000', 'WK010于2020/4/14 16:42:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:43:27.000', 'WK010于2020/4/14 16:43:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:43:56.000', 'WK010于2020/4/14 16:43:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:44:41.000', 'WK010于2020/4/14 16:44:41登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 15:10:03.000', 'WK010于2020/4/6 15:10:03登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:45:33.000', 'WK010于2020/4/14 16:45:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:46:20.000', '经理部总经理杨俊杰于2020/4/14 16:46:20帮助TS1779进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:47:18.000', 'WK010于2020/4/14 16:47:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:48:06.000', 'WK010于2020/4/14 16:48:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:49:16.000', 'WK010于2020/4/14 16:49:16登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:52:22.000', 'WK010于2020/4/14 16:52:22登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:53:10.000', 'WK010于2020/4/14 16:53:10登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:54:32.000', 'WK010于2020/4/14 16:54:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:55:39.000', 'WK010于2020/4/14 16:55:39登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:02:46.000', 'WK010于2020/4/14 17:02:46登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:10:45.000', 'WK010于2020/4/14 17:10:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:22:54.000', 'WK010于2020/4/14 17:22:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:24:55.000', 'WK010于2020/4/14 17:24:55登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:26:12.000', 'WK010于2020/4/14 17:26:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:29:28.000', 'WK010于2020/4/14 17:29:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:30:17.000', 'WK010于2020/4/14 17:30:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:33:06.000', 'WK010于2020/4/14 17:33:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:05:06.000', 'WK010于2020/4/14 18:05:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:06:45.000', 'WK010于2020/4/14 18:06:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:07:26.000', 'WK010于2020/4/14 18:07:26登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:12:55.000', 'WK010于2020/4/14 18:12:55登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:13:19.000', 'TS1251于2020/4/14 18:13:19进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:22:28.000', 'WK010于2020/4/14 18:22:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:22:48.000', 'TS1266于2020/4/14 18:22:48进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:24:23.000', 'WK010于2020/4/14 18:24:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:24:42.000', 'TS1081于2020/4/14 18:24:42进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:31:50.000', 'WK010于2020/4/14 18:31:50登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:33:29.000', 'WK010于2020/4/14 18:33:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:33:48.000', 'TS1194于2020/4/14 18:33:48进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:37:45.000', 'WK010于2020/4/14 18:37:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:38:13.000', 'TS1364于2020/4/14 18:38:13进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:53:32.000', 'WK010于2020/4/14 18:53:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 18:57:48.000', 'WK010于2020/4/14 18:57:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:02:26.000', 'WK010于2020/4/14 19:02:26登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:06:24.000', 'WK010于2020/4/14 19:06:24登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:07:43.000', 'WK010于2020/4/14 19:07:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:09:20.000', 'WK010于2020/4/14 19:09:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:24:41.000', 'WK010于2020/4/14 19:24:41登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:25:52.000', 'WK010于2020/4/14 19:25:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:29:07.000', 'WK010于2020/4/14 19:29:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:31:12.000', 'WK010于2020/4/14 19:31:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:32:40.000', 'WK010于2020/4/14 19:32:40登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:34:14.000', 'WK010于2020/4/14 19:34:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:35:11.000', 'WK010于2020/4/14 19:35:11登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:38:53.000', 'WK010于2020/4/14 19:38:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:39:12.000', 'TS1364于2020/4/14 19:39:12进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:40:11.000', 'WK010于2020/4/14 19:40:11登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:40:30.000', 'TS1364于2020/4/14 19:40:30进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:41:34.000', '经理部总经理杨俊杰于2020/4/14 19:41:34帮助TS1364进行了消费商品:可口可乐操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:42:31.000', 'WK010于2020/4/14 19:42:31登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:43:43.000', 'WK010于2020/4/14 19:43:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:44:51.000', 'WK010于2020/4/14 19:44:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 19:45:48.000', '经理部总经理杨俊杰于2020/4/14 19:45:48帮助TS1005进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 20:04:14.000', 'WK010于2020/4/14 20:04:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 20:17:41.000', 'WK010于2020/4/14 20:17:41登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 20:18:11.000', 'WK010于2020/4/14 20:18:11登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 20:24:34.000', 'WK010于2020/4/14 20:24:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 20:25:41.000', 'WK010于2020/4/14 20:25:41登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-15 13:09:39.000', 'WK010于2020/4/15 13:09:39登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-15 13:09:58.000', '经理部总经理杨俊杰于2020/4/15 13:09:58查看了的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-15 13:10:04.000', '经理部总经理杨俊杰于2020/4/15 13:10:04查看了的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-15 14:29:24.000', 'WK010于2020/4/15 14:29:24登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-15 14:37:42.000', 'WK010于2020/4/15 14:37:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-15 15:12:06.000', 'WK010于2020/4/15 15:12:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-15 17:06:22.000', 'WK010于2020/4/15 17:06:22登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 18:32:45.000', 'WK010于2020/4/16 18:32:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 18:36:51.000', 'WK010于2020/4/16 18:36:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 18:40:31.000', 'WK010于2020/4/16 18:40:31登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 19:19:56.000', 'WK010于2020/4/16 19:19:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 19:26:51.000', 'WK010于2020/4/16 19:26:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 19:28:20.000', 'WK010于2020/4/16 19:28:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 19:29:27.000', 'WK010于2020/4/16 19:29:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 19:29:59.000', 'WK010于2020/4/16 19:29:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 19:30:53.000', 'WK010于2020/4/16 19:30:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 19:36:21.000', 'WK010于2020/4/16 19:36:21登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 20:23:21.000', 'WK010于2020/4/16 20:23:21登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 20:23:27.000', '杨俊杰【经理部总经理】于2020/4/16 20:23:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 20:24:26.000', 'WK010于2020/4/16 20:24:26登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 20:24:31.000', '杨俊杰【经理部总经理】于2020/4/16 20:24:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 20:30:26.000', 'WK010于2020/4/16 20:30:26登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 20:36:26.000', 'WK010于2020/4/16 20:36:26登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 20:38:56.000', '于2020/4/16 20:38:56登入了系统!', ''); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 20:47:00.000', 'WK010于2020/4/16 20:47:00登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 20:48:25.000', 'WK010于2020/4/16 20:48:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 20:49:56.000', 'WK010于2020/4/16 20:49:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 20:50:25.000', 'WK010于2020/4/16 20:50:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 20:51:23.000', 'WK010于2020/4/16 20:51:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 20:54:14.000', 'WK010于2020/4/16 20:54:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 20:59:31.000', 'WK010于2020-04-16 20:59:31登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 22:20:55.000', 'WK010于2020/4/16 22:20:55登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 22:38:57.000', 'WK010于2020/4/16 22:38:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 22:46:38.000', 'WK010于2020/4/16 22:46:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:20:34.000', 'WK010于2020/4/16 23:20:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:21:10.000', '杨俊杰【经理部总经理】于2020/4/16 23:21:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:36:55.000', 'WK010于2020/4/16 23:36:55登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:37:01.000', '杨俊杰【经理部总经理】于2020/4/16 23:37:01尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:46:30.000', 'WK010于2020/4/16 23:46:30登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:46:36.000', '杨俊杰【经理部总经理】于2020/4/16 23:46:36尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:50:19.000', 'WK010于2020/4/16 23:50:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:50:24.000', '杨俊杰【经理部总经理】于2020/4/16 23:50:24尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:52:39.000', 'WK010于2020/4/16 23:52:39登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:55:02.000', 'WK010于2020/4/16 23:55:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 00:29:53.000', 'WK010于2020/4/17 0:29:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 00:30:25.000', 'WK010于2020/4/17 0:30:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 00:50:57.000', 'WK010于2020/4/17 0:50:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 13:02:49.000', 'WK010于2020/4/17 13:02:49登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 13:31:49.000', 'WK010于2020/4/17 13:31:49登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 09:38:09.000', 'WK010于2020/4/10 9:38:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-27 18:16:10.000', 'WK010于2020/3/27 18:16:10登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-03-27 18:16:13.000', '杨俊杰【经理部总经理】于2020/3/27 18:16:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 16:02:24.000', 'WK010于2020/4/6 16:02:24登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 16:05:48.000', 'WK010于2020/4/6 16:05:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 16:06:13.000', 'WK010于2020/4/6 16:06:13登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 16:09:26.000', 'WK010于2020/4/6 16:09:26登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 16:09:56.000', 'WK010于2020/4/6 16:09:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 16:18:17.000', 'WK010于2020/4/6 16:18:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 16:19:20.000', 'WK010于2020/4/6 16:19:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 16:41:33.000', 'WK010于2020/4/6 16:41:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 16:42:18.000', 'WK010于2020/4/6 16:42:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 16:44:01.000', 'WK010于2020/4/6 16:44:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 16:49:22.000', 'WK010于2020/4/6 16:49:22登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 16:50:36.000', 'WK010于2020/4/6 16:50:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 17:04:41.000', 'WK010于2020/4/6 17:04:41登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 17:05:23.000', 'WK010于2020/4/6 17:05:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 17:08:39.000', 'WK010于2020/4/6 17:08:39登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 17:18:18.000', 'WK010于2020/4/6 17:18:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 17:19:02.000', 'WK010于2020/4/6 17:19:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 17:20:10.000', 'WK010于2020/4/6 17:20:10登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 17:24:02.000', 'WK010于2020/4/6 17:24:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 17:24:51.000', 'WK010于2020/4/6 17:24:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 17:41:29.000', 'WK010于2020/4/6 17:41:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 17:44:15.000', 'WK010于2020/4/6 17:44:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 17:45:55.000', 'WK010于2020/4/6 17:45:55登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 17:59:46.000', 'WK010于2020/4/6 17:59:46登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:42:17.000', 'WK010于2020/4/6 19:42:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:42:57.000', 'WK010于2020/4/6 19:42:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:44:45.000', 'WK010于2020/4/6 19:44:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:45:38.000', 'WK010于2020/4/6 19:45:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:47:57.000', 'WK010于2020/4/6 19:47:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:49:08.000', 'WK010于2020/4/6 19:49:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:50:11.000', 'WK010于2020/4/6 19:50:11登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:51:01.000', 'WK010于2020/4/6 19:51:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:52:35.000', 'WK010于2020/4/6 19:52:35登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:53:55.000', 'WK010于2020/4/6 19:53:55登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:56:53.000', 'WK010于2020/4/6 19:56:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:57:15.000', 'WK010于2020/4/6 19:57:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:58:46.000', 'WK010于2020/4/6 19:58:46登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:59:20.000', '经理部总经理杨俊杰于2020/4/6 19:59:20帮助TS1084进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 19:59:34.000', 'WK010于2020/4/6 19:59:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:00:56.000', 'WK010于2020/4/6 20:00:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:02:33.000', 'WK010于2020/4/6 20:02:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:03:54.000', 'WK010于2020/4/6 20:03:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:04:43.000', 'WK010于2020/4/6 20:04:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:08:48.000', 'WK010于2020/4/6 20:08:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:09:28.000', 'WK010于2020/4/6 20:09:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:12:48.000', 'WK010于2020/4/6 20:12:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:19:53.000', 'WK010于2020/4/6 20:19:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:21:01.000', 'WK010于2020/4/6 20:21:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:22:30.000', 'WK010于2020/4/6 20:22:30登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:23:21.000', 'WK010于2020/4/6 20:23:21登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:24:20.000', 'WK010于2020/4/6 20:24:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:24:34.000', '经理部总经理杨俊杰于2020/4/6 20:24:34帮助TS1074进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:25:00.000', 'WK010于2020/4/6 20:25:00登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:25:14.000', '经理部总经理杨俊杰于2020/4/6 20:25:14帮助TS1634进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 20:25:30.000', '经理部总经理杨俊杰于2020/4/6 20:25:30帮助TS1765进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:30:34.000', 'WK010于2020/4/14 17:30:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:34:45.000', 'WK010于2020/4/14 17:34:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:41:31.000', 'WK010于2020/4/16 23:41:31登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:42:05.000', '杨俊杰【经理部总经理】于2020/4/16 23:42:05尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:42:29.000', '总经理杨俊杰于2020/4/16 23:42:29进行资产录入,资产编号为:CN6816', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:46:35.000', 'TS1005于2020/4/16 23:46:35进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:46:52.000', 'TS1005于2020/4/16 23:46:52进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:47:21.000', 'TS1005于2020/4/16 23:47:21进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:47:47.000', 'TS1005于2020/4/16 23:47:47进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 00:52:35.000', 'WK010于2020/4/17 0:52:35登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 00:52:56.000', '杨俊杰【经理部总经理】于2020/4/17 0:52:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 13:36:09.000', 'WK010于2020/4/17 13:36:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 13:40:44.000', 'WK010于2020/4/17 13:40:44登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 13:42:57.000', 'WK010于2020/4/17 13:42:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 13:45:35.000', 'WK010于2020-04-17 13:45:35登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 13:49:28.000', 'WK010于2020/4/17 13:49:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 13:54:06.000', 'WK010于2020/4/17 13:54:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 13:55:27.000', 'WK010于2020/4/17 13:55:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 14:06:21.000', 'WK010于2020/4/17 14:06:21登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 14:07:35.000', 'WK010于2020/4/17 14:07:35登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 14:08:09.000', '杨俊杰【经理部总经理】于2020/4/17 14:08:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 14:09:34.000', 'WK010于2020/4/17 14:09:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 14:09:38.000', '杨俊杰【经理部总经理】于2020/4/17 14:09:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 14:12:18.000', 'WK010于2020/4/17 14:12:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 14:12:23.000', '杨俊杰【经理部总经理】于2020/4/17 14:12:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 14:15:55.000', 'WK010于2020/4/17 14:15:55登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 14:16:03.000', '杨俊杰【经理部总经理】于2020/4/17 14:16:03尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 14:17:57.000', 'WK010于2020/4/17 14:17:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 14:18:01.000', '杨俊杰【经理部总经理】于2020/4/17 14:18:01尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 18:17:16.000', 'WK010于2020/4/6 18:17:16登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 18:19:53.000', 'WK010于2020/4/6 18:19:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 18:23:53.000', 'WK010于2020/4/6 18:23:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 18:24:34.000', 'WK010于2020/4/6 18:24:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 18:25:03.000', 'WK010于2020/4/6 18:25:03登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 18:25:36.000', 'WK010于2020/4/6 18:25:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 18:26:34.000', 'WK010于2020/4/6 18:26:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 18:27:00.000', 'WK010于2020/4/6 18:27:00登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 18:27:35.000', 'WK010于2020/4/6 18:27:35登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-06 18:28:03.000', 'WK010于2020/4/6 18:28:03登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:35:27.000', 'WK010于2020-04-07 14:35:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:40:57.000', 'WK010于2020/4/7 14:40:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-07 14:47:21.000', 'WK010于2020/4/7 14:47:21登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-09 15:25:59.000', 'WK010于2020/4/9 15:25:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 09:47:15.000', 'WK010于2020-04-10 09:47:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 09:54:07.000', 'WK010于2020/4/10 9:54:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 10:14:26.000', 'WK010于2020/4/10 10:14:26登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 10:16:24.000', 'WK010于2020/4/10 10:16:24登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 10:22:01.000', 'WK010于2020/4/10 10:22:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 10:22:40.000', '经理部总经理杨俊杰于2020/4/10 10:22:40查看了TS1074的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 10:22:47.000', '经理部总经理杨俊杰于2020/4/10 10:22:47查看了TS1251的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-10 10:24:16.000', '经理部总经理杨俊杰于2020/4/10 10:24:16查看了TS1387的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 14:57:19.000', 'WK010于2020/4/14 14:57:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:56:17.000', 'WK010于2020/4/14 16:56:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:57:09.000', 'WK010于2020/4/14 16:57:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 16:57:52.000', 'WK010于2020/4/14 16:57:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:07:51.000', 'WK010于2020/4/14 17:07:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:10:58.000', 'WK010于2020/4/14 17:10:58登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:12:17.000', 'WK010于2020/4/14 17:12:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:16:33.000', 'WK010于2020/4/14 17:16:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:17:01.000', 'WK010于2020/4/14 17:17:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:17:49.000', '经理部总经理杨俊杰于2020/4/14 17:17:49查看了TS1387的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:22:34.000', 'WK010于2020/4/14 17:22:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-14 17:24:28.000', 'WK010于2020/4/14 17:24:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:25:12.000', 'WK010于2020/4/16 23:25:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:25:18.000', '杨俊杰【经理部总经理】于2020/4/16 23:25:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:26:47.000', 'WK010于2020/4/16 23:26:47登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:26:53.000', '杨俊杰【经理部总经理】于2020/4/16 23:26:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:35:17.000', 'WK010于2020/4/16 23:35:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:35:35.000', '杨俊杰【经理部总经理】于2020/4/16 23:35:35尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-16 23:57:51.000', 'WK010于2020/4/16 23:57:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 15:57:49.000', 'WK010于2020/4/17 15:57:49登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 17:08:41.000', 'WK010于2020-04-17 17:08:41登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 17:26:59.000', 'WK010于2020-04-17 17:26:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 19:54:57.000', 'WK010于2020/4/17 19:54:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-17 22:11:49.000', 'WK010于2020/4/17 22:11:49登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 00:16:53.000', 'WK010于2020/4/18 0:16:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 00:17:16.000', '杨俊杰【经理部总经理】于2020/4/18 0:17:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 00:46:57.000', 'WK010于2020/4/18 0:46:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 00:47:03.000', '杨俊杰【经理部总经理】于2020/4/18 0:47:03尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 00:48:31.000', 'WK010于2020/4/18 0:48:31登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 00:48:38.000', '杨俊杰【经理部总经理】于2020/4/18 0:48:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 00:50:47.000', 'WK010于2020/4/18 0:50:47登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 00:50:51.000', '杨俊杰【经理部总经理】于2020/4/18 0:50:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 00:51:45.000', 'WK010于2020/4/18 0:51:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 00:51:49.000', '杨俊杰【经理部总经理】于2020/4/18 0:51:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 00:53:56.000', 'WK010于2020/4/18 0:53:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 00:54:44.000', '杨俊杰【经理部总经理】于2020/4/18 0:54:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 01:08:02.000', 'WK010于2020/4/18 1:08:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 01:08:09.000', '杨俊杰【经理部总经理】于2020/4/18 1:08:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 01:11:20.000', 'WK010于2020/4/18 1:11:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 01:11:25.000', '杨俊杰【经理部总经理】于2020/4/18 1:11:25尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 21:38:57.000', 'WK010于2020/4/18 21:38:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-18 21:39:29.000', 'WK010于2020/4/18 21:39:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:23:09.000', 'WK010于2020/4/19 0:23:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:23:18.000', '杨俊杰【经理部总经理】于2020/4/19 0:23:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:25:07.000', 'WK010于2020/4/19 0:25:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:25:12.000', '杨俊杰【经理部总经理】于2020/4/19 0:25:12尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:29:15.000', 'WK010于2020/4/19 0:29:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:29:23.000', '杨俊杰【经理部总经理】于2020/4/19 0:29:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:30:57.000', 'WK010于2020/4/19 0:30:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:31:03.000', '杨俊杰【经理部总经理】于2020/4/19 0:31:03尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:34:19.000', 'WK010于2020/4/19 0:34:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:34:43.000', '杨俊杰【经理部总经理】于2020/4/19 0:34:43尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:39:58.000', 'WK010于2020/4/19 0:39:58登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:40:04.000', '杨俊杰【经理部总经理】于2020/4/19 0:40:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:42:23.000', 'WK010于2020/4/19 0:42:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:42:29.000', '杨俊杰【经理部总经理】于2020/4/19 0:42:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:46:44.000', 'WK010于2020/4/19 0:46:44登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:46:57.000', '杨俊杰【经理部总经理】于2020/4/19 0:46:57尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:47:17.000', '杨俊杰总经理于2020/4/19 0:47:17进行了添加员工操作,员工编号为:WK6800!', '杨俊杰总经理'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:50:08.000', 'WK010于2020/4/19 0:50:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:50:13.000', '杨俊杰【经理部总经理】于2020/4/19 0:50:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:50:31.000', '杨俊杰总经理于2020/4/19 0:50:31进行了添加员工操作,员工编号为:WK2751!', '杨俊杰总经理'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 01:01:45.000', 'WK010于2020/4/19 1:01:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 01:01:50.000', '杨俊杰【经理部总经理】于2020/4/19 1:01:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 01:08:04.000', 'WK010于2020/4/19 1:08:04登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 11:06:52.000', 'WK010于2020/4/19 11:06:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 11:08:09.000', '杨俊杰【经理部总经理】于2020/4/19 11:08:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 11:13:05.000', 'WK010于2020/4/19 11:13:05登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 11:13:10.000', '杨俊杰【经理部总经理】于2020/4/19 11:13:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 12:04:01.000', 'WK010于2020/4/19 12:04:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:10:57.000', 'WK010于2020/4/19 0:10:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:11:09.000', '杨俊杰【经理部总经理】于2020/4/19 0:11:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:12:58.000', 'WK010于2020/4/19 0:12:58登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 00:13:04.000', '杨俊杰【经理部总经理】于2020/4/19 0:13:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 11:05:25.000', 'WK010于2020/4/19 11:05:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 16:23:04.000', 'WK010于2020/4/19 16:23:04登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 17:14:48.000', 'WK010于2020/4/19 17:14:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 18:44:42.000', 'WK010于2020/4/19 18:44:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 19:10:43.000', 'WK010于2020/4/19 19:10:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 19:11:21.000', 'WK010于2020/4/19 19:11:21登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 11:08:12.000', 'WK010于2020/4/20 11:08:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 11:09:53.000', '杨俊杰【经理部总经理】于2020/4/20 11:09:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 11:09:55.000', '杨俊杰【经理部总经理】于2020/4/20 11:09:55尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 11:25:40.000', 'WK010于2020-04-20 11:25:40登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 11:25:44.000', '杨俊杰【经理部总经理】于2020-04-20 11:25:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 11:28:58.000', 'WK010于2020-04-20 11:28:58登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 11:29:06.000', '杨俊杰【经理部总经理】于2020-04-20 11:29:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 12:24:12.000', 'WK010于2020-04-20 12:24:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 12:24:16.000', '杨俊杰【经理部总经理】于2020-04-20 12:24:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 12:33:23.000', 'WK010于2020/4/20 12:33:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 15:47:09.000', 'WK010于2020/4/20 15:47:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 15:48:59.000', 'WK010于2020/4/20 15:48:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 15:56:40.000', 'WK010于2020-04-20 15:56:40登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 15:57:11.000', '杨俊杰【经理部总经理】于2020-04-20 15:57:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 16:10:04.000', 'WK010于2020-04-20 16:10:04登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 16:10:15.000', '杨俊杰【经理部总经理】于2020-04-20 16:10:15尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 16:13:28.000', 'WK010于2020-04-20 16:13:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 16:13:31.000', '杨俊杰【经理部总经理】于2020-04-20 16:13:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 16:21:01.000', 'WK010于2020-04-20 16:21:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 16:21:04.000', '杨俊杰【经理部总经理】于2020-04-20 16:21:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 16:23:13.000', 'WK010于2020-04-20 16:23:13登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 16:23:16.000', '杨俊杰【经理部总经理】于2020-04-20 16:23:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 22:49:34.000', 'WK010于2020-04-20 22:49:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 22:54:13.000', '经理部总经理杨俊杰于2020-04-20 22:54:13查看了TS6128的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 22:55:36.000', '经理部总经理杨俊杰于2020-04-20 22:55:36帮助TS1032进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-20 22:57:00.000', 'WK010于2020-04-20 22:57:00登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 23:02:27.000', 'WK010于2020/4/24 23:02:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 23:04:02.000', 'WK010于2020/4/24 23:04:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-24 23:09:54.000', 'WK010于2020/4/24 23:09:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-25 13:54:51.000', 'WK010于2020/4/25 星期六 13:54:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-25 16:28:16.000', 'WK010于2020/4/25 16:28:16登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-25 16:29:15.000', '经理部总经理杨俊杰于2020/4/25 16:29:15查看了的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-25 16:33:55.000', '经理部总经理杨俊杰于2020/4/25 16:33:55帮助12354697812进行了预订房间操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-25 18:42:59.000', 'WK010于2020/4/25 18:42:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-25 19:37:32.000', 'WK010于2020/4/25 19:37:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-25 19:48:12.000', 'WK010于2020/4/25 19:48:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-25 19:48:49.000', 'WK010于2020/4/25 19:48:49登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-25 20:18:56.000', 'WK010于2020/4/25 20:18:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 10:00:31.000', 'WK010于2020/4/26 10:00:31登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 10:32:42.000', 'WK010于2020/4/26 10:32:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 10:36:27.000', '经理部总经理杨俊杰于2020/4/26 10:36:27帮助TS1001进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 10:36:53.000', '经理部总经理杨俊杰于2020/4/26 10:36:53帮助TS1032进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 10:56:36.000', 'WK010于2020/4/26 10:56:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 13:46:30.000', 'WK010于2020/4/26 13:46:30登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 13:49:18.000', '经理部总经理杨俊杰于2020/4/26 13:49:18帮助TS1081进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 13:49:40.000', '杨俊杰【经理部总经理】于2020/4/26 13:49:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 13:51:14.000', 'WK010于2020/4/26 13:51:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 13:52:10.000', 'WK010于2020/4/26 13:52:10登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 13:52:53.000', 'WK010于2020/4/26 13:52:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 13:54:04.000', 'WK010于2020/4/26 13:54:04登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 13:54:38.000', 'WK010于2020/4/26 13:54:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 13:59:02.000', 'WK010于2020/4/26 13:59:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 14:03:15.000', 'WK010于2020/4/26 14:03:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 14:06:09.000', 'TS1001于2020/4/26 14:06:09进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 14:11:18.000', 'WK010于2020/4/26 14:11:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 14:12:01.000', 'WK010于2020/4/26 14:12:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 14:14:07.000', 'WK010于2020/4/26 14:14:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 14:40:07.000', 'WK010于2020/4/26 14:40:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 15:21:18.000', 'WK010于2020/4/26 15:21:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 17:35:51.000', 'WK010于2020/4/26 17:35:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 18:45:27.000', 'WK010于2020/4/26 18:45:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 19:05:28.000', 'WK010于2020/4/26 19:05:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 19:06:24.000', '经理部总经理杨俊杰于2020/4/26 19:06:24帮助TS1336进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 23:17:46.000', 'WK010于2020/4/26 23:17:46登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 23:21:18.000', 'WK010于2020/4/26 23:21:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-28 10:28:07.000', 'WK010于2020/4/28 10:28:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-28 10:30:33.000', 'WK010于2020/4/28 10:30:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-29 00:12:42.000', 'WK010于2020/4/29 0:12:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-29 00:13:00.000', '杨俊杰【经理部总经理】于2020/4/29 0:13:00尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-29 00:14:27.000', '杨俊杰【经理部总经理】于2020/4/29 0:14:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-29 08:25:29.000', 'WK010于2020-04-29 08:25:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-29 08:35:52.000', 'WK010于2020-04-29 08:35:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-29 12:36:36.000', 'WK010于2020/4/29 12:36:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-29 12:37:21.000', 'WK001于2020/4/29 12:37:21登入了系统!', 'WK001'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-29 12:40:46.000', '人事部职员谭国平于2020/4/29 12:40:46帮助TS1480进行了消费商品:火腿肠操作!', '人事部职员谭国平'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-29 12:41:00.000', '人事部职员谭国平于2020/4/29 12:41:00帮助TS1480进行了消费商品:雪碧操作!', '人事部职员谭国平'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-29 12:41:14.000', '人事部职员谭国平于2020/4/29 12:41:14帮助TS1480进行了消费商品:92拉菲操作!', '人事部职员谭国平'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-29 22:57:10.000', 'WK010于2020/4/29 22:57:10登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-01 00:24:06.000', 'WK010于2020/5/1 0:24:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-01 08:47:30.000', 'WK010于2020/5/1 8:47:30登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-02 10:54:00.000', 'WK010于2020/5/2 10:54:00登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-03 19:55:35.000', 'WK010于2020/5/3 19:55:35登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-03 19:55:55.000', '杨俊杰【经理部总经理】于2020/5/3 19:55:55尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-03 19:59:02.000', '经理部总经理杨俊杰于2020/5/3 19:59:02帮助TS1002进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-03 19:59:23.000', '经理部总经理杨俊杰于2020/5/3 19:59:23帮助TS1003进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-03 19:59:46.000', '经理部总经理杨俊杰于2020/5/3 19:59:46帮助TS1005进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-03 20:05:46.000', 'WK010于2020/5/3 20:05:46登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-03 20:11:00.000', '杨俊杰【经理部总经理】于2020/5/3 20:11:00尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 17:10:57.000', 'WK010于2020/4/19 17:10:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 17:13:36.000', 'WK010于2020/4/19 17:13:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 17:14:05.000', 'WK010于2020/4/19 17:14:05登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 17:14:24.000', 'WK010于2020/4/19 17:14:24登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 17:14:43.000', 'WK010于2020/4/19 17:14:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 18:40:57.000', 'WK010于2020/4/19 18:40:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 19:19:00.000', 'WK010于2020/4/19 19:19:00登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 19:21:43.000', 'WK010于2020/4/19 19:21:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 19:23:07.000', 'WK010于2020/4/19 19:23:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 19:25:08.000', 'WK010于2020/4/19 19:25:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 19:25:58.000', 'WK010于2020/4/19 19:25:58登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 19:26:52.000', 'WK010于2020/4/19 19:26:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 20:18:19.000', 'WK010于2020/4/19 20:18:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 20:18:45.000', '杨俊杰【经理部总经理】于2020/4/19 20:18:45尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 20:21:17.000', 'WK010于2020/4/19 20:21:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 20:21:23.000', '杨俊杰【经理部总经理】于2020/4/19 20:21:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 20:23:40.000', 'WK010于2020/4/19 20:23:40登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 20:23:47.000', '杨俊杰【经理部总经理】于2020/4/19 20:23:47尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 20:43:57.000', 'WK010于2020/4/19 20:43:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 20:44:06.000', '杨俊杰【经理部总经理】于2020/4/19 20:44:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 20:55:26.000', 'WK010于2020/4/19 20:55:26登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 20:55:30.000', '杨俊杰【经理部总经理】于2020/4/19 20:55:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 21:16:41.000', 'WK010于2020/4/19 21:16:41登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 21:16:53.000', '杨俊杰【经理部总经理】于2020/4/19 21:16:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 21:18:27.000', 'WK010于2020/4/19 21:18:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 21:18:30.000', '杨俊杰【经理部总经理】于2020/4/19 21:18:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 21:20:06.000', 'WK010于2020/4/19 21:20:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 21:20:18.000', '杨俊杰【经理部总经理】于2020/4/19 21:20:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-19 23:00:32.000', 'WK010于2020/4/19 23:00:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 12:51:34.000', 'WK010于2020/5/4 12:51:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 12:51:54.000', '杨俊杰【经理部总经理】于2020/5/4 12:51:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 12:56:48.000', 'WK010于2020/5/4 12:56:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 12:56:57.000', '杨俊杰【经理部总经理】于2020/5/4 12:56:57尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:00:18.000', '杨俊杰总经理于2020/5/4 13:00:18进行了添加员工操作,员工编号为:WK775!', '杨俊杰总经理'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:01:48.000', '杨俊杰总经理于2020/5/4 13:01:48对员工:凌峰进行了奖罚情况录入!', '杨俊杰总经理'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:02:45.000', '杨俊杰总经理于2020/5/4 13:02:45将员工:老铁晋升为人事部职员', '杨俊杰总经理'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:04:49.000', '经理部总经理杨俊杰于2020/5/4 13:04:49帮助TS1480进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:05:02.000', '杨俊杰【经理部总经理】于2020/5/4 13:05:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:07:13.000', 'WK010于2020/5/4 13:07:13登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:07:57.000', '经理部总经理杨俊杰于2020/5/4 13:07:57帮助TS1032进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:11:18.000', 'WK010于2020/5/4 13:11:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:12:40.000', '经理部总经理杨俊杰于2020/5/4 13:12:40帮助TS1074进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:36:39.000', 'WK010于2020/5/4 13:36:39登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:41:26.000', '杨俊杰【经理部总经理】于2020/5/4 13:41:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:43:22.000', 'WK010于2020/5/4 13:43:22登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:43:30.000', '杨俊杰【经理部总经理】于2020/5/4 13:43:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:43:51.000', '杨俊杰【经理部总经理】于2020/5/4 13:43:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:45:21.000', 'WK010于2020/5/4 13:45:21登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:45:32.000', '杨俊杰【经理部总经理】于2020/5/4 13:45:32尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:45:49.000', '杨俊杰【经理部总经理】于2020/5/4 13:45:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:47:07.000', 'WK010于2020/5/4 13:47:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:47:12.000', '杨俊杰【经理部总经理】于2020/5/4 13:47:12尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:48:41.000', 'WK010于2020/5/4 13:48:41登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:48:50.000', '杨俊杰【经理部总经理】于2020/5/4 13:48:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:49:04.000', '杨俊杰【经理部总经理】于2020/5/4 13:49:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:58:21.000', 'WK010于2020/5/4 13:58:21登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 13:58:28.000', '杨俊杰【经理部总经理】于2020/5/4 13:58:28尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 14:18:52.000', 'WK010于2020/5/4 14:18:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 14:19:02.000', '杨俊杰【经理部总经理】于2020/5/4 14:19:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 14:20:01.000', 'WK010于2020/5/4 14:20:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 15:47:32.000', 'WK010于2020/5/4 15:47:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 15:47:41.000', '杨俊杰【经理部总经理】于2020/5/4 15:47:41尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 15:57:19.000', 'WK010于2020/5/4 15:57:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 15:57:27.000', '杨俊杰【经理部总经理】于2020/5/4 15:57:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 16:05:09.000', 'WK010于2020/5/4 16:05:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 16:05:25.000', '杨俊杰【经理部总经理】于2020/5/4 16:05:25尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 16:10:03.000', 'WK010于2020/5/4 16:10:03登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 16:10:13.000', '杨俊杰【经理部总经理】于2020/5/4 16:10:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 16:19:52.000', 'WK010于2020/5/4 16:19:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 16:21:54.000', '杨俊杰【经理部总经理】于2020/5/4 16:21:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-04 17:03:47.000', 'WK010于2020/5/4 17:03:47登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-06 14:22:14.000', 'WK010于2020/5/6 14:22:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-06 20:00:35.000', 'WK010于2020/5/6 20:00:35登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-07 13:18:04.000', 'WK010于7.5.2020 13:18:04登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-07 13:18:16.000', '杨俊杰【经理部总经理】于7.5.2020 13:18:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-07 13:56:11.000', 'TS1002于7.5.2020 13:56:11进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-07 14:01:30.000', 'TS1003于7.5.2020 14:01:30进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-07 14:03:48.000', '经理部总经理杨俊杰于7.5.2020 14:03:48查看了TS1043的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-07 14:03:53.000', '经理部总经理杨俊杰于7.5.2020 14:03:53查看了TS1043的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-07 14:05:07.000', '经理部总经理杨俊杰于7.5.2020 14:05:07帮助TS1043进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-07 15:13:42.000', 'WK010于2020/5/7 15:13:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-07 15:16:07.000', '经理部总经理杨俊杰于2020/5/7 15:16:07查看了TS1239的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-07 15:16:57.000', '经理部总经理杨俊杰于2020/5/7 15:16:57帮助TS1239进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-07 15:18:51.000', '经理部总经理杨俊杰于2020/5/7 15:18:51帮助TS1862进行了消费商品:三只松鼠夏威夷坚果操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-07 18:12:04.000', 'WK010于2020/5/7 18:12:04登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-07 18:13:25.000', '经理部总经理杨俊杰于2020/5/7 18:13:25查看了TS1571的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-07 18:13:37.000', '经理部总经理杨俊杰于2020/5/7 18:13:37查看了TS1634的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-08 14:32:56.000', 'WK010于2020/5/8 14:32:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-08 14:35:17.000', 'WK010于2020/5/8 14:35:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-08 15:07:47.000', 'WK010于2020/5/8 15:07:47登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:07:51.000', 'WK010于2020-04-23 16:07:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:09:39.000', '杨俊杰【经理部总经理】于2020-04-23 16:09:39尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:12:28.000', '杨俊杰【经理部总经理】于2020-04-23 16:12:28尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:12:29.000', '杨俊杰【经理部总经理】于2020-04-23 16:12:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:12:31.000', '杨俊杰【经理部总经理】于2020-04-23 16:12:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:12:33.000', '杨俊杰【经理部总经理】于2020-04-23 16:12:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:13:33.000', '杨俊杰【经理部总经理】于2020-04-23 16:13:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:13:42.000', '杨俊杰【经理部总经理】于2020-04-23 16:13:42尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:13:44.000', '杨俊杰【经理部总经理】于2020-04-23 16:13:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:13:49.000', '杨俊杰【经理部总经理】于2020-04-23 16:13:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:13:51.000', '杨俊杰【经理部总经理】于2020-04-23 16:13:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:13:53.000', '杨俊杰【经理部总经理】于2020-04-23 16:13:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:13:54.000', '杨俊杰【经理部总经理】于2020-04-23 16:13:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:13:55.000', '杨俊杰【经理部总经理】于2020-04-23 16:13:55尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-23 16:14:02.000', '杨俊杰【经理部总经理】于2020-04-23 16:14:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-25 16:26:53.000', 'WK010于2020/4/25 16:26:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 14:14:16.000', 'WK010于2020/4/26 14:14:16登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-04-26 14:34:35.000', 'WK010于2020/4/26 14:34:35登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-03 20:37:52.000', 'WK010于2020/5/3 20:37:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-03 20:46:21.000', 'WK010于2020/5/3 20:46:21登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-03 20:53:40.000', 'WK010于2020/5/3 20:53:40登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-03 21:34:27.000', 'WK010于2020/5/3 21:34:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-08 16:45:40.000', 'WK010于2020-05-08 16:45:40登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-08 16:56:14.000', 'WK010于2020-05-08 16:56:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-08 17:00:35.000', 'WK010于2020-05-08 17:00:35登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-08 20:21:50.000', 'WK010于2020/5/8 20:21:50登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-08 22:05:32.000', 'WK010于2020/5/8 22:05:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-08 23:11:23.000', 'WK010于2020/5/8 23:11:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-09 10:44:13.000', 'WK010于2020/5/9 10:44:13登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-09 10:51:31.000', '杨俊杰【经理部总经理】于2020/5/9 10:51:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-09 10:57:45.000', 'WK010于2020/5/9 10:57:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-09 10:57:52.000', '杨俊杰【经理部总经理】于2020/5/9 10:57:52尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-09 10:57:54.000', '杨俊杰【经理部总经理】于2020/5/9 10:57:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-09 23:13:06.000', 'WK010于2020/5/9 23:13:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-09 23:16:57.000', '经理部总经理杨俊杰于2020/5/9 23:16:57查看了TS1457的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-09 23:17:01.000', '经理部总经理杨俊杰于2020/5/9 23:17:01查看了TS1457的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-09 23:17:53.000', '经理部总经理杨俊杰于2020/5/9 23:17:53查看了TS1457的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-09 23:18:01.000', '经理部总经理杨俊杰于2020/5/9 23:18:01查看了TS1001的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-10 09:25:51.000', 'WK010于2020/5/10 9:25:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-10 15:32:52.000', 'WK010于2020/5/10 15:32:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-10 21:24:41.000', 'WK010于2020-05-10 21:24:41登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-10 21:30:45.000', 'WK010于2020/5/10 21:30:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-10 21:31:17.000', '经理部总经理杨俊杰于2020/5/10 21:31:17查看了TS1001的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-10 21:34:35.000', 'TS1005于2020/5/10 21:34:35进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-11 13:46:08.000', 'WK010于2020/5/11 13:46:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-11 14:41:36.000', 'WK010于2020/05/11 14:41:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-11 20:14:23.000', 'WK010于2020/5/11 20:14:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-11 20:16:43.000', '杨俊杰【经理部总经理】于2020/5/11 20:16:43尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-11 20:33:13.000', 'WK010于2020/5/11 20:33:13登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-12 14:50:27.000', 'WK010于2020/5/12 14:50:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-12 20:48:57.000', 'WK010于2020/5/12 20:48:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-12 20:58:00.000', 'WK010于2020/5/12 20:58:00登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-12 22:07:42.000', 'WK010于2020/5/12 22:07:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-12 22:08:10.000', '杨俊杰【经理部总经理】于2020/5/12 22:08:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-12 22:11:17.000', 'WK010于2020/5/12 22:11:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-12 22:15:31.000', 'WK010于2020/5/12 22:15:31登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-12 22:16:45.000', 'WK010于2020/5/12 22:16:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-12 22:17:33.000', 'WK010于2020/5/12 22:17:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-12 22:19:18.000', 'WK010于2020/5/12 22:19:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-12 22:25:01.000', 'WK010于2020/5/12 22:25:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-12 22:28:57.000', 'WK010于2020/5/12 22:28:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-12 22:34:36.000', 'WK010于2020/5/12 22:34:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-12 22:35:20.000', 'WK010于2020/5/12 22:35:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-13 17:37:42.000', 'WK010于2020/5/13 17:37:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-13 17:39:32.000', 'WK010于2020/5/13 17:39:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-13 17:40:21.000', '经理部总经理杨俊杰于2020/5/13 17:40:21帮助TS1005进行了消费商品:特级杜蕾斯操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-14 17:26:59.000', 'WK010于2020/5/14 下午 05:26:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-14 17:31:25.000', 'WK010于2020/5/14 下午 05:31:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-14 19:25:14.000', 'WK010于2020/5/14 下午 07:25:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-14 22:13:58.000', 'WK010于2020/5/14 22:13:58登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-15 14:10:56.000', 'WK010于2020/5/15 14:10:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-15 15:25:29.000', 'WK010于2020-05-15 15:25:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-15 17:06:22.000', 'WK010于2020/5/15 17:06:22登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-15 17:07:03.000', '经理部总经理杨俊杰于2020/5/15 17:07:03查看了TS1002的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-15 17:07:11.000', '经理部总经理杨俊杰于2020/5/15 17:07:11查看了TS1615的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-15 17:07:16.000', '经理部总经理杨俊杰于2020/5/15 17:07:16查看了TS1003的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-16 14:36:13.000', 'WK010于2020-05-16 14:36:13登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-16 14:36:33.000', 'WK010于2020-05-16 14:36:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-16 14:52:26.000', 'WK010于2020-05-16 14:52:26登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-16 15:09:22.000', 'WK010于2020-05-16 15:09:22登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-16 15:10:38.000', 'WK010于2020-05-16 15:10:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-16 15:13:20.000', 'WK010于2020-05-16 15:13:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-16 15:27:42.000', 'WK010于2020-05-16 15:27:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-17 22:38:52.000', 'WK010于2020/5/17 22:38:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-18 22:26:31.000', 'WK010于2020/5/18 22:26:31登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-18 23:05:11.000', 'WK010于2020/5/18 23:05:11登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-19 10:47:38.000', 'WK010于2020/5/19 10:47:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-19 10:49:52.000', '杨俊杰【经理部总经理】于2020/5/19 10:49:52尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-19 10:49:54.000', '杨俊杰【经理部总经理】于2020/5/19 10:49:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-19 21:31:52.000', 'WK010于2020/5/19 21:31:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-20 08:40:36.000', 'WK010于2020/5/20 8:40:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-20 16:18:03.000', 'WK010于2020/5/20 16:18:03登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-20 23:14:54.000', 'WK010于2020-05-20 23:14:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-20 23:20:36.000', 'WK010于2020-05-20 23:20:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-20 23:20:41.000', '杨俊杰【经理部总经理】于2020-05-20 23:20:41尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-20 23:21:53.000', '杨俊杰【经理部总经理】于2020-05-20 23:21:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-20 23:22:50.000', '杨俊杰【经理部总经理】于2020-05-20 23:22:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-21 14:35:22.000', 'WK010于2020/5/21 14:35:22登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-21 14:38:28.000', '杨俊杰【经理部总经理】于2020/5/21 14:38:28尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-22 10:37:44.000', 'WK010于2020/5/22 10:37:44登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-22 10:39:52.000', '经理部总经理杨俊杰于2020/5/22 10:39:52查看了TS1968的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-22 10:41:50.000', '经理部总经理杨俊杰于2020/5/22 10:41:50帮助TS1003进行了消费商品:特级杜蕾斯操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-22 10:42:57.000', 'WK010于2020/5/22 10:42:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-22 11:09:20.000', 'WK010于2020/5/22 11:09:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-22 11:11:27.000', 'WK010于2020/5/22 11:11:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-22 11:15:59.000', 'WK010于2020/5/22 11:15:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-22 19:48:22.000', 'WK010于2020/5/22 19:48:22登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-22 19:48:35.000', '杨俊杰【经理部总经理】于2020/5/22 19:48:35尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-23 20:31:12.000', 'WK010于2020-05-23 20:31:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-23 20:31:23.000', '杨俊杰【经理部总经理】于2020-05-23 20:31:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-23 20:32:46.000', 'WK010于2020-05-23 20:32:46登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-24 18:35:50.000', 'WK010于2020/5/24 18:35:50登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-25 09:38:30.000', 'WK010于2020/5/25 9:38:30登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-25 12:40:18.000', 'WK010于2020-05-25 12:40:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-25 12:40:36.000', '杨俊杰【经理部总经理】于2020-05-25 12:40:36尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-25 12:58:37.000', 'WK010于2020/5/25 星期一 12:58:37登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-25 12:59:06.000', '经理部总经理杨俊杰于2020/5/25 星期一 12:59:06查看了TS1539的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-25 21:43:02.000', 'WK010于2020/5/25 星期一 21:43:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-25 21:43:41.000', '经理部总经理杨俊杰于2020/5/25 星期一 21:43:41查看了的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 15:21:18.000', 'WK010于2020-05-26 15:21:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 15:22:26.000', '经理部总经理杨俊杰于2020-05-26 15:22:26查看了TS1003的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 15:22:30.000', '经理部总经理杨俊杰于2020-05-26 15:22:30查看了TS1003的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 15:25:29.000', '经理部总经理杨俊杰于2020-05-26 15:25:29帮助进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 15:26:44.000', '杨俊杰【经理部总经理】于2020-05-26 15:26:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 15:26:53.000', '杨俊杰【经理部总经理】于2020-05-26 15:26:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 15:28:34.000', 'WK010于2020-05-26 15:28:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 15:31:19.000', '经理部总经理杨俊杰于2020-05-26 15:31:19查看了TS1002的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 15:32:56.000', '杨俊杰【经理部总经理】于2020-05-26 15:32:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 15:33:23.000', 'WK010于2020-05-26 15:33:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 16:16:48.000', 'WK010于2020-05-26 16:16:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 16:17:01.000', '杨俊杰【经理部总经理】于2020-05-26 16:17:01尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 16:18:44.000', '杨俊杰【经理部总经理】于2020-05-26 16:18:45尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 16:20:01.000', 'WK010于2020-05-26 16:20:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 16:20:08.000', '杨俊杰【经理部总经理】于2020-05-26 16:20:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 16:23:25.000', 'WK010于2020-05-26 16:23:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 16:23:30.000', '杨俊杰【经理部总经理】于2020-05-26 16:23:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 16:24:03.000', 'WK010于2020-05-26 16:24:03登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 16:24:06.000', '杨俊杰【经理部总经理】于2020-05-26 16:24:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 16:30:10.000', '经理部杨俊杰总经理杨俊杰于2020-05-26 16:30:10导出了后台用户信息!', '经理部杨俊杰总经理'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 16:31:43.000', '杨俊杰【经理部总经理】于2020-05-26 16:31:43尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 16:40:44.000', 'WK010于2020-05-26 16:40:44登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 20:34:36.000', 'WK010于2020/5/26 20:34:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 20:36:08.000', '经理部总经理杨俊杰于2020/5/26 20:36:08帮助17663721822进行了预订房间操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 20:37:02.000', 'WK010于2020/5/26 20:37:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 20:38:19.000', 'WK010于2020/5/26 20:38:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-26 20:40:43.000', 'WK010于2020/5/26 20:40:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 08:24:28.000', 'WK010于2020-05-27 8:24:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 08:25:03.000', '杨俊杰【经理部总经理】于2020-05-27 8:25:03尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 08:26:09.000', 'WK010于2020-05-27 8:26:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 08:26:14.000', '杨俊杰【经理部总经理】于2020-05-27 8:26:14尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 08:28:59.000', 'WK010于2020-05-27 8:28:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 08:29:07.000', '杨俊杰【经理部总经理】于2020-05-27 8:29:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 08:31:28.000', '经理部总经理杨俊杰于2020-05-27 8:31:28帮助TS1001进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 08:31:41.000', '经理部总经理杨俊杰于2020-05-27 8:31:41帮助TS1074进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 08:32:01.000', '经理部总经理杨俊杰于2020-05-27 8:32:01帮助TS1005进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 08:32:09.000', '经理部总经理杨俊杰于2020-05-27 8:32:09帮助TS1003进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 08:32:17.000', '经理部总经理杨俊杰于2020-05-27 8:32:17帮助TS1002进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 08:44:38.000', 'WK010于2020-05-27 8:44:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 08:48:31.000', '杨俊杰【经理部总经理】于2020-05-27 8:48:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 09:04:14.000', 'WK010于2020-05-27 9:04:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 09:04:19.000', '杨俊杰【经理部总经理】于2020-05-27 9:04:19尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 09:22:30.000', 'WK010于2020-05-27 9:22:30登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 09:23:23.000', 'WK010于2020-05-27 9:23:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 09:35:15.000', 'WK010于2020-05-27 9:35:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 09:35:40.000', '杨俊杰【经理部总经理】于2020-05-27 9:35:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 09:48:21.000', '经理部总经理杨俊杰于2020-05-27 9:48:21查看了TS1005的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 09:48:33.000', '经理部总经理杨俊杰于2020-05-27 9:48:33查看了TS6128的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 09:58:56.000', 'WK010于2020-05-27 9:58:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 10:00:32.000', '经理部总经理杨俊杰于2020-05-27 10:00:32查看了TS1387的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 10:00:42.000', '杨俊杰【经理部总经理】于2020-05-27 10:00:42尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 10:02:25.000', 'WK010于2020-05-27 10:02:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 10:02:49.000', '杨俊杰【经理部总经理】于2020-05-27 10:02:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 10:12:14.000', 'WK010于2020-05-27 10:12:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 10:15:58.000', 'WK010于2020-05-27 10:15:58登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 10:16:07.000', '杨俊杰【经理部总经理】于2020-05-27 10:16:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 11:14:46.000', 'WK010于2020-05-27 11:14:46登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 11:20:05.000', '经理部总经理杨俊杰于2020-05-27 11:20:05帮助TS1310进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 12:44:43.000', 'WK010于2020-05-27 12:44:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 12:51:39.000', '杨俊杰【经理部总经理】于2020-05-27 12:51:39尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 15:38:14.000', 'WK010于2020-05-27 15:38:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 15:38:18.000', '杨俊杰【经理部总经理】于2020-05-27 15:38:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 16:01:25.000', 'WK010于2020-05-27 16:01:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-28 00:04:20.000', 'WK010于2020/5/28 0:04:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-22 19:48:48.000', 'WK010于2020/5/22 19:48:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-25 14:28:11.000', 'WK010于2020/5/25 14:28:11登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-25 15:25:22.000', 'WK010于2020/5/25 15:25:22登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-25 15:29:51.000', '经理部总经理杨俊杰于2020/5/25 15:29:51帮助进行了退房结算操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-25 16:41:59.000', 'WK010于2020/5/25 16:41:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 23:48:12.000', 'WK010于2020/5/27 23:48:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-27 23:50:51.000', '杨俊杰【经理部总经理】于2020/5/27 23:50:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-28 09:40:17.000', 'WK010于2020-05-28 9:40:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-28 09:40:22.000', '杨俊杰【经理部总经理】于2020-05-28 9:40:22尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-28 11:25:08.000', 'WK010于2020-05-28 11:25:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-28 13:39:59.000', 'WK010于2020-05-28 13:39:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-28 17:23:29.000', 'WK010于2020/5/28 17:23:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-28 22:32:52.000', 'WK010于2020/5/28 22:32:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-28 22:33:30.000', '杨俊杰【经理部总经理】于2020/5/28 22:33:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-29 10:23:33.000', 'WK010于2020-05-29 10:23:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-29 10:23:43.000', '杨俊杰【经理部总经理】于2020-05-29 10:23:43尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-29 10:29:53.000', '杨俊杰【经理部总经理】于2020-05-29 10:29:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-29 10:33:05.000', '经理部总经理杨俊杰于2020-05-29 10:33:05查看了TS1005的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-29 11:54:32.000', 'WK010于2020/5/29 11:54:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-29 12:36:46.000', 'WK010于2020-05-29 12:36:46登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-29 12:37:11.000', '杨俊杰【经理部总经理】于2020-05-29 12:37:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-31 01:32:29.000', 'WK010于2020/5/31 1:32:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-31 01:33:32.000', '经理部总经理杨俊杰于2020/5/31 1:33:32帮助进行了预订房间操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-05-31 01:34:08.000', '经理部总经理杨俊杰于2020/5/31 1:34:08帮助进行了预订房间操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-02 11:31:55.000', 'WK010于2020/6/2 11:31:55登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-02 11:34:03.000', '经理部总经理杨俊杰于2020/6/2 11:34:03帮助TS1001进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-02 15:50:49.000', 'WK010于2020/6/2 15:50:49登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-02 21:18:47.000', 'WK010于2020/6/2 21:18:47登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-02 22:38:27.000', '【】于2020/6/2 22:38:27尝试或成功登入了后台系统!', '【】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-03 23:13:42.000', 'WK010于2020/6/3 23:13:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-04 15:48:23.000', 'WK010于2020/6/4 15:48:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-04 15:50:42.000', 'WK010于2020/6/4 15:50:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-04 15:51:19.000', '经理部总经理杨俊杰于2020/6/4 15:51:19查看了TS1043的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-04 15:51:26.000', '经理部总经理杨俊杰于2020/6/4 15:51:26查看了TS1043的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-05 11:41:32.000', 'WK010于2020-06-05 11:41:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-06 20:24:38.000', 'WK010于2020/6/6 20:24:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-07 01:11:20.000', 'WK010于2020/6/7 1:11:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-07 22:35:20.000', 'WK010于2020/6/7 22:35:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-07 22:36:13.000', '杨俊杰【经理部总经理】于2020/6/7 22:36:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-08 15:42:15.000', 'WK010于2020/06/08 15:42:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-08 22:30:38.000', 'WK010于2020/6/8 22:30:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-08 22:47:53.000', 'WK010于2020/6/8 22:47:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-09 08:48:43.000', 'WK010于2020-6-9 8:48:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-09 09:07:51.000', 'WK010于2020-6-9 9:07:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-09 10:37:51.000', 'WK010于2020/6/9 10:37:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-09 14:09:13.000', 'WK010于2020-6-9 14:09:13登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-09 14:11:32.000', 'WK010于2020-6-9 14:11:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-09 14:14:08.000', 'WK010于2020-6-9 14:14:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-09 20:09:23.000', 'WK010于2020-06-09 20:09:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-10 21:05:07.000', 'WK010于2020/6/10 21:05:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-10 22:48:10.000', 'WK010于2020/6/10 22:48:10登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-11 14:34:57.000', 'WK010于2020/6/11 14:34:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-12 14:41:21.000', 'WK010于2020/6/12 14:41:21登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-12 21:49:27.000', 'WK010于2020/6/12 21:49:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-12 22:05:01.000', 'WK010于2020/6/12 22:05:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-12 22:07:52.000', 'WK010于2020/6/12 22:07:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-12 22:27:15.000', 'WK010于2020/6/12 22:27:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-12 22:46:46.000', 'WK010于2020-06-12 22:46:46登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-13 17:52:31.000', 'WK010于2020/6/13 17:52:31登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-13 23:44:19.000', 'WK010于2020/6/13 23:44:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-14 02:38:42.000', 'WK010于2020/6/14 上午 02:38:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-14 02:48:37.000', 'WK010于2020/6/14 上午 02:48:37登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-17 00:02:59.000', 'WK010于2020/6/17 0:02:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-17 09:46:16.000', 'WK010于2020/6/17 9:46:16登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-17 09:49:40.000', '经理部总经理杨俊杰于2020/6/17 9:49:40查看了TS1002的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-17 10:48:58.000', 'WK010于2020/6/17 星期三 10:48:58登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-18 09:08:04.000', 'WK010于2020-06-18 09:08:04登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-18 09:58:33.000', 'WK010于2020-06-18 09:58:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-18 10:02:20.000', 'WK010于2020/6/18 10:02:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-19 11:58:10.000', 'WK010于2020/6/19 11:58:10登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-19 12:41:57.000', 'WK010于2020/6/19 12:41:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-19 12:44:07.000', 'WK010于2020/6/19 12:44:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-19 13:06:20.000', 'WK010于2020/6/19 13:06:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-21 22:00:58.000', 'WK010于2020/6/21 22:00:58登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-24 15:21:45.000', 'WK010于2020/6/24 15:21:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-24 15:22:54.000', '经理部总经理杨俊杰于2020/6/24 15:22:54查看了TS1001的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-24 15:27:46.000', '杨俊杰【经理部总经理】于2020/6/24 15:27:46尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-24 15:27:48.000', '杨俊杰【经理部总经理】于2020/6/24 15:27:48尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-24 15:35:41.000', '经理部总经理杨俊杰于2020/6/24 15:35:41帮助1478452762进行了预订房间操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-24 17:33:16.000', 'WK010于2020/6/24 17:33:16登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-24 17:36:58.000', '杨俊杰【经理部总经理】于2020/6/24 17:36:58尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-24 19:54:11.000', 'WK010于2020/6/24 19:54:11登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-25 21:13:44.000', 'WK010于2020/6/25 21:13:44登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-25 21:22:11.000', 'WK010于2020/6/25 21:22:11登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-25 21:26:35.000', '经理部总经理杨俊杰于2020/6/25 21:26:35查看了TS1001的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-28 08:26:48.000', 'WK010于2020/6/28 8:26:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-28 09:30:24.000', 'WK010于2020/6/28 9:30:24登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-28 09:39:51.000', 'WK010于2020/6/28 9:39:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-28 09:40:25.000', '经理部总经理杨俊杰于2020/6/28 9:40:25查看了TS1005的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-28 09:41:49.000', '经理部总经理杨俊杰于2020/6/28 9:41:49查看了的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 15:28:17.000', 'WK010于2020/6/29 15:28:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 15:38:01.000', 'WK010于2020/6/29 15:38:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 15:39:14.000', '经理部总经理杨俊杰于2020/6/29 15:39:14查看了TS1210的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 16:06:38.000', 'WK010于2020/6/29 16:06:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 16:34:09.000', 'WK010于2020/6/29 16:34:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 16:34:45.000', '杨俊杰【经理部总经理】于2020/6/29 16:34:45尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 16:34:55.000', '杨俊杰【经理部总经理】于2020/6/29 16:34:55尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 16:34:56.000', '杨俊杰【经理部总经理】于2020/6/29 16:34:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 16:35:05.000', '杨俊杰【经理部总经理】于2020/6/29 16:35:05尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 16:36:15.000', 'WK010于2020/6/29 16:36:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 16:36:37.000', 'WK010于2020/6/29 16:36:37登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 16:37:56.000', '杨俊杰【经理部总经理】于2020/6/29 16:37:59尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 16:39:51.000', '杨俊杰【经理部总经理】于2020/6/29 16:39:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 16:40:19.000', '杨俊杰【经理部总经理】于2020/6/29 16:40:19尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 16:42:14.000', 'WK010于2020/6/29 16:42:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-29 16:42:17.000', '杨俊杰【经理部总经理】于2020/6/29 16:42:17尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-06-30 11:07:05.000', 'WK010于2020/6/30 11:07:05登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-01 02:51:42.000', 'WK010于2020/7/1 上午 02:51:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-01 16:30:47.000', 'WK010于2020/7/1 16:30:47登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-01 16:33:30.000', '经理部总经理杨俊杰于2020/7/1 16:33:30查看了TS1295的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-01 16:33:52.000', '杨俊杰【经理部总经理】于2020/7/1 16:33:52尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-01 16:35:07.000', '经理部总经理杨俊杰于2020/7/1 16:35:07查看了TS1005的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-02 22:20:47.000', 'WK010于2020/7/2 22:20:47登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-03 14:01:30.000', 'WK010于2020/7/3 14:01:30登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-04 13:16:04.000', 'WK010于2020-7-4 13:16:04登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-06 10:01:25.000', 'WK010于2020/7/6 10:01:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-06 14:37:01.000', 'WK010于2020/7/6 14:37:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-06 22:25:34.000', 'WK010于2020/7/6 22:25:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-07 09:20:48.000', 'WK010于2020/7/7 9:20:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-07 15:58:30.000', 'WK010于2020/7/7 星期二 15:58:30登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-08 09:22:37.000', 'WK010于2020/7/8 9:22:37登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-08 09:23:24.000', '经理部总经理杨俊杰于2020/7/8 9:23:24查看了TS1997的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-09 13:58:40.000', 'WK010于2020/7/9 13:58:40登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-10 20:44:54.000', 'WK010于2020/7/10 星期五 20:44:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-10 20:46:39.000', 'WK010于2020/7/10 星期五 20:46:39登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-11 14:08:56.000', 'WK010于2020/7/11 14:08:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-12 14:40:49.000', 'WK010于2020/7/12 14:40:49登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-13 08:29:57.000', 'WK010于2020/7/13 星期一 8:29:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-13 11:12:20.000', 'WK010于2020/7/13 星期一 11:12:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-13 11:13:04.000', 'WK010于2020/7/13 星期一 11:13:04登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-13 14:01:56.000', 'WK010于2020/7/13 14:01:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-13 20:26:28.000', 'WK010于2020/7/13 星期一 20:26:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-13 20:38:53.000', 'WK010于2020/7/13 星期一 20:38:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-13 20:45:06.000', 'WK010于2020/7/13 星期一 20:45:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-13 21:40:06.000', 'WK010于2020/7/13 21:40:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-13 21:44:09.000', 'WK010于2020/7/13 21:44:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-13 22:06:42.000', 'WK010于2020/7/13 星期一 22:06:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 14:37:26.000', 'WK010于2020-07-16 14:37:26登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 15:46:34.000', '经理部总经理杨俊杰于2020-07-16 15:46:34查看了的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 20:59:28.000', 'WK010于2020/7/16 20:59:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 21:01:11.000', 'WK010于2020/7/16 21:01:11登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 21:01:29.000', 'WK010于2020/7/16 21:01:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 21:05:42.000', 'WK010于2020/7/16 21:05:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 21:07:03.000', 'WK010于2020/7/16 21:07:03登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 21:07:08.000', '杨俊杰【经理部总经理】于2020/7/16 21:07:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 21:07:26.000', '杨俊杰【经理部总经理】于2020/7/16 21:07:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 21:07:51.000', '杨俊杰【经理部总经理】于2020/7/16 21:07:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 21:13:41.000', '杨俊杰总经理于2020/7/16 21:13:41进行了添加员工操作,员工编号为:WK261!', '杨俊杰总经理'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 21:13:48.000', '杨俊杰总经理于2020/7/16 21:13:48进行了添加员工操作,员工编号为:WK100!', '杨俊杰总经理'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 21:14:21.000', '杨俊杰总经理于2020/7/16 21:14:21进行了上传公告操作!', '杨俊杰总经理'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 21:15:17.000', 'WK010于2020/7/16 21:15:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 21:15:27.000', '杨俊杰【经理部总经理】于2020/7/16 21:15:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-16 21:15:29.000', '杨俊杰【经理部总经理】于2020/7/16 21:15:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-17 17:12:17.000', 'WK010于2020/7/17 17:12:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-18 00:09:28.000', 'WK010于2020/7/18 0:09:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-18 11:22:13.000', 'WK010于2020/7/18 11:22:13登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-18 14:00:44.000', '经理部总经理杨俊杰于2020/7/18 14:00:44查看了的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-18 19:57:33.000', 'WK010于2020/7/18 19:57:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-18 20:46:53.000', 'WK010于2020/7/18 20:46:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-19 01:12:32.000', 'WK010于2020/7/19 1:12:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-19 01:49:27.000', 'TS1365于2020/7/19 1:49:27进行了换房,请记得到后台修改消费价格!', '杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-19 01:52:50.000', 'WK010于2020/7/19 1:52:50登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-19 12:48:02.000', 'WK010于2020/7/19 12:48:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-19 12:48:07.000', '杨俊杰【经理部总经理】于2020/7/19 12:48:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-19 12:48:11.000', '杨俊杰【经理部总经理】于2020/7/19 12:48:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-19 13:12:14.000', 'WK010于2020/7/19 13:12:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-19 13:12:29.000', '杨俊杰【经理部总经理】于2020/7/19 13:12:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-20 10:12:11.000', 'WK010于2020-7-20 10:12:11登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-23 20:53:12.000', 'WK010于2020-07-23 ?? 8:53:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-24 11:29:12.000', 'WK010于2020-07-24 11:29:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-24 11:53:01.000', 'WK010于2020-07-24 11:53:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-24 11:53:31.000', '杨俊杰【经理部总经理】于2020-07-24 11:53:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-24 11:53:32.000', '杨俊杰【经理部总经理】于2020-07-24 11:53:32尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-24 11:53:40.000', '杨俊杰【经理部总经理】于2020-07-24 11:53:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-24 15:18:21.000', 'WK010于2020/7/24 15:18:21登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-24 17:06:40.000', 'WK010于2020-07-24 17:06:40登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-24 17:36:10.000', 'WK010于2020-7-24 17:36:10登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-24 21:42:19.000', 'WK010于2020-7-24 21:42:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-25 11:07:58.000', 'WK010于2020/07/25 11:07:58登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-26 05:09:52.000', 'WK010于2020/7/26 5:09:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-26 05:11:02.000', '经理部总经理杨俊杰于2020/7/26 5:11:02查看了TS1256的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-26 05:11:06.000', '经理部总经理杨俊杰于2020/7/26 5:11:06查看了TS1266的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-26 05:11:16.000', '经理部总经理杨俊杰于2020/7/26 5:11:16查看了TS1239的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-26 13:58:10.000', 'WK010于2020/7/26 13:58:10登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 09:12:02.000', 'WK010于2020-7-27 9:12:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 09:14:27.000', 'WK010于2020-7-27 9:14:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 09:59:54.000', 'WK010于2020-7-27 9:59:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 10:02:48.000', 'WK010于2020-7-27 10:02:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 10:33:24.000', 'WK010于2020-07-27 10:33:24登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 11:00:36.000', 'WK010于2020-7-27 11:00:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 11:10:13.000', 'WK010于2020-7-27 11:10:13登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 11:11:54.000', 'WK010于2020-7-27 11:11:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 11:17:18.000', 'WK010于2020-7-27 11:17:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 11:17:27.000', 'WK010于2020-7-27 11:17:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 11:57:09.000', 'WK010于2020-7-27 11:57:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 12:50:55.000', 'WK010于2020-7-27 12:50:55登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 12:56:30.000', 'WK010于2020-7-27 12:56:30登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 12:58:41.000', 'WK010于2020-7-27 12:58:41登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 12:59:46.000', 'WK010于2020-7-27 12:59:46登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 13:00:42.000', 'WK010于2020-7-27 13:00:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-13 14:05:45.000', 'WK010于2020/7/13 14:05:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-13 14:10:10.000', 'WK010于2020/7/13 14:10:10登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-13 14:16:18.000', 'WK010于2020/7/13 14:16:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-17 17:13:57.000', 'WK010于2020/7/17 17:13:57登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 13:01:33.000', 'WK010于2020-7-27 13:01:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 13:03:21.000', 'WK010于2020-7-27 13:03:21登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 13:04:25.000', 'WK010于2020-7-27 13:04:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 13:06:38.000', 'WK010于2020-7-27 13:06:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 13:08:12.000', 'WK010于2020-7-27 13:08:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 13:14:52.000', 'WK010于2020-7-27 13:14:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 13:33:30.000', 'WK010于2020-7-27 13:33:30登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 13:35:33.000', 'WK010于2020-7-27 13:35:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 13:42:08.000', 'WK010于2020-7-27 13:42:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 13:42:56.000', 'WK010于2020-7-27 13:42:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 13:44:06.000', 'WK010于2020-7-27 13:44:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 13:45:25.000', 'WK010于2020-7-27 13:45:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 14:45:43.000', 'WK010于2020-7-27 14:45:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 14:47:15.000', 'WK010于2020-7-27 14:47:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 14:47:49.000', 'WK010于2020-7-27 14:47:49登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 15:22:43.000', 'WK010于2020-7-27 15:22:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 17:05:28.000', 'WK010于2020-7-27 17:05:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 17:44:56.000', 'WK010于2020-7-27 17:44:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-28 09:50:34.000', 'WK010于2020/07/28 9:50:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-28 09:51:32.000', '经理部总经理杨俊杰于2020/07/28 9:51:32帮助TS1862进行了消费商品:香皂操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-28 09:51:39.000', '经理部总经理杨俊杰于2020/07/28 9:51:39帮助TS1862进行了消费商品:香皂操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-28 09:51:54.000', '经理部总经理杨俊杰于2020/07/28 9:51:54帮助TS1862进行了消费商品:青岛啤酒操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-28 10:53:19.000', 'WK010于2020/7/28 10:53:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-29 14:34:01.000', 'WK010于2020-7-29 14:34:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-29 14:39:59.000', 'WK010于2020-7-29 14:39:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-29 14:53:12.000', 'WK010于2020-7-29 14:53:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-29 20:55:15.000', 'WK010于2020-7-29 20:55:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-29 20:55:29.000', '杨俊杰【经理部总经理】于2020-7-29 20:55:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-29 20:56:07.000', '杨俊杰【经理部总经理】于2020-7-29 20:56:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-29 20:59:01.000', 'WK010于2020-7-29 20:59:01登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-29 20:59:20.000', '杨俊杰【经理部总经理】于2020-7-29 20:59:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-30 17:29:24.000', 'WK010于2020-7-30 17:29:24登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-02 14:18:07.000', 'WK010于2020/8/2 14:18:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-03 15:34:07.000', 'WK010于2020/8/3 15:34:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-03 15:59:45.000', 'WK010于2020/8/3 15:59:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-04 10:26:19.000', 'WK010于2020/8/4 10:26:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-04 10:27:19.000', 'WK010于2020/8/4 10:27:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-04 10:29:25.000', 'WK010于2020/8/4 10:29:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-04 11:39:25.000', 'WK010于2020/8/4 11:39:25登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-04 11:41:38.000', '经理部总经理杨俊杰于2020/8/4 11:41:38查看了TS1084的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-04 11:45:11.000', '经理部总经理杨俊杰于2020/8/4 11:45:11帮助ts1389进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-04 11:45:39.000', '经理部总经理杨俊杰于2020/8/4 11:45:39帮助TS1043进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-05 16:48:48.000', 'WK010于2020/8/5 16:48:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-05 16:50:24.000', '经理部总经理杨俊杰于2020/8/5 16:50:24帮助进行了预订房间操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-05 17:01:38.000', 'WK010于2020-8-5 17:01:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-05 17:33:48.000', 'WK010于2020/8/5 17:33:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-05 17:40:32.000', 'WK010于2020/8/5 17:40:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-06 16:51:02.000', 'WK010于2020/8/6 16:51:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-06 19:46:18.000', 'WK010于2020/8/6 19:46:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-07 14:58:29.000', 'WK010于2020/8/7 14:58:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-07 15:34:55.000', 'WK010于2020/8/7 15:35:26登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-07 15:45:15.000', 'WK010于2020/8/7 15:45:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-07 17:19:12.000', 'WK010于2020/8/7 17:19:12登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-07 17:31:59.000', 'WK010于2020/8/7 17:31:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-08 14:15:34.000', 'WK010于2020/8/8 14:15:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-08 15:58:13.000', 'WK010于2020/8/8 15:58:13登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-10 11:45:09.000', 'WK010于2020/8/10 11:45:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-11 11:40:06.000', 'WK010于2020/8/11 11:40:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-11 15:18:40.000', 'WK010于2020/8/11 15:18:40登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-11 15:56:19.000', 'WK010于2020/8/11 15:56:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-11 17:28:45.000', 'WK010于2020-08-11 17:28:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-13 12:58:22.000', 'WK010于2020-08-13 12:58:22登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-13 12:59:51.000', '经理部总经理杨俊杰于2020-08-13 12:59:51查看了TS1914的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-13 18:04:42.000', 'WK010于2020/8/13 星期四 18:04:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 11:48:37.000', 'WK010于2020/8/14 11:48:37登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 11:52:45.000', 'WK010于2020/8/14 11:52:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:02:23.000', 'WK010于2020/8/14 12:02:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:04:37.000', 'WK010于2020/8/14 12:04:37登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:05:00.000', '杨俊杰【经理部总经理】于2020/8/14 12:05:00尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:05:09.000', '杨俊杰【经理部总经理】于2020/8/14 12:05:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:31:13.000', 'WK010于2020/8/14 12:31:13登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:31:26.000', '杨俊杰【经理部总经理】于2020/8/14 12:31:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:31:32.000', '杨俊杰【经理部总经理】于2020/8/14 12:31:32尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:33:20.000', '杨俊杰【经理部总经理】于2020/8/14 12:33:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 15:04:42.000', 'WK010于2020/8/14 15:04:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 15:06:08.000', '杨俊杰【经理部总经理】于2020/8/14 15:06:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 15:30:07.000', '杨俊杰【经理部总经理】于2020/8/14 15:30:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 15:30:27.000', '杨俊杰【经理部总经理】于2020/8/14 15:30:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 15:30:30.000', '杨俊杰【经理部总经理】于2020/8/14 15:30:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-15 12:01:06.000', 'WK010于2020/8/15 12:01:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-15 12:18:11.000', '经理部总经理杨俊杰于2020/8/15 12:18:11帮助TS1005进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-15 12:21:19.000', 'WK010于2020/8/15 12:21:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-15 12:22:28.000', '经理部总经理杨俊杰于2020/8/15 12:22:28帮助TS1571进行了入住操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-15 14:24:59.000', 'WK010于2020/8/15 14:24:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-15 14:58:49.000', 'WK010于2020/8/15 14:58:49登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-15 15:13:34.000', '经理部总经理杨俊杰于2020/8/15 15:13:34查看了的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-15 15:26:35.000', '经理部总经理杨俊杰于2020/8/15 15:26:35帮助123进行了预订房间操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-15 15:46:43.000', 'WK010于2020/8/15 15:46:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-15 17:36:07.000', '经理部总经理杨俊杰于2020/8/15 17:36:07查看了TS1081的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-15 23:05:42.000', 'WK010于2020/8/15 23:05:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-17 15:37:38.000', 'WK010于2020/8/17 15:37:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:13:59.000', 'WK010于2020/8/18 16:13:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:16:37.000', '经理部总经理杨俊杰于2020/8/18 16:16:37查看了TS1003的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:23:39.000', '杨俊杰【经理部总经理】于2020/8/18 16:23:39尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:24:02.000', '杨俊杰【经理部总经理】于2020/8/18 16:24:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:24:34.000', '杨俊杰【经理部总经理】于2020/8/18 16:24:34尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-07-27 14:13:30.000', 'WK010于2020-7-27 14:13:30登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 11:27:15.000', 'WK010于2020/8/14 11:27:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 09:27:26.000', 'WK010于2020/8/18 9:27:26登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 09:31:18.000', '杨俊杰【经理部总经理】于2020/8/18 9:31:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 17:00:36.000', 'WK010于2020-08-18 17:00:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 15:54:56.000', 'WK010于2020/8/19 15:54:56登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 15:56:03.000', 'WK010于2020/8/19 15:56:03登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 17:14:03.000', 'WK010于2020/8/19 17:14:03登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 17:15:36.000', '经理部总经理杨俊杰于2020/8/19 17:15:36帮助15810825328进行了预订房间操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 17:16:34.000', 'WK010于2020/8/19 17:16:34登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 17:25:54.000', 'WK010于2020/8/19 17:25:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-29 16:55:22.000', 'WK010于2020-8-29 16:55:22登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-29 16:57:18.000', '经理部总经理杨俊杰于2020-8-29 16:57:18查看了TS1914的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-18 12:35:44.000', 'WK010于2020/9/18 12:35:44登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-19 17:34:36.000', 'WK010于2020/9/19 17:34:36登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-20 13:48:11.000', 'WK010于2020-09-20 13:48:11登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-22 08:11:32.000', 'WK010于2020/9/22 8:11:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-22 08:11:58.000', '杨俊杰【经理部总经理】于2020/9/22 8:11:58尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-22 08:12:08.000', '杨俊杰【经理部总经理】于2020/9/22 8:12:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 11:58:27.000', 'WK010于2020/8/14 11:58:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:03:11.000', '杨俊杰【经理部总经理】于2020/8/14 12:03:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:03:20.000', '杨俊杰【经理部总经理】于2020/8/14 12:03:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:12:45.000', 'WK010于2020/8/14 12:12:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:13:09.000', '杨俊杰【经理部总经理】于2020/8/14 12:13:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:31:50.000', '杨俊杰【经理部总经理】于2020/8/14 12:31:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:31:56.000', '杨俊杰【经理部总经理】于2020/8/14 12:31:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 12:32:04.000', '杨俊杰【经理部总经理】于2020/8/14 12:32:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 14:17:44.000', 'WK010于2020/8/14 14:17:44登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 14:19:49.000', '杨俊杰【经理部总经理】于2020/8/14 14:19:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-14 14:37:06.000', '总经理杨俊杰于2020/8/14 14:37:06进行资产录入,资产编号为:CN8051', '总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 14:53:19.000', 'WK010于2020/8/18 14:53:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 14:53:38.000', '杨俊杰【经理部总经理】于2020/8/18 14:53:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 17:01:40.000', 'WK010于2020/8/18 17:01:40登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 17:40:56.000', '杨俊杰【经理部总经理】于2020/8/18 17:40:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 17:42:38.000', '杨俊杰【经理部总经理】于2020/8/18 17:42:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:31:35.000', '杨俊杰【经理部总经理】于2020/8/18 16:31:35尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:35:53.000', 'wk010于2020/8/18 16:35:53登入了系统!', 'wk010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:36:29.000', '杨俊杰【经理部总经理】于2020/8/18 16:36:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:36:40.000', '杨俊杰【经理部总经理】于2020/8/18 16:36:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:36:40.000', '杨俊杰【经理部总经理】于2020/8/18 16:36:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:36:54.000', '杨俊杰【经理部总经理】于2020/8/18 16:36:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:38:33.000', 'WK011于2020/8/18 16:38:33登入了系统!', 'WK011'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:39:11.000', '六月【酒店部职员】于2020/8/18 16:39:11尝试或成功登入了后台系统!', '六月【酒店部职员】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:40:31.000', '六月【酒店部职员】于2020/8/18 16:40:31尝试或成功登入了后台系统!', '六月【酒店部职员】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:47:06.000', '六月【酒店部职员】于2020/8/18 16:47:06尝试或成功登入了后台系统!', '六月【酒店部职员】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:48:44.000', '六月【酒店部职员】于2020/8/18 16:48:44尝试或成功登入了后台系统!', '六月【酒店部职员】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 16:54:53.000', '六月【酒店部职员】于2020/8/18 16:54:53尝试或成功登入了后台系统!', '六月【酒店部职员】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 17:31:27.000', '酒店部职员六月于2020/8/18 17:31:27帮助TS1365进行了退房结算操作!', '酒店部职员六月'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-18 23:40:23.000', 'WK010于2020/8/18 23:40:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 09:37:05.000', 'WK010于2020/8/19 9:37:05登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 09:47:55.000', '经理部总经理杨俊杰于2020/8/19 9:47:55帮助18757523769进行了预订房间操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 10:05:49.000', '杨俊杰【经理部总经理】于2020/8/19 10:05:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 10:07:54.000', 'WK010于2020/8/19 10:07:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 10:08:11.000', '杨俊杰【经理部总经理】于2020/8/19 10:08:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 10:15:56.000', '杨俊杰【经理部总经理】于2020/8/19 10:15:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 10:22:07.000', '杨俊杰【经理部总经理】于2020/8/19 10:22:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 10:36:04.000', 'shenyou于2020/8/19 10:36:04登入了系统!', 'shenyou'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 10:36:16.000', '申酉【经理部总经理】于2020/8/19 10:36:16尝试或成功登入了后台系统!', '申酉【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 10:52:28.000', 'WK010于2020/8/19 10:52:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 11:01:43.000', 'WK010于2020/8/19 11:01:43登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 11:38:29.000', 'WK010于2020/8/19 11:38:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 11:44:51.000', '经理部总经理杨俊杰于2020/8/19 11:44:51查看了TS1008的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 15:29:19.000', 'WK010于2020/8/19 15:29:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 15:38:13.000', 'WK010于2020/8/19 15:38:13登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 15:38:49.000', '杨俊杰【经理部总经理】于2020/8/19 15:38:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 15:43:27.000', '杨俊杰【经理部总经理】于2020/8/19 15:43:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 15:47:09.000', '杨俊杰【经理部总经理】于2020/8/19 15:47:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 16:01:01.000', '经理部杨俊杰总经理杨俊杰于2020/8/19 16:01:01导出了后台用户信息!', '经理部杨俊杰总经理'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 16:01:47.000', 'WK011于2020/8/19 16:01:47登入了系统!', 'WK011'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 16:02:17.000', '六月【酒店部职员】于2020/8/19 16:02:17尝试或成功登入了后台系统!', '六月【酒店部职员】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 16:03:54.000', '酒店部六月职员六月于2020/8/19 16:03:54导出了后台用户信息!', '酒店部六月职员'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 16:09:18.000', '六月【酒店部职员】于2020/8/19 16:09:18尝试或成功登入了后台系统!', '六月【酒店部职员】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 16:13:33.000', '六月【酒店部职员】于2020/8/19 16:13:33尝试或成功登入了后台系统!', '六月【酒店部职员】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 16:51:33.000', '六月【酒店部职员】于2020/8/19 16:51:33尝试或成功登入了后台系统!', '六月【酒店部职员】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 16:57:43.000', '六月【酒店部职员】于2020/8/19 16:57:43尝试或成功登入了后台系统!', '六月【酒店部职员】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 18:32:41.000', 'WK010于2020/8/19 18:32:41登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 18:47:35.000', 'WK011于2020/8/19 18:47:35登入了系统!', 'WK011'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 18:48:44.000', 'lien于2020/8/19 18:48:44登入了系统!', 'lien'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 23:15:27.000', 'WK010于2020/8/19 23:15:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 23:15:48.000', '杨俊杰【经理部总经理】于2020/8/19 23:15:48尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-19 23:40:21.000', 'WK010于2020/8/19 23:40:21登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 09:05:38.000', 'WK010于2020/8/20 9:05:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 09:05:45.000', '杨俊杰【经理部总经理】于2020/8/20 9:05:45尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 09:13:13.000', '杨俊杰【经理部总经理】于2020/8/20 9:13:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 09:36:36.000', '杨俊杰总经理于2020/8/20 9:36:36进行了添加员工操作,员工编号为:WK388!', '杨俊杰总经理'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 09:38:49.000', 'WK010于2020/8/20 9:38:49登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 09:38:57.000', '杨俊杰【经理部总经理】于2020/8/20 9:38:57尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 10:28:24.000', '杨俊杰【经理部总经理】于2020/8/20 10:28:24尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 10:29:42.000', 'WK010于2020/8/20 10:29:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 10:30:20.000', '杨俊杰【经理部总经理】于2020/8/20 10:30:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 10:53:26.000', '杨俊杰【经理部总经理】于2020/8/20 10:53:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 11:51:23.000', 'WK010于2020/8/20 11:51:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 11:51:36.000', '杨俊杰【经理部总经理】于2020/8/20 11:51:36尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 16:14:58.000', 'WK010于2020/8/20 16:14:58登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 16:21:20.000', 'WK010于2020/8/20 16:21:20登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 16:33:58.000', 'WK010于2020/8/20 16:33:58登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 16:35:33.000', 'WK011于2020/8/20 16:35:33登入了系统!', 'WK011'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-20 16:39:02.000', 'WK011于2020/8/20 16:39:02登入了系统!', 'WK011'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-21 10:33:02.000', 'WK010于2020/8/21 10:33:02登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-21 14:26:32.000', 'WK010于2020/8/21 14:26:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-21 14:30:30.000', '经理部总经理杨俊杰于2020/8/21 14:30:30帮助TS1571进行了消费商品:毛巾操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-21 14:31:34.000', '经理部总经理杨俊杰于2020/8/21 14:31:34帮助TS1571进行了消费商品:毛巾操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-21 14:37:35.000', '经理部总经理杨俊杰于2020/8/21 14:37:35帮助TS1571进行了消费商品:片(原味)操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-21 14:40:18.000', '经理部总经理杨俊杰于2020/8/21 14:40:18帮助TS1571进行了消费商品:WAHAHA操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-21 15:19:10.000', 'WK010于2020/8/21 15:19:10登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-21 17:02:54.000', 'WK010于2020/8/21 星期五 17:02:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-22 09:50:51.000', 'WK010于2020/8/22 9:50:51登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-22 12:02:59.000', 'WK010于2020/8/22 12:02:59登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-22 12:16:17.000', 'WK010于2020/8/22 12:16:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-22 12:24:52.000', 'WK010于2020/8/22 12:24:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-22 14:27:49.000', 'WK010于2020/8/22 14:27:49登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-22 14:44:39.000', '经理部总经理杨俊杰于2020/8/22 14:44:39帮助TS1005进行了消费商品:aaa操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-22 15:22:24.000', 'WK010于2020/8/22 15:22:24登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-22 15:22:40.000', '杨俊杰【经理部总经理】于2020/8/22 15:22:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-22 15:26:14.000', '总经理杨俊杰于2020/8/22 15:26:14进行资产录入,资产编号为:CN1262', '总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-22 15:27:25.000', '总经理杨俊杰于2020/8/22 15:27:25进行资产录入,资产编号为:', '总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-22 15:46:41.000', '总经理杨俊杰于2020/8/22 15:46:41进行资产录入,资产编号为:CN1631', '总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-23 17:01:18.000', 'WK010于2020/8/23 17:01:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-23 17:03:28.000', '杨俊杰【经理部总经理】于2020/8/23 17:03:28尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-23 17:03:54.000', 'WK010于2020/8/23 17:03:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-23 17:04:18.000', 'WK010于2020/8/23 17:04:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-23 17:04:26.000', '杨俊杰【经理部总经理】于2020/8/23 17:04:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-23 17:06:08.000', 'WK010于2020/8/23 17:06:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-23 17:06:47.000', '杨俊杰【经理部总经理】于2020/8/23 17:06:47尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-24 09:23:18.000', 'WK010于2020/8/24 9:23:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-24 09:23:26.000', '杨俊杰【经理部总经理】于2020/8/24 9:23:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-24 10:04:37.000', 'WK010于2020/8/24 10:04:37登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-24 10:04:50.000', '杨俊杰【经理部总经理】于2020/8/24 10:04:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-24 10:35:33.000', 'WK010于2020/8/24 10:35:33登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-24 11:08:28.000', 'WK010于2020/8/24 11:08:28登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-24 11:12:16.000', 'WK010于2020/8/24 11:12:16登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-24 16:40:41.000', 'WK010于2020/8/24 16:40:41登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-25 11:33:24.000', 'WK010于2020/8/25 11:33:24登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-27 12:08:42.000', 'WK010于2020/8/27 12:08:42登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-27 12:12:08.000', 'WK010于2020/8/27 12:12:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-27 22:50:17.000', 'WK010于2020-08-27 22:50:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-27 22:51:22.000', '杨俊杰【经理部总经理】于2020-08-27 22:51:22尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-27 22:51:24.000', '杨俊杰【经理部总经理】于2020-08-27 22:51:24尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-08-28 16:08:23.000', 'WK010于2020-08-28 16:08:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-01 11:07:00.000', 'WK010于2020-09-01 11:07:00登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-01 11:12:16.000', 'WK010于2020-09-01 11:12:16登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-01 11:13:14.000', 'WK010于2020-09-01 11:13:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-01 11:17:19.000', 'WK010于2020-09-01 11:17:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-01 11:22:38.000', 'WK010于2020-09-01 11:22:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-01 15:52:08.000', 'WK010于2020-09-01 15:52:08登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-02 13:03:29.000', 'WK010于2020/9/2 13:03:29登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-02 13:04:37.000', '经理部总经理杨俊杰于2020/9/2 13:04:37查看了TS1002的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-02 13:06:31.000', '经理部总经理杨俊杰于2020/9/2 13:06:31查看了TS1001的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-02 13:06:46.000', '经理部总经理杨俊杰于2020/9/2 13:06:46查看了TS1002的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-02 13:07:39.000', '经理部总经理杨俊杰于2020/9/2 13:07:39查看了TS1002的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-02 13:07:51.000', '经理部总经理杨俊杰于2020/9/2 13:07:51查看了TS1001的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-02 13:08:38.000', '经理部总经理杨俊杰于2020/9/2 13:08:38查看了TS1002的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-02 13:08:45.000', '经理部总经理杨俊杰于2020/9/2 13:08:45查看了TS1001的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-02 13:08:52.000', '经理部总经理杨俊杰于2020/9/2 13:08:52查看了TS1003的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-02 13:10:15.000', 'WK010于2020/9/2 13:10:15登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-03 10:48:52.000', 'WK010于2020/9/3 10:48:52登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-05 16:13:00.000', 'WK010于2020/09/05 16:13:00登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-06 14:04:53.000', 'WK010于2020/9/6 14:04:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-07 08:20:00.000', 'WK010于2020/9/7 8:20:00登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-07 08:20:53.000', '杨俊杰【经理部总经理】于2020/9/7 8:20:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-07 10:12:09.000', 'WK010于2020/9/7 10:12:09登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-07 10:17:00.000', 'WK010于2020/9/7 10:17:00登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-07 10:17:04.000', '杨俊杰【经理部总经理】于2020/9/7 10:17:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-07 10:21:33.000', '经理部总经理杨俊杰于2020/9/7 10:21:33查看了的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-09 11:56:53.000', 'WK010于2020-9-9 11:56:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-10 08:48:19.000', 'WK010于2020/9/10 8:48:19登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-12 17:10:23.000', 'WK010于2020/9/12 17:10:23登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-14 10:01:54.000', 'WK010于2020-09-14 10:01:54登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-14 14:07:17.000', 'WK010于2020-09-14 14:07:17登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-14 14:10:41.000', '杨俊杰【经理部总经理】于2020-09-14 14:10:41尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-14 14:31:27.000', 'WK010于2020-09-14 14:31:27登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-14 14:31:54.000', '杨俊杰【经理部总经理】于2020-09-14 14:31:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-14 14:45:16.000', 'WK010于2020-09-14 14:45:16登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 11:37:06.000', 'WK010于2020/9/16 11:37:06登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 11:39:46.000', '杨俊杰【经理部总经理】于2020/9/16 11:39:46尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 11:47:07.000', 'WK010于2020/9/16 11:47:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 11:48:11.000', '经理部总经理杨俊杰于2020/9/16 11:48:11查看了的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 11:49:09.000', '杨俊杰【经理部总经理】于2020/9/16 11:49:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 13:00:14.000', 'WK010于2020/9/16 13:00:14登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 13:00:38.000', '杨俊杰【经理部总经理】于2020/9/16 13:00:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 13:01:53.000', 'WK010于2020/9/16 13:01:53登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 13:02:47.000', '杨俊杰【经理部总经理】于2020/9/16 13:02:47尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 13:03:38.000', 'WK010于2020/9/16 13:03:38登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 13:04:14.000', '杨俊杰【经理部总经理】于2020/9/16 13:04:14尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 13:11:48.000', 'WK010于2020/9/16 13:11:48登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 13:12:11.000', '杨俊杰【经理部总经理】于2020/9/16 13:12:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 13:16:58.000', '经理部总经理杨俊杰于2020/9/16 13:16:58帮助123进行了预订房间操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 13:49:37.000', 'WK010于2020/9/16 13:49:37登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 13:50:04.000', '杨俊杰【经理部总经理】于2020/9/16 13:50:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 13:52:32.000', '经理部总经理杨俊杰于2020/9/16 13:52:32查看了的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-16 18:46:07.000', 'WK010于2020/9/16 18:46:07登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-17 09:42:18.000', 'WK010于2020/9/17 9:42:18登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-17 09:45:05.000', '经理部总经理杨俊杰于2020/9/17 9:45:05查看了TS1002的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-17 09:45:30.000', '经理部总经理杨俊杰于2020/9/17 9:45:30查看了TS1005的证件号码!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-17 09:49:55.000', '经理部总经理杨俊杰于2020/9/17 9:49:55帮助TS1998进行了消费商品:三只松鼠零食大礼包操作!', '经理部总经理杨俊杰'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-17 11:59:45.000', 'WK010于2020-09-17 11:59:45登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-17 12:04:32.000', 'WK010于2020-09-17 12:04:32登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-17 16:06:22.000', 'WK010于2020-09-17 16:06:22登入了系统!', 'WK010'); GO -INSERT INTO [OperationLog]([OperationTime], [OperationLog], [OperationAccount]) VALUES ('2020-09-23 13:43:38.000', 'WK010于2020/9/23 13:43:38登入了系统!', 'WK010'); GO -INSERT INTO [PASSPORTTYPE]([PassportId], [PassportName]) VALUES (0, '中国居民身份证'); GO -INSERT INTO [PASSPORTTYPE]([PassportId], [PassportName]) VALUES (1, '港澳通行证'); GO -INSERT INTO [PASSPORTTYPE]([PassportId], [PassportName]) VALUES (2, '台胞证'); GO -INSERT INTO [PASSPORTTYPE]([PassportId], [PassportName]) VALUES (3, '军官证'); GO -INSERT INTO [PASSPORTTYPE]([PassportId], [PassportName]) VALUES (4, '外国护照'); GO -INSERT INTO [RESER]([ReserId], [CustoName], [CustoTel], [ReserWay], [ReserRoom], [ReserDate], [ReserEndDate], [ReserRemark]) VALUES ('R2726', '杨', '1478452762', '前台', 'BD001', '2020-06-24', '2020-06-24', ''); GO -INSERT INTO [RESER]([ReserId], [CustoName], [CustoTel], [ReserWay], [ReserRoom], [ReserDate], [ReserEndDate], [ReserRemark]) VALUES ('R7275', '', '', '前台', 'ZT006', '2020-05-31', '2020-05-31', ''); GO -INSERT INTO [RESER]([ReserId], [CustoName], [CustoTel], [ReserWay], [ReserRoom], [ReserDate], [ReserEndDate], [ReserRemark]) VALUES ('R6583', '123', '123', '前台', 'ZT006', '2020-09-16', '2020-09-16', ''); GO -INSERT INTO [RESER]([ReserId], [CustoName], [CustoTel], [ReserWay], [ReserRoom], [ReserDate], [ReserEndDate], [ReserRemark]) VALUES ('R8700', 'lili', '123', '前台', 'BS008', '2020-08-15', '2020-08-15', '无'); GO -INSERT INTO [RESER]([ReserId], [CustoName], [CustoTel], [ReserWay], [ReserRoom], [ReserDate], [ReserEndDate], [ReserRemark]) VALUES ('R6761', '边云飞', '15810825328', '前台', 'HD008', '2020-08-19', '2020-08-22', '测试'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BD001', 0, NULL, NULL, '2020-08-18 17:31:22.343', 3, 300.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BD002', 0, 'TS1008', '2020-08-19 09:44:18.000', NULL, 1, 300.00, '1', 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BD003', 0, NULL, NULL, '2020-08-15 16:58:31.620', 3, 300.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BD004', 0, NULL, NULL, '2020-05-04 13:04:48.477', 0, 300.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BD005', 0, 'TS1005', '2020-08-15 12:17:56.000', NULL, 1, 300.00, '1', 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BD006', 0, NULL, NULL, '2020-05-04 13:07:55.940', 0, 300.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BD007', 0, NULL, NULL, '2020-05-27 08:32:17.963', 0, 300.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BD008', 0, NULL, NULL, NULL, 0, 300.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BD009', 0, NULL, NULL, '2020-06-02 11:35:07.067', 0, 300.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BD010', 0, NULL, NULL, '2020-05-26 15:25:28.963', 0, 300.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BS001', 1, 'TS1571', '2020-08-15 12:22:24.000', NULL, 1, 425.00, '10', 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BS002', 1, NULL, NULL, '2020-04-06 20:24:32.857', 0, 425.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BS003', 1, NULL, NULL, '2020-04-06 19:59:18.707', 0, 425.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BS004', 1, NULL, NULL, '2018-12-26 20:11:26.480', 0, 425.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BS005', 1, NULL, NULL, '2020-04-07 14:37:32.113', 2, 425.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BS006', 1, 'TS1998', '2020-08-21 15:21:02.000', NULL, 1, 425.00, '1', 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BS007', 1, NULL, NULL, '2020-05-27 08:32:10.150', 0, 425.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BS008', 1, NULL, NULL, NULL, 4, 425.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('BS009', 1, NULL, NULL, NULL, 0, 425.00, NULL, 'A层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HD001', 2, NULL, NULL, NULL, 0, 625.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HD002', 2, NULL, NULL, NULL, 0, 625.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HD003', 2, NULL, NULL, '2020-05-27 08:31:28.130', 0, 625.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HD004', 2, NULL, NULL, NULL, 0, 625.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HD005', 2, NULL, NULL, NULL, 0, 625.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HD006', 2, NULL, NULL, NULL, 0, 625.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HD007', 2, NULL, NULL, NULL, 0, 625.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HD008', 2, NULL, NULL, NULL, 4, 625.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HD009', 2, NULL, NULL, NULL, 0, 625.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HS001', 3, NULL, NULL, '2020-04-07 14:48:40.683', 0, 600.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HS002', 3, NULL, NULL, NULL, 0, 660.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HS003', 3, NULL, NULL, NULL, 0, 660.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HS004', 3, NULL, NULL, NULL, 0, 660.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HS005', 3, NULL, NULL, '2018-12-25 08:44:07.160', 0, 660.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HS006', 3, NULL, NULL, NULL, 0, 660.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HS007', 3, NULL, NULL, NULL, 0, 660.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('HS008', 3, NULL, NULL, NULL, 0, 660.00, NULL, 'B层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('QL001', 4, NULL, NULL, '2018-12-26 09:51:40.100', 0, 845.00, NULL, 'C层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('QL002', 4, NULL, NULL, NULL, 0, 845.00, NULL, 'C层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('QL003', 4, 'TS1043', '2020-08-04 11:45:36.000', NULL, 1, 845.00, '2', 'C层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('QL004', 4, NULL, NULL, NULL, 0, 845.00, NULL, 'C层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('QL005', 4, NULL, NULL, NULL, 3, 845.00, NULL, 'C层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('QL006', 4, NULL, NULL, NULL, 0, 845.00, NULL, 'C层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('ZT001', 5, NULL, NULL, NULL, 0, 1080.00, NULL, 'D层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('ZT002', 5, NULL, NULL, '2020-04-23 20:53:47.190', 0, 1080.00, NULL, 'D层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('ZT003', 5, NULL, NULL, NULL, 0, 1080.00, NULL, 'D层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('ZT004', 5, NULL, NULL, NULL, 0, 1080.00, NULL, 'D层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('ZT005', 5, NULL, NULL, '2020-05-27 08:32:01.380', 0, 1080.00, NULL, 'D层'); GO -INSERT INTO [ROOM]([RoomNo], [RoomType], [CustoNo], [CheckTime], [CheckOutTime], [RoomStateId], [RoomMoney], [PersonNum], [RoomPosition]) VALUES ('ZT006', 5, NULL, NULL, '2020-05-27 08:31:41.733', 4, 1080.00, NULL, 'D层'); GO -INSERT INTO [ROOMSTATE]([RoomStateId], [RoomState]) VALUES (0, '空房'); GO -INSERT INTO [ROOMSTATE]([RoomStateId], [RoomState]) VALUES (1, '已住'); GO -INSERT INTO [ROOMSTATE]([RoomStateId], [RoomState]) VALUES (2, '维修中'); GO -INSERT INTO [ROOMSTATE]([RoomStateId], [RoomState]) VALUES (3, '脏房'); GO -INSERT INTO [ROOMSTATE]([RoomStateId], [RoomState]) VALUES (4, '已预约'); GO -INSERT INTO [ROOMTYPE]([RoomType], [RoomName]) VALUES (0, '标准单人间'); GO -INSERT INTO [ROOMTYPE]([RoomType], [RoomName]) VALUES (1, '标准双人间'); GO -INSERT INTO [ROOMTYPE]([RoomType], [RoomName]) VALUES (2, '豪华单人间'); GO -INSERT INTO [ROOMTYPE]([RoomType], [RoomName]) VALUES (3, '豪华双人间'); GO -INSERT INTO [ROOMTYPE]([RoomType], [RoomName]) VALUES (4, '情侣套房'); GO -INSERT INTO [ROOMTYPE]([RoomType], [RoomName]) VALUES (5, '总统套房'); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST003', '可口可乐', 10.00, '/瓶(1.5L)', 969); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST005', '乐事薯片(原味)', 20.00, '/包(145g)', 971); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST007', '雪碧', 2.50, '/罐', 996); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST008', '特级杜蕾斯', 40.00, '/盒', 184); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST009', '三只松鼠夏威夷坚果', 40.00, '/袋(160g)', 1484); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST010', '蟹味瓜子仁', 30.00, '/袋', 1000); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST011', '青岛啤酒', 15.00, '/瓶', 967); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST012', '火腿肠', 10.00, '/包(40g)', 996); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST013', '毛巾', 10.00, '/条', 1000); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST014', '澡巾', 12.50, '/条', 1000); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST015', '香皂', 25.00, '/个(145g)', 996); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST016', '牙刷', 10.00, '/个', 1000); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST017', '红枣', 25.00, '/包', 1000); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST019', '扑克牌', 5.00, '/副', 248); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST020', 'TS纪念品', 10.00, '/个', 998); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST021', '三只松鼠零食大礼包', 299.00, '/礼包', 2998); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST022', '芬达', 10.00, '/瓶(1.5L)', 900); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST398', '拉菲', 1080.00, '/支', 999); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST677', '92拉菲', 10800.00, '/瓶', 1154); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST851', 'T仔', 90.00, '/个', 30000); GO -INSERT INTO [SELLTHING]([SellNo], [SellName], [SellPrice], [format], [Stock]) VALUES ('ST983', '日清方便面', 5.50, '/桶', 3000); GO -INSERT INTO [SPEND]([CustoNo], [SpendDate], [SpendMoney], [SpendType], [SpendMess], [Lender], [Reamrks]) VALUES ('TS1001', '2018-10-05 00:00:00.000', 300.00, 1, '吃喝睡', '陈洪汉', NULL); GO -INSERT INTO [SPEND]([CustoNo], [SpendDate], [SpendMoney], [SpendType], [SpendMess], [Lender], [Reamrks]) VALUES ('TS1395', '2018-10-22 00:00:00.000', 1200.00, 2, '吸收了两只万年魂兽', '戴沐白', '魂兽真香'); GO -INSERT INTO [SPENDTYPE]([SpendType], [TypeName]) VALUES (0, '房费'); GO -INSERT INTO [SPENDTYPE]([SpendType], [TypeName]) VALUES (1, '娱乐'); GO -INSERT INTO [SPENDTYPE]([SpendType], [TypeName]) VALUES (2, '饮食'); GO -INSERT INTO [UPLOADINFO]([NoticeNo], [Noticetheme], [NoticeTime], [NoticeContent], [NoticeClub], [NoticePerson]) VALUES ('', '', '2020-07-16 00:00:00.000', '', '人力资源管理部', 'Admin'); GO -INSERT INTO [UPLOADINFO]([NoticeNo], [Noticetheme], [NoticeTime], [NoticeContent], [NoticeClub], [NoticePerson]) VALUES ('UP001', '人员调动', '2018-12-03 15:48:58.043', '现将临时工李顺调为正式工,并担任经理部秘书!即日起生效', '人事部', '罗良建'); GO -INSERT INTO [UPLOADINFO]([NoticeNo], [Noticetheme], [NoticeTime], [NoticeContent], [NoticeClub], [NoticePerson]) VALUES ('UP002', 'XXXX', '2018-12-11 00:00:00.000', '即日起关于XXX的调任公告...', '人力资源管理部', 'Admin'); GO -INSERT INTO [UPLOADINFO]([NoticeNo], [Noticetheme], [NoticeTime], [NoticeContent], [NoticeClub], [NoticePerson]) VALUES ('UP003', 'asdasdsa', '2018-12-11 00:00:00.000', 'asdasdasd', '人力资源管理部', 'Admin'); GO -INSERT INTO [UPLOADINFO]([NoticeNo], [Noticetheme], [NoticeTime], [NoticeContent], [NoticeClub], [NoticePerson]) VALUES ('UP004', 'XXXX', '2018-12-11 00:00:00.000', '即日起关于XXX的调任公告...', '人力资源管理部', 'Admin'); GO -INSERT INTO [UPLOADINFO]([NoticeNo], [Noticetheme], [NoticeTime], [NoticeContent], [NoticeClub], [NoticePerson]) VALUES ('UP012', 'sdadasdas', '2018-12-11 00:00:00.000', 'asdsdasaffff', '人力资源管理部', 'Admin'); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('', '', '男', '', -1, '', '', '1900-01-01 13:12:00.000', 3); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1001', '杨俊', '男', '12345678901', 0, '440921199907205764', '', '1900-01-01 00:00:00.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1002', '熊越明', '男', '12345678901', 0, '9999-8888-7777-6666', '', '1900-01-01 00:00:00.000', 1); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1003', '宾华安', '男', '13075612081', 0, '440982200007035911', '', '1900-01-01 00:00:00.000', 1); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1005', 'Billy Hank', '男', '1231231213', 4, '003-12312312222222', 'American SHENGDIYAGE', '1900-01-01 18:19:00.000', 3); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1008', 'lili ', '女', '18775663774', 0, '450221199806181568', '广西壮族自治区柳州市柳江县', '1998-06-18 00:00:00.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1032', '汪十', '男', '12345678911', 0, '123123213231', '', '1900-01-01 19:07:00.000', 3); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1043', '理查德', '男', '', 0, '', '', '2020-07-05 14:03:11.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1074', '李四', '男', '13411152323', 0, '899100090902323', NULL, '1870-08-23 21:35:47.000', 3); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1081', '杨俊杰', '男', '12345678901', 0, '440921199907205754', '', '1900-01-01 00:00:00.000', 2); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1084', '景晨', '男', '13902992233', 1, '363939877421', '', '1998-02-17 15:40:04.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1140', '王五', '男', '', 0, '430621199806271759', '湖南省岳阳市岳阳县', '1998-06-27 00:00:00.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1194', '繁星洛', '男', '13411541604', 0, '440921199907205754', '珠海', '1989-12-25 11:40:27.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1239', '222', '男', '11111', 0, '130302197707163442', '河北省秦皇岛市海港区', '1977-07-16 00:00:00.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1251', '良辰', '男', '12345678987', 0, '232342342', '', '2001-12-03 16:22:52.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1256', 'Billy Hank', '男', '1231231213', 4, '003-12312312222222', 'American SHENGDIYAGE', '1900-01-01 18:19:00.000', 3); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1260', 'XYZ', '男', '12312313123', 0, '2312312312312', '', '1900-01-01 19:55:00.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1266', '小舞', '女', '2222222', 0, '2222222222222', '', '1998-12-03 11:49:45.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1290', '景晨', '男', '13902992233', 1, '363939877421', '', '1998-02-17 15:40:04.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1310', 'abc', '女', '17663721822', -1, '', '', '2020-05-27 11:19:07.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1336', 'ojh', '女', '877889', 0, '431990199812148787', '', '1998-12-14 00:00:00.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1364', 'MR.A', '女', '123123123', 0, '221021199612169889', '', '1996-12-16 00:00:00.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1365', '卢本伟', '男', '999', 0, '440922019931213879', '广东省茂名市高州县', '2020-06-02 21:19:11.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1387', '尚志强', '男', '', 0, '130123432918423456', '河北省石家庄市正定县', '2018-03-21 10:23:05.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1389', '彤彤', '女', '', 0, '42028819450827801x', '', '1945-08-27 00:00:00.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1395', '唐三', '男', '14566554434', 0, '990021123321233', NULL, '1990-09-12 16:26:24.000', 1); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1457', '罗良健', '男', '', 0, '440921199907205754', '', '1999-10-28 21:08:35.000', 1); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1472', '王五', '男', '', 0, '430521199806271639', '湖南省邵阳市邵东县', '1998-06-27 00:00:00.000', 3); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1480', '申', '男', '12354697812', 0, '339021199812147878', '', '1998-12-14 00:00:00.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1537', 'June', '女', '001-0221002', 4, '00291129111221', '', '1900-02-10 19:53:57.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1571', '测试1', '男', '12344442222', 0, '4344321519920222', '', '1992-02-22 10:28:53.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1634', '杨俊杰', '男', '12345678901', 0, '440921199907205254', '', '1900-01-01 00:00:00.000', 2); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1757', '付金鑫1', '男', '312312313', 0, '123123123', '市区', '1900-01-01 00:00:00.000', 1); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1765', 'pdd', '男', '123123123', 1, '12312412412', '', '1900-01-01 19:59:00.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1779', 'MR.S', '男', '789798789', 0, '440921199312145757', '广东省茂名市信宜县', '1993-12-14 00:00:00.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1812', '杨俊杰', '男', '12345678901', 0, '440921199907205764', '', '1900-01-01 00:00:00.000', 2); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1816', '李顺', '男', '15217186471', 0, '123456789012345678', '天堂度假村', '1900-01-01 20:14:00.000', 1); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1828', '里', '男', '12335467698', 0, '450421199706221658', '二夫人都是否定的否定', '1997-06-22 00:00:00.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1862', '杨三三', '女', '15672234544', 0, '44023119801122343X', NULL, '1980-11-22 21:39:49.000', 1); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1897', '汪十', '男', '12345678911', 0, '123123213231', '', '1900-01-01 19:07:00.000', 3); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1903', '赵六', '男', '11011011', 0, '110110110110', NULL, '1890-02-13 19:01:32.000', 3); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1914', '杨高兴', '男', '17845712478', 0, '362330178405217890', '江西省上饶地区波阳县', '1900-01-01 00:00:00.000', 1); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1926', '路英才', '男', '1232312', 3, 'KJ00101231', '', '1900-12-09 20:24:15.000', 3); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1968', 'dsad', '男', '123123', 0, '23123123', '', '2018-12-10 20:00:20.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1997', '汪十', '男', '12345678911', 0, '123123213231', '', '1900-01-01 19:07:00.000', 3); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS1998', '丽丽 ', '女', '18757523769', 0, '450621199806272589', '广西壮族自治区防城港市上思县', '1998-06-27 00:00:00.000', 0); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS6128', 'Susan', '女', '001-1222222', 4, '099900121212', '美利坚共和国纽约', '1997-02-23 19:24:28.000', 3); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS6666', '付金鑫', '男', '312312313', 0, '123123123', '市区', '1900-01-01 00:00:00.000', 1); GO -INSERT INTO [USERINFO]([CustoNo], [CustoName], [CustoSex], [CustoTel], [PassportType], [CustoID], [CustoAdress], [CustoBirth], [CustoType]) VALUES ('TS8888', 'Yang', '男', '123123', 0, '12312312312', 'sdads', '2018-01-01 00:00:00.000', 3); GO -INSERT INTO [USERTYPE]([UserType], [TypeName]) VALUES (0, '普通用户'); GO -INSERT INTO [USERTYPE]([UserType], [TypeName]) VALUES (1, '钻石会员'); GO -INSERT INTO [USERTYPE]([UserType], [TypeName]) VALUES (2, '白金会员'); GO -INSERT INTO [USERTYPE]([UserType], [TypeName]) VALUES (3, '黄金会员'); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-04-19 19:23:13.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-04-21 19:25:55.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-04-22 13:01:26.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-04-23 15:46:18.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-04-25 18:44:03.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-04-26 10:33:41.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-04-29 00:12:50.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK001', '2020-04-29 12:38:12.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-01 00:24:14.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-02 10:54:07.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-03 19:55:47.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-04 12:51:47.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-07 15:20:18.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-08 22:06:14.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-09 10:46:01.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-10 21:30:52.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-11 20:16:32.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-12 20:58:07.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-14 22:14:03.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-15 17:07:43.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-18 22:26:40.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-19 10:49:38.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-20 08:40:40.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-21 14:38:13.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-22 19:48:30.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-24 18:35:58.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-25 14:28:22.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-27 23:50:39.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-05-28 17:23:55.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-06-02 21:20:57.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-06-04 15:53:00.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-06-07 22:36:06.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-06-08 22:31:55.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-06-12 14:41:33.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-06-19 12:42:27.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-06-24 17:37:10.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-06-28 09:31:41.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-07-01 16:31:36.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-07-02 22:25:34.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-07-13 14:16:26.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-07-16 15:02:03.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-07-24 11:29:44.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-08-04 11:39:43.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-08-05 16:49:44.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-08-06 16:52:38.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-08-07 15:35:51.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-08-19 15:56:18.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-08-23 17:06:06.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-09-14 14:09:25.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-09-16 13:02:07.000', '系统界面', 0); GO -INSERT INTO [WORKERCHECK]([WorkerNo], [CheckTime], [CheckWay], [CheckState]) VALUES ('WK010', '2020-09-17 09:44:26.000', '系统界面', 0); GO -INSERT INTO [WorkerGoodBad]([WorkNo], [GBInfo], [GBType], [GBOperation], [GBTime]) VALUES ('WK008', '牛逼就完事了!', 0, '杨俊杰', '2020-04-21 21:02:30.000'); GO -INSERT INTO [WorkerGoodBad]([WorkNo], [GBInfo], [GBType], [GBOperation], [GBTime]) VALUES ('WK775', '被评为优秀的“五四”行业青年', 0, '杨俊杰', '2020-05-04 13:01:17.000'); GO -INSERT INTO [WORKERHISTORY]([WorkerId], [StartDate], [EndDate], [Position], [Company]) VALUES ('WK010', '2005-03-05 00:00:00.000', '2008-03-05 00:00:00.000', '部门经理', '海湾大酒店'); GO -INSERT INTO [WORKERHISTORY]([WorkerId], [StartDate], [EndDate], [Position], [Company]) VALUES ('WK010', '2009-06-23 00:00:00.000', '2010-02-02 00:00:00.000', '总经理', '非凡大酒店'); GO -INSERT INTO [WORKERHISTORY]([WorkerId], [StartDate], [EndDate], [Position], [Company]) VALUES ('WK775', '2015-07-17 12:57:15.000', '2018-05-04 12:57:15.000', '财务会计', '非凡会计所'); GO -INSERT INTO [WORKERHISTORY]([WorkerId], [StartDate], [EndDate], [Position], [Company]) VALUES ('WK261', '2020-07-16 21:13:33.000', '2020-07-16 21:13:33.000', '', ''); GO -INSERT INTO [WORKERHISTORY]([WorkerId], [StartDate], [EndDate], [Position], [Company]) VALUES ('WK100', '2020-07-16 21:13:42.000', '2020-07-16 21:13:42.000', '', ''); GO -INSERT INTO [WORKERHISTORY]([WorkerId], [StartDate], [EndDate], [Position], [Company]) VALUES ('WK388', '2020-08-20 09:33:45.000', '2020-08-20 09:33:45.000', '', ''); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('Duyen', '阿娟', '1969-10-11 00:00:00.000', '女', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2020-07-05 02:20:30.643', '党员', '高中'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('Hien', '阿賢', '1969-10-11 00:00:00.000', '女', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2020-07-05 02:19:53.250', '党员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('Huong', '阿香', '1969-10-11 00:00:00.000', '女', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2020-07-05 02:17:24.937', '党员', '高中'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('Lam', '阿隆', '1969-10-11 00:00:00.000', '女', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2020-07-05 02:21:52.400', '党员', '高中'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('Lien', '阿蓮', '1969-10-11 00:00:00.000', '女', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2020-07-05 02:16:43.913', '党员', '高中'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('Shenyou', '申酉', '1999-07-20 00:00:00.000', '男', '15019927415', '经理部', '金湾', '总经理', '123121313132X3', '123456', '2020-07-05 02:18:18.937', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK001', '谭国平', '1999-12-05 00:00:00.000', '男', '15693857612', '人事部', '红旗', '职员', '12343564758586', '123456', '2018-12-03 15:48:36.950', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK002', '李杰峰', '1999-10-15 00:00:00.000', '男', '15632343232', '财务部', '市区', '经理', '12343564758586', '123456', '2018-12-03 15:48:37.020', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK003', '陈伟瀚', '1999-11-20 00:00:00.000', '男', '13036456756', '后勤部', '斗门', '经理', '12343564758586', '123456', '2018-12-03 15:48:37.020', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK004', '杨旭东', '1999-02-15 00:00:00.000', '男', '15693857612', '商品部', '井岸', '职员', '12343564758586', '123456', '2018-12-03 15:48:37.020', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK005', '付金鑫', '1999-06-05 00:00:00.000', '男', '15693857612', '酒店部', '市区', '经理', '12343564758586', '123456', '2018-12-03 15:48:37.020', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK006', '陈洪汉', '1999-10-05 00:00:00.000', '男', '15693857612', '人事部', '南屏', '经理', '12343564758586', '123456', '2018-12-03 15:48:37.023', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK007', '罗良建', '2000-12-05 00:00:00.000', '男', '15693857612', '人事部', '市区', '职员', '12343564758586', '123456', '2018-12-03 15:48:37.023', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK008', '林淑仪', '1999-12-05 00:00:00.000', '女', '15693857612', '人事部', '市区', '总经理', '12343564758586', '123456', '2018-12-03 15:48:37.023', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK009', '老铁', '1989-12-05 00:00:00.000', '男', '15693857612', '人事部', '市区', '职员', '12343564758586', '123456', '2018-12-03 15:48:37.023', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK010', '杨俊杰', '1999-07-20 00:00:00.000', '男', '15019927415', '经理部', '金湾', '总经理', '123121313132X3', 'admin', '2011-04-20 00:00:00.000', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK011', '六月', '1899-10-11 00:00:00.000', '男', '13433221223', '酒店部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '群众', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK012', '七月', '1989-10-11 00:00:00.000', '男', '13433221223', '酒店部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '群众', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK013', '八月', '1979-10-11 00:00:00.000', '男', '13433221223', '人事部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '群众', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK014', '九月', '1969-10-11 00:00:00.000', '男', '13433221223', '人事部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '群众', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK015', '十元', '1959-10-11 00:00:00.000', '男', '13433221223', '人事部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '群众', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK016', '十月', '1949-10-11 00:00:00.000', '女', '13433221223', '人事部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '群众', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK017', '十一月', '1939-10-11 00:00:00.000', '女', '13433221223', '人事部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '群众', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK018', '十二月', '1929-10-11 00:00:00.000', '女', '13433221223', '商品部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '群众', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK019', '十四年', '1911-10-11 00:00:00.000', '女', '13433221223', '商品部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '群众', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK020', '十五年', '1992-10-11 00:00:00.000', '女', '13433221223', '商品部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '群众', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK021', '一楠', '1993-10-11 00:00:00.000', '女', '13433221223', '商品部', '斗门', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK022', '二南', '1994-10-11 00:00:00.000', '男', '13433221223', '商品部', '斗门', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK023', '三男', '1995-10-11 00:00:00.000', '男', '13433221223', '商品部', '斗门', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK024', '四北', '1996-10-11 00:00:00.000', '男', '13433221223', '财务部', '斗门', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK025', '花呗', '1997-10-11 00:00:00.000', '女', '13433221223', '财务部', '斗门', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK026', '蚂蚁', '1998-10-11 00:00:00.000', '男', '13433221223', '财务部', '斗门', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '团员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK027', '余额宝', '1919-10-11 00:00:00.000', '男', '13433221223', '财务部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '群众', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK028', '支付宝', '1929-10-11 00:00:00.000', '男', '13433221223', '财务部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '群众', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK029', '阿里', '1939-10-11 00:00:00.000', '女', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '党员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK030', '阿狸', '1949-10-11 00:00:00.000', '男', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '党员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK031', '阿力', '1959-10-11 00:00:00.000', '男', '13433221223', '财务部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '党员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK032', '瞎小', '1969-10-11 00:00:00.000', '女', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '党员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK033', '沙宣', '1979-10-11 00:00:00.000', '男', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '党员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK034', '沙县', '1989-10-11 00:00:00.000', '男', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00.000', '党员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK100', '', '2020-07-16 21:13:42.000', '男', '', '酒店部', '', '职员', '', '937742888', '2020-07-16 21:13:42.000', '群众', '小学'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK261', '', '2020-07-16 21:13:33.000', '男', '', '酒店部', '', '职员', '', '462039223', '2020-07-16 21:13:33.000', '群众', '小学'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK388', '张三', '1998-06-27 00:00:00.000', '男', '18756497655', '酒店部', '广西壮族自治区防城港市上思县', '职员', '450621199806271679', '585402554', '2020-08-20 09:33:45.000', '群众', '小学'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('WK775', '凌峰', '1995-07-14 00:00:00.000', '男', '13328993360', '财务部', '广东省茂名市信宜县', '职员', '440921199507149395', '123456', '2020-05-04 12:57:15.000', '党员', '本科'); GO -INSERT INTO [WORKERINFO]([WorkerId], [WorkerName], [WorkerBirthday], [WorkerSex], [WorkerTel], [WorkerClub], [WorkerAddress], [WorkerPosition], [CardID], [WorkerPwd], [WorkerTime], [WorkerFace], [WorkerEducation]) VALUES ('Xingxue', '興學', '1999-07-20 00:00:00.000', '男', '15019927415', '经理部', '金湾', '总经理', '123121313132X3', '123456', '2020-07-05 02:18:52.613', '团员', '專科'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD001', '2018-12-11 09:48:00.000', '2018-12-11 10:08:29.000', 3.00, 3.00, 'admin', 'TS8888'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('ZT005', '2018-12-27 11:43:15.000', '2018-12-27 11:43:15.000', 5.00, 10.00, 'admin', 'TS1816'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('ZT006', '2018-12-27 11:44:01.000', '2018-12-27 11:44:01.000', .16, 3.00, 'admin', 'TS8888'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD003', '2018-12-06 00:00:00.000', '2018-12-11 07:27:57.000', .80, 15.00, 'admin', 'TS6666'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('HD002', '2018-11-29 00:00:00.000', '2018-12-11 07:40:07.000', 1.92, 36.00, 'admin', 'TS1003'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD005', '2018-12-06 00:00:00.000', '2018-12-11 07:43:28.000', .80, 15.00, 'admin', 'TS1002'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('HS005', '2018-11-29 00:00:00.000', '2018-12-11 07:45:00.000', 1.92, 36.00, 'admin', 'TS1032'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD001', '2018-12-20 19:59:10.000', '2018-12-21 00:31:00.000', .16, 3.00, 'admin', 'TS1862'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BS001', '2018-12-27 20:46:42.000', '2018-12-27 20:46:42.000', .00, .00, 'admin', 'TS1003'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('HD001', '2018-12-26 09:55:37.000', '2020-02-28 17:08:35.000', 68.64, 1287.00, 'admin', 'TS1862'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('ZT001', '2019-10-28 21:13:40.000', '2020-03-14 23:20:57.000', 22.08, 414.00, 'admin', 'TS1457'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('QL001', '2018-12-26 09:51:10.000', '2018-12-26 09:51:10.000', .16, 3.00, 'admin', 'TS1395'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BS004', '2018-12-26 20:11:18.000', '2018-12-26 20:11:18.000', .00, .00, 'admin', 'TS1251'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BS003', '2018-12-26 18:52:53.000', '2020-04-06 19:58:52.000', 74.72, 1401.00, 'admin', 'TS1084'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BS002', '2018-12-26 18:52:37.000', '2020-04-06 20:24:26.000', 74.70, 1401.00, 'admin', 'TS1074'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('HD002', '2018-12-27 17:32:26.000', '2020-04-06 20:25:04.000', 74.56, 1398.00, 'admin', 'TS1634'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('HD003', '2018-12-26 20:06:12.000', '2020-04-06 20:25:22.000', 74.72, 1401.00, 'admin', 'TS1765'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD002', '2018-12-27 20:26:49.000', '2020-04-07 00:23:43.000', 74.72, 1401.00, 'admin', 'TS1001'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BS005', '2020-04-07 14:34:21.000', '2020-04-07 14:37:17.000', .00, .00, 'admin', 'TS1081'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BS009', '2020-04-08 12:49:19.000', '2020-04-09 14:39:53.000', .16, 3.00, 'admin', 'TS6666'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD003', '2020-04-06 18:14:17.000', '2020-04-14 16:46:08.000', 1.28, 24.00, 'admin', 'TS1779'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD001', '2020-04-23 16:35:48.000', '2020-04-23 16:35:48.000', .48, 9.00, 'admin', 'TS1032'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('ZT002', '2020-04-23 20:53:29.000', '2020-04-23 20:53:29.000', 2.56, 48.00, 'admin', 'TS1364'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD001', '2020-04-25 20:19:57.000', '2020-04-26 19:06:06.000', .16, 3.00, 'admin', 'TS1336'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD004', '2020-04-29 12:39:21.000', '2020-05-04 13:04:09.000', .80, 15.00, 'admin', 'TS1480'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD006', '2020-04-26 10:36:51.000', '2020-05-04 13:07:25.000', 1.28, 24.00, 'admin', 'TS1032'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD001', '2020-05-07 15:16:55.000', '2020-05-25 15:29:10.000', 2.88, 54.00, 'admin', 'TS1239'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD010', '2020-05-04 13:12:36.000', '2020-05-26 15:24:43.000', -6.40, -120.00, 'admin', 'TS1043'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('HD003', '2020-04-26 10:36:24.000', '2020-05-27 08:31:14.000', 4.96, 93.00, 'admin', 'TS1001'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('ZT006', '2020-05-04 13:12:36.000', '2020-05-27 08:31:36.000', 3.68, 69.00, 'admin', 'TS1074'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('ZT005', '2020-03-03 19:59:44.000', '2020-05-27 08:31:56.000', 13.60, 255.00, 'admin', 'TS1005'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BS007', '2020-04-05 13:12:36.000', '2020-05-27 08:32:04.000', 8.32, 156.00, 'admin', 'TS1003'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD007', '2020-04-05 13:12:36.000', '2020-05-27 08:32:13.000', 8.32, 156.00, 'admin', 'TS1002'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD003', '2020-05-27 11:19:21.000', '2020-05-27 11:20:00.000', .00, .00, 'admin', 'TS1310'); GO -INSERT INTO [WTINFO]([RoomNo], [UseDate], [EndDate], [WaterUse], [PowerUse], [Record], [CustoNo]) VALUES ('BD001', '2020-08-04 11:45:36.000', '2020-08-18 17:31:12.000', 12.32, 231.00, 'admin', 'TS1365'); GO diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/Data.sql" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/Data.sql" new file mode 100644 index 0000000000000000000000000000000000000000..56276ad80c2e5e03c8e57fc9bbe87090feb971a8 --- /dev/null +++ "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/Data.sql" @@ -0,0 +1,9350 @@ +INSERT INTO `admininfo`(`AdminAccount`, `AdminPassword`, `AdminType`, `AdminName`, `IsAdmin`, `DeleteMk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES ('admin', 'admin', '总经理', '杨俊杰', 1, 0, 'System', NULL, 'System', NULL); +INSERT INTO `admininfo`(`AdminAccount`, `AdminPassword`, `AdminType`, `AdminName`, `IsAdmin`, `DeleteMk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES ('bha', 'hotelmin', '酒店经理', '宾华安', 0, 0, 'System', NULL, 'System', NULL); +INSERT INTO `admininfo`(`AdminAccount`, `AdminPassword`, `AdminType`, `AdminName`, `IsAdmin`, `DeleteMk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES ('xym', 'cashmin', '财务经理', '熊越明', 0, 0, 'System', NULL, 'System', NULL); +INSERT INTO `admintype`(`type_id`, `type_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Admin', '超级管理员', 0, NULL, NULL, NULL, NULL); +INSERT INTO `admintype`(`type_id`, `type_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('FinanceManager', '财务经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `admintype`(`type_id`, `type_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('GeneralManager', '总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `admintype`(`type_id`, `type_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HotelManager', '酒店经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `admintype`(`type_id`, `type_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HRManager', '人力资源经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `admintype`(`type_id`, `type_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('LogisticsManager', '后勤经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `applicationversion`(`base_versionId`, `base_version`) VALUES (1, '1.4.2.3'); +INSERT INTO `backinfo`(`BackNo`, `BackName`, `BackSource`, `BackCash`, `BackType`, `BackPerson`, `ControlClub`, `BackClub`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('B001', '一次性毛巾', '超市', 1000.00, 1, '李杰峰', '财务部', '餐饮部', 0, NULL, NULL, NULL, NULL); +INSERT INTO `backinfo`(`BackNo`, `BackName`, `BackSource`, `BackCash`, `BackType`, `BackPerson`, `ControlClub`, `BackClub`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('B002', '一次性牙刷', '超市', 2000.00, 2, '李杰峰', '财务部', '酒店部', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (300, '河北省', '保定地区', '高碑店市', '132404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (301, '河北省', '保定地区', '易县', '132421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (302, '河北省', '保定地区', '满城县', '132422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (303, '河北省', '保定地区', '徐水县', '132423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (304, '河北省', '保定地区', '涞源县', '132424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (305, '河北省', '保定地区', '定兴县', '132425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (306, '河北省', '保定地区', '完县', '132426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (307, '河北省', '保定地区', '唐县', '132427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (308, '河北省', '保定地区', '望都县', '132428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (309, '河北省', '保定地区', '涞水县', '132429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (310, '河北省', '保定地区', '涿县', '132430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (311, '河北省', '保定地区', '清苑县', '132431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (312, '河北省', '保定地区', '高阳县', '132432'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (313, '河北省', '保定地区', '安新县', '132433'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (314, '河北省', '保定地区', '雄县', '132434'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (315, '河北省', '保定地区', '容城县', '132435'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (316, '河北省', '保定地区', '新城县', '132436'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (317, '河北省', '保定地区', '曲阳县', '132437'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (318, '河北省', '保定地区', '阜平县', '132438'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (319, '河北省', '保定地区', '定县', '132439'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (320, '河北省', '保定地区', '安国县', '132440'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (321, '河北省', '保定地区', '博野县', '132441'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (322, '河北省', '保定地区', '蠡县', '132442'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (323, '河北省', '张家口地区', '张家口市', '132501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (324, '河北省', '张家口地区', '张北市', '132521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (325, '河北省', '张家口地区', '康保县', '132522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (326, '河北省', '张家口地区', '沽源县', '132523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (327, '河北省', '张家口地区', '尚义县', '132524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (328, '河北省', '张家口地区', '蔚县', '132525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (329, '河北省', '张家口地区', '阳原县', '132526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (330, '河北省', '张家口地区', '怀安县', '132527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (331, '河北省', '张家口地区', '万全县', '132528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (332, '河北省', '张家口地区', '怀来县', '132529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (333, '河北省', '张家口地区', '涿鹿县', '132530'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (334, '河北省', '张家口地区', '宣化县', '132531'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (335, '河北省', '张家口地区', '赤城县', '132532'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (336, '河北省', '张家口地区', '崇礼县', '132533'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (337, '河北省', '承德地区', '承德市', '132601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (338, '河北省', '承德地区', '青龙县', '132621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (339, '河北省', '承德地区', '宽城满族自治县', '132622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (340, '河北省', '承德地区', '兴隆县', '132623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (341, '河北省', '承德地区', '平泉县', '132624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (342, '河北省', '承德地区', '承德县', '132625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (343, '河北省', '承德地区', '滦平县', '132626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (344, '河北省', '承德地区', '丰宁满族自治县', '132627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (345, '河北省', '承德地区', '隆化县', '132628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (346, '河北省', '承德地区', '围场满族蒙古族自治县', '132629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (347, '河北省', '廊坊地区', '廊坊市', '132801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (348, '河北省', '廊坊地区', '三河县', '132821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (349, '河北省', '廊坊地区', '大厂回族自治县', '132822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (350, '河北省', '廊坊地区', '香河县', '132823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (351, '河北省', '廊坊地区', '永清县', '132825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (352, '河北省', '廊坊地区', '固安县', '132826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (353, '河北省', '廊坊地区', '霸县', '132827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (354, '河北省', '廊坊地区', '文安县', '132828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (355, '河北省', '廊坊地区', '大城县', '132829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (356, '河北省', '沧州地区', '沧州市', '132901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (357, '河北省', '沧州地区', '泊头市', '132902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (358, '河北省', '沧州地区', '任丘市', '132903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (359, '河北省', '沧州地区', '黄骅市', '132904'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (360, '河北省', '沧州地区', '河间市', '132905'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (361, '河北省', '沧州地区', '沧县', '132921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (362, '河北省', '沧州地区', '河间县', '132922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (363, '河北省', '沧州地区', '肃宁县', '132923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (364, '河北省', '沧州地区', '献县', '132924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (365, '河北省', '沧州地区', '交河县', '132925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (366, '河北省', '沧州地区', '吴桥县', '132926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (367, '河北省', '沧州地区', '东光县', '132927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (368, '河北省', '沧州地区', '南皮县', '132928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (369, '河北省', '沧州地区', '盐山县', '132929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (370, '河北省', '沧州地区', '黄骅县', '132930'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (371, '河北省', '沧州地区', '孟村回族自治县', '132931'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (372, '河北省', '沧州地区', '青县', '132932'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (373, '河北省', '沧州地区', '任丘县', '132933'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (374, '河北省', '沧州地区', '海兴县', '132934'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (375, '河北省', '衡水地区', '衡水市', '133001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (376, '河北省', '衡水地区', '冀州市', '133002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (377, '河北省', '衡水地区', '衡水县', '133021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (378, '河北省', '衡水地区', '冀县', '133022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (379, '河北省', '衡水地区', '枣强县', '133023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (380, '河北省', '衡水地区', '武邑县', '133024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (381, '河北省', '衡水地区', '深县', '133025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (382, '河北省', '衡水地区', '武强县', '133026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (383, '河北省', '衡水地区', '饶阳县', '133027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (384, '河北省', '衡水地区', '安平县', '133028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (385, '河北省', '衡水地区', '故城县', '133029'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (386, '河北省', '衡水地区', '景县', '133030'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (387, '河北省', '衡水地区', '阜城县', '133031'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (388, '河北省', NULL, '武安市', '139001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (389, '山西省', '太原市', '市辖区', '140101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (390, '山西省', '太原市', '南城区', '140102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (391, '山西省', '太原市', '北城区', '140103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (392, '山西省', '太原市', '河西区', '140104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (393, '山西省', '太原市', '小店区', '140105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (394, '山西省', '太原市', '迎泽区', '140106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (395, '山西省', '太原市', '杏花岭区', '140107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (396, '山西省', '太原市', '尖草坪区', '140108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (397, '山西省', '太原市', '万柏林区', '140109'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (398, '山西省', '太原市', '晋源区', '140110'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (399, '山西省', '太原市', '古交工矿区', '140111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (400, '山西省', '太原市', '南郊区', '140112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (401, '山西省', '太原市', '北郊区', '140113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (402, '山西省', '太原市', '清徐县', '140121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (403, '山西省', '太原市', '阳曲县', '140122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (404, '山西省', '太原市', '娄烦县', '140123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (405, '山西省', '太原市', '古交市', '140181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (406, '山西省', '大同市', '市辖区', '140201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (407, '山西省', '大同市', '城区', '140202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (408, '山西省', '大同市', '矿区', '140203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (409, '山西省', '大同市', '南郊区', '140211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (410, '山西省', '大同市', '新荣区', '140212'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (411, '山西省', '大同市', '阳高县', '140221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (412, '山西省', '大同市', '天镇县', '140222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (413, '山西省', '大同市', '广灵县', '140223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (414, '山西省', '大同市', '灵丘县', '140224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (415, '山西省', '大同市', '浑源县', '140225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (416, '山西省', '大同市', '左云县', '140226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (417, '山西省', '大同市', '大同县', '140227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (418, '山西省', '大同市', '左云县', '140230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (419, '山西省', '大同市', '大同县', '140232'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (420, '山西省', '阳泉市', '市辖区', '140301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (421, '山西省', '阳泉市', '城区', '140302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (422, '山西省', '阳泉市', '矿区', '140303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (423, '山西省', '阳泉市', '郊区', '140311'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (424, '山西省', '阳泉市', '平定县', '140321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (425, '山西省', '阳泉市', '盂县', '140322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (426, '山西省', '长治市', '市辖区', '140401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (427, '山西省', '长治市', '城区', '140402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (428, '山西省', '长治市', '郊区', '140411'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (429, '山西省', '长治市', '长治县', '140421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (430, '山西省', '长治市', '襄垣县', '140423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (431, '山西省', '长治市', '屯留县', '140424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (432, '山西省', '长治市', '平顺县', '140425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (433, '山西省', '长治市', '黎城县', '140426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (434, '山西省', '长治市', '壶关县', '140427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (435, '山西省', '长治市', '长子县', '140428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (436, '山西省', '长治市', '武乡县', '140429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (437, '山西省', '长治市', '沁县', '140430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (438, '山西省', '长治市', '沁源县', '140431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (439, '山西省', '长治市', '潞城市', '140481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (440, '山西省', '晋城市', '市辖区', '140501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (441, '山西省', '晋城市', '城区', '140502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (442, '山西省', '晋城市', '郊区', '140511'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (443, '山西省', '晋城市', '沁水县', '140521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (444, '山西省', '晋城市', '阳城县', '140522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (445, '山西省', '晋城市', '高平县', '140523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (446, '山西省', '晋城市', '陵川县', '140524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (447, '山西省', '晋城市', '泽州县', '140525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (448, '山西省', '晋城市', '高平市', '140581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (449, '山西省', '朔州市', '市辖区', '140601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (450, '山西省', '朔州市', '朔城区', '140602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (451, '山西省', '朔州市', '平鲁区', '140603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (452, '山西省', '朔州市', '山阴县', '140621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (453, '山西省', '朔州市', '应县', '140622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (454, '山西省', '朔州市', '右玉县', '140623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (455, '山西省', '朔州市', '怀仁县', '140624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (456, '山西省', '晋中市', '市辖区', '140701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (457, '山西省', '晋中市', '榆次区', '140702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (458, '山西省', '晋中市', '榆社县', '140721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (459, '山西省', '晋中市', '左权县', '140722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (460, '山西省', '晋中市', '和顺县', '140723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (461, '山西省', '晋中市', '昔阳县', '140724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (462, '山西省', '晋中市', '寿阳县', '140725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (463, '山西省', '晋中市', '太谷县', '140726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (464, '山西省', '晋中市', '祁县', '140727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (465, '山西省', '晋中市', '平遥县', '140728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (466, '山西省', '晋中市', '灵石县', '140729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (467, '山西省', '晋中市', '介休市', '140781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (468, '山西省', '运城市', '市辖区', '140801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (469, '山西省', '运城市', '盐湖区', '140802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (470, '山西省', '运城市', '临猗县', '140821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (471, '山西省', '运城市', '万荣县', '140822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (472, '山西省', '运城市', '闻喜县', '140823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (473, '山西省', '运城市', '稷山县', '140824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (474, '山西省', '运城市', '新绛县', '140825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (475, '山西省', '运城市', '绛县', '140826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (476, '山西省', '运城市', '垣曲县', '140827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (477, '山西省', '运城市', '夏县', '140828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (478, '山西省', '运城市', '平陆县', '140829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (479, '山西省', '运城市', '芮城县', '140830'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (480, '山西省', '运城市', '永济市', '140881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (481, '山西省', '运城市', '河津市', '140882'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (482, '山西省', '忻州市', '市辖区', '140901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (483, '山西省', '忻州市', '忻府区', '140902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (484, '山西省', '忻州市', '定襄县', '140921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (485, '山西省', '忻州市', '五台县', '140922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (486, '山西省', '忻州市', '代县', '140923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (487, '山西省', '忻州市', '繁峙县', '140924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (488, '山西省', '忻州市', '宁武县', '140925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (489, '山西省', '忻州市', '静乐县', '140926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (490, '山西省', '忻州市', '神池县', '140927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (491, '山西省', '忻州市', '五寨县', '140928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (492, '山西省', '忻州市', '岢岚县', '140929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (493, '山西省', '忻州市', '河曲县', '140930'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (494, '山西省', '忻州市', '保德县', '140931'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (495, '山西省', '忻州市', '偏关县', '140932'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (496, '山西省', '忻州市', '原平市', '140981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (497, '山西省', '临汾市', '市辖区', '141001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (498, '山西省', '临汾市', '尧都区', '141002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (499, '山西省', '临汾市', '曲沃县', '141021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (500, '山西省', '临汾市', '翼城县', '141022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (501, '山西省', '临汾市', '襄汾县', '141023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (502, '山西省', '临汾市', '洪洞县', '141024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (503, '山西省', '临汾市', '古县', '141025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (504, '山西省', '临汾市', '安泽县', '141026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (505, '山西省', '临汾市', '浮山县', '141027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (506, '山西省', '临汾市', '吉县', '141028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (507, '山西省', '临汾市', '乡宁县', '141029'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (508, '山西省', '临汾市', '大宁县', '141030'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (509, '山西省', '临汾市', '隰县', '141031'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (510, '山西省', '临汾市', '永和县', '141032'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (511, '山西省', '临汾市', '蒲县', '141033'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (512, '山西省', '临汾市', '汾西县', '141034'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (513, '山西省', '临汾市', '侯马市', '141081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (514, '山西省', '临汾市', '霍州市', '141082'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (515, '山西省', '吕梁市', '市辖区', '141101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (516, '山西省', '吕梁市', '离石区', '141102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (517, '山西省', '吕梁市', '文水县', '141121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (518, '山西省', '吕梁市', '交城县', '141122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (519, '山西省', '吕梁市', '兴县', '141123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (520, '山西省', '吕梁市', '临县', '141124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (521, '山西省', '吕梁市', '柳林县', '141125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (522, '山西省', '吕梁市', '石楼县', '141126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (523, '山西省', '吕梁市', '岚县', '141127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (524, '山西省', '吕梁市', '方山县', '141128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (525, '山西省', '吕梁市', '中阳县', '141129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (526, '山西省', '吕梁市', '交口县', '141130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (527, '山西省', '吕梁市', '孝义市', '141181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (528, '山西省', '吕梁市', '汾阳市', '141182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (529, '山西省', '雁北地区', '阳高县', '142121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (530, '山西省', '雁北地区', '天镇县', '142122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (531, '山西省', '雁北地区', '广灵县', '142123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (532, '山西省', '雁北地区', '灵丘县', '142124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (533, '山西省', '雁北地区', '浑源县', '142125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (534, '山西省', '雁北地区', '应县', '142126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (535, '山西省', '雁北地区', '山阴县', '142127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (536, '山西省', '雁北地区', '朔县', '142128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (537, '山西省', '雁北地区', '平鲁县', '142129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (538, '山西省', '雁北地区', '左云县', '142130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (539, '山西省', '雁北地区', '右玉县', '142131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (540, '山西省', '雁北地区', '大同县', '142132'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (541, '山西省', '雁北地区', '怀仁县', '142133'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (542, '山西省', '忻州地区', '忻州市', '142201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (543, '山西省', '忻州地区', '原平市', '142202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (544, '山西省', '忻州地区', '定襄县', '142222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (545, '山西省', '忻州地区', '五台县', '142223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (546, '山西省', '忻州地区', '代县', '142225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (547, '山西省', '忻州地区', '繁峙县', '142226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (548, '山西省', '忻州地区', '宁武县', '142227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (549, '山西省', '忻州地区', '静乐县', '142228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (550, '山西省', '忻州地区', '神池县', '142229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (551, '山西省', '忻州地区', '五寨县', '142230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (552, '山西省', '忻州地区', '岢岚县', '142231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (553, '山西省', '忻州地区', '河曲县', '142232'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (554, '山西省', '忻州地区', '保德县', '142233'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (555, '山西省', '忻州地区', '偏关县', '142234'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (556, '山西省', '吕梁地区', '孝义市', '142301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (557, '山西省', '吕梁地区', '离石市', '142302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (558, '山西省', '吕梁地区', '汾阳市', '142303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (559, '山西省', '吕梁地区', '汾阳县', '142321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (560, '山西省', '吕梁地区', '文水县', '142322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (561, '山西省', '吕梁地区', '交城县', '142323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (562, '山西省', '吕梁地区', '兴县', '142325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (563, '山西省', '吕梁地区', '临县', '142326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (564, '山西省', '吕梁地区', '柳林县', '142327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (565, '山西省', '吕梁地区', '石楼县', '142328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (566, '山西省', '吕梁地区', '岚县', '142329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (567, '山西省', '吕梁地区', '方山县', '142330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (568, '山西省', '吕梁地区', '中阳县', '142332'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (569, '山西省', '吕梁地区', '交口县', '142333'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (570, '山西省', '晋中地区', '榆次市', '142401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (571, '山西省', '晋中地区', '介休市', '142402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (572, '山西省', '晋中地区', '榆社县', '142421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (573, '山西省', '晋中地区', '左权县', '142422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (574, '山西省', '晋中地区', '和顺县', '142423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (575, '山西省', '晋中地区', '昔阳县', '142424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (576, '山西省', '晋中地区', '寿阳县', '142427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (577, '山西省', '晋中地区', '太谷县', '142429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (578, '山西省', '晋中地区', '祁县', '142430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (579, '山西省', '晋中地区', '平遥县', '142431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (580, '山西省', '晋中地区', '灵石县', '142433'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (581, '山西省', '临汾地区', '临汾市', '142601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (582, '山西省', '临汾地区', '侯马市', '142602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (583, '山西省', '临汾地区', '霍州市', '142603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (584, '山西省', '临汾地区', '曲沃县', '142621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (585, '山西省', '临汾地区', '翼城县', '142622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (586, '山西省', '临汾地区', '襄汾县', '142623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (587, '山西省', '临汾地区', '洪洞县', '142625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (588, '山西省', '临汾地区', '古县', '142627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (589, '山西省', '临汾地区', '安泽县', '142628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (590, '山西省', '临汾地区', '浮山县', '142629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (591, '山西省', '临汾地区', '吉县', '142630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (592, '山西省', '临汾地区', '乡宁县', '142631'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (593, '山西省', '临汾地区', '蒲县', '142632'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (594, '山西省', '临汾地区', '大宁县', '142633'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (595, '山西省', '临汾地区', '永和县', '142634'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (596, '山西省', '临汾地区', '隰县', '142635'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (597, '山西省', '临汾地区', '汾西县', '142636'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (598, '山西省', '运城地区', '运城市', '142701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (599, '山西省', '运城地区', '永济市', '142702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (600, '山西省', '运城地区', '河津市', '142703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (601, '山西省', '运城地区', '芮城县', '142723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (602, '山西省', '运城地区', '临猗县', '142724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (603, '山西省', '运城地区', '万荣县', '142725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (604, '山西省', '运城地区', '新绛县', '142726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (605, '山西省', '运城地区', '稷山县', '142727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (606, '山西省', '运城地区', '闻喜县', '142729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (607, '山西省', '运城地区', '夏县', '142730'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (608, '山西省', '运城地区', '绛县', '142731'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (609, '山西省', '运城地区', '平陆县', '142732'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (610, '山西省', '运城地区', '垣曲县', '142733'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (611, '山西省', NULL, '古交市', '149001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (612, '内蒙古自治区', '呼和浩特市', '市辖区', '150101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (613, '内蒙古自治区', '呼和浩特市', '新城区', '150102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (614, '内蒙古自治区', '呼和浩特市', '回民区', '150103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (615, '内蒙古自治区', '呼和浩特市', '玉泉区', '150104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (616, '内蒙古自治区', '呼和浩特市', '郊区', '150105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (617, '内蒙古自治区', '呼和浩特市', '土默特左旗', '150121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (618, '内蒙古自治区', '呼和浩特市', '托克托县', '150122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (619, '内蒙古自治区', '呼和浩特市', '和林格尔县', '150123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (620, '内蒙古自治区', '呼和浩特市', '清水河县', '150124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (621, '内蒙古自治区', '呼和浩特市', '武川县', '150125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (622, '内蒙古自治区', '包头市', '市辖区', '150201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (623, '内蒙古自治区', '包头市', '东河区', '150202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (624, '内蒙古自治区', '包头市', '昆都伦区', '150203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (625, '内蒙古自治区', '包头市', '青山区', '150204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (626, '内蒙古自治区', '包头市', '石拐矿区', '150205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (627, '内蒙古自治区', '包头市', '白云矿区', '150206'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (628, '内蒙古自治区', '包头市', '郊区', '150207'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (629, '内蒙古自治区', '包头市', '土默特右旗', '150221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (630, '内蒙古自治区', '包头市', '固阳县', '150222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (631, '内蒙古自治区', '包头市', '达尔罕茂明安联合旗', '150223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (632, '内蒙古自治区', '乌海市', '市辖区', '150301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (633, '内蒙古自治区', '乌海市', '海勃湾区', '150302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (634, '内蒙古自治区', '乌海市', '海南区', '150303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (635, '内蒙古自治区', '乌海市', '乌达区', '150304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (636, '内蒙古自治区', '赤峰市', '市辖区', '150401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (637, '内蒙古自治区', '赤峰市', '红山区', '150402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (638, '内蒙古自治区', '赤峰市', '元宝山区', '150403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (639, '内蒙古自治区', '赤峰市', '松山区', '150404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (640, '内蒙古自治区', '赤峰市', '阿鲁科尔沁旗', '150421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (641, '内蒙古自治区', '赤峰市', '巴林左旗', '150422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (642, '内蒙古自治区', '赤峰市', '巴林右旗', '150423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (643, '内蒙古自治区', '赤峰市', '林西县', '150424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (644, '内蒙古自治区', '赤峰市', '克什克腾旗', '150425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (645, '内蒙古自治区', '赤峰市', '翁牛特旗', '150426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (646, '内蒙古自治区', '赤峰市', '喀喇沁旗', '150428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (647, '内蒙古自治区', '赤峰市', '宁城县', '150429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (648, '内蒙古自治区', '赤峰市', '敖汉旗', '150430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (649, '内蒙古自治区', '通辽市', '市辖区', '150501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (650, '内蒙古自治区', '通辽市', '科尔沁区', '150502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (651, '内蒙古自治区', '通辽市', '科尔沁左翼中旗', '150521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (652, '内蒙古自治区', '通辽市', '科尔沁左翼后旗', '150522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (653, '内蒙古自治区', '通辽市', '开鲁县', '150523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (654, '内蒙古自治区', '通辽市', '库伦旗', '150524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (655, '内蒙古自治区', '通辽市', '奈曼旗', '150525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (656, '内蒙古自治区', '通辽市', '扎鲁特旗', '150526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (657, '内蒙古自治区', '通辽市', '霍林郭勒市', '150581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (658, '内蒙古自治区', '鄂尔多斯市', '鄂尔多斯市', '150601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (659, '内蒙古自治区', '鄂尔多斯市', '东胜区', '150602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (660, '内蒙古自治区', '鄂尔多斯市', '达拉特旗', '150621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (661, '内蒙古自治区', '鄂尔多斯市', '准格尔旗', '150622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (662, '内蒙古自治区', '鄂尔多斯市', '鄂托克前旗', '150623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (663, '内蒙古自治区', '鄂尔多斯市', '鄂托克旗', '150624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (664, '内蒙古自治区', '鄂尔多斯市', '杭锦旗', '150625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (665, '内蒙古自治区', '鄂尔多斯市', '乌审旗', '150626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (666, '内蒙古自治区', '鄂尔多斯市', '伊金霍洛旗', '150627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (667, '内蒙古自治区', '呼伦贝尔市', '市辖区', '150701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (668, '内蒙古自治区', '呼伦贝尔市', '海拉尔区', '150702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (669, '内蒙古自治区', '呼伦贝尔市', '阿荣旗', '150721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (670, '内蒙古自治区', '呼伦贝尔市', '莫力达瓦达斡尔族自治旗', '150722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (671, '内蒙古自治区', '呼伦贝尔市', '鄂伦春自治旗', '150723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (672, '内蒙古自治区', '呼伦贝尔市', '鄂温克族自治旗', '150724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (673, '内蒙古自治区', '呼伦贝尔市', '陈巴尔虎旗', '150725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (674, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎左旗', '150726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (675, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎右旗', '150727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (676, '内蒙古自治区', '呼伦贝尔市', '满洲里市', '150781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (677, '内蒙古自治区', '呼伦贝尔市', '牙克石市', '150782'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (678, '内蒙古自治区', '呼伦贝尔市', '扎兰屯市', '150783'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (679, '内蒙古自治区', '呼伦贝尔市', '额尔古纳市', '150784'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (680, '内蒙古自治区', '呼伦贝尔市', '根河市', '150785'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (681, '内蒙古自治区', '巴彦淖尔市', '市辖区', '150801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (682, '内蒙古自治区', '巴彦淖尔市', '临河区', '150802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (683, '内蒙古自治区', '巴彦淖尔市', '五原县', '150821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (684, '内蒙古自治区', '巴彦淖尔市', '磴口县', '150822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (685, '内蒙古自治区', '巴彦淖尔市', '乌拉特前旗', '150823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (686, '内蒙古自治区', '巴彦淖尔市', '乌拉特中旗', '150824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (687, '内蒙古自治区', '巴彦淖尔市', '乌拉特后旗', '150825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (688, '内蒙古自治区', '巴彦淖尔市', '杭锦后旗', '150826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (689, '内蒙古自治区', '乌兰察布市', '市辖区', '150901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (690, '内蒙古自治区', '乌兰察布市', '集宁区', '150902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (691, '内蒙古自治区', '乌兰察布市', '卓资县', '150921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (692, '内蒙古自治区', '乌兰察布市', '化德县', '150922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (693, '内蒙古自治区', '乌兰察布市', '商都县', '150923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (694, '内蒙古自治区', '乌兰察布市', '兴和县', '150924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (695, '内蒙古自治区', '乌兰察布市', '凉城县', '150925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (696, '内蒙古自治区', '乌兰察布市', '察哈尔右翼前旗', '150926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (697, '内蒙古自治区', '乌兰察布市', '察哈尔右翼中旗', '150927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (698, '内蒙古自治区', '乌兰察布市', '察哈尔右翼后旗', '150928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (699, '内蒙古自治区', '乌兰察布市', '四子王旗', '150929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (700, '内蒙古自治区', '乌兰察布市', '丰镇市', '150981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (701, '内蒙古自治区', '呼伦贝尔盟', '海拉尔市', '152101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (702, '内蒙古自治区', '呼伦贝尔盟', '满洲里市', '152102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (703, '内蒙古自治区', '呼伦贝尔盟', '扎兰屯市', '152103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (704, '内蒙古自治区', '呼伦贝尔盟', '牙克石市', '152104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (705, '内蒙古自治区', '呼伦贝尔盟', '根河市', '152105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (706, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳市', '152106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (707, '内蒙古自治区', '呼伦贝尔盟', '布特哈旗', '152121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (708, '内蒙古自治区', '呼伦贝尔盟', '阿荣旗', '152122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (709, '内蒙古自治区', '呼伦贝尔盟', '莫力达瓦达斡尔族自治旗', '152123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (710, '内蒙古自治区', '呼伦贝尔盟', '喜桂图旗', '152124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (711, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳右旗', '152125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (712, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳左旗', '152126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (713, '内蒙古自治区', '呼伦贝尔盟', '鄂伦春自治旗', '152127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (714, '内蒙古自治区', '呼伦贝尔盟', '鄂温克族自治旗', '152128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (715, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎右旗', '152129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (716, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎左旗', '152130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (717, '内蒙古自治区', '呼伦贝尔盟', '陈巴尔虎旗', '152131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (718, '内蒙古自治区', '兴安盟', '乌兰浩特市', '152201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (719, '内蒙古自治区', '兴安盟', '阿尔山市', '152202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (720, '内蒙古自治区', '兴安盟', '科尔沁右翼前旗', '152221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (721, '内蒙古自治区', '兴安盟', '科尔沁右翼中旗', '152222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (722, '内蒙古自治区', '兴安盟', '扎赉特旗', '152223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (723, '内蒙古自治区', '兴安盟', '突泉县', '152224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (724, '内蒙古自治区', '哲里木盟', '通辽市', '152301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (725, '内蒙古自治区', '哲里木盟', '霍林郭勒市', '152302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (726, '内蒙古自治区', '哲里木盟', '通辽县', '152321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (727, '内蒙古自治区', '哲里木盟', '科尔沁左翼中旗', '152322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (728, '内蒙古自治区', '哲里木盟', '科尔沁左翼后旗', '152323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (729, '内蒙古自治区', '哲里木盟', '开鲁县', '152324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (730, '内蒙古自治区', '哲里木盟', '库伦旗', '152325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (731, '内蒙古自治区', '哲里木盟', '奈曼旗', '152326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (732, '内蒙古自治区', '哲里木盟', '扎鲁特旗', '152327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (733, '内蒙古自治区', '锡林郭勒盟', '二连浩特市', '152501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (734, '内蒙古自治区', '锡林郭勒盟', '锡林浩特市', '152502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (735, '内蒙古自治区', '锡林郭勒盟', '阿巴嘎旗', '152522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (736, '内蒙古自治区', '锡林郭勒盟', '苏尼特左旗', '152523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (737, '内蒙古自治区', '锡林郭勒盟', '苏尼特右旗', '152524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (738, '内蒙古自治区', '锡林郭勒盟', '东乌珠穆沁旗', '152525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (739, '内蒙古自治区', '锡林郭勒盟', '西乌珠穆沁旗', '152526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (740, '内蒙古自治区', '锡林郭勒盟', '太仆寺旗', '152527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (741, '内蒙古自治区', '锡林郭勒盟', '镶黄旗', '152528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (742, '内蒙古自治区', '锡林郭勒盟', '正镶白旗', '152529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (743, '内蒙古自治区', '锡林郭勒盟', '正蓝旗', '152530'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (744, '内蒙古自治区', '锡林郭勒盟', '多伦县', '152531'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (745, '内蒙古自治区', '乌兰察布盟', '集宁市', '152601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (746, '内蒙古自治区', '乌兰察布盟', '丰镇市', '152602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (747, '内蒙古自治区', '乌兰察布盟', '武川县', '152621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (748, '内蒙古自治区', '乌兰察布盟', '和林格尔县', '152622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (749, '内蒙古自治区', '乌兰察布盟', '清水河县', '152623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (750, '内蒙古自治区', '乌兰察布盟', '卓资县', '152624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (751, '内蒙古自治区', '乌兰察布盟', '化德县', '152625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (752, '内蒙古自治区', '乌兰察布盟', '商都县', '152626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (753, '内蒙古自治区', '乌兰察布盟', '兴和县', '152627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (754, '内蒙古自治区', '乌兰察布盟', '丰镇县', '152628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (755, '内蒙古自治区', '乌兰察布盟', '凉城县', '152629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (756, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼前旗', '152630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (757, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼中旗', '152631'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (758, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼后旗', '152632'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (759, '内蒙古自治区', '乌兰察布盟', '达尔罕茂明安联合旗', '152633'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (760, '内蒙古自治区', '乌兰察布盟', '四子王旗', '152634'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (761, '内蒙古自治区', '伊克昭盟', '东胜市', '152701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (762, '内蒙古自治区', '伊克昭盟', '东胜县', '152721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (763, '内蒙古自治区', '伊克昭盟', '达拉特旗', '152722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (764, '内蒙古自治区', '伊克昭盟', '准格尔旗', '152723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (765, '内蒙古自治区', '伊克昭盟', '鄂托克前旗', '152724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (766, '内蒙古自治区', '伊克昭盟', '鄂托克旗', '152725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (767, '内蒙古自治区', '伊克昭盟', '杭锦旗', '152726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (768, '内蒙古自治区', '伊克昭盟', '乌审旗', '152727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (769, '内蒙古自治区', '伊克昭盟', '伊金霍洛旗', '152728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (770, '内蒙古自治区', '巴彦淖尔盟', '临河市', '152801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (771, '内蒙古自治区', '巴彦淖尔盟', '临河县', '152821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (772, '内蒙古自治区', '巴彦淖尔盟', '五原县', '152822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (773, '内蒙古自治区', '巴彦淖尔盟', '磴口县', '152823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (774, '内蒙古自治区', '巴彦淖尔盟', '乌拉特前旗', '152824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (775, '内蒙古自治区', '巴彦淖尔盟', '乌拉特中旗', '152825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (776, '内蒙古自治区', '巴彦淖尔盟', '乌拉特后旗', '152826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (777, '内蒙古自治区', '巴彦淖尔盟', '杭锦后旗', '152827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (778, '内蒙古自治区', '阿拉善盟', '阿拉善左旗', '152921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (779, '内蒙古自治区', '阿拉善盟', '阿拉善右旗', '152922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (780, '内蒙古自治区', '阿拉善盟', '额济纳旗', '152923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (781, '辽宁省', '沈阳市', '市辖区', '210101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (782, '辽宁省', '沈阳市', '和平区', '210102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (783, '辽宁省', '沈阳市', '沈河区', '210103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (784, '辽宁省', '沈阳市', '大东区', '210104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (785, '辽宁省', '沈阳市', '皇姑区', '210105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (786, '辽宁省', '沈阳市', '铁西区', '210106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (787, '辽宁省', '沈阳市', '苏家屯区', '210111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (788, '辽宁省', '沈阳市', '东陵区', '210112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (789, '辽宁省', '沈阳市', '沈北新区', '210113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (790, '辽宁省', '沈阳市', '于洪区', '210114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (791, '辽宁省', '沈阳市', '市区', '210120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (792, '辽宁省', '沈阳市', '新民县', '210121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (793, '辽宁省', '沈阳市', '辽中县', '210122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (794, '辽宁省', '沈阳市', '康平县', '210123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (795, '辽宁省', '沈阳市', '法库县', '210124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (796, '辽宁省', '沈阳市', '新民市', '210181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (797, '辽宁省', '大连市', '市辖区', '210201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (798, '辽宁省', '大连市', '中山区', '210202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (799, '辽宁省', '大连市', '西岗区', '210203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (800, '辽宁省', '大连市', '沙河口区', '210204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (801, '辽宁省', '大连市', '甘井子区', '210211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (802, '辽宁省', '大连市', '旅顺口区', '210212'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (803, '辽宁省', '大连市', '金州区', '210213'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (804, '辽宁省', '大连市', '瓦房店市', '210219'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (805, '辽宁省', '大连市', '市区', '210220'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (806, '辽宁省', '大连市', '金县', '210221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (807, '辽宁省', '大连市', '新金县', '210222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (808, '辽宁省', '大连市', '复县', '210223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (809, '辽宁省', '大连市', '长海县', '210224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (810, '辽宁省', '大连市', '庄河县', '210225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (811, '辽宁省', '大连市', '瓦房店市', '210281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (812, '辽宁省', '大连市', '普兰店市', '210282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (813, '辽宁省', '大连市', '庄河市', '210283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (814, '辽宁省', '鞍山市', '市辖区', '210301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (815, '辽宁省', '鞍山市', '铁东区', '210302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (816, '辽宁省', '鞍山市', '铁西区', '210303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (817, '辽宁省', '鞍山市', '立山区', '210304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (818, '辽宁省', '鞍山市', '千山区', '210311'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (819, '辽宁省', '鞍山市', '开发区', '210319'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (820, '辽宁省', '鞍山市', '台安县', '210321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (821, '辽宁省', '鞍山市', '岫岩满族自治县', '210323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (822, '辽宁省', '鞍山市', '海城市', '210381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (823, '辽宁省', '抚顺市', '市辖区', '210401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (824, '辽宁省', '抚顺市', '新抚区', '210402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (825, '辽宁省', '抚顺市', '东洲区', '210403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (826, '辽宁省', '抚顺市', '望花区', '210404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (827, '辽宁省', '抚顺市', '顺城区', '210411'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (828, '辽宁省', '抚顺市', '抚顺县', '210421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (829, '辽宁省', '抚顺市', '新宾满族自治县', '210422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (830, '辽宁省', '抚顺市', '清原满族自治县', '210423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (831, '辽宁省', '本溪市', '市辖区', '210501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (832, '辽宁省', '本溪市', '平山区', '210502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (833, '辽宁省', '本溪市', '溪湖区', '210503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (834, '辽宁省', '本溪市', '明山区', '210504'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (835, '辽宁省', '本溪市', '南芬区', '210505'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (836, '辽宁省', '本溪市', '南芬区', '210511'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (837, '辽宁省', '本溪市', '本溪满族自治县', '210521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (838, '辽宁省', '本溪市', '桓仁满族自治县', '210522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (839, '辽宁省', '丹东市', '市辖区', '210601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (840, '辽宁省', '丹东市', '元宝区', '210602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (841, '辽宁省', '丹东市', '振兴区', '210603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (842, '辽宁省', '丹东市', '振安区', '210604'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (843, '辽宁省', '丹东市', '市区', '210620'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (844, '辽宁省', '丹东市', '凤城满族自治县', '210621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (845, '辽宁省', '丹东市', '岫岩满族自治县', '210622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (846, '辽宁省', '丹东市', '东沟县', '210623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (847, '辽宁省', '丹东市', '宽甸满族自治县', '210624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (848, '辽宁省', '丹东市', '东港市', '210681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (849, '辽宁省', '丹东市', '凤城市', '210682'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (850, '辽宁省', '锦州市', '市辖区', '210701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (851, '辽宁省', '锦州市', '古塔区', '210702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (852, '辽宁省', '锦州市', '凌河区', '210703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (853, '辽宁省', '锦州市', '南票区', '210704'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (854, '辽宁省', '锦州市', '葫芦岛区', '210705'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (855, '辽宁省', '锦州市', '太和区', '210711'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (856, '辽宁省', '锦州市', '锦西市', '210719'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (857, '辽宁省', '锦州市', '市区', '210720'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (858, '辽宁省', '锦州市', '锦西县', '210721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (859, '辽宁省', '锦州市', '兴城县', '210722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (860, '辽宁省', '锦州市', '绥中县', '210723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (861, '辽宁省', '锦州市', '锦县', '210724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (862, '辽宁省', '锦州市', '北镇满族自治县', '210725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (863, '辽宁省', '锦州市', '黑山县', '210726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (864, '辽宁省', '锦州市', '义县', '210727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (865, '辽宁省', '锦州市', '凌海市', '210781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (866, '辽宁省', '锦州市', '北镇市', '210782'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (867, '辽宁省', '营口市', '市辖区', '210801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (868, '辽宁省', '营口市', '站前区', '210802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (869, '辽宁省', '营口市', '西市区', '210803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (870, '辽宁省', '营口市', '鲅鱼圈区', '210804'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (871, '辽宁省', '营口市', '老边区', '210811'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (872, '辽宁省', '营口市', '营口县', '210821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (873, '辽宁省', '营口市', '盖县', '210824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (874, '辽宁省', '营口市', '盖州市', '210881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (875, '辽宁省', '营口市', '大石桥市', '210882'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (876, '辽宁省', '阜新市', '市辖区', '210901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (877, '辽宁省', '阜新市', '海州区', '210902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (878, '辽宁省', '阜新市', '新邱区', '210903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (879, '辽宁省', '阜新市', '太平区', '210904'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (880, '辽宁省', '阜新市', '清河门区', '210905'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (881, '辽宁省', '阜新市', '细河区', '210911'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (882, '辽宁省', '阜新市', '阜新蒙古族自治县', '210921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (883, '辽宁省', '阜新市', '彰武县', '210922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (884, '辽宁省', '辽阳市', '市辖区', '211001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (885, '辽宁省', '辽阳市', '白塔区', '211002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (886, '辽宁省', '辽阳市', '文圣区', '211003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (887, '辽宁省', '辽阳市', '宏伟区', '211004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (888, '辽宁省', '辽阳市', '弓长岭区', '211005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (889, '辽宁省', '辽阳市', '太子河区', '211011'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (890, '辽宁省', '辽阳市', '辽阳县', '211021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (891, '辽宁省', '辽阳市', '灯塔县', '211022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (892, '辽宁省', '辽阳市', '灯塔市', '211081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (893, '辽宁省', '盘锦市', '市辖区', '211101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (894, '辽宁省', '盘锦市', '双台子区', '211102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (895, '辽宁省', '盘锦市', '兴隆台区', '211103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (896, '辽宁省', '盘锦市', '郊区', '211111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (897, '辽宁省', '盘锦市', '大洼县', '211121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (898, '辽宁省', '盘锦市', '盘山县', '211122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (899, '辽宁省', '铁岭市', '市辖区', '211201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (900, '辽宁省', '铁岭市', '银州区', '211202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (901, '辽宁省', '铁岭市', '铁法区', '211203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (902, '辽宁省', '铁岭市', '清河区', '211204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (903, '辽宁省', '铁岭市', '铁岭县', '211221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (904, '辽宁省', '铁岭市', '开原县', '211222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (905, '辽宁省', '铁岭市', '西丰县', '211223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (906, '辽宁省', '铁岭市', '昌图县', '211224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (907, '辽宁省', '铁岭市', '康平县', '211225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (908, '辽宁省', '铁岭市', '法库县', '211226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (909, '辽宁省', '铁岭市', '调兵山市', '211281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (910, '辽宁省', '铁岭市', '开原市', '211282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (911, '辽宁省', '朝阳市', '市辖区', '211301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (912, '辽宁省', '朝阳市', '双塔区', '211302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (913, '辽宁省', '朝阳市', '龙城区', '211303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (914, '辽宁省', '朝阳市', '朝阳县', '211321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (915, '辽宁省', '朝阳市', '建平县', '211322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (916, '辽宁省', '朝阳市', '凌源县', '211323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (917, '辽宁省', '朝阳市', '喀喇沁左翼蒙古族自治县', '211324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (918, '辽宁省', '朝阳市', '建昌县', '211325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (919, '辽宁省', '朝阳市', '北票县', '211326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (920, '辽宁省', '朝阳市', '北票市', '211381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (921, '辽宁省', '朝阳市', '凌源市', '211382'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (922, '辽宁省', '葫芦岛市', '市辖区', '211401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (923, '辽宁省', '葫芦岛市', '连山区', '211402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (924, '辽宁省', '葫芦岛市', '龙港区', '211403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (925, '辽宁省', '葫芦岛市', '南票区', '211404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (926, '辽宁省', '葫芦岛市', '绥中县', '211421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (927, '辽宁省', '葫芦岛市', '建昌县', '211422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (928, '辽宁省', '葫芦岛市', '兴城市', '211481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (929, '辽宁省', '铁岭市', '铁岭市', '212101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (930, '辽宁省', '铁岭市', '铁法市', '212102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (931, '辽宁省', '铁岭市', '铁岭县', '212121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (932, '辽宁省', '铁岭市', '开原县', '212122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (933, '辽宁省', '铁岭市', '西丰县', '212123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (934, '辽宁省', '铁岭市', '昌图县', '212124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (935, '辽宁省', '铁岭市', '康平县', '212125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (936, '辽宁省', '铁岭市', '法库县', '212126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (937, '辽宁省', '朝阳市', '建昌县', '212225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (938, '辽宁省', '朝阳市', '北票县', '212226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (939, '辽宁省', NULL, '瓦房店市', '219001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (940, '辽宁省', NULL, '海城市', '219002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (941, '辽宁省', NULL, '锦西市', '219003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (942, '辽宁省', NULL, '兴城市', '219004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (943, '辽宁省', NULL, '铁法市', '219005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (944, '辽宁省', NULL, '北票市', '219006'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (945, '辽宁省', NULL, '开原市', '219007'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (946, '吉林省', '长春市', '市辖区', '220101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (947, '吉林省', '长春市', '南关区', '220102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (948, '吉林省', '长春市', '宽城区', '220103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (949, '吉林省', '长春市', '朝阳区', '220104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (950, '吉林省', '长春市', '二道区', '220105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (951, '吉林省', '长春市', '绿园区', '220106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (952, '吉林省', '长春市', '郊区', '220111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (953, '吉林省', '长春市', '双阳区', '220112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (954, '吉林省', '长春市', '市区', '220120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (955, '吉林省', '长春市', '榆树县', '220121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (956, '吉林省', '长春市', '农安县', '220122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (957, '吉林省', '长春市', '九台县', '220123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (958, '吉林省', '长春市', '德惠县', '220124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (959, '吉林省', '长春市', '双阳县', '220125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (960, '吉林省', '长春市', '九台市', '220181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (961, '吉林省', '长春市', '榆树市', '220182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (962, '吉林省', '长春市', '德惠市', '220183'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (963, '吉林省', '吉林市', '市辖区', '220201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (964, '吉林省', '吉林市', '昌邑区', '220202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (965, '吉林省', '吉林市', '龙潭区', '220203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (966, '吉林省', '吉林市', '船营区', '220204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (967, '吉林省', '吉林市', '丰满区', '220211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (968, '吉林省', '吉林市', '市区', '220220'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (969, '吉林省', '吉林市', '永吉县', '220221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (970, '吉林省', '吉林市', '舒兰县', '220222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (971, '吉林省', '吉林市', '磐石县', '220223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (972, '吉林省', '吉林市', '蛟河县', '220224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (973, '吉林省', '吉林市', '桦甸县', '220225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (974, '吉林省', '吉林市', '蛟河市', '220281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (975, '吉林省', '吉林市', '桦甸市', '220282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (976, '吉林省', '吉林市', '舒兰市', '220283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (977, '吉林省', '吉林市', '磐石市', '220284'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (978, '吉林省', '四平市', '市辖区', '220301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (979, '吉林省', '四平市', '铁西区', '220302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (980, '吉林省', '四平市', '铁东区', '220303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (981, '吉林省', '四平市', '公主岭市', '220319'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (982, '吉林省', '四平市', '怀德县', '220321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (983, '吉林省', '四平市', '梨树县', '220322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (984, '吉林省', '四平市', '伊通满族自治县', '220323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (985, '吉林省', '四平市', '双辽县', '220324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (986, '吉林省', '四平市', '公主岭市', '220381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (987, '吉林省', '四平市', '双辽市', '220382'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (988, '吉林省', '辽源市', '市辖区', '220401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (989, '吉林省', '辽源市', '龙山区', '220402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (990, '吉林省', '辽源市', '西安区', '220403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (991, '吉林省', '辽源市', '东丰县', '220421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (992, '吉林省', '辽源市', '东辽县', '220422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (993, '吉林省', '通化市', '市辖区', '220501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (994, '吉林省', '通化市', '东昌区', '220502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (995, '吉林省', '通化市', '二道江区', '220503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (996, '吉林省', '通化市', '梅河口市', '220519'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (997, '吉林省', '通化市', '通化县', '220521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (998, '吉林省', '通化市', '集安县', '220522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (999, '吉林省', '通化市', '辉南县', '220523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1000, '吉林省', '通化市', '柳河县', '220524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1001, '吉林省', '通化市', '梅河口市', '220581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1002, '吉林省', '通化市', '集安市', '220582'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1003, '吉林省', '白山市', '市辖区', '220601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1004, '吉林省', '白山市', '八道江区', '220602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1005, '吉林省', '白山市', '三岔子区', '220603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1006, '吉林省', '白山市', '临江区', '220604'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1007, '吉林省', '白山市', '抚松县', '220621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1008, '吉林省', '白山市', '靖宇县', '220622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1009, '吉林省', '白山市', '长白朝鲜族自治县', '220623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1010, '吉林省', '白山市', '江源县', '220625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1011, '吉林省', '白山市', '临江市', '220681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1012, '吉林省', '松原市', '市辖区', '220701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1013, '吉林省', '松原市', '宁江区', '220702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1014, '吉林省', '松原市', '前郭尔罗斯蒙古族自治县', '220721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1015, '吉林省', '松原市', '长岭县', '220722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1016, '吉林省', '松原市', '乾安县', '220723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1017, '吉林省', '松原市', '扶余县', '220724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1018, '吉林省', '白城市', '市辖区', '220801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1019, '吉林省', '白城市', '洮北区', '220802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1020, '吉林省', '白城市', '镇赉县', '220821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1021, '吉林省', '白城市', '通榆县', '220822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1022, '吉林省', '白城市', '洮南市', '220881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1023, '吉林省', '白城市', '大安市', '220882'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1024, '吉林省', '白城地区', '白城市', '222301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1025, '吉林省', '白城地区', '洮南市', '222302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1026, '吉林省', '白城地区', '扶余市', '222303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1027, '吉林省', '白城地区', '大安市', '222304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1028, '吉林省', '白城地区', '扶余县', '222321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1029, '吉林省', '白城地区', '洮安县', '222322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1030, '吉林省', '白城地区', '长岭县', '222323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1031, '吉林省', '白城地区', '前郭尔罗斯蒙古族自治县', '222324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1032, '吉林省', '白城地区', '大安县', '222325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1033, '吉林省', '白城地区', '镇赉县', '222326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1034, '吉林省', '白城地区', '通榆县', '222327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1035, '吉林省', '白城地区', '乾安县', '222328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1036, '吉林省', '延边朝鲜族自治州', '延吉市', '222401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1037, '吉林省', '延边朝鲜族自治州', '图们市', '222402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1038, '吉林省', '延边朝鲜族自治州', '敦化市', '222403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1039, '吉林省', '延边朝鲜族自治州', '珲春市', '222404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1040, '吉林省', '延边朝鲜族自治州', '龙井市', '222405'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1041, '吉林省', '延边朝鲜族自治州', '和龙市', '222406'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1042, '吉林省', '延边朝鲜族自治州', '龙井县', '222421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1043, '吉林省', '延边朝鲜族自治州', '敦化县', '222422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1044, '吉林省', '延边朝鲜族自治州', '和龙县', '222423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1045, '吉林省', '延边朝鲜族自治州', '汪清县', '222424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1046, '吉林省', '延边朝鲜族自治州', '珲春县', '222425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1047, '吉林省', '延边朝鲜族自治州', '安图县', '222426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1048, '吉林省', NULL, '四平市', '222101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1049, '吉林省', NULL, '辽源市', '222102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1050, '吉林省', NULL, '怀德县', '222121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1051, '吉林省', NULL, '梨树县', '222122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1052, '吉林省', NULL, '伊通满族自治县', '222123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1053, '吉林省', NULL, '东丰县', '222124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1054, '吉林省', NULL, '双辽县', '222125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1055, '吉林省', NULL, '通化市', '222201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1056, '吉林省', NULL, '浑江市', '222202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1057, '吉林省', NULL, '海龙县', '222221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1058, '吉林省', NULL, '通化县', '222222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1059, '吉林省', NULL, '柳河县', '222223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1060, '吉林省', NULL, '辉南县', '222224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1061, '吉林省', NULL, '集安县', '222225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1062, '吉林省', NULL, '抚松县', '222226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1063, '吉林省', NULL, '靖宇县', '222227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1064, '吉林省', NULL, '长白朝鲜族自治县', '222228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1065, '吉林省', NULL, '公主岭市', '229001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1066, '吉林省', NULL, '梅河口市', '229002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1067, '吉林省', NULL, '集安市', '229003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1068, '吉林省', NULL, '桦甸市', '229004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1069, '吉林省', NULL, '九台市', '229005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1070, '黑龙江省', '哈尔滨市', '市辖区', '230101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1071, '黑龙江省', '哈尔滨市', '道里区', '230102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1072, '黑龙江省', '哈尔滨市', '南岗区', '230103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1073, '黑龙江省', '哈尔滨市', '道外区', '230104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1074, '黑龙江省', '哈尔滨市', '太平区', '230105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1075, '黑龙江省', '哈尔滨市', '香坊区', '230106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1076, '黑龙江省', '哈尔滨市', '动力区', '230107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1077, '黑龙江省', '哈尔滨市', '平房区', '230108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1078, '黑龙江省', '哈尔滨市', '松北区', '230109'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1079, '黑龙江省', '哈尔滨市', '香坊区', '230110'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1080, '黑龙江省', '哈尔滨市', '呼兰区', '230111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1081, '黑龙江省', '哈尔滨市', '阿城区', '230112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1082, '黑龙江省', '哈尔滨市', '阿城市', '230119'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1083, '黑龙江省', '哈尔滨市', '呼兰县', '230121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1084, '黑龙江省', '哈尔滨市', '阿城县', '230122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1085, '黑龙江省', '哈尔滨市', '依兰县', '230123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1086, '黑龙江省', '哈尔滨市', '方正县', '230124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1087, '黑龙江省', '哈尔滨市', '宾县', '230125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1088, '黑龙江省', '哈尔滨市', '巴彦县', '230126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1089, '黑龙江省', '哈尔滨市', '木兰县', '230127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1090, '黑龙江省', '哈尔滨市', '通河县', '230128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1091, '黑龙江省', '哈尔滨市', '延寿县', '230129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1092, '黑龙江省', '哈尔滨市', '阿城市', '230181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1093, '黑龙江省', '哈尔滨市', '双城市', '230182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1094, '黑龙江省', '哈尔滨市', '尚志市', '230183'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1095, '黑龙江省', '哈尔滨市', '五常市', '230184'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1096, '黑龙江省', '齐齐哈尔市', '市辖区', '230201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1097, '黑龙江省', '齐齐哈尔市', '龙沙区', '230202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1098, '黑龙江省', '齐齐哈尔市', '建华区', '230203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1099, '黑龙江省', '齐齐哈尔市', '铁锋区', '230204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1100, '黑龙江省', '齐齐哈尔市', '昂昂溪区', '230205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1101, '黑龙江省', '齐齐哈尔市', '富拉尔基区', '230206'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1102, '黑龙江省', '齐齐哈尔市', '碾子山区', '230207'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1103, '黑龙江省', '齐齐哈尔市', '梅里斯达斡尔族区', '230208'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1104, '黑龙江省', '齐齐哈尔市', '龙江县', '230221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1105, '黑龙江省', '齐齐哈尔市', '讷河县', '230222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1106, '黑龙江省', '齐齐哈尔市', '依安县', '230223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1107, '黑龙江省', '齐齐哈尔市', '泰来县', '230224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1108, '黑龙江省', '齐齐哈尔市', '甘南县', '230225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1109, '黑龙江省', '齐齐哈尔市', '杜尔伯特蒙古族自治县', '230226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1110, '黑龙江省', '齐齐哈尔市', '富裕县', '230227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1111, '黑龙江省', '齐齐哈尔市', '林甸县', '230228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1112, '黑龙江省', '齐齐哈尔市', '克山县', '230229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1113, '黑龙江省', '齐齐哈尔市', '克东县', '230230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1114, '黑龙江省', '齐齐哈尔市', '拜泉县', '230231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1115, '黑龙江省', '齐齐哈尔市', '讷河市', '230281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1116, '黑龙江省', '鸡西市', '市辖区', '230301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1117, '黑龙江省', '鸡西市', '鸡冠区', '230302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1118, '黑龙江省', '鸡西市', '恒山区', '230303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1119, '黑龙江省', '鸡西市', '滴道区', '230304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1120, '黑龙江省', '鸡西市', '梨树区', '230305'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1121, '黑龙江省', '鸡西市', '城子河区', '230306'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1122, '黑龙江省', '鸡西市', '麻山区', '230307'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1123, '黑龙江省', '鸡西市', '鸡东县', '230321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1124, '黑龙江省', '鸡西市', '虎林市', '230381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1125, '黑龙江省', '鸡西市', '密山市', '230382'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1126, '黑龙江省', '鹤岗市', '市辖区', '230401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1127, '黑龙江省', '鹤岗市', '向阳区', '230402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1128, '黑龙江省', '鹤岗市', '工农区', '230403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1129, '黑龙江省', '鹤岗市', '南山区', '230404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1130, '黑龙江省', '鹤岗市', '兴安区', '230405'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1131, '黑龙江省', '鹤岗市', '东山区', '230406'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1132, '黑龙江省', '鹤岗市', '兴山区', '230407'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1133, '黑龙江省', '鹤岗市', '萝北县', '230421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1134, '黑龙江省', '鹤岗市', '绥滨县', '230422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1135, '黑龙江省', '双鸭山市', '市辖区', '230501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1136, '黑龙江省', '双鸭山市', '尖山区', '230502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1137, '黑龙江省', '双鸭山市', '岭东区', '230503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1138, '黑龙江省', '双鸭山市', '岭西区', '230504'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1139, '黑龙江省', '双鸭山市', '四方台区', '230505'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1140, '黑龙江省', '双鸭山市', '宝山区', '230506'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1141, '黑龙江省', '双鸭山市', '集贤县', '230521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1142, '黑龙江省', '双鸭山市', '友谊县', '230522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1143, '黑龙江省', '双鸭山市', '宝清县', '230523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1144, '黑龙江省', '双鸭山市', '饶河县', '230524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1145, '黑龙江省', '大庆市', '市辖区', '230601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1146, '黑龙江省', '大庆市', '萨尔图区', '230602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1147, '黑龙江省', '大庆市', '龙凤区', '230603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1148, '黑龙江省', '大庆市', '让胡路区', '230604'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1149, '黑龙江省', '大庆市', '红岗区', '230605'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1150, '黑龙江省', '大庆市', '大同区', '230606'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1151, '黑龙江省', '大庆市', '肇州县', '230621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1152, '黑龙江省', '大庆市', '肇源县', '230622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1153, '黑龙江省', '大庆市', '林甸县', '230623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1154, '黑龙江省', '大庆市', '杜尔伯特蒙古族自治县', '230624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1155, '黑龙江省', '伊春市', '市辖区', '230701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1156, '黑龙江省', '伊春市', '伊春区', '230702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1157, '黑龙江省', '伊春市', '南岔区', '230703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1158, '黑龙江省', '伊春市', '友好区', '230704'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1159, '黑龙江省', '伊春市', '西林区', '230705'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1160, '黑龙江省', '伊春市', '翠峦区', '230706'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1161, '黑龙江省', '伊春市', '新青区', '230707'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1162, '黑龙江省', '伊春市', '美溪区', '230708'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1163, '黑龙江省', '伊春市', '金山屯区', '230709'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1164, '黑龙江省', '伊春市', '五营区', '230710'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1165, '黑龙江省', '伊春市', '乌马河区', '230711'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1166, '黑龙江省', '伊春市', '汤旺河区', '230712'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1167, '黑龙江省', '伊春市', '带岭区', '230713'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1168, '黑龙江省', '伊春市', '乌伊岭区', '230714'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1169, '黑龙江省', '伊春市', '红星区', '230715'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1170, '黑龙江省', '伊春市', '上甘岭区', '230716'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1171, '黑龙江省', '伊春市', '铁力县', '230721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1172, '黑龙江省', '伊春市', '嘉荫县', '230722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1173, '黑龙江省', '伊春市', '铁力市', '230781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1174, '黑龙江省', '佳木斯市', '市辖区', '230801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1175, '黑龙江省', '佳木斯市', '永红区', '230802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1176, '黑龙江省', '佳木斯市', '向阳区', '230803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1177, '黑龙江省', '佳木斯市', '前进区', '230804'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1178, '黑龙江省', '佳木斯市', '东风区', '230805'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1179, '黑龙江省', '佳木斯市', '郊区', '230811'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1180, '黑龙江省', '佳木斯市', '富锦县', '230821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1181, '黑龙江省', '佳木斯市', '桦南县', '230822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1182, '黑龙江省', '佳木斯市', '依兰县', '230823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1183, '黑龙江省', '佳木斯市', '集贤县', '230825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1184, '黑龙江省', '佳木斯市', '桦川县', '230826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1185, '黑龙江省', '佳木斯市', '宝清县', '230827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1186, '黑龙江省', '佳木斯市', '汤原县', '230828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1187, '黑龙江省', '佳木斯市', '绥滨县', '230829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1188, '黑龙江省', '佳木斯市', '萝北县', '230830'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1189, '黑龙江省', '佳木斯市', '同江县', '230831'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1190, '黑龙江省', '佳木斯市', '饶河县', '230832'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1191, '黑龙江省', '佳木斯市', '抚远县', '230833'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1192, '黑龙江省', '佳木斯市', '友谊县', '230834'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1193, '黑龙江省', '佳木斯市', '同江市', '230881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1194, '黑龙江省', '佳木斯市', '富锦市', '230882'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1195, '黑龙江省', '七台河市', '市辖区', '230901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1196, '黑龙江省', '七台河市', '新兴区', '230902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1197, '黑龙江省', '七台河市', '桃山区', '230903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1198, '黑龙江省', '七台河市', '茄子河区', '230904'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1199, '黑龙江省', '七台河市', '勃利县', '230921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1200, '黑龙江省', '牡丹江市', '市辖区', '231001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1201, '黑龙江省', '牡丹江市', '东安区', '231002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1202, '黑龙江省', '牡丹江市', '阳明区', '231003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1203, '黑龙江省', '牡丹江市', '爱民区', '231004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1204, '黑龙江省', '牡丹江市', '西安区', '231005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1205, '黑龙江省', '牡丹江市', '郊区', '231011'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1206, '黑龙江省', '牡丹江市', '绥芬河市', '231020'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1207, '黑龙江省', '牡丹江市', '宁安县', '231021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1208, '黑龙江省', '牡丹江市', '海林县', '231022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1209, '黑龙江省', '牡丹江市', '穆棱县', '231023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1210, '黑龙江省', '牡丹江市', '东宁县', '231024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1211, '黑龙江省', '牡丹江市', '林口县', '231025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1212, '黑龙江省', '牡丹江市', '密山县', '231026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1213, '黑龙江省', '牡丹江市', '虎林县', '231027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1214, '黑龙江省', '牡丹江市', '绥芬河市', '231081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1215, '黑龙江省', '牡丹江市', '密山市', '231082'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1216, '黑龙江省', '牡丹江市', '海林市', '231083'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1217, '黑龙江省', '牡丹江市', '宁安市', '231084'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1218, '黑龙江省', '牡丹江市', '穆棱市', '231085'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1219, '黑龙江省', '黑河市', '市辖区', '231101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1220, '黑龙江省', '黑河市', '爱辉区', '231102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1221, '黑龙江省', '黑河市', '嫩江县', '231121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1222, '黑龙江省', '黑河市', '逊克县', '231123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1223, '黑龙江省', '黑河市', '孙吴县', '231124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1224, '黑龙江省', '黑河市', '北安市', '231181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1225, '黑龙江省', '黑河市', '五大连池市', '231182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1226, '黑龙江省', '绥化市', '市辖区', '231201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1227, '黑龙江省', '绥化市', '北林区', '231202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1228, '黑龙江省', '绥化市', '望奎县', '231221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1229, '黑龙江省', '绥化市', '兰西县', '231222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1230, '黑龙江省', '绥化市', '青冈县', '231223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1231, '黑龙江省', '绥化市', '庆安县', '231224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1232, '黑龙江省', '绥化市', '明水县', '231225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1233, '黑龙江省', '绥化市', '绥棱县', '231226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1234, '黑龙江省', '绥化市', '安达市', '231281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1235, '黑龙江省', '绥化市', '肇东市', '231282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1236, '黑龙江省', '绥化市', '海伦市', '231283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1237, '黑龙江省', '松花江地区', '双城市', '232101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1238, '黑龙江省', '松花江地区', '尚志市', '232102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1239, '黑龙江省', '松花江地区', '五常市', '232103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1240, '黑龙江省', '松花江地区', '阿城市', '232121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1241, '黑龙江省', '松花江地区', '宾县', '232122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1242, '黑龙江省', '松花江地区', '呼兰县', '232123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1243, '黑龙江省', '松花江地区', '双城市', '232124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1244, '黑龙江省', '松花江地区', '五常市', '232125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1245, '黑龙江省', '松花江地区', '巴彦县', '232126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1246, '黑龙江省', '松花江地区', '木兰县', '232127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1247, '黑龙江省', '松花江地区', '通河县', '232128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1248, '黑龙江省', '松花江地区', '尚志市', '232129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1249, '黑龙江省', '松花江地区', '方正县', '232130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1250, '黑龙江省', '松花江地区', '延寿县', '232131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1251, '黑龙江省', '绥化地区', '绥化市', '232301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1252, '黑龙江省', '绥化地区', '安达市', '232302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1253, '黑龙江省', '绥化地区', '肇东市', '232303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1254, '黑龙江省', '绥化地区', '海伦市', '232304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1255, '黑龙江省', '绥化地区', '海伦县', '232321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1256, '黑龙江省', '绥化地区', '肇东县', '232322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1257, '黑龙江省', '绥化地区', '绥化县', '232323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1258, '黑龙江省', '绥化地区', '望奎县', '232324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1259, '黑龙江省', '绥化地区', '兰西县', '232325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1260, '黑龙江省', '绥化地区', '青冈县', '232326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1261, '黑龙江省', '绥化地区', '安达县', '232327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1262, '黑龙江省', '绥化地区', '肇源县', '232328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1263, '黑龙江省', '绥化地区', '肇州县', '232329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1264, '黑龙江省', '绥化地区', '庆安县', '232330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1265, '黑龙江省', '绥化地区', '明水县', '232331'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1266, '黑龙江省', '绥化地区', '绥棱县', '232332'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1267, '黑龙江省', '佳木斯地区', '佳木斯市', '232401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1268, '黑龙江省', '佳木斯地区', '富锦县', '232421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1269, '黑龙江省', '佳木斯地区', '桦南县', '232422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1270, '黑龙江省', '佳木斯地区', '依兰县', '232423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1271, '黑龙江省', '佳木斯地区', '勃利县', '232424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1272, '黑龙江省', '佳木斯地区', '集贤县', '232425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1273, '黑龙江省', '佳木斯地区', '桦川县', '232426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1274, '黑龙江省', '佳木斯地区', '宝清县', '232427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1275, '黑龙江省', '佳木斯地区', '汤原县', '232428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1276, '黑龙江省', '佳木斯地区', '绥滨县', '232429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1277, '黑龙江省', '佳木斯地区', '萝北县', '232430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1278, '黑龙江省', '佳木斯地区', '同江县', '232431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1279, '黑龙江省', '佳木斯地区', '饶河县', '232432'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1280, '黑龙江省', '佳木斯地区', '抚远县', '232433'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1281, '黑龙江省', '牡丹江地区', '牡丹江市', '232501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1282, '黑龙江省', '牡丹江地区', '绥芬河市', '232502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1283, '黑龙江省', '牡丹江地区', '宁安县', '232521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1284, '黑龙江省', '牡丹江地区', '海林县', '232522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1285, '黑龙江省', '牡丹江地区', '穆棱县', '232523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1286, '黑龙江省', '牡丹江地区', '东宁县', '232524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1287, '黑龙江省', '牡丹江地区', '林口县', '232525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1288, '黑龙江省', '牡丹江地区', '鸡东县', '232526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1289, '黑龙江省', '牡丹江地区', '密山县', '232527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1290, '黑龙江省', '牡丹江地区', '虎林县', '232528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1291, '黑龙江省', '黑河地区', '黑河市', '232601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1292, '黑龙江省', '黑河地区', '北安市', '232602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1293, '黑龙江省', '黑河地区', '五大连池市', '232603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1294, '黑龙江省', '黑河地区', '北安县', '232621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1295, '黑龙江省', '黑河地区', '嫩江县', '232622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1296, '黑龙江省', '黑河地区', '德都县', '232623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1297, '黑龙江省', '黑河地区', '逊克县', '232625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1298, '黑龙江省', '黑河地区', '孙吴县', '232626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1299, '黑龙江省', '大兴安岭地区', '加格达奇区', '232701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1300, '黑龙江省', '大兴安岭地区', '呼玛县', '232721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1301, '黑龙江省', '大兴安岭地区', '塔河县', '232722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1302, '黑龙江省', '大兴安岭地区', '漠河县', '232723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1303, '黑龙江省', '大兴安岭地区', '漠河县', '232724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1304, '黑龙江省', NULL, '绥芬河市', '239001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1305, '黑龙江省', NULL, '阿城市', '239002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1306, '黑龙江省', NULL, '同江市', '239003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1307, '黑龙江省', NULL, '富锦市', '239004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1308, '黑龙江省', NULL, '铁力市', '239005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1309, '黑龙江省', NULL, '密山市', '239006'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1310, '上海市', NULL, '黄浦区', '310101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1311, '上海市', NULL, '南市区', '310102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1312, '上海市', NULL, '卢湾区', '310103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1313, '上海市', NULL, '徐汇区', '310104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1314, '上海市', NULL, '长宁区', '310105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1315, '上海市', NULL, '静安区', '310106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1316, '上海市', NULL, '普陀区', '310107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1317, '上海市', NULL, '闸北区', '310108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1318, '上海市', NULL, '虹口区', '310109'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1319, '上海市', NULL, '杨浦区', '310110'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1320, '上海市', NULL, '吴凇区', '310111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1321, '上海市', NULL, '闵行区', '310112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1322, '上海市', NULL, '宝山区', '310113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1323, '上海市', NULL, '嘉定区', '310114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1324, '上海市', NULL, '浦东新区', '310115'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1325, '上海市', NULL, '金山区', '310116'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1326, '上海市', NULL, '松江区', '310117'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1327, '上海市', NULL, '青浦区', '310118'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1328, '上海市', NULL, '南汇区', '310119'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1329, '上海市', NULL, '奉贤区', '310120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1330, '上海市', NULL, '上海县', '310221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1331, '上海市', NULL, '嘉定县', '310222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1332, '上海市', NULL, '宝山县', '310223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1333, '上海市', NULL, '川沙县', '310224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1334, '上海市', NULL, '南汇县', '310225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1335, '上海市', NULL, '奉贤县', '310226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1336, '上海市', NULL, '松江县', '310227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1337, '上海市', NULL, '金山县', '310228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1338, '上海市', NULL, '青浦县', '310229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1339, '上海市', NULL, '崇明县', '310230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1340, '江苏省', '南京市', '市辖区', '320101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1341, '江苏省', '南京市', '玄武区', '320102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1342, '江苏省', '南京市', '白下区', '320103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1343, '江苏省', '南京市', '秦淮区', '320104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1344, '江苏省', '南京市', '建邺区', '320105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1345, '江苏省', '南京市', '鼓楼区', '320106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1346, '江苏省', '南京市', '下关区', '320107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1347, '江苏省', '南京市', '浦口区', '320111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1348, '江苏省', '南京市', '大厂区', '320112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1349, '江苏省', '南京市', '栖霞区', '320113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1350, '江苏省', '南京市', '雨花台区', '320114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1351, '江苏省', '南京市', '江宁区', '320115'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1352, '江苏省', '南京市', '六合区', '320116'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1353, '江苏省', '南京市', '市区', '320120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1354, '江苏省', '南京市', '江宁县', '320121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1355, '江苏省', '南京市', '江浦县', '320122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1356, '江苏省', '南京市', '六合县', '320123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1357, '江苏省', '南京市', '溧水县', '320124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1358, '江苏省', '南京市', '高淳县', '320125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1359, '江苏省', '南京市', '江都县', '320126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1360, '江苏省', '无锡市', '市辖区', '320201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1361, '江苏省', '无锡市', '崇安区', '320202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1362, '江苏省', '无锡市', '南长区', '320203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1363, '江苏省', '无锡市', '北塘区', '320204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1364, '江苏省', '无锡市', '锡山区', '320205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1365, '江苏省', '无锡市', '惠山区', '320206'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1366, '江苏省', '无锡市', '郊区', '320211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1367, '江苏省', '无锡市', '马山区', '320212'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1368, '江苏省', '无锡市', '江阴县', '320219'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1369, '江苏省', '无锡市', '江阴县', '320221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1370, '江苏省', '无锡市', '无锡县', '320222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1371, '江苏省', '无锡市', '宜兴县', '320223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1372, '江苏省', '无锡市', '江阴市', '320281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1373, '江苏省', '无锡市', '宜兴市', '320282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1374, '江苏省', '无锡市', '锡山市', '320283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1375, '江苏省', '徐州市', '市辖区', '320301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1376, '江苏省', '徐州市', '鼓楼区', '320302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1, '北京市', NULL, '东城区', '110101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2, '北京市', NULL, '西城区', '110102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3, '北京市', NULL, '崇文区', '110103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4, '北京市', NULL, '宣武区', '110104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5, '北京市', NULL, '朝阳区', '110105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (6, '北京市', NULL, '丰台区', '110106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (7, '北京市', NULL, '石景山区', '110107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (8, '北京市', NULL, '海淀区', '110108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (9, '北京市', NULL, '门头沟区', '110109'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (10, '北京市', NULL, '燕山区', '110110'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (11, '北京市', NULL, '房山区', '110111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (12, '北京市', NULL, '通州区', '110112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (13, '北京市', NULL, '顺义区', '110113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (14, '北京市', NULL, '昌平区', '110114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (15, '北京市', NULL, '大兴区', '110115'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (16, '北京市', NULL, '怀柔区', '110116'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (17, '北京市', NULL, '平谷区', '110117'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (18, '北京市', NULL, '昌平县', '110221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (19, '北京市', NULL, '顺义县', '110222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (20, '北京市', NULL, '通县', '110223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (21, '北京市', NULL, '大兴县', '110224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (22, '北京市', NULL, '房山县', '110225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (23, '北京市', NULL, '平谷县', '110226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (24, '北京市', NULL, '怀柔县', '110227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (25, '北京市', NULL, '密云县', '110228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (26, '北京市', NULL, '延庆县', '110229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (27, '天津市', NULL, '和平区', '120101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (28, '天津市', NULL, '河东区', '120102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (29, '天津市', NULL, '河西区', '120103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (30, '天津市', NULL, '南开区', '120104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (31, '天津市', NULL, '河北区', '120105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (32, '天津市', NULL, '红桥区', '120106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (33, '天津市', NULL, '塘沽区', '120107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (34, '天津市', NULL, '汉沽区', '120108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (35, '天津市', NULL, '大港区', '120109'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (36, '天津市', NULL, '东丽区', '120110'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (37, '天津市', NULL, '西青区', '120111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (38, '天津市', NULL, '津南区', '120112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (39, '天津市', NULL, '北辰区', '120113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (40, '天津市', NULL, '武清区', '120114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (41, '天津市', NULL, '宝坻区', '120115'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (42, '天津市', NULL, '宁河县', '120221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (43, '天津市', NULL, '武清县', '120222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (44, '天津市', NULL, '静海县', '120223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (45, '天津市', NULL, '宝坻县', '120224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (46, '天津市', NULL, '蓟县', '120225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (47, '河北省', '石家庄市', '市辖区', '130101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (48, '河北省', '石家庄市', '长安区', '130102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (49, '河北省', '石家庄市', '桥东区', '130103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (50, '河北省', '石家庄市', '桥西区', '130104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (51, '河北省', '石家庄市', '新华区', '130105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (52, '河北省', '石家庄市', '郊区', '130106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (53, '河北省', '石家庄市', '井陉矿区', '130107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (54, '河北省', '石家庄市', '裕华区', '130108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (55, '河北省', '石家庄市', '井陉县', '130121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (56, '河北省', '石家庄市', '获鹿县', '130122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (57, '河北省', '石家庄市', '正定县', '130123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (58, '河北省', '石家庄市', '栾城县', '130124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (59, '河北省', '石家庄市', '行唐县', '130125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (60, '河北省', '石家庄市', '灵寿县', '130126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (61, '河北省', '石家庄市', '高邑县', '130127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (62, '河北省', '石家庄市', '深泽县', '130128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (63, '河北省', '石家庄市', '赞皇县', '130129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (64, '河北省', '石家庄市', '无极县', '130130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (65, '河北省', '石家庄市', '平山县', '130131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (66, '河北省', '石家庄市', '元氏县', '130132'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (67, '河北省', '石家庄市', '赵县', '130133'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (68, '河北省', '石家庄市', '辛集市', '130181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (69, '河北省', '石家庄市', '藁城市', '130182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (70, '河北省', '石家庄市', '晋州市', '130183'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (71, '河北省', '石家庄市', '新乐市', '130184'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (72, '河北省', '石家庄市', '鹿泉市', '130185'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (73, '河北省', '唐山市', '市辖区', '130201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (74, '河北省', '唐山市', '路南区', '130202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (75, '河北省', '唐山市', '路北区', '130203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (76, '河北省', '唐山市', '古冶区', '130204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (77, '河北省', '唐山市', '开平区', '130205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (78, '河北省', '唐山市', '新区', '130206'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (79, '河北省', '唐山市', '丰南区', '130207'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (80, '河北省', '唐山市', '丰润区', '130208'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (81, '河北省', '唐山市', '丰润县', '130221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (82, '河北省', '唐山市', '丰南县', '130222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (83, '河北省', '唐山市', '滦县', '130223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (84, '河北省', '唐山市', '滦南县', '130224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (85, '河北省', '唐山市', '乐亭县', '130225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (86, '河北省', '唐山市', '迁安县', '130226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (87, '河北省', '唐山市', '迁西县', '130227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (88, '河北省', '唐山市', '遵化县', '130228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (89, '河北省', '唐山市', '玉田县', '130229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (90, '河北省', '唐山市', '唐海县', '130230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (91, '河北省', '唐山市', '遵化市', '130281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (92, '河北省', '唐山市', '丰南市', '130282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (93, '河北省', '唐山市', '迁安市', '130283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (94, '河北省', '秦皇岛市', '市辖区', '130301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (95, '河北省', '秦皇岛市', '海港区', '130302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (96, '河北省', '秦皇岛市', '山海关区', '130303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (97, '河北省', '秦皇岛市', '北戴河区', '130304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (98, '河北省', '秦皇岛市', '青龙满族自治县', '130321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (99, '河北省', '秦皇岛市', '昌黎县', '130322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (100, '河北省', '秦皇岛市', '抚宁县', '130323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (101, '河北省', '秦皇岛市', '卢龙县', '130324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (102, '河北省', '邯郸市', '市辖区', '130401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (103, '河北省', '邯郸市', '邯山区', '130402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (104, '河北省', '邯郸市', '丛台区', '130403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (105, '河北省', '邯郸市', '复兴区', '130404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (106, '河北省', '邯郸市', '郊区', '130405'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (107, '河北省', '邯郸市', '峰峰矿区', '130406'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (108, '河北省', '邯郸市', '邯郸县', '130421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (109, '河北省', '邯郸市', '武安县', '130422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (110, '河北省', '邯郸市', '临漳县', '130423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (111, '河北省', '邯郸市', '成安县', '130424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (112, '河北省', '邯郸市', '大名县', '130425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (113, '河北省', '邯郸市', '涉县', '130426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (114, '河北省', '邯郸市', '磁县', '130427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (115, '河北省', '邯郸市', '肥乡县', '130428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (116, '河北省', '邯郸市', '永年县', '130429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (117, '河北省', '邯郸市', '邱县', '130430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (118, '河北省', '邯郸市', '鸡泽县', '130431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (119, '河北省', '邯郸市', '广平县', '130432'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (120, '河北省', '邯郸市', '馆陶县', '130433'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (121, '河北省', '邯郸市', '魏县', '130434'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (122, '河北省', '邯郸市', '曲周县', '130435'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (123, '河北省', '邯郸市', '武安市', '130481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (124, '河北省', '邢台市', '市辖区', '130501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (125, '河北省', '邢台市', '桥东区', '130502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (126, '河北省', '邢台市', '桥西区', '130503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (127, '河北省', '邢台市', '邢台县', '130521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (128, '河北省', '邢台市', '临城县', '130522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (129, '河北省', '邢台市', '内丘县', '130523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (130, '河北省', '邢台市', '柏乡县', '130524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (131, '河北省', '邢台市', '隆尧县', '130525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (132, '河北省', '邢台市', '任县', '130526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (133, '河北省', '邢台市', '南和县', '130527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (134, '河北省', '邢台市', '宁晋县', '130528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (135, '河北省', '邢台市', '巨鹿县', '130529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (136, '河北省', '邢台市', '新河县', '130530'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (137, '河北省', '邢台市', '广宗县', '130531'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (138, '河北省', '邢台市', '平乡县', '130532'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (139, '河北省', '邢台市', '威县', '130533'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (140, '河北省', '邢台市', '清河县', '130534'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (141, '河北省', '邢台市', '临西县', '130535'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (142, '河北省', '邢台市', '南宫市', '130581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (143, '河北省', '邢台市', '沙河市', '130582'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (144, '河北省', '保定市', '市辖区', '130601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (145, '河北省', '保定市', '新市区', '130602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (146, '河北省', '保定市', '北市区', '130603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (147, '河北省', '保定市', '南市区', '130604'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (148, '河北省', '保定市', '满城县', '130621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (149, '河北省', '保定市', '清苑县', '130622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (150, '河北省', '保定市', '涞水县', '130623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (151, '河北省', '保定市', '阜平县', '130624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (152, '河北省', '保定市', '徐水县', '130625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (153, '河北省', '保定市', '定兴县', '130626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (154, '河北省', '保定市', '唐县', '130627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (155, '河北省', '保定市', '高阳县', '130628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (156, '河北省', '保定市', '容城县', '130629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (157, '河北省', '保定市', '涞源县', '130630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (158, '河北省', '保定市', '望都县', '130631'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (159, '河北省', '保定市', '安新县', '130632'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (160, '河北省', '保定市', '易县', '130633'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (161, '河北省', '保定市', '曲阳县', '130634'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (162, '河北省', '保定市', '蠡县', '130635'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (163, '河北省', '保定市', '顺平县', '130636'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (164, '河北省', '保定市', '博野县', '130637'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (165, '河北省', '保定市', '雄县', '130638'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (166, '河北省', '保定市', '涿州市', '130681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (167, '河北省', '保定市', '定州市', '130682'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (168, '河北省', '保定市', '安国市', '130683'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (169, '河北省', '保定市', '高碑店市', '130684'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (170, '河北省', '张家口市', '市辖区', '130701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (171, '河北省', '张家口市', '桥东区', '130702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (172, '河北省', '张家口市', '桥西区', '130703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (173, '河北省', '张家口市', '宣化区', '130705'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (174, '河北省', '张家口市', '下花园区', '130706'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (175, '河北省', '张家口市', '宣化县', '130721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (176, '河北省', '张家口市', '张北县', '130722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (177, '河北省', '张家口市', '康保县', '130723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (178, '河北省', '张家口市', '沽源县', '130724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (179, '河北省', '张家口市', '尚义县', '130725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (180, '河北省', '张家口市', '蔚县', '130726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (181, '河北省', '张家口市', '阳原县', '130727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (182, '河北省', '张家口市', '怀安县', '130728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (183, '河北省', '张家口市', '万全县', '130729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (184, '河北省', '张家口市', '怀来县', '130730'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (185, '河北省', '张家口市', '涿鹿县', '130731'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (186, '河北省', '张家口市', '赤城县', '130732'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (187, '河北省', '张家口市', '崇礼县', '130733'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (188, '河北省', '承德市', '市辖区', '130801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (189, '河北省', '承德市', '双桥区', '130802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (190, '河北省', '承德市', '双滦区', '130803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (191, '河北省', '承德市', '鹰手营子矿区', '130804'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (192, '河北省', '承德市', '承德县', '130821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (193, '河北省', '承德市', '兴隆县', '130822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (194, '河北省', '承德市', '平泉县', '130823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (195, '河北省', '承德市', '滦平县', '130824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (196, '河北省', '承德市', '隆化县', '130825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (197, '河北省', '承德市', '丰宁满族自治县', '130826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (198, '河北省', '承德市', '宽城满族自治县', '130827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (199, '河北省', '承德市', '围场满族蒙古族自治县', '130828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (200, '河北省', '沧州市', '市辖区', '130901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (201, '河北省', '沧州市', '新华区', '130902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (202, '河北省', '沧州市', '运河区', '130903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (203, '河北省', '沧州市', '郊区', '130904'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (204, '河北省', '沧州市', '沧县', '130921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (205, '河北省', '沧州市', '青县', '130922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (206, '河北省', '沧州市', '东光县', '130923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (207, '河北省', '沧州市', '海兴县', '130924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (208, '河北省', '沧州市', '盐山县', '130925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (209, '河北省', '沧州市', '肃宁县', '130926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (210, '河北省', '沧州市', '南皮县', '130927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (211, '河北省', '沧州市', '吴桥县', '130928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (212, '河北省', '沧州市', '献县', '130929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (213, '河北省', '沧州市', '孟村回族自治县', '130930'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (214, '河北省', '沧州市', '泊头市', '130981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (215, '河北省', '沧州市', '任丘市', '130982'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (216, '河北省', '沧州市', '黄骅市', '130983'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (217, '河北省', '沧州市', '河间市', '130984'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (218, '河北省', '廊坊市', '市辖区', '131001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (219, '河北省', '廊坊市', '安次区', '131002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (220, '河北省', '廊坊市', '广阳区', '131003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (221, '河北省', '廊坊市', '三河县', '131021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (222, '河北省', '廊坊市', '固安县', '131022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (223, '河北省', '廊坊市', '永清县', '131023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (224, '河北省', '廊坊市', '香河县', '131024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (225, '河北省', '廊坊市', '大城县', '131025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (226, '河北省', '廊坊市', '文安县', '131026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (227, '河北省', '廊坊市', '霸县', '131027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (228, '河北省', '廊坊市', '大厂回族自治县', '131028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (229, '河北省', '廊坊市', '霸州市', '131081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (230, '河北省', '廊坊市', '三河市', '131082'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (231, '河北省', '衡水市', '市辖区', '131101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (232, '河北省', '衡水市', '桃城区', '131102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (233, '河北省', '衡水市', '枣强县', '131121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (234, '河北省', '衡水市', '武邑县', '131122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (235, '河北省', '衡水市', '武强县', '131123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (236, '河北省', '衡水市', '饶阳县', '131124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (237, '河北省', '衡水市', '安平县', '131125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (238, '河北省', '衡水市', '故城县', '131126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (239, '河北省', '衡水市', '景县', '131127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (240, '河北省', '衡水市', '阜城县', '131128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (241, '河北省', '衡水市', '冀州市', '131181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (242, '河北省', '衡水市', '深州市', '131182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (243, '河北省', '邯郸地区', '邯郸市', '132101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (244, '河北省', '邯郸地区', '大名县', '132121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (245, '河北省', '邯郸地区', '魏县', '132122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (246, '河北省', '邯郸地区', '曲周县', '132123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (247, '河北省', '邯郸地区', '丘县', '132124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (248, '河北省', '邯郸地区', '鸡泽县', '132125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (249, '河北省', '邯郸地区', '肥乡县', '132126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (250, '河北省', '邯郸地区', '广平县', '132127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (251, '河北省', '邯郸地区', '成安县', '132128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (252, '河北省', '邯郸地区', '临漳县', '132129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (253, '河北省', '邯郸地区', '磁县', '132130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (254, '河北省', '邯郸地区', '武安县', '132131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (255, '河北省', '邯郸地区', '涉县', '132132'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (256, '河北省', '邯郸地区', '永年县', '132133'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (257, '河北省', '邯郸地区', '邯郸县', '132134'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (258, '河北省', '邯郸地区', '馆陶县', '132135'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (259, '河北省', '邢台地区', '南宫市', '132201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (260, '河北省', '邢台地区', '沙河市', '132202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (261, '河北省', '邢台地区', '邢台县', '132221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (262, '河北省', '邢台地区', '沙河县', '132222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (263, '河北省', '邢台地区', '临城县', '132223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (264, '河北省', '邢台地区', '内丘县', '132224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (265, '河北省', '邢台地区', '柏乡县', '132225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (266, '河北省', '邢台地区', '隆尧县', '132226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (267, '河北省', '邢台地区', '任县', '132227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (268, '河北省', '邢台地区', '南和县', '132228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (269, '河北省', '邢台地区', '宁晋县', '132229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (270, '河北省', '邢台地区', '南宫县', '132230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (271, '河北省', '邢台地区', '巨鹿县', '132231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (272, '河北省', '邢台地区', '新河县', '132232'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (273, '河北省', '邢台地区', '广宗县', '132233'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (274, '河北省', '邢台地区', '平乡县', '132234'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (275, '河北省', '邢台地区', '威县', '132235'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (276, '河北省', '邢台地区', '清河县', '132236'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (277, '河北省', '邢台地区', '临西县', '132237'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (278, '河北省', '石家庄市', '辛集市', '132301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (279, '河北省', '石家庄市', '藁城市', '132302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (280, '河北省', '石家庄市', '束鹿县', '132321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (281, '河北省', '石家庄市', '晋县', '132322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (282, '河北省', '石家庄市', '深泽县', '132323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (283, '河北省', '石家庄市', '无极县', '132324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (284, '河北省', '石家庄市', '藁城县', '132325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (285, '河北省', '石家庄市', '赵县', '132326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (286, '河北省', '石家庄市', '栾城县', '132327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (287, '河北省', '石家庄市', '正定县', '132328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (288, '河北省', '石家庄市', '新乐县', '132329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (289, '河北省', '石家庄市', '高邑县', '132330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (290, '河北省', '石家庄市', '元氏县', '132331'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (291, '河北省', '石家庄市', '赞皇县', '132332'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (292, '河北省', '石家庄市', '井陉县', '132333'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (293, '河北省', '石家庄市', '获鹿县', '132334'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (294, '河北省', '石家庄市', '平山县', '132335'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (295, '河北省', '石家庄市', '灵寿县', '132336'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (296, '河北省', '石家庄市', '行唐县', '132337'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (297, '河北省', '保定地区', '定州市', '132401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (298, '河北省', '保定地区', '涿州市', '132402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (299, '河北省', '保定地区', '安国市', '132403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (300, '河北省', '保定地区', '高碑店市', '132404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (301, '河北省', '保定地区', '易县', '132421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (302, '河北省', '保定地区', '满城县', '132422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (303, '河北省', '保定地区', '徐水县', '132423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (304, '河北省', '保定地区', '涞源县', '132424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (305, '河北省', '保定地区', '定兴县', '132425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (306, '河北省', '保定地区', '完县', '132426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (307, '河北省', '保定地区', '唐县', '132427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (308, '河北省', '保定地区', '望都县', '132428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (309, '河北省', '保定地区', '涞水县', '132429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (310, '河北省', '保定地区', '涿县', '132430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (311, '河北省', '保定地区', '清苑县', '132431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (312, '河北省', '保定地区', '高阳县', '132432'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (313, '河北省', '保定地区', '安新县', '132433'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (314, '河北省', '保定地区', '雄县', '132434'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (315, '河北省', '保定地区', '容城县', '132435'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (316, '河北省', '保定地区', '新城县', '132436'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (317, '河北省', '保定地区', '曲阳县', '132437'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (318, '河北省', '保定地区', '阜平县', '132438'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (319, '河北省', '保定地区', '定县', '132439'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (320, '河北省', '保定地区', '安国县', '132440'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (321, '河北省', '保定地区', '博野县', '132441'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (322, '河北省', '保定地区', '蠡县', '132442'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (323, '河北省', '张家口地区', '张家口市', '132501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (324, '河北省', '张家口地区', '张北市', '132521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (325, '河北省', '张家口地区', '康保县', '132522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (326, '河北省', '张家口地区', '沽源县', '132523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (327, '河北省', '张家口地区', '尚义县', '132524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (328, '河北省', '张家口地区', '蔚县', '132525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (329, '河北省', '张家口地区', '阳原县', '132526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (330, '河北省', '张家口地区', '怀安县', '132527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (331, '河北省', '张家口地区', '万全县', '132528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (332, '河北省', '张家口地区', '怀来县', '132529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (333, '河北省', '张家口地区', '涿鹿县', '132530'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (334, '河北省', '张家口地区', '宣化县', '132531'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (335, '河北省', '张家口地区', '赤城县', '132532'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (336, '河北省', '张家口地区', '崇礼县', '132533'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (337, '河北省', '承德地区', '承德市', '132601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (338, '河北省', '承德地区', '青龙县', '132621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (339, '河北省', '承德地区', '宽城满族自治县', '132622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (340, '河北省', '承德地区', '兴隆县', '132623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (341, '河北省', '承德地区', '平泉县', '132624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (342, '河北省', '承德地区', '承德县', '132625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (343, '河北省', '承德地区', '滦平县', '132626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (344, '河北省', '承德地区', '丰宁满族自治县', '132627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (345, '河北省', '承德地区', '隆化县', '132628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (346, '河北省', '承德地区', '围场满族蒙古族自治县', '132629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (347, '河北省', '廊坊地区', '廊坊市', '132801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (348, '河北省', '廊坊地区', '三河县', '132821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (349, '河北省', '廊坊地区', '大厂回族自治县', '132822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (350, '河北省', '廊坊地区', '香河县', '132823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (351, '河北省', '廊坊地区', '永清县', '132825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (352, '河北省', '廊坊地区', '固安县', '132826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (353, '河北省', '廊坊地区', '霸县', '132827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (354, '河北省', '廊坊地区', '文安县', '132828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (355, '河北省', '廊坊地区', '大城县', '132829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (356, '河北省', '沧州地区', '沧州市', '132901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (357, '河北省', '沧州地区', '泊头市', '132902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (358, '河北省', '沧州地区', '任丘市', '132903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (359, '河北省', '沧州地区', '黄骅市', '132904'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (360, '河北省', '沧州地区', '河间市', '132905'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (361, '河北省', '沧州地区', '沧县', '132921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (362, '河北省', '沧州地区', '河间县', '132922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (363, '河北省', '沧州地区', '肃宁县', '132923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (364, '河北省', '沧州地区', '献县', '132924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (365, '河北省', '沧州地区', '交河县', '132925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (366, '河北省', '沧州地区', '吴桥县', '132926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (367, '河北省', '沧州地区', '东光县', '132927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (368, '河北省', '沧州地区', '南皮县', '132928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (369, '河北省', '沧州地区', '盐山县', '132929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (370, '河北省', '沧州地区', '黄骅县', '132930'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (371, '河北省', '沧州地区', '孟村回族自治县', '132931'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (372, '河北省', '沧州地区', '青县', '132932'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (373, '河北省', '沧州地区', '任丘县', '132933'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (374, '河北省', '沧州地区', '海兴县', '132934'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (375, '河北省', '衡水地区', '衡水市', '133001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (376, '河北省', '衡水地区', '冀州市', '133002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (377, '河北省', '衡水地区', '衡水县', '133021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (378, '河北省', '衡水地区', '冀县', '133022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (379, '河北省', '衡水地区', '枣强县', '133023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (380, '河北省', '衡水地区', '武邑县', '133024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (381, '河北省', '衡水地区', '深县', '133025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (382, '河北省', '衡水地区', '武强县', '133026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (383, '河北省', '衡水地区', '饶阳县', '133027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (384, '河北省', '衡水地区', '安平县', '133028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (385, '河北省', '衡水地区', '故城县', '133029'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (386, '河北省', '衡水地区', '景县', '133030'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (387, '河北省', '衡水地区', '阜城县', '133031'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (388, '河北省', NULL, '武安市', '139001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (389, '山西省', '太原市', '市辖区', '140101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (390, '山西省', '太原市', '南城区', '140102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (391, '山西省', '太原市', '北城区', '140103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (392, '山西省', '太原市', '河西区', '140104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (393, '山西省', '太原市', '小店区', '140105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (394, '山西省', '太原市', '迎泽区', '140106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (395, '山西省', '太原市', '杏花岭区', '140107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (396, '山西省', '太原市', '尖草坪区', '140108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (397, '山西省', '太原市', '万柏林区', '140109'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (398, '山西省', '太原市', '晋源区', '140110'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (399, '山西省', '太原市', '古交工矿区', '140111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (400, '山西省', '太原市', '南郊区', '140112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (401, '山西省', '太原市', '北郊区', '140113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (402, '山西省', '太原市', '清徐县', '140121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (403, '山西省', '太原市', '阳曲县', '140122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (404, '山西省', '太原市', '娄烦县', '140123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (405, '山西省', '太原市', '古交市', '140181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (406, '山西省', '大同市', '市辖区', '140201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (407, '山西省', '大同市', '城区', '140202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (408, '山西省', '大同市', '矿区', '140203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (409, '山西省', '大同市', '南郊区', '140211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (410, '山西省', '大同市', '新荣区', '140212'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (411, '山西省', '大同市', '阳高县', '140221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (412, '山西省', '大同市', '天镇县', '140222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (413, '山西省', '大同市', '广灵县', '140223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (414, '山西省', '大同市', '灵丘县', '140224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (415, '山西省', '大同市', '浑源县', '140225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (416, '山西省', '大同市', '左云县', '140226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (417, '山西省', '大同市', '大同县', '140227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (418, '山西省', '大同市', '左云县', '140230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (419, '山西省', '大同市', '大同县', '140232'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (420, '山西省', '阳泉市', '市辖区', '140301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (421, '山西省', '阳泉市', '城区', '140302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (422, '山西省', '阳泉市', '矿区', '140303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (423, '山西省', '阳泉市', '郊区', '140311'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (424, '山西省', '阳泉市', '平定县', '140321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (425, '山西省', '阳泉市', '盂县', '140322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (426, '山西省', '长治市', '市辖区', '140401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (427, '山西省', '长治市', '城区', '140402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (428, '山西省', '长治市', '郊区', '140411'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (429, '山西省', '长治市', '长治县', '140421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (430, '山西省', '长治市', '襄垣县', '140423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (431, '山西省', '长治市', '屯留县', '140424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (432, '山西省', '长治市', '平顺县', '140425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (433, '山西省', '长治市', '黎城县', '140426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (434, '山西省', '长治市', '壶关县', '140427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (435, '山西省', '长治市', '长子县', '140428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (436, '山西省', '长治市', '武乡县', '140429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (437, '山西省', '长治市', '沁县', '140430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (438, '山西省', '长治市', '沁源县', '140431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (439, '山西省', '长治市', '潞城市', '140481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (440, '山西省', '晋城市', '市辖区', '140501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (441, '山西省', '晋城市', '城区', '140502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (442, '山西省', '晋城市', '郊区', '140511'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (443, '山西省', '晋城市', '沁水县', '140521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (444, '山西省', '晋城市', '阳城县', '140522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (445, '山西省', '晋城市', '高平县', '140523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (446, '山西省', '晋城市', '陵川县', '140524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (447, '山西省', '晋城市', '泽州县', '140525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (448, '山西省', '晋城市', '高平市', '140581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (449, '山西省', '朔州市', '市辖区', '140601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (450, '山西省', '朔州市', '朔城区', '140602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (451, '山西省', '朔州市', '平鲁区', '140603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (452, '山西省', '朔州市', '山阴县', '140621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (453, '山西省', '朔州市', '应县', '140622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (454, '山西省', '朔州市', '右玉县', '140623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (455, '山西省', '朔州市', '怀仁县', '140624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (456, '山西省', '晋中市', '市辖区', '140701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (457, '山西省', '晋中市', '榆次区', '140702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (458, '山西省', '晋中市', '榆社县', '140721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (459, '山西省', '晋中市', '左权县', '140722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (460, '山西省', '晋中市', '和顺县', '140723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (461, '山西省', '晋中市', '昔阳县', '140724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (462, '山西省', '晋中市', '寿阳县', '140725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (463, '山西省', '晋中市', '太谷县', '140726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (464, '山西省', '晋中市', '祁县', '140727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (465, '山西省', '晋中市', '平遥县', '140728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (466, '山西省', '晋中市', '灵石县', '140729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (467, '山西省', '晋中市', '介休市', '140781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (468, '山西省', '运城市', '市辖区', '140801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (469, '山西省', '运城市', '盐湖区', '140802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (470, '山西省', '运城市', '临猗县', '140821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (471, '山西省', '运城市', '万荣县', '140822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (472, '山西省', '运城市', '闻喜县', '140823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (473, '山西省', '运城市', '稷山县', '140824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (474, '山西省', '运城市', '新绛县', '140825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (475, '山西省', '运城市', '绛县', '140826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (476, '山西省', '运城市', '垣曲县', '140827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (477, '山西省', '运城市', '夏县', '140828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (478, '山西省', '运城市', '平陆县', '140829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (479, '山西省', '运城市', '芮城县', '140830'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (480, '山西省', '运城市', '永济市', '140881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (481, '山西省', '运城市', '河津市', '140882'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (482, '山西省', '忻州市', '市辖区', '140901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (483, '山西省', '忻州市', '忻府区', '140902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (484, '山西省', '忻州市', '定襄县', '140921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (485, '山西省', '忻州市', '五台县', '140922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (486, '山西省', '忻州市', '代县', '140923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (487, '山西省', '忻州市', '繁峙县', '140924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (488, '山西省', '忻州市', '宁武县', '140925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (489, '山西省', '忻州市', '静乐县', '140926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (490, '山西省', '忻州市', '神池县', '140927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (491, '山西省', '忻州市', '五寨县', '140928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (492, '山西省', '忻州市', '岢岚县', '140929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (493, '山西省', '忻州市', '河曲县', '140930'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (494, '山西省', '忻州市', '保德县', '140931'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (495, '山西省', '忻州市', '偏关县', '140932'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (496, '山西省', '忻州市', '原平市', '140981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (497, '山西省', '临汾市', '市辖区', '141001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (498, '山西省', '临汾市', '尧都区', '141002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (499, '山西省', '临汾市', '曲沃县', '141021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (500, '山西省', '临汾市', '翼城县', '141022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (501, '山西省', '临汾市', '襄汾县', '141023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (502, '山西省', '临汾市', '洪洞县', '141024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (503, '山西省', '临汾市', '古县', '141025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (504, '山西省', '临汾市', '安泽县', '141026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (505, '山西省', '临汾市', '浮山县', '141027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (506, '山西省', '临汾市', '吉县', '141028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (507, '山西省', '临汾市', '乡宁县', '141029'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (508, '山西省', '临汾市', '大宁县', '141030'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (509, '山西省', '临汾市', '隰县', '141031'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (510, '山西省', '临汾市', '永和县', '141032'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (511, '山西省', '临汾市', '蒲县', '141033'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (512, '山西省', '临汾市', '汾西县', '141034'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (513, '山西省', '临汾市', '侯马市', '141081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (514, '山西省', '临汾市', '霍州市', '141082'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (515, '山西省', '吕梁市', '市辖区', '141101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (516, '山西省', '吕梁市', '离石区', '141102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (517, '山西省', '吕梁市', '文水县', '141121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (518, '山西省', '吕梁市', '交城县', '141122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (519, '山西省', '吕梁市', '兴县', '141123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (520, '山西省', '吕梁市', '临县', '141124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (521, '山西省', '吕梁市', '柳林县', '141125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (522, '山西省', '吕梁市', '石楼县', '141126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (523, '山西省', '吕梁市', '岚县', '141127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (524, '山西省', '吕梁市', '方山县', '141128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (525, '山西省', '吕梁市', '中阳县', '141129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (526, '山西省', '吕梁市', '交口县', '141130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (527, '山西省', '吕梁市', '孝义市', '141181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (528, '山西省', '吕梁市', '汾阳市', '141182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (529, '山西省', '雁北地区', '阳高县', '142121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (530, '山西省', '雁北地区', '天镇县', '142122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (531, '山西省', '雁北地区', '广灵县', '142123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (532, '山西省', '雁北地区', '灵丘县', '142124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (533, '山西省', '雁北地区', '浑源县', '142125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (534, '山西省', '雁北地区', '应县', '142126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (535, '山西省', '雁北地区', '山阴县', '142127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (536, '山西省', '雁北地区', '朔县', '142128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (537, '山西省', '雁北地区', '平鲁县', '142129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (538, '山西省', '雁北地区', '左云县', '142130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (539, '山西省', '雁北地区', '右玉县', '142131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (540, '山西省', '雁北地区', '大同县', '142132'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (541, '山西省', '雁北地区', '怀仁县', '142133'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (542, '山西省', '忻州地区', '忻州市', '142201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (543, '山西省', '忻州地区', '原平市', '142202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (544, '山西省', '忻州地区', '定襄县', '142222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (545, '山西省', '忻州地区', '五台县', '142223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (546, '山西省', '忻州地区', '代县', '142225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (547, '山西省', '忻州地区', '繁峙县', '142226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (548, '山西省', '忻州地区', '宁武县', '142227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (549, '山西省', '忻州地区', '静乐县', '142228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (550, '山西省', '忻州地区', '神池县', '142229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (551, '山西省', '忻州地区', '五寨县', '142230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (552, '山西省', '忻州地区', '岢岚县', '142231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (553, '山西省', '忻州地区', '河曲县', '142232'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (554, '山西省', '忻州地区', '保德县', '142233'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (555, '山西省', '忻州地区', '偏关县', '142234'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (556, '山西省', '吕梁地区', '孝义市', '142301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (557, '山西省', '吕梁地区', '离石市', '142302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (558, '山西省', '吕梁地区', '汾阳市', '142303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (559, '山西省', '吕梁地区', '汾阳县', '142321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (560, '山西省', '吕梁地区', '文水县', '142322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (561, '山西省', '吕梁地区', '交城县', '142323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (562, '山西省', '吕梁地区', '兴县', '142325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (563, '山西省', '吕梁地区', '临县', '142326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (564, '山西省', '吕梁地区', '柳林县', '142327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (565, '山西省', '吕梁地区', '石楼县', '142328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (566, '山西省', '吕梁地区', '岚县', '142329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (567, '山西省', '吕梁地区', '方山县', '142330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (568, '山西省', '吕梁地区', '中阳县', '142332'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (569, '山西省', '吕梁地区', '交口县', '142333'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (570, '山西省', '晋中地区', '榆次市', '142401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (571, '山西省', '晋中地区', '介休市', '142402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (572, '山西省', '晋中地区', '榆社县', '142421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (573, '山西省', '晋中地区', '左权县', '142422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (574, '山西省', '晋中地区', '和顺县', '142423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (575, '山西省', '晋中地区', '昔阳县', '142424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (576, '山西省', '晋中地区', '寿阳县', '142427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (577, '山西省', '晋中地区', '太谷县', '142429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (578, '山西省', '晋中地区', '祁县', '142430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (579, '山西省', '晋中地区', '平遥县', '142431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (580, '山西省', '晋中地区', '灵石县', '142433'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (581, '山西省', '临汾地区', '临汾市', '142601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (582, '山西省', '临汾地区', '侯马市', '142602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (583, '山西省', '临汾地区', '霍州市', '142603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (584, '山西省', '临汾地区', '曲沃县', '142621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (585, '山西省', '临汾地区', '翼城县', '142622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (586, '山西省', '临汾地区', '襄汾县', '142623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (587, '山西省', '临汾地区', '洪洞县', '142625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (588, '山西省', '临汾地区', '古县', '142627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (589, '山西省', '临汾地区', '安泽县', '142628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (590, '山西省', '临汾地区', '浮山县', '142629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (591, '山西省', '临汾地区', '吉县', '142630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (592, '山西省', '临汾地区', '乡宁县', '142631'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (593, '山西省', '临汾地区', '蒲县', '142632'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (594, '山西省', '临汾地区', '大宁县', '142633'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (595, '山西省', '临汾地区', '永和县', '142634'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (596, '山西省', '临汾地区', '隰县', '142635'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (597, '山西省', '临汾地区', '汾西县', '142636'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (598, '山西省', '运城地区', '运城市', '142701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (599, '山西省', '运城地区', '永济市', '142702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (600, '山西省', '运城地区', '河津市', '142703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (601, '山西省', '运城地区', '芮城县', '142723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (602, '山西省', '运城地区', '临猗县', '142724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (603, '山西省', '运城地区', '万荣县', '142725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (604, '山西省', '运城地区', '新绛县', '142726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (605, '山西省', '运城地区', '稷山县', '142727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (606, '山西省', '运城地区', '闻喜县', '142729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (607, '山西省', '运城地区', '夏县', '142730'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (608, '山西省', '运城地区', '绛县', '142731'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (609, '山西省', '运城地区', '平陆县', '142732'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (610, '山西省', '运城地区', '垣曲县', '142733'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (611, '山西省', NULL, '古交市', '149001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (612, '内蒙古自治区', '呼和浩特市', '市辖区', '150101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (613, '内蒙古自治区', '呼和浩特市', '新城区', '150102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (614, '内蒙古自治区', '呼和浩特市', '回民区', '150103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (615, '内蒙古自治区', '呼和浩特市', '玉泉区', '150104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (616, '内蒙古自治区', '呼和浩特市', '郊区', '150105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (617, '内蒙古自治区', '呼和浩特市', '土默特左旗', '150121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (618, '内蒙古自治区', '呼和浩特市', '托克托县', '150122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (619, '内蒙古自治区', '呼和浩特市', '和林格尔县', '150123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (620, '内蒙古自治区', '呼和浩特市', '清水河县', '150124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (621, '内蒙古自治区', '呼和浩特市', '武川县', '150125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (622, '内蒙古自治区', '包头市', '市辖区', '150201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (623, '内蒙古自治区', '包头市', '东河区', '150202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (624, '内蒙古自治区', '包头市', '昆都伦区', '150203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (625, '内蒙古自治区', '包头市', '青山区', '150204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (626, '内蒙古自治区', '包头市', '石拐矿区', '150205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (627, '内蒙古自治区', '包头市', '白云矿区', '150206'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (628, '内蒙古自治区', '包头市', '郊区', '150207'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (629, '内蒙古自治区', '包头市', '土默特右旗', '150221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (630, '内蒙古自治区', '包头市', '固阳县', '150222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (631, '内蒙古自治区', '包头市', '达尔罕茂明安联合旗', '150223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (632, '内蒙古自治区', '乌海市', '市辖区', '150301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (633, '内蒙古自治区', '乌海市', '海勃湾区', '150302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (634, '内蒙古自治区', '乌海市', '海南区', '150303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (635, '内蒙古自治区', '乌海市', '乌达区', '150304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (636, '内蒙古自治区', '赤峰市', '市辖区', '150401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (637, '内蒙古自治区', '赤峰市', '红山区', '150402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (638, '内蒙古自治区', '赤峰市', '元宝山区', '150403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (639, '内蒙古自治区', '赤峰市', '松山区', '150404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (640, '内蒙古自治区', '赤峰市', '阿鲁科尔沁旗', '150421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (641, '内蒙古自治区', '赤峰市', '巴林左旗', '150422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (642, '内蒙古自治区', '赤峰市', '巴林右旗', '150423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (643, '内蒙古自治区', '赤峰市', '林西县', '150424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (644, '内蒙古自治区', '赤峰市', '克什克腾旗', '150425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (645, '内蒙古自治区', '赤峰市', '翁牛特旗', '150426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (646, '内蒙古自治区', '赤峰市', '喀喇沁旗', '150428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (647, '内蒙古自治区', '赤峰市', '宁城县', '150429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (648, '内蒙古自治区', '赤峰市', '敖汉旗', '150430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (649, '内蒙古自治区', '通辽市', '市辖区', '150501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (650, '内蒙古自治区', '通辽市', '科尔沁区', '150502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (651, '内蒙古自治区', '通辽市', '科尔沁左翼中旗', '150521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (652, '内蒙古自治区', '通辽市', '科尔沁左翼后旗', '150522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (653, '内蒙古自治区', '通辽市', '开鲁县', '150523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (654, '内蒙古自治区', '通辽市', '库伦旗', '150524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (655, '内蒙古自治区', '通辽市', '奈曼旗', '150525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (656, '内蒙古自治区', '通辽市', '扎鲁特旗', '150526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (657, '内蒙古自治区', '通辽市', '霍林郭勒市', '150581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (658, '内蒙古自治区', '鄂尔多斯市', '鄂尔多斯市', '150601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (659, '内蒙古自治区', '鄂尔多斯市', '东胜区', '150602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (660, '内蒙古自治区', '鄂尔多斯市', '达拉特旗', '150621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (661, '内蒙古自治区', '鄂尔多斯市', '准格尔旗', '150622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (662, '内蒙古自治区', '鄂尔多斯市', '鄂托克前旗', '150623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (663, '内蒙古自治区', '鄂尔多斯市', '鄂托克旗', '150624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (664, '内蒙古自治区', '鄂尔多斯市', '杭锦旗', '150625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (665, '内蒙古自治区', '鄂尔多斯市', '乌审旗', '150626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (666, '内蒙古自治区', '鄂尔多斯市', '伊金霍洛旗', '150627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (667, '内蒙古自治区', '呼伦贝尔市', '市辖区', '150701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (668, '内蒙古自治区', '呼伦贝尔市', '海拉尔区', '150702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (669, '内蒙古自治区', '呼伦贝尔市', '阿荣旗', '150721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (670, '内蒙古自治区', '呼伦贝尔市', '莫力达瓦达斡尔族自治旗', '150722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (671, '内蒙古自治区', '呼伦贝尔市', '鄂伦春自治旗', '150723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (672, '内蒙古自治区', '呼伦贝尔市', '鄂温克族自治旗', '150724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (673, '内蒙古自治区', '呼伦贝尔市', '陈巴尔虎旗', '150725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (674, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎左旗', '150726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (675, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎右旗', '150727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (676, '内蒙古自治区', '呼伦贝尔市', '满洲里市', '150781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (677, '内蒙古自治区', '呼伦贝尔市', '牙克石市', '150782'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (678, '内蒙古自治区', '呼伦贝尔市', '扎兰屯市', '150783'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (679, '内蒙古自治区', '呼伦贝尔市', '额尔古纳市', '150784'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (680, '内蒙古自治区', '呼伦贝尔市', '根河市', '150785'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (681, '内蒙古自治区', '巴彦淖尔市', '市辖区', '150801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (682, '内蒙古自治区', '巴彦淖尔市', '临河区', '150802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (683, '内蒙古自治区', '巴彦淖尔市', '五原县', '150821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (684, '内蒙古自治区', '巴彦淖尔市', '磴口县', '150822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (685, '内蒙古自治区', '巴彦淖尔市', '乌拉特前旗', '150823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (686, '内蒙古自治区', '巴彦淖尔市', '乌拉特中旗', '150824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (687, '内蒙古自治区', '巴彦淖尔市', '乌拉特后旗', '150825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (688, '内蒙古自治区', '巴彦淖尔市', '杭锦后旗', '150826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (689, '内蒙古自治区', '乌兰察布市', '市辖区', '150901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (690, '内蒙古自治区', '乌兰察布市', '集宁区', '150902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (691, '内蒙古自治区', '乌兰察布市', '卓资县', '150921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (692, '内蒙古自治区', '乌兰察布市', '化德县', '150922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (693, '内蒙古自治区', '乌兰察布市', '商都县', '150923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (694, '内蒙古自治区', '乌兰察布市', '兴和县', '150924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (695, '内蒙古自治区', '乌兰察布市', '凉城县', '150925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (696, '内蒙古自治区', '乌兰察布市', '察哈尔右翼前旗', '150926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (697, '内蒙古自治区', '乌兰察布市', '察哈尔右翼中旗', '150927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (698, '内蒙古自治区', '乌兰察布市', '察哈尔右翼后旗', '150928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (699, '内蒙古自治区', '乌兰察布市', '四子王旗', '150929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (700, '内蒙古自治区', '乌兰察布市', '丰镇市', '150981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (701, '内蒙古自治区', '呼伦贝尔盟', '海拉尔市', '152101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (702, '内蒙古自治区', '呼伦贝尔盟', '满洲里市', '152102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (703, '内蒙古自治区', '呼伦贝尔盟', '扎兰屯市', '152103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (704, '内蒙古自治区', '呼伦贝尔盟', '牙克石市', '152104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (705, '内蒙古自治区', '呼伦贝尔盟', '根河市', '152105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (706, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳市', '152106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (707, '内蒙古自治区', '呼伦贝尔盟', '布特哈旗', '152121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (708, '内蒙古自治区', '呼伦贝尔盟', '阿荣旗', '152122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (709, '内蒙古自治区', '呼伦贝尔盟', '莫力达瓦达斡尔族自治旗', '152123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (710, '内蒙古自治区', '呼伦贝尔盟', '喜桂图旗', '152124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (711, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳右旗', '152125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (712, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳左旗', '152126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (713, '内蒙古自治区', '呼伦贝尔盟', '鄂伦春自治旗', '152127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (714, '内蒙古自治区', '呼伦贝尔盟', '鄂温克族自治旗', '152128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (715, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎右旗', '152129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (716, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎左旗', '152130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (717, '内蒙古自治区', '呼伦贝尔盟', '陈巴尔虎旗', '152131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (718, '内蒙古自治区', '兴安盟', '乌兰浩特市', '152201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (719, '内蒙古自治区', '兴安盟', '阿尔山市', '152202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (720, '内蒙古自治区', '兴安盟', '科尔沁右翼前旗', '152221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (721, '内蒙古自治区', '兴安盟', '科尔沁右翼中旗', '152222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (722, '内蒙古自治区', '兴安盟', '扎赉特旗', '152223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (723, '内蒙古自治区', '兴安盟', '突泉县', '152224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (724, '内蒙古自治区', '哲里木盟', '通辽市', '152301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (725, '内蒙古自治区', '哲里木盟', '霍林郭勒市', '152302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (726, '内蒙古自治区', '哲里木盟', '通辽县', '152321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (727, '内蒙古自治区', '哲里木盟', '科尔沁左翼中旗', '152322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (728, '内蒙古自治区', '哲里木盟', '科尔沁左翼后旗', '152323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (729, '内蒙古自治区', '哲里木盟', '开鲁县', '152324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (730, '内蒙古自治区', '哲里木盟', '库伦旗', '152325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (731, '内蒙古自治区', '哲里木盟', '奈曼旗', '152326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (732, '内蒙古自治区', '哲里木盟', '扎鲁特旗', '152327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (733, '内蒙古自治区', '锡林郭勒盟', '二连浩特市', '152501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (734, '内蒙古自治区', '锡林郭勒盟', '锡林浩特市', '152502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (735, '内蒙古自治区', '锡林郭勒盟', '阿巴嘎旗', '152522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (736, '内蒙古自治区', '锡林郭勒盟', '苏尼特左旗', '152523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (737, '内蒙古自治区', '锡林郭勒盟', '苏尼特右旗', '152524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (738, '内蒙古自治区', '锡林郭勒盟', '东乌珠穆沁旗', '152525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (739, '内蒙古自治区', '锡林郭勒盟', '西乌珠穆沁旗', '152526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (740, '内蒙古自治区', '锡林郭勒盟', '太仆寺旗', '152527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (741, '内蒙古自治区', '锡林郭勒盟', '镶黄旗', '152528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (742, '内蒙古自治区', '锡林郭勒盟', '正镶白旗', '152529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (743, '内蒙古自治区', '锡林郭勒盟', '正蓝旗', '152530'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (744, '内蒙古自治区', '锡林郭勒盟', '多伦县', '152531'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (745, '内蒙古自治区', '乌兰察布盟', '集宁市', '152601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (746, '内蒙古自治区', '乌兰察布盟', '丰镇市', '152602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (747, '内蒙古自治区', '乌兰察布盟', '武川县', '152621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (748, '内蒙古自治区', '乌兰察布盟', '和林格尔县', '152622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (749, '内蒙古自治区', '乌兰察布盟', '清水河县', '152623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (750, '内蒙古自治区', '乌兰察布盟', '卓资县', '152624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (751, '内蒙古自治区', '乌兰察布盟', '化德县', '152625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (752, '内蒙古自治区', '乌兰察布盟', '商都县', '152626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (753, '内蒙古自治区', '乌兰察布盟', '兴和县', '152627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (754, '内蒙古自治区', '乌兰察布盟', '丰镇县', '152628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (755, '内蒙古自治区', '乌兰察布盟', '凉城县', '152629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (756, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼前旗', '152630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (757, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼中旗', '152631'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (758, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼后旗', '152632'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (759, '内蒙古自治区', '乌兰察布盟', '达尔罕茂明安联合旗', '152633'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (760, '内蒙古自治区', '乌兰察布盟', '四子王旗', '152634'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (761, '内蒙古自治区', '伊克昭盟', '东胜市', '152701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (762, '内蒙古自治区', '伊克昭盟', '东胜县', '152721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (763, '内蒙古自治区', '伊克昭盟', '达拉特旗', '152722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (764, '内蒙古自治区', '伊克昭盟', '准格尔旗', '152723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (765, '内蒙古自治区', '伊克昭盟', '鄂托克前旗', '152724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (766, '内蒙古自治区', '伊克昭盟', '鄂托克旗', '152725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (767, '内蒙古自治区', '伊克昭盟', '杭锦旗', '152726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (768, '内蒙古自治区', '伊克昭盟', '乌审旗', '152727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (769, '内蒙古自治区', '伊克昭盟', '伊金霍洛旗', '152728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (770, '内蒙古自治区', '巴彦淖尔盟', '临河市', '152801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (771, '内蒙古自治区', '巴彦淖尔盟', '临河县', '152821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (772, '内蒙古自治区', '巴彦淖尔盟', '五原县', '152822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (773, '内蒙古自治区', '巴彦淖尔盟', '磴口县', '152823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (774, '内蒙古自治区', '巴彦淖尔盟', '乌拉特前旗', '152824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (775, '内蒙古自治区', '巴彦淖尔盟', '乌拉特中旗', '152825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (776, '内蒙古自治区', '巴彦淖尔盟', '乌拉特后旗', '152826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (777, '内蒙古自治区', '巴彦淖尔盟', '杭锦后旗', '152827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (778, '内蒙古自治区', '阿拉善盟', '阿拉善左旗', '152921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (779, '内蒙古自治区', '阿拉善盟', '阿拉善右旗', '152922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (780, '内蒙古自治区', '阿拉善盟', '额济纳旗', '152923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (781, '辽宁省', '沈阳市', '市辖区', '210101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (782, '辽宁省', '沈阳市', '和平区', '210102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (783, '辽宁省', '沈阳市', '沈河区', '210103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (784, '辽宁省', '沈阳市', '大东区', '210104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (785, '辽宁省', '沈阳市', '皇姑区', '210105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (786, '辽宁省', '沈阳市', '铁西区', '210106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (787, '辽宁省', '沈阳市', '苏家屯区', '210111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (788, '辽宁省', '沈阳市', '东陵区', '210112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (789, '辽宁省', '沈阳市', '沈北新区', '210113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (790, '辽宁省', '沈阳市', '于洪区', '210114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (791, '辽宁省', '沈阳市', '市区', '210120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (792, '辽宁省', '沈阳市', '新民县', '210121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (793, '辽宁省', '沈阳市', '辽中县', '210122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (794, '辽宁省', '沈阳市', '康平县', '210123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (795, '辽宁省', '沈阳市', '法库县', '210124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (796, '辽宁省', '沈阳市', '新民市', '210181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (797, '辽宁省', '大连市', '市辖区', '210201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (798, '辽宁省', '大连市', '中山区', '210202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (799, '辽宁省', '大连市', '西岗区', '210203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (800, '辽宁省', '大连市', '沙河口区', '210204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (801, '辽宁省', '大连市', '甘井子区', '210211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (802, '辽宁省', '大连市', '旅顺口区', '210212'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (803, '辽宁省', '大连市', '金州区', '210213'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (804, '辽宁省', '大连市', '瓦房店市', '210219'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (805, '辽宁省', '大连市', '市区', '210220'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (806, '辽宁省', '大连市', '金县', '210221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (807, '辽宁省', '大连市', '新金县', '210222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (808, '辽宁省', '大连市', '复县', '210223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (809, '辽宁省', '大连市', '长海县', '210224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (810, '辽宁省', '大连市', '庄河县', '210225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (811, '辽宁省', '大连市', '瓦房店市', '210281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (812, '辽宁省', '大连市', '普兰店市', '210282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (813, '辽宁省', '大连市', '庄河市', '210283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (814, '辽宁省', '鞍山市', '市辖区', '210301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (815, '辽宁省', '鞍山市', '铁东区', '210302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (816, '辽宁省', '鞍山市', '铁西区', '210303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (817, '辽宁省', '鞍山市', '立山区', '210304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (818, '辽宁省', '鞍山市', '千山区', '210311'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (819, '辽宁省', '鞍山市', '开发区', '210319'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (820, '辽宁省', '鞍山市', '台安县', '210321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (821, '辽宁省', '鞍山市', '岫岩满族自治县', '210323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (822, '辽宁省', '鞍山市', '海城市', '210381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (823, '辽宁省', '抚顺市', '市辖区', '210401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (824, '辽宁省', '抚顺市', '新抚区', '210402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (825, '辽宁省', '抚顺市', '东洲区', '210403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (826, '辽宁省', '抚顺市', '望花区', '210404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (827, '辽宁省', '抚顺市', '顺城区', '210411'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (828, '辽宁省', '抚顺市', '抚顺县', '210421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (829, '辽宁省', '抚顺市', '新宾满族自治县', '210422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (830, '辽宁省', '抚顺市', '清原满族自治县', '210423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (831, '辽宁省', '本溪市', '市辖区', '210501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (832, '辽宁省', '本溪市', '平山区', '210502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (833, '辽宁省', '本溪市', '溪湖区', '210503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (834, '辽宁省', '本溪市', '明山区', '210504'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (835, '辽宁省', '本溪市', '南芬区', '210505'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (836, '辽宁省', '本溪市', '南芬区', '210511'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (837, '辽宁省', '本溪市', '本溪满族自治县', '210521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (838, '辽宁省', '本溪市', '桓仁满族自治县', '210522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (839, '辽宁省', '丹东市', '市辖区', '210601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (840, '辽宁省', '丹东市', '元宝区', '210602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (841, '辽宁省', '丹东市', '振兴区', '210603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (842, '辽宁省', '丹东市', '振安区', '210604'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (843, '辽宁省', '丹东市', '市区', '210620'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (844, '辽宁省', '丹东市', '凤城满族自治县', '210621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (845, '辽宁省', '丹东市', '岫岩满族自治县', '210622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (846, '辽宁省', '丹东市', '东沟县', '210623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (847, '辽宁省', '丹东市', '宽甸满族自治县', '210624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (848, '辽宁省', '丹东市', '东港市', '210681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (849, '辽宁省', '丹东市', '凤城市', '210682'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (850, '辽宁省', '锦州市', '市辖区', '210701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (851, '辽宁省', '锦州市', '古塔区', '210702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (852, '辽宁省', '锦州市', '凌河区', '210703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (853, '辽宁省', '锦州市', '南票区', '210704'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (854, '辽宁省', '锦州市', '葫芦岛区', '210705'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (855, '辽宁省', '锦州市', '太和区', '210711'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (856, '辽宁省', '锦州市', '锦西市', '210719'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (857, '辽宁省', '锦州市', '市区', '210720'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (858, '辽宁省', '锦州市', '锦西县', '210721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (859, '辽宁省', '锦州市', '兴城县', '210722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (860, '辽宁省', '锦州市', '绥中县', '210723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (861, '辽宁省', '锦州市', '锦县', '210724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (862, '辽宁省', '锦州市', '北镇满族自治县', '210725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (863, '辽宁省', '锦州市', '黑山县', '210726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (864, '辽宁省', '锦州市', '义县', '210727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (865, '辽宁省', '锦州市', '凌海市', '210781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (866, '辽宁省', '锦州市', '北镇市', '210782'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (867, '辽宁省', '营口市', '市辖区', '210801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (868, '辽宁省', '营口市', '站前区', '210802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (869, '辽宁省', '营口市', '西市区', '210803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (870, '辽宁省', '营口市', '鲅鱼圈区', '210804'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (871, '辽宁省', '营口市', '老边区', '210811'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (872, '辽宁省', '营口市', '营口县', '210821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (873, '辽宁省', '营口市', '盖县', '210824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (874, '辽宁省', '营口市', '盖州市', '210881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (875, '辽宁省', '营口市', '大石桥市', '210882'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (876, '辽宁省', '阜新市', '市辖区', '210901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (877, '辽宁省', '阜新市', '海州区', '210902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (878, '辽宁省', '阜新市', '新邱区', '210903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (879, '辽宁省', '阜新市', '太平区', '210904'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (880, '辽宁省', '阜新市', '清河门区', '210905'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (881, '辽宁省', '阜新市', '细河区', '210911'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (882, '辽宁省', '阜新市', '阜新蒙古族自治县', '210921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (883, '辽宁省', '阜新市', '彰武县', '210922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (884, '辽宁省', '辽阳市', '市辖区', '211001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (885, '辽宁省', '辽阳市', '白塔区', '211002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (886, '辽宁省', '辽阳市', '文圣区', '211003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (887, '辽宁省', '辽阳市', '宏伟区', '211004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (888, '辽宁省', '辽阳市', '弓长岭区', '211005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (889, '辽宁省', '辽阳市', '太子河区', '211011'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (890, '辽宁省', '辽阳市', '辽阳县', '211021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (891, '辽宁省', '辽阳市', '灯塔县', '211022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (892, '辽宁省', '辽阳市', '灯塔市', '211081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (893, '辽宁省', '盘锦市', '市辖区', '211101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (894, '辽宁省', '盘锦市', '双台子区', '211102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (895, '辽宁省', '盘锦市', '兴隆台区', '211103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (896, '辽宁省', '盘锦市', '郊区', '211111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (897, '辽宁省', '盘锦市', '大洼县', '211121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (898, '辽宁省', '盘锦市', '盘山县', '211122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (899, '辽宁省', '铁岭市', '市辖区', '211201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (900, '辽宁省', '铁岭市', '银州区', '211202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (901, '辽宁省', '铁岭市', '铁法区', '211203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (902, '辽宁省', '铁岭市', '清河区', '211204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (903, '辽宁省', '铁岭市', '铁岭县', '211221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (904, '辽宁省', '铁岭市', '开原县', '211222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (905, '辽宁省', '铁岭市', '西丰县', '211223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (906, '辽宁省', '铁岭市', '昌图县', '211224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (907, '辽宁省', '铁岭市', '康平县', '211225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (908, '辽宁省', '铁岭市', '法库县', '211226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (909, '辽宁省', '铁岭市', '调兵山市', '211281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (910, '辽宁省', '铁岭市', '开原市', '211282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (911, '辽宁省', '朝阳市', '市辖区', '211301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (912, '辽宁省', '朝阳市', '双塔区', '211302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (913, '辽宁省', '朝阳市', '龙城区', '211303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (914, '辽宁省', '朝阳市', '朝阳县', '211321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (915, '辽宁省', '朝阳市', '建平县', '211322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (916, '辽宁省', '朝阳市', '凌源县', '211323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (917, '辽宁省', '朝阳市', '喀喇沁左翼蒙古族自治县', '211324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (918, '辽宁省', '朝阳市', '建昌县', '211325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (919, '辽宁省', '朝阳市', '北票县', '211326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (920, '辽宁省', '朝阳市', '北票市', '211381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (921, '辽宁省', '朝阳市', '凌源市', '211382'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (922, '辽宁省', '葫芦岛市', '市辖区', '211401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (923, '辽宁省', '葫芦岛市', '连山区', '211402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (924, '辽宁省', '葫芦岛市', '龙港区', '211403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (925, '辽宁省', '葫芦岛市', '南票区', '211404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (926, '辽宁省', '葫芦岛市', '绥中县', '211421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (927, '辽宁省', '葫芦岛市', '建昌县', '211422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (928, '辽宁省', '葫芦岛市', '兴城市', '211481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (929, '辽宁省', '铁岭市', '铁岭市', '212101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (930, '辽宁省', '铁岭市', '铁法市', '212102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (931, '辽宁省', '铁岭市', '铁岭县', '212121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (932, '辽宁省', '铁岭市', '开原县', '212122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (933, '辽宁省', '铁岭市', '西丰县', '212123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (934, '辽宁省', '铁岭市', '昌图县', '212124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (935, '辽宁省', '铁岭市', '康平县', '212125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (936, '辽宁省', '铁岭市', '法库县', '212126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (937, '辽宁省', '朝阳市', '建昌县', '212225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (938, '辽宁省', '朝阳市', '北票县', '212226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (939, '辽宁省', NULL, '瓦房店市', '219001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (940, '辽宁省', NULL, '海城市', '219002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (941, '辽宁省', NULL, '锦西市', '219003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (942, '辽宁省', NULL, '兴城市', '219004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (943, '辽宁省', NULL, '铁法市', '219005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (944, '辽宁省', NULL, '北票市', '219006'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (945, '辽宁省', NULL, '开原市', '219007'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (946, '吉林省', '长春市', '市辖区', '220101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (947, '吉林省', '长春市', '南关区', '220102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (948, '吉林省', '长春市', '宽城区', '220103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (949, '吉林省', '长春市', '朝阳区', '220104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (950, '吉林省', '长春市', '二道区', '220105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (951, '吉林省', '长春市', '绿园区', '220106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (952, '吉林省', '长春市', '郊区', '220111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (953, '吉林省', '长春市', '双阳区', '220112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (954, '吉林省', '长春市', '市区', '220120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (955, '吉林省', '长春市', '榆树县', '220121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (956, '吉林省', '长春市', '农安县', '220122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (957, '吉林省', '长春市', '九台县', '220123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (958, '吉林省', '长春市', '德惠县', '220124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (959, '吉林省', '长春市', '双阳县', '220125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (960, '吉林省', '长春市', '九台市', '220181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (961, '吉林省', '长春市', '榆树市', '220182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (962, '吉林省', '长春市', '德惠市', '220183'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (963, '吉林省', '吉林市', '市辖区', '220201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (964, '吉林省', '吉林市', '昌邑区', '220202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (965, '吉林省', '吉林市', '龙潭区', '220203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (966, '吉林省', '吉林市', '船营区', '220204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (967, '吉林省', '吉林市', '丰满区', '220211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (968, '吉林省', '吉林市', '市区', '220220'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (969, '吉林省', '吉林市', '永吉县', '220221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (970, '吉林省', '吉林市', '舒兰县', '220222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (971, '吉林省', '吉林市', '磐石县', '220223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (972, '吉林省', '吉林市', '蛟河县', '220224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (973, '吉林省', '吉林市', '桦甸县', '220225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (974, '吉林省', '吉林市', '蛟河市', '220281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (975, '吉林省', '吉林市', '桦甸市', '220282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (976, '吉林省', '吉林市', '舒兰市', '220283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (977, '吉林省', '吉林市', '磐石市', '220284'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (978, '吉林省', '四平市', '市辖区', '220301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (979, '吉林省', '四平市', '铁西区', '220302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (980, '吉林省', '四平市', '铁东区', '220303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (981, '吉林省', '四平市', '公主岭市', '220319'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (982, '吉林省', '四平市', '怀德县', '220321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (983, '吉林省', '四平市', '梨树县', '220322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (984, '吉林省', '四平市', '伊通满族自治县', '220323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (985, '吉林省', '四平市', '双辽县', '220324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (986, '吉林省', '四平市', '公主岭市', '220381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (987, '吉林省', '四平市', '双辽市', '220382'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (988, '吉林省', '辽源市', '市辖区', '220401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (989, '吉林省', '辽源市', '龙山区', '220402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (990, '吉林省', '辽源市', '西安区', '220403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (991, '吉林省', '辽源市', '东丰县', '220421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (992, '吉林省', '辽源市', '东辽县', '220422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (993, '吉林省', '通化市', '市辖区', '220501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (994, '吉林省', '通化市', '东昌区', '220502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (995, '吉林省', '通化市', '二道江区', '220503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (996, '吉林省', '通化市', '梅河口市', '220519'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (997, '吉林省', '通化市', '通化县', '220521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (998, '吉林省', '通化市', '集安县', '220522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (999, '吉林省', '通化市', '辉南县', '220523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1000, '吉林省', '通化市', '柳河县', '220524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1001, '吉林省', '通化市', '梅河口市', '220581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1002, '吉林省', '通化市', '集安市', '220582'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1003, '吉林省', '白山市', '市辖区', '220601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1004, '吉林省', '白山市', '八道江区', '220602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1005, '吉林省', '白山市', '三岔子区', '220603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1006, '吉林省', '白山市', '临江区', '220604'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1007, '吉林省', '白山市', '抚松县', '220621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1008, '吉林省', '白山市', '靖宇县', '220622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1009, '吉林省', '白山市', '长白朝鲜族自治县', '220623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1010, '吉林省', '白山市', '江源县', '220625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1011, '吉林省', '白山市', '临江市', '220681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1012, '吉林省', '松原市', '市辖区', '220701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1013, '吉林省', '松原市', '宁江区', '220702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1014, '吉林省', '松原市', '前郭尔罗斯蒙古族自治县', '220721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1015, '吉林省', '松原市', '长岭县', '220722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1016, '吉林省', '松原市', '乾安县', '220723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1017, '吉林省', '松原市', '扶余县', '220724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1018, '吉林省', '白城市', '市辖区', '220801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1019, '吉林省', '白城市', '洮北区', '220802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1020, '吉林省', '白城市', '镇赉县', '220821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1021, '吉林省', '白城市', '通榆县', '220822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1022, '吉林省', '白城市', '洮南市', '220881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1023, '吉林省', '白城市', '大安市', '220882'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1024, '吉林省', '白城地区', '白城市', '222301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1025, '吉林省', '白城地区', '洮南市', '222302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1026, '吉林省', '白城地区', '扶余市', '222303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1027, '吉林省', '白城地区', '大安市', '222304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1028, '吉林省', '白城地区', '扶余县', '222321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1029, '吉林省', '白城地区', '洮安县', '222322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1030, '吉林省', '白城地区', '长岭县', '222323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1031, '吉林省', '白城地区', '前郭尔罗斯蒙古族自治县', '222324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1032, '吉林省', '白城地区', '大安县', '222325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1033, '吉林省', '白城地区', '镇赉县', '222326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1034, '吉林省', '白城地区', '通榆县', '222327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1035, '吉林省', '白城地区', '乾安县', '222328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1036, '吉林省', '延边朝鲜族自治州', '延吉市', '222401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1037, '吉林省', '延边朝鲜族自治州', '图们市', '222402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1038, '吉林省', '延边朝鲜族自治州', '敦化市', '222403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1039, '吉林省', '延边朝鲜族自治州', '珲春市', '222404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1040, '吉林省', '延边朝鲜族自治州', '龙井市', '222405'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1041, '吉林省', '延边朝鲜族自治州', '和龙市', '222406'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1042, '吉林省', '延边朝鲜族自治州', '龙井县', '222421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1043, '吉林省', '延边朝鲜族自治州', '敦化县', '222422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1044, '吉林省', '延边朝鲜族自治州', '和龙县', '222423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1045, '吉林省', '延边朝鲜族自治州', '汪清县', '222424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1046, '吉林省', '延边朝鲜族自治州', '珲春县', '222425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1047, '吉林省', '延边朝鲜族自治州', '安图县', '222426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1048, '吉林省', NULL, '四平市', '222101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1049, '吉林省', NULL, '辽源市', '222102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1050, '吉林省', NULL, '怀德县', '222121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1051, '吉林省', NULL, '梨树县', '222122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1052, '吉林省', NULL, '伊通满族自治县', '222123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1053, '吉林省', NULL, '东丰县', '222124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1054, '吉林省', NULL, '双辽县', '222125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1055, '吉林省', NULL, '通化市', '222201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1056, '吉林省', NULL, '浑江市', '222202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1057, '吉林省', NULL, '海龙县', '222221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1058, '吉林省', NULL, '通化县', '222222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1059, '吉林省', NULL, '柳河县', '222223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1060, '吉林省', NULL, '辉南县', '222224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1061, '吉林省', NULL, '集安县', '222225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1062, '吉林省', NULL, '抚松县', '222226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1063, '吉林省', NULL, '靖宇县', '222227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1064, '吉林省', NULL, '长白朝鲜族自治县', '222228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1065, '吉林省', NULL, '公主岭市', '229001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1066, '吉林省', NULL, '梅河口市', '229002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1067, '吉林省', NULL, '集安市', '229003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1068, '吉林省', NULL, '桦甸市', '229004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1069, '吉林省', NULL, '九台市', '229005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1070, '黑龙江省', '哈尔滨市', '市辖区', '230101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1071, '黑龙江省', '哈尔滨市', '道里区', '230102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1072, '黑龙江省', '哈尔滨市', '南岗区', '230103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1073, '黑龙江省', '哈尔滨市', '道外区', '230104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1074, '黑龙江省', '哈尔滨市', '太平区', '230105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1075, '黑龙江省', '哈尔滨市', '香坊区', '230106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1076, '黑龙江省', '哈尔滨市', '动力区', '230107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1077, '黑龙江省', '哈尔滨市', '平房区', '230108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1078, '黑龙江省', '哈尔滨市', '松北区', '230109'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1079, '黑龙江省', '哈尔滨市', '香坊区', '230110'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1080, '黑龙江省', '哈尔滨市', '呼兰区', '230111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1081, '黑龙江省', '哈尔滨市', '阿城区', '230112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1082, '黑龙江省', '哈尔滨市', '阿城市', '230119'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1083, '黑龙江省', '哈尔滨市', '呼兰县', '230121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1084, '黑龙江省', '哈尔滨市', '阿城县', '230122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1085, '黑龙江省', '哈尔滨市', '依兰县', '230123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1086, '黑龙江省', '哈尔滨市', '方正县', '230124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1087, '黑龙江省', '哈尔滨市', '宾县', '230125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1088, '黑龙江省', '哈尔滨市', '巴彦县', '230126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1089, '黑龙江省', '哈尔滨市', '木兰县', '230127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1090, '黑龙江省', '哈尔滨市', '通河县', '230128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1091, '黑龙江省', '哈尔滨市', '延寿县', '230129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1092, '黑龙江省', '哈尔滨市', '阿城市', '230181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1093, '黑龙江省', '哈尔滨市', '双城市', '230182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1094, '黑龙江省', '哈尔滨市', '尚志市', '230183'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1095, '黑龙江省', '哈尔滨市', '五常市', '230184'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1096, '黑龙江省', '齐齐哈尔市', '市辖区', '230201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1097, '黑龙江省', '齐齐哈尔市', '龙沙区', '230202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1098, '黑龙江省', '齐齐哈尔市', '建华区', '230203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1099, '黑龙江省', '齐齐哈尔市', '铁锋区', '230204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1100, '黑龙江省', '齐齐哈尔市', '昂昂溪区', '230205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1101, '黑龙江省', '齐齐哈尔市', '富拉尔基区', '230206'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1102, '黑龙江省', '齐齐哈尔市', '碾子山区', '230207'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1103, '黑龙江省', '齐齐哈尔市', '梅里斯达斡尔族区', '230208'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1104, '黑龙江省', '齐齐哈尔市', '龙江县', '230221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1105, '黑龙江省', '齐齐哈尔市', '讷河县', '230222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1106, '黑龙江省', '齐齐哈尔市', '依安县', '230223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1107, '黑龙江省', '齐齐哈尔市', '泰来县', '230224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1108, '黑龙江省', '齐齐哈尔市', '甘南县', '230225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1109, '黑龙江省', '齐齐哈尔市', '杜尔伯特蒙古族自治县', '230226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1110, '黑龙江省', '齐齐哈尔市', '富裕县', '230227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1111, '黑龙江省', '齐齐哈尔市', '林甸县', '230228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1112, '黑龙江省', '齐齐哈尔市', '克山县', '230229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1113, '黑龙江省', '齐齐哈尔市', '克东县', '230230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1114, '黑龙江省', '齐齐哈尔市', '拜泉县', '230231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1115, '黑龙江省', '齐齐哈尔市', '讷河市', '230281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1116, '黑龙江省', '鸡西市', '市辖区', '230301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1117, '黑龙江省', '鸡西市', '鸡冠区', '230302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1118, '黑龙江省', '鸡西市', '恒山区', '230303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1119, '黑龙江省', '鸡西市', '滴道区', '230304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1120, '黑龙江省', '鸡西市', '梨树区', '230305'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1121, '黑龙江省', '鸡西市', '城子河区', '230306'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1122, '黑龙江省', '鸡西市', '麻山区', '230307'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1123, '黑龙江省', '鸡西市', '鸡东县', '230321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1124, '黑龙江省', '鸡西市', '虎林市', '230381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1125, '黑龙江省', '鸡西市', '密山市', '230382'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1126, '黑龙江省', '鹤岗市', '市辖区', '230401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1127, '黑龙江省', '鹤岗市', '向阳区', '230402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1128, '黑龙江省', '鹤岗市', '工农区', '230403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1129, '黑龙江省', '鹤岗市', '南山区', '230404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1130, '黑龙江省', '鹤岗市', '兴安区', '230405'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1131, '黑龙江省', '鹤岗市', '东山区', '230406'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1132, '黑龙江省', '鹤岗市', '兴山区', '230407'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1133, '黑龙江省', '鹤岗市', '萝北县', '230421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1134, '黑龙江省', '鹤岗市', '绥滨县', '230422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1135, '黑龙江省', '双鸭山市', '市辖区', '230501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1136, '黑龙江省', '双鸭山市', '尖山区', '230502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1137, '黑龙江省', '双鸭山市', '岭东区', '230503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1138, '黑龙江省', '双鸭山市', '岭西区', '230504'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1139, '黑龙江省', '双鸭山市', '四方台区', '230505'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1140, '黑龙江省', '双鸭山市', '宝山区', '230506'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1141, '黑龙江省', '双鸭山市', '集贤县', '230521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1142, '黑龙江省', '双鸭山市', '友谊县', '230522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1143, '黑龙江省', '双鸭山市', '宝清县', '230523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1144, '黑龙江省', '双鸭山市', '饶河县', '230524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1145, '黑龙江省', '大庆市', '市辖区', '230601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1146, '黑龙江省', '大庆市', '萨尔图区', '230602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1147, '黑龙江省', '大庆市', '龙凤区', '230603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1148, '黑龙江省', '大庆市', '让胡路区', '230604'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1149, '黑龙江省', '大庆市', '红岗区', '230605'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1150, '黑龙江省', '大庆市', '大同区', '230606'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1151, '黑龙江省', '大庆市', '肇州县', '230621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1152, '黑龙江省', '大庆市', '肇源县', '230622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1153, '黑龙江省', '大庆市', '林甸县', '230623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1154, '黑龙江省', '大庆市', '杜尔伯特蒙古族自治县', '230624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1155, '黑龙江省', '伊春市', '市辖区', '230701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1156, '黑龙江省', '伊春市', '伊春区', '230702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1157, '黑龙江省', '伊春市', '南岔区', '230703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1158, '黑龙江省', '伊春市', '友好区', '230704'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1159, '黑龙江省', '伊春市', '西林区', '230705'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1160, '黑龙江省', '伊春市', '翠峦区', '230706'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1161, '黑龙江省', '伊春市', '新青区', '230707'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1162, '黑龙江省', '伊春市', '美溪区', '230708'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1163, '黑龙江省', '伊春市', '金山屯区', '230709'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1164, '黑龙江省', '伊春市', '五营区', '230710'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1165, '黑龙江省', '伊春市', '乌马河区', '230711'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1166, '黑龙江省', '伊春市', '汤旺河区', '230712'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1167, '黑龙江省', '伊春市', '带岭区', '230713'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1168, '黑龙江省', '伊春市', '乌伊岭区', '230714'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1169, '黑龙江省', '伊春市', '红星区', '230715'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1170, '黑龙江省', '伊春市', '上甘岭区', '230716'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1171, '黑龙江省', '伊春市', '铁力县', '230721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1172, '黑龙江省', '伊春市', '嘉荫县', '230722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1173, '黑龙江省', '伊春市', '铁力市', '230781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1174, '黑龙江省', '佳木斯市', '市辖区', '230801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1175, '黑龙江省', '佳木斯市', '永红区', '230802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1176, '黑龙江省', '佳木斯市', '向阳区', '230803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1177, '黑龙江省', '佳木斯市', '前进区', '230804'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1178, '黑龙江省', '佳木斯市', '东风区', '230805'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1179, '黑龙江省', '佳木斯市', '郊区', '230811'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1180, '黑龙江省', '佳木斯市', '富锦县', '230821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1181, '黑龙江省', '佳木斯市', '桦南县', '230822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1182, '黑龙江省', '佳木斯市', '依兰县', '230823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1183, '黑龙江省', '佳木斯市', '集贤县', '230825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1184, '黑龙江省', '佳木斯市', '桦川县', '230826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1185, '黑龙江省', '佳木斯市', '宝清县', '230827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1186, '黑龙江省', '佳木斯市', '汤原县', '230828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1187, '黑龙江省', '佳木斯市', '绥滨县', '230829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1188, '黑龙江省', '佳木斯市', '萝北县', '230830'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1189, '黑龙江省', '佳木斯市', '同江县', '230831'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1190, '黑龙江省', '佳木斯市', '饶河县', '230832'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1191, '黑龙江省', '佳木斯市', '抚远县', '230833'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1192, '黑龙江省', '佳木斯市', '友谊县', '230834'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1193, '黑龙江省', '佳木斯市', '同江市', '230881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1194, '黑龙江省', '佳木斯市', '富锦市', '230882'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1195, '黑龙江省', '七台河市', '市辖区', '230901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1196, '黑龙江省', '七台河市', '新兴区', '230902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1197, '黑龙江省', '七台河市', '桃山区', '230903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1198, '黑龙江省', '七台河市', '茄子河区', '230904'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1199, '黑龙江省', '七台河市', '勃利县', '230921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1200, '黑龙江省', '牡丹江市', '市辖区', '231001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1201, '黑龙江省', '牡丹江市', '东安区', '231002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1202, '黑龙江省', '牡丹江市', '阳明区', '231003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1203, '黑龙江省', '牡丹江市', '爱民区', '231004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1204, '黑龙江省', '牡丹江市', '西安区', '231005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1205, '黑龙江省', '牡丹江市', '郊区', '231011'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1206, '黑龙江省', '牡丹江市', '绥芬河市', '231020'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1207, '黑龙江省', '牡丹江市', '宁安县', '231021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1208, '黑龙江省', '牡丹江市', '海林县', '231022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1209, '黑龙江省', '牡丹江市', '穆棱县', '231023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1210, '黑龙江省', '牡丹江市', '东宁县', '231024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1211, '黑龙江省', '牡丹江市', '林口县', '231025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1212, '黑龙江省', '牡丹江市', '密山县', '231026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1213, '黑龙江省', '牡丹江市', '虎林县', '231027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1214, '黑龙江省', '牡丹江市', '绥芬河市', '231081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1215, '黑龙江省', '牡丹江市', '密山市', '231082'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1216, '黑龙江省', '牡丹江市', '海林市', '231083'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1217, '黑龙江省', '牡丹江市', '宁安市', '231084'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1218, '黑龙江省', '牡丹江市', '穆棱市', '231085'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1219, '黑龙江省', '黑河市', '市辖区', '231101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1220, '黑龙江省', '黑河市', '爱辉区', '231102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1221, '黑龙江省', '黑河市', '嫩江县', '231121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1222, '黑龙江省', '黑河市', '逊克县', '231123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1223, '黑龙江省', '黑河市', '孙吴县', '231124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1224, '黑龙江省', '黑河市', '北安市', '231181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1225, '黑龙江省', '黑河市', '五大连池市', '231182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1226, '黑龙江省', '绥化市', '市辖区', '231201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1227, '黑龙江省', '绥化市', '北林区', '231202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1228, '黑龙江省', '绥化市', '望奎县', '231221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1229, '黑龙江省', '绥化市', '兰西县', '231222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1230, '黑龙江省', '绥化市', '青冈县', '231223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1231, '黑龙江省', '绥化市', '庆安县', '231224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1232, '黑龙江省', '绥化市', '明水县', '231225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1233, '黑龙江省', '绥化市', '绥棱县', '231226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1234, '黑龙江省', '绥化市', '安达市', '231281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1235, '黑龙江省', '绥化市', '肇东市', '231282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1236, '黑龙江省', '绥化市', '海伦市', '231283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1237, '黑龙江省', '松花江地区', '双城市', '232101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1238, '黑龙江省', '松花江地区', '尚志市', '232102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1239, '黑龙江省', '松花江地区', '五常市', '232103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1240, '黑龙江省', '松花江地区', '阿城市', '232121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1241, '黑龙江省', '松花江地区', '宾县', '232122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1242, '黑龙江省', '松花江地区', '呼兰县', '232123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1243, '黑龙江省', '松花江地区', '双城市', '232124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1244, '黑龙江省', '松花江地区', '五常市', '232125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1245, '黑龙江省', '松花江地区', '巴彦县', '232126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1246, '黑龙江省', '松花江地区', '木兰县', '232127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1247, '黑龙江省', '松花江地区', '通河县', '232128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1248, '黑龙江省', '松花江地区', '尚志市', '232129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1249, '黑龙江省', '松花江地区', '方正县', '232130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1250, '黑龙江省', '松花江地区', '延寿县', '232131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1251, '黑龙江省', '绥化地区', '绥化市', '232301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1252, '黑龙江省', '绥化地区', '安达市', '232302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1253, '黑龙江省', '绥化地区', '肇东市', '232303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1254, '黑龙江省', '绥化地区', '海伦市', '232304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1255, '黑龙江省', '绥化地区', '海伦县', '232321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1256, '黑龙江省', '绥化地区', '肇东县', '232322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1257, '黑龙江省', '绥化地区', '绥化县', '232323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1258, '黑龙江省', '绥化地区', '望奎县', '232324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1259, '黑龙江省', '绥化地区', '兰西县', '232325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1260, '黑龙江省', '绥化地区', '青冈县', '232326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1261, '黑龙江省', '绥化地区', '安达县', '232327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1262, '黑龙江省', '绥化地区', '肇源县', '232328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1263, '黑龙江省', '绥化地区', '肇州县', '232329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1264, '黑龙江省', '绥化地区', '庆安县', '232330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1265, '黑龙江省', '绥化地区', '明水县', '232331'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1266, '黑龙江省', '绥化地区', '绥棱县', '232332'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1267, '黑龙江省', '佳木斯地区', '佳木斯市', '232401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1268, '黑龙江省', '佳木斯地区', '富锦县', '232421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1269, '黑龙江省', '佳木斯地区', '桦南县', '232422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1270, '黑龙江省', '佳木斯地区', '依兰县', '232423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1271, '黑龙江省', '佳木斯地区', '勃利县', '232424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1272, '黑龙江省', '佳木斯地区', '集贤县', '232425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1273, '黑龙江省', '佳木斯地区', '桦川县', '232426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1274, '黑龙江省', '佳木斯地区', '宝清县', '232427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1275, '黑龙江省', '佳木斯地区', '汤原县', '232428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1276, '黑龙江省', '佳木斯地区', '绥滨县', '232429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1277, '黑龙江省', '佳木斯地区', '萝北县', '232430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1278, '黑龙江省', '佳木斯地区', '同江县', '232431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1279, '黑龙江省', '佳木斯地区', '饶河县', '232432'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1280, '黑龙江省', '佳木斯地区', '抚远县', '232433'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1281, '黑龙江省', '牡丹江地区', '牡丹江市', '232501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1282, '黑龙江省', '牡丹江地区', '绥芬河市', '232502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1283, '黑龙江省', '牡丹江地区', '宁安县', '232521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1284, '黑龙江省', '牡丹江地区', '海林县', '232522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1285, '黑龙江省', '牡丹江地区', '穆棱县', '232523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1286, '黑龙江省', '牡丹江地区', '东宁县', '232524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1287, '黑龙江省', '牡丹江地区', '林口县', '232525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1288, '黑龙江省', '牡丹江地区', '鸡东县', '232526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1289, '黑龙江省', '牡丹江地区', '密山县', '232527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1290, '黑龙江省', '牡丹江地区', '虎林县', '232528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1291, '黑龙江省', '黑河地区', '黑河市', '232601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1292, '黑龙江省', '黑河地区', '北安市', '232602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1293, '黑龙江省', '黑河地区', '五大连池市', '232603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1294, '黑龙江省', '黑河地区', '北安县', '232621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1295, '黑龙江省', '黑河地区', '嫩江县', '232622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1296, '黑龙江省', '黑河地区', '德都县', '232623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1297, '黑龙江省', '黑河地区', '逊克县', '232625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1298, '黑龙江省', '黑河地区', '孙吴县', '232626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1299, '黑龙江省', '大兴安岭地区', '加格达奇区', '232701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1300, '黑龙江省', '大兴安岭地区', '呼玛县', '232721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1301, '黑龙江省', '大兴安岭地区', '塔河县', '232722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1302, '黑龙江省', '大兴安岭地区', '漠河县', '232723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1303, '黑龙江省', '大兴安岭地区', '漠河县', '232724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1304, '黑龙江省', NULL, '绥芬河市', '239001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1305, '黑龙江省', NULL, '阿城市', '239002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1306, '黑龙江省', NULL, '同江市', '239003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1307, '黑龙江省', NULL, '富锦市', '239004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1308, '黑龙江省', NULL, '铁力市', '239005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1309, '黑龙江省', NULL, '密山市', '239006'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1310, '上海市', NULL, '黄浦区', '310101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1311, '上海市', NULL, '南市区', '310102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1312, '上海市', NULL, '卢湾区', '310103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1313, '上海市', NULL, '徐汇区', '310104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1314, '上海市', NULL, '长宁区', '310105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1315, '上海市', NULL, '静安区', '310106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1316, '上海市', NULL, '普陀区', '310107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1317, '上海市', NULL, '闸北区', '310108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1318, '上海市', NULL, '虹口区', '310109'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1319, '上海市', NULL, '杨浦区', '310110'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1320, '上海市', NULL, '吴凇区', '310111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1321, '上海市', NULL, '闵行区', '310112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1322, '上海市', NULL, '宝山区', '310113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1323, '上海市', NULL, '嘉定区', '310114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1324, '上海市', NULL, '浦东新区', '310115'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1325, '上海市', NULL, '金山区', '310116'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1326, '上海市', NULL, '松江区', '310117'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1327, '上海市', NULL, '青浦区', '310118'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1328, '上海市', NULL, '南汇区', '310119'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1329, '上海市', NULL, '奉贤区', '310120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1330, '上海市', NULL, '上海县', '310221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1331, '上海市', NULL, '嘉定县', '310222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1332, '上海市', NULL, '宝山县', '310223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1333, '上海市', NULL, '川沙县', '310224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1334, '上海市', NULL, '南汇县', '310225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1335, '上海市', NULL, '奉贤县', '310226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1336, '上海市', NULL, '松江县', '310227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1337, '上海市', NULL, '金山县', '310228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1338, '上海市', NULL, '青浦县', '310229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1339, '上海市', NULL, '崇明县', '310230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1340, '江苏省', '南京市', '市辖区', '320101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1341, '江苏省', '南京市', '玄武区', '320102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1342, '江苏省', '南京市', '白下区', '320103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1343, '江苏省', '南京市', '秦淮区', '320104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1344, '江苏省', '南京市', '建邺区', '320105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1345, '江苏省', '南京市', '鼓楼区', '320106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1346, '江苏省', '南京市', '下关区', '320107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1347, '江苏省', '南京市', '浦口区', '320111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1348, '江苏省', '南京市', '大厂区', '320112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1349, '江苏省', '南京市', '栖霞区', '320113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1350, '江苏省', '南京市', '雨花台区', '320114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1351, '江苏省', '南京市', '江宁区', '320115'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1352, '江苏省', '南京市', '六合区', '320116'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1353, '江苏省', '南京市', '市区', '320120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1354, '江苏省', '南京市', '江宁县', '320121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1355, '江苏省', '南京市', '江浦县', '320122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1356, '江苏省', '南京市', '六合县', '320123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1357, '江苏省', '南京市', '溧水县', '320124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1358, '江苏省', '南京市', '高淳县', '320125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1359, '江苏省', '南京市', '江都县', '320126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1360, '江苏省', '无锡市', '市辖区', '320201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1361, '江苏省', '无锡市', '崇安区', '320202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1362, '江苏省', '无锡市', '南长区', '320203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1363, '江苏省', '无锡市', '北塘区', '320204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1364, '江苏省', '无锡市', '锡山区', '320205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1365, '江苏省', '无锡市', '惠山区', '320206'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1366, '江苏省', '无锡市', '郊区', '320211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1367, '江苏省', '无锡市', '马山区', '320212'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1368, '江苏省', '无锡市', '江阴县', '320219'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1369, '江苏省', '无锡市', '江阴县', '320221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1370, '江苏省', '无锡市', '无锡县', '320222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1371, '江苏省', '无锡市', '宜兴县', '320223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1372, '江苏省', '无锡市', '江阴市', '320281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1373, '江苏省', '无锡市', '宜兴市', '320282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1374, '江苏省', '无锡市', '锡山市', '320283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1375, '江苏省', '徐州市', '市辖区', '320301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1376, '江苏省', '徐州市', '鼓楼区', '320302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1377, '江苏省', '徐州市', '云龙区', '320303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1378, '江苏省', '徐州市', '九里区', '320304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1379, '江苏省', '徐州市', '贾汪区', '320305'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1380, '江苏省', '徐州市', '泉山区', '320311'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1381, '江苏省', '徐州市', '丰县', '320321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1382, '江苏省', '徐州市', '沛县', '320322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1383, '江苏省', '徐州市', '铜山县', '320323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1384, '江苏省', '徐州市', '睢宁县', '320324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1385, '江苏省', '徐州市', '邳县', '320325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1386, '江苏省', '徐州市', '新沂县', '320326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1387, '江苏省', '徐州市', '新沂市', '320381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1388, '江苏省', '徐州市', '邳州市', '320382'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1389, '江苏省', '常州市', '市辖区', '320401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1390, '江苏省', '常州市', '天宁区', '320402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1391, '江苏省', '常州市', '钟楼区', '320404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1392, '江苏省', '常州市', '戚墅堰区', '320405'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1393, '江苏省', '常州市', '郊区', '320411'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1394, '江苏省', '常州市', '武进区', '320412'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1395, '江苏省', '常州市', '武进市', '320419'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1396, '江苏省', '常州市', '武进县', '320421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1397, '江苏省', '常州市', '金坛县', '320422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1398, '江苏省', '常州市', '溧阳县', '320423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1399, '江苏省', '常州市', '溧阳市', '320481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1400, '江苏省', '常州市', '金坛市', '320482'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1401, '江苏省', '常州市', '武进市', '320483'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1402, '江苏省', '苏州市', '市辖区', '320501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1403, '江苏省', '苏州市', '沧浪区', '320502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1404, '江苏省', '苏州市', '平江区', '320503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1405, '江苏省', '苏州市', '金阊区', '320504'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1406, '江苏省', '苏州市', '虎丘区', '320505'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1407, '江苏省', '苏州市', '吴中区', '320506'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1408, '江苏省', '苏州市', '相城区', '320507'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1409, '江苏省', '苏州市', '郊区', '320511'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1410, '江苏省', '苏州市', '常熟市', '320520'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1411, '江苏省', '苏州市', '沙洲县', '320521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1412, '江苏省', '苏州市', '太仓县', '320522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1413, '江苏省', '苏州市', '昆山县', '320523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1414, '江苏省', '苏州市', '吴县', '320524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1415, '江苏省', '苏州市', '吴江县', '320525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1416, '江苏省', '苏州市', '常熟市', '320581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1417, '江苏省', '苏州市', '张家港市', '320582'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1418, '江苏省', '苏州市', '昆山市', '320583'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1419, '江苏省', '苏州市', '吴江市', '320584'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1420, '江苏省', '苏州市', '太仓市', '320585'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1421, '江苏省', '苏州市', '吴县市', '320586'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1422, '江苏省', '南通市', '市辖区', '320601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1423, '江苏省', '南通市', '崇川区', '320602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1424, '江苏省', '南通市', '港闸区', '320611'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1425, '江苏省', '南通市', '海安县', '320621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1426, '江苏省', '南通市', '如皋县', '320622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1427, '江苏省', '南通市', '如东县', '320623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1428, '江苏省', '南通市', '南通县', '320624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1429, '江苏省', '南通市', '海门县', '320625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1430, '江苏省', '南通市', '启东县', '320626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1431, '江苏省', '南通市', '启东市', '320681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1432, '江苏省', '南通市', '如皋市', '320682'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1433, '江苏省', '南通市', '通州市', '320683'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1434, '江苏省', '南通市', '海门市', '320684'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1435, '江苏省', '连云港市', '市辖区', '320701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1436, '江苏省', '连云港市', '连云区', '320703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1437, '江苏省', '连云港市', '云台区', '320704'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1438, '江苏省', '连云港市', '新浦区', '320705'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1439, '江苏省', '连云港市', '海州区', '320706'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1440, '江苏省', '连云港市', '赣榆县', '320721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1441, '江苏省', '连云港市', '东海县', '320722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1442, '江苏省', '连云港市', '灌云县', '320723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1443, '江苏省', '连云港市', '灌南县', '320724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1444, '江苏省', '淮安市', '市辖区', '320801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1445, '江苏省', '淮安市', '清河区', '320802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1446, '江苏省', '淮安市', '楚州区', '320803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1447, '江苏省', '淮安市', '淮阴区', '320804'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1448, '江苏省', '淮安市', '清浦区', '320811'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1449, '江苏省', '淮安市', '宿迁市', '320819'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1450, '江苏省', '淮安市', '淮阴县', '320821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1451, '江苏省', '淮安市', '灌南县', '320822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1452, '江苏省', '淮安市', '沭阳县', '320823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1453, '江苏省', '淮安市', '宿迁县', '320824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1454, '江苏省', '淮安市', '泗阳县', '320825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1455, '江苏省', '淮安市', '涟水县', '320826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1456, '江苏省', '淮安市', '泗洪县', '320827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1457, '江苏省', '淮安市', '淮安县', '320828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1458, '江苏省', '淮安市', '洪泽县', '320829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1459, '江苏省', '淮安市', '盱眙县', '320830'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1460, '江苏省', '淮安市', '金湖县', '320831'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1461, '江苏省', '淮安市', '宿迁市', '320881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1462, '江苏省', '淮安市', '淮安市', '320882'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1463, '江苏省', '盐城市', '市辖区', '320901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1464, '江苏省', '盐城市', '城区', '320902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1465, '江苏省', '盐城市', '盐都区', '320903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1466, '江苏省', '盐城市', '郊区', '320911'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1467, '江苏省', '盐城市', '东台市', '320919'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1468, '江苏省', '盐城市', '响水县', '320921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1469, '江苏省', '盐城市', '滨海县', '320922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1470, '江苏省', '盐城市', '阜宁县', '320923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1471, '江苏省', '盐城市', '射阳县', '320924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1472, '江苏省', '盐城市', '建湖县', '320925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1473, '江苏省', '盐城市', '大丰县', '320926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1474, '江苏省', '盐城市', '东台县', '320927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1475, '江苏省', '盐城市', '盐都县', '320928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1476, '江苏省', '盐城市', '东台市', '320981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1477, '江苏省', '盐城市', '大丰市', '320982'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1478, '江苏省', '扬州市', '市辖区', '321001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1479, '江苏省', '扬州市', '广陵区', '321002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1480, '江苏省', '扬州市', '邗江区', '321003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1481, '江苏省', '扬州市', '郊区', '321011'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1482, '江苏省', '扬州市', '仪征市', '321019'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1483, '江苏省', '扬州市', '泰州市', '321020'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1484, '江苏省', '扬州市', '兴化县', '321021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1485, '江苏省', '扬州市', '高邮县', '321022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1486, '江苏省', '扬州市', '宝应县', '321023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1487, '江苏省', '扬州市', '靖江县', '321024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1488, '江苏省', '扬州市', '泰兴县', '321025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1489, '江苏省', '扬州市', '江都县', '321026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1490, '江苏省', '扬州市', '邗江县', '321027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1491, '江苏省', '扬州市', '泰县', '321028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1492, '江苏省', '扬州市', '仪征县', '321029'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1493, '江苏省', '扬州市', '仪征市', '321081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1494, '江苏省', '扬州市', '泰州市', '321082'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1495, '江苏省', '扬州市', '兴化市', '321083'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1377, '江苏省', '徐州市', '云龙区', '320303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1378, '江苏省', '徐州市', '九里区', '320304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1379, '江苏省', '徐州市', '贾汪区', '320305'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1380, '江苏省', '徐州市', '泉山区', '320311'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1381, '江苏省', '徐州市', '丰县', '320321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1382, '江苏省', '徐州市', '沛县', '320322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1383, '江苏省', '徐州市', '铜山县', '320323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1384, '江苏省', '徐州市', '睢宁县', '320324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1385, '江苏省', '徐州市', '邳县', '320325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1386, '江苏省', '徐州市', '新沂县', '320326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1387, '江苏省', '徐州市', '新沂市', '320381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1388, '江苏省', '徐州市', '邳州市', '320382'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1389, '江苏省', '常州市', '市辖区', '320401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1390, '江苏省', '常州市', '天宁区', '320402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1391, '江苏省', '常州市', '钟楼区', '320404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1392, '江苏省', '常州市', '戚墅堰区', '320405'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1393, '江苏省', '常州市', '郊区', '320411'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1394, '江苏省', '常州市', '武进区', '320412'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1395, '江苏省', '常州市', '武进市', '320419'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1396, '江苏省', '常州市', '武进县', '320421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1397, '江苏省', '常州市', '金坛县', '320422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1398, '江苏省', '常州市', '溧阳县', '320423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1399, '江苏省', '常州市', '溧阳市', '320481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1400, '江苏省', '常州市', '金坛市', '320482'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1401, '江苏省', '常州市', '武进市', '320483'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1402, '江苏省', '苏州市', '市辖区', '320501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1403, '江苏省', '苏州市', '沧浪区', '320502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1404, '江苏省', '苏州市', '平江区', '320503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1405, '江苏省', '苏州市', '金阊区', '320504'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1406, '江苏省', '苏州市', '虎丘区', '320505'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1407, '江苏省', '苏州市', '吴中区', '320506'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1408, '江苏省', '苏州市', '相城区', '320507'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1409, '江苏省', '苏州市', '郊区', '320511'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1410, '江苏省', '苏州市', '常熟市', '320520'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1411, '江苏省', '苏州市', '沙洲县', '320521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1412, '江苏省', '苏州市', '太仓县', '320522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1413, '江苏省', '苏州市', '昆山县', '320523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1414, '江苏省', '苏州市', '吴县', '320524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1415, '江苏省', '苏州市', '吴江县', '320525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1416, '江苏省', '苏州市', '常熟市', '320581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1417, '江苏省', '苏州市', '张家港市', '320582'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1418, '江苏省', '苏州市', '昆山市', '320583'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1419, '江苏省', '苏州市', '吴江市', '320584'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1420, '江苏省', '苏州市', '太仓市', '320585'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1421, '江苏省', '苏州市', '吴县市', '320586'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1422, '江苏省', '南通市', '市辖区', '320601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1423, '江苏省', '南通市', '崇川区', '320602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1424, '江苏省', '南通市', '港闸区', '320611'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1425, '江苏省', '南通市', '海安县', '320621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1426, '江苏省', '南通市', '如皋县', '320622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1427, '江苏省', '南通市', '如东县', '320623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1428, '江苏省', '南通市', '南通县', '320624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1429, '江苏省', '南通市', '海门县', '320625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1430, '江苏省', '南通市', '启东县', '320626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1431, '江苏省', '南通市', '启东市', '320681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1432, '江苏省', '南通市', '如皋市', '320682'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1433, '江苏省', '南通市', '通州市', '320683'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1434, '江苏省', '南通市', '海门市', '320684'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1435, '江苏省', '连云港市', '市辖区', '320701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1436, '江苏省', '连云港市', '连云区', '320703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1437, '江苏省', '连云港市', '云台区', '320704'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1438, '江苏省', '连云港市', '新浦区', '320705'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1439, '江苏省', '连云港市', '海州区', '320706'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1440, '江苏省', '连云港市', '赣榆县', '320721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1441, '江苏省', '连云港市', '东海县', '320722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1442, '江苏省', '连云港市', '灌云县', '320723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1443, '江苏省', '连云港市', '灌南县', '320724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1444, '江苏省', '淮安市', '市辖区', '320801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1445, '江苏省', '淮安市', '清河区', '320802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1446, '江苏省', '淮安市', '楚州区', '320803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1447, '江苏省', '淮安市', '淮阴区', '320804'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1448, '江苏省', '淮安市', '清浦区', '320811'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1449, '江苏省', '淮安市', '宿迁市', '320819'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1450, '江苏省', '淮安市', '淮阴县', '320821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1451, '江苏省', '淮安市', '灌南县', '320822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1452, '江苏省', '淮安市', '沭阳县', '320823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1453, '江苏省', '淮安市', '宿迁县', '320824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1454, '江苏省', '淮安市', '泗阳县', '320825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1455, '江苏省', '淮安市', '涟水县', '320826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1456, '江苏省', '淮安市', '泗洪县', '320827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1457, '江苏省', '淮安市', '淮安县', '320828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1458, '江苏省', '淮安市', '洪泽县', '320829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1459, '江苏省', '淮安市', '盱眙县', '320830'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1460, '江苏省', '淮安市', '金湖县', '320831'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1461, '江苏省', '淮安市', '宿迁市', '320881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1462, '江苏省', '淮安市', '淮安市', '320882'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1463, '江苏省', '盐城市', '市辖区', '320901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1464, '江苏省', '盐城市', '城区', '320902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1465, '江苏省', '盐城市', '盐都区', '320903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1466, '江苏省', '盐城市', '郊区', '320911'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1467, '江苏省', '盐城市', '东台市', '320919'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1468, '江苏省', '盐城市', '响水县', '320921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1469, '江苏省', '盐城市', '滨海县', '320922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1470, '江苏省', '盐城市', '阜宁县', '320923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1471, '江苏省', '盐城市', '射阳县', '320924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1472, '江苏省', '盐城市', '建湖县', '320925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1473, '江苏省', '盐城市', '大丰县', '320926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1474, '江苏省', '盐城市', '东台县', '320927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1475, '江苏省', '盐城市', '盐都县', '320928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1476, '江苏省', '盐城市', '东台市', '320981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1477, '江苏省', '盐城市', '大丰市', '320982'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1478, '江苏省', '扬州市', '市辖区', '321001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1479, '江苏省', '扬州市', '广陵区', '321002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1480, '江苏省', '扬州市', '邗江区', '321003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1481, '江苏省', '扬州市', '郊区', '321011'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1482, '江苏省', '扬州市', '仪征市', '321019'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1483, '江苏省', '扬州市', '泰州市', '321020'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1484, '江苏省', '扬州市', '兴化县', '321021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1485, '江苏省', '扬州市', '高邮县', '321022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1486, '江苏省', '扬州市', '宝应县', '321023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1487, '江苏省', '扬州市', '靖江县', '321024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1488, '江苏省', '扬州市', '泰兴县', '321025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1489, '江苏省', '扬州市', '江都县', '321026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1490, '江苏省', '扬州市', '邗江县', '321027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1491, '江苏省', '扬州市', '泰县', '321028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1492, '江苏省', '扬州市', '仪征县', '321029'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1493, '江苏省', '扬州市', '仪征市', '321081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1494, '江苏省', '扬州市', '泰州市', '321082'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1495, '江苏省', '扬州市', '兴化市', '321083'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2991, '湖北省', '咸宁市', '市辖区', '421201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2992, '湖北省', '咸宁市', '咸安区', '421202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2993, '湖北省', '咸宁市', '嘉鱼县', '421221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2994, '湖北省', '咸宁市', '通城县', '421222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2995, '湖北省', '咸宁市', '崇阳县', '421223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2996, '湖北省', '咸宁市', '通山县', '421224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2997, '湖北省', '咸宁市', '赤壁市', '421281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2998, '湖北省', '随州市', '市辖区', '421301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2999, '湖北省', '随州市', '曾都区', '421302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3000, '湖北省', '随州市', '广水市', '421381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3001, '湖北省', '黄冈地区', '鄂州市', '422101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3002, '湖北省', '黄冈地区', '武穴市', '422102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3003, '湖北省', '黄冈地区', '黄州市', '422103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3004, '湖北省', '黄冈地区', '黄冈县', '422121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3005, '湖北省', '黄冈地区', '新洲县', '422122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3006, '湖北省', '黄冈地区', '红安县', '422123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3007, '湖北省', '黄冈地区', '麻城县', '422124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2991, '湖北省', '咸宁市', '市辖区', '421201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2992, '湖北省', '咸宁市', '咸安区', '421202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2993, '湖北省', '咸宁市', '嘉鱼县', '421221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2994, '湖北省', '咸宁市', '通城县', '421222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2995, '湖北省', '咸宁市', '崇阳县', '421223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2996, '湖北省', '咸宁市', '通山县', '421224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2997, '湖北省', '咸宁市', '赤壁市', '421281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2998, '湖北省', '随州市', '市辖区', '421301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2999, '湖北省', '随州市', '曾都区', '421302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3000, '湖北省', '随州市', '广水市', '421381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3001, '湖北省', '黄冈地区', '鄂州市', '422101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3002, '湖北省', '黄冈地区', '武穴市', '422102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3003, '湖北省', '黄冈地区', '黄州市', '422103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3004, '湖北省', '黄冈地区', '黄冈县', '422121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3005, '湖北省', '黄冈地区', '新洲县', '422122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3006, '湖北省', '黄冈地区', '红安县', '422123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3007, '湖北省', '黄冈地区', '麻城县', '422124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3008, '湖北省', '黄冈地区', '罗田县', '422125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3009, '湖北省', '黄冈地区', '英山县', '422126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3010, '湖北省', '黄冈地区', '浠水县', '422127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3011, '湖北省', '黄冈地区', '蕲春县', '422128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3012, '湖北省', '黄冈地区', '广济县', '422129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3013, '湖北省', '黄冈地区', '黄梅县', '422130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3014, '湖北省', '黄冈地区', '鄂城县', '422131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3015, '湖北省', '孝感地区', '孝感市', '422201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3016, '湖北省', '孝感地区', '应城市', '422202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3017, '湖北省', '孝感地区', '安陆市', '422203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3018, '湖北省', '孝感地区', '广水市', '422204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3019, '湖北省', '孝感地区', '孝感县', '422221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3020, '湖北省', '孝感地区', '黄陂县', '422222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3021, '湖北省', '孝感地区', '大悟县', '422223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3022, '湖北省', '孝感地区', '应山县', '422224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3023, '湖北省', '孝感地区', '安陆县', '422225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3024, '湖北省', '孝感地区', '云梦县', '422226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3025, '湖北省', '孝感地区', '应城县', '422227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3026, '湖北省', '孝感地区', '汉川县', '422228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3027, '湖北省', '省直辖行政单位', '神农架林区', '422921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3028, '湖北省', '省直辖行政单位', '随州市', '429001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3029, '湖北省', '省直辖行政单位', '枣阳市', '429003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3030, '湖北省', '省直辖行政单位', '仙桃市', '429004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3031, '湖北省', '省直辖行政单位', '潜江市', '429005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3032, '湖北省', '省直辖行政单位', '天门市', '429006'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3033, '湖北省', '省直辖行政单位', '神农架林区', '429021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3034, '湖北省', '武汉市', '市辖区', '420101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3035, '湖北省', '武汉市', '江岸区', '420102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3036, '湖北省', '武汉市', '江汉区', '420103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3037, '湖北省', '武汉市', '乔口区', '420104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3038, '湖北省', '武汉市', '汉阳区', '420105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3039, '湖北省', '武汉市', '武昌区', '420106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3040, '湖北省', '武汉市', '青山区', '420107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3041, '湖北省', '武汉市', '东湖管理分局', '420109'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3042, '湖北省', '武汉市', '洪山区', '420111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3043, '湖北省', '武汉市', '东西湖区', '420112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3044, '湖北省', '武汉市', '汉南区', '420113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3045, '湖北省', '武汉市', '蔡甸区', '420114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3046, '湖北省', '武汉市', '江夏区', '420115'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3047, '湖北省', '武汉市', '黄陂区', '420116'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3048, '湖北省', '武汉市', '新洲区', '420117'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3049, '湖北省', '武汉市', '蔡甸区', '420121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3050, '湖北省', '武汉市', '江夏区', '420122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3051, '湖北省', '武汉市', '黄陂区', '420123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3052, '湖北省', '武汉市', '新洲县', '420124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3053, '湖北省', '黄石市', '市辖区', '420201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3054, '湖北省', '黄石市', '黄石港区', '420202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3055, '湖北省', '黄石市', '石灰窑区', '420203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3056, '湖北省', '黄石市', '下陆区', '420204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3057, '湖北省', '黄石市', '铁山区', '420205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3058, '湖北省', '黄石市', '市区', '420220'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3059, '湖北省', '黄石市', '大冶县', '420221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3060, '湖北省', '黄石市', '阳新县', '420222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3061, '湖北省', '黄石市', '大冶市', '420281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3062, '湖北省', '十堰市', '市辖区', '420301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3063, '湖北省', '十堰市', '茅箭区', '420302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3064, '湖北省', '十堰市', '张湾区', '420303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3065, '湖北省', '十堰市', '郧县', '420321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3066, '湖北省', '十堰市', '郧西县', '420322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3067, '湖北省', '十堰市', '竹山县', '420323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3068, '湖北省', '十堰市', '竹溪县', '420324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3069, '湖北省', '十堰市', '房县', '420325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3070, '湖北省', '十堰市', '丹江口市', '420381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3071, '湖北省', '咸宁地区', '咸宁市', '422301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3072, '湖北省', '咸宁地区', '赤壁市', '422302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3073, '湖北省', '咸宁地区', '咸宁县', '422321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3074, '湖北省', '咸宁地区', '嘉鱼县', '422322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3075, '湖北省', '咸宁地区', '蒲圻县', '422323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3076, '湖北省', '咸宁地区', '通城县', '422324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3077, '湖北省', '咸宁地区', '崇阳县', '422325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3078, '湖北省', '咸宁地区', '通山县', '422326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3079, '湖北省', '咸宁地区', '阳新县', '422327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3080, '湖北省', '荆州地区', '仙桃市', '422401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3081, '湖北省', '荆州地区', '石首市', '422402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3082, '湖北省', '荆州地区', '洪湖市', '422403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3083, '湖北省', '荆州地区', '天门市', '422404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3084, '湖北省', '荆州地区', '潜江市', '422405'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3085, '湖北省', '荆州地区', '钟祥市', '422406'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3086, '湖北省', '荆州地区', '江陵县', '422421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3087, '湖北省', '荆州地区', '松滋县', '422422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3088, '湖北省', '荆州地区', '公安县', '422423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3089, '湖北省', '荆州地区', '石首县', '422424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3090, '湖北省', '荆州地区', '监利县', '422425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3091, '湖北省', '荆州地区', '洪湖县', '422426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3092, '湖北省', '荆州地区', '沔阳县', '422427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3093, '湖北省', '荆州地区', '天门县', '422428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3094, '湖北省', '荆州地区', '潜江县', '422429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3095, '湖北省', '荆州地区', '荆门县', '422430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3096, '湖北省', '荆州地区', '钟祥县', '422431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3097, '湖北省', '荆州地区', '京山县', '422432'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3098, '湖北省', '随州地区', '随州市', '422501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3099, '湖北省', '随州地区', '老河口市', '422502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3100, '湖北省', '随州地区', '襄阳县', '422521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3101, '湖北省', '随州地区', '枣阳县', '422522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3102, '湖北省', '随州地区', '宜城县', '422524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3103, '湖北省', '随州地区', '南漳县', '422525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3104, '湖北省', '随州地区', '谷城县', '422527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3105, '湖北省', '随州地区', '保康县', '422528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3106, '湖北省', '郧阳地区', '丹江口市', '422601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3107, '湖北省', '郧阳地区', '郧县', '422622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3108, '湖北省', '郧阳地区', '郧西县', '422623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3109, '湖北省', '郧阳地区', '竹山县', '422624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3110, '湖北省', '郧阳地区', '竹溪县', '422625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3111, '湖北省', '郧阳地区', '房县', '422626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3112, '湖北省', '郧阳地区', '神农架林区', '422627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3113, '湖北省', '宜昌地区', '枝城市', '422701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3114, '湖北省', '宜昌地区', '当阳市', '422702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3115, '湖北省', '宜昌地区', '宜昌县', '422721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3116, '湖北省', '宜昌地区', '宜都县', '422722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3117, '湖北省', '宜昌地区', '枝江县', '422723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3118, '湖北省', '宜昌地区', '当阳县', '422724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3119, '湖北省', '宜昌地区', '远安县', '422725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3120, '湖北省', '宜昌地区', '兴山县', '422726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3121, '湖北省', '宜昌地区', '秭归县', '422727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3122, '湖北省', '宜昌地区', '长阳土家族自治县', '422728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3123, '湖北省', '宜昌地区', '五峰土家族自治县', '422729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3124, '湖北省', '恩施土家族苗族自治州', '恩施市', '422801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3125, '湖北省', '恩施土家族苗族自治州', '利川市', '422802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3126, '湖北省', '恩施土家族苗族自治州', '建始县', '422822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3127, '湖北省', '恩施土家族苗族自治州', '巴东县', '422823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3128, '湖北省', '恩施土家族苗族自治州', '宣恩县', '422825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3129, '湖北省', '恩施土家族苗族自治州', '咸丰县', '422826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3130, '湖北省', '恩施土家族苗族自治州', '来凤县', '422827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3131, '湖北省', '恩施土家族苗族自治州', '鹤峰县', '422828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3132, '湖北省', NULL, '沙市', '420400'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3133, '湖北省', NULL, '沙洋监狱管理局', '423022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3134, '湖南省', '长沙市', '市辖区', '430101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3135, '湖南省', '长沙市', '芙蓉区', '430102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3136, '湖南省', '长沙市', '天心区', '430103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3137, '湖南省', '长沙市', '岳麓区', '430104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3138, '湖南省', '长沙市', '开福区', '430105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3139, '湖南省', '长沙市', '雨花区', '430111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3140, '湖南省', '长沙市', '市区', '430120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3141, '湖南省', '长沙市', '长沙县', '430121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3142, '湖南省', '长沙市', '望城县', '430122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3143, '湖南省', '长沙市', '浏阳县', '430123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3144, '湖南省', '长沙市', '宁乡县', '430124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3145, '湖南省', '长沙市', '浏阳市', '430181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3146, '湖南省', '株洲市', '市辖区', '430201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3147, '湖南省', '株洲市', '荷塘区', '430202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3148, '湖南省', '株洲市', '芦淞区', '430203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3149, '湖南省', '株洲市', '石峰区', '430204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3150, '湖南省', '株洲市', '天元区', '430211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3151, '湖南省', '株洲市', '醴陵市', '430219'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3152, '湖南省', '株洲市', '市区', '430220'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3153, '湖南省', '株洲市', '株洲县', '430221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3154, '湖南省', '株洲市', '醴陵县', '430222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3155, '湖南省', '株洲市', '攸县', '430223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3156, '湖南省', '株洲市', '茶陵县', '430224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3157, '湖南省', '株洲市', '炎陵县', '430225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3158, '湖南省', '株洲市', '醴陵市', '430281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3159, '湖南省', '湘潭市', '市辖区', '430301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3160, '湖南省', '湘潭市', '雨湖区', '430302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3161, '湖南省', '湘潭市', '湘江区', '430303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3162, '湖南省', '湘潭市', '岳塘区', '430304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3163, '湖南省', '湘潭市', '板塘区', '430305'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3164, '湖南省', '湘潭市', '韶山区', '430306'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3165, '湖南省', '湘潭市', '郊区', '430311'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3166, '湖南省', '湘潭市', '韶山区', '430312'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3167, '湖南省', '湘潭市', '湘潭县', '430321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3168, '湖南省', '湘潭市', '湘乡县', '430322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3169, '湖南省', '湘潭市', '湘乡市', '430381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3170, '湖南省', '湘潭市', '韶山市', '430382'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3171, '湖南省', '衡阳市', '市辖区', '430401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3172, '湖南省', '衡阳市', '江东区', '430402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3173, '湖南省', '衡阳市', '城南区', '430403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3174, '湖南省', '衡阳市', '城北区', '430404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3175, '湖南省', '衡阳市', '珠晖区', '430405'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3176, '湖南省', '衡阳市', '雁峰区', '430406'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3177, '湖南省', '衡阳市', '石鼓区', '430407'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3178, '湖南省', '衡阳市', '蒸湘区', '430408'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3179, '湖南省', '衡阳市', '郊区', '430411'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3180, '湖南省', '衡阳市', '南岳区', '430412'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3181, '湖南省', '衡阳市', '耒阳市', '430419'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3182, '湖南省', '衡阳市', '衡阳县', '430421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3183, '湖南省', '衡阳市', '衡南县', '430422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3184, '湖南省', '衡阳市', '衡山县', '430423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3185, '湖南省', '衡阳市', '衡东县', '430424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3186, '湖南省', '衡阳市', '常宁县', '430425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3187, '湖南省', '衡阳市', '祁东县', '430426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3188, '湖南省', '衡阳市', '耒阳县', '430427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3189, '湖南省', '衡阳市', '耒阳市', '430481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3190, '湖南省', '衡阳市', '常宁市', '430482'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3191, '湖南省', '湘潭地区', '湘潭县', '432121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3192, '湖南省', '湘潭地区', '湘乡县', '432122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3193, '湖南省', '湘潭地区', '醴陵县', '432123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3194, '湖南省', '湘潭地区', '浏阳县', '432124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3195, '湖南省', '湘潭地区', '攸县', '432125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3196, '湖南省', '湘潭地区', '茶陵县', '432126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3197, '湖南省', '湘潭地区', '酃县', '432127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3198, '湖南省', '岳阳地区', '岳阳市', '432201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3199, '湖南省', '岳阳地区', '平江县', '432222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3200, '湖南省', '岳阳地区', '湘阴县', '432223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3201, '湖南省', '岳阳地区', '汨罗县', '432224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3202, '湖南省', '岳阳地区', '临湘市', '432225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3203, '湖南省', '岳阳地区', '华容县', '432226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3204, '湖南省', '益阳地区', '益阳市', '432301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3205, '湖南省', '益阳地区', '沅江市', '432302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3206, '湖南省', '益阳地区', '益阳县', '432321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3207, '湖南省', '益阳地区', '南县', '432322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3208, '湖南省', '益阳地区', '沅江县', '432323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3209, '湖南省', '益阳地区', '宁乡县', '432324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3210, '湖南省', '益阳地区', '桃江县', '432325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3211, '湖南省', '益阳地区', '安化县', '432326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3212, '湖南省', '常德地区', '常德市', '432401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3213, '湖南省', '常德地区', '津市市', '432402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3214, '湖南省', '常德地区', '常德县', '432421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3215, '湖南省', '常德地区', '安乡县', '432422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3216, '湖南省', '常德地区', '汉寿县', '432423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3217, '湖南省', '常德地区', '澧县', '432424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3218, '湖南省', '常德地区', '临澧县', '432425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3219, '湖南省', '常德地区', '桃源县', '432426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3220, '湖南省', '常德地区', '石门县', '432427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3221, '湖南省', '常德地区', '慈利县', '432428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3222, '湖南省', '娄底地区', '娄底市', '432501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3223, '湖南省', '娄底地区', '冷水江市', '432502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3224, '湖南省', '娄底地区', '涟源市', '432503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3225, '湖南省', '娄底地区', '涟源县', '432521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3226, '湖南省', '娄底地区', '双峰县', '432522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3227, '湖南省', '娄底地区', '邵东县', '432523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3228, '湖南省', '娄底地区', '新化县', '432524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3229, '湖南省', '娄底地区', '新邵县', '432525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3230, '湖南省', '邵阳地区', '邵阳县', '432621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3231, '湖南省', '邵阳地区', '隆回县', '432622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3232, '湖南省', '邵阳地区', '武冈县', '432623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3233, '湖南省', '邵阳地区', '洞口县', '432624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3234, '湖南省', '邵阳地区', '新宁县', '432625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3235, '湖南省', '邵阳地区', '绥宁县', '432626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3236, '湖南省', '邵阳地区', '城步苗族自治县', '432627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3237, '湖南省', '衡阳地区', '衡阳县', '432721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3238, '湖南省', '衡阳地区', '衡南县', '432722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3239, '湖南省', '衡阳地区', '衡山县', '432723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3240, '湖南省', '衡阳地区', '衡东县', '432724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3241, '湖南省', '衡阳地区', '常宁县', '432725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3242, '湖南省', '衡阳地区', '祁东县', '432726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3243, '湖南省', '衡阳地区', '祁阳县', '432727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3244, '湖南省', '郴州地区', '郴州市', '432801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3245, '湖南省', '郴州地区', '资兴市', '432802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3246, '湖南省', '郴州地区', '郴县', '432821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3247, '湖南省', '郴州地区', '桂阳县', '432822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3248, '湖南省', '郴州地区', '永兴县', '432823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3249, '湖南省', '郴州地区', '宜章县', '432824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3250, '湖南省', '郴州地区', '资兴县', '432825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3251, '湖南省', '郴州地区', '嘉禾县', '432826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3252, '湖南省', '郴州地区', '临武县', '432827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3253, '湖南省', '郴州地区', '汝城县', '432828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3254, '湖南省', '郴州地区', '桂东县', '432829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3255, '湖南省', '郴州地区', '耒阳县', '432830'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3256, '湖南省', '郴州地区', '安仁县', '432831'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3257, '湖南省', '零陵地区', '永州市', '432901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3258, '湖南省', '零陵地区', '冷水滩市', '432902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3259, '湖南省', '零陵地区', '零陵县', '432921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3260, '湖南省', '零陵地区', '东安县', '432922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3261, '湖南省', '零陵地区', '道县', '432923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3262, '湖南省', '零陵地区', '宁远县', '432924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3263, '湖南省', '零陵地区', '江永县', '432925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3264, '湖南省', '零陵地区', '江华瑶族自治县', '432926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3265, '湖南省', '零陵地区', '蓝山县', '432927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3266, '湖南省', '零陵地区', '新田县', '432928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3267, '湖南省', '零陵地区', '双牌县', '432929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3268, '湖南省', '零陵地区', '双牌县', '432930'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3269, '湖南省', '邵阳市', '市辖区', '430501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3270, '湖南省', '邵阳市', '双清区', '430502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3271, '湖南省', '邵阳市', '大祥区', '430503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3272, '湖南省', '邵阳市', '北塔区', '430511'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3273, '湖南省', '邵阳市', '邵东县', '430521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3274, '湖南省', '邵阳市', '新邵县', '430522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3275, '湖南省', '邵阳市', '邵阳县', '430523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3276, '湖南省', '邵阳市', '隆回县', '430524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3277, '湖南省', '邵阳市', '洞口县', '430525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3278, '湖南省', '邵阳市', '武冈县', '430526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3279, '湖南省', '邵阳市', '绥宁县', '430527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3280, '湖南省', '邵阳市', '新宁县', '430528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3281, '湖南省', '邵阳市', '城步苗族自治县', '430529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3282, '湖南省', '邵阳市', '武冈市', '430581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3283, '湖南省', '岳阳市', '市辖区', '430601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3284, '湖南省', '岳阳市', '岳阳楼区', '430602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3285, '湖南省', '岳阳市', '云溪区', '430603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3286, '湖南省', '岳阳市', '君山区', '430611'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3287, '湖南省', '岳阳市', '岳阳县', '430621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3288, '湖南省', '岳阳市', '临湘县', '430622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3289, '湖南省', '岳阳市', '华容县', '430623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3290, '湖南省', '岳阳市', '湘阴县', '430624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3291, '湖南省', '岳阳市', '汨罗县', '430625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3292, '湖南省', '岳阳市', '平江县', '430626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3293, '湖南省', '岳阳市', '汨罗市', '430681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3294, '湖南省', '岳阳市', '临湘市', '430682'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3295, '湖南省', '常德市', '市辖区', '430701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3296, '湖南省', '常德市', '武陵区', '430702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3297, '湖南省', '常德市', '鼎城区', '430703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3298, '湖南省', '常德市', '安乡县', '430721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3299, '湖南省', '常德市', '汉寿县', '430722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3300, '湖南省', '常德市', '澧县', '430723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3301, '湖南省', '常德市', '临澧县', '430724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3302, '湖南省', '常德市', '桃源县', '430725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3303, '湖南省', '常德市', '石门县', '430726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3304, '湖南省', '常德市', '津市市', '430781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3305, '湖南省', '张家界市', '市辖区', '430801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3306, '湖南省', '张家界市', '永定区', '430802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3307, '湖南省', '张家界市', '武陵源区', '430811'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3308, '湖南省', '张家界市', '慈利县', '430821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3309, '湖南省', '张家界市', '桑植县', '430822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3310, '湖南省', '益阳市', '市辖区', '430901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3311, '湖南省', '益阳市', '资阳区', '430902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3312, '湖南省', '益阳市', '赫山区', '430903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3313, '湖南省', '益阳市', '市区', '430911'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3314, '湖南省', '益阳市', '南县', '430921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3315, '湖南省', '益阳市', '桃江县', '430922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3316, '湖南省', '益阳市', '安化县', '430923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3317, '湖南省', '益阳市', '沅江市', '430981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3318, '湖南省', '郴州市', '市辖区', '431001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3319, '湖南省', '郴州市', '北湖区', '431002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3320, '湖南省', '郴州市', '苏仙区', '431003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3321, '湖南省', '郴州市', '桂阳县', '431021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3322, '湖南省', '郴州市', '宜章县', '431022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3323, '湖南省', '郴州市', '永兴县', '431023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3324, '湖南省', '郴州市', '嘉禾县', '431024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3325, '湖南省', '郴州市', '临武县', '431025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3326, '湖南省', '郴州市', '汝城县', '431026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3327, '湖南省', '郴州市', '桂东县', '431027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3328, '湖南省', '郴州市', '安仁县', '431028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3329, '湖南省', '郴州市', '资兴市', '431081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3330, '湖南省', '永州市', '市辖区', '431101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3331, '湖南省', '永州市', '零陵区', '431102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3332, '湖南省', '永州市', '冷水滩区', '431103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3333, '湖南省', '永州市', '祁阳县', '431121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3334, '湖南省', '永州市', '东安县', '431122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3335, '湖南省', '永州市', '双牌县', '431123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3336, '湖南省', '永州市', '道县', '431124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3337, '湖南省', '永州市', '江永县', '431125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3338, '湖南省', '永州市', '宁远县', '431126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3339, '湖南省', '永州市', '蓝山县', '431127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3340, '湖南省', '永州市', '新田县', '431128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3341, '湖南省', '永州市', '江华瑶族自治县', '431129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3342, '湖南省', '怀化市', '市辖区', '431201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3343, '湖南省', '怀化市', '鹤城区', '431202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3344, '湖南省', '怀化市', '中方县', '431221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3345, '湖南省', '怀化市', '沅陵县', '431222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3346, '湖南省', '怀化市', '辰溪县', '431223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3347, '湖南省', '怀化市', '溆浦县', '431224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3348, '湖南省', '怀化市', '会同县', '431225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3349, '湖南省', '怀化市', '麻阳苗族自治县', '431226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3350, '湖南省', '怀化市', '新晃侗族自治县', '431227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3351, '湖南省', '怀化市', '芷江侗族自治县', '431228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3352, '湖南省', '怀化市', '靖州苗族侗族自治县', '431229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3353, '湖南省', '怀化市', '通道侗族自治县', '431230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3354, '湖南省', '怀化市', '洪江市', '431281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3355, '湖南省', '娄底市', '市辖区', '431301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3356, '湖南省', '娄底市', '娄星区', '431302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3357, '湖南省', '娄底市', '双峰县', '431321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3358, '湖南省', '娄底市', '新化县', '431322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3359, '湖南省', '娄底市', '冷水江市', '431381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3360, '湖南省', '娄底市', '涟源市', '431382'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3361, '湖南省', '怀化地区', '怀化市', '433001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3362, '湖南省', '怀化地区', '洪江市', '433002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3363, '湖南省', '怀化地区', '黔阳县', '433021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3364, '湖南省', '怀化地区', '沅陵县', '433022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3365, '湖南省', '怀化地区', '辰溪县', '433023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3366, '湖南省', '怀化地区', '溆浦县', '433024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3367, '湖南省', '怀化地区', '麻阳县', '433025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3368, '湖南省', '怀化地区', '新晃侗族自治县', '433026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3369, '湖南省', '怀化地区', '芷江县', '433027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3370, '湖南省', '怀化地区', '怀化县', '433028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3371, '湖南省', '怀化地区', '会同县', '433029'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3372, '湖南省', '怀化地区', '靖县', '433030'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3373, '湖南省', '怀化地区', '通道侗族自治县', '433031'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3374, '湖南省', '湘西土家族苗族自治州', '吉首市', '433101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3375, '湖南省', '湘西土家族苗族自治州', '吉首县', '433121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3376, '湖南省', '湘西土家族苗族自治州', '泸溪县', '433122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3377, '湖南省', '湘西土家族苗族自治州', '凤凰县', '433123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3378, '湖南省', '湘西土家族苗族自治州', '花垣县', '433124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3379, '湖南省', '湘西土家族苗族自治州', '保靖县', '433125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3380, '湖南省', '湘西土家族苗族自治州', '古丈县', '433126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3381, '湖南省', '湘西土家族苗族自治州', '永顺县', '433127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3382, '湖南省', '湘西土家族苗族自治州', '大庸县', '433128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3383, '湖南省', '湘西土家族苗族自治州', '桑植县', '433129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3384, '湖南省', '湘西土家族苗族自治州', '龙山县', '433130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3385, '湖南省', NULL, '醴陵市', '439001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3386, '湖南省', NULL, '湘乡市', '439002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3387, '湖南省', NULL, '耒阳市', '439003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3388, '湖南省', NULL, '汨罗市', '439004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3389, '湖南省', NULL, '津市市', '439005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3390, '广东省', '广州市', '市辖区', '440101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3391, '广东省', '广州市', '东山区', '440102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3392, '广东省', '广州市', '荔湾区', '440103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3393, '广东省', '广州市', '越秀区', '440104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3394, '广东省', '广州市', '海珠区', '440105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3395, '广东省', '广州市', '天河区', '440106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3396, '广东省', '广州市', '芳村区', '440107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3397, '广东省', '广州市', '白云区', '440111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3398, '广东省', '广州市', '黄埔区', '440112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3399, '广东省', '广州市', '番禺区', '440113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3400, '广东省', '广州市', '花都区', '440114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3401, '广东省', '广州市', '南沙区', '440115'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3402, '广东省', '广州市', '萝岗区', '440116'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3403, '广东省', '广州市', '市区', '440120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3404, '广东省', '广州市', '花县', '440121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3405, '广东省', '广州市', '从化县', '440122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3406, '广东省', '广州市', '新丰县', '440123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3407, '广东省', '广州市', '龙门县', '440124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3408, '广东省', '广州市', '增城县', '440125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3409, '广东省', '广州市', '番禺县', '440126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3410, '广东省', '广州市', '清远县', '440127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3411, '广东省', '广州市', '佛冈县', '440128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3412, '广东省', '广州市', '番禺市', '440181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3413, '广东省', '广州市', '花都市', '440182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3414, '广东省', '广州市', '增城市', '440183'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3415, '广东省', '广州市', '从化市', '440184'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3416, '广东省', '韶关市', '市辖区', '440201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3417, '广东省', '韶关市', '北江区', '440202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3418, '广东省', '韶关市', '武江区', '440203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3419, '广东省', '韶关市', '浈江区', '440204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3420, '广东省', '韶关市', '曲江区', '440205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3421, '广东省', '韶关市', '曲江县', '440221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3422, '广东省', '韶关市', '始兴县', '440222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3423, '广东省', '韶关市', '南雄县', '440223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3424, '广东省', '韶关市', '仁化县', '440224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3425, '广东省', '韶关市', '乐昌县', '440225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3426, '广东省', '韶关市', '连县', '440226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3427, '广东省', '韶关市', '阳山县', '440227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3428, '广东省', '韶关市', '英德县', '440228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3429, '广东省', '韶关市', '翁源县', '440229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3430, '广东省', '韶关市', '连山壮族瑶族自治县', '440230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3431, '广东省', '韶关市', '连南瑶族自治县', '440231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3432, '广东省', '韶关市', '乳源瑶族自治县', '440232'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3433, '广东省', '韶关市', '新丰县', '440233'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3434, '广东省', '韶关市', '乐昌市', '440281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3435, '广东省', '韶关市', '南雄市', '440282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3436, '广东省', '深圳市', '市辖区', '440301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3437, '广东省', '深圳市', '盐田区', '440302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3438, '广东省', '深圳市', '罗湖区', '440303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3439, '广东省', '深圳市', '福田区', '440304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3440, '广东省', '深圳市', '南山区', '440305'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3441, '广东省', '深圳市', '宝安区', '440306'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3442, '广东省', '深圳市', '龙岗区', '440307'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3443, '广东省', '深圳市', '盐田区', '440308'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3444, '广东省', '深圳市', '市区', '440320'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3445, '广东省', '深圳市', '宝安县', '440321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3446, '广东省', '珠海市', '市辖区', '440401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3447, '广东省', '珠海市', '香洲区', '440402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3448, '广东省', '珠海市', '斗门区', '440403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3449, '广东省', '珠海市', '金湾区', '440404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3450, '广东省', '珠海市', '斗门县', '440421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3451, '广东省', '汕头市', '市辖区', '440501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3452, '广东省', '汕头市', '同平区', '440502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3453, '广东省', '汕头市', '安平区', '440503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3454, '广东省', '汕头市', '公园区', '440504'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3455, '广东省', '汕头市', '金砂区', '440505'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3456, '广东省', '汕头市', '达濠区', '440506'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3457, '广东省', '汕头市', '龙湖区', '440507'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3458, '广东省', '汕头市', '金园区', '440508'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3459, '广东省', '汕头市', '升平区', '440509'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3460, '广东省', '汕头市', '河浦区', '440510'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3461, '广东省', '汕头市', '金平区', '440511'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3462, '广东省', '汕头市', '濠江区', '440512'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3463, '广东省', '汕头市', '潮阳区', '440513'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3464, '广东省', '汕头市', '潮南区', '440514'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3465, '广东省', '汕头市', '澄海区', '440515'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3466, '广东省', '汕头市', '潮州市', '440520'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3467, '广东省', '汕头市', '澄海县', '440521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3468, '广东省', '汕头市', '饶平县', '440522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3469, '广东省', '汕头市', '南澳县', '440523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3470, '广东省', '汕头市', '潮阳县', '440524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3471, '广东省', '汕头市', '揭阳县', '440525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3472, '广东省', '汕头市', '揭西县', '440526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3473, '广东省', '汕头市', '普宁县', '440527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3474, '广东省', '汕头市', '惠来县', '440528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3475, '广东省', '汕头市', '潮州市', '440581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3476, '广东省', '汕头市', '潮阳市', '440582'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3477, '广东省', '汕头市', '澄海市', '440583'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3478, '广东省', '佛山市', '市辖区', '440601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3479, '广东省', '佛山市', '城区', '440602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3480, '广东省', '佛山市', '石湾区', '440603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3481, '广东省', '佛山市', '禅城区', '440604'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3482, '广东省', '佛山市', '南海区', '440605'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3483, '广东省', '佛山市', '顺德区', '440606'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3484, '广东省', '佛山市', '三水区', '440607'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3485, '广东省', '佛山市', '高明区', '440608'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3486, '广东省', '佛山市', '中山市', '440620'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3487, '广东省', '佛山市', '三水县', '440621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3488, '广东省', '佛山市', '南海县', '440622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3489, '广东省', '佛山市', '顺德县', '440623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3490, '广东省', '佛山市', '高明县', '440624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3491, '广东省', '佛山市', '顺德市', '440681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3492, '广东省', '佛山市', '南海市', '440682'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3493, '广东省', '佛山市', '三水市', '440683'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3494, '广东省', '佛山市', '高明市', '440684'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3495, '广东省', '江门市', '市辖区', '440701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3496, '广东省', '江门市', '城区', '440702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3497, '广东省', '江门市', '蓬江区', '440703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3498, '广东省', '江门市', '江海区', '440704'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3499, '广东省', '江门市', '新会区', '440705'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3500, '广东省', '江门市', '郊区', '440711'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3501, '广东省', '江门市', '新会县', '440721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3502, '广东省', '江门市', '台山县', '440722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3503, '广东省', '江门市', '恩平县', '440723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3504, '广东省', '江门市', '开平县', '440724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3505, '广东省', '江门市', '鹤山县', '440725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3506, '广东省', '江门市', '阳江县', '440726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3507, '广东省', '江门市', '阳春县', '440727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3508, '广东省', '江门市', '台山市', '440781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3509, '广东省', '江门市', '新会市', '440782'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3510, '广东省', '江门市', '开平市', '440783'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3511, '广东省', '江门市', '鹤山市', '440784'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3512, '广东省', '江门市', '恩平市', '440785'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3513, '广东省', '清远市', '连州市', '441882'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3514, '广东省', '清远市', '市辖区', '441801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3515, '广东省', '清远市', '清城区', '441802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3516, '广东省', '清远市', '清郊区', '441811'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3517, '广东省', '清远市', '佛冈县', '441821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3518, '广东省', '清远市', '英德县', '441822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3519, '广东省', '清远市', '阳山县', '441823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3520, '广东省', '清远市', '连县', '441824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3521, '广东省', '清远市', '连山壮族瑶族自治县', '441825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3522, '广东省', '清远市', '连南瑶族自治县', '441826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3523, '广东省', '清远市', '清新县', '441827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3524, '广东省', '清远市', '英德市', '441881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3525, '广东省', '佛山市', '佛山市', '442701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3526, '广东省', '佛山市', '江门市', '442702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3527, '广东省', '佛山市', '三水县', '442721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3528, '广东省', '佛山市', '南海县', '442722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3529, '广东省', '佛山市', '顺德县', '442723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3530, '广东省', '佛山市', '中山县', '442724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3531, '广东省', '佛山市', '斗门县', '442725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3532, '广东省', '佛山市', '新会县', '442726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3533, '广东省', '佛山市', '台山县', '442727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3534, '广东省', '佛山市', '恩平县', '442728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3535, '广东省', '佛山市', '开平县', '442729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3536, '广东省', '佛山市', '鹤山县', '442731'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3537, '广东省', '佛山市', '高明县', '442732'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3538, '广东省', '湛江市', '湛江市', '442901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3539, '广东省', '湛江市', '茂名市', '442902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3540, '广东省', '湛江市', '阳江县', '442921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3541, '广东省', '湛江市', '阳春县', '442922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3542, '广东省', '湛江市', '信宜县', '442923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3543, '广东省', '湛江市', '高州县', '442924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3544, '广东省', '湛江市', '电白县', '442925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3545, '广东省', '湛江市', '吴川县', '442926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3546, '广东省', '湛江市', '化州县', '442927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3547, '广东省', '湛江市', '廉江县', '442928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3548, '广东省', '湛江市', '遂溪县', '442929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3549, '广东省', '湛江市', '海康县', '442930'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3550, '广东省', '湛江市', '徐闻县', '442931'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3551, '广东省', '潮州市', '市辖区', '445101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3552, '广东省', '潮州市', '湘桥区', '445102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3553, '广东省', '潮州市', '潮安县', '445121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3554, '广东省', '潮州市', '饶平县', '445122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3555, '广东省', '揭阳市', '市辖区', '445201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3556, '广东省', '揭阳市', '榕城区', '445202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3557, '广东省', '揭阳市', '揭东县', '445221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3558, '广东省', '揭阳市', '揭西县', '445222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3559, '广东省', '揭阳市', '惠来县', '445224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3560, '广东省', '揭阳市', '普宁市', '445281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3561, '广东省', '湛江市', '市辖区', '440801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3562, '广东省', '湛江市', '赤坎区', '440802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3563, '广东省', '湛江市', '霞山区', '440803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3564, '广东省', '湛江市', '坡头区', '440804'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3565, '广东省', '湛江市', '麻章区', '440811'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3566, '广东省', '湛江市', '吴川县', '440821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3567, '广东省', '湛江市', '廉江县', '440822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3568, '广东省', '湛江市', '遂溪县', '440823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3569, '广东省', '湛江市', '海康县', '440824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3570, '广东省', '湛江市', '徐闻县', '440825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3571, '广东省', '湛江市', '廉江市', '440881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3572, '广东省', '湛江市', '雷州市', '440882'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3573, '广东省', '湛江市', '吴川市', '440883'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3574, '广东省', '茂名市', '市辖区', '440901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3575, '广东省', '茂名市', '茂南区', '440902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3576, '广东省', '茂名市', '茂港区', '440903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3577, '广东省', '茂名市', '信宜县', '440921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3578, '广东省', '茂名市', '高州县', '440922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3579, '广东省', '茂名市', '电白县', '440923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3580, '广东省', '茂名市', '化州县', '440924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3581, '广东省', '茂名市', '高州市', '440981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3582, '广东省', '茂名市', '化州市', '440982'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3583, '广东省', '茂名市', '信宜市', '440983'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3584, '广东省', '肇庆市', '市辖区', '441201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3585, '广东省', '肇庆市', '端州区', '441202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3586, '广东省', '肇庆市', '鼎湖区', '441203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3587, '广东省', '肇庆市', '高要县', '441221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3588, '广东省', '肇庆市', '四会县', '441222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3589, '广东省', '肇庆市', '广宁县', '441223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3590, '广东省', '肇庆市', '怀集县', '441224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3591, '广东省', '肇庆市', '封开县', '441225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3592, '广东省', '肇庆市', '德庆县', '441226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3593, '广东省', '肇庆市', '云浮县', '441227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3594, '广东省', '肇庆市', '新兴县', '441228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3595, '广东省', '肇庆市', '郁南县', '441229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3596, '广东省', '肇庆市', '罗定县', '441230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3597, '广东省', '肇庆市', '云浮市', '441281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3598, '广东省', '肇庆市', '罗定市', '441282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3599, '广东省', '肇庆市', '高要市', '441283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3600, '广东省', '肇庆市', '四会市', '441284'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3601, '广东省', '惠州市', '市辖区', '441301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3602, '广东省', '惠州市', '惠城区', '441302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3603, '广东省', '惠州市', '惠阳区', '441303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3604, '广东省', '惠州市', '惠阳县', '441321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3605, '广东省', '惠州市', '博罗县', '441322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3606, '广东省', '惠州市', '惠东县', '441323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3607, '广东省', '惠州市', '龙门县', '441324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3608, '广东省', '惠州市', '惠阳市', '441381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3609, '广东省', '梅州市', '市辖区', '441401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3610, '广东省', '梅州市', '梅江区', '441402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3611, '广东省', '梅州市', '梅县', '441421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3612, '广东省', '梅州市', '大埔县', '441422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3613, '广东省', '梅州市', '丰顺县', '441423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3614, '广东省', '梅州市', '五华县', '441424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3615, '广东省', '梅州市', '兴宁县', '441425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3616, '广东省', '梅州市', '平远县', '441426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3617, '广东省', '梅州市', '蕉岭县', '441427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3618, '广东省', '梅州市', '兴宁市', '441481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3619, '广东省', '汕尾市', '市辖区', '441501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3620, '广东省', '汕尾市', '城区', '441502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3621, '广东省', '汕尾市', '海丰县', '441521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3622, '广东省', '汕尾市', '陆丰县', '441522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3623, '广东省', '汕尾市', '陆河县', '441523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3624, '广东省', '汕尾市', '陆丰市', '441581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3625, '广东省', '河源市', '市辖区', '441601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3626, '广东省', '河源市', '源城区', '441602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3627, '广东省', '河源市', '郊区', '441611'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3628, '广东省', '河源市', '紫金县', '441621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3629, '广东省', '河源市', '龙川县', '441622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3630, '广东省', '河源市', '连平县', '441623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3631, '广东省', '河源市', '和平县', '441624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3632, '广东省', '河源市', '东源县', '441625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3633, '广东省', '阳江市', '市辖区', '441701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3634, '广东省', '阳江市', '江城区', '441702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3635, '广东省', '阳江市', '阳东区', '441703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3636, '广东省', '阳江市', '阳西县', '441721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3637, '广东省', '阳江市', '阳春县', '441722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3638, '广东省', '阳江市', '阳东县', '441723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3639, '广东省', '阳江市', '阳春市', '441781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3640, '广东省', '云浮市', '市辖区', '445301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3641, '广东省', '云浮市', '云城区', '445302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3642, '广东省', '云浮市', '新兴县', '445321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3643, '广东省', '云浮市', '郁南县', '445322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3644, '广东省', '云浮市', '云安县', '445323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3645, '广东省', '云浮市', '罗定市', '445381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3646, '广东省', NULL, '东莞市', '441900'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3647, '广东省', NULL, '中山市', '442000'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3648, '广东省', NULL, '连平县', '442524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3649, '广东省', NULL, '河源县', '442525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3650, '广东省', NULL, '博罗县', '442526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3651, '广东省', NULL, '东莞县', '442527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3652, '广东省', NULL, '惠东县', '442528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3653, '广东省', NULL, '龙川县', '442529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3654, '广东省', NULL, '陆丰县', '442530'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3655, '广东省', NULL, '海丰县', '442531'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3656, '广东省', NULL, '始兴县', '442621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3657, '广东省', NULL, '南雄县', '442622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3658, '广东省', NULL, '仁化县', '442623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3659, '广东省', NULL, '乐昌县', '442624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3660, '广东省', NULL, '清远县', '442628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3661, '广东省', NULL, '翁源县', '442630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3662, '广东省', NULL, '连山壮族瑶族自治县', '442631'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3663, '广东省', NULL, '连南瑶族自治县', '442632'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3664, '广东省', NULL, '乳源瑶族自治县', '442633'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3665, '广东省', NULL, '高要县', '442821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3666, '广东省', NULL, '四会县', '442822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3667, '广东省', NULL, '广宁县', '442823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3668, '广东省', NULL, '怀集县', '442824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3669, '广东省', NULL, '封开县', '442825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3670, '广东省', NULL, '德庆县', '442826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3671, '广东省', NULL, '云浮县', '442827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3672, '广东省', NULL, '新兴县', '442828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3673, '广东省', NULL, '郁南县', '442829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3674, '广东省', NULL, '罗定县', '442830'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3675, '广东省', NULL, '惠州市', '442501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3676, '广东省', NULL, '东莞市', '442502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3677, '广东省', NULL, '惠阳县', '442521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3678, '广东省', NULL, '紫金县', '442522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3679, '广东省', NULL, '和平县', '442523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3680, '广西壮族自治区', '百色市', '市辖区', '451001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3681, '广西壮族自治区', '百色市', '右江区', '451002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3682, '广西壮族自治区', '百色市', '田阳县', '451021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3683, '广西壮族自治区', '百色市', '田东县', '451022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3684, '广西壮族自治区', '百色市', '平果县', '451023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3685, '广西壮族自治区', '百色市', '德保县', '451024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3686, '广西壮族自治区', '百色市', '靖西县', '451025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3687, '广西壮族自治区', '百色市', '那坡县', '451026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3688, '广西壮族自治区', '百色市', '凌云县', '451027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3689, '广西壮族自治区', '百色市', '乐业县', '451028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3690, '广西壮族自治区', '百色市', '田林县', '451029'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3691, '广西壮族自治区', '百色市', '西林县', '451030'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3692, '广西壮族自治区', '百色市', '隆林各族自治县', '451031'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3693, '广西壮族自治区', '贺州市', '市辖区', '451101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3694, '广西壮族自治区', '贺州市', '八步区', '451102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3695, '广西壮族自治区', '贺州市', '昭平县', '451121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3696, '广西壮族自治区', '贺州市', '钟山县', '451122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3697, '广西壮族自治区', '贺州市', '富川瑶族自治县', '451123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3698, '广西壮族自治区', '河池市', '市辖区', '451201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3699, '广西壮族自治区', '河池市', '金城江区', '451202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3700, '广西壮族自治区', '河池市', '南丹县', '451221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3701, '广西壮族自治区', '河池市', '天峨县', '451222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3702, '广西壮族自治区', '河池市', '凤山县', '451223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3703, '广西壮族自治区', '河池市', '东兰县', '451224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3704, '广西壮族自治区', '河池市', '罗城仫佬族自治县', '451225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3705, '广西壮族自治区', '河池市', '环江毛南族自治县', '451226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3706, '广西壮族自治区', '河池市', '巴马瑶族自治县', '451227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3707, '广西壮族自治区', '河池市', '都安瑶族自治县', '451228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3708, '广西壮族自治区', '河池市', '大化瑶族自治县', '451229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3709, '广西壮族自治区', '河池市', '宜州市', '451281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3710, '广西壮族自治区', '来宾市', '市辖区', '451301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3711, '广西壮族自治区', '来宾市', '兴宾区', '451302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3712, '广西壮族自治区', '来宾市', '忻城县', '451321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3713, '广西壮族自治区', '来宾市', '象州县', '451322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3714, '广西壮族自治区', '来宾市', '武宣县', '451323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3715, '广西壮族自治区', '来宾市', '金秀瑶族自治县', '451324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3716, '广西壮族自治区', '来宾市', '合山市', '451381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3717, '广西壮族自治区', '崇左市', '市辖区', '451401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3718, '广西壮族自治区', '崇左市', '江洲区', '451402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3719, '广西壮族自治区', '崇左市', '扶绥县', '451421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3720, '广西壮族自治区', '崇左市', '宁明县', '451422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3721, '广西壮族自治区', '崇左市', '龙州县', '451423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3722, '广西壮族自治区', '崇左市', '大新县', '451424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3723, '广西壮族自治区', '崇左市', '天等县', '451425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3724, '广西壮族自治区', '崇左市', '凭祥市', '451481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3725, '广西壮族自治区', '南宁地区', '凭祥市', '452101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3726, '广西壮族自治区', '南宁地区', '横县', '452122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3727, '广西壮族自治区', '南宁地区', '宾阳县', '452123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3728, '广西壮族自治区', '南宁地区', '上林县', '452124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3729, '广西壮族自治区', '南宁地区', '隆安县', '452126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3730, '广西壮族自治区', '南宁地区', '马山县', '452127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3731, '广西壮族自治区', '南宁地区', '扶绥县', '452128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3732, '广西壮族自治区', '南宁地区', '崇左县', '452129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3733, '广西壮族自治区', '南宁地区', '大新县', '452130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3734, '广西壮族自治区', '南宁地区', '天等县', '452131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3735, '广西壮族自治区', '南宁地区', '宁明县', '452132'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3736, '广西壮族自治区', '南宁地区', '龙州县', '452133'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3737, '广西壮族自治区', '柳州地区', '合山市', '452201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3738, '广西壮族自治区', '柳州地区', '鹿寨县', '452223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3739, '广西壮族自治区', '柳州地区', '象州县', '452224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3740, '广西壮族自治区', '柳州地区', '武宣县', '452225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3741, '广西壮族自治区', '柳州地区', '来宾县', '452226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3742, '广西壮族自治区', '柳州地区', '融安县', '452227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3743, '广西壮族自治区', '柳州地区', '三江侗族自治县', '452228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3744, '广西壮族自治区', '柳州地区', '融水苗族自治县', '452229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3745, '广西壮族自治区', '柳州地区', '金秀瑶族自治县', '452230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3746, '广西壮族自治区', '柳州地区', '忻城县', '452231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3747, '广西壮族自治区', '南宁市', '市辖区', '450101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3748, '广西壮族自治区', '南宁市', '兴宁区', '450102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3749, '广西壮族自治区', '南宁市', '青秀区', '450103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3750, '广西壮族自治区', '南宁市', '城北区', '450104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3751, '广西壮族自治区', '南宁市', '江南区', '450105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3752, '广西壮族自治区', '南宁市', '永新区', '450106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3753, '广西壮族自治区', '南宁市', '西乡塘区', '450107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3754, '广西壮族自治区', '南宁市', '良庆区', '450108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3755, '广西壮族自治区', '南宁市', '邕宁区', '450109'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3756, '广西壮族自治区', '南宁市', '郊区', '450111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3757, '广西壮族自治区', '南宁市', '邕宁县', '450121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3758, '广西壮族自治区', '南宁市', '武鸣县', '450122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3759, '广西壮族自治区', '南宁市', '隆安县', '450123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3760, '广西壮族自治区', '南宁市', '马山县', '450124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3761, '广西壮族自治区', '南宁市', '上林县', '450125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3762, '广西壮族自治区', '南宁市', '宾阳县', '450126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3763, '广西壮族自治区', '南宁市', '横县', '450127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3764, '广西壮族自治区', '柳州市', '市辖区', '450201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3765, '广西壮族自治区', '柳州市', '城中区', '450202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3766, '广西壮族自治区', '柳州市', '鱼峰区', '450203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3767, '广西壮族自治区', '柳州市', '柳南区', '450204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3768, '广西壮族自治区', '柳州市', '柳北区', '450205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3769, '广西壮族自治区', '柳州市', '市郊区', '450211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3770, '广西壮族自治区', '柳州市', '柳江县', '450221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3771, '广西壮族自治区', '柳州市', '柳城县', '450222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3772, '广西壮族自治区', '柳州市', '鹿寨县', '450223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3773, '广西壮族自治区', '柳州市', '融安县', '450224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3774, '广西壮族自治区', '柳州市', '融水苗族自治县', '450225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3775, '广西壮族自治区', '柳州市', '三江侗族自治县', '450226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3776, '广西壮族自治区', '桂林市', '市辖区', '450301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3777, '广西壮族自治区', '桂林市', '秀峰区', '450302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3778, '广西壮族自治区', '桂林市', '叠彩区', '450303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3779, '广西壮族自治区', '桂林市', '象山区', '450304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3780, '广西壮族自治区', '桂林市', '七星区', '450305'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3781, '广西壮族自治区', '桂林市', '雁山区', '450311'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3782, '广西壮族自治区', '桂林市', '阳朔县', '450321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3783, '广西壮族自治区', '桂林市', '临桂县', '450322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3784, '广西壮族自治区', '桂林市', '灵川县', '450323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3785, '广西壮族自治区', '桂林市', '全州县', '450324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3786, '广西壮族自治区', '桂林市', '兴安县', '450325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3787, '广西壮族自治区', '桂林市', '永福县', '450326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3788, '广西壮族自治区', '桂林市', '灌阳县', '450327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3789, '广西壮族自治区', '桂林市', '龙胜各族自治县', '450328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3790, '广西壮族自治区', '桂林市', '资源县', '450329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3791, '广西壮族自治区', '桂林市', '平乐县', '450330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3792, '广西壮族自治区', '桂林市', '荔蒲县', '450331'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3793, '广西壮族自治区', '桂林市', '恭城瑶族自治县', '450332'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3794, '广西壮族自治区', '梧州市', '市辖区', '450401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3795, '广西壮族自治区', '梧州市', '白云区', '450402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3796, '广西壮族自治区', '梧州市', '万秀区', '450403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3797, '广西壮族自治区', '梧州市', '蝶山区', '450404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3798, '广西壮族自治区', '梧州市', '长洲区', '450405'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3799, '广西壮族自治区', '梧州市', '市郊区', '450411'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3800, '广西壮族自治区', '梧州市', '苍梧县', '450421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3801, '广西壮族自治区', '梧州市', '藤县', '450422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3802, '广西壮族自治区', '梧州市', '蒙山县', '450423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3803, '广西壮族自治区', '梧州市', '岑溪市', '450481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3804, '广西壮族自治区', '北海市', '市辖区', '450501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3805, '广西壮族自治区', '北海市', '海城区', '450502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3806, '广西壮族自治区', '北海市', '银海区', '450503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3807, '广西壮族自治区', '北海市', '铁山港区', '450512'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3808, '广西壮族自治区', '北海市', '合浦县', '450521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3809, '广西壮族自治区', '防城港市', '市辖区', '450601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3810, '广西壮族自治区', '防城港市', '港口区', '450602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3811, '广西壮族自治区', '防城港市', '防城区', '450603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3812, '广西壮族自治区', '防城港市', '上思县', '450621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3813, '广西壮族自治区', '防城港市', '东兴市', '450681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3814, '广西壮族自治区', '钦州市', '市辖区', '450701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3815, '广西壮族自治区', '钦州市', '钦南区', '450702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3816, '广西壮族自治区', '钦州市', '钦北区', '450703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3817, '广西壮族自治区', '钦州市', '灵山县', '450721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3818, '广西壮族自治区', '钦州市', '浦北县', '450722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3819, '广西壮族自治区', '贵港市', '市辖区', '450801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3820, '广西壮族自治区', '贵港市', '港北区', '450802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3821, '广西壮族自治区', '贵港市', '港南区', '450803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3822, '广西壮族自治区', '贵港市', '覃塘区', '450804'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3823, '广西壮族自治区', '贵港市', '平南县', '450821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3824, '广西壮族自治区', '贵港市', '桂平市', '450881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3825, '广西壮族自治区', '玉林市', '市辖区', '450901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3826, '广西壮族自治区', '玉林市', '玉州区', '450902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3827, '广西壮族自治区', '玉林市', '容县', '450921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3828, '广西壮族自治区', '玉林市', '陆川县', '450922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3829, '广西壮族自治区', '玉林市', '博白县', '450923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3830, '广西壮族自治区', '玉林市', '兴业县', '450924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3831, '广西壮族自治区', '玉林市', '北流市', '450981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3832, '广西壮族自治区', '桂林地区', '临桂县', '452321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3833, '广西壮族自治区', '桂林地区', '灵川县', '452322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3834, '广西壮族自治区', '桂林地区', '全州县', '452323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3835, '广西壮族自治区', '桂林地区', '兴安县', '452324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3836, '广西壮族自治区', '桂林地区', '永福县', '452325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3837, '广西壮族自治区', '桂林地区', '灌阳县', '452327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3838, '广西壮族自治区', '桂林地区', '龙胜各族自治县', '452328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3839, '广西壮族自治区', '桂林地区', '资源县', '452329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3840, '广西壮族自治区', '桂林地区', '平乐县', '452330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3841, '广西壮族自治区', '桂林地区', '荔蒲县', '452331'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3842, '广西壮族自治区', '桂林地区', '恭城瑶族自治县', '452332'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3843, '广西壮族自治区', '贺州地区', '岑溪市', '452401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3844, '广西壮族自治区', '贺州地区', '贺州市', '452402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3845, '广西壮族自治区', '贺州地区', '岑溪县', '452421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3846, '广西壮族自治区', '贺州地区', '苍梧县', '452422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3847, '广西壮族自治区', '贺州地区', '藤县', '452423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3848, '广西壮族自治区', '贺州地区', '昭平县', '452424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3849, '广西壮族自治区', '贺州地区', '蒙山县', '452425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3850, '广西壮族自治区', '贺州地区', '贺县', '452426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3851, '广西壮族自治区', '贺州地区', '钟山县', '452427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3852, '广西壮族自治区', '贺州地区', '富川瑶族自治县', '452428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3853, '广西壮族自治区', '玉林地区', '玉林市', '452501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3854, '广西壮族自治区', '玉林地区', '贵港市', '452502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3855, '广西壮族自治区', '玉林地区', '北流市', '452503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3856, '广西壮族自治区', '玉林地区', '桂平市', '452504'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3857, '广西壮族自治区', '玉林地区', '玉林县', '452521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3858, '广西壮族自治区', '玉林地区', '贵县', '452522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3859, '广西壮族自治区', '玉林地区', '桂平县', '452523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3860, '广西壮族自治区', '玉林地区', '平南县', '452524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3861, '广西壮族自治区', '玉林地区', '容县', '452525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3862, '广西壮族自治区', '玉林地区', '北流县', '452526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3863, '广西壮族自治区', '玉林地区', '陆川县', '452527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3864, '广西壮族自治区', '玉林地区', '博白县', '452528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3865, '广西壮族自治区', '百色地区', '百色市', '452601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3866, '广西壮族自治区', '百色地区', '百色县', '452621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3867, '广西壮族自治区', '百色地区', '田阳县', '452622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3868, '广西壮族自治区', '百色地区', '田东县', '452623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3869, '广西壮族自治区', '百色地区', '平果县', '452624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3870, '广西壮族自治区', '百色地区', '德保县', '452625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3871, '广西壮族自治区', '百色地区', '靖西县', '452626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3872, '广西壮族自治区', '百色地区', '那坡县', '452627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3873, '广西壮族自治区', '百色地区', '凌云县', '452628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3874, '广西壮族自治区', '百色地区', '乐业县', '452629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3875, '广西壮族自治区', '百色地区', '田林县', '452630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3876, '广西壮族自治区', '百色地区', '隆林各族自治县', '452631'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3877, '广西壮族自治区', '百色地区', '西林县', '452632'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3878, '广西壮族自治区', '河池地区', '河池市', '452701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3879, '广西壮族自治区', '河池地区', '宜州市', '452702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3880, '广西壮族自治区', '河池地区', '河池县', '452721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3881, '广西壮族自治区', '河池地区', '宜山县', '452722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3882, '广西壮族自治区', '河池地区', '罗城仫佬族自治县', '452723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3883, '广西壮族自治区', '河池地区', '环江毛南族自治县', '452724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3884, '广西壮族自治区', '河池地区', '南丹县', '452725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3885, '广西壮族自治区', '河池地区', '天峨县', '452726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3886, '广西壮族自治区', '河池地区', '凤山县', '452727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3887, '广西壮族自治区', '河池地区', '东兰县', '452728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3888, '广西壮族自治区', '河池地区', '巴马瑶族自治县', '452729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3889, '广西壮族自治区', '河池地区', '都安瑶族自治县', '452730'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3890, '广西壮族自治区', '河池地区', '大化瑶族自治县', '452731'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3891, '广西壮族自治区', '钦州地区', '北海市', '452801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3892, '广西壮族自治区', '钦州地区', '钦州市', '452802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3893, '广西壮族自治区', '钦州地区', '上思县', '452821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3894, '广西壮族自治区', '钦州地区', '防城各族自治县', '452822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3895, '广西壮族自治区', '钦州地区', '钦州县', '452823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3896, '广西壮族自治区', '钦州地区', '灵山县', '452824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3897, '广西壮族自治区', '钦州地区', '合浦县', '452825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3898, '广西壮族自治区', '钦州地区', '浦北县', '452826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3899, '海南省', '海口市', '市辖区', '460101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3900, '海南省', '海口市', '振东区', '460102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3901, '海南省', '海口市', '新华区', '460103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3902, '海南省', '海口市', '秀英区', '460104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3903, '海南省', '海口市', '秀英区', '460105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3904, '海南省', '海口市', '龙华区', '460106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3905, '海南省', '海口市', '琼山区', '460107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3906, '海南省', '海口市', '美兰区', '460108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3907, '海南省', '三亚市', '市辖区', '460201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3908, '海南省', NULL, '陵水黎族自治县', '469034'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3909, '海南省', NULL, '保亭黎族苗族自治县', '469035'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3910, '海南省', NULL, '琼中黎族苗族自治县', '469036'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3911, '海南省', NULL, '西沙群岛', '469037'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3912, '海南省', NULL, '南沙群岛', '469038'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3913, '海南省', NULL, '中沙群岛的岛礁及其海域', '469039'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3914, '海南省', NULL, '通什市', '460001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3915, '海南省', NULL, '琼海市', '460002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3916, '海南省', NULL, '儋州市', '460003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3917, '海南省', NULL, '琼山市', '460004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3918, '海南省', NULL, '文昌市', '460005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3919, '海南省', NULL, '万宁市', '460006'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3920, '海南省', NULL, '东方市', '460007'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3921, '海南省', NULL, '琼山县', '460021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3922, '海南省', NULL, '文昌县', '460022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3923, '海南省', NULL, '琼海县', '460023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3924, '海南省', NULL, '万宁县', '460024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3925, '海南省', NULL, '定安县', '460025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3926, '海南省', NULL, '屯昌县', '460026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3927, '海南省', NULL, '澄迈县', '460027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3928, '海南省', NULL, '临高县', '460028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3929, '海南省', NULL, '儋县', '460029'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3930, '海南省', NULL, '白沙黎族自治县', '460030'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3931, '海南省', NULL, '昌江黎族自治县', '460031'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3932, '海南省', NULL, '东方黎族自治县', '460032'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3933, '海南省', NULL, '乐东黎族自治县', '460033'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3934, '海南省', NULL, '陵水黎族自治县', '460034'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3935, '海南省', NULL, '保亭黎族苗族自治县', '460035'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3936, '海南省', NULL, '琼中黎族苗族自治县', '460036'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3937, '海南省', NULL, '西沙群岛', '460037'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3938, '海南省', NULL, '南沙群岛', '460038'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3939, '海南省', NULL, '中沙群岛的岛礁及其海域', '460039'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3940, '海南省', NULL, '五指山市', '469001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3941, '海南省', NULL, '琼海市', '469002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3942, '海南省', NULL, '儋州市', '469003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3943, '海南省', NULL, '文昌市', '469005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3944, '海南省', NULL, '万宁市', '469006'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3945, '海南省', NULL, '东方市', '469007'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3946, '海南省', NULL, '定安县', '469025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3947, '海南省', NULL, '屯昌县', '469026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3948, '海南省', NULL, '澄迈县', '469027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3949, '海南省', NULL, '临高县', '469028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3950, '海南省', NULL, '白沙黎族自治县', '469030'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3951, '海南省', NULL, '昌江黎族自治县', '469031'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3952, '海南省', NULL, '乐东黎族自治县', '469033'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3953, '重庆市', '市', '江津市', '500381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3954, '重庆市', '市', '合川市', '500382'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3955, '重庆市', '市', '永川市', '500383'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3956, '重庆市', '市', '南川市', '500384'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3957, '重庆市', NULL, '万州区', '500101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3958, '重庆市', NULL, '涪陵区', '500102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3959, '重庆市', NULL, '渝中区', '500103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3960, '重庆市', NULL, '大渡口区', '500104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3961, '重庆市', NULL, '江北区', '500105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3962, '重庆市', NULL, '沙坪坝区', '500106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3963, '重庆市', NULL, '九龙坡区', '500107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3964, '重庆市', NULL, '南岸区', '500108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3965, '重庆市', NULL, '北碚区', '500109'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3966, '重庆市', NULL, '万盛区', '500110'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3967, '重庆市', NULL, '双桥区', '500111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3968, '重庆市', NULL, '渝北区', '500112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3969, '重庆市', NULL, '巴南区', '500113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3970, '重庆市', NULL, '黔江区', '500114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3971, '重庆市', NULL, '长寿区', '500115'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3972, '重庆市', NULL, '渝中区', '500201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3973, '重庆市', NULL, '江北区', '500211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3974, '重庆市', NULL, '沙坪坝区', '500212'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3975, '重庆市', NULL, '九龙坡区', '500213'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3976, '重庆市', NULL, '南岸区', '500214'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3977, '重庆市', NULL, '北碚区', '500215'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3978, '重庆市', NULL, '万盛区', '500216'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3979, '重庆市', NULL, '双桥区', '500217'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3980, '重庆市', NULL, '长寿县', '500221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3981, '重庆市', NULL, '綦江县', '500222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3982, '重庆市', NULL, '潼南县', '500223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3983, '重庆市', NULL, '铜梁县', '500224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3984, '重庆市', NULL, '大足县', '500225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3985, '重庆市', NULL, '荣昌县', '500226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3986, '重庆市', NULL, '璧山县', '500227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3987, '重庆市', NULL, '梁平县', '500228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3988, '重庆市', NULL, '城口县', '500229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3989, '重庆市', NULL, '丰都县', '500230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3990, '重庆市', NULL, '垫江县', '500231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3991, '重庆市', NULL, '武隆县', '500232'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3992, '重庆市', NULL, '忠县', '500233'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3993, '重庆市', NULL, '开县', '500234'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3994, '重庆市', NULL, '云阳县', '500235'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3995, '重庆市', NULL, '奉节县', '500236'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3996, '重庆市', NULL, '巫山县', '500237'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3997, '重庆市', NULL, '巫溪县', '500238'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3998, '重庆市', NULL, '黔江土家族苗族自治县', '500239'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3999, '重庆市', NULL, '石柱土家族自治县', '500240'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4000, '重庆市', NULL, '秀山土家族苗族自治县', '500241'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4001, '重庆市', NULL, '酉阳土家族苗族自治县', '500242'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4002, '重庆市', NULL, '彭水苗族土家族自治县', '500243'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4003, '四川省', '自贡市', '市辖区', '510301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4004, '四川省', '自贡市', '自流井区', '510302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4005, '四川省', '自贡市', '贡井区', '510303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4006, '四川省', '自贡市', '大安区', '510304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4007, '四川省', '自贡市', '沿滩区', '510311'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4008, '四川省', '自贡市', '荣县', '510321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4009, '四川省', '自贡市', '富顺县', '510322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4010, '四川省', '攀枝花市', '市辖区', '510401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4011, '四川省', '攀枝花市', '东区', '510402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4012, '四川省', '攀枝花市', '西区', '510403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4013, '四川省', '攀枝花市', '仁和区', '510411'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4014, '四川省', '攀枝花市', '米易县', '510421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4015, '四川省', '攀枝花市', '盐边县', '510422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4016, '四川省', '泸州市', '市辖区', '510501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4017, '四川省', '泸州市', '江阳区', '510502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4018, '四川省', '泸州市', '纳溪区', '510503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4019, '四川省', '泸州市', '龙马潭区', '510504'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4020, '四川省', '泸州市', '泸县', '510521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4021, '四川省', '泸州市', '合江县', '510522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4022, '四川省', '泸州市', '纳溪县', '510523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4023, '四川省', '泸州市', '叙永县', '510524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4024, '四川省', '泸州市', '古蔺县', '510525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4025, '四川省', '德阳市', '市辖区', '510601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4026, '四川省', '德阳市', '市中区', '510602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4027, '四川省', '德阳市', '旌阳区', '510603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4028, '四川省', '德阳市', '绵竹县', '510622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4029, '四川省', '德阳市', '中江县', '510623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4030, '四川省', '德阳市', '广汉县', '510624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4031, '四川省', '德阳市', '什邡县', '510625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4032, '四川省', '德阳市', '罗江县', '510626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4033, '四川省', '德阳市', '广汉市', '510681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4034, '四川省', '德阳市', '什邡市', '510682'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4035, '四川省', '德阳市', '绵竹市', '510683'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4036, '四川省', '绵阳市', '市辖区', '510701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4037, '四川省', '绵阳市', '市中区', '510702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4038, '四川省', '绵阳市', '涪城区', '510703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4039, '四川省', '绵阳市', '游仙区', '510704'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4040, '四川省', '绵阳市', '江油县', '510721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4041, '四川省', '绵阳市', '三台县', '510722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4042, '四川省', '绵阳市', '盐亭县', '510723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4043, '四川省', '绵阳市', '安县', '510724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4044, '四川省', '绵阳市', '梓潼县', '510725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4045, '四川省', '绵阳市', '北川县', '510726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4046, '四川省', '绵阳市', '平武县', '510727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4047, '四川省', '绵阳市', '江油市', '510781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4048, '四川省', '广元市', '市辖区', '510801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4049, '四川省', '广元市', '市中区', '510802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4050, '四川省', '广元市', '元坝区', '510811'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4051, '四川省', '广元市', '朝天区', '510812'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4052, '四川省', '广元市', '旺苍县', '510821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4053, '四川省', '广元市', '青川县', '510822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4054, '四川省', '广元市', '剑阁县', '510823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4055, '四川省', '广元市', '苍溪县', '510824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4056, '四川省', '遂宁市', '市辖区', '510901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4057, '四川省', '遂宁市', '市中区', '510902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4058, '四川省', '遂宁市', '船山区', '510903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4059, '四川省', '遂宁市', '安居区', '510904'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4060, '四川省', '遂宁市', '蓬溪县', '510921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4061, '四川省', '遂宁市', '射洪县', '510922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4062, '四川省', '遂宁市', '大英县', '510923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4063, '四川省', '内江市', '市辖区', '511001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4064, '四川省', '内江市', '市中区', '511002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4065, '四川省', '内江市', '东兴区', '511011'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4066, '四川省', '内江市', '内江县', '511021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4067, '四川省', '内江市', '乐至县', '511022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4068, '四川省', '内江市', '安岳县', '511023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4069, '四川省', '内江市', '威远县', '511024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4070, '四川省', '内江市', '资中县', '511025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4071, '四川省', '内江市', '资阳市', '511026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4072, '四川省', '内江市', '简阳县', '511027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4073, '四川省', '内江市', '隆昌县', '511028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4074, '四川省', '内江市', '资阳市', '511081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4075, '四川省', '万县地区', '奉节县', '512226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4076, '四川省', '万县地区', '巫山县', '512227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4077, '四川省', '万县地区', '巫溪县', '512228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4078, '四川省', '万县地区', '城口县', '512229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4079, '四川省', '万县地区', '万县市', '512201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4080, '四川省', '万县地区', '万县', '512221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4081, '四川省', '万县地区', '开县', '512222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4082, '四川省', '万县地区', '忠县', '512223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4083, '四川省', '万县地区', '梁平县', '512224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4084, '四川省', '万县地区', '云阳县', '512225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4085, '四川省', '涪陵地区', '涪陵市', '512301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4086, '四川省', '涪陵地区', '南川市', '512302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4087, '四川省', '涪陵地区', '涪陵县', '512321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4088, '四川省', '涪陵地区', '垫江县', '512322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4089, '四川省', '涪陵地区', '南川县', '512323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4090, '四川省', '涪陵地区', '丰都县', '512324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4091, '四川省', '涪陵地区', '石柱县', '512325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4092, '四川省', '涪陵地区', '武隆县', '512326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4093, '四川省', '涪陵地区', '彭水县', '512327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4094, '四川省', '涪陵地区', '黔江县', '512328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4095, '四川省', '涪陵地区', '酉阳县', '512329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4096, '四川省', '涪陵地区', '秀山县', '512330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4097, '四川省', '宜宾地区', '宜宾市', '512501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4098, '四川省', '宜宾地区', '宜宾县', '512527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4099, '四川省', '宜宾地区', '南溪县', '512528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4100, '四川省', '宜宾地区', '江安县', '512529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4101, '四川省', '宜宾地区', '长宁县', '512530'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4102, '四川省', '宜宾地区', '高县', '512531'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4103, '四川省', '宜宾地区', '筠连县', '512532'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4104, '四川省', '宜宾地区', '珙县', '512533'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4105, '四川省', '宜宾地区', '兴文县', '512534'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4106, '四川省', '宜宾地区', '屏山县', '512535'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4107, '四川省', '南充地区', '南充市', '512901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4108, '四川省', '南充地区', '华蓥市', '512902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4109, '四川省', '南充地区', '阆中市', '512903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4110, '四川省', '南充地区', '南充县', '512921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4111, '四川省', '南充地区', '南部县', '512922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4112, '四川省', '南充地区', '岳池县', '512923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4113, '四川省', '南充地区', '营山县', '512924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4114, '四川省', '南充地区', '广安县', '512925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4115, '四川省', '南充地区', '蓬安县', '512926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4116, '四川省', '南充地区', '仪陇县', '512927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4117, '四川省', '南充地区', '武胜县', '512928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4118, '四川省', '南充地区', '西充县', '512929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4119, '四川省', '南充地区', '阆中县', '512930'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4120, '四川省', '南充地区', '苍溪县', '512931'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4121, '四川省', '南充地区', '华云工农区', '512932'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4122, '四川省', '达川地区', '达川市', '513001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4123, '四川省', '达川地区', '万源市', '513002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4124, '四川省', '达川地区', '达县', '513021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4125, '四川省', '达川地区', '宣汉县', '513022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4126, '四川省', '达川地区', '开江县', '513023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4127, '四川省', '达川地区', '万源县', '513024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4128, '四川省', '达川地区', '通江县', '513025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4129, '四川省', '达川地区', '南江县', '513026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4130, '四川省', '达川地区', '巴中县', '513027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4131, '四川省', '达川地区', '平昌县', '513028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4132, '四川省', '达川地区', '大竹县', '513029'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4133, '四川省', '达川地区', '渠县', '513030'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4134, '四川省', '达川地区', '邻水县', '513031'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4135, '四川省', '达川地区', '白沙工农区', '513032'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4136, '四川省', '雅安地区', '雅安市', '513101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4137, '四川省', '雅安地区', '名山县', '513122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4138, '四川省', '雅安地区', '荥经县', '513123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4139, '四川省', '雅安地区', '汉源县', '513124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4140, '四川省', '雅安地区', '石棉县', '513125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4141, '四川省', '雅安地区', '天全县', '513126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4142, '四川省', '雅安地区', '芦山县', '513127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4143, '四川省', '雅安地区', '宝兴县', '513128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4144, '四川省', '阿坝藏族羌族自治州', '汶川县', '513221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4145, '四川省', '阿坝藏族羌族自治州', '理县', '513222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4146, '四川省', '阿坝藏族羌族自治州', '茂县', '513223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4147, '四川省', '阿坝藏族羌族自治州', '松潘县', '513224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4148, '四川省', '阿坝藏族羌族自治州', '九寨沟县', '513225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4149, '四川省', '阿坝藏族羌族自治州', '金川县', '513226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4150, '四川省', '阿坝藏族羌族自治州', '小金县', '513227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4151, '四川省', '阿坝藏族羌族自治州', '黑水县', '513228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4152, '四川省', '阿坝藏族羌族自治州', '马尔康县', '513229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4153, '四川省', '阿坝藏族羌族自治州', '壤塘县', '513230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4154, '四川省', '阿坝藏族羌族自治州', '阿坝县', '513231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4155, '四川省', '阿坝藏族羌族自治州', '若尔盖县', '513232'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4156, '四川省', '阿坝藏族羌族自治州', '红原县', '513233'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4157, '四川省', '甘孜藏族自治州', '康定县', '513321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4158, '四川省', '甘孜藏族自治州', '泸定县', '513322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4159, '四川省', '甘孜藏族自治州', '丹巴县', '513323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4160, '四川省', '甘孜藏族自治州', '九龙县', '513324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4161, '四川省', '甘孜藏族自治州', '雅江县', '513325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4162, '四川省', '甘孜藏族自治州', '道孚县', '513326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4163, '四川省', '甘孜藏族自治州', '炉霍县', '513327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4164, '四川省', '甘孜藏族自治州', '甘孜县', '513328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4165, '四川省', '甘孜藏族自治州', '新龙县', '513329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4166, '四川省', '甘孜藏族自治州', '德格县', '513330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4167, '四川省', '甘孜藏族自治州', '白玉县', '513331'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4168, '四川省', '甘孜藏族自治州', '石渠县', '513332'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4169, '四川省', '甘孜藏族自治州', '色达县', '513333'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4170, '四川省', '甘孜藏族自治州', '理塘县', '513334'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4171, '四川省', '甘孜藏族自治州', '巴塘县', '513335'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4172, '四川省', '甘孜藏族自治州', '乡城县', '513336'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4173, '四川省', '甘孜藏族自治州', '稻城县', '513337'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4174, '四川省', '甘孜藏族自治州', '得荣县', '513338'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4175, '四川省', '凉山彝族自治州', '西昌市', '513401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4176, '四川省', '凉山彝族自治州', '木里藏族自治县', '513422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4177, '四川省', '凉山彝族自治州', '盐源县', '513423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4178, '四川省', '凉山彝族自治州', '德昌县', '513424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4179, '四川省', '凉山彝族自治州', '会理县', '513425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4180, '四川省', '凉山彝族自治州', '会东县', '513426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4181, '四川省', '凉山彝族自治州', '宁南县', '513427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4182, '四川省', '凉山彝族自治州', '普格县', '513428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4183, '四川省', '凉山彝族自治州', '布拖县', '513429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4184, '四川省', '凉山彝族自治州', '金阳县', '513430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4185, '四川省', '凉山彝族自治州', '昭觉县', '513431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4186, '四川省', '凉山彝族自治州', '喜德县', '513432'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4187, '四川省', '凉山彝族自治州', '冕宁县', '513433'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4188, '四川省', '凉山彝族自治州', '越西县', '513434'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4189, '四川省', '凉山彝族自治州', '甘洛县', '513435'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4190, '四川省', '凉山彝族自治州', '美姑县', '513436'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4191, '四川省', '凉山彝族自治州', '雷波县', '513437'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4192, '四川省', '成都市', '市辖区', '510101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4193, '四川省', '成都市', '东城区', '510102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4194, '四川省', '成都市', '西城区', '510103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4195, '四川省', '成都市', '锦江区', '510104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4196, '四川省', '成都市', '青羊区', '510105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4197, '四川省', '成都市', '金牛区', '510106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4198, '四川省', '成都市', '武侯区', '510107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4199, '四川省', '成都市', '成华区', '510108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4200, '四川省', '成都市', '金牛区', '510111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4201, '四川省', '成都市', '龙泉驿区', '510112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4202, '四川省', '成都市', '青白江区', '510113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4203, '四川省', '成都市', '新都区', '510114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4204, '四川省', '成都市', '市区', '510120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4205, '四川省', '成都市', '金堂县', '510121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4206, '四川省', '成都市', '双流县', '510122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4207, '四川省', '成都市', '温江县', '510123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4208, '四川省', '成都市', '郫县', '510124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4209, '四川省', '成都市', '新都县', '510125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4210, '四川省', '成都市', '彭县', '510126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4211, '四川省', '成都市', '灌县', '510127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4212, '四川省', '成都市', '崇庆县', '510128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4213, '四川省', '成都市', '大邑县', '510129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4214, '四川省', '成都市', '邛崃县', '510130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4215, '四川省', '成都市', '蒲江县', '510131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4216, '四川省', '成都市', '新津县', '510132'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4217, '四川省', '成都市', '都江堰市', '510181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4218, '四川省', '成都市', '彭州市', '510182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4219, '四川省', '成都市', '邛崃市', '510183'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4220, '四川省', '成都市', '崇州市', '510184'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4221, '四川省', '重庆市', '市辖区', '510201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4222, '四川省', '重庆市', '市中区', '510202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4223, '四川省', '重庆市', '大渡口区', '510203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4224, '四川省', '重庆市', '江北区', '510211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4225, '四川省', '重庆市', '沙坪坝区', '510212'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4226, '四川省', '重庆市', '九龙坡区', '510213'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4227, '四川省', '重庆市', '南岸区', '510214'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4228, '四川省', '重庆市', '北碚区', '510215'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4229, '四川省', '重庆市', '万盛区', '510216'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4230, '四川省', '重庆市', '双桥区', '510217'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4231, '四川省', '重庆市', '渝北区', '510218'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4232, '四川省', '重庆市', '巴南区', '510219'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4233, '四川省', '重庆市', '市区', '510220'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4234, '四川省', '重庆市', '长寿县', '510221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4235, '四川省', '重庆市', '巴县', '510222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4236, '四川省', '重庆市', '綦江县', '510223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4237, '四川省', '重庆市', '江北县', '510224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4238, '四川省', '重庆市', '江津县', '510225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4239, '四川省', '重庆市', '合川县', '510226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4240, '四川省', '重庆市', '潼南县', '510227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4241, '四川省', '重庆市', '铜梁县', '510228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4242, '四川省', '重庆市', '永川县', '510229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4243, '四川省', '重庆市', '大足县', '510230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4244, '四川省', '重庆市', '北碚区', '510231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4245, '四川省', '重庆市', '璧山县', '510232'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4246, '四川省', '重庆市', '永川市', '510281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4247, '四川省', '重庆市', '江津市', '510282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4248, '四川省', '重庆市', '合川市', '510283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4249, '四川省', '乐山市', '市辖区', '511101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4250, '四川省', '乐山市', '市中区', '511102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4251, '四川省', '乐山市', '沙湾区', '511111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4252, '四川省', '乐山市', '五通桥区', '511112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4253, '四川省', '乐山市', '金口河区', '511113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4254, '四川省', '乐山市', '仁寿县', '511121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4255, '四川省', '乐山市', '眉山县', '511122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4256, '四川省', '乐山市', '犍为县', '511123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4257, '四川省', '乐山市', '井研县', '511124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4258, '四川省', '乐山市', '峨眉县', '511125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4259, '四川省', '乐山市', '夹江县', '511126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4260, '四川省', '乐山市', '洪雅县', '511127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4261, '四川省', '乐山市', '彭山县', '511128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4262, '四川省', '乐山市', '沐川县', '511129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4263, '四川省', '乐山市', '青神县', '511130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4264, '四川省', '乐山市', '丹棱县', '511131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4265, '四川省', '乐山市', '峨边彝族自治县', '511132'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4266, '四川省', '乐山市', '马边彝族自治县', '511133'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4267, '四川省', '乐山市', '峨眉山市', '511181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4268, '四川省', '万县市', '市辖区', '511201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4269, '四川省', '万县市', '龙宝区', '511202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4270, '四川省', '万县市', '天成区', '511203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4271, '四川省', '万县市', '五桥区', '511204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4272, '四川省', '万县市', '开县', '511221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4273, '四川省', '万县市', '忠县', '511222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4274, '四川省', '万县市', '梁平县', '511223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4275, '四川省', '万县市', '云阳县', '511224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4276, '四川省', '万县市', '奉节县', '511225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4277, '四川省', '万县市', '巫山县', '511226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4278, '四川省', '万县市', '巫溪县', '511227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4279, '四川省', '万县市', '城口县', '511228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4280, '四川省', '南充市', '市辖区', '511301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4281, '四川省', '南充市', '顺庆区', '511302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4282, '四川省', '南充市', '高坪区', '511303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4283, '四川省', '南充市', '嘉陵区', '511304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4284, '四川省', '南充市', '南部县', '511321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4285, '四川省', '南充市', '营山县', '511322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4286, '四川省', '南充市', '蓬安县', '511323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4287, '四川省', '南充市', '仪陇县', '511324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4288, '四川省', '南充市', '西充县', '511325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4289, '四川省', '南充市', '阆中市', '511381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4290, '四川省', '眉山市', '市辖区', '511401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4291, '四川省', '眉山市', '东坡区', '511402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4292, '四川省', '眉山市', '仁寿县', '511421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4293, '四川省', '眉山市', '彭山县', '511422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4294, '四川省', '眉山市', '洪雅县', '511423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4295, '四川省', '眉山市', '丹棱县', '511424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4296, '四川省', '眉山市', '青神县', '511425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4297, '四川省', '宜宾市', '市辖区', '511501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4298, '四川省', '宜宾市', '翠屏区', '511502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4299, '四川省', '宜宾市', '宜宾县', '511521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4300, '四川省', '宜宾市', '南溪县', '511522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4301, '四川省', '宜宾市', '江安县', '511523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4302, '四川省', '宜宾市', '长宁县', '511524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4303, '四川省', '宜宾市', '高县', '511525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4304, '四川省', '宜宾市', '珙县', '511526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4305, '四川省', '宜宾市', '筠连县', '511527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4306, '四川省', '宜宾市', '兴文县', '511528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4307, '四川省', '宜宾市', '屏山县', '511529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4308, '四川省', '广安市', '市辖区', '511601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4309, '四川省', '广安市', '广安区', '511602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4310, '四川省', '广安市', '岳池县', '511621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4311, '四川省', '广安市', '武胜县', '511622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4312, '四川省', '广安市', '邻水县', '511623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4313, '四川省', '广安市', '华蓥市', '511681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4314, '四川省', '达州市', '市辖区', '511701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4315, '四川省', '达州市', '通川区', '511702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4316, '四川省', '达州市', '达县', '511721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4317, '四川省', '达州市', '宣汉县', '511722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4318, '四川省', '达州市', '开江县', '511723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4319, '四川省', '达州市', '大竹县', '511724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4320, '四川省', '达州市', '渠县', '511725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4321, '四川省', '达州市', '万源市', '511781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4322, '四川省', '雅安市', '市辖区', '511801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4323, '四川省', '雅安市', '雨城区', '511802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4324, '四川省', '雅安市', '名山县', '511821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4325, '四川省', '雅安市', '荥经县', '511822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4326, '四川省', '雅安市', '汉源县', '511823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4327, '四川省', '雅安市', '石棉县', '511824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4328, '四川省', '雅安市', '天全县', '511825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4329, '四川省', '雅安市', '芦山县', '511826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4330, '四川省', '雅安市', '宝兴县', '511827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4331, '四川省', '巴中市', '市辖区', '511901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4332, '四川省', '巴中市', '巴州区', '511902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4333, '四川省', '巴中市', '通江县', '511921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4334, '四川省', '巴中市', '南江县', '511922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4335, '四川省', '巴中市', '平昌县', '511923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4336, '四川省', '资阳市', '市辖区', '512001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4337, '四川省', '资阳市', '雁江区', '512002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4338, '四川省', '资阳市', '安岳县', '512021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4339, '四川省', '资阳市', '乐至县', '512022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4340, '四川省', '资阳市', '简阳市', '512081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4341, '四川省', '黔江地区', '石柱土家族自治县', '513521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4342, '四川省', '黔江地区', '秀山土家族苗族自治县', '513522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4343, '四川省', '黔江地区', '黔江土家族苗族自治县', '513523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4344, '四川省', '黔江地区', '酉阳土家族苗族自治县', '513524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4345, '四川省', '广安市', '华蓥市', '513601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4346, '四川省', '广安市', '岳池县', '513621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4347, '四川省', '广安市', '广安县', '513622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4348, '四川省', '广安市', '武胜县', '513623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4349, '四川省', '广安市', '邻水县', '513624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4350, '四川省', '巴中地区', '巴中市', '513701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4351, '四川省', '巴中地区', '通江县', '513721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4352, '四川省', '巴中地区', '南江县', '513722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4353, '四川省', '巴中地区', '平昌县', '513723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4354, '四川省', '眉山地区', '眉山县', '513821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4355, '四川省', '眉山地区', '仁寿县', '513822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4356, '四川省', '眉山地区', '彭山县', '513823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4357, '四川省', '眉山地区', '洪雅县', '513824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4358, '四川省', '眉山地区', '丹棱县', '513825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4359, '四川省', '眉山地区', '青神县', '513826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4360, '四川省', '资阳地区', '资阳市', '513901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4361, '四川省', '资阳地区', '简阳市', '513902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4362, '四川省', '资阳地区', '安岳县', '513921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4363, '四川省', '资阳地区', '乐至县', '513922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4364, '四川省', NULL, '广汉市', '519001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4365, '四川省', NULL, '江油市', '519002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4366, '四川省', NULL, '都江堰市', '519003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4367, '四川省', NULL, '峨眉山市', '519004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4368, '贵州省', '贵阳市', '市辖区', '520101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4369, '贵州省', '贵阳市', '南明区', '520102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4370, '贵州省', '贵阳市', '云岩区', '520103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4371, '贵州省', '贵阳市', '花溪区', '520111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4372, '贵州省', '贵阳市', '乌当区', '520112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4373, '贵州省', '贵阳市', '白云区', '520113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4374, '贵州省', '贵阳市', '小河区', '520114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4375, '贵州省', '贵阳市', '开阳县', '520121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4376, '贵州省', '贵阳市', '息烽县', '520122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4377, '贵州省', '贵阳市', '修文县', '520123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4378, '贵州省', '贵阳市', '清镇市', '520181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4379, '贵州省', '六盘水市', '钟山区', '520201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4380, '贵州省', '六盘水市', '盘县特区', '520202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4381, '贵州省', '六盘水市', '六枝特区', '520203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4382, '贵州省', '六盘水市', '水城县', '520221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4383, '贵州省', '六盘水市', '盘县', '520222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4384, '贵州省', '遵义市', '市辖区', '520301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4385, '贵州省', '遵义市', '红花岗区', '520302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4386, '贵州省', '遵义市', '汇川区', '520303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4387, '贵州省', '遵义市', '遵义县', '520321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4388, '贵州省', '遵义市', '桐梓县', '520322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4389, '贵州省', '遵义市', '绥阳县', '520323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4390, '贵州省', '遵义市', '正安县', '520324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4391, '贵州省', '遵义市', '道真仡佬族苗族自治县', '520325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4392, '贵州省', '遵义市', '务川仡佬族苗族自治县', '520326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4393, '贵州省', '遵义市', '凤冈县', '520327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4394, '贵州省', '遵义市', '湄潭县', '520328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4395, '贵州省', '遵义市', '余庆县', '520329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4396, '贵州省', '遵义市', '习水县', '520330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4397, '贵州省', '遵义市', '赤水市', '520381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4398, '贵州省', '遵义市', '仁怀市', '520382'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4399, '贵州省', '安顺市', '市辖区', '520401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4400, '贵州省', '安顺市', '西秀区', '520402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4401, '贵州省', '安顺市', '平坝县', '520421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4402, '贵州省', '安顺市', '普定县', '520422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4403, '贵州省', '安顺市', '镇宁布依族苗族自治县', '520423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4404, '贵州省', '安顺市', '关岭布依族苗族自治县', '520424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4405, '贵州省', '安顺市', '紫云苗族布依族自治县', '520425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4406, '贵州省', '遵义地区', '遵义市', '522101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4407, '贵州省', '遵义地区', '赤水市', '522102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4408, '贵州省', '遵义地区', '仁怀市', '522103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4409, '贵州省', '遵义地区', '遵义县', '522121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4410, '贵州省', '遵义地区', '桐梓县', '522122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4411, '贵州省', '遵义地区', '绥阳县', '522123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4412, '贵州省', '遵义地区', '正安县', '522124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4413, '贵州省', '遵义地区', '道真仡佬族苗族自治县', '522125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4414, '贵州省', '遵义地区', '务川仡佬族苗族自治县', '522126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4415, '贵州省', '遵义地区', '凤冈县', '522127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4416, '贵州省', '遵义地区', '湄潭县', '522128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4417, '贵州省', '遵义地区', '余庆县', '522129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4418, '贵州省', '遵义地区', '仁怀县', '522130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4419, '贵州省', '遵义地区', '赤水县', '522131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4420, '贵州省', '遵义地区', '习水县', '522132'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4421, '贵州省', '铜仁地区', '铜仁市', '522201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4422, '贵州省', '铜仁地区', '铜仁县', '522221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4423, '贵州省', '铜仁地区', '江口县', '522222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4424, '贵州省', '铜仁地区', '玉屏侗族自治县', '522223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4425, '贵州省', '铜仁地区', '石阡县', '522224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4426, '贵州省', '铜仁地区', '思南县', '522225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4427, '贵州省', '铜仁地区', '印江土家族苗族自治县', '522226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4428, '贵州省', '铜仁地区', '德江县', '522227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4429, '贵州省', '铜仁地区', '沿河土家族自治县', '522228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4430, '贵州省', '铜仁地区', '松桃苗族自治县', '522229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4431, '贵州省', '铜仁地区', '万山特区', '522230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4432, '贵州省', '黔西南布依族苗族自治州', '兴义市', '522301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4433, '贵州省', '黔西南布依族苗族自治州', '赤壁市', '522302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4434, '贵州省', '黔西南布依族苗族自治州', '兴义县', '522321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4435, '贵州省', '黔西南布依族苗族自治州', '兴仁县', '522322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4436, '贵州省', '黔西南布依族苗族自治州', '普安县', '522323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4437, '贵州省', '黔西南布依族苗族自治州', '晴隆县', '522324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4438, '贵州省', '黔西南布依族苗族自治州', '贞丰县', '522325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4439, '贵州省', '黔西南布依族苗族自治州', '望谟县', '522326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4440, '贵州省', '黔西南布依族苗族自治州', '册亨县', '522327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4441, '贵州省', '黔西南布依族苗族自治州', '安龙县', '522328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4442, '贵州省', '毕节地区', '毕节市', '522401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4443, '贵州省', '毕节地区', '毕节县', '522421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4444, '贵州省', '毕节地区', '大方县', '522422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4445, '贵州省', '毕节地区', '黔西县', '522423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4446, '贵州省', '毕节地区', '金沙县', '522424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4447, '贵州省', '毕节地区', '织金县', '522425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4448, '贵州省', '毕节地区', '纳雍县', '522426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4449, '贵州省', '毕节地区', '威宁彝族回族苗族自治县', '522427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4450, '贵州省', '毕节地区', '赫章县', '522428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4451, '贵州省', '安顺地区', '安顺市', '522501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4452, '贵州省', '安顺地区', '清镇市', '522502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4453, '贵州省', '安顺地区', '安顺县', '522521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4454, '贵州省', '安顺地区', '开阳县', '522522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4455, '贵州省', '安顺地区', '息烽县', '522523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4456, '贵州省', '安顺地区', '修文县', '522524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4457, '贵州省', '安顺地区', '清镇县', '522525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4458, '贵州省', '安顺地区', '平坝县', '522526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4459, '贵州省', '安顺地区', '普定县', '522527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4460, '贵州省', '安顺地区', '关岭布依族苗族自治县', '522528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4461, '贵州省', '安顺地区', '镇宁布依族苗族自治县', '522529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4462, '贵州省', '安顺地区', '紫云苗族布依族自治县', '522530'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4463, '贵州省', '黔东南苗族侗族自治州', '凯里市', '522601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4464, '贵州省', '黔东南苗族侗族自治州', '黄平县', '522622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4465, '贵州省', '黔东南苗族侗族自治州', '施秉县', '522623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4466, '贵州省', '黔东南苗族侗族自治州', '三穗县', '522624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4467, '贵州省', '黔东南苗族侗族自治州', '镇远县', '522625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4468, '贵州省', '黔东南苗族侗族自治州', '岑巩县', '522626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4469, '贵州省', '黔东南苗族侗族自治州', '天柱县', '522627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4470, '贵州省', '黔东南苗族侗族自治州', '锦屏县', '522628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4471, '贵州省', '黔东南苗族侗族自治州', '剑河县', '522629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4472, '贵州省', '黔东南苗族侗族自治州', '台江县', '522630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4473, '贵州省', '黔东南苗族侗族自治州', '黎平县', '522631'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4474, '贵州省', '黔东南苗族侗族自治州', '榕江县', '522632'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4475, '贵州省', '黔东南苗族侗族自治州', '从江县', '522633'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4476, '贵州省', '黔东南苗族侗族自治州', '雷山县', '522634'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4477, '贵州省', '黔东南苗族侗族自治州', '麻江县', '522635'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4478, '贵州省', '黔东南苗族侗族自治州', '丹寨县', '522636'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4479, '贵州省', '黔南布依族苗族自治州', '都匀市', '522701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4480, '贵州省', '黔南布依族苗族自治州', '福泉市', '522702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4481, '贵州省', '黔南布依族苗族自治州', '荔波县', '522722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4482, '贵州省', '黔南布依族苗族自治州', '贵定县', '522723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4483, '贵州省', '黔南布依族苗族自治州', '福泉县', '522724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4484, '贵州省', '黔南布依族苗族自治州', '瓮安县', '522725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4485, '贵州省', '黔南布依族苗族自治州', '独山县', '522726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1, '北京市', NULL, '东城区', '110101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2, '北京市', NULL, '西城区', '110102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (3, '北京市', NULL, '崇文区', '110103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4, '北京市', NULL, '宣武区', '110104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5, '北京市', NULL, '朝阳区', '110105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (6, '北京市', NULL, '丰台区', '110106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (7, '北京市', NULL, '石景山区', '110107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (8, '北京市', NULL, '海淀区', '110108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (9, '北京市', NULL, '门头沟区', '110109'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (10, '北京市', NULL, '燕山区', '110110'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (11, '北京市', NULL, '房山区', '110111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (12, '北京市', NULL, '通州区', '110112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (13, '北京市', NULL, '顺义区', '110113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (14, '北京市', NULL, '昌平区', '110114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (15, '北京市', NULL, '大兴区', '110115'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (16, '北京市', NULL, '怀柔区', '110116'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (17, '北京市', NULL, '平谷区', '110117'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (18, '北京市', NULL, '昌平县', '110221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (19, '北京市', NULL, '顺义县', '110222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (20, '北京市', NULL, '通县', '110223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (21, '北京市', NULL, '大兴县', '110224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (22, '北京市', NULL, '房山县', '110225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (23, '北京市', NULL, '平谷县', '110226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (24, '北京市', NULL, '怀柔县', '110227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (25, '北京市', NULL, '密云县', '110228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (26, '北京市', NULL, '延庆县', '110229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (27, '天津市', NULL, '和平区', '120101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (28, '天津市', NULL, '河东区', '120102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (29, '天津市', NULL, '河西区', '120103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (30, '天津市', NULL, '南开区', '120104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (31, '天津市', NULL, '河北区', '120105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (32, '天津市', NULL, '红桥区', '120106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (33, '天津市', NULL, '塘沽区', '120107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (34, '天津市', NULL, '汉沽区', '120108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (35, '天津市', NULL, '大港区', '120109'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (36, '天津市', NULL, '东丽区', '120110'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (37, '天津市', NULL, '西青区', '120111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (38, '天津市', NULL, '津南区', '120112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (39, '天津市', NULL, '北辰区', '120113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (40, '天津市', NULL, '武清区', '120114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (41, '天津市', NULL, '宝坻区', '120115'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (42, '天津市', NULL, '宁河县', '120221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (43, '天津市', NULL, '武清县', '120222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (44, '天津市', NULL, '静海县', '120223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (45, '天津市', NULL, '宝坻县', '120224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (46, '天津市', NULL, '蓟县', '120225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (47, '河北省', '石家庄市', '市辖区', '130101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (48, '河北省', '石家庄市', '长安区', '130102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (49, '河北省', '石家庄市', '桥东区', '130103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (50, '河北省', '石家庄市', '桥西区', '130104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (51, '河北省', '石家庄市', '新华区', '130105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (52, '河北省', '石家庄市', '郊区', '130106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (53, '河北省', '石家庄市', '井陉矿区', '130107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (54, '河北省', '石家庄市', '裕华区', '130108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (55, '河北省', '石家庄市', '井陉县', '130121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (56, '河北省', '石家庄市', '获鹿县', '130122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (57, '河北省', '石家庄市', '正定县', '130123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (58, '河北省', '石家庄市', '栾城县', '130124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (59, '河北省', '石家庄市', '行唐县', '130125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (60, '河北省', '石家庄市', '灵寿县', '130126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (61, '河北省', '石家庄市', '高邑县', '130127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (62, '河北省', '石家庄市', '深泽县', '130128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (63, '河北省', '石家庄市', '赞皇县', '130129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (64, '河北省', '石家庄市', '无极县', '130130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (65, '河北省', '石家庄市', '平山县', '130131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (66, '河北省', '石家庄市', '元氏县', '130132'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (67, '河北省', '石家庄市', '赵县', '130133'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (68, '河北省', '石家庄市', '辛集市', '130181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (69, '河北省', '石家庄市', '藁城市', '130182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (70, '河北省', '石家庄市', '晋州市', '130183'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (71, '河北省', '石家庄市', '新乐市', '130184'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (72, '河北省', '石家庄市', '鹿泉市', '130185'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (73, '河北省', '唐山市', '市辖区', '130201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (74, '河北省', '唐山市', '路南区', '130202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (75, '河北省', '唐山市', '路北区', '130203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (76, '河北省', '唐山市', '古冶区', '130204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (77, '河北省', '唐山市', '开平区', '130205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (78, '河北省', '唐山市', '新区', '130206'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (79, '河北省', '唐山市', '丰南区', '130207'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (80, '河北省', '唐山市', '丰润区', '130208'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (81, '河北省', '唐山市', '丰润县', '130221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (82, '河北省', '唐山市', '丰南县', '130222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (83, '河北省', '唐山市', '滦县', '130223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (84, '河北省', '唐山市', '滦南县', '130224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (85, '河北省', '唐山市', '乐亭县', '130225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (86, '河北省', '唐山市', '迁安县', '130226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (87, '河北省', '唐山市', '迁西县', '130227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (88, '河北省', '唐山市', '遵化县', '130228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (89, '河北省', '唐山市', '玉田县', '130229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (90, '河北省', '唐山市', '唐海县', '130230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (91, '河北省', '唐山市', '遵化市', '130281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (92, '河北省', '唐山市', '丰南市', '130282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (93, '河北省', '唐山市', '迁安市', '130283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (94, '河北省', '秦皇岛市', '市辖区', '130301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (95, '河北省', '秦皇岛市', '海港区', '130302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (96, '河北省', '秦皇岛市', '山海关区', '130303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (97, '河北省', '秦皇岛市', '北戴河区', '130304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (98, '河北省', '秦皇岛市', '青龙满族自治县', '130321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (99, '河北省', '秦皇岛市', '昌黎县', '130322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (100, '河北省', '秦皇岛市', '抚宁县', '130323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (101, '河北省', '秦皇岛市', '卢龙县', '130324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (102, '河北省', '邯郸市', '市辖区', '130401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (103, '河北省', '邯郸市', '邯山区', '130402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (104, '河北省', '邯郸市', '丛台区', '130403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (105, '河北省', '邯郸市', '复兴区', '130404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (106, '河北省', '邯郸市', '郊区', '130405'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (107, '河北省', '邯郸市', '峰峰矿区', '130406'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (108, '河北省', '邯郸市', '邯郸县', '130421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (109, '河北省', '邯郸市', '武安县', '130422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (110, '河北省', '邯郸市', '临漳县', '130423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (111, '河北省', '邯郸市', '成安县', '130424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (112, '河北省', '邯郸市', '大名县', '130425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (113, '河北省', '邯郸市', '涉县', '130426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (114, '河北省', '邯郸市', '磁县', '130427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (115, '河北省', '邯郸市', '肥乡县', '130428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (116, '河北省', '邯郸市', '永年县', '130429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (117, '河北省', '邯郸市', '邱县', '130430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (118, '河北省', '邯郸市', '鸡泽县', '130431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (119, '河北省', '邯郸市', '广平县', '130432'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (120, '河北省', '邯郸市', '馆陶县', '130433'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (121, '河北省', '邯郸市', '魏县', '130434'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (122, '河北省', '邯郸市', '曲周县', '130435'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (123, '河北省', '邯郸市', '武安市', '130481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (124, '河北省', '邢台市', '市辖区', '130501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (125, '河北省', '邢台市', '桥东区', '130502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (126, '河北省', '邢台市', '桥西区', '130503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (127, '河北省', '邢台市', '邢台县', '130521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (128, '河北省', '邢台市', '临城县', '130522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (129, '河北省', '邢台市', '内丘县', '130523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (130, '河北省', '邢台市', '柏乡县', '130524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (131, '河北省', '邢台市', '隆尧县', '130525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (132, '河北省', '邢台市', '任县', '130526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (133, '河北省', '邢台市', '南和县', '130527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (134, '河北省', '邢台市', '宁晋县', '130528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (135, '河北省', '邢台市', '巨鹿县', '130529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (136, '河北省', '邢台市', '新河县', '130530'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (137, '河北省', '邢台市', '广宗县', '130531'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (138, '河北省', '邢台市', '平乡县', '130532'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (139, '河北省', '邢台市', '威县', '130533'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (140, '河北省', '邢台市', '清河县', '130534'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1496, '江苏省', '扬州市', '高邮市', '321084'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1497, '江苏省', '扬州市', '泰兴市', '321085'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1498, '江苏省', '扬州市', '靖江市', '321086'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1499, '江苏省', '扬州市', '江都市', '321087'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1500, '江苏省', '扬州市', '江都市', '321088'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1501, '江苏省', '镇江市', '市辖区', '321101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1502, '江苏省', '镇江市', '京口区', '321102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1503, '江苏省', '镇江市', '润州区', '321111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1504, '江苏省', '镇江市', '丹徒区', '321112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1505, '江苏省', '镇江市', '丹阳市', '321119'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1506, '江苏省', '镇江市', '丹徒县', '321121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1507, '江苏省', '镇江市', '丹阳县', '321122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1508, '江苏省', '镇江市', '句容县', '321123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1509, '江苏省', '镇江市', '扬中县', '321124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1510, '江苏省', '镇江市', '丹阳市', '321181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1511, '江苏省', '镇江市', '扬中市', '321182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1512, '江苏省', '镇江市', '句容市', '321183'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1513, '江苏省', '泰州市', '市辖区', '321201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1514, '江苏省', '泰州市', '海陵区', '321202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1515, '江苏省', '泰州市', '高港区', '321203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1516, '江苏省', '泰州市', '兴化市', '321281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1517, '江苏省', '泰州市', '靖江市', '321282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1518, '江苏省', '泰州市', '泰兴市', '321283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1519, '江苏省', '泰州市', '姜堰市', '321284'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1520, '江苏省', '宿迁市', '市辖区', '321301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1521, '江苏省', '宿迁市', '宿城区', '321302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1522, '江苏省', '宿迁市', '宿豫区', '321311'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1523, '江苏省', '宿迁市', '宿豫县', '321321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1524, '江苏省', '宿迁市', '沭阳县', '321322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1525, '江苏省', '宿迁市', '泗阳县', '321323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1526, '江苏省', '宿迁市', '泗洪县', '321324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1527, '浙江省', '杭州市', '市辖区', '330101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1528, '浙江省', '杭州市', '上城区', '330102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1529, '浙江省', '杭州市', '下城区', '330103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1530, '浙江省', '杭州市', '江干区', '330104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1531, '浙江省', '杭州市', '拱墅区', '330105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1532, '浙江省', '杭州市', '西湖区', '330106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1533, '浙江省', '杭州市', '滨江区', '330107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1534, '浙江省', '杭州市', '滨江区', '330108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1535, '浙江省', '杭州市', '萧山区', '330109'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1536, '浙江省', '杭州市', '余杭区', '330110'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1537, '浙江省', '杭州市', '市区', '330120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1538, '浙江省', '杭州市', '萧山县', '330121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1539, '浙江省', '杭州市', '桐庐县', '330122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1540, '浙江省', '杭州市', '富阳县', '330123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1541, '浙江省', '杭州市', '临安县', '330124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1542, '浙江省', '杭州市', '余杭县', '330125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1543, '浙江省', '杭州市', '建德县', '330126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1544, '浙江省', '杭州市', '淳安县', '330127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1545, '浙江省', '杭州市', '萧山市', '330181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1546, '浙江省', '杭州市', '建德市', '330182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1547, '浙江省', '杭州市', '富阳市', '330183'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1548, '浙江省', '杭州市', '余杭市', '330184'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1549, '浙江省', '杭州市', '临安市', '330185'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1550, '浙江省', '台州市', '椒江区', '331002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1551, '浙江省', '台州市', '黄岩区', '331003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1552, '浙江省', '台州市', '路桥区', '331004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1553, '浙江省', '台州市', '玉环县', '331021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1554, '浙江省', '台州市', '三门县', '331022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1555, '浙江省', '台州市', '天台县', '331023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1556, '浙江省', '台州市', '仙居县', '331024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1557, '浙江省', '台州市', '温岭市', '331081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1558, '浙江省', '台州市', '临海市', '331082'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1559, '浙江省', '台州市', '市辖区', '331001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1560, '浙江省', '丽水市', '市辖区', '331101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1561, '浙江省', '丽水市', '莲都区', '331102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1562, '浙江省', '丽水市', '青田县', '331121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1563, '浙江省', '丽水市', '缙云县', '331122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1564, '浙江省', '丽水市', '遂昌县', '331123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1565, '浙江省', '丽水市', '松阳县', '331124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1566, '浙江省', '丽水市', '云和县', '331125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1567, '浙江省', '丽水市', '庆元县', '331126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1568, '浙江省', '丽水市', '景宁畲族自治县', '331127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1569, '浙江省', '丽水市', '龙泉市', '331181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1570, '浙江省', '丽水地区', '丽水市', '332501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1571, '浙江省', '丽水地区', '龙泉市', '332502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1572, '浙江省', '丽水地区', '丽水县', '332521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1573, '浙江省', '丽水地区', '青田县', '332522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1574, '浙江省', '丽水地区', '云和县', '332523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1575, '浙江省', '丽水地区', '龙泉县', '332524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1576, '浙江省', '丽水地区', '庆元县', '332525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1577, '浙江省', '丽水地区', '缙云县', '332526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1578, '浙江省', '丽水地区', '遂昌县', '332527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1579, '浙江省', '丽水地区', '松阳县', '332528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1580, '浙江省', '丽水地区', '景宁畲族自治县', '332529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1581, '浙江省', '台州地区', '椒江市', '332601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1582, '浙江省', '台州地区', '临海市', '332602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1583, '浙江省', '台州地区', '黄岩市', '332603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1584, '浙江省', '台州地区', '临海县', '332621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1585, '浙江省', '台州地区', '黄岩县', '332622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1586, '浙江省', '台州地区', '温岭县', '332623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1587, '浙江省', '台州地区', '仙居县', '332624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1588, '浙江省', '台州地区', '天台县', '332625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1589, '浙江省', '台州地区', '三门县', '332626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1590, '浙江省', '台州地区', '玉环县', '332627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1591, '浙江省', '舟山地区', '定海县', '332721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1592, '浙江省', '舟山地区', '普陀县', '332722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1593, '浙江省', '舟山地区', '岱山县', '332723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1594, '浙江省', '舟山地区', '嵊泗县', '332724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1595, '浙江省', '宁波市', '市辖区', '330201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1596, '浙江省', '宁波市', '镇明区', '330202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1597, '浙江省', '宁波市', '海曙区', '330203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1598, '浙江省', '宁波市', '江东区', '330204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1599, '浙江省', '宁波市', '江北区', '330205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1600, '浙江省', '宁波市', '北仑区', '330206'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1601, '浙江省', '宁波市', '鄞州区', '330207'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1602, '浙江省', '宁波市', '镇海区', '330211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1603, '浙江省', '宁波市', '鄞州区', '330212'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1604, '浙江省', '宁波市', '余姚市', '330219'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1605, '浙江省', '宁波市', '镇海县', '330221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1606, '浙江省', '宁波市', '慈溪县', '330222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1607, '浙江省', '宁波市', '余姚县', '330223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1608, '浙江省', '宁波市', '奉化县', '330224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1609, '浙江省', '宁波市', '象山县', '330225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1610, '浙江省', '宁波市', '宁海县', '330226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1611, '浙江省', '宁波市', '鄞县', '330227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1612, '浙江省', '宁波市', '余姚市', '330281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1613, '浙江省', '宁波市', '慈溪市', '330282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1614, '浙江省', '宁波市', '奉化市', '330283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1615, '浙江省', '温州市', '市辖区', '330301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1616, '浙江省', '温州市', '鹿城区', '330302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1617, '浙江省', '温州市', '龙湾区', '330303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1618, '浙江省', '温州市', '瓯海区', '330304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1619, '浙江省', '温州市', '瓯海县', '330321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1620, '浙江省', '温州市', '洞头县', '330322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1621, '浙江省', '温州市', '乐清县', '330323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1622, '浙江省', '温州市', '永嘉县', '330324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1623, '浙江省', '温州市', '瑞安县', '330325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1624, '浙江省', '温州市', '平阳县', '330326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1625, '浙江省', '温州市', '苍南县', '330327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1626, '浙江省', '温州市', '文成县', '330328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1627, '浙江省', '温州市', '泰顺县', '330329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1628, '浙江省', '温州市', '瑞安市', '330381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1629, '浙江省', '温州市', '乐清市', '330382'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1630, '浙江省', '嘉兴市', '市辖区', '330401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1631, '浙江省', '嘉兴市', '秀城区', '330402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1632, '浙江省', '嘉兴市', '郊区', '330411'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1633, '浙江省', '嘉兴市', '海宁市', '330419'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1634, '浙江省', '嘉兴市', '嘉善县', '330421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1635, '浙江省', '嘉兴市', '平湖县', '330422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1636, '浙江省', '嘉兴市', '海宁县', '330423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1637, '浙江省', '嘉兴市', '海盐县', '330424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1638, '浙江省', '嘉兴市', '桐乡县', '330425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1639, '浙江省', '嘉兴市', '海宁市', '330481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1640, '浙江省', '嘉兴市', '平湖市', '330482'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1641, '浙江省', '嘉兴市', '桐乡市', '330483'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1642, '浙江省', '湖州市', '市辖区', '330501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1643, '浙江省', '湖州市', '吴兴区', '330502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1644, '浙江省', '湖州市', '南浔区', '330503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1645, '浙江省', '湖州市', '郊区', '330511'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1646, '浙江省', '湖州市', '德清县', '330521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1647, '浙江省', '湖州市', '长兴县', '330522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1648, '浙江省', '湖州市', '安吉县', '330523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1649, '浙江省', '绍兴市', '市辖区', '330601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1650, '浙江省', '绍兴市', '越城区', '330602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1651, '浙江省', '绍兴市', '绍兴县', '330621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1652, '浙江省', '绍兴市', '上虞县', '330622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1653, '浙江省', '绍兴市', '嵊县', '330623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1654, '浙江省', '绍兴市', '新昌县', '330624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1655, '浙江省', '绍兴市', '诸暨县', '330625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1656, '浙江省', '绍兴市', '诸暨市', '330681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1657, '浙江省', '绍兴市', '上虞市', '330682'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1658, '浙江省', '绍兴市', '嵊州市', '330683'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1659, '浙江省', '金华市', '市辖区', '330701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1660, '浙江省', '金华市', '婺城区', '330702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1661, '浙江省', '金华市', '金东区', '330703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1662, '浙江省', '金华市', '兰溪市', '330719'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1663, '浙江省', '金华市', '金华县', '330721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1664, '浙江省', '金华市', '永康县', '330722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1665, '浙江省', '金华市', '武义县', '330723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1666, '浙江省', '金华市', '东阳县', '330724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1667, '浙江省', '金华市', '义乌县', '330725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1668, '浙江省', '金华市', '浦江县', '330726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1669, '浙江省', '金华市', '磐安县', '330727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1670, '浙江省', '金华市', '兰溪市', '330781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1671, '浙江省', '金华市', '义乌市', '330782'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1672, '浙江省', '金华市', '东阳市', '330783'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1673, '浙江省', '金华市', '永康市', '330784'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1674, '浙江省', '衢州市', '市辖区', '330801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1675, '浙江省', '衢州市', '柯城区', '330802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1676, '浙江省', '衢州市', '衢江区', '330803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1677, '浙江省', '衢州市', '衢县', '330821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1678, '浙江省', '衢州市', '常山县', '330822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1679, '浙江省', '衢州市', '江山县', '330823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1680, '浙江省', '衢州市', '开化县', '330824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1681, '浙江省', '衢州市', '龙游县', '330825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1682, '浙江省', '衢州市', '江山市', '330881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1683, '浙江省', '舟山市', '市辖区', '330901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1684, '浙江省', '舟山市', '定海区', '330902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1685, '浙江省', '舟山市', '普陀区', '330903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1686, '浙江省', '舟山市', '岱山县', '330921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1687, '浙江省', '舟山市', '嵊泗县', '330922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1688, '浙江省', NULL, '余姚市', '339001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1689, '浙江省', NULL, '海宁市', '339002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1690, '浙江省', NULL, '兰溪市', '339003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1691, '浙江省', NULL, '瑞安市', '339004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1692, '浙江省', NULL, '萧山市', '339005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1693, '浙江省', NULL, '江山市', '339006'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1694, '浙江省', NULL, '义乌市', '339007'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1695, '浙江省', NULL, '东阳市', '339008'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1696, '浙江省', NULL, '慈溪市', '339009'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1697, '浙江省', NULL, '奉化市', '339010'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1698, '浙江省', NULL, '诸暨市', '339011'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1699, '安徽省', '阜阳市', '临泉县', '341221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1700, '安徽省', '阜阳市', '太和县', '341222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1701, '安徽省', '阜阳市', '涡阳县', '341223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1702, '安徽省', '阜阳市', '蒙城县', '341224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1703, '安徽省', '阜阳市', '阜南县', '341225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1704, '安徽省', '阜阳市', '颍上县', '341226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1705, '安徽省', '阜阳市', '利辛县', '341227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1706, '安徽省', '阜阳市', '亳州市', '341281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1707, '安徽省', '阜阳市', '界首市', '341282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1708, '安徽省', '阜阳市', '市辖区', '341201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1709, '安徽省', '阜阳市', '颍州区', '341202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1710, '安徽省', '阜阳市', '颍东区', '341203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1711, '安徽省', '阜阳市', '颍泉区', '341204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1712, '安徽省', '宿州市', '市辖区', '341301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1713, '安徽省', '宿州市', '墉桥区', '341302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1714, '安徽省', '宿州市', '砀山县', '341321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1715, '安徽省', '宿州市', '萧县', '341322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1716, '安徽省', '宿州市', '灵璧县', '341323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1717, '安徽省', '宿州市', '泗县', '341324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1718, '安徽省', '巢湖市', '市辖区', '341401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1719, '安徽省', '巢湖市', '居巢区', '341402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1720, '安徽省', '巢湖市', '庐江县', '341421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1721, '安徽省', '巢湖市', '无为县', '341422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1722, '安徽省', '巢湖市', '含山县', '341423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1723, '安徽省', '巢湖市', '和县', '341424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1724, '安徽省', '六安市', '市辖区', '341501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1725, '安徽省', '六安市', '金安区', '341502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1726, '安徽省', '六安市', '裕安区', '341503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1727, '安徽省', '六安市', '寿县', '341521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1728, '安徽省', '六安市', '霍邱县', '341522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1729, '安徽省', '六安市', '舒城县', '341523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1730, '安徽省', '六安市', '金寨县', '341524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1731, '安徽省', '六安市', '霍山县', '341525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1732, '安徽省', '亳州市', '市辖区', '341601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1733, '安徽省', '亳州市', '谯城区', '341602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1734, '安徽省', '亳州市', '涡阳县', '341621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1735, '安徽省', '亳州市', '蒙城县', '341622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1736, '安徽省', '亳州市', '利辛县', '341623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1737, '安徽省', '池州市', '市辖区', '341701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1738, '安徽省', '池州市', '贵池区', '341702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1739, '安徽省', '池州市', '东至县', '341721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1740, '安徽省', '池州市', '石台县', '341722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1741, '安徽省', '池州市', '青阳县', '341723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1742, '安徽省', '宣城市', '市辖区', '341801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1743, '安徽省', '宣城市', '宣州区', '341802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1744, '安徽省', '宣城市', '郎溪县', '341821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1745, '安徽省', '宣城市', '广德县', '341822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1746, '安徽省', '宣城市', '泾县', '341823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1747, '安徽省', '宣城市', '绩溪县', '341824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1748, '安徽省', '宣城市', '旌德县', '341825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1749, '安徽省', '宣城市', '宁国市', '341881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1750, '安徽省', '阜阳地区', '阜阳市', '342101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1751, '安徽省', '阜阳地区', '阜阳县', '342121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1752, '安徽省', '阜阳地区', '临泉县', '342122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1753, '安徽省', '阜阳地区', '太和县', '342123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1754, '安徽省', '阜阳地区', '涡阳县', '342124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1755, '安徽省', '阜阳地区', '蒙城县', '342125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1756, '安徽省', '阜阳地区', '亳县', '342126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1757, '安徽省', '阜阳地区', '阜南县', '342127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1758, '安徽省', '阜阳地区', '颍上县', '342128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1759, '安徽省', '阜阳地区', '界首县', '342129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1760, '安徽省', '阜阳地区', '利辛县', '342130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1761, '安徽省', '宿县地区', '宿州市', '342201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1762, '安徽省', '宿县地区', '砀山县', '342221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1763, '安徽省', '宿县地区', '萧县', '342222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1764, '安徽省', '宿县地区', '宿县', '342223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1765, '安徽省', '宿县地区', '灵璧县', '342224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1766, '安徽省', '宿县地区', '泗县', '342225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1767, '安徽省', '宿县地区', '怀远县', '342226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1768, '安徽省', '宿县地区', '五河县', '342227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1769, '安徽省', '宿县地区', '固镇县', '342228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1770, '安徽省', '滁县地区', '滁州市', '342301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1771, '安徽省', '滁县地区', '天长县', '342321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1772, '安徽省', '滁县地区', '来安县', '342322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1773, '安徽省', '滁县地区', '滁县', '342323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1774, '安徽省', '滁县地区', '全椒县', '342324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1775, '安徽省', '滁县地区', '定远县', '342325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1776, '安徽省', '滁县地区', '凤阳县', '342326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1777, '安徽省', '滁县地区', '嘉山县', '342327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1778, '安徽省', '六安地区', '六安市', '342401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1779, '安徽省', '六安地区', '六安县', '342421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1780, '安徽省', '六安地区', '寿县', '342422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1781, '安徽省', '六安地区', '霍邱县', '342423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1782, '安徽省', '六安地区', '肥西县', '342424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1783, '安徽省', '六安地区', '舒城县', '342425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1784, '安徽省', '六安地区', '金寨县', '342426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1785, '安徽省', '六安地区', '霍山县', '342427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1786, '安徽省', '宣城地区', '宣州市', '342501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1787, '安徽省', '宣城地区', '宁国市', '342502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1788, '安徽省', '宣城地区', '宣州县', '342521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1789, '安徽省', '宣城地区', '郎溪县', '342522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1790, '安徽省', '宣城地区', '广德县', '342523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1791, '安徽省', '宣城地区', '宁国县', '342524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1792, '安徽省', '宣城地区', '当涂县', '342525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1793, '安徽省', '宣城地区', '繁昌县', '342526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1794, '安徽省', '宣城地区', '南陵县', '342527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1795, '安徽省', '宣城地区', '青阳县', '342528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1796, '安徽省', '宣城地区', '泾县', '342529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1797, '安徽省', '宣城地区', '旌德县', '342530'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1798, '安徽省', '宣城地区', '绩溪县', '342531'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1799, '安徽省', '巢湖地区', '巢湖市', '342601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1800, '安徽省', '巢湖地区', '肥东县', '342621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1801, '安徽省', '巢湖地区', '庐江县', '342622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1802, '安徽省', '巢湖地区', '无为县', '342623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1803, '安徽省', '巢湖地区', '巢县', '342624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1804, '安徽省', '巢湖地区', '含山县', '342625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1805, '安徽省', '巢湖地区', '和县', '342626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1806, '安徽省', '徽州地区', '屯溪市', '342701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1807, '安徽省', '徽州地区', '绩溪县', '342721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1808, '安徽省', '徽州地区', '旌德县', '342722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1809, '安徽省', '徽州地区', '歙县', '342723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1810, '安徽省', '徽州地区', '休宁县', '342724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1811, '安徽省', '徽州地区', '黟县', '342725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1812, '安徽省', '徽州地区', '祁门县', '342726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1813, '安徽省', '徽州地区', '太平县', '342727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1814, '安徽省', '徽州地区', '石台县', '342728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1815, '安徽省', '安庆地区', '怀宁县', '342821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1816, '安徽省', '安庆地区', '桐城县', '342822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1817, '安徽省', '安庆地区', '枞阳县', '342823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1818, '安徽省', '安庆地区', '潜山县', '342824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1819, '安徽省', '安庆地区', '太湖县', '342825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1820, '安徽省', '安庆地区', '宿松县', '342826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1821, '安徽省', '安庆地区', '望江县', '342827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1822, '安徽省', '安庆地区', '岳西县', '342828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1823, '安徽省', '安庆地区', '东至县', '342829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1824, '安徽省', '安庆地区', '贵池县', '342830'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1825, '安徽省', '池州地区', '贵池市', '342901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1826, '安徽省', '池州地区', '东至县', '342921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1827, '安徽省', '池州地区', '石台县', '342922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1828, '安徽省', '池州地区', '青阳县', '342923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1829, '安徽省', '合肥市', '市辖区', '340101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1830, '安徽省', '合肥市', '瑶海区', '340102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1831, '安徽省', '合肥市', '庐阳区', '340103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1832, '安徽省', '合肥市', '蜀山区', '340104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1833, '安徽省', '合肥市', '包河区', '340111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1834, '安徽省', '合肥市', '长丰县', '340121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1835, '安徽省', '合肥市', '肥西县', '340122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1836, '安徽省', '合肥市', '肥东县', '340123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1837, '安徽省', '芜湖市', '市辖区', '340201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1838, '安徽省', '芜湖市', '镜湖区', '340202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1839, '安徽省', '芜湖市', '弋江区', '340203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1840, '安徽省', '芜湖市', '新芜区', '340204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1841, '安徽省', '芜湖市', '裕溪口区', '340205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1842, '安徽省', '芜湖市', '四褐山区', '340206'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1843, '安徽省', '芜湖市', '鸠江区', '340207'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1844, '安徽省', '芜湖市', '三山区', '340208'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1845, '安徽省', '芜湖市', '郊区', '340211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1846, '安徽省', '芜湖市', '市区', '340220'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1847, '安徽省', '芜湖市', '芜湖县', '340221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1848, '安徽省', '芜湖市', '繁昌县', '340222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1849, '安徽省', '芜湖市', '南陵县', '340223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1850, '安徽省', '芜湖市', '青阳县', '340224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1851, '安徽省', '蚌埠市', '市辖区', '340301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1852, '安徽省', '蚌埠市', '龙子湖区', '340302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1853, '安徽省', '蚌埠市', '蚌山区', '340303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1854, '安徽省', '蚌埠市', '禹会区', '340304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1855, '安徽省', '蚌埠市', '淮上区', '340311'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1856, '安徽省', '蚌埠市', '怀远县', '340321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1857, '安徽省', '蚌埠市', '五河县', '340322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1858, '安徽省', '蚌埠市', '固镇县', '340323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1859, '安徽省', '淮南市', '市辖区', '340401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1860, '安徽省', '淮南市', '大通区', '340402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1861, '安徽省', '淮南市', '田家庵区', '340403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1862, '安徽省', '淮南市', '谢家集区', '340404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1863, '安徽省', '淮南市', '八公山区', '340405'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1864, '安徽省', '淮南市', '潘集区', '340406'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1865, '安徽省', '淮南市', '凤台县', '340421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1866, '安徽省', '马鞍山市', '市辖区', '340501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1867, '安徽省', '马鞍山市', '金家庄区', '340502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1868, '安徽省', '马鞍山市', '花山区', '340503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1869, '安徽省', '马鞍山市', '雨山区', '340504'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1870, '安徽省', '马鞍山市', '向山区', '340505'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1871, '安徽省', '马鞍山市', '当涂县', '340521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1872, '安徽省', '淮北市', '市辖区', '340601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1873, '安徽省', '淮北市', '杜集区', '340602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1874, '安徽省', '淮北市', '相山区', '340603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1875, '安徽省', '淮北市', '烈山区', '340604'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1876, '安徽省', '淮北市', '濉溪县', '340621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1877, '安徽省', '铜陵市', '市辖区', '340701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1878, '安徽省', '铜陵市', '铜官山区', '340702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1879, '安徽省', '铜陵市', '狮子山区', '340703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1880, '安徽省', '铜陵市', '郊区', '340711'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1881, '安徽省', '铜陵市', '铜陵县', '340721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1882, '安徽省', '安庆市', '市辖区', '340801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1883, '安徽省', '安庆市', '迎江区', '340802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1884, '安徽省', '安庆市', '大观区', '340803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1885, '安徽省', '安庆市', '郊区', '340811'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1886, '安徽省', '安庆市', '桐城县', '340821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1887, '安徽省', '安庆市', '怀宁县', '340822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1888, '安徽省', '安庆市', '枞阳县', '340823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1889, '安徽省', '安庆市', '潜山县', '340824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1890, '安徽省', '安庆市', '太湖县', '340825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1891, '安徽省', '安庆市', '宿松县', '340826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1892, '安徽省', '安庆市', '望江县', '340827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1893, '安徽省', '安庆市', '岳西县', '340828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1894, '安徽省', '安庆市', '桐城市', '340881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1895, '安徽省', '黄山市', '市辖区', '341001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1896, '安徽省', '黄山市', '屯溪区', '341002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1897, '安徽省', '黄山市', '黄山区', '341003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1898, '安徽省', '黄山市', '徽州区', '341004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1899, '安徽省', '黄山市', '歙县', '341021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1900, '安徽省', '黄山市', '休宁县', '341022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1901, '安徽省', '黄山市', '黟县', '341023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1902, '安徽省', '黄山市', '祁门县', '341024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1903, '安徽省', '滁州市', '市辖区', '341101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1904, '安徽省', '滁州市', '琅琊区', '341102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1905, '安徽省', '滁州市', '南谯区', '341103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1906, '安徽省', '滁州市', '天长县', '341121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1907, '安徽省', '滁州市', '来安县', '341122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1908, '安徽省', '滁州市', '全椒县', '341124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1909, '安徽省', '滁州市', '定远县', '341125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1910, '安徽省', '滁州市', '凤阳县', '341126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1911, '安徽省', '滁州市', '嘉山县', '341127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1912, '安徽省', '滁州市', '天长市', '341181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1913, '安徽省', '滁州市', '明光市', '341182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1914, '福建省', '宁德市', '市辖区', '350901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1915, '福建省', '宁德市', '蕉城区', '350902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1916, '福建省', '宁德市', '霞浦县', '350921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1917, '福建省', '宁德市', '古田县', '350922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1918, '福建省', '宁德市', '屏南县', '350923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1919, '福建省', '宁德市', '寿宁县', '350924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1920, '福建省', '宁德市', '周宁县', '350925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1921, '福建省', '宁德市', '柘荣县', '350926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1922, '福建省', '宁德市', '福安市', '350981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1923, '福建省', '宁德市', '福鼎市', '350982'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1924, '福建省', '南平地区', '南平市', '352101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1925, '福建省', '南平地区', '邵武市', '352102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1926, '福建省', '南平地区', '武夷山市', '352103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1927, '福建省', '南平地区', '建瓯市', '352104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1928, '福建省', '南平地区', '顺昌县', '352121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1929, '福建省', '南平地区', '建阳县', '352122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1930, '福建省', '南平地区', '建瓯县', '352123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1931, '福建省', '南平地区', '浦城县', '352124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1932, '福建省', '南平地区', '邵武县', '352125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1933, '福建省', '南平地区', '崇安县', '352126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1934, '福建省', '南平地区', '光泽县', '352127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1935, '福建省', '南平地区', '松溪县', '352128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1936, '福建省', '南平地区', '政和县', '352129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1937, '福建省', '宁德地区', '宁德市', '352201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1938, '福建省', '宁德地区', '福安市', '352202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1939, '福建省', '宁德地区', '福鼎市', '352203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1940, '福建省', '宁德地区', '宁德县', '352221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1941, '福建省', '宁德地区', '连江县', '352222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1942, '福建省', '宁德地区', '罗源县', '352223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1943, '福建省', '宁德地区', '福鼎县', '352224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1944, '福建省', '宁德地区', '霞浦县', '352225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1945, '福建省', '宁德地区', '福安县', '352226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1946, '福建省', '宁德地区', '古田县', '352227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1947, '福建省', '宁德地区', '屏南县', '352228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1948, '福建省', '宁德地区', '寿宁县', '352229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1949, '福建省', '宁德地区', '周宁县', '352230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1950, '福建省', '宁德地区', '柘荣县', '352231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1951, '福建省', '龙岩地区', '龙岩市', '352601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1952, '福建省', '龙岩地区', '漳平市', '352602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1953, '福建省', '龙岩地区', '长汀县', '352622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1954, '福建省', '龙岩地区', '永定县', '352623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1955, '福建省', '龙岩地区', '上杭县', '352624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1956, '福建省', '龙岩地区', '武平县', '352625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1957, '福建省', '龙岩地区', '漳平县', '352626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1958, '福建省', '龙岩地区', '连城县', '352627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1959, '福建省', '三明市', '三明市', '352701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1960, '福建省', '三明市', '明溪县', '352721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1961, '福建省', '三明市', '永安县', '352722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1962, '福建省', '三明市', '清流县', '352723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1963, '福建省', '三明市', '宁化县', '352724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1964, '福建省', '三明市', '大田县', '352725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1965, '福建省', '三明市', '尤溪县', '352726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1966, '福建省', '三明市', '沙县', '352727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1967, '福建省', '三明市', '将乐县', '352728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1968, '福建省', '三明市', '泰宁县', '352729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1969, '福建省', '三明市', '建宁县', '352730'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1970, '福建省', '福州市', '市辖区', '350101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1971, '福建省', '福州市', '鼓楼区', '350102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1972, '福建省', '福州市', '台江区', '350103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1973, '福建省', '福州市', '仓山区', '350104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1974, '福建省', '福州市', '马尾区', '350105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1975, '福建省', '福州市', '晋安区', '350111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1976, '福建省', '福州市', '市区', '350120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1977, '福建省', '福州市', '闽侯县', '350121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1978, '福建省', '福州市', '连江县', '350122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1979, '福建省', '福州市', '罗源县', '350123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1980, '福建省', '福州市', '闽清县', '350124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1981, '福建省', '福州市', '永泰县', '350125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1982, '福建省', '福州市', '长乐县', '350126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1983, '福建省', '福州市', '福清县', '350127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1984, '福建省', '福州市', '平潭县', '350128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1985, '福建省', '福州市', '福清市', '350181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1986, '福建省', '福州市', '长乐市', '350182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1987, '福建省', '厦门市', '市辖区', '350201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1988, '福建省', '厦门市', '鼓浪屿区', '350202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1989, '福建省', '厦门市', '思明区', '350203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1990, '福建省', '厦门市', '开元区', '350204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1991, '福建省', '厦门市', '海沧区', '350205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1992, '福建省', '厦门市', '湖里区', '350206'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1993, '福建省', '厦门市', '集美区', '350211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1994, '福建省', '厦门市', '同安区', '350212'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1995, '福建省', '厦门市', '翔安区', '350213'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1996, '福建省', '莆田市', '市辖区', '350301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1997, '福建省', '莆田市', '城厢区', '350302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1998, '福建省', '莆田市', '涵江区', '350303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (1999, '福建省', '莆田市', '荔城区', '350304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2000, '福建省', '莆田市', '秀屿区', '350305'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2001, '福建省', '莆田市', '莆田县', '350321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2002, '福建省', '莆田市', '仙游县', '350322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2003, '福建省', '三明市', '市辖区', '350401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2004, '福建省', '三明市', '梅列区', '350402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2005, '福建省', '三明市', '三元区', '350403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2006, '福建省', '三明市', '永安市', '350404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2007, '福建省', '三明市', '永安市', '350420'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2008, '福建省', '三明市', '明溪县', '350421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2009, '福建省', '三明市', '永安县', '350422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2010, '福建省', '三明市', '清流县', '350423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2011, '福建省', '三明市', '宁化县', '350424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2012, '福建省', '三明市', '大田县', '350425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2013, '福建省', '三明市', '尤溪县', '350426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2014, '福建省', '三明市', '沙县', '350427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2015, '福建省', '三明市', '将乐县', '350428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2016, '福建省', '三明市', '泰宁县', '350429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2017, '福建省', '三明市', '建宁县', '350430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2018, '福建省', '三明市', '永安市', '350481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2019, '福建省', '泉州市', '市辖区', '350501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2020, '福建省', '泉州市', '鲤城区', '350502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2021, '福建省', '泉州市', '丰泽区', '350503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2022, '福建省', '泉州市', '洛江区', '350504'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2023, '福建省', '泉州市', '泉港区', '350505'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2024, '福建省', '泉州市', '惠安县', '350521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2025, '福建省', '泉州市', '晋江县', '350522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2026, '福建省', '泉州市', '南安县', '350523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2027, '福建省', '泉州市', '安溪县', '350524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2028, '福建省', '泉州市', '永春县', '350525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2029, '福建省', '泉州市', '德化县', '350526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2030, '福建省', '泉州市', '金门县', '350527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2031, '福建省', '泉州市', '石狮市', '350581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2032, '福建省', '泉州市', '晋江市', '350582'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2033, '福建省', '泉州市', '南安市', '350583'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2034, '福建省', '漳州市', '市辖区', '350601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2035, '福建省', '漳州市', '芗城区', '350602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2036, '福建省', '漳州市', '龙文区', '350603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2037, '福建省', '漳州市', '龙海县', '350621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2038, '福建省', '漳州市', '云霄县', '350622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2039, '福建省', '漳州市', '漳浦县', '350623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2040, '福建省', '漳州市', '诏安县', '350624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2041, '福建省', '漳州市', '长泰县', '350625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2042, '福建省', '漳州市', '东山县', '350626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2043, '福建省', '漳州市', '南靖县', '350627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2044, '福建省', '漳州市', '平和县', '350628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2045, '福建省', '漳州市', '华安县', '350629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2046, '福建省', '漳州市', '龙海市', '350681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2047, '福建省', '南平市', '市辖区', '350701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2048, '福建省', '南平市', '延平区', '350702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2049, '福建省', '南平市', '顺昌县', '350721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2050, '福建省', '南平市', '浦城县', '350722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2051, '福建省', '南平市', '光泽县', '350723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2052, '福建省', '南平市', '松溪县', '350724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2053, '福建省', '南平市', '政和县', '350725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2054, '福建省', '南平市', '邵武市', '350781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2055, '福建省', '南平市', '武夷山市', '350782'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2056, '福建省', '南平市', '建瓯市', '350783'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2057, '福建省', '南平市', '建阳市', '350784'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2058, '福建省', '龙岩市', '市辖区', '350801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2059, '福建省', '龙岩市', '新罗区', '350802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2060, '福建省', '龙岩市', '长汀县', '350821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2061, '福建省', '龙岩市', '永定县', '350822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2062, '福建省', '龙岩市', '上杭县', '350823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2063, '福建省', '龙岩市', '武平县', '350824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2064, '福建省', '龙岩市', '连城县', '350825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2065, '福建省', '龙岩市', '漳平市', '350881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2066, '福建省', NULL, '永安市', '359001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2067, '福建省', NULL, '石狮市', '359002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2068, '江西省', '南昌市', '市辖区', '360101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2069, '江西省', '南昌市', '东湖区', '360102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2070, '江西省', '南昌市', '西湖区', '360103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2071, '江西省', '南昌市', '青云谱区', '360104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2072, '江西省', '南昌市', '湾里区', '360105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2073, '江西省', '南昌市', '郊区', '360111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2074, '江西省', '南昌市', '南昌县', '360121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2075, '江西省', '南昌市', '新建县', '360122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2076, '江西省', '南昌市', '安义县', '360123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2077, '江西省', '南昌市', '进贤县', '360124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2078, '江西省', '景德镇市', '市辖区', '360201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2079, '江西省', '景德镇市', '昌江区', '360202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2080, '江西省', '景德镇市', '珠山区', '360203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2081, '江西省', '景德镇市', '鹅湖区', '360211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2082, '江西省', '景德镇市', '蛟潭区', '360212'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2083, '江西省', '景德镇市', '乐平县', '360221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2084, '江西省', '景德镇市', '浮梁县', '360222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2085, '江西省', '景德镇市', '乐平市', '360281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2086, '江西省', '上饶市', '鄱阳县', '361128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2087, '江西省', '上饶市', '万年县', '361129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2088, '江西省', '上饶市', '婺源县', '361130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2089, '江西省', '上饶市', '德兴市', '361181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2090, '江西省', '上饶市', '市辖区', '361101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2091, '江西省', '上饶市', '信州区', '361102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2092, '江西省', '上饶市', '上饶县', '361121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2093, '江西省', '上饶市', '广丰县', '361122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2094, '江西省', '上饶市', '玉山县', '361123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2095, '江西省', '上饶市', '铅山县', '361124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2096, '江西省', '上饶市', '横峰县', '361125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2097, '江西省', '上饶市', '弋阳县', '361126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2098, '江西省', '上饶市', '余干县', '361127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2099, '江西省', '赣州地区', '赣州市', '362101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2100, '江西省', '赣州地区', '瑞金市', '362102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2101, '江西省', '赣州地区', '南康市', '362103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2102, '江西省', '赣州地区', '赣县', '362121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2103, '江西省', '赣州地区', '南康市', '362122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2104, '江西省', '赣州地区', '信丰县', '362123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2105, '江西省', '赣州地区', '大余县', '362124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2106, '江西省', '赣州地区', '上犹县', '362125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2107, '江西省', '赣州地区', '崇义县', '362126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2108, '江西省', '赣州地区', '安远县', '362127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2109, '江西省', '赣州地区', '龙南县', '362128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2110, '江西省', '赣州地区', '定南县', '362129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2111, '江西省', '赣州地区', '全南县', '362130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2112, '江西省', '赣州地区', '宁都县', '362131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2113, '江西省', '赣州地区', '于都县', '362132'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2114, '江西省', '赣州地区', '兴国县', '362133'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2115, '江西省', '赣州地区', '瑞金市', '362134'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2116, '江西省', '赣州地区', '会昌县', '362135'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2117, '江西省', '赣州地区', '寻乌县', '362136'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2118, '江西省', '赣州地区', '石城县', '362137'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2119, '江西省', '赣州地区', '广昌县', '362138'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2120, '江西省', '宜春地区', '宜春市', '362201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2121, '江西省', '宜春地区', '丰城市', '362202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2122, '江西省', '宜春地区', '樟树市', '362203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2123, '江西省', '宜春地区', '高安市', '362204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2124, '江西省', '宜春地区', '丰城县', '362221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2125, '江西省', '宜春地区', '高安县', '362222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2126, '江西省', '宜春地区', '清江县', '362223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2127, '江西省', '宜春地区', '新余县', '362224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2128, '江西省', '宜春地区', '宜春县', '362225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2129, '江西省', '宜春地区', '奉新县', '362226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2130, '江西省', '宜春地区', '万载县', '362227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2131, '江西省', '宜春地区', '上高县', '362228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2132, '江西省', '宜春地区', '宜丰县', '362229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2133, '江西省', '宜春地区', '分宜县', '362230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2134, '江西省', '宜春地区', '安义县', '362231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2135, '江西省', '宜春地区', '靖安县', '362232'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2136, '江西省', '宜春地区', '铜鼓县', '362233'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2137, '江西省', '上饶地区', '上饶市', '362301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2138, '江西省', '上饶地区', '德兴市', '362302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2139, '江西省', '上饶地区', '上饶县', '362321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2140, '江西省', '上饶地区', '广丰县', '362322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2141, '江西省', '上饶地区', '玉山县', '362323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2142, '江西省', '上饶地区', '铅山县', '362324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2143, '江西省', '上饶地区', '横峰县', '362325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2144, '江西省', '上饶地区', '弋阳县', '362326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2145, '江西省', '上饶地区', '贵溪县', '362327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2146, '江西省', '上饶地区', '余江县', '362328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2147, '江西省', '上饶地区', '余干县', '362329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2148, '江西省', '上饶地区', '波阳县', '362330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2149, '江西省', '上饶地区', '万年县', '362331'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2150, '江西省', '上饶地区', '乐平县', '362332'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2151, '江西省', '上饶地区', '德兴县', '362333'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2152, '江西省', '上饶地区', '婺源县', '362334'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2153, '江西省', '萍乡市', '市辖区', '360301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2154, '江西省', '萍乡市', '安源区', '360302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2155, '江西省', '萍乡市', '上栗区', '360311'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2156, '江西省', '萍乡市', '芦溪区', '360312'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2157, '江西省', '萍乡市', '湘东区', '360313'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2158, '江西省', '萍乡市', '莲花县', '360321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2159, '江西省', '萍乡市', '上栗县', '360322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2160, '江西省', '萍乡市', '芦溪县', '360323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2161, '江西省', '九江市', '市辖区', '360401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2162, '江西省', '九江市', '庐山区', '360402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2163, '江西省', '九江市', '浔阳区', '360403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2164, '江西省', '九江市', '九江县', '360421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2165, '江西省', '九江市', '瑞昌县', '360422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2166, '江西省', '九江市', '武宁县', '360423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2167, '江西省', '九江市', '修水县', '360424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2168, '江西省', '九江市', '永修县', '360425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2169, '江西省', '九江市', '德安县', '360426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2170, '江西省', '九江市', '星子县', '360427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2171, '江西省', '九江市', '都昌县', '360428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2172, '江西省', '九江市', '湖口县', '360429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2173, '江西省', '九江市', '彭泽县', '360430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2174, '江西省', '九江市', '瑞昌市', '360481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2175, '江西省', '新余市', '市辖区', '360501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2176, '江西省', '新余市', '渝水区', '360502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2177, '江西省', '新余市', '分宜县', '360521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2178, '江西省', '鹰潭市', '市辖区', '360601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2179, '江西省', '鹰潭市', '月湖区', '360602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2180, '江西省', '鹰潭市', '贵溪县', '360621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2181, '江西省', '鹰潭市', '余江县', '360622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2182, '江西省', '鹰潭市', '贵溪市', '360681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2183, '江西省', '赣州市', '市辖区', '360701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2184, '江西省', '赣州市', '章贡区', '360702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2185, '江西省', '赣州市', '赣县', '360721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2186, '江西省', '赣州市', '信丰县', '360722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2187, '江西省', '赣州市', '大余县', '360723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2188, '江西省', '赣州市', '上犹县', '360724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2189, '江西省', '赣州市', '崇义县', '360725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2190, '江西省', '赣州市', '安远县', '360726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2191, '江西省', '赣州市', '龙南县', '360727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2192, '江西省', '赣州市', '定南县', '360728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2193, '江西省', '赣州市', '全南县', '360729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2194, '江西省', '赣州市', '宁都县', '360730'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2195, '江西省', '赣州市', '于都县', '360731'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2196, '江西省', '赣州市', '兴国县', '360732'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2197, '江西省', '赣州市', '会昌县', '360733'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2198, '江西省', '赣州市', '寻乌县', '360734'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2199, '江西省', '赣州市', '石城县', '360735'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2200, '江西省', '赣州市', '瑞金市', '360781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2201, '江西省', '赣州市', '南康市', '360782'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2202, '江西省', '吉安市', '市辖区', '360801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2203, '江西省', '吉安市', '吉州区', '360802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2204, '江西省', '吉安市', '青原区', '360803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2205, '江西省', '吉安市', '吉安县', '360821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2206, '江西省', '吉安市', '吉水县', '360822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2207, '江西省', '吉安市', '峡江县', '360823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2208, '江西省', '吉安市', '新干县', '360824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2209, '江西省', '吉安市', '永丰县', '360825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2210, '江西省', '吉安市', '泰和县', '360826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2211, '江西省', '吉安市', '遂川县', '360827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2212, '江西省', '吉安市', '万安县', '360828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2213, '江西省', '吉安市', '安福县', '360829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2214, '江西省', '吉安市', '永新县', '360830'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2215, '江西省', '吉安市', '井冈山市', '360881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2216, '江西省', '宜春市', '市辖区', '360901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2217, '江西省', '宜春市', '袁州区', '360902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2218, '江西省', '宜春市', '奉新县', '360921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2219, '江西省', '宜春市', '万载县', '360922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2220, '江西省', '宜春市', '上高县', '360923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2221, '江西省', '宜春市', '宜丰县', '360924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2222, '江西省', '宜春市', '靖安县', '360925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2223, '江西省', '宜春市', '铜鼓县', '360926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2224, '江西省', '宜春市', '丰城市', '360981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2225, '江西省', '宜春市', '樟树市', '360982'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2226, '江西省', '宜春市', '高安市', '360983'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2227, '江西省', '抚州市', '市辖区', '361001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2228, '江西省', '抚州市', '临川区', '361002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2229, '江西省', '抚州市', '南城县', '361021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2230, '江西省', '抚州市', '黎川县', '361022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2231, '江西省', '抚州市', '南丰县', '361023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2232, '江西省', '抚州市', '崇仁县', '361024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2233, '江西省', '抚州市', '乐安县', '361025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2234, '江西省', '抚州市', '宜黄县', '361026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2235, '江西省', '抚州市', '金溪县', '361027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2236, '江西省', '抚州市', '资溪县', '361028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2237, '江西省', '抚州市', '东乡县', '361029'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2238, '江西省', '抚州市', '广昌县', '361030'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2239, '江西省', '吉安地区', '吉安市', '362401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2240, '江西省', '吉安地区', '井冈山市', '362402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2241, '江西省', '吉安地区', '吉安县', '362421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2242, '江西省', '吉安地区', '吉水县', '362422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2243, '江西省', '吉安地区', '峡江县', '362423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2244, '江西省', '吉安地区', '新干县', '362424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2245, '江西省', '吉安地区', '永丰县', '362425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2246, '江西省', '吉安地区', '泰和县', '362426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2247, '江西省', '吉安地区', '遂川县', '362427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2248, '江西省', '吉安地区', '万安县', '362428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2249, '江西省', '吉安地区', '安福县', '362429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2250, '江西省', '吉安地区', '永新县', '362430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2251, '江西省', '吉安地区', '莲花县', '362431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2252, '江西省', '吉安地区', '宁冈县', '362432'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2253, '江西省', '吉安地区', '井岗山县', '362433'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2254, '江西省', '抚州地区', '临川市', '362501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2255, '江西省', '抚州地区', '临川市', '362502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2256, '江西省', '抚州地区', '临川县', '362521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2257, '江西省', '抚州地区', '南城县', '362522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2258, '江西省', '抚州地区', '黎川县', '362523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2259, '江西省', '抚州地区', '南丰县', '362524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2260, '江西省', '抚州地区', '崇仁县', '362525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2261, '江西省', '抚州地区', '乐安县', '362526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2262, '江西省', '抚州地区', '宜黄县', '362527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2263, '江西省', '抚州地区', '金溪县', '362528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2264, '江西省', '抚州地区', '资溪县', '362529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2265, '江西省', '抚州地区', '进贤县', '362530'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2266, '江西省', '抚州地区', '东乡县', '362531'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2267, '江西省', '抚州地区', '广昌县', '362532'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2268, '江西省', '九江地区', '九江县', '362621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2269, '江西省', '九江地区', '瑞昌县', '362622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2270, '江西省', '九江地区', '武宁县', '362623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2271, '江西省', '九江地区', '修水县', '362624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2272, '江西省', '九江地区', '永修县', '362625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2273, '江西省', '九江地区', '德安县', '362626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2274, '江西省', '九江地区', '星子县', '362627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2275, '江西省', '九江地区', '都昌县', '362628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2276, '江西省', '九江地区', '湖口县', '362629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2277, '江西省', '九江地区', '彭泽县', '362630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2278, '山东省', '青岛市', '崂山区', '370212'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2279, '山东省', '青岛市', '李沧区', '370213'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2280, '山东省', '青岛市', '城阳区', '370214'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2281, '山东省', '青岛市', '市区', '370220'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2282, '山东省', '青岛市', '崂山县', '370221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2283, '山东省', '青岛市', '即墨县', '370222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2284, '山东省', '青岛市', '胶南县', '370223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2285, '山东省', '青岛市', '胶县', '370224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2286, '山东省', '青岛市', '莱西县', '370225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2287, '山东省', '青岛市', '平度县', '370226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2288, '山东省', '青岛市', '胶州市', '370281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2289, '山东省', '青岛市', '即墨市', '370282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2290, '山东省', '青岛市', '平度市', '370283'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2291, '山东省', '青岛市', '胶南市', '370284'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2292, '山东省', '青岛市', '莱西市', '370285'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2293, '山东省', '青岛市', '市辖区', '370201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2294, '山东省', '青岛市', '市南区', '370202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2295, '山东省', '青岛市', '市北区', '370203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2296, '山东省', '青岛市', '台东区', '370204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2297, '山东省', '青岛市', '四方区', '370205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2298, '山东省', '青岛市', '沧口区', '370206'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2299, '山东省', '青岛市', '黄岛区', '370211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2300, '山东省', '淄博市', '市辖区', '370301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2301, '山东省', '淄博市', '淄川区', '370302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2302, '山东省', '淄博市', '张店区', '370303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2303, '山东省', '淄博市', '博山区', '370304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2304, '山东省', '淄博市', '临淄区', '370305'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2305, '山东省', '淄博市', '周村区', '370306'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2306, '山东省', '淄博市', '桓台县', '370321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2307, '山东省', '淄博市', '高青县', '370322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2308, '山东省', '淄博市', '沂源县', '370323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2309, '山东省', '枣庄市', '市辖区', '370401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2310, '山东省', '枣庄市', '市中区', '370402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2311, '山东省', '枣庄市', '薛城区', '370403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2312, '山东省', '枣庄市', '峄城区', '370404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2313, '山东省', '枣庄市', '台儿庄区', '370405'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2314, '山东省', '枣庄市', '山亭区', '370406'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2315, '山东省', '枣庄市', '市区', '370420'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2316, '山东省', '枣庄市', '滕县', '370421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2317, '山东省', '枣庄市', '滕州市', '370481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2318, '山东省', '东营市', '市辖区', '370501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2319, '山东省', '东营市', '东营区', '370502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2320, '山东省', '东营市', '河口区', '370503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2321, '山东省', '东营市', '垦利县', '370521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2322, '山东省', '东营市', '利津县', '370522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2323, '山东省', '东营市', '广饶县', '370523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2324, '山东省', '烟台市', '市辖区', '370601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2325, '山东省', '烟台市', '芝罘区', '370602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2326, '山东省', '烟台市', '福山区', '370611'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2327, '山东省', '烟台市', '牟平区', '370612'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2328, '山东省', '烟台市', '莱山区', '370613'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2329, '山东省', '烟台市', '龙口市', '370619'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2330, '山东省', '烟台市', '威海市', '370620'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2331, '山东省', '烟台市', '蓬莱县', '370622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2332, '山东省', '烟台市', '黄县', '370623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2333, '山东省', '烟台市', '招远县', '370624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2334, '山东省', '烟台市', '掖县', '370625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2335, '山东省', '烟台市', '莱阳县', '370627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2336, '山东省', '烟台市', '栖霞县', '370628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2337, '山东省', '烟台市', '海阳县', '370629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2338, '山东省', '烟台市', '牟平县', '370631'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2339, '山东省', '烟台市', '文登县', '370632'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2340, '山东省', '烟台市', '荣城县', '370633'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2341, '山东省', '烟台市', '长岛县', '370634'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2342, '山东省', '烟台市', '龙口市', '370681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2343, '山东省', '烟台市', '莱阳市', '370682'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2344, '山东省', '烟台市', '莱州市', '370683'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2345, '山东省', '烟台市', '蓬莱市', '370684'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2346, '山东省', '烟台市', '招远市', '370685'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2347, '山东省', '烟台市', '栖霞市', '370686'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2348, '山东省', '烟台市', '海阳市', '370687'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2349, '山东省', '潍坊市', '市辖区', '370701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2350, '山东省', '潍坊市', '潍城区', '370702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2351, '山东省', '潍坊市', '寒亭区', '370703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2352, '山东省', '潍坊市', '坊子区', '370704'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2353, '山东省', '潍坊市', '奎文区', '370705'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2354, '山东省', '潍坊市', '青州市', '370719'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2355, '山东省', '潍坊市', '益都县', '370721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2356, '山东省', '潍坊市', '安丘县', '370722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2357, '山东省', '潍坊市', '寿光县', '370723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2358, '山东省', '潍坊市', '临朐县', '370724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2359, '山东省', '潍坊市', '昌乐县', '370725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2360, '山东省', '潍坊市', '昌邑县', '370726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2361, '山东省', '潍坊市', '高密县', '370727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2362, '山东省', '潍坊市', '诸城县', '370728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2363, '山东省', '潍坊市', '五莲县', '370729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2364, '山东省', '潍坊市', '青州市', '370781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2365, '山东省', '潍坊市', '诸城市', '370782'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2366, '山东省', '潍坊市', '寿光市', '370783'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2367, '山东省', '潍坊市', '安丘市', '370784'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2368, '山东省', '潍坊市', '高密市', '370785'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2369, '山东省', '潍坊市', '昌邑市', '370786'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2370, '山东省', '济宁市', '市辖区', '370801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2371, '山东省', '济宁市', '市中区', '370802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2372, '山东省', '济宁市', '任城区', '370811'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2373, '山东省', '济宁市', '曲阜市', '370819'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2374, '山东省', '济宁市', '兖州县', '370822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2375, '山东省', '济宁市', '曲阜县', '370823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2376, '山东省', '济宁市', '邹县', '370825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2377, '山东省', '济宁市', '微山县', '370826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2378, '山东省', '济宁市', '鱼台县', '370827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2379, '山东省', '济宁市', '金乡县', '370828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2380, '山东省', '济宁市', '嘉祥县', '370829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2381, '山东省', '济宁市', '汶上县', '370830'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2382, '山东省', '济宁市', '泗水县', '370831'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2383, '山东省', '济宁市', '梁山县', '370832'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2384, '山东省', '济宁市', '曲阜市', '370881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2385, '山东省', '济宁市', '兖州市', '370882'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2386, '山东省', '济宁市', '邹城市', '370883'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2387, '山东省', '泰安市', '市辖区', '370901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2388, '山东省', '泰安市', '泰山区', '370902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2389, '山东省', '泰安市', '岱岳区', '370903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2390, '山东省', '泰安市', '郊区', '370911'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2391, '山东省', '泰安市', '莱芜市', '370919'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2392, '山东省', '泰安市', '新泰市', '370920'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2393, '山东省', '泰安市', '宁阳县', '370921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2394, '山东省', '泰安市', '肥城县', '370922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2395, '山东省', '泰安市', '东平县', '370923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2396, '山东省', '泰安市', '莱芜市', '370981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2397, '山东省', '泰安市', '新泰市', '370982'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2398, '山东省', '泰安市', '肥城市', '370983'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2399, '山东省', '威海市', '市辖区', '371001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2400, '山东省', '威海市', '环翠区', '371002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2401, '山东省', '威海市', '乳山县', '371021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2402, '山东省', '威海市', '文登市', '371081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2403, '山东省', '威海市', '荣成市', '371082'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2404, '山东省', '威海市', '乳山市', '371083'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2405, '山东省', '日照市', '市辖区', '371101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2406, '山东省', '日照市', '东港区', '371102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2407, '山东省', '日照市', '岚山区', '371103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2408, '山东省', '日照市', '五莲县', '371121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2409, '山东省', '日照市', '莒县', '371122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2410, '山东省', '莱芜市', '市辖区', '371201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2411, '山东省', '莱芜市', '莱城区', '371202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2412, '山东省', '莱芜市', '钢城区', '371203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2413, '山东省', '临沂市', '市辖区', '371301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2414, '山东省', '临沂市', '兰山区', '371302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2415, '山东省', '临沂市', '罗庄区', '371311'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2416, '山东省', '临沂市', '河东区', '371312'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2417, '山东省', '临沂市', '沂南县', '371321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2418, '山东省', '临沂市', '郯城县', '371322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2419, '山东省', '临沂市', '沂水县', '371323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2420, '山东省', '临沂市', '苍山县', '371324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2421, '山东省', '临沂市', '费县', '371325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2422, '山东省', '临沂市', '平邑县', '371326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2423, '山东省', '临沂市', '莒南县', '371327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2424, '山东省', '临沂市', '蒙阴县', '371328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2425, '山东省', '临沂市', '临沭县', '371329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2426, '山东省', '德州市', '市辖区', '371401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2427, '山东省', '德州市', '德城区', '371402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2428, '山东省', '德州市', '陵县', '371421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2429, '山东省', '德州市', '宁津县', '371422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2430, '山东省', '德州市', '庆云县', '371423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2431, '山东省', '德州市', '临邑县', '371424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2432, '山东省', '德州市', '齐河县', '371425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2433, '山东省', '德州市', '平原县', '371426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2434, '山东省', '德州市', '夏津县', '371427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2435, '山东省', '德州市', '武城县', '371428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2436, '山东省', '德州市', '乐陵市', '371481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2437, '山东省', '德州市', '禹城市', '371482'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2438, '山东省', '聊城市', '市辖区', '371501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2439, '山东省', '聊城市', '东昌府区', '371502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2440, '山东省', '聊城市', '阳谷县', '371521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2441, '山东省', '聊城市', '莘县', '371522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2442, '山东省', '聊城市', '茌平县', '371523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2443, '山东省', '聊城市', '东阿县', '371524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2444, '山东省', '聊城市', '冠县', '371525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2445, '山东省', '聊城市', '高唐县', '371526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2446, '山东省', '聊城市', '临清市', '371581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2447, '山东省', '滨州市', '市辖区', '371601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2448, '山东省', '滨州市', '滨城区', '371602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2449, '山东省', '滨州市', '惠民县', '371621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2450, '山东省', '滨州市', '阳信县', '371622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2451, '山东省', '滨州市', '无棣县', '371623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2452, '山东省', '滨州市', '沾化县', '371624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2453, '山东省', '滨州市', '博兴县', '371625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2454, '山东省', '滨州市', '邹平县', '371626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2455, '山东省', '济南市', '市辖区', '370101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2456, '山东省', '济南市', '历下区', '370102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2457, '山东省', '济南市', '市中区', '370103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2458, '山东省', '济南市', '槐荫区', '370104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2459, '山东省', '济南市', '天桥区', '370105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2460, '山东省', '济南市', '郊区', '370111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2461, '山东省', '济南市', '历城区', '370112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2462, '山东省', '济南市', '长清区', '370113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2463, '山东省', '济南市', '市区', '370120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2464, '山东省', '济南市', '历城县', '370121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2465, '山东省', '济南市', '章丘县', '370122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2466, '山东省', '济南市', '长清县', '370123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2467, '山东省', '济南市', '平阴县', '370124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2468, '山东省', '济南市', '济阳县', '370125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2469, '山东省', '济南市', '商河县', '370126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2470, '山东省', '济南市', '章丘市', '370181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2471, '山东省', '菏泽市', '市辖区', '371701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2472, '山东省', '菏泽市', '牡丹区', '371702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2473, '山东省', '菏泽市', '曹县', '371721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2474, '山东省', '菏泽市', '单县', '371722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2475, '山东省', '菏泽市', '成武县', '371723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2476, '山东省', '菏泽市', '巨野县', '371724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2477, '山东省', '菏泽市', '郓城县', '371725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2478, '山东省', '菏泽市', '鄄城县', '371726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2479, '山东省', '菏泽市', '定陶县', '371727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2480, '山东省', '菏泽市', '东明县', '371728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2481, '山东省', '烟台地区', '烟台市', '372101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2482, '山东省', '烟台地区', '威海市', '372102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2483, '山东省', '烟台地区', '福山县', '372121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2484, '山东省', '烟台地区', '蓬莱县', '372122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2485, '山东省', '烟台地区', '招远县', '372124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2486, '山东省', '烟台地区', '掖县', '372125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2487, '山东省', '烟台地区', '莱西县', '372126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2488, '山东省', '烟台地区', '莱阳县', '372127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2489, '山东省', '烟台地区', '栖霞县', '372128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2490, '山东省', '烟台地区', '海阳县', '372129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2491, '山东省', '烟台地区', '乳山县', '372130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2492, '山东省', '烟台地区', '牟平县', '372131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2493, '山东省', '烟台地区', '文登县', '372132'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2494, '山东省', '烟台地区', '荣城县', '372133'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2495, '山东省', '烟台地区', '长岛县', '372134'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2496, '山东省', '潍坊地区', '潍坊市', '372201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2497, '山东省', '潍坊地区', '益都县', '372221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2498, '山东省', '潍坊地区', '安丘县', '372222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2499, '山东省', '潍坊地区', '寿光县', '372223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2500, '山东省', '潍坊地区', '临朐县', '372224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2501, '山东省', '潍坊地区', '昌乐县', '372225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2502, '山东省', '潍坊地区', '昌邑县', '372226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2503, '山东省', '潍坊地区', '高密县', '372227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2504, '山东省', '潍坊地区', '诸城县', '372228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2505, '山东省', '潍坊地区', '平度县', '372230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2506, '山东省', '潍坊地区', '潍县', '372231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2507, '山东省', '滨州地区', '滨州市', '372301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2508, '山东省', '滨州地区', '惠民县', '372321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2509, '山东省', '滨州地区', '滨县', '372322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2510, '山东省', '滨州地区', '阳信县', '372323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2511, '山东省', '滨州地区', '无棣县', '372324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2512, '山东省', '滨州地区', '沾化县', '372325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2513, '山东省', '滨州地区', '利津县', '372326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2514, '山东省', '滨州地区', '广饶县', '372327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2515, '山东省', '滨州地区', '博兴县', '372328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2516, '山东省', '滨州地区', '桓台县', '372329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2517, '山东省', '滨州地区', '邹平县', '372330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2518, '山东省', '滨州地区', '高青县', '372331'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2519, '山东省', '滨州地区', '垦利县', '372332'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2520, '山东省', '德州地区', '德州市', '372401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2521, '山东省', '德州地区', '乐陵市', '372402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2522, '山东省', '德州地区', '禹城市', '372403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2523, '山东省', '德州地区', '陵县', '372421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2524, '山东省', '德州地区', '平原县', '372422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2525, '山东省', '德州地区', '夏津县', '372423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2526, '山东省', '德州地区', '武城县', '372424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2527, '山东省', '德州地区', '齐河县', '372425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2528, '山东省', '德州地区', '禹城县', '372426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2529, '山东省', '德州地区', '乐陵县', '372427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2530, '山东省', '德州地区', '临邑县', '372428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2531, '山东省', '德州地区', '商河县', '372429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2532, '山东省', '德州地区', '济阳县', '372430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2533, '山东省', '德州地区', '宁津县', '372431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2534, '山东省', '德州地区', '庆云县', '372432'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2535, '山东省', '聊城市', '聊城市', '372501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2536, '山东省', '聊城市', '东昌府区', '372502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2537, '山东省', '聊城市', '阳谷县', '372521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2538, '山东省', '聊城市', '莘县', '372522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2539, '山东省', '聊城市', '茌平县', '372523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2540, '山东省', '聊城市', '东阿县', '372524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2541, '山东省', '聊城市', '冠县', '372525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2542, '山东省', '聊城市', '高唐县', '372526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2543, '山东省', '聊城市', '高唐县', '372527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2544, '山东省', '聊城市', '临清县', '372528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2545, '山东省', '聊城市', '临清市', '372581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2546, '山东省', '泰安地区', '泰安市', '372601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2547, '山东省', '泰安地区', '莱芜市', '372602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2548, '山东省', '泰安地区', '新泰市', '372603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2549, '山东省', '泰安地区', '莱芜县', '372622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2550, '山东省', '泰安地区', '新泰县', '372623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2551, '山东省', '泰安地区', '宁阳县', '372624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2552, '山东省', '泰安地区', '肥城县', '372625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2553, '山东省', '泰安地区', '东平县', '372626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2554, '山东省', '泰安地区', '平阴县', '372627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2555, '山东省', '泰安地区', '新汶县', '372628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2556, '山东省', '泰安地区', '泗水县', '372630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2557, '山东省', '济宁地区', '济宁市', '372701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2558, '山东省', '济宁地区', '兖州县', '372722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2559, '山东省', '济宁地区', '曲阜县', '372723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2560, '山东省', '济宁地区', '泗水县', '372724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2561, '山东省', '济宁地区', '邹县', '372725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2562, '山东省', '济宁地区', '微山县', '372726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2563, '山东省', '济宁地区', '鱼台县', '372727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2564, '山东省', '济宁地区', '金乡县', '372728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2565, '山东省', '济宁地区', '嘉祥县', '372729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2566, '山东省', '临沂地区', '临沂市', '372801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2567, '山东省', '临沂地区', '日照市', '372802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2568, '山东省', '临沂地区', '临沂县', '372821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2569, '山东省', '临沂地区', '郯城县', '372822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2570, '山东省', '临沂地区', '苍山县', '372823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2571, '山东省', '临沂地区', '莒南县', '372824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2572, '山东省', '临沂地区', '日照县', '372825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2573, '山东省', '临沂地区', '莒县', '372826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2574, '山东省', '临沂地区', '沂水县', '372827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2575, '山东省', '临沂地区', '沂源县', '372828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2576, '山东省', '临沂地区', '蒙阴县', '372829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2577, '山东省', '临沂地区', '平邑县', '372830'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2578, '山东省', '临沂地区', '费县', '372831'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2579, '山东省', '临沂地区', '沂南县', '372832'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2580, '山东省', '临沂地区', '临沭县', '372833'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2581, '山东省', '菏泽地区', '菏泽市', '372901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2582, '山东省', '菏泽地区', '菏泽县', '372921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2583, '山东省', '菏泽地区', '曹县', '372922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2584, '山东省', '菏泽地区', '定陶县', '372923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2585, '山东省', '菏泽地区', '成武县', '372924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2586, '山东省', '菏泽地区', '单县', '372925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2587, '山东省', '菏泽地区', '巨野县', '372926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2588, '山东省', '菏泽地区', '粱山县', '372927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2589, '山东省', '菏泽地区', '郓城县', '372928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2590, '山东省', '菏泽地区', '鄄城县', '372929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2591, '山东省', '菏泽地区', '东明县', '372930'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2592, '山东省', NULL, '青州市', '379001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2593, '山东省', NULL, '龙口市', '379002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2594, '山东省', NULL, '曲阜市', '379003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2595, '山东省', NULL, '莱芜市', '379004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2596, '山东省', NULL, '新泰市', '379005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2597, '山东省', NULL, '胶州市', '379006'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2598, '山东省', NULL, '诸城市', '379007'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2599, '山东省', NULL, '莱阳市', '379008'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2600, '山东省', NULL, '莱州市', '379009'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2601, '山东省', NULL, '滕州市', '379010'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2602, '山东省', NULL, '文登市', '379011'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2603, '山东省', NULL, '荣城市', '379012'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2604, '河南省', '鹤壁市', '鹤山区', '410602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2605, '河南省', '鹤壁市', '山城区', '410603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2606, '河南省', '鹤壁市', '淇滨区', '410611'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2607, '河南省', '鹤壁市', '浚县', '410621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2608, '河南省', '鹤壁市', '淇县', '410622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2609, '河南省', '鹤壁市', '市辖区', '410601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2610, '河南省', '新乡市', '市辖区', '410701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2611, '河南省', '新乡市', '红旗区', '410702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2612, '河南省', '新乡市', '新华区', '410703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2613, '河南省', '新乡市', '北站区', '410704'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2614, '河南省', '新乡市', '郊区', '410711'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2615, '河南省', '新乡市', '新乡县', '410721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2616, '河南省', '新乡市', '汲县', '410722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2617, '河南省', '新乡市', '辉县', '410723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2618, '河南省', '新乡市', '获嘉县', '410724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2619, '河南省', '新乡市', '原阳县', '410725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2620, '河南省', '新乡市', '延津县', '410726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2621, '河南省', '新乡市', '封丘县', '410727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2622, '河南省', '新乡市', '长垣县', '410728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2623, '河南省', '新乡市', '卫辉市', '410781'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2624, '河南省', '新乡市', '辉县市', '410782'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2625, '河南省', '焦作市', '市辖区', '410801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2626, '河南省', '焦作市', '解放区', '410802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2627, '河南省', '焦作市', '中站区', '410803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2628, '河南省', '焦作市', '马村区', '410804'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2629, '河南省', '焦作市', '山阳区', '410811'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2630, '河南省', '焦作市', '修武县', '410821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2631, '河南省', '焦作市', '博爱县', '410822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2632, '河南省', '焦作市', '武陟县', '410823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2633, '河南省', '焦作市', '沁阳县', '410824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2634, '河南省', '焦作市', '温县', '410825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2635, '河南省', '焦作市', '孟县', '410826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2636, '河南省', '焦作市', '济源县', '410827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2637, '河南省', '焦作市', '济源市', '410881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2638, '河南省', '焦作市', '沁阳市', '410882'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2639, '河南省', '焦作市', '孟州市', '410883'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2640, '河南省', '濮阳市', '市辖区', '410901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2641, '河南省', '濮阳市', '市区', '410902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2642, '河南省', '濮阳市', '滑县', '410921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2643, '河南省', '濮阳市', '清丰县', '410922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2644, '河南省', '濮阳市', '南乐县', '410923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2645, '河南省', '濮阳市', '内黄县', '410924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2646, '河南省', '濮阳市', '长垣县', '410925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2647, '河南省', '濮阳市', '范县', '410926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2648, '河南省', '濮阳市', '台前县', '410927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2649, '河南省', '濮阳市', '濮阳县', '410928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2650, '河南省', '许昌市', '市辖区', '411001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2651, '河南省', '许昌市', '魏都区', '411002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2652, '河南省', '许昌市', '禹县', '411021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2653, '河南省', '许昌市', '长葛县', '411022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2654, '河南省', '许昌市', '许昌县', '411023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2655, '河南省', '许昌市', '鄢陵县', '411024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2656, '河南省', '许昌市', '襄城县', '411025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2657, '河南省', '许昌市', '禹州市', '411081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2658, '河南省', '许昌市', '长葛市', '411082'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2659, '河南省', '漯河市', '市辖区', '411101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2660, '河南省', '漯河市', '源汇区', '411102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2661, '河南省', '漯河市', '郾城区', '411103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2662, '河南省', '漯河市', '召陵区', '411104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2663, '河南省', '漯河市', '舞阳县', '411121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2664, '河南省', '漯河市', '临颍县', '411122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2665, '河南省', '漯河市', '郾城县', '411123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2666, '河南省', '三门峡市', '市辖区', '411201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2667, '河南省', '三门峡市', '湖滨区', '411202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2668, '河南省', '三门峡市', '渑池县', '411221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2669, '河南省', '三门峡市', '陕县', '411222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2670, '河南省', '三门峡市', '灵宝县', '411223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2671, '河南省', '三门峡市', '卢氏县', '411224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2672, '河南省', '三门峡市', '义马市', '411281'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2673, '河南省', '三门峡市', '灵宝市', '411282'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2674, '河南省', '南阳市', '市辖区', '411301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2675, '河南省', '南阳市', '宛城区', '411302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2676, '河南省', '南阳市', '卧龙区', '411303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2677, '河南省', '南阳市', '南召县', '411321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2678, '河南省', '南阳市', '方城县', '411322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2679, '河南省', '南阳市', '西峡县', '411323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2680, '河南省', '南阳市', '镇平县', '411324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2681, '河南省', '南阳市', '内乡县', '411325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2682, '河南省', '南阳市', '淅川县', '411326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2683, '河南省', '南阳市', '社旗县', '411327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2684, '河南省', '南阳市', '唐河县', '411328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2685, '河南省', '南阳市', '新野县', '411329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2686, '河南省', '南阳市', '桐柏县', '411330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2687, '河南省', '南阳市', '邓州市', '411381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2688, '河南省', '郑州市', '市辖区', '410101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2689, '河南省', '郑州市', '中原区', '410102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2690, '河南省', '郑州市', '二七区', '410103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2691, '河南省', '郑州市', '管城回族区', '410104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2692, '河南省', '郑州市', '金水区', '410105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2693, '河南省', '郑州市', '上街区', '410106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2694, '河南省', '郑州市', '新密区', '410107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2695, '河南省', '郑州市', '邙山区', '410108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2696, '河南省', '郑州市', '金海区', '410111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2697, '河南省', '郑州市', '郊区', '410112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2698, '河南省', '郑州市', '市区', '410120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2699, '河南省', '郑州市', '荥阳县', '410121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2700, '河南省', '郑州市', '中牟县', '410122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2701, '河南省', '郑州市', '新郑县', '410123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2702, '河南省', '郑州市', '巩县', '410124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2703, '河南省', '郑州市', '登封县', '410125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2704, '河南省', '郑州市', '密县', '410126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2705, '河南省', '郑州市', '巩义市', '410181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2706, '河南省', '郑州市', '荥阳市', '410182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2707, '河南省', '郑州市', '新密市', '410183'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2708, '河南省', '郑州市', '新郑市', '410184'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2709, '河南省', '郑州市', '登封市', '410185'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2710, '河南省', '开封市', '市辖区', '410201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2711, '河南省', '开封市', '龙亭区', '410202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2712, '河南省', '开封市', '顺河回族区', '410203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2713, '河南省', '开封市', '鼓楼区', '410204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2714, '河南省', '开封市', '禹王台区', '410205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2715, '河南省', '开封市', '金明区', '410211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2716, '河南省', '开封市', '杞县', '410221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2717, '河南省', '开封市', '通许县', '410222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2718, '河南省', '开封市', '尉氏县', '410223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2719, '河南省', '开封市', '开封县', '410224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2720, '河南省', '开封市', '兰考县', '410225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2721, '河南省', '洛阳市', '市辖区', '410301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2722, '河南省', '洛阳市', '老城区', '410302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2723, '河南省', '洛阳市', '西工区', '410303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2724, '河南省', '洛阳市', '廛河回族区', '410304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2725, '河南省', '洛阳市', '涧西区', '410305'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2726, '河南省', '洛阳市', '吉利区', '410306'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2727, '河南省', '洛阳市', '洛龙区', '410307'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2728, '河南省', '洛阳市', '郊区', '410311'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2729, '河南省', '洛阳市', '偃师县', '410321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2730, '河南省', '洛阳市', '孟津县', '410322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2731, '河南省', '洛阳市', '新安县', '410323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2732, '河南省', '洛阳市', '栾川县', '410324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2733, '河南省', '洛阳市', '嵩县', '410325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2734, '河南省', '洛阳市', '汝阳县', '410326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2735, '河南省', '洛阳市', '宜阳县', '410327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2736, '河南省', '洛阳市', '洛宁县', '410328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2737, '河南省', '洛阳市', '伊川县', '410329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2738, '河南省', '洛阳市', '偃师市', '410381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2739, '河南省', '平顶山市', '市辖区', '410401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2740, '河南省', '平顶山市', '新华区', '410402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2741, '河南省', '平顶山市', '卫东区', '410403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2742, '河南省', '平顶山市', '石龙区', '410404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2743, '河南省', '平顶山市', '湛河区', '410411'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2744, '河南省', '平顶山市', '舞钢区', '410412'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2745, '河南省', '平顶山市', '宝丰县', '410421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2746, '河南省', '平顶山市', '叶县', '410422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2747, '河南省', '平顶山市', '鲁山县', '410423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2748, '河南省', '平顶山市', '临汝县', '410424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2749, '河南省', '平顶山市', '郏县', '410425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2750, '河南省', '平顶山市', '襄城县', '410426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2751, '河南省', '平顶山市', '舞钢市', '410481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2752, '河南省', '平顶山市', '汝州市', '410482'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2753, '河南省', '安阳市', '市辖区', '410501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2754, '河南省', '安阳市', '文峰区', '410502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2755, '河南省', '安阳市', '北关区', '410503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2756, '河南省', '安阳市', '铁西区', '410504'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2757, '河南省', '安阳市', '殷都区', '410505'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2758, '河南省', '安阳市', '龙安区', '410506'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2759, '河南省', '安阳市', '郊区', '410511'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2760, '河南省', '安阳市', '林县', '410521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2761, '河南省', '安阳市', '安阳县', '410522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2762, '河南省', '安阳市', '汤阴县', '410523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2763, '河南省', '安阳市', '淇县', '410524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2764, '河南省', '安阳市', '浚县', '410525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2765, '河南省', '安阳市', '滑县', '410526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2766, '河南省', '安阳市', '内黄县', '410527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2767, '河南省', '安阳市', '林州市', '410581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2768, '河南省', '商丘市', '市辖区', '411401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2769, '河南省', '商丘市', '梁园区', '411402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2770, '河南省', '商丘市', '睢阳区', '411403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2771, '河南省', '商丘市', '民权县', '411421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2772, '河南省', '商丘市', '睢县', '411422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2773, '河南省', '商丘市', '宁陵县', '411423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2774, '河南省', '商丘市', '柘城县', '411424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2775, '河南省', '商丘市', '虞城县', '411425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2776, '河南省', '商丘市', '夏邑县', '411426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2777, '河南省', '商丘市', '永城市', '411481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2778, '河南省', '信阳市', '市辖区', '411501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2779, '河南省', '信阳市', '师河区', '411502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2780, '河南省', '信阳市', '平桥区', '411503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2781, '河南省', '信阳市', '罗山县', '411521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2782, '河南省', '信阳市', '光山县', '411522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2783, '河南省', '信阳市', '新县', '411523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2784, '河南省', '信阳市', '商城县', '411524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2785, '河南省', '信阳市', '固始县', '411525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2786, '河南省', '信阳市', '潢川县', '411526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2787, '河南省', '信阳市', '淮滨县', '411527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2788, '河南省', '信阳市', '息县', '411528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2789, '河南省', '周口市', '市辖区', '411601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2790, '河南省', '周口市', '川汇区', '411602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2791, '河南省', '周口市', '扶沟县', '411621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2792, '河南省', '周口市', '西华县', '411622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2793, '河南省', '周口市', '商水县', '411623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2794, '河南省', '周口市', '沈丘县', '411624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2795, '河南省', '周口市', '郸城县', '411625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2796, '河南省', '周口市', '淮阳县', '411626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2797, '河南省', '周口市', '太康县', '411627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2798, '河南省', '周口市', '鹿邑县', '411628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2799, '河南省', '周口市', '项城市', '411681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2800, '河南省', '驻马店市', '市辖区', '411701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2801, '河南省', '驻马店市', '驿城区', '411702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2802, '河南省', '驻马店市', '西平县', '411721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2803, '河南省', '驻马店市', '上蔡县', '411722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2804, '河南省', '驻马店市', '平舆县', '411723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2805, '河南省', '驻马店市', '正阳县', '411724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2806, '河南省', '驻马店市', '确山县', '411725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2807, '河南省', '驻马店市', '泌阳县', '411726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2808, '河南省', '驻马店市', '汝南县', '411727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2809, '河南省', '驻马店市', '遂平县', '411728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2810, '河南省', '驻马店市', '新蔡县', '411729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2811, '河南省', '商丘地区', '商丘市', '412301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2812, '河南省', '商丘地区', '永城市', '412302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2813, '河南省', '商丘地区', '虞城县', '412321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2814, '河南省', '商丘地区', '商丘县', '412322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2815, '河南省', '商丘地区', '民权县', '412323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2816, '河南省', '商丘地区', '宁陵县', '412324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2817, '河南省', '商丘地区', '睢县', '412325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2818, '河南省', '商丘地区', '夏邑县', '412326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2819, '河南省', '商丘地区', '柘城县', '412327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2820, '河南省', '商丘地区', '永城县', '412328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2821, '河南省', '开封地区', '杞县', '412421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2822, '河南省', '开封地区', '通许县', '412422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2823, '河南省', '开封地区', '尉氏县', '412423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2824, '河南省', '开封地区', '开封县', '412424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2825, '河南省', '开封地区', '中牟县', '412425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2826, '河南省', '开封地区', '新郑县', '412426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2827, '河南省', '开封地区', '巩县', '412427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2828, '河南省', '开封地区', '登封县', '412428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2829, '河南省', '开封地区', '密县', '412429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2830, '河南省', '开封地区', '兰考县', '412430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2831, '河南省', '三门峡市', '三门峡市', '412501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2832, '河南省', '三门峡市', '义马市', '412502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2833, '河南省', '三门峡市', '偃师县', '412521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2834, '河南省', '三门峡市', '孟津县', '412522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2835, '河南省', '三门峡市', '新安县', '412523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2836, '河南省', '三门峡市', '渑池县', '412524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2837, '河南省', '三门峡市', '陕县', '412525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2838, '河南省', '三门峡市', '灵宝县', '412526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2839, '河南省', '三门峡市', '伊川县', '412527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2840, '河南省', '三门峡市', '汝阳县', '412528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2841, '河南省', '三门峡市', '嵩县', '412529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2842, '河南省', '三门峡市', '洛宁县', '412530'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2843, '河南省', '三门峡市', '卢氏县', '412531'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2844, '河南省', '三门峡市', '栾川县', '412532'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2845, '河南省', '三门峡市', '临汝县', '412533'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2846, '河南省', '三门峡市', '宜阳县', '412534'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2847, '河南省', '周口地区', '周口市', '412701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2848, '河南省', '周口地区', '项城市', '412702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2849, '河南省', '周口地区', '扶沟县', '412721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2850, '河南省', '周口地区', '西华县', '412722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2851, '河南省', '周口地区', '商水县', '412723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2852, '河南省', '周口地区', '太康县', '412724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2853, '河南省', '周口地区', '鹿邑县', '412725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2854, '河南省', '周口地区', '郸城县', '412726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2855, '河南省', '周口地区', '淮阳县', '412727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2856, '河南省', '周口地区', '沈丘县', '412728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2857, '河南省', '驻马店地区', '驻马店市', '412801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2858, '河南省', '驻马店地区', '确山县', '412821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2859, '河南省', '驻马店地区', '泌阳县', '412822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2860, '河南省', '驻马店地区', '遂平县', '412823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2861, '河南省', '驻马店地区', '西平县', '412824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2862, '河南省', '驻马店地区', '上蔡县', '412825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2863, '河南省', '驻马店地区', '汝南县', '412826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2864, '河南省', '驻马店地区', '平舆县', '412827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2865, '河南省', '驻马店地区', '新蔡县', '412828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2866, '河南省', '驻马店地区', '正阳县', '412829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2867, '河南省', '南阳市', '卧龙区', '412901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2868, '河南省', '南阳市', '邓州市', '412902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2869, '河南省', '南阳市', '宛城区', '412903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2870, '河南省', '南阳市', '南召县', '412921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2871, '河南省', '南阳市', '方城县', '412922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2872, '河南省', '南阳市', '西峡县', '412923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2873, '河南省', '南阳市', '南阳县', '412924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2874, '河南省', '南阳市', '镇平县', '412925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2875, '河南省', '南阳市', '内乡县', '412926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2876, '河南省', '南阳市', '淅川县', '412927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2877, '河南省', '南阳市', '社旗县', '412928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2878, '河南省', '南阳市', '唐河县', '412929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2879, '河南省', '南阳市', '邓县', '412930'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2880, '河南省', '南阳市', '新野县', '412931'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2881, '河南省', '南阳市', '桐柏县', '412932'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2882, '河南省', '南阳市', '规划控制区', '412933'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2883, '河南省', '信阳地区', '信阳市', '413001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2884, '河南省', '信阳地区', '息县', '413021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2885, '河南省', '信阳地区', '淮滨县', '413022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2886, '河南省', '信阳地区', '平桥区', '413023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2887, '河南省', '信阳地区', '潢川县', '413024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2888, '河南省', '信阳地区', '光山县', '413025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2889, '河南省', '信阳地区', '固始县', '413026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2890, '河南省', '信阳地区', '商城县', '413027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2891, '河南省', '信阳地区', '罗山县', '413028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2892, '河南省', '信阳地区', '新县', '413029'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2893, '河南省', NULL, '许昌市', '412601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2894, '河南省', NULL, '漯河市', '412602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2895, '河南省', NULL, '长葛县', '412621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2896, '河南省', NULL, '禹县', '412622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2897, '河南省', NULL, '鄢陵县', '412623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2898, '河南省', NULL, '许昌县', '412624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2899, '河南省', NULL, '郏县', '412625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2900, '河南省', NULL, '临颍县', '412626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2901, '河南省', NULL, '襄城县', '412627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2902, '河南省', NULL, '宝丰县', '412628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2903, '河南省', NULL, '郾城县', '412629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2904, '河南省', NULL, '叶县', '412630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2905, '河南省', NULL, '鲁山县', '412631'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2906, '河南省', NULL, '舞阳县', '412632'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2907, '河南省', NULL, '义马市', '419001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2908, '河南省', NULL, '汝州市', '419002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2909, '河南省', NULL, '济源市', '419003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2910, '河南省', NULL, '禹州市', '419004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2911, '河南省', NULL, '卫辉市', '419005'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2912, '河南省', NULL, '辉县市', '419006'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2913, '湖北省', '宜昌市', '市辖区', '420501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2914, '湖北省', '宜昌市', '西陵区', '420502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2915, '湖北省', '宜昌市', '伍家岗区', '420503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2916, '湖北省', '宜昌市', '点军区', '420504'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2917, '湖北省', '宜昌市', '猇亭区', '420505'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2918, '湖北省', '宜昌市', '夷陵区', '420506'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2919, '湖北省', '宜昌市', '宜昌县', '420521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2920, '湖北省', '宜昌市', '枝江县', '420523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2921, '湖北省', '宜昌市', '远安县', '420525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2922, '湖北省', '宜昌市', '兴山县', '420526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2923, '湖北省', '宜昌市', '秭归县', '420527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2924, '湖北省', '宜昌市', '长阳土家族自治县', '420528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2925, '湖北省', '宜昌市', '五峰土家族自治县', '420529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2926, '湖北省', '宜昌市', '宜都市', '420581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2927, '湖北省', '宜昌市', '当阳市', '420582'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2928, '湖北省', '宜昌市', '枝江市', '420583'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2929, '湖北省', '襄樊市', '市辖区', '420601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2930, '湖北省', '襄樊市', '襄城区', '420602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2931, '湖北省', '襄樊市', '樊东区', '420603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2932, '湖北省', '襄樊市', '樊西区', '420604'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2933, '湖北省', '襄樊市', '郊区', '420605'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2934, '湖北省', '襄樊市', '樊城区', '420606'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2935, '湖北省', '襄樊市', '襄阳区', '420607'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2936, '湖北省', '襄樊市', '随州市', '420619'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2937, '湖北省', '襄樊市', '老河口市', '420620'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2938, '湖北省', '襄樊市', '襄阳县', '420621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2939, '湖北省', '襄樊市', '枣阳县', '420622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2940, '湖北省', '襄樊市', '宜城县', '420623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2941, '湖北省', '襄樊市', '南漳县', '420624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2942, '湖北省', '襄樊市', '谷城县', '420625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2943, '湖北省', '襄樊市', '保康县', '420626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2944, '湖北省', '襄樊市', '随州市', '420681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2945, '湖北省', '襄樊市', '老河口市', '420682'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2946, '湖北省', '襄樊市', '枣阳市', '420683'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2947, '湖北省', '襄樊市', '宜城市', '420684'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2948, '湖北省', '鄂州市', '市辖区', '420701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2949, '湖北省', '鄂州市', '梁子湖区', '420702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2950, '湖北省', '鄂州市', '华容区', '420703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2951, '湖北省', '鄂州市', '鄂城区', '420704'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2952, '湖北省', '荆门市', '市辖区', '420801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2953, '湖北省', '荆门市', '东宝区', '420802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2954, '湖北省', '荆门市', '沙洋区', '420803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2955, '湖北省', '荆门市', '掇刀区', '420804'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2956, '湖北省', '荆门市', '京山县', '420821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2957, '湖北省', '荆门市', '沙洋县', '420822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2958, '湖北省', '荆门市', '钟祥市', '420881'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2959, '湖北省', '孝感市', '市辖区', '420901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2960, '湖北省', '孝感市', '孝南区', '420902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2961, '湖北省', '孝感市', '孝昌县', '420921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2962, '湖北省', '孝感市', '大悟县', '420922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2963, '湖北省', '孝感市', '云梦县', '420923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2964, '湖北省', '孝感市', '应城市', '420981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2965, '湖北省', '孝感市', '安陆市', '420982'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2966, '湖北省', '孝感市', '广水市', '420983'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2967, '湖北省', '孝感市', '汉川市', '420984'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2968, '湖北省', '荆州市', '市辖区', '421001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2969, '湖北省', '荆州市', '沙市区', '421002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2970, '湖北省', '荆州市', '荆州区', '421003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2971, '湖北省', '荆州市', '江陵区', '421004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2972, '湖北省', '荆州市', '松滋县', '421021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2973, '湖北省', '荆州市', '公安县', '421022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2974, '湖北省', '荆州市', '监利县', '421023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2975, '湖北省', '荆州市', '江陵县', '421024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2976, '湖北省', '荆州市', '石首市', '421081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2977, '湖北省', '荆州市', '洪湖市', '421083'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2978, '湖北省', '荆州市', '松滋市', '421087'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2979, '湖北省', '黄冈市', '市辖区', '421101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2980, '湖北省', '黄冈市', '黄州区', '421102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2981, '湖北省', '黄冈市', '龙感湖管理区', '421103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2982, '湖北省', '黄冈市', '团风县', '421121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2983, '湖北省', '黄冈市', '红安县', '421122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2984, '湖北省', '黄冈市', '罗田县', '421123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2985, '湖北省', '黄冈市', '英山县', '421124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2986, '湖北省', '黄冈市', '浠水县', '421125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2987, '湖北省', '黄冈市', '蕲春县', '421126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2988, '湖北省', '黄冈市', '黄梅县', '421127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2989, '湖北省', '黄冈市', '麻城市', '421181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (2990, '湖北省', '黄冈市', '武穴市', '421182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (141, '河北省', '邢台市', '临西县', '130535'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (142, '河北省', '邢台市', '南宫市', '130581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (143, '河北省', '邢台市', '沙河市', '130582'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (144, '河北省', '保定市', '市辖区', '130601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (145, '河北省', '保定市', '新市区', '130602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (146, '河北省', '保定市', '北市区', '130603'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (147, '河北省', '保定市', '南市区', '130604'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (148, '河北省', '保定市', '满城县', '130621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (149, '河北省', '保定市', '清苑县', '130622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (150, '河北省', '保定市', '涞水县', '130623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (151, '河北省', '保定市', '阜平县', '130624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (152, '河北省', '保定市', '徐水县', '130625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (153, '河北省', '保定市', '定兴县', '130626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (154, '河北省', '保定市', '唐县', '130627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (155, '河北省', '保定市', '高阳县', '130628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (156, '河北省', '保定市', '容城县', '130629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (157, '河北省', '保定市', '涞源县', '130630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (158, '河北省', '保定市', '望都县', '130631'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (159, '河北省', '保定市', '安新县', '130632'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (160, '河北省', '保定市', '易县', '130633'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (161, '河北省', '保定市', '曲阳县', '130634'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (162, '河北省', '保定市', '蠡县', '130635'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (163, '河北省', '保定市', '顺平县', '130636'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (164, '河北省', '保定市', '博野县', '130637'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (165, '河北省', '保定市', '雄县', '130638'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (166, '河北省', '保定市', '涿州市', '130681'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (167, '河北省', '保定市', '定州市', '130682'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (168, '河北省', '保定市', '安国市', '130683'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (169, '河北省', '保定市', '高碑店市', '130684'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (170, '河北省', '张家口市', '市辖区', '130701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (171, '河北省', '张家口市', '桥东区', '130702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (172, '河北省', '张家口市', '桥西区', '130703'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (173, '河北省', '张家口市', '宣化区', '130705'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (174, '河北省', '张家口市', '下花园区', '130706'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (175, '河北省', '张家口市', '宣化县', '130721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (176, '河北省', '张家口市', '张北县', '130722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (177, '河北省', '张家口市', '康保县', '130723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (178, '河北省', '张家口市', '沽源县', '130724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (179, '河北省', '张家口市', '尚义县', '130725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (180, '河北省', '张家口市', '蔚县', '130726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (181, '河北省', '张家口市', '阳原县', '130727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (182, '河北省', '张家口市', '怀安县', '130728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (183, '河北省', '张家口市', '万全县', '130729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (184, '河北省', '张家口市', '怀来县', '130730'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (185, '河北省', '张家口市', '涿鹿县', '130731'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (186, '河北省', '张家口市', '赤城县', '130732'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (187, '河北省', '张家口市', '崇礼县', '130733'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (188, '河北省', '承德市', '市辖区', '130801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (189, '河北省', '承德市', '双桥区', '130802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (190, '河北省', '承德市', '双滦区', '130803'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (191, '河北省', '承德市', '鹰手营子矿区', '130804'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (192, '河北省', '承德市', '承德县', '130821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4486, '贵州省', '黔南布依族苗族自治州', '平塘县', '522727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4487, '贵州省', '黔南布依族苗族自治州', '罗甸县', '522728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4488, '贵州省', '黔南布依族苗族自治州', '长顺县', '522729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4489, '贵州省', '黔南布依族苗族自治州', '龙里县', '522730'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4490, '贵州省', '黔南布依族苗族自治州', '惠水县', '522731'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4491, '贵州省', '黔南布依族苗族自治州', '三都水族自治县', '522732'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4492, '云南省', '昭通市', '威信县', '530629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4493, '云南省', '昭通市', '水富县', '530630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4494, '云南省', '昭通市', '市辖区', '530601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4495, '云南省', '昭通市', '昭阳区', '530602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4496, '云南省', '昭通市', '鲁甸县', '530621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4497, '云南省', '昭通市', '巧家县', '530622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4498, '云南省', '昭通市', '盐津县', '530623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4499, '云南省', '昭通市', '大关县', '530624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4500, '云南省', '昭通市', '永善县', '530625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4501, '云南省', '昭通市', '绥江县', '530626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4502, '云南省', '昭通市', '镇雄县', '530627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4503, '云南省', '昭通市', '彝良县', '530628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4504, '云南省', '丽江市', '市辖区', '530701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4505, '云南省', '丽江市', '古城区', '530702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4506, '云南省', '丽江市', '玉龙纳西族自治县', '530721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4507, '云南省', '丽江市', '永胜县', '530722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4508, '云南省', '丽江市', '华坪县', '530723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4509, '云南省', '丽江市', '宁蒗彝族自治县', '530724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4510, '云南省', '思茅市', '市辖区', '530801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4511, '云南省', '思茅市', '翠云区', '530802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4512, '云南省', '思茅市', '普洱哈尼族彝族自治县', '530821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4513, '云南省', '思茅市', '墨江哈尼族自治县', '530822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4514, '云南省', '思茅市', '景东彝族自治县', '530823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4515, '云南省', '思茅市', '景谷傣族彝族自治县', '530824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4516, '云南省', '思茅市', '镇沅彝族哈尼族拉祜族自治县', '530825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4517, '云南省', '思茅市', '江城哈尼族彝族自治县', '530826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4518, '云南省', '思茅市', '孟连傣族拉祜族佤族自治县', '530827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4519, '云南省', '思茅市', '澜沧拉祜族自治县', '530828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4520, '云南省', '思茅市', '西盟佤族自治县', '530829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4521, '云南省', '临沧市', '市辖区', '530901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4522, '云南省', '临沧市', '临翔区', '530902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4523, '云南省', '临沧市', '凤庆县', '530921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4524, '云南省', '临沧市', '云县', '530922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4525, '云南省', '临沧市', '永德县', '530923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4526, '云南省', '临沧市', '镇康县', '530924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4527, '云南省', '临沧市', '双江拉祜族佤族布朗族傣族自治县', '530925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4528, '云南省', '临沧市', '耿马傣族佤族自治县', '530926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4529, '云南省', '临沧市', '沧源佤族自治县', '530927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4530, '云南省', '昭通地区', '昭通市', '532101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4531, '云南省', '昭通地区', '鲁甸县', '532122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4532, '云南省', '昭通地区', '巧家县', '532123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4533, '云南省', '昭通地区', '盐津县', '532124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4534, '云南省', '昭通地区', '大关县', '532125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4535, '云南省', '昭通地区', '永善县', '532126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4536, '云南省', '昭通地区', '绥江县', '532127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4537, '云南省', '昭通地区', '镇雄县', '532128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4538, '云南省', '昭通地区', '彝良县', '532129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4539, '云南省', '昭通地区', '威信县', '532130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4540, '云南省', '昭通地区', '水富县', '532131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4541, '云南省', '曲靖地区', '麒麟区', '532201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4542, '云南省', '曲靖地区', '曲靖县', '532221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4543, '云南省', '曲靖地区', '沾益县', '532222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4544, '云南省', '曲靖地区', '马龙县', '532223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4545, '云南省', '曲靖地区', '宣威市', '532224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4546, '云南省', '曲靖地区', '富源县', '532225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4547, '云南省', '曲靖地区', '罗平县', '532226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4548, '云南省', '曲靖地区', '师宗县', '532227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4549, '云南省', '曲靖地区', '陆良县', '532228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4550, '云南省', '曲靖地区', '宜良县', '532229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4551, '云南省', '曲靖地区', '路南彝族自治县', '532230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4552, '云南省', '曲靖地区', '寻甸回族彝族自治县', '532231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4553, '云南省', '曲靖地区', '嵩明县', '532232'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4554, '云南省', '曲靖地区', '会泽县', '532233'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4555, '云南省', '楚雄彝族自治州', '楚雄市', '532301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4556, '云南省', '楚雄彝族自治州', '楚雄县', '532321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4557, '云南省', '楚雄彝族自治州', '双柏县', '532322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4558, '云南省', '楚雄彝族自治州', '牟定县', '532323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4559, '云南省', '楚雄彝族自治州', '南华县', '532324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4560, '云南省', '楚雄彝族自治州', '姚安县', '532325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4561, '云南省', '楚雄彝族自治州', '大姚县', '532326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4562, '云南省', '楚雄彝族自治州', '永仁县', '532327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4563, '云南省', '楚雄彝族自治州', '元谋县', '532328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4564, '云南省', '楚雄彝族自治州', '武定县', '532329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4565, '云南省', '楚雄彝族自治州', '禄劝县', '532330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4566, '云南省', '楚雄彝族自治州', '禄丰县', '532331'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4567, '云南省', '保山地区', '龙陵县', '533024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4568, '云南省', '保山地区', '昌宁县', '533025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4569, '云南省', '保山地区', '保山市', '533001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4570, '云南省', '保山地区', '施甸县', '533022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4571, '云南省', '保山地区', '腾冲县', '533023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4572, '云南省', '德宏傣族景颇族自治州', '畹町市', '533101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4573, '云南省', '德宏傣族景颇族自治州', '瑞丽市', '533102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4574, '云南省', '德宏傣族景颇族自治州', '潞西市', '533103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4575, '云南省', '德宏傣族景颇族自治州', '潞西县', '533121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4576, '云南省', '德宏傣族景颇族自治州', '梁河县', '533122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4577, '云南省', '德宏傣族景颇族自治州', '盈江县', '533123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4578, '云南省', '德宏傣族景颇族自治州', '陇川县', '533124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4579, '云南省', '德宏傣族景颇族自治州', '瑞丽县', '533125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4580, '云南省', '德宏傣族景颇族自治州', '畹町镇', '533126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4581, '云南省', '丽江地区', '丽江纳西族自治县', '533221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4582, '云南省', '丽江地区', '永胜县', '533222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4583, '云南省', '丽江地区', '华坪县', '533223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4584, '云南省', '丽江地区', '宁蒗彝族自治县', '533224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4585, '云南省', '怒江傈僳族自治州', '泸水县', '533321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4586, '云南省', '怒江傈僳族自治州', '碧江县', '533322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4587, '云南省', '怒江傈僳族自治州', '福贡县', '533323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4588, '云南省', '怒江傈僳族自治州', '贡山独龙族怒族自治县', '533324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4589, '云南省', '怒江傈僳族自治州', '兰坪白族普米族自治县', '533325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4590, '云南省', '昆明市', '市辖区', '530101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4591, '云南省', '昆明市', '五华区', '530102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4592, '云南省', '昆明市', '盘龙区', '530103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4593, '云南省', '昆明市', '官渡区', '530111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4594, '云南省', '昆明市', '西山区', '530112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4595, '云南省', '昆明市', '东川区', '530113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4596, '云南省', '昆明市', '呈贡县', '530121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4597, '云南省', '昆明市', '晋宁县', '530122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4598, '云南省', '昆明市', '安宁县', '530123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4599, '云南省', '昆明市', '富民县', '530124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4600, '云南省', '昆明市', '宜良县', '530125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4601, '云南省', '昆明市', '石林彝族自治县', '530126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4602, '云南省', '昆明市', '嵩明县', '530127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4603, '云南省', '昆明市', '禄劝彝族苗族自治县', '530128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4604, '云南省', '昆明市', '寻甸回族彝族自治县', '530129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4605, '云南省', '昆明市', '安宁市', '530181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4606, '云南省', '曲靖市', '市辖区', '530301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4607, '云南省', '曲靖市', '麒麟区', '530302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4608, '云南省', '曲靖市', '马龙县', '530321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4609, '云南省', '曲靖市', '陆良县', '530322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4610, '云南省', '曲靖市', '师宗县', '530323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4611, '云南省', '曲靖市', '罗平县', '530324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4612, '云南省', '曲靖市', '富源县', '530325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4613, '云南省', '曲靖市', '会泽县', '530326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4614, '云南省', '曲靖市', '沾益县', '530328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4615, '云南省', '曲靖市', '宣威市', '530381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4616, '云南省', '玉溪市', '市辖区', '530401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4617, '云南省', '玉溪市', '红塔区', '530402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4618, '云南省', '玉溪市', '江川县', '530421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4619, '云南省', '玉溪市', '澄江县', '530422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4620, '云南省', '玉溪市', '通海县', '530423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4621, '云南省', '玉溪市', '华宁县', '530424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4622, '云南省', '玉溪市', '易门县', '530425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4623, '云南省', '玉溪市', '峨山彝族自治县', '530426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4624, '云南省', '玉溪市', '新平彝族傣族自治县', '530427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4625, '云南省', '玉溪市', '元江哈尼族彝族傣族自治县', '530428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4626, '云南省', '保山市', '市辖区', '530501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4627, '云南省', '保山市', '隆阳区', '530502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4628, '云南省', '保山市', '施甸县', '530521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4629, '云南省', '保山市', '腾冲县', '530522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4630, '云南省', '保山市', '龙陵县', '530523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4631, '云南省', '保山市', '昌宁县', '530524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4632, '云南省', '玉溪地区', '玉溪市', '532401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4633, '云南省', '玉溪地区', '玉溪县', '532421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4634, '云南省', '玉溪地区', '江川县', '532422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4635, '云南省', '玉溪地区', '澄江县', '532423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4636, '云南省', '玉溪地区', '通海县', '532424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4637, '云南省', '玉溪地区', '华宁县', '532425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4638, '云南省', '玉溪地区', '易门县', '532426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4639, '云南省', '玉溪地区', '峨山彝族自治县', '532427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4640, '云南省', '玉溪地区', '新平彝族傣族自治县', '532428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4641, '云南省', '玉溪地区', '元江哈尼族彝族傣族自治县', '532429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4642, '云南省', '红河哈尼族彝族自治州', '个旧市', '532501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4643, '云南省', '红河哈尼族彝族自治州', '开远市', '532502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4644, '云南省', '红河哈尼族彝族自治州', '蒙自县', '532522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4645, '云南省', '红河哈尼族彝族自治州', '屏边苗族自治县', '532523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4646, '云南省', '红河哈尼族彝族自治州', '建水县', '532524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4647, '云南省', '红河哈尼族彝族自治州', '石屏县', '532525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4648, '云南省', '红河哈尼族彝族自治州', '弥勒县', '532526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4649, '云南省', '红河哈尼族彝族自治州', '泸西县', '532527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4650, '云南省', '红河哈尼族彝族自治州', '元阳县', '532528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4651, '云南省', '红河哈尼族彝族自治州', '红河县', '532529'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4652, '云南省', '红河哈尼族彝族自治州', '金平苗族瑶族傣族自治县', '532530'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4653, '云南省', '红河哈尼族彝族自治州', '绿春县', '532531'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4654, '云南省', '红河哈尼族彝族自治州', '河口瑶族自治县', '532532'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4655, '云南省', '文山壮族苗族自治州', '文山县', '532621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4656, '云南省', '文山壮族苗族自治州', '砚山县', '532622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4657, '云南省', '文山壮族苗族自治州', '西畴县', '532623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4658, '云南省', '文山壮族苗族自治州', '麻栗坡县', '532624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4659, '云南省', '文山壮族苗族自治州', '马关县', '532625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4660, '云南省', '文山壮族苗族自治州', '丘北县', '532626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4661, '云南省', '文山壮族苗族自治州', '广南县', '532627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4662, '云南省', '文山壮族苗族自治州', '富宁县', '532628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4663, '云南省', '思茅地区', '思茅市', '532701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4664, '云南省', '思茅地区', '普洱哈尼族彝族自治县', '532722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4665, '云南省', '思茅地区', '墨江哈尼族自治县', '532723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4666, '云南省', '思茅地区', '景东彝族自治县', '532724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4667, '云南省', '思茅地区', '景谷傣族彝族自治县', '532725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4668, '云南省', '思茅地区', '镇沅彝族哈尼族拉祜族自治县', '532726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4669, '云南省', '思茅地区', '江城哈尼族彝族自治县', '532727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4670, '云南省', '思茅地区', '孟连傣族拉祜族佤族自治县', '532728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4671, '云南省', '思茅地区', '澜沧拉祜族自治县', '532729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4672, '云南省', '思茅地区', '西盟佤族自治县', '532730'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4673, '云南省', '西双版纳傣族自治州', '景洪市', '532801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4674, '云南省', '西双版纳傣族自治州', '勐海县', '532822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4675, '云南省', '西双版纳傣族自治州', '勐腊县', '532823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4676, '云南省', '大理白族自治州', '大理市', '532901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4677, '云南省', '大理白族自治州', '漾濞彝族自治县', '532922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4678, '云南省', '大理白族自治州', '祥云县', '532923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4679, '云南省', '大理白族自治州', '宾川县', '532924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4680, '云南省', '大理白族自治州', '弥渡县', '532925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4681, '云南省', '大理白族自治州', '南涧彝族自治县', '532926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4682, '云南省', '大理白族自治州', '巍山彝族回族自治县', '532927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4683, '云南省', '大理白族自治州', '永平县', '532928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4684, '云南省', '大理白族自治州', '云龙县', '532929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4685, '云南省', '大理白族自治州', '洱源县', '532930'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4686, '云南省', '大理白族自治州', '剑川县', '532931'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4687, '云南省', '大理白族自治州', '鹤庆县', '532932'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4688, '云南省', '迪庆藏族自治州', '香格里拉县', '533421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4689, '云南省', '迪庆藏族自治州', '德钦县', '533422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4690, '云南省', '迪庆藏族自治州', '维西傈僳族自治县', '533423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4691, '云南省', '临沧地区', '临沧县', '533521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4692, '云南省', '临沧地区', '凤庆县', '533522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4693, '云南省', '临沧地区', '云县', '533523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4694, '云南省', '临沧地区', '永德县', '533524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4695, '云南省', '临沧地区', '彭水苗族土家族自治县', '533525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4696, '云南省', '临沧地区', '双江拉祜族佤族布朗族傣族自治县', '533526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4697, '云南省', '临沧地区', '耿马傣族佤族自治县', '533527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4698, '云南省', '临沧地区', '沧源佤族自治县', '533528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4699, '西藏自治区', '山南地区', '乃东县', '542221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4700, '西藏自治区', '山南地区', '扎囊县', '542222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4701, '西藏自治区', '山南地区', '贡嘎县', '542223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4702, '西藏自治区', '山南地区', '桑日县', '542224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4703, '西藏自治区', '山南地区', '琼结县', '542225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4704, '西藏自治区', '山南地区', '曲松县', '542226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4705, '西藏自治区', '山南地区', '措美县', '542227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4706, '西藏自治区', '山南地区', '洛扎县', '542228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4707, '西藏自治区', '山南地区', '加查县', '542229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4708, '西藏自治区', '山南地区', '朗县', '542230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4709, '西藏自治区', '山南地区', '隆子县', '542231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4710, '西藏自治区', '山南地区', '错那县', '542232'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4711, '西藏自治区', '山南地区', '浪卡子县', '542233'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4712, '西藏自治区', '日喀则地区', '日喀则市', '542301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4713, '西藏自治区', '日喀则地区', '日喀则县', '542321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4714, '西藏自治区', '日喀则地区', '南木林县', '542322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4715, '西藏自治区', '日喀则地区', '江孜县', '542323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4716, '西藏自治区', '日喀则地区', '定日县', '542324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4717, '西藏自治区', '日喀则地区', '萨迦县', '542325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4718, '西藏自治区', '日喀则地区', '拉孜县', '542326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4719, '西藏自治区', '日喀则地区', '昂仁县', '542327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4720, '西藏自治区', '日喀则地区', '谢通门县', '542328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4721, '西藏自治区', '日喀则地区', '白朗县', '542329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4722, '西藏自治区', '日喀则地区', '仁布县', '542330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4723, '西藏自治区', '日喀则地区', '康马县', '542331'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4724, '西藏自治区', '日喀则地区', '定结县', '542332'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4725, '西藏自治区', '日喀则地区', '仲巴县', '542333'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4726, '西藏自治区', '日喀则地区', '亚东县', '542334'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4727, '西藏自治区', '日喀则地区', '吉隆县', '542335'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4728, '西藏自治区', '日喀则地区', '聂拉木县', '542336'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4729, '西藏自治区', '日喀则地区', '萨嘎县', '542337'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4730, '西藏自治区', '日喀则地区', '岗巴县', '542338'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4731, '西藏自治区', '那曲地区', '那曲县', '542421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4732, '西藏自治区', '那曲地区', '嘉黎县', '542422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4733, '西藏自治区', '那曲地区', '比如县', '542423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4734, '西藏自治区', '那曲地区', '聂荣县', '542424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4735, '西藏自治区', '那曲地区', '安多县', '542425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4736, '西藏自治区', '那曲地区', '申扎县', '542426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4737, '西藏自治区', '那曲地区', '索县', '542427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4738, '西藏自治区', '那曲地区', '班戈县', '542428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4739, '西藏自治区', '那曲地区', '巴青县', '542429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4740, '西藏自治区', '那曲地区', '尼玛县', '542430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4741, '西藏自治区', '拉萨市', '市辖区', '540101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4742, '西藏自治区', '拉萨市', '城关区', '540102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4743, '西藏自治区', '拉萨市', '市区', '540120'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4744, '西藏自治区', '拉萨市', '林周县', '540121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4745, '西藏自治区', '拉萨市', '当雄县', '540122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4746, '西藏自治区', '拉萨市', '尼木县', '540123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4747, '西藏自治区', '拉萨市', '曲水县', '540124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4748, '西藏自治区', '拉萨市', '堆龙德庆县', '540125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4749, '西藏自治区', '拉萨市', '达孜县', '540126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4750, '西藏自治区', '拉萨市', '墨竹工卡县', '540127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4751, '西藏自治区', '拉萨市', '工布江达县', '540128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4752, '西藏自治区', '拉萨市', '林芝县', '540129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4753, '西藏自治区', '拉萨市', '米林县', '540130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4754, '西藏自治区', '拉萨市', '墨脱县', '540131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4755, '西藏自治区', '昌都地区', '昌都县', '542121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4756, '西藏自治区', '昌都地区', '江达县', '542122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4757, '西藏自治区', '昌都地区', '贡觉县', '542123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4758, '西藏自治区', '昌都地区', '类乌齐县', '542124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4759, '西藏自治区', '昌都地区', '丁青县', '542125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4760, '西藏自治区', '昌都地区', '察雅县', '542126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4761, '西藏自治区', '昌都地区', '八宿县', '542127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4762, '西藏自治区', '昌都地区', '左贡县', '542128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4763, '西藏自治区', '昌都地区', '芒康县', '542129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4764, '西藏自治区', '昌都地区', '洛隆县', '542132'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4765, '西藏自治区', '昌都地区', '边坝县', '542133'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4766, '西藏自治区', '昌都地区', '盐井县', '542134'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4767, '西藏自治区', '昌都地区', '碧土县', '542135'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4768, '西藏自治区', '昌都地区', '妥坝县', '542136'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4769, '西藏自治区', '昌都地区', '生达县', '542137'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4770, '西藏自治区', '阿里地区', '普兰县', '542521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4771, '西藏自治区', '阿里地区', '札达县', '542522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4772, '西藏自治区', '阿里地区', '噶尔县', '542523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4773, '西藏自治区', '阿里地区', '日土县', '542524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4774, '西藏自治区', '阿里地区', '革吉县', '542525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4775, '西藏自治区', '阿里地区', '改则县', '542526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4776, '西藏自治区', '阿里地区', '措勤县', '542527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4777, '西藏自治区', '阿里地区', '隆格尔县', '542528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4778, '西藏自治区', '林芝地区', '林芝县', '542621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4779, '西藏自治区', '林芝地区', '工布江达县', '542622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4780, '西藏自治区', '林芝地区', '米林县', '542623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4781, '西藏自治区', '林芝地区', '墨脱县', '542624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4782, '西藏自治区', '林芝地区', '波密县', '542625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4783, '西藏自治区', '林芝地区', '察隅县', '542626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4784, '西藏自治区', '林芝地区', '朗县', '542627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4785, '西藏自治区', '江孜地区', '江孜县', '542721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4786, '西藏自治区', '江孜地区', '浪卡子县', '542722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4787, '西藏自治区', '江孜地区', '白朗县', '542723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4788, '西藏自治区', '江孜地区', '仁布县', '542724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4789, '西藏自治区', '江孜地区', '康马县', '542725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4790, '西藏自治区', '江孜地区', '亚东县', '542726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4791, '西藏自治区', '江孜地区', '岗巴县', '542727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4792, '陕西省', '西安市', '市辖区', '610101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4793, '陕西省', '西安市', '新城区', '610102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4794, '陕西省', '西安市', '碑林区', '610103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4795, '陕西省', '西安市', '莲湖区', '610104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4796, '陕西省', '西安市', '经济开发区', '610106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4797, '陕西省', '西安市', '灞桥区', '610111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4798, '陕西省', '西安市', '未央区', '610112'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4799, '陕西省', '西安市', '雁塔区', '610113'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4800, '陕西省', '西安市', '阎良区', '610114'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4801, '陕西省', '西安市', '临潼区', '610115'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4802, '陕西省', '西安市', '长安区', '610116'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4803, '陕西省', '西安市', '长安县', '610121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4804, '陕西省', '西安市', '蓝田县', '610122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4805, '陕西省', '西安市', '临潼县', '610123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4806, '陕西省', '西安市', '周至县', '610124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4807, '陕西省', '西安市', '户县', '610125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4808, '陕西省', '西安市', '高陵县', '610126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4809, '陕西省', '安康市', '镇坪县', '610927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4810, '陕西省', '安康市', '旬阳县', '610928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4811, '陕西省', '安康市', '白河县', '610929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4812, '陕西省', '安康市', '市辖区', '610901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4813, '陕西省', '安康市', '汉滨区', '610902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4814, '陕西省', '安康市', '汉阴县', '610921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4815, '陕西省', '安康市', '石泉县', '610922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4816, '陕西省', '安康市', '宁陕县', '610923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4817, '陕西省', '安康市', '紫阳县', '610924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4818, '陕西省', '安康市', '岚皋县', '610925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4819, '陕西省', '安康市', '平利县', '610926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4820, '陕西省', '商洛市', '市辖区', '611001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4821, '陕西省', '商洛市', '商州区', '611002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4822, '陕西省', '商洛市', '洛南县', '611021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4823, '陕西省', '商洛市', '丹凤县', '611022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4824, '陕西省', '商洛市', '商南县', '611023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4825, '陕西省', '商洛市', '山阳县', '611024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4826, '陕西省', '商洛市', '镇安县', '611025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4827, '陕西省', '商洛市', '柞水县', '611026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4828, '陕西省', '渭南地区', '渭南市', '612101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4829, '陕西省', '渭南地区', '韩城市', '612102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4830, '陕西省', '渭南地区', '华阴市', '612103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4831, '陕西省', '渭南地区', '蓝田县', '612121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4832, '陕西省', '渭南地区', '临潼县', '612122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4833, '陕西省', '渭南地区', '渭南县', '612123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4834, '陕西省', '渭南地区', '华县', '612124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4835, '陕西省', '渭南地区', '华阴县', '612125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4836, '陕西省', '渭南地区', '潼关县', '612126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4837, '陕西省', '渭南地区', '大荔县', '612127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4838, '陕西省', '渭南地区', '蒲城县', '612128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4839, '陕西省', '渭南地区', '澄城县', '612129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4840, '陕西省', '渭南地区', '白水县', '612130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4841, '陕西省', '渭南地区', '韩城县', '612131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4842, '陕西省', '渭南地区', '合阳县', '612132'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4843, '陕西省', '渭南地区', '富平县', '612133'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4844, '陕西省', '咸阳地区', '咸阳市', '612201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4845, '陕西省', '咸阳地区', '兴平县', '612221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4846, '陕西省', '咸阳地区', '周至县', '612222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4847, '陕西省', '咸阳地区', '户县', '612223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4848, '陕西省', '咸阳地区', '三原县', '612224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4849, '陕西省', '咸阳地区', '泾阳县', '612225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4850, '陕西省', '咸阳地区', '高陵县', '612226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4851, '陕西省', '咸阳地区', '乾县', '612227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4852, '陕西省', '咸阳地区', '礼泉县', '612228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4853, '陕西省', '咸阳地区', '永寿县', '612229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4854, '陕西省', '咸阳地区', '彬县', '612230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4855, '陕西省', '咸阳地区', '长武县', '612231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4856, '陕西省', '咸阳地区', '旬邑县', '612232'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4857, '陕西省', '咸阳地区', '淳化县', '612233'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4858, '陕西省', '汉中地区', '汉中市', '612301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4859, '陕西省', '汉中地区', '南郑县', '612321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4860, '陕西省', '汉中地区', '城固县', '612322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4861, '陕西省', '汉中地区', '洋县', '612323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4862, '陕西省', '汉中地区', '西乡县', '612324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4863, '陕西省', '汉中地区', '勉县', '612325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4864, '陕西省', '汉中地区', '宁强县', '612326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4865, '陕西省', '汉中地区', '略阳县', '612327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4866, '陕西省', '汉中地区', '镇巴县', '612328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4867, '陕西省', '汉中地区', '留坝县', '612329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4868, '陕西省', '汉中地区', '佛坪县', '612330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4869, '陕西省', '安康地区', '安康市', '612401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4870, '陕西省', '安康地区', '安康县', '612421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4871, '陕西省', '安康地区', '汉阴县', '612422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4872, '陕西省', '安康地区', '石泉县', '612423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4873, '陕西省', '安康地区', '宁陕县', '612424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4874, '陕西省', '安康地区', '紫阳县', '612425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4875, '陕西省', '安康地区', '岚皋县', '612426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4876, '陕西省', '安康地区', '平利县', '612427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4877, '陕西省', '安康地区', '镇坪县', '612428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4878, '陕西省', '安康地区', '旬阳县', '612429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4879, '陕西省', '安康地区', '白河县', '612430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4880, '陕西省', '铜川市', '市辖区', '610201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4881, '陕西省', '铜川市', '城区', '610202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4882, '陕西省', '铜川市', '郊区', '610203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4883, '陕西省', '铜川市', '耀州区', '610204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4884, '陕西省', '铜川市', '市区', '610220'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4885, '陕西省', '铜川市', '耀县', '610221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4886, '陕西省', '铜川市', '宜君县', '610222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4887, '陕西省', '宝鸡市', '市辖区', '610301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4888, '陕西省', '宝鸡市', '渭滨区', '610302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4889, '陕西省', '宝鸡市', '金台区', '610303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4890, '陕西省', '宝鸡市', '陈仓区', '610304'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4891, '陕西省', '宝鸡市', '市区', '610320'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4892, '陕西省', '宝鸡市', '宝鸡县', '610321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4893, '陕西省', '宝鸡市', '凤翔县', '610322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4894, '陕西省', '宝鸡市', '岐山县', '610323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4895, '陕西省', '宝鸡市', '扶风县', '610324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4896, '陕西省', '宝鸡市', '武功县', '610325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4897, '陕西省', '宝鸡市', '眉县', '610326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4898, '陕西省', '宝鸡市', '陇县', '610327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4899, '陕西省', '宝鸡市', '千阳县', '610328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4900, '陕西省', '宝鸡市', '麟游县', '610329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4901, '陕西省', '宝鸡市', '凤县', '610330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4902, '陕西省', '宝鸡市', '太白县', '610331'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4903, '陕西省', '咸阳市', '市辖区', '610401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4904, '陕西省', '咸阳市', '秦都区', '610402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4905, '陕西省', '咸阳市', '杨陵区', '610403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4906, '陕西省', '咸阳市', '渭城区', '610404'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4907, '陕西省', '咸阳市', '兴平县', '610421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4908, '陕西省', '咸阳市', '三原县', '610422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4909, '陕西省', '咸阳市', '泾阳县', '610423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4910, '陕西省', '咸阳市', '乾县', '610424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4911, '陕西省', '咸阳市', '礼泉县', '610425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4912, '陕西省', '咸阳市', '永寿县', '610426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4913, '陕西省', '咸阳市', '彬县', '610427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4914, '陕西省', '咸阳市', '长武县', '610428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4915, '陕西省', '咸阳市', '旬邑县', '610429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4916, '陕西省', '咸阳市', '淳化县', '610430'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4917, '陕西省', '咸阳市', '武功县', '610431'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4918, '陕西省', '咸阳市', '兴平市', '610481'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4919, '陕西省', '渭南市', '市辖区', '610501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4920, '陕西省', '渭南市', '临渭区', '610502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4921, '陕西省', '渭南市', '华县', '610521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4922, '陕西省', '渭南市', '潼关县', '610522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4923, '陕西省', '渭南市', '大荔县', '610523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4924, '陕西省', '渭南市', '合阳县', '610524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4925, '陕西省', '渭南市', '澄城县', '610525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4926, '陕西省', '渭南市', '蒲城县', '610526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4927, '陕西省', '渭南市', '白水县', '610527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4928, '陕西省', '渭南市', '富平县', '610528'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4929, '陕西省', '渭南市', '韩城市', '610581'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4930, '陕西省', '渭南市', '华阴市', '610582'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4931, '陕西省', '延安市', '市辖区', '610601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4932, '陕西省', '延安市', '宝塔区', '610602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4933, '陕西省', '延安市', '延长县', '610621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4934, '陕西省', '延安市', '延川县', '610622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4935, '陕西省', '延安市', '子长县', '610623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4936, '陕西省', '延安市', '安塞县', '610624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4937, '陕西省', '延安市', '志丹县', '610625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4938, '陕西省', '延安市', '吴起县', '610626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4939, '陕西省', '延安市', '甘泉县', '610627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4940, '陕西省', '延安市', '富县', '610628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4941, '陕西省', '延安市', '洛川县', '610629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4942, '陕西省', '延安市', '宜川县', '610630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4943, '陕西省', '延安市', '黄龙县', '610631'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4944, '陕西省', '延安市', '黄陵县', '610632'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4945, '陕西省', '汉中市', '市辖区', '610701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4946, '陕西省', '汉中市', '汉台区', '610702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4947, '陕西省', '汉中市', '南郑县', '610721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4948, '陕西省', '汉中市', '城固县', '610722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4949, '陕西省', '汉中市', '洋县', '610723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4950, '陕西省', '汉中市', '西乡县', '610724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4951, '陕西省', '汉中市', '勉县', '610725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4952, '陕西省', '汉中市', '宁强县', '610726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4953, '陕西省', '汉中市', '略阳县', '610727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4954, '陕西省', '汉中市', '镇巴县', '610728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4955, '陕西省', '汉中市', '留坝县', '610729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4956, '陕西省', '汉中市', '佛坪县', '610730'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4957, '陕西省', '榆林市', '市辖区', '610801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4958, '陕西省', '榆林市', '榆阳区', '610802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4959, '陕西省', '榆林市', '神木县', '610821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4960, '陕西省', '榆林市', '府谷县', '610822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4961, '陕西省', '榆林市', '横山县', '610823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4962, '陕西省', '榆林市', '靖边县', '610824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4963, '陕西省', '榆林市', '定边县', '610825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4964, '陕西省', '榆林市', '绥德县', '610826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4965, '陕西省', '榆林市', '米脂县', '610827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4966, '陕西省', '榆林市', '佳县', '610828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4967, '陕西省', '榆林市', '吴堡县', '610829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4968, '陕西省', '榆林市', '清涧县', '610830'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4969, '陕西省', '榆林市', '子洲县', '610831'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4970, '陕西省', '商洛地区', '商州市', '612501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4971, '陕西省', '商洛地区', '洛南县', '612522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4972, '陕西省', '商洛地区', '丹凤县', '612523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4973, '陕西省', '商洛地区', '商南县', '612524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4974, '陕西省', '商洛地区', '山阳县', '612525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4975, '陕西省', '商洛地区', '镇安县', '612526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4976, '陕西省', '商洛地区', '柞水县', '612527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4977, '陕西省', '延安地区', '延安市', '612601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4978, '陕西省', '延安地区', '延长县', '612621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4979, '陕西省', '延安地区', '延川县', '612622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4980, '陕西省', '延安地区', '子长县', '612623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4981, '陕西省', '延安地区', '安塞县', '612624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4982, '陕西省', '延安地区', '志丹县', '612625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4983, '陕西省', '延安地区', '吴旗县', '612626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4984, '陕西省', '延安地区', '甘泉县', '612627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4985, '陕西省', '延安地区', '富县', '612628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4986, '陕西省', '延安地区', '洛川县', '612629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4987, '陕西省', '延安地区', '宜川县', '612630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4988, '陕西省', '延安地区', '黄龙县', '612631'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4989, '陕西省', '延安地区', '黄陵县', '612632'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4990, '陕西省', '延安地区', '宜君县', '612633'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4991, '陕西省', '榆林地区', '榆林市', '612701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4992, '陕西省', '榆林地区', '榆林县', '612721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4993, '陕西省', '榆林地区', '神木县', '612722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4994, '陕西省', '榆林地区', '府谷县', '612723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4995, '陕西省', '榆林地区', '横山县', '612724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4996, '陕西省', '榆林地区', '靖边县', '612725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4997, '陕西省', '榆林地区', '定边县', '612726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4998, '陕西省', '榆林地区', '绥德县', '612727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (4999, '陕西省', '榆林地区', '米脂县', '612728'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5000, '陕西省', '榆林地区', '佳县', '612729'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5001, '陕西省', '榆林地区', '吴堡县', '612730'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5002, '陕西省', '榆林地区', '清涧县', '612731'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5003, '陕西省', '榆林地区', '子洲县', '612732'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5004, '甘肃省', '平凉市', '庄浪县', '620825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5005, '甘肃省', '平凉市', '静宁县', '620826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5006, '甘肃省', '平凉市', '市辖区', '620801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5007, '甘肃省', '平凉市', '崆峒区', '620802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5008, '甘肃省', '平凉市', '泾川县', '620821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5009, '甘肃省', '平凉市', '灵台县', '620822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5010, '甘肃省', '平凉市', '崇信县', '620823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5011, '甘肃省', '平凉市', '华亭县', '620824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5012, '甘肃省', '酒泉市', '市辖区', '620901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5013, '甘肃省', '酒泉市', '肃州区', '620902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5014, '甘肃省', '酒泉市', '金塔县', '620921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5015, '甘肃省', '酒泉市', '瓜州县', '620922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5016, '甘肃省', '酒泉市', '肃北蒙古族自治县', '620923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5017, '甘肃省', '酒泉市', '阿克塞哈萨克族自治县', '620924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5018, '甘肃省', '酒泉市', '玉门市', '620981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5019, '甘肃省', '酒泉市', '敦煌市', '620982'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5020, '甘肃省', '庆阳市', '市辖区', '621001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5021, '甘肃省', '庆阳市', '西峰区', '621002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5022, '甘肃省', '庆阳市', '庆城县', '621021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5023, '甘肃省', '庆阳市', '环县', '621022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5024, '甘肃省', '庆阳市', '华池县', '621023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5025, '甘肃省', '庆阳市', '合水县', '621024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5026, '甘肃省', '庆阳市', '正宁县', '621025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5027, '甘肃省', '庆阳市', '宁县', '621026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5028, '甘肃省', '庆阳市', '镇原县', '621027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5029, '甘肃省', '定西市', '市辖区', '621101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5030, '甘肃省', '定西市', '安定区', '621102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5031, '甘肃省', '定西市', '通渭县', '621121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5032, '甘肃省', '定西市', '陇西县', '621122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5033, '甘肃省', '定西市', '渭源县', '621123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5034, '甘肃省', '定西市', '临洮县', '621124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5035, '甘肃省', '定西市', '漳县', '621125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5036, '甘肃省', '定西市', '岷县', '621126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5037, '甘肃省', '陇南市', '市辖区', '621201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5038, '甘肃省', '陇南市', '武都区', '621202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5039, '甘肃省', '陇南市', '成县', '621221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5040, '甘肃省', '陇南市', '文县', '621222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5041, '甘肃省', '陇南市', '宕昌县', '621223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5042, '甘肃省', '陇南市', '康县', '621224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5043, '甘肃省', '陇南市', '西和县', '621225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5044, '甘肃省', '陇南市', '礼县', '621226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5045, '甘肃省', '陇南市', '徽县', '621227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5046, '甘肃省', '陇南市', '两当县', '621228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5047, '甘肃省', '酒泉地区', '玉门市', '622101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5048, '甘肃省', '酒泉地区', '酒泉市', '622102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5049, '甘肃省', '酒泉地区', '敦煌市', '622103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5050, '甘肃省', '酒泉地区', '金塔县', '622123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5051, '甘肃省', '酒泉地区', '肃北蒙古族自治县', '622124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5052, '甘肃省', '酒泉地区', '阿克塞哈萨克族自治县', '622125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5053, '甘肃省', '酒泉地区', '安西县', '622126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5054, '甘肃省', '张掖地区', '张掖市', '622201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5055, '甘肃省', '张掖地区', '肃南裕固族自治县', '622222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5056, '甘肃省', '张掖地区', '民乐县', '622223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5057, '甘肃省', '张掖地区', '临泽县', '622224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5058, '甘肃省', '张掖地区', '高台县', '622225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5059, '甘肃省', '张掖地区', '山丹县', '622226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5060, '甘肃省', '武威地区', '武威市', '622301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5061, '甘肃省', '武威地区', '民勤县', '622322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5062, '甘肃省', '武威地区', '古浪县', '622323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5063, '甘肃省', '武威地区', '天祝藏族自治县', '622326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5064, '甘肃省', '武威地区', '连古城国家级自然保护区管理局', '622327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5065, '甘肃省', '武威地区', '石羊河林业总场', '622328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5066, '甘肃省', '武威地区', '苏武山林场', '622329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5067, '甘肃省', '定西地区', '定西县', '622421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5068, '甘肃省', '定西地区', '通渭县', '622424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5069, '甘肃省', '定西地区', '陇西县', '622425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5070, '甘肃省', '定西地区', '渭源县', '622426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5071, '甘肃省', '定西地区', '临洮县', '622427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5072, '甘肃省', '定西地区', '漳县', '622428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5073, '甘肃省', '定西地区', '岷县', '622429'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5074, '甘肃省', '陇南地区', '武都县', '622621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5075, '甘肃省', '陇南地区', '宕昌县', '622623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5076, '甘肃省', '陇南地区', '成县', '622624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5077, '甘肃省', '陇南地区', '康县', '622625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5078, '甘肃省', '陇南地区', '文县', '622626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5079, '甘肃省', '陇南地区', '西和县', '622627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5080, '甘肃省', '陇南地区', '礼县', '622628'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5081, '甘肃省', '陇南地区', '两当县', '622629'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5082, '甘肃省', '陇南地区', '徽县', '622630'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5083, '甘肃省', '平凉地区', '平凉市', '622701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5084, '甘肃省', '平凉地区', '泾川县', '622722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5085, '甘肃省', '平凉地区', '灵台县', '622723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5086, '甘肃省', '平凉地区', '崇信县', '622724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5087, '甘肃省', '平凉地区', '华亭县', '622725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5088, '甘肃省', '平凉地区', '庄浪县', '622726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5089, '甘肃省', '平凉地区', '静宁县', '622727'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5090, '甘肃省', '庆阳地区', '西峰市', '622801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5091, '甘肃省', '庆阳地区', '庆阳县', '622821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5092, '甘肃省', '庆阳地区', '环县', '622822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5093, '甘肃省', '庆阳地区', '华池县', '622823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5094, '甘肃省', '庆阳地区', '合水县', '622824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5095, '甘肃省', '庆阳地区', '正宁县', '622825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5096, '甘肃省', '庆阳地区', '宁县', '622826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5097, '甘肃省', '庆阳地区', '镇原县', '622827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5098, '甘肃省', '临夏回族自治州', '临夏市', '622901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5099, '甘肃省', '临夏回族自治州', '临夏县', '622921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5100, '甘肃省', '临夏回族自治州', '康乐县', '622922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5101, '甘肃省', '临夏回族自治州', '永靖县', '622923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5102, '甘肃省', '临夏回族自治州', '广河县', '622924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5103, '甘肃省', '临夏回族自治州', '和政县', '622925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5104, '甘肃省', '临夏回族自治州', '东乡族自治县', '622926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5105, '甘肃省', '临夏回族自治州', '积石山保安族东乡族撒拉族自治县', '622927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5106, '甘肃省', '甘南藏族自治州', '合作市', '623001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5107, '甘肃省', '甘南藏族自治州', '临潭县', '623021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5108, '甘肃省', '甘南藏族自治州', '卓尼县', '623022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5109, '甘肃省', '甘南藏族自治州', '舟曲县', '623023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5110, '甘肃省', '甘南藏族自治州', '迭部县', '623024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5111, '甘肃省', '甘南藏族自治州', '玛曲县', '623025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5112, '甘肃省', '甘南藏族自治州', '碌曲县', '623026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5113, '甘肃省', '甘南藏族自治州', '夏河县', '623027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5114, '甘肃省', '兰州市', '市辖区', '620101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5115, '甘肃省', '兰州市', '城关区', '620102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5116, '甘肃省', '兰州市', '七里河区', '620103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5117, '甘肃省', '兰州市', '西固区', '620104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5118, '甘肃省', '兰州市', '安宁区', '620105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5119, '甘肃省', '兰州市', '红古区', '620111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5120, '甘肃省', '兰州市', '永登县', '620121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5121, '甘肃省', '兰州市', '皋兰县', '620122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5122, '甘肃省', '兰州市', '榆中县', '620123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5123, '甘肃省', '嘉峪关市', '市辖区', '620201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5124, '甘肃省', '嘉峪关市', '嘉峪关区', '620202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5125, '甘肃省', '金昌市', '市辖区', '620301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5126, '甘肃省', '金昌市', '金川区', '620302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5127, '甘肃省', '金昌市', '永昌县', '620321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5128, '甘肃省', '白银市', '市辖区', '620401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5129, '甘肃省', '白银市', '白银区', '620402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5130, '甘肃省', '白银市', '平川区', '620403'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5131, '甘肃省', '白银市', '靖远县', '620421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5132, '甘肃省', '白银市', '会宁县', '620422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5133, '甘肃省', '白银市', '景泰县', '620423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5134, '甘肃省', '天水市', '市辖区', '620501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5135, '甘肃省', '天水市', '秦州区', '620502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5136, '甘肃省', '天水市', '麦积区', '620503'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5137, '甘肃省', '天水市', '清水县', '620521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5138, '甘肃省', '天水市', '秦安县', '620522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5139, '甘肃省', '天水市', '甘谷县', '620523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5140, '甘肃省', '天水市', '武山县', '620524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5141, '甘肃省', '天水市', '张家川回族自治县', '620525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5142, '甘肃省', '武威市', '市辖区', '620601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5143, '甘肃省', '武威市', '凉州区', '620602'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5144, '甘肃省', '武威市', '民勤县', '620621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5145, '甘肃省', '武威市', '古浪县', '620622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5146, '甘肃省', '武威市', '天祝藏族自治县', '620623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5147, '甘肃省', '张掖市', '市辖区', '620701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5148, '甘肃省', '张掖市', '甘州区', '620702'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5149, '甘肃省', '张掖市', '肃南裕固族自治县', '620721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5150, '甘肃省', '张掖市', '民乐县', '620722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5151, '甘肃省', '张掖市', '临泽县', '620723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5152, '甘肃省', '张掖市', '高台县', '620724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5153, '甘肃省', '张掖市', '山丹县', '620725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5154, '青海省', '西宁市', '市辖区', '630101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5155, '青海省', '西宁市', '城东区', '630102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5156, '青海省', '西宁市', '城中区', '630103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5157, '青海省', '西宁市', '城西区', '630104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5158, '青海省', '西宁市', '城北区', '630105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5159, '青海省', '西宁市', '大通回族土族自治县', '630121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5160, '青海省', '西宁市', '湟中县', '630122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5161, '青海省', '西宁市', '湟源县', '630123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5162, '青海省', '海南藏族自治州', '共和县', '632521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5163, '青海省', '海南藏族自治州', '同德县', '632522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5164, '青海省', '海南藏族自治州', '贵德县', '632523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5165, '青海省', '海南藏族自治州', '兴海县', '632524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5166, '青海省', '海南藏族自治州', '贵南县', '632525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5167, '青海省', '果洛藏族自治州', '玛沁县', '632621'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5168, '青海省', '果洛藏族自治州', '班玛县', '632622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5169, '青海省', '果洛藏族自治州', '甘德县', '632623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5170, '青海省', '果洛藏族自治州', '达日县', '632624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5171, '青海省', '果洛藏族自治州', '久治县', '632625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5172, '青海省', '果洛藏族自治州', '玛多县', '632626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5173, '青海省', '果洛藏族自治州', '班玛县', '632632'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5174, '青海省', '玉树藏族自治州', '玉树县', '632721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5175, '青海省', '玉树藏族自治州', '杂多县', '632722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5176, '青海省', '玉树藏族自治州', '称多县', '632723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5177, '青海省', '玉树藏族自治州', '治多县', '632724'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5178, '青海省', '玉树藏族自治州', '囊谦县', '632725'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5179, '青海省', '玉树藏族自治州', '曲麻莱县', '632726'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5180, '青海省', '海西蒙古族藏族自治州', '格尔木市', '632801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5181, '青海省', '海西蒙古族藏族自治州', '德令哈市', '632802'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5182, '青海省', '海西蒙古族藏族自治州', '乌兰县', '632821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5183, '青海省', '海西蒙古族藏族自治州', '都兰县', '632822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5184, '青海省', '海西蒙古族藏族自治州', '天峻县', '632823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5185, '青海省', '海西蒙古族藏族自治州', '大柴旦行委', '632824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5186, '青海省', '海西蒙古族藏族自治州', '冷湖行委', '632825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5187, '青海省', '海西蒙古族藏族自治州', '茫崖行委', '632826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5188, '青海省', '海东地区', '平安县', '632121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5189, '青海省', '海东地区', '民和回族土族自治县', '632122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5190, '青海省', '海东地区', '乐都县', '632123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5191, '青海省', '海东地区', '湟中县', '632124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5192, '青海省', '海东地区', '湟源县', '632125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5193, '青海省', '海东地区', '互助土族自治县', '632126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5194, '青海省', '海东地区', '化隆回族自治县', '632127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5195, '青海省', '海东地区', '循化撒拉族自治县', '632128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5196, '青海省', '海北藏族自治州', '门源回族自治县', '632221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5197, '青海省', '海北藏族自治州', '祁连县', '632222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5198, '青海省', '海北藏族自治州', '海晏县', '632223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5199, '青海省', '海北藏族自治州', '刚察县', '632224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5200, '青海省', '黄南藏族自治州', '同仁县', '632321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5201, '青海省', '黄南藏族自治州', '尖扎县', '632322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5202, '青海省', '黄南藏族自治州', '泽库县', '632323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5203, '青海省', '黄南藏族自治州', '河南蒙古族自治县', '632324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5204, '宁夏回族自治区', '银川市', '市辖区', '640101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5205, '宁夏回族自治区', '银川市', '城区', '640102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5206, '宁夏回族自治区', '银川市', '新城区', '640103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5207, '宁夏回族自治区', '银川市', '兴庆区', '640104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5208, '宁夏回族自治区', '银川市', '西夏区', '640105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5209, '宁夏回族自治区', '银川市', '金凤区', '640106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5210, '宁夏回族自治区', '银川市', '郊区', '640111'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5211, '宁夏回族自治区', '银川市', '永宁县', '640121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5212, '宁夏回族自治区', '银川市', '贺兰县', '640122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5213, '宁夏回族自治区', '银川市', '灵武市', '640181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5214, '宁夏回族自治区', '石嘴山市', '市辖区', '640201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5215, '宁夏回族自治区', '石嘴山市', '大武口区', '640202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5216, '宁夏回族自治区', '石嘴山市', '石嘴山区', '640203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5217, '宁夏回族自治区', '石嘴山市', '石炭井区', '640204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5218, '宁夏回族自治区', '石嘴山市', '惠农区', '640205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5219, '宁夏回族自治区', '石嘴山市', '郊区', '640211'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5220, '宁夏回族自治区', '石嘴山市', '市区', '640220'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5221, '宁夏回族自治区', '石嘴山市', '平罗县', '640221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5222, '宁夏回族自治区', '石嘴山市', '陶乐县', '640222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5223, '宁夏回族自治区', '石嘴山市', '惠农县', '640223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5224, '宁夏回族自治区', '吴忠市', '市辖区', '640301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5225, '宁夏回族自治区', '吴忠市', '利通区', '640302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5226, '宁夏回族自治区', '吴忠市', '中卫县', '640321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5227, '宁夏回族自治区', '吴忠市', '中宁县', '640322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5228, '宁夏回族自治区', '吴忠市', '盐池县', '640323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5229, '宁夏回族自治区', '吴忠市', '同心县', '640324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5230, '宁夏回族自治区', '吴忠市', '青铜峡市', '640381'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5231, '宁夏回族自治区', '吴忠市', '灵武市', '640382'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5232, '宁夏回族自治区', '固原市', '市辖区', '640401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5233, '宁夏回族自治区', '固原市', '原州区', '640402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5234, '宁夏回族自治区', '固原市', '海原县', '640421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5235, '宁夏回族自治区', '固原市', '西吉县', '640422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5236, '宁夏回族自治区', '固原市', '隆德县', '640423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5237, '宁夏回族自治区', '固原市', '泾源县', '640424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5238, '宁夏回族自治区', '固原市', '彭阳县', '640425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5239, '宁夏回族自治区', '中卫市', '市辖区', '640501'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5240, '宁夏回族自治区', '中卫市', '沙坡头区', '640502'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5241, '宁夏回族自治区', '中卫市', '中宁县', '640521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5242, '宁夏回族自治区', '中卫市', '海原县', '640522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5243, '宁夏回族自治区', '吴忠市', '吴忠市', '642101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5244, '宁夏回族自治区', '吴忠市', '利通区', '642102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5245, '宁夏回族自治区', '吴忠市', '灵武市', '642103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5246, '宁夏回族自治区', '吴忠市', '吴忠县', '642121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5247, '宁夏回族自治区', '吴忠市', '青铜峡县', '642122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5248, '宁夏回族自治区', '吴忠市', '中卫县', '642123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5249, '宁夏回族自治区', '吴忠市', '中宁县', '642124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5250, '宁夏回族自治区', '吴忠市', '灵武县', '642125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5251, '宁夏回族自治区', '吴忠市', '盐池县', '642126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5252, '宁夏回族自治区', '吴忠市', '同心县', '642127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5253, '宁夏回族自治区', '固原地区', '固原县', '642221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5254, '宁夏回族自治区', '固原地区', '海原县', '642222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5255, '宁夏回族自治区', '固原地区', '西吉县', '642223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5256, '宁夏回族自治区', '固原地区', '隆德县', '642224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5257, '宁夏回族自治区', '固原地区', '泾源县', '642225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5258, '宁夏回族自治区', '固原地区', '彭阳县', '642226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5259, '新疆维吾尔自治区', '乌鲁木齐市', '市辖区', '650101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5260, '新疆维吾尔自治区', '乌鲁木齐市', '天山区', '650102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5261, '新疆维吾尔自治区', '乌鲁木齐市', '沙依巴克区', '650103'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5262, '新疆维吾尔自治区', '乌鲁木齐市', '新市区', '650104'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5263, '新疆维吾尔自治区', '乌鲁木齐市', '水磨沟区', '650105'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5264, '新疆维吾尔自治区', '乌鲁木齐市', '头屯河区', '650106'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5265, '新疆维吾尔自治区', '乌鲁木齐市', '南山矿区', '650107'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5266, '新疆维吾尔自治区', '乌鲁木齐市', '东山区', '650108'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5267, '新疆维吾尔自治区', '乌鲁木齐市', '乌鲁木齐县', '650121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5268, '新疆维吾尔自治区', '克拉玛依市', '市辖区', '650201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5269, '新疆维吾尔自治区', '克拉玛依市', '独山子区', '650202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5270, '新疆维吾尔自治区', '克拉玛依市', '克拉玛依区', '650203'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5271, '新疆维吾尔自治区', '克拉玛依市', '白碱滩区', '650204'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5272, '新疆维吾尔自治区', '克拉玛依市', '乌尔禾区', '650205'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5273, '新疆维吾尔自治区', '吐鲁番地区', '吐鲁番市', '652101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5274, '新疆维吾尔自治区', '吐鲁番地区', '鄯善县', '652122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5275, '新疆维吾尔自治区', '吐鲁番地区', '托克逊县', '652123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5276, '新疆维吾尔自治区', '哈密地区', '哈密市', '652201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5277, '新疆维吾尔自治区', '哈密地区', '巴里坤哈萨克自治县', '652222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5278, '新疆维吾尔自治区', '哈密地区', '伊吾县', '652223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5279, '新疆维吾尔自治区', '昌吉回族自治州', '昌吉市', '652301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5280, '新疆维吾尔自治区', '昌吉回族自治州', '阜康市', '652302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5281, '新疆维吾尔自治区', '昌吉回族自治州', '米泉市', '652303'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5282, '新疆维吾尔自治区', '昌吉回族自治州', '米泉市', '652322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5283, '新疆维吾尔自治区', '昌吉回族自治州', '呼图壁县', '652323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5284, '新疆维吾尔自治区', '昌吉回族自治州', '玛纳斯县', '652324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5285, '新疆维吾尔自治区', '昌吉回族自治州', '奇台县', '652325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5286, '新疆维吾尔自治区', '昌吉回族自治州', '阜康市', '652326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5287, '新疆维吾尔自治区', '昌吉回族自治州', '吉木萨尔县', '652327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5288, '新疆维吾尔自治区', '昌吉回族自治州', '木垒哈萨克自治县', '652328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5289, '新疆维吾尔自治区', '伊犁哈萨克自治州', '伊宁市', '652401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5290, '新疆维吾尔自治区', '伊犁哈萨克自治州', '奎屯市', '652402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5291, '新疆维吾尔自治区', '伊犁哈萨克自治州', '伊宁县', '652421'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5292, '新疆维吾尔自治区', '伊犁哈萨克自治州', '察布查尔锡伯自治县', '652422'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5293, '新疆维吾尔自治区', '伊犁哈萨克自治州', '霍城县', '652423'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5294, '新疆维吾尔自治区', '伊犁哈萨克自治州', '巩留县', '652424'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5295, '新疆维吾尔自治区', '伊犁哈萨克自治州', '新源县', '652425'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5296, '新疆维吾尔自治区', '伊犁哈萨克自治州', '昭苏县', '652426'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5297, '新疆维吾尔自治区', '伊犁哈萨克自治州', '特克斯县', '652427'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5298, '新疆维吾尔自治区', '伊犁哈萨克自治州', '尼勒克县', '652428'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5299, '新疆维吾尔自治区', '塔城地区', '塔城县', '652521'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5300, '新疆维吾尔自治区', '塔城地区', '额敏县', '652522'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5301, '新疆维吾尔自治区', '塔城地区', '乌苏市', '652523'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5302, '新疆维吾尔自治区', '塔城地区', '沙湾县', '652524'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5303, '新疆维吾尔自治区', '塔城地区', '托里县', '652525'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5304, '新疆维吾尔自治区', '塔城地区', '裕民县', '652526'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5305, '新疆维吾尔自治区', '塔城地区', '和布克赛尔蒙古自治县', '652527'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5306, '新疆维吾尔自治区', '阿勒泰地区', '阿勒泰县', '652601'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5307, '新疆维吾尔自治区', '阿勒泰地区', '布尔津县', '652622'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5308, '新疆维吾尔自治区', '阿勒泰地区', '富蕴县', '652623'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5309, '新疆维吾尔自治区', '阿勒泰地区', '福海县', '652624'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5310, '新疆维吾尔自治区', '阿勒泰地区', '哈巴河县', '652625'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5311, '新疆维吾尔自治区', '阿勒泰地区', '青河县', '652626'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5312, '新疆维吾尔自治区', '阿勒泰地区', '吉木乃县', '652627'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5313, '新疆维吾尔自治区', '阿勒泰地区', '富蕴县', '654322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5314, '新疆维吾尔自治区', '阿勒泰地区', '福海县', '654323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5315, '新疆维吾尔自治区', '阿勒泰地区', '哈巴河县', '654324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5316, '新疆维吾尔自治区', '阿勒泰地区', '青河县', '654325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5317, '新疆维吾尔自治区', '阿勒泰地区', '吉木乃县', '654326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5318, '新疆维吾尔自治区', '阿勒泰地区', '阿勒泰市', '654301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5319, '新疆维吾尔自治区', '阿勒泰地区', '布尔津县', '654321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5320, '新疆维吾尔自治区', '省直辖行政单位', '石河子市', '659001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5321, '新疆维吾尔自治区', '省直辖行政单位', '阿拉尔市', '659002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5322, '新疆维吾尔自治区', '省直辖行政单位', '图木舒克市', '659003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5323, '新疆维吾尔自治区', '省直辖行政单位', '五家渠市', '659004'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5324, '新疆维吾尔自治区', '博尔塔拉蒙古自治州', '博乐市', '652701'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5325, '新疆维吾尔自治区', '博尔塔拉蒙古自治州', '博乐县', '652721'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5326, '新疆维吾尔自治区', '博尔塔拉蒙古自治州', '精河县', '652722'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5327, '新疆维吾尔自治区', '博尔塔拉蒙古自治州', '温泉县', '652723'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5328, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '库尔勒市', '652801'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5329, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '库尔勒县', '652821'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5330, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '轮台县', '652822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5331, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '尉犁县', '652823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5332, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '若羌县', '652824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5333, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '且末县', '652825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5334, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '焉耆回族自治县', '652826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5335, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '和静县', '652827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5336, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '和硕县', '652828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5337, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '博湖县', '652829'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5338, '新疆维吾尔自治区', '阿克苏地区', '阿克苏市', '652901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5339, '新疆维吾尔自治区', '阿克苏地区', '阿克苏县', '652921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5340, '新疆维吾尔自治区', '阿克苏地区', '温宿县', '652922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5341, '新疆维吾尔自治区', '阿克苏地区', '库车县', '652923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5342, '新疆维吾尔自治区', '阿克苏地区', '沙雅县', '652924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5343, '新疆维吾尔自治区', '阿克苏地区', '新和县', '652925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5344, '新疆维吾尔自治区', '阿克苏地区', '拜城县', '652926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5345, '新疆维吾尔自治区', '阿克苏地区', '乌什县', '652927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5346, '新疆维吾尔自治区', '阿克苏地区', '阿瓦提县', '652928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5347, '新疆维吾尔自治区', '阿克苏地区', '柯坪县', '652929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5348, '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '阿图什市', '653001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5349, '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '阿图什县', '653021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5350, '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '阿克陶县', '653022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5351, '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '阿合奇县', '653023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5352, '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '乌恰县', '653024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5353, '新疆维吾尔自治区', '喀什地区', '喀什市', '653101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5354, '新疆维吾尔自治区', '喀什地区', '疏附县', '653121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5355, '新疆维吾尔自治区', '喀什地区', '疏勒县', '653122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5356, '新疆维吾尔自治区', '喀什地区', '英吉沙县', '653123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5357, '新疆维吾尔自治区', '喀什地区', '泽普县', '653124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5358, '新疆维吾尔自治区', '喀什地区', '莎车县', '653125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5359, '新疆维吾尔自治区', '喀什地区', '叶城县', '653126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5360, '新疆维吾尔自治区', '喀什地区', '麦盖提县', '653127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5361, '新疆维吾尔自治区', '喀什地区', '岳普湖县', '653128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5362, '新疆维吾尔自治区', '喀什地区', '伽师县', '653129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5363, '新疆维吾尔自治区', '喀什地区', '巴楚县', '653130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5364, '新疆维吾尔自治区', '喀什地区', '塔什库尔干塔吉克自治县', '653131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5365, '新疆维吾尔自治区', '和田地区', '和田市', '653201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5366, '新疆维吾尔自治区', '和田地区', '和田县', '653221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5367, '新疆维吾尔自治区', '和田地区', '墨玉县', '653222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5368, '新疆维吾尔自治区', '和田地区', '皮山县', '653223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5369, '新疆维吾尔自治区', '和田地区', '洛浦县', '653224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5370, '新疆维吾尔自治区', '和田地区', '策勒县', '653225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5371, '新疆维吾尔自治区', '和田地区', '于田县', '653226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5372, '新疆维吾尔自治区', '和田地区', '民丰县', '653227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5373, '新疆维吾尔自治区', '伊犁哈萨克自治州', '奎屯市', '654001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5374, '新疆维吾尔自治区', '伊犁哈萨克自治州', '伊宁市', '654002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5375, '新疆维吾尔自治区', '伊犁哈萨克自治州', '奎屯市', '654003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5376, '新疆维吾尔自治区', '伊犁哈萨克自治州', '伊宁县', '654021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5377, '新疆维吾尔自治区', '伊犁哈萨克自治州', '察布查尔锡伯自治县', '654022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5378, '新疆维吾尔自治区', '伊犁哈萨克自治州', '霍城县', '654023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5379, '新疆维吾尔自治区', '伊犁哈萨克自治州', '巩留县', '654024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5380, '新疆维吾尔自治区', '伊犁哈萨克自治州', '新源县', '654025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5381, '新疆维吾尔自治区', '伊犁哈萨克自治州', '昭苏县', '654026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5382, '新疆维吾尔自治区', '伊犁哈萨克自治州', '特克斯县', '654027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5383, '新疆维吾尔自治区', '伊犁哈萨克自治州', '尼勒克县', '654028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5384, '新疆维吾尔自治区', '伊犁地区', '伊宁市', '654101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5385, '新疆维吾尔自治区', '伊犁地区', '伊宁县', '654121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5386, '新疆维吾尔自治区', '伊犁地区', '察布查尔锡伯自治县', '654122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5387, '新疆维吾尔自治区', '伊犁地区', '霍城县', '654123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5388, '新疆维吾尔自治区', '伊犁地区', '巩留县', '654124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5389, '新疆维吾尔自治区', '伊犁地区', '新源县', '654125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5390, '新疆维吾尔自治区', '伊犁地区', '昭苏县', '654126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5391, '新疆维吾尔自治区', '伊犁地区', '特克斯县', '654127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5392, '新疆维吾尔自治区', '伊犁地区', '尼勒克县', '654128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5393, '新疆维吾尔自治区', '塔城地区', '塔城市', '654201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5394, '新疆维吾尔自治区', '塔城地区', '乌苏市', '654202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5395, '新疆维吾尔自治区', '塔城地区', '额敏县', '654221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5396, '新疆维吾尔自治区', '塔城地区', '乌苏市', '654222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5397, '新疆维吾尔自治区', '塔城地区', '沙湾县', '654223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5398, '新疆维吾尔自治区', '塔城地区', '托里县', '654224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5399, '新疆维吾尔自治区', '塔城地区', '裕民县', '654225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5400, '新疆维吾尔自治区', '塔城地区', '和布克赛尔蒙古自治县', '654226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5401, '台湾省(886)', NULL, NULL, '710000'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5402, '香港特别行政区(852)', NULL, NULL, '810000'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (5403, '澳门特别行政区(853)', NULL, NULL, '820000'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (193, '河北省', '承德市', '兴隆县', '130822'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (194, '河北省', '承德市', '平泉县', '130823'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (195, '河北省', '承德市', '滦平县', '130824'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (196, '河北省', '承德市', '隆化县', '130825'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (197, '河北省', '承德市', '丰宁满族自治县', '130826'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (198, '河北省', '承德市', '宽城满族自治县', '130827'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (199, '河北省', '承德市', '围场满族蒙古族自治县', '130828'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (200, '河北省', '沧州市', '市辖区', '130901'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (201, '河北省', '沧州市', '新华区', '130902'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (202, '河北省', '沧州市', '运河区', '130903'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (203, '河北省', '沧州市', '郊区', '130904'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (204, '河北省', '沧州市', '沧县', '130921'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (205, '河北省', '沧州市', '青县', '130922'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (206, '河北省', '沧州市', '东光县', '130923'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (207, '河北省', '沧州市', '海兴县', '130924'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (208, '河北省', '沧州市', '盐山县', '130925'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (209, '河北省', '沧州市', '肃宁县', '130926'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (210, '河北省', '沧州市', '南皮县', '130927'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (211, '河北省', '沧州市', '吴桥县', '130928'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (212, '河北省', '沧州市', '献县', '130929'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (213, '河北省', '沧州市', '孟村回族自治县', '130930'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (214, '河北省', '沧州市', '泊头市', '130981'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (215, '河北省', '沧州市', '任丘市', '130982'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (216, '河北省', '沧州市', '黄骅市', '130983'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (217, '河北省', '沧州市', '河间市', '130984'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (218, '河北省', '廊坊市', '市辖区', '131001'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (219, '河北省', '廊坊市', '安次区', '131002'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (220, '河北省', '廊坊市', '广阳区', '131003'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (221, '河北省', '廊坊市', '三河县', '131021'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (222, '河北省', '廊坊市', '固安县', '131022'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (223, '河北省', '廊坊市', '永清县', '131023'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (224, '河北省', '廊坊市', '香河县', '131024'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (225, '河北省', '廊坊市', '大城县', '131025'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (226, '河北省', '廊坊市', '文安县', '131026'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (227, '河北省', '廊坊市', '霸县', '131027'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (228, '河北省', '廊坊市', '大厂回族自治县', '131028'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (229, '河北省', '廊坊市', '霸州市', '131081'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (230, '河北省', '廊坊市', '三河市', '131082'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (231, '河北省', '衡水市', '市辖区', '131101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (232, '河北省', '衡水市', '桃城区', '131102'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (233, '河北省', '衡水市', '枣强县', '131121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (234, '河北省', '衡水市', '武邑县', '131122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (235, '河北省', '衡水市', '武强县', '131123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (236, '河北省', '衡水市', '饶阳县', '131124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (237, '河北省', '衡水市', '安平县', '131125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (238, '河北省', '衡水市', '故城县', '131126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (239, '河北省', '衡水市', '景县', '131127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (240, '河北省', '衡水市', '阜城县', '131128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (241, '河北省', '衡水市', '冀州市', '131181'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (242, '河北省', '衡水市', '深州市', '131182'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (243, '河北省', '邯郸地区', '邯郸市', '132101'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (244, '河北省', '邯郸地区', '大名县', '132121'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (245, '河北省', '邯郸地区', '魏县', '132122'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (246, '河北省', '邯郸地区', '曲周县', '132123'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (247, '河北省', '邯郸地区', '丘县', '132124'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (248, '河北省', '邯郸地区', '鸡泽县', '132125'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (249, '河北省', '邯郸地区', '肥乡县', '132126'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (250, '河北省', '邯郸地区', '广平县', '132127'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (251, '河北省', '邯郸地区', '成安县', '132128'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (252, '河北省', '邯郸地区', '临漳县', '132129'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (253, '河北省', '邯郸地区', '磁县', '132130'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (254, '河北省', '邯郸地区', '武安县', '132131'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (255, '河北省', '邯郸地区', '涉县', '132132'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (256, '河北省', '邯郸地区', '永年县', '132133'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (257, '河北省', '邯郸地区', '邯郸县', '132134'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (258, '河北省', '邯郸地区', '馆陶县', '132135'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (259, '河北省', '邢台地区', '南宫市', '132201'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (260, '河北省', '邢台地区', '沙河市', '132202'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (261, '河北省', '邢台地区', '邢台县', '132221'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (262, '河北省', '邢台地区', '沙河县', '132222'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (263, '河北省', '邢台地区', '临城县', '132223'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (264, '河北省', '邢台地区', '内丘县', '132224'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (265, '河北省', '邢台地区', '柏乡县', '132225'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (266, '河北省', '邢台地区', '隆尧县', '132226'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (267, '河北省', '邢台地区', '任县', '132227'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (268, '河北省', '邢台地区', '南和县', '132228'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (269, '河北省', '邢台地区', '宁晋县', '132229'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (270, '河北省', '邢台地区', '南宫县', '132230'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (271, '河北省', '邢台地区', '巨鹿县', '132231'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (272, '河北省', '邢台地区', '新河县', '132232'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (273, '河北省', '邢台地区', '广宗县', '132233'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (274, '河北省', '邢台地区', '平乡县', '132234'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (275, '河北省', '邢台地区', '威县', '132235'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (276, '河北省', '邢台地区', '清河县', '132236'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (277, '河北省', '邢台地区', '临西县', '132237'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (278, '河北省', '石家庄市', '辛集市', '132301'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (279, '河北省', '石家庄市', '藁城市', '132302'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (280, '河北省', '石家庄市', '束鹿县', '132321'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (281, '河北省', '石家庄市', '晋县', '132322'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (282, '河北省', '石家庄市', '深泽县', '132323'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (283, '河北省', '石家庄市', '无极县', '132324'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (284, '河北省', '石家庄市', '藁城县', '132325'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (285, '河北省', '石家庄市', '赵县', '132326'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (286, '河北省', '石家庄市', '栾城县', '132327'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (287, '河北省', '石家庄市', '正定县', '132328'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (288, '河北省', '石家庄市', '新乐县', '132329'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (289, '河北省', '石家庄市', '高邑县', '132330'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (290, '河北省', '石家庄市', '元氏县', '132331'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (291, '河北省', '石家庄市', '赞皇县', '132332'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (292, '河北省', '石家庄市', '井陉县', '132333'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (293, '河北省', '石家庄市', '获鹿县', '132334'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (294, '河北省', '石家庄市', '平山县', '132335'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (295, '河北省', '石家庄市', '灵寿县', '132336'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (296, '河北省', '石家庄市', '行唐县', '132337'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (297, '河北省', '保定地区', '定州市', '132401'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (298, '河北省', '保定地区', '涿州市', '132402'); +INSERT INTO `cardcodes`(`id`, `Province`, `City`, `District`, `bm`) VALUES (299, '河北省', '保定地区', '安国市', '132403'); +INSERT INTO `cardinfo`(`CardID`, `CardName`, `CustoNo`) VALUES ('NC00103003', '年卡', 'TS1816'); +INSERT INTO `cardinfo`(`CardID`, `CardName`, `CustoNo`) VALUES ('NC00103004', '年卡', 'TS6666'); +INSERT INTO `cardinfo`(`CardID`, `CardName`, `CustoNo`) VALUES ('YC00204001', '月卡', 'TS1002'); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('', '纪念品', '500', '餐饮部', '2020-08-22 15:22:44', '赠予', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN001', '购入18台PC', '15万', '酒店部', '2018-12-03 15:49:16', '联想电脑', '谭国平', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN002', '购入150平方的瓷砖', '80万', '酒店部', '2018-12-03 15:49:16', '京瓷', '李杰峰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN003', '与KaMiFood达成合作', '87万', '经理部', '2018-12-04 00:00:00', '神之食餐饮', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN004', '购入40台高配笔记本', '90万', '财务部', '2018-12-05 00:00:00', '戴尔电脑', '财务部', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN005', '与闪修达成合作', '60万', '经理部', '2018-12-05 00:00:00', '闪修公司', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN006', '顶级床单3000张', '90万', '酒店部', '2018-12-15 00:00:00', '席梦思', '酒店部', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN007', '办公椅300张', '5万', '财务部', '2018-12-05 00:00:00', 'XX公司', '财务部', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN008', '办公桌300张', '8万', '经理部', '2018-12-05 00:00:00', 'XX公司', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN009', '测试数据', '20万', '商品部', '2018-12-05 00:00:00', 'XX公司', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN010', '测试数据', '30万', 'XX部', '2018-12-06 00:00:00', 'XX公司', 'XXX', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN011', '测试数据', '40万', 'XX部', '2018-12-07 00:00:00', 'XX公司', 'XXX', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN012', '测试数据', '50万', 'XX部', '2018-12-08 00:00:00', 'XX公司', 'XXX', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN013', '测试数据', '60万', 'XX部', '2018-12-09 00:00:00', 'XX公司', 'XXX', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN014', '测试数据', '70万', 'XX部', '2018-12-23 00:00:00', 'XX公司', 'XXX', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN015', '测试数据', '80万', 'XX部', '2018-12-23 00:00:00', 'XX公司', 'XXX', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN016', '测试数据', '90万', 'XX部', '2018-12-24 00:00:00', 'XX公司', 'XXX', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN1262', '古董', '10000000', '酒店部', '2020-08-22 15:22:44', '赠送', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN1631', 'aaa', '1000', '楼面部', '2020-08-22 15:38:29', '', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN4610', '购入20套办公桌', '50000', '行政部', '2020-04-16 23:25:22', '志远办公', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN4665', '购入10套办公桌椅', '50000', '行政部', '2020-04-16 23:26:57', '志远办公', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN6816', 'test', '20000', '酒店部', '2020-04-16 23:42:08', 'adasd', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN8051', 'cccccc', 'wccc', '酒店部', '2020-08-14 14:33:21', 'ccccccc', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `cashinfo`(`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('RG001', '唯秒合作入股', '77万', '经理部', '2018-12-05 00:00:00', '唯秒', '牛战士', 0, NULL, NULL, NULL, NULL); +INSERT INTO `checkinfo`(`CheckNo`, `CheckClub`, `CheckProgres`, `CheckCash`, `CheckScore`, `CheckPerson`, `CheckAdvice`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CI001', '后勤部', '有人偷懒', '(^-^)', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); +INSERT INTO `checkinfo`(`CheckNo`, `CheckClub`, `CheckProgres`, `CheckCash`, `CheckScore`, `CheckPerson`, `CheckAdvice`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CI002', '餐饮部', '有人偷懒', 'QAQ', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); +INSERT INTO `checkinfo`(`CheckNo`, `CheckClub`, `CheckProgres`, `CheckCash`, `CheckScore`, `CheckPerson`, `CheckAdvice`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CI003', '酒店部', '有人偷懒', '(-_-)', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); +INSERT INTO `counterrule`(`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (1, 'WorkerId', '员工工号流水号规则', 30, 'WK', 'yyyyMM', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO `counterrule`(`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (2, 'NationId', '民族类型编号', 2, 'N', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO `counterrule`(`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (3, 'CustoId', '客户类型编号', 1, 'TS', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO `counterrule`(`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (4, 'ReserId', '预约编号', 1, 'R', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO `counterrule`(`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (5, 'SellId', '商品编号', 1, 'ST', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO `counterrule`(`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (6, 'NoticeId', '公告编号', 3, 'UP', 'yyyyMM', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, 'BS005', 'TS1081', '乐事薯片(原味)', 27, 20.00, 540.00, '2020-04-07 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, 'BS001', 'TS1571', '片(原味)', 1, 20.00, 0.00, '2020-08-21 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, 'BD001', 'TS1862', '特级DLS', 2, 40.00, 80.00, '2018-12-20 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (4, 'BD001', 'TS1239', '三只松鼠夏威夷坚果', 2, 40.00, 80.00, '2020-05-07 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (5, 'BS005', 'TS1081', '特级杜蕾斯', 27, 40.00, 1080.00, '2020-04-07 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (6, 'BD002', 'TS1816', '雪碧', 1, 2.50, 2.50, '2018-12-21 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (7, 'BD002', 'TS1816', '特级DLS', 1, 40.00, 40.00, '2018-12-21 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (8, 'BS005', 'TS1081', '青岛啤酒', 27, 15.00, 405.00, '2020-04-07 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (9, 'BS005', 'TS1081', '可口可乐', 31, 10.00, 310.00, '2020-04-07 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (10, 'HD006', 'TS1364', '居住HD0057天', 7, 4375.00, 4375.00, '2020-04-14 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (11, 'ZT002', 'TS1364', '居住HD0067天', 7, 4375.00, 4375.00, '2020-04-14 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (12, 'ZT002', 'TS1364', '可口可乐', 5, 2.50, 12.50, '2020-04-14 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (13, 'HD003', 'TS1001', '居住BD0050天', 0, 999.00, 0.00, '2020-04-26 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (14, 'BD004', 'TS1480', '火腿肠', 3, 10.00, 30.00, '2020-04-29 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (15, 'BD004', 'TS1480', '雪碧', 3, 2.50, 7.50, '2020-04-29 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (16, 'BD004', 'TS1480', '92拉菲', 2, 10800.00, 21600.00, '2020-04-29 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (17, 'HD001', 'TS1862', '康师傅方便面', 10, 10.00, 100.00, '2018-12-26 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (18, 'BD007', 'TS1002', '居住BS00865天', 65, 27625.00, 27625.00, '2020-07-05 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (19, 'BS007', 'TS1003', '居住BS00965天', 65, 27625.00, 27625.00, '2020-07-05 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (20, 'ZT005', 'TS1005', '居住HD00168天', 68, 42500.00, 42500.00, '2020-05-10 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (21, 'ZT005', 'TS1005', '特级杜蕾斯', 10, 40.00, 400.00, '2020-05-13 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (22, 'BS003', 'TS1084', '特级杜蕾斯', 20, 40.00, 800.00, '2018-12-26 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (23, 'BS007', 'TS1003', '特级杜蕾斯', 1, 40.00, 40.00, '2020-05-22 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (24, 'HS003', 'TS1194', '拉菲', 2, 10000.00, 20000.00, '2018-12-27 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (25, 'HS003', 'TS1194', '扑克牌', 2, 5.00, 10.00, '2018-12-27 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (26, 'HS003', 'TS1194', '火腿肠', 1, 10.00, 10.00, '2018-12-27 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (27, 'BD001', 'TS1365', '居住HD00247天', 47, 29375.00, 29375.00, '2020-07-19 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (28, 'BD001', 'TS1365', '香皂', 2, 25.00, 50.00, '2020-07-28 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (29, 'BD001', 'TS1365', '香皂', 2, 25.00, 50.00, '2020-07-28 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (30, 'BD001', 'TS1365', '青岛啤酒', 2, 15.00, 30.00, '2020-07-28 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (31, 'BS001', 'TS1571', 'WAHAHA', 2, 5.00, 10.00, '2020-08-21 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (32, 'BD002', 'TS1001', '三只松鼠夏威夷坚果', 12, 40.00, 480.00, '2019-10-07 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (33, 'BD005', 'TS1005', 'aaa', 1, 10.00, 10.00, '2020-08-22 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (34, 'ZT001', 'TS1457', '拉菲', 30, 10000.00, 300000.00, '2019-10-28 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (35, 'BD002', 'TS1001', '康师傅方便面', 1, 10.00, 10.00, '2020-03-17 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (36, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (37, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (38, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (39, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (40, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (41, 'BD002', 'TS1001', '康师傅方便面', 2, 10.00, 20.00, '2020-03-17 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (42, 'BD002', 'TS1001', '三只松鼠夏威夷坚果', 2, 40.00, 80.00, '2020-03-17 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (43, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-18 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (44, 'BD002', 'TS1001', '乐事薯片(原味)', 2, 20.00, 40.00, '2020-03-25 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (45, 'BS006', 'TS1998', '三只松鼠零食大礼包', 2, 299.00, 598.00, '2020-09-17 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (46, 'BD001', 'TS1862', '青岛啤酒', 2, 15.00, 30.00, '2018-12-20 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (47, 'HD001', 'TS1862', '雪碧', 5, 10.00, 50.00, '2018-12-26 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (48, 'HD001', 'TS1862', 'TS纪念品', 2, 10.00, 20.00, '2018-12-26 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (49, 'BS001', 'TS1005', '乐事薯片(原味)', 20, 20.00, 400.00, '2020-11-13 00:00:00', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (50, 'BS001', 'TS1005', '三只松鼠夏威夷坚果', 4, 40.00, 160.00, '2020-11-26 21:29:13', '已结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (51, 'HD008', 'TS1492', '92拉菲', 1, 10800.00, 10800.00, '2020-12-23 22:25:48', '未结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (52, 'HD008', 'TS1492', '92拉菲', 1, 10800.00, 10800.00, '2020-12-23 22:57:01', '未结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (53, 'BD010', 'TS1143', '雪碧', 2, 2.50, 5.00, '2021-01-24 17:02:12', '未结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (54, 'BD006', 'TS1347', '居住BD00270天', 70, 21000.00, 21000.00, '2021-02-09 18:04:21', '未结算', 0, NULL, NULL, NULL, NULL); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (55, 'BD008', 'TS1812', '居住BD003共12天', 12, 3600.00, 3600.00, '2021-02-12 15:04:14', '未结算', 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (56, 'BD008', 'TS1812', '三只松鼠夏威夷坚果', 1, 40.00, 40.00, '2021-02-12 15:54:38', '未结算', 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO `custospend`(`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (57, 'BD008', 'TS1812', '三只松鼠夏威夷坚果', 1, 40.00, 40.00, '2021-02-12 15:58:38', '未结算', 1, NULL, '0001-01-01', 'WK010', '2021-02-12'); +INSERT INTO `dept`(`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-001', '经理部', '各部门经理', '2019-10-01', 'WK010', NULL, 0, 'System', '2019-10-01', NULL, NULL); +INSERT INTO `dept`(`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-002', '酒店部', '酒店部门人员', '2019-10-02', NULL, NULL, 0, 'System', '2019-10-02', NULL, NULL); +INSERT INTO `dept`(`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-003', '财务部', '财务部门人员', '2019-10-03', NULL, NULL, 0, 'System', '2019-10-03', NULL, NULL); +INSERT INTO `dept`(`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-004', '人力资源部', '人力资源部门人员', '2019-10-04', NULL, NULL, 0, 'System', '2019-10-04', NULL, NULL); +INSERT INTO `dept`(`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-005', '后勤部', '后勤部门人员', '2019-10-05', NULL, NULL, 0, 'System', '2019-10-05', NULL, NULL); +INSERT INTO `dept`(`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-006', '商品部', '商品部门人员', '2019-10-06', NULL, NULL, 0, 'System', '2019-10-06', NULL, NULL); +INSERT INTO `dept`(`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-007', '维修部', '维修部门人员', '2019-10-07', NULL, NULL, 0, 'System', '2019-10-07', NULL, NULL); +INSERT INTO `dept`(`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-008', '内控部', '内控部门人员', '2019-10-08', NULL, 'D-001', 0, 'System', '2019-10-08', NULL, NULL); +INSERT INTO `dept`(`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-009', '监管小组', '监管小组人员', '2019-10-09', NULL, NULL, 0, 'System', '2019-10-09', NULL, NULL); +INSERT INTO `dept`(`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-010', '总经办', '总经办人员', '2019-10-10', 'WK010', 'D-001', 0, 'System', '2019-10-10', NULL, NULL); +INSERT INTO `dept`(`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-011', '餐饮部', '餐饮部人员', '2019-10-11', NULL, NULL, 0, 'System', '2019-10-11', NULL, NULL); +INSERT INTO `education`(`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00001', '小学', 0, 'System', '2021-01-31', 'System', '2021-01-31'); +INSERT INTO `education`(`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00002', '初中', 0, 'System', '2021-02-01', 'System', '2021-02-01'); +INSERT INTO `education`(`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00003', '高中', 0, 'System', '2021-02-02', 'System', '2021-02-02'); +INSERT INTO `education`(`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00004', '中专', 0, 'System', '2021-02-03', 'System', '2021-02-03'); +INSERT INTO `education`(`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00005', '大专', 0, 'System', '2021-02-04', 'System', '2021-02-04'); +INSERT INTO `education`(`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00006', '本科', 0, 'System', '2021-02-05', 'System', '2021-02-05'); +INSERT INTO `education`(`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00007', '研究生', 0, 'System', '2021-02-06', 'System', '2021-02-06'); +INSERT INTO `education`(`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00008', '博士', 0, 'System', '2021-02-07', 'System', '2021-02-07'); +INSERT INTO `education`(`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00009', '博士后', 0, 'System', '2021-02-08', 'System', '2021-02-08'); +INSERT INTO `fonts`(`FontsId`, `FontsMess`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '本酒店即日起与闪修平台联合推出“多修多折”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); +INSERT INTO `fonts`(`FontsId`, `FontsMess`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, '本酒店即日起与神之食餐厅联合推出“吃多折多”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); +INSERT INTO `fonts`(`FontsId`, `FontsMess`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, '本酒店即日起与Second网吧联合推出“免费体验酒店式网吧”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); +INSERT INTO `gbtype`(`GBTypeId`, `GBName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, '奖励', 0, NULL, NULL, NULL, NULL); +INSERT INTO `gbtype`(`GBTypeId`, `GBName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '惩罚', 0, NULL, NULL, NULL, NULL); +INSERT INTO `moneyinfo`(`MoneyNo`, `MoneyType`, `MoneyIn`, `MoneyOut`, `MoneyCheck`, `MoneyPerson`, `Remarks`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('MI001', 1, 10000.00, 1000.00, '是', '李杰峰', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO `moneyinfo`(`MoneyNo`, `MoneyType`, `MoneyIn`, `MoneyOut`, `MoneyCheck`, `MoneyPerson`, `Remarks`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('MI002', 2, 5000.00, 2000.00, '是', '李杰峰', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00001', '汉族', 0, 'System', '2021-01-31', '', '2021-02-07'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00002', '满族', 0, 'System', '2021-02-01', 'System', '2021-02-01'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00003', '蒙古族', 0, 'System', '2021-02-02', 'System', '2021-02-02'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00004', '回族', 0, 'System', '2021-02-03', '', '2021-02-11'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00005', '藏族', 0, 'System', '2021-02-04', 'System', '2021-02-04'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00006', '维吾尔族', 0, 'System', '2021-02-05', '', '2021-02-01'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00007', '苗族', 0, 'System', '2021-02-06', 'System', '2021-02-06'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00008', '彝族', 0, 'System', '2021-02-07', '', '2021-02-10'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00009', '壮族', 0, 'System', '2021-02-08', 'System', '2021-02-08'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00010', '布依族', 0, 'System', '2021-02-09', '', '2021-02-01'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00011', '侗族', 0, 'System', '2021-02-10', 'System', '2021-02-10'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00012', '瑶族', 0, 'System', '2021-02-11', 'System', '2021-02-11'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00013', '白族', 0, 'System', '2021-02-12', 'System', '2021-02-12'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00014', '土家族', 0, 'System', '2021-02-13', 'System', '2021-02-13'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00015', '哈尼族', 0, 'System', '2021-02-14', 'System', '2021-02-14'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00016', '哈萨克族', 0, 'System', '2021-02-15', 'System', '2021-02-15'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00017', '傣族', 0, 'System', '2021-02-16', 'System', '2021-02-16'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00018', '黎族', 0, 'System', '2021-02-17', 'System', '2021-02-17'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00019', '傈僳族', 0, 'System', '2021-02-18', '', '2021-02-11'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00020', '佤族', 0, 'System', '2021-02-19', 'System', '2021-02-19'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00021', '畲族', 0, 'System', '2021-02-20', 'System', '2021-02-20'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00022', '高山族', 0, 'System', '2021-02-21', 'System', '2021-02-21'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00023', '拉祜族', 0, 'System', '2021-02-22', 'System', '2021-02-22'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00024', '水族', 0, 'System', '2021-02-23', 'System', '2021-02-23'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00025', '东乡族', 0, 'System', '2021-02-24', 'System', '2021-02-24'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00026', '纳西族', 0, 'System', '2021-02-25', 'System', '2021-02-25'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00027', '景颇族', 0, 'System', '2021-02-26', 'System', '2021-02-26'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00028', '柯尔克孜族', 0, 'System', '2021-02-27', 'System', '2021-02-27'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00029', '土族', 0, 'System', '2021-02-28', 'System', '2021-02-28'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00030', '达斡尔族', 0, 'System', '2021-03-01', 'System', '2021-03-01'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00031', '仫佬族', 0, 'System', '2021-03-02', 'System', '2021-03-02'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00032', '羌族', 0, 'System', '2021-03-03', 'System', '2021-03-03'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00033', '布朗族', 0, 'System', '2021-03-04', 'System', '2021-03-04'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00034', '撒拉族', 0, 'System', '2021-03-05', 'System', '2021-03-05'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00035', '毛南族', 0, 'System', '2021-03-06', 'System', '2021-03-06'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00036', '仡佬族', 0, 'System', '2021-03-07', 'System', '2021-03-07'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00037', '锡伯族', 0, 'System', '2021-03-08', 'System', '2021-03-08'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00038', '阿昌族', 0, 'System', '2021-03-09', 'System', '2021-03-09'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00039', '普米族', 0, 'System', '2021-03-10', 'System', '2021-03-10'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00040', '朝鲜族', 0, 'System', '2021-03-11', 'System', '2021-03-11'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00041', '塔吉克族', 0, 'System', '2021-03-12', 'System', '2021-03-12'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00042', '怒族', 0, 'System', '2021-03-13', 'System', '2021-03-13'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00043', '乌孜别克族', 0, 'System', '2021-03-14', 'System', '2021-03-14'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00044', '俄罗斯族', 0, 'System', '2021-03-15', 'System', '2021-03-15'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00045', '鄂温克族', 0, 'System', '2021-03-16', 'System', '2021-03-16'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00046', '德昂族', 0, 'System', '2021-03-17', 'System', '2021-03-17'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00047', '保安族', 0, 'System', '2021-03-18', 'System', '2021-03-18'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00048', '裕固族', 0, 'System', '2021-03-19', 'System', '2021-03-19'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00049', '京族', 0, 'System', '2021-03-20', 'System', '2021-03-20'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00050', '塔塔尔族', 0, 'System', '2021-03-21', '', '2021-02-11'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00051', '独龙族', 0, 'System', '2021-03-22', 'System', '2021-03-22'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00052', '鄂伦春族', 0, 'System', '2021-03-23', 'System', '2021-03-23'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00053', '赫哲族', 0, 'System', '2021-03-24', 'System', '2021-03-24'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00054', '门巴族', 0, 'System', '2021-03-25', 'System', '2021-03-25'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00055', '珞巴族', 0, 'System', '2021-03-26', '', '2021-02-01'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00056', '基诺族', 0, 'System', '2021-03-27', '', '2021-02-08'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-2021000', '非族', 1, 'System', '2021-02-09', '', '2021-02-09'); +INSERT INTO `nation`(`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-2021001', '鸡族', 1, '', '2021-02-09', '', '2021-02-09'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 17:21:22', 'WK010于2020-04-21 17:21:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 19:25:45', 'WK010于2020/4/21 19:25:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 19:27:21', 'WK010于2020/4/21 19:27:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 19:27:50', 'WK010于2020/4/21 19:27:50登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 20:28:59', 'WK010于2020/4/21 20:28:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 20:29:04', '杨俊杰【经理部总经理】于2020/4/21 20:29:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 20:31:44', 'WK010于2020/4/21 20:31:44登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 20:31:51', '杨俊杰【经理部总经理】于2020/4/21 20:31:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 20:33:39', 'WK010于2020/4/21 20:33:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 20:33:46', '杨俊杰【经理部总经理】于2020/4/21 20:33:46尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 20:34:28', 'WK010于2020/4/21 20:34:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 20:34:33', '杨俊杰【经理部总经理】于2020/4/21 20:34:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 21:01:54', 'WK010于2020/4/21 21:01:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 21:02:01', '杨俊杰【经理部总经理】于2020/4/21 21:02:01尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-21 21:02:50', '杨俊杰总经理于2020/4/21 21:02:50对员工:林淑仪进行了奖罚情况录入!', '杨俊杰总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-22 09:22:38', 'WK010于2020-04-22 09:22:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-22 09:23:39', 'WK010于2020-04-22 09:23:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-22 09:24:04', '杨俊杰【经理部总经理】于2020-04-22 09:24:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-22 13:00:25', 'WK010于2020/4/22 13:00:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-22 13:01:17', 'WK010于2020/4/22 13:01:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-22 13:02:38', '杨俊杰【经理部总经理】于2020/4/22 13:02:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-22 13:04:13', '杨俊杰总经理于2020/4/22 13:04:13将员工:阿力晋升为财务部职员', '杨俊杰总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-22 18:04:45', 'WK010于2020/4/22 18:04:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 11:18:29', 'WK010于2020-04-23 11:18:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 11:33:09', 'WK010于2020-04-23 11:33:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 15:12:50', 'WK010于2020-04-23 15:12:50登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 15:12:56', '杨俊杰【经理部总经理】于2020-04-23 15:12:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 15:34:23', 'WK010于2020/4/23 15:34:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 15:46:06', '杨俊杰【经理部总经理】于2020/4/23 15:46:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 15:46:14', '杨俊杰【经理部总经理】于2020/4/23 15:46:14尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 15:52:45', '经理部总经理杨俊杰于2020/4/23 15:52:45查看了TS1194的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 15:52:49', '经理部总经理杨俊杰于2020/4/23 15:52:49查看了TS1194的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 15:58:04', 'WK010于2020-04-23 15:58:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:00:16', '杨俊杰【经理部总经理】于2020-04-23 16:00:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:07:08', 'WK010于2020-04-23 16:07:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:19:03', 'WK010于2020-04-23 16:19:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:30:34', 'WK010于2020-04-23 16:30:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:36:17', '经理部总经理杨俊杰于2020-04-23 16:36:17帮助TS1032进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:44:10', 'WK010于2020-04-23 16:44:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 19:00:36', 'WK010于2020/4/23 19:00:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 19:00:48', '杨俊杰【经理部总经理】于2020/4/23 19:00:48尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 19:39:54', 'WK010于2020/4/23 19:39:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 20:49:17', 'WK010于2020-04-23 20:49:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 20:50:30', 'WK010于2020-04-23 20:50:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 20:53:48', '经理部总经理杨俊杰于2020-04-23 20:53:48帮助TS1364进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 20:56:11', '经理部总经理杨俊杰于2020-04-23 20:56:11帮助877889进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 13:06:45', 'WK010于2020/4/24 13:06:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 13:45:48', 'WK010于2020/04/24 13:45:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 14:17:09', 'WK010于2020/04/24 14:17:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 14:24:30', 'WK010于2020/04/24 14:24:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 14:27:49', 'WK010于2020/04/24 14:27:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 16:35:20', 'WK010于2020/4/24 16:35:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 16:36:08', '杨俊杰【经理部总经理】于2020/4/24 16:36:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:44:16', 'WK010于2020-04-24 17:44:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:44:42', '杨俊杰【经理部总经理】于2020-04-24 17:44:42尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:44:44', '杨俊杰【经理部总经理】于2020-04-24 17:44:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:44:47', '杨俊杰【经理部总经理】于2020-04-24 17:44:47尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:44:49', '杨俊杰【经理部总经理】于2020-04-24 17:44:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:44:50', '杨俊杰【经理部总经理】于2020-04-24 17:44:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:50:05', '杨俊杰【经理部总经理】于2020-04-24 17:50:05尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:50:07', '杨俊杰【经理部总经理】于2020-04-24 17:50:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:50:10', '杨俊杰【经理部总经理】于2020-04-24 17:50:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:50:15', '杨俊杰【经理部总经理】于2020-04-24 17:50:15尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:50:20', '杨俊杰【经理部总经理】于2020-04-24 17:50:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:50:24', '杨俊杰【经理部总经理】于2020-04-24 17:50:24尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:50:29', '杨俊杰【经理部总经理】于2020-04-24 17:50:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:50:31', '杨俊杰【经理部总经理】于2020-04-24 17:50:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 17:50:33', '杨俊杰【经理部总经理】于2020-04-24 17:50:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 22:57:08', 'WK010于2020/4/24 22:57:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:30:24', 'WK010于2020/4/7 14:30:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:33:43', '经理部总经理杨俊杰于2020/4/7 14:33:43查看了TS1194的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:34:22', '经理部总经理杨俊杰于2020/4/7 14:34:22帮助TS1081进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:36:33', '经理部总经理杨俊杰于2020/4/7 14:36:33帮助TS1081进行了消费商品:乐事薯片(原味)操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:36:38', '经理部总经理杨俊杰于2020/4/7 14:36:38帮助TS1081进行了消费商品:特级杜蕾斯操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:36:42', '经理部总经理杨俊杰于2020/4/7 14:36:42帮助TS1081进行了消费商品:青岛啤酒操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:36:57', '经理部总经理杨俊杰于2020/4/7 14:36:57帮助TS1081进行了消费商品:可口可乐操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:37:31', '经理部总经理杨俊杰于2020/4/7 14:37:31帮助TS1081进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:38:09', '杨俊杰【经理部总经理】于2020/4/7 14:38:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:38:10', '杨俊杰【经理部总经理】于2020/4/7 14:38:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:46:46', 'WK010于2020-04-07 14:46:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:50:05', 'WK010于2020/4/7 14:50:05登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:52:08', 'WK010于2020/4/7 14:52:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:54:11', '杨俊杰【经理部总经理】于2020/4/7 14:54:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:54:23', '杨俊杰【经理部总经理】于2020/4/7 14:54:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 15:27:29', 'WK010于07/04/2020 15:27:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 15:30:50', 'WK010于07/04/2020 15:30:50登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 15:32:06', '经理部总经理杨俊杰于07/04/2020 15:32:06查看了TS1005的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 15:42:24', 'WK010于07/04/2020 15:42:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-08 12:48:35', 'WK010于2020/4/8 12:48:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-08 12:49:20', '经理部总经理杨俊杰于2020/4/8 12:49:20帮助TS6666进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-08 21:42:25', 'WK010于2020/4/8 21:42:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-09 00:10:34', 'WK010于2020/4/9 0:10:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-09 14:37:46', 'WK010于2020/4/9 14:37:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-09 14:40:04', '经理部总经理杨俊杰于2020/4/9 14:40:04帮助TS6666进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-09 15:23:56', 'WK010于2020-04-09 15:23:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-09 16:26:51', 'WK010于2020-04-09 16:26:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-09 18:17:02', 'WK010于2020/4/9 18:17:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-09 18:17:06', '杨俊杰【经理部总经理】于2020/4/9 18:17:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 07:27:16', 'WK010于2020/4/10 7:27:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 08:10:55', 'WK010于2020/4/10 8:10:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 09:04:17', 'WK010于2020/4/10 9:04:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-27 18:04:01', 'WK010于2020/3/27 星期五 18:04:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-27 18:04:05', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:04:05尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-27 18:04:07', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:04:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-27 18:04:49', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:04:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-27 18:15:02', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-27 18:15:09', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-27 18:15:15', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:15尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-27 18:15:18', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-27 18:15:19', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:19尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-27 19:59:10', 'WK010于2020/3/27 19:59:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-28 12:15:02', 'WK010于2020/3/28 星期六 12:15:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-28 12:19:08', 'WK010于2020/3/28 星期六 12:19:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-28 12:20:08', '杨俊杰【经理部总经理】于2020/3/28 星期六 12:20:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-28 22:31:38', 'WK010于2020/3/28 22:31:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-30 13:11:07', 'WK010于2020/3/30 13:11:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-30 13:11:13', '杨俊杰【经理部总经理】于2020/3/30 13:11:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-30 13:40:42', 'WK010于2020/3/30 13:40:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-30 13:44:36', 'WK010于2020/3/30 13:44:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-30 13:45:08', 'WK010于2020/3/30 13:45:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-02 14:58:09', 'WK010于2020/4/2 14:58:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-02 14:59:00', '杨俊杰【经理部总经理】于2020/4/2 14:59:00尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-02 15:53:54', 'WK010于2020/4/2 15:53:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-02 15:54:06', 'WK010于2020/4/2 15:54:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 15:03:59', 'WK010于2020/4/6 15:03:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 15:04:46', 'WK010于2020/4/6 15:04:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 15:09:00', 'WK010于2020/4/6 15:09:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 15:13:26', 'WK010于2020/4/6 15:13:26登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 15:55:05', 'WK010于2020/4/6 15:55:05登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 15:56:20', 'WK010于2020/4/6 15:56:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 15:57:48', 'WK010于2020/4/6 15:57:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 15:58:09', '经理部总经理杨俊杰于2020/4/6 15:58:09帮助789798789进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 18:13:48', 'WK010于2020/4/6 18:13:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:01:17', 'WK010于2020/4/6 19:01:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:03:38', 'WK010于2020/4/6 19:03:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:05:23', 'WK010于2020/4/6 19:05:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:07:43', 'WK010于2020/4/6 19:07:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:10:41', 'WK010于2020/4/6 19:10:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:13:45', 'WK010于2020/4/6 19:13:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:14:54', 'WK010于2020/4/6 19:14:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:16:01', 'WK010于2020/4/6 19:16:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:16:42', 'WK010于2020/4/6 19:16:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:17:36', 'WK010于2020/4/6 19:17:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:18:32', 'WK010于2020/4/6 19:18:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:21:24', 'WK010于2020/4/6 19:21:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:21:58', 'WK010于2020/4/6 19:21:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:23:43', 'WK010于2020/4/6 19:23:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:24:47', 'WK010于2020/4/6 19:24:47登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:27:53', 'WK010于2020/4/6 19:27:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:31:36', 'WK010于2020/4/6 19:31:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:32:46', 'WK010于2020/4/6 19:32:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:34:18', 'WK010于2020/4/6 19:34:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:35:15', 'WK010于2020/4/6 19:35:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:37:15', 'WK010于2020/4/6 19:37:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:38:51', 'WK010于2020/4/6 19:38:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:39:51', 'WK010于2020/4/6 19:39:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:40:29', 'WK010于2020/4/6 19:40:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 22:06:12', 'WK010于2020/4/6 22:06:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 22:07:33', '杨俊杰【经理部总经理】于2020/4/6 22:07:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 00:20:02', 'WK010于2020/4/7 0:20:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 00:21:47', '经理部总经理杨俊杰于2020/4/7 0:21:47帮助123123123进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 00:24:22', '经理部总经理杨俊杰于2020/4/7 0:24:22帮助进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 00:24:31', '杨俊杰【经理部总经理】于2020/4/7 0:24:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 00:27:56', '经理部杨俊杰总经理杨俊杰于2020/4/7 0:27:56导出了后台用户信息!', '经理部杨俊杰总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 09:05:16', '经理部总经理杨俊杰于2020/4/10 9:05:16查看了TS1003的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 09:05:20', '经理部总经理杨俊杰于2020/4/10 9:05:20查看了TS1003的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 09:34:56', 'WK010于2020-04-10 09:34:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 09:42:29', 'WK010于2020-04-10 09:42:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 09:44:08', '经理部总经理杨俊杰于2020-04-10 09:44:08帮助TS1001进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 10:32:06', 'WK010于2020/4/10 10:32:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 11:11:51', 'WK010于2020/4/10 11:11:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 13:02:54', 'WK010于2020/4/10 13:02:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 13:09:51', '杨俊杰【经理部总经理】于2020/4/10 13:09:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 14:09:11', 'WK010于2020/4/10 14:09:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 15:15:54', 'WK010于2020/4/10 15:15:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-11 12:54:06', 'WK010于2020/4/11 12:54:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-11 12:55:10', '杨俊杰【经理部总经理】于2020/4/11 12:55:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-11 16:02:28', 'WK010于2020-04-11 16:02:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-12 17:31:38', 'WK010于2020/4/12 17:31:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 11:35:32', 'WK010于2020/4/13 11:35:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 11:38:41', 'WK010于2020/4/13 11:38:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 11:53:43', 'WK010于2020/4/13 11:53:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 11:54:57', '杨俊杰【经理部总经理】于2020/4/13 11:54:57尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 15:31:10', 'WK010于2020/4/13 15:31:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 16:52:11', 'WK010于2020/4/13 16:52:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 16:56:13', 'WK010于2020/4/13 16:56:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 22:00:36', 'WK010于2020/4/13 22:00:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 22:04:59', 'WK010于2020/4/13 22:04:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 22:05:48', 'WK010于2020/4/13 22:05:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 22:06:04', 'WK010于2020/4/13 22:06:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 22:07:08', 'TS1001于2020/4/13 22:07:08进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 22:07:18', 'TS1001于2020/4/13 22:07:18进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 22:11:30', '杨俊杰【经理部总经理】于2020/4/13 22:11:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 22:11:52', '杨俊杰【经理部总经理】于2020/4/13 22:11:52尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 22:17:20', '经理部总经理杨俊杰于2020/4/13 22:17:20查看了TS6128的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 22:17:31', '经理部总经理杨俊杰于2020/4/13 22:17:31查看了TS6128的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 22:35:33', 'WK010于2020/4/13 22:35:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 22:41:32', 'WK010于2020/4/13 22:41:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 22:42:40', '杨俊杰【经理部总经理】于2020/4/13 22:42:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-13 23:10:50', 'WK010于2020/4/13 23:10:50登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 08:46:33', 'WK010于2020/4/14 8:46:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 09:55:58', 'WK010于2020-04-14 9:55:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 14:50:22', 'WK010于2020/4/14 14:50:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 14:51:27', 'WK010于2020/4/14 14:51:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 14:54:24', 'WK010于2020/4/14 14:54:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 14:56:19', 'WK010于2020/4/14 14:56:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 15:17:09', 'WK010于2020/4/14 15:17:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 15:22:12', 'WK010于2020/4/14 15:22:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 15:23:21', '经理部总经理杨俊杰于2020/4/14 15:23:21查看了TS1001的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 15:25:18', 'WK010于2020/4/14 15:25:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 15:28:31', 'WK010于2020/4/14 15:28:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:04:16', 'WK010于2020/4/14 16:04:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:22:00', 'WK010于2020/4/14 16:22:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:22:28', '经理部总经理杨俊杰于2020/4/14 16:22:28帮助TS1251进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:23:22', '经理部总经理杨俊杰于2020/4/14 16:23:22帮助TS1266进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:24:54', 'WK010于2020/4/14 16:24:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:25:32', '经理部总经理杨俊杰于2020/4/14 16:25:32帮助TS1081进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:40:00', 'WK010于2020/4/14 16:40:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:41:33', 'WK010于2020/4/14 16:41:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:42:14', 'WK010于2020/4/14 16:42:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:43:27', 'WK010于2020/4/14 16:43:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:43:56', 'WK010于2020/4/14 16:43:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:44:41', 'WK010于2020/4/14 16:44:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 15:10:03', 'WK010于2020/4/6 15:10:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:45:33', 'WK010于2020/4/14 16:45:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:46:20', '经理部总经理杨俊杰于2020/4/14 16:46:20帮助TS1779进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:47:18', 'WK010于2020/4/14 16:47:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:48:06', 'WK010于2020/4/14 16:48:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:49:16', 'WK010于2020/4/14 16:49:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:52:22', 'WK010于2020/4/14 16:52:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:53:10', 'WK010于2020/4/14 16:53:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:54:32', 'WK010于2020/4/14 16:54:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:55:39', 'WK010于2020/4/14 16:55:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:02:46', 'WK010于2020/4/14 17:02:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:10:45', 'WK010于2020/4/14 17:10:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:22:54', 'WK010于2020/4/14 17:22:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:24:55', 'WK010于2020/4/14 17:24:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:26:12', 'WK010于2020/4/14 17:26:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:29:28', 'WK010于2020/4/14 17:29:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:30:17', 'WK010于2020/4/14 17:30:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:33:06', 'WK010于2020/4/14 17:33:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:05:06', 'WK010于2020/4/14 18:05:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:06:45', 'WK010于2020/4/14 18:06:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:07:26', 'WK010于2020/4/14 18:07:26登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:12:55', 'WK010于2020/4/14 18:12:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:13:19', 'TS1251于2020/4/14 18:13:19进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:22:28', 'WK010于2020/4/14 18:22:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:22:48', 'TS1266于2020/4/14 18:22:48进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:24:23', 'WK010于2020/4/14 18:24:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:24:42', 'TS1081于2020/4/14 18:24:42进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:31:50', 'WK010于2020/4/14 18:31:50登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:33:29', 'WK010于2020/4/14 18:33:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:33:48', 'TS1194于2020/4/14 18:33:48进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:37:45', 'WK010于2020/4/14 18:37:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:38:13', 'TS1364于2020/4/14 18:38:13进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:53:32', 'WK010于2020/4/14 18:53:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 18:57:48', 'WK010于2020/4/14 18:57:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:02:26', 'WK010于2020/4/14 19:02:26登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:06:24', 'WK010于2020/4/14 19:06:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:07:43', 'WK010于2020/4/14 19:07:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:09:20', 'WK010于2020/4/14 19:09:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:24:41', 'WK010于2020/4/14 19:24:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:25:52', 'WK010于2020/4/14 19:25:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:29:07', 'WK010于2020/4/14 19:29:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:31:12', 'WK010于2020/4/14 19:31:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:32:40', 'WK010于2020/4/14 19:32:40登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:34:14', 'WK010于2020/4/14 19:34:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:35:11', 'WK010于2020/4/14 19:35:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:38:53', 'WK010于2020/4/14 19:38:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:39:12', 'TS1364于2020/4/14 19:39:12进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:40:11', 'WK010于2020/4/14 19:40:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:40:30', 'TS1364于2020/4/14 19:40:30进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:41:34', '经理部总经理杨俊杰于2020/4/14 19:41:34帮助TS1364进行了消费商品:可口可乐操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:42:31', 'WK010于2020/4/14 19:42:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:43:43', 'WK010于2020/4/14 19:43:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:44:51', 'WK010于2020/4/14 19:44:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 19:45:48', '经理部总经理杨俊杰于2020/4/14 19:45:48帮助TS1005进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 20:04:14', 'WK010于2020/4/14 20:04:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 20:17:41', 'WK010于2020/4/14 20:17:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 20:18:11', 'WK010于2020/4/14 20:18:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 20:24:34', 'WK010于2020/4/14 20:24:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 20:25:41', 'WK010于2020/4/14 20:25:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-15 13:09:39', 'WK010于2020/4/15 13:09:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-15 13:09:58', '经理部总经理杨俊杰于2020/4/15 13:09:58查看了的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-15 13:10:04', '经理部总经理杨俊杰于2020/4/15 13:10:04查看了的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-15 14:29:24', 'WK010于2020/4/15 14:29:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-15 14:37:42', 'WK010于2020/4/15 14:37:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-15 15:12:06', 'WK010于2020/4/15 15:12:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-15 17:06:22', 'WK010于2020/4/15 17:06:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 18:32:45', 'WK010于2020/4/16 18:32:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 18:36:51', 'WK010于2020/4/16 18:36:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 18:40:31', 'WK010于2020/4/16 18:40:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 19:19:56', 'WK010于2020/4/16 19:19:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 19:26:51', 'WK010于2020/4/16 19:26:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 19:28:20', 'WK010于2020/4/16 19:28:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 19:29:27', 'WK010于2020/4/16 19:29:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 19:29:59', 'WK010于2020/4/16 19:29:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 19:30:53', 'WK010于2020/4/16 19:30:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 19:36:21', 'WK010于2020/4/16 19:36:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 20:23:21', 'WK010于2020/4/16 20:23:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 20:23:27', '杨俊杰【经理部总经理】于2020/4/16 20:23:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 20:24:26', 'WK010于2020/4/16 20:24:26登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 20:24:31', '杨俊杰【经理部总经理】于2020/4/16 20:24:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 20:30:26', 'WK010于2020/4/16 20:30:26登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 20:36:26', 'WK010于2020/4/16 20:36:26登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 20:38:56', '于2020/4/16 20:38:56登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 20:47:00', 'WK010于2020/4/16 20:47:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 20:48:25', 'WK010于2020/4/16 20:48:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 20:49:56', 'WK010于2020/4/16 20:49:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 20:50:25', 'WK010于2020/4/16 20:50:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 20:51:23', 'WK010于2020/4/16 20:51:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 20:54:14', 'WK010于2020/4/16 20:54:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 20:59:31', 'WK010于2020-04-16 20:59:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 22:20:55', 'WK010于2020/4/16 22:20:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 22:38:57', 'WK010于2020/4/16 22:38:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 22:46:38', 'WK010于2020/4/16 22:46:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:20:34', 'WK010于2020/4/16 23:20:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:21:10', '杨俊杰【经理部总经理】于2020/4/16 23:21:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:36:55', 'WK010于2020/4/16 23:36:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:37:01', '杨俊杰【经理部总经理】于2020/4/16 23:37:01尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:46:30', 'WK010于2020/4/16 23:46:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:46:36', '杨俊杰【经理部总经理】于2020/4/16 23:46:36尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:50:19', 'WK010于2020/4/16 23:50:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:50:24', '杨俊杰【经理部总经理】于2020/4/16 23:50:24尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:52:39', 'WK010于2020/4/16 23:52:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:55:02', 'WK010于2020/4/16 23:55:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 00:29:53', 'WK010于2020/4/17 0:29:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 00:30:25', 'WK010于2020/4/17 0:30:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 00:50:57', 'WK010于2020/4/17 0:50:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 13:02:49', 'WK010于2020/4/17 13:02:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 13:31:49', 'WK010于2020/4/17 13:31:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 09:38:09', 'WK010于2020/4/10 9:38:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-27 18:16:10', 'WK010于2020/3/27 18:16:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-03-27 18:16:13', '杨俊杰【经理部总经理】于2020/3/27 18:16:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 16:02:24', 'WK010于2020/4/6 16:02:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 16:05:48', 'WK010于2020/4/6 16:05:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 16:06:13', 'WK010于2020/4/6 16:06:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 16:09:26', 'WK010于2020/4/6 16:09:26登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 16:09:56', 'WK010于2020/4/6 16:09:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 16:18:17', 'WK010于2020/4/6 16:18:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 16:19:20', 'WK010于2020/4/6 16:19:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 16:41:33', 'WK010于2020/4/6 16:41:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 16:42:18', 'WK010于2020/4/6 16:42:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 16:44:01', 'WK010于2020/4/6 16:44:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 16:49:22', 'WK010于2020/4/6 16:49:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 16:50:36', 'WK010于2020/4/6 16:50:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 17:04:41', 'WK010于2020/4/6 17:04:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 17:05:23', 'WK010于2020/4/6 17:05:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 17:08:39', 'WK010于2020/4/6 17:08:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 17:18:18', 'WK010于2020/4/6 17:18:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 17:19:02', 'WK010于2020/4/6 17:19:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 17:20:10', 'WK010于2020/4/6 17:20:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 17:24:02', 'WK010于2020/4/6 17:24:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 17:24:51', 'WK010于2020/4/6 17:24:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 17:41:29', 'WK010于2020/4/6 17:41:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 17:44:15', 'WK010于2020/4/6 17:44:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 17:45:55', 'WK010于2020/4/6 17:45:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 17:59:46', 'WK010于2020/4/6 17:59:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:42:17', 'WK010于2020/4/6 19:42:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:42:57', 'WK010于2020/4/6 19:42:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:44:45', 'WK010于2020/4/6 19:44:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:45:38', 'WK010于2020/4/6 19:45:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:47:57', 'WK010于2020/4/6 19:47:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:49:08', 'WK010于2020/4/6 19:49:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:50:11', 'WK010于2020/4/6 19:50:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:51:01', 'WK010于2020/4/6 19:51:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:52:35', 'WK010于2020/4/6 19:52:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:53:55', 'WK010于2020/4/6 19:53:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:56:53', 'WK010于2020/4/6 19:56:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:57:15', 'WK010于2020/4/6 19:57:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:58:46', 'WK010于2020/4/6 19:58:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:59:20', '经理部总经理杨俊杰于2020/4/6 19:59:20帮助TS1084进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 19:59:34', 'WK010于2020/4/6 19:59:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:00:56', 'WK010于2020/4/6 20:00:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:02:33', 'WK010于2020/4/6 20:02:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:03:54', 'WK010于2020/4/6 20:03:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:04:43', 'WK010于2020/4/6 20:04:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:08:48', 'WK010于2020/4/6 20:08:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:09:28', 'WK010于2020/4/6 20:09:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:12:48', 'WK010于2020/4/6 20:12:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:19:53', 'WK010于2020/4/6 20:19:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:21:01', 'WK010于2020/4/6 20:21:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:22:30', 'WK010于2020/4/6 20:22:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:23:21', 'WK010于2020/4/6 20:23:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:24:20', 'WK010于2020/4/6 20:24:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:24:34', '经理部总经理杨俊杰于2020/4/6 20:24:34帮助TS1074进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:25:00', 'WK010于2020/4/6 20:25:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:25:14', '经理部总经理杨俊杰于2020/4/6 20:25:14帮助TS1634进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 20:25:30', '经理部总经理杨俊杰于2020/4/6 20:25:30帮助TS1765进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:30:34', 'WK010于2020/4/14 17:30:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:34:45', 'WK010于2020/4/14 17:34:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:41:31', 'WK010于2020/4/16 23:41:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:42:05', '杨俊杰【经理部总经理】于2020/4/16 23:42:05尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:42:29', '总经理杨俊杰于2020/4/16 23:42:29进行资产录入,资产编号为:CN6816', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:46:35', 'TS1005于2020/4/16 23:46:35进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:46:52', 'TS1005于2020/4/16 23:46:52进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:47:21', 'TS1005于2020/4/16 23:47:21进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:47:47', 'TS1005于2020/4/16 23:47:47进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 00:52:35', 'WK010于2020/4/17 0:52:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 00:52:56', '杨俊杰【经理部总经理】于2020/4/17 0:52:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 13:36:09', 'WK010于2020/4/17 13:36:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 13:40:44', 'WK010于2020/4/17 13:40:44登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 13:42:57', 'WK010于2020/4/17 13:42:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 13:45:35', 'WK010于2020-04-17 13:45:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 13:49:28', 'WK010于2020/4/17 13:49:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 13:54:06', 'WK010于2020/4/17 13:54:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 13:55:27', 'WK010于2020/4/17 13:55:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 14:06:21', 'WK010于2020/4/17 14:06:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 14:07:35', 'WK010于2020/4/17 14:07:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 14:08:09', '杨俊杰【经理部总经理】于2020/4/17 14:08:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 14:09:34', 'WK010于2020/4/17 14:09:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 14:09:38', '杨俊杰【经理部总经理】于2020/4/17 14:09:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 14:12:18', 'WK010于2020/4/17 14:12:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 14:12:23', '杨俊杰【经理部总经理】于2020/4/17 14:12:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 14:15:55', 'WK010于2020/4/17 14:15:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 14:16:03', '杨俊杰【经理部总经理】于2020/4/17 14:16:03尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 14:17:57', 'WK010于2020/4/17 14:17:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 14:18:01', '杨俊杰【经理部总经理】于2020/4/17 14:18:01尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 18:17:16', 'WK010于2020/4/6 18:17:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 18:19:53', 'WK010于2020/4/6 18:19:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 18:23:53', 'WK010于2020/4/6 18:23:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 18:24:34', 'WK010于2020/4/6 18:24:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 18:25:03', 'WK010于2020/4/6 18:25:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 18:25:36', 'WK010于2020/4/6 18:25:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 18:26:34', 'WK010于2020/4/6 18:26:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 18:27:00', 'WK010于2020/4/6 18:27:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 18:27:35', 'WK010于2020/4/6 18:27:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-06 18:28:03', 'WK010于2020/4/6 18:28:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:35:27', 'WK010于2020-04-07 14:35:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:40:57', 'WK010于2020/4/7 14:40:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-07 14:47:21', 'WK010于2020/4/7 14:47:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-09 15:25:59', 'WK010于2020/4/9 15:25:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 09:47:15', 'WK010于2020-04-10 09:47:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 09:54:07', 'WK010于2020/4/10 9:54:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 10:14:26', 'WK010于2020/4/10 10:14:26登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 10:16:24', 'WK010于2020/4/10 10:16:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 10:22:01', 'WK010于2020/4/10 10:22:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 10:22:40', '经理部总经理杨俊杰于2020/4/10 10:22:40查看了TS1074的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 10:22:47', '经理部总经理杨俊杰于2020/4/10 10:22:47查看了TS1251的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-10 10:24:16', '经理部总经理杨俊杰于2020/4/10 10:24:16查看了TS1387的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 14:57:19', 'WK010于2020/4/14 14:57:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:56:17', 'WK010于2020/4/14 16:56:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:57:09', 'WK010于2020/4/14 16:57:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 16:57:52', 'WK010于2020/4/14 16:57:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:07:51', 'WK010于2020/4/14 17:07:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:10:58', 'WK010于2020/4/14 17:10:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:12:17', 'WK010于2020/4/14 17:12:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:16:33', 'WK010于2020/4/14 17:16:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:17:01', 'WK010于2020/4/14 17:17:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:17:49', '经理部总经理杨俊杰于2020/4/14 17:17:49查看了TS1387的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:22:34', 'WK010于2020/4/14 17:22:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-14 17:24:28', 'WK010于2020/4/14 17:24:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:25:12', 'WK010于2020/4/16 23:25:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:25:18', '杨俊杰【经理部总经理】于2020/4/16 23:25:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:26:47', 'WK010于2020/4/16 23:26:47登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:26:53', '杨俊杰【经理部总经理】于2020/4/16 23:26:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:35:17', 'WK010于2020/4/16 23:35:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:35:35', '杨俊杰【经理部总经理】于2020/4/16 23:35:35尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-16 23:57:51', 'WK010于2020/4/16 23:57:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 15:57:49', 'WK010于2020/4/17 15:57:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 17:08:41', 'WK010于2020-04-17 17:08:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 17:26:59', 'WK010于2020-04-17 17:26:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 19:54:57', 'WK010于2020/4/17 19:54:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-17 22:11:49', 'WK010于2020/4/17 22:11:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 00:16:53', 'WK010于2020/4/18 0:16:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 00:17:16', '杨俊杰【经理部总经理】于2020/4/18 0:17:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 00:46:57', 'WK010于2020/4/18 0:46:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 00:47:03', '杨俊杰【经理部总经理】于2020/4/18 0:47:03尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 00:48:31', 'WK010于2020/4/18 0:48:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 00:48:38', '杨俊杰【经理部总经理】于2020/4/18 0:48:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 00:50:47', 'WK010于2020/4/18 0:50:47登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 00:50:51', '杨俊杰【经理部总经理】于2020/4/18 0:50:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 00:51:45', 'WK010于2020/4/18 0:51:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 00:51:49', '杨俊杰【经理部总经理】于2020/4/18 0:51:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 00:53:56', 'WK010于2020/4/18 0:53:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 00:54:44', '杨俊杰【经理部总经理】于2020/4/18 0:54:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 01:08:02', 'WK010于2020/4/18 1:08:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 01:08:09', '杨俊杰【经理部总经理】于2020/4/18 1:08:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 01:11:20', 'WK010于2020/4/18 1:11:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 01:11:25', '杨俊杰【经理部总经理】于2020/4/18 1:11:25尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 21:38:57', 'WK010于2020/4/18 21:38:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-18 21:39:29', 'WK010于2020/4/18 21:39:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:23:09', 'WK010于2020/4/19 0:23:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:23:18', '杨俊杰【经理部总经理】于2020/4/19 0:23:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:25:07', 'WK010于2020/4/19 0:25:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:25:12', '杨俊杰【经理部总经理】于2020/4/19 0:25:12尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:29:15', 'WK010于2020/4/19 0:29:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:29:23', '杨俊杰【经理部总经理】于2020/4/19 0:29:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:30:57', 'WK010于2020/4/19 0:30:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:31:03', '杨俊杰【经理部总经理】于2020/4/19 0:31:03尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:34:19', 'WK010于2020/4/19 0:34:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:34:43', '杨俊杰【经理部总经理】于2020/4/19 0:34:43尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:39:58', 'WK010于2020/4/19 0:39:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:40:04', '杨俊杰【经理部总经理】于2020/4/19 0:40:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:42:23', 'WK010于2020/4/19 0:42:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:42:29', '杨俊杰【经理部总经理】于2020/4/19 0:42:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:46:44', 'WK010于2020/4/19 0:46:44登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:46:57', '杨俊杰【经理部总经理】于2020/4/19 0:46:57尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:47:17', '杨俊杰总经理于2020/4/19 0:47:17进行了添加员工操作,员工编号为:WK6800!', '杨俊杰总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:50:08', 'WK010于2020/4/19 0:50:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:50:13', '杨俊杰【经理部总经理】于2020/4/19 0:50:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:50:31', '杨俊杰总经理于2020/4/19 0:50:31进行了添加员工操作,员工编号为:WK2751!', '杨俊杰总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 01:01:45', 'WK010于2020/4/19 1:01:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 01:01:50', '杨俊杰【经理部总经理】于2020/4/19 1:01:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 01:08:04', 'WK010于2020/4/19 1:08:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 11:06:52', 'WK010于2020/4/19 11:06:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 11:08:09', '杨俊杰【经理部总经理】于2020/4/19 11:08:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 11:13:05', 'WK010于2020/4/19 11:13:05登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 11:13:10', '杨俊杰【经理部总经理】于2020/4/19 11:13:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 12:04:01', 'WK010于2020/4/19 12:04:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:10:57', 'WK010于2020/4/19 0:10:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:11:09', '杨俊杰【经理部总经理】于2020/4/19 0:11:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:12:58', 'WK010于2020/4/19 0:12:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 00:13:04', '杨俊杰【经理部总经理】于2020/4/19 0:13:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 11:05:25', 'WK010于2020/4/19 11:05:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 16:23:04', 'WK010于2020/4/19 16:23:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 17:14:48', 'WK010于2020/4/19 17:14:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 18:44:42', 'WK010于2020/4/19 18:44:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 19:10:43', 'WK010于2020/4/19 19:10:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 19:11:21', 'WK010于2020/4/19 19:11:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 11:08:12', 'WK010于2020/4/20 11:08:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 11:09:53', '杨俊杰【经理部总经理】于2020/4/20 11:09:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 11:09:55', '杨俊杰【经理部总经理】于2020/4/20 11:09:55尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 11:25:40', 'WK010于2020-04-20 11:25:40登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 11:25:44', '杨俊杰【经理部总经理】于2020-04-20 11:25:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 11:28:58', 'WK010于2020-04-20 11:28:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 11:29:06', '杨俊杰【经理部总经理】于2020-04-20 11:29:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 12:24:12', 'WK010于2020-04-20 12:24:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 12:24:16', '杨俊杰【经理部总经理】于2020-04-20 12:24:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 12:33:23', 'WK010于2020/4/20 12:33:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 15:47:09', 'WK010于2020/4/20 15:47:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 15:48:59', 'WK010于2020/4/20 15:48:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 15:56:40', 'WK010于2020-04-20 15:56:40登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 15:57:11', '杨俊杰【经理部总经理】于2020-04-20 15:57:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 16:10:04', 'WK010于2020-04-20 16:10:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 16:10:15', '杨俊杰【经理部总经理】于2020-04-20 16:10:15尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 16:13:28', 'WK010于2020-04-20 16:13:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 16:13:31', '杨俊杰【经理部总经理】于2020-04-20 16:13:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 16:21:01', 'WK010于2020-04-20 16:21:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 16:21:04', '杨俊杰【经理部总经理】于2020-04-20 16:21:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 16:23:13', 'WK010于2020-04-20 16:23:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 16:23:16', '杨俊杰【经理部总经理】于2020-04-20 16:23:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 22:49:34', 'WK010于2020-04-20 22:49:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 22:54:13', '经理部总经理杨俊杰于2020-04-20 22:54:13查看了TS6128的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 22:55:36', '经理部总经理杨俊杰于2020-04-20 22:55:36帮助TS1032进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-20 22:57:00', 'WK010于2020-04-20 22:57:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 23:02:27', 'WK010于2020/4/24 23:02:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 23:04:02', 'WK010于2020/4/24 23:04:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-24 23:09:54', 'WK010于2020/4/24 23:09:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-25 13:54:51', 'WK010于2020/4/25 星期六 13:54:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-25 16:28:16', 'WK010于2020/4/25 16:28:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-25 16:29:15', '经理部总经理杨俊杰于2020/4/25 16:29:15查看了的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-25 16:33:55', '经理部总经理杨俊杰于2020/4/25 16:33:55帮助12354697812进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-25 18:42:59', 'WK010于2020/4/25 18:42:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-25 19:37:32', 'WK010于2020/4/25 19:37:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-25 19:48:12', 'WK010于2020/4/25 19:48:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-25 19:48:49', 'WK010于2020/4/25 19:48:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-25 20:18:56', 'WK010于2020/4/25 20:18:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 10:00:31', 'WK010于2020/4/26 10:00:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 10:32:42', 'WK010于2020/4/26 10:32:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 10:36:27', '经理部总经理杨俊杰于2020/4/26 10:36:27帮助TS1001进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 10:36:53', '经理部总经理杨俊杰于2020/4/26 10:36:53帮助TS1032进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 10:56:36', 'WK010于2020/4/26 10:56:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 13:46:30', 'WK010于2020/4/26 13:46:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 13:49:18', '经理部总经理杨俊杰于2020/4/26 13:49:18帮助TS1081进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 13:49:40', '杨俊杰【经理部总经理】于2020/4/26 13:49:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 13:51:14', 'WK010于2020/4/26 13:51:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 13:52:10', 'WK010于2020/4/26 13:52:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 13:52:53', 'WK010于2020/4/26 13:52:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 13:54:04', 'WK010于2020/4/26 13:54:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 13:54:38', 'WK010于2020/4/26 13:54:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 13:59:02', 'WK010于2020/4/26 13:59:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 14:03:15', 'WK010于2020/4/26 14:03:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 14:06:09', 'TS1001于2020/4/26 14:06:09进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 14:11:18', 'WK010于2020/4/26 14:11:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 14:12:01', 'WK010于2020/4/26 14:12:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 14:14:07', 'WK010于2020/4/26 14:14:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 14:40:07', 'WK010于2020/4/26 14:40:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 15:21:18', 'WK010于2020/4/26 15:21:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 17:35:51', 'WK010于2020/4/26 17:35:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 18:45:27', 'WK010于2020/4/26 18:45:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 19:05:28', 'WK010于2020/4/26 19:05:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 19:06:24', '经理部总经理杨俊杰于2020/4/26 19:06:24帮助TS1336进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 23:17:46', 'WK010于2020/4/26 23:17:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 23:21:18', 'WK010于2020/4/26 23:21:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-28 10:28:07', 'WK010于2020/4/28 10:28:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-28 10:30:33', 'WK010于2020/4/28 10:30:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-29 00:12:42', 'WK010于2020/4/29 0:12:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-29 00:13:00', '杨俊杰【经理部总经理】于2020/4/29 0:13:00尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-29 00:14:27', '杨俊杰【经理部总经理】于2020/4/29 0:14:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-29 08:25:29', 'WK010于2020-04-29 08:25:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-29 08:35:52', 'WK010于2020-04-29 08:35:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-29 12:36:36', 'WK010于2020/4/29 12:36:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-29 12:37:21', 'WK001于2020/4/29 12:37:21登入了系统!', 'WK001', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-29 12:40:46', '人事部职员谭国平于2020/4/29 12:40:46帮助TS1480进行了消费商品:火腿肠操作!', '人事部职员谭国平', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-29 12:41:00', '人事部职员谭国平于2020/4/29 12:41:00帮助TS1480进行了消费商品:雪碧操作!', '人事部职员谭国平', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-29 12:41:14', '人事部职员谭国平于2020/4/29 12:41:14帮助TS1480进行了消费商品:92拉菲操作!', '人事部职员谭国平', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-29 22:57:10', 'WK010于2020/4/29 22:57:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-01 00:24:06', 'WK010于2020/5/1 0:24:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-01 08:47:30', 'WK010于2020/5/1 8:47:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-02 10:54:00', 'WK010于2020/5/2 10:54:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-03 19:55:35', 'WK010于2020/5/3 19:55:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-03 19:55:55', '杨俊杰【经理部总经理】于2020/5/3 19:55:55尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-03 19:59:02', '经理部总经理杨俊杰于2020/5/3 19:59:02帮助TS1002进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-03 19:59:23', '经理部总经理杨俊杰于2020/5/3 19:59:23帮助TS1003进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-03 19:59:46', '经理部总经理杨俊杰于2020/5/3 19:59:46帮助TS1005进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-03 20:05:46', 'WK010于2020/5/3 20:05:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-03 20:11:00', '杨俊杰【经理部总经理】于2020/5/3 20:11:00尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 17:10:57', 'WK010于2020/4/19 17:10:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 17:13:36', 'WK010于2020/4/19 17:13:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 17:14:05', 'WK010于2020/4/19 17:14:05登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 17:14:24', 'WK010于2020/4/19 17:14:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 17:14:43', 'WK010于2020/4/19 17:14:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 18:40:57', 'WK010于2020/4/19 18:40:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 19:19:00', 'WK010于2020/4/19 19:19:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 19:21:43', 'WK010于2020/4/19 19:21:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 19:23:07', 'WK010于2020/4/19 19:23:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 19:25:08', 'WK010于2020/4/19 19:25:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 19:25:58', 'WK010于2020/4/19 19:25:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 19:26:52', 'WK010于2020/4/19 19:26:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 20:18:19', 'WK010于2020/4/19 20:18:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 20:18:45', '杨俊杰【经理部总经理】于2020/4/19 20:18:45尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 20:21:17', 'WK010于2020/4/19 20:21:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 20:21:23', '杨俊杰【经理部总经理】于2020/4/19 20:21:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 20:23:40', 'WK010于2020/4/19 20:23:40登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 20:23:47', '杨俊杰【经理部总经理】于2020/4/19 20:23:47尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 20:43:57', 'WK010于2020/4/19 20:43:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 20:44:06', '杨俊杰【经理部总经理】于2020/4/19 20:44:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 20:55:26', 'WK010于2020/4/19 20:55:26登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 20:55:30', '杨俊杰【经理部总经理】于2020/4/19 20:55:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 21:16:41', 'WK010于2020/4/19 21:16:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 21:16:53', '杨俊杰【经理部总经理】于2020/4/19 21:16:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 21:18:27', 'WK010于2020/4/19 21:18:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 21:18:30', '杨俊杰【经理部总经理】于2020/4/19 21:18:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 21:20:06', 'WK010于2020/4/19 21:20:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 21:20:18', '杨俊杰【经理部总经理】于2020/4/19 21:20:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-19 23:00:32', 'WK010于2020/4/19 23:00:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 12:51:34', 'WK010于2020/5/4 12:51:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 12:51:54', '杨俊杰【经理部总经理】于2020/5/4 12:51:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 12:56:48', 'WK010于2020/5/4 12:56:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 12:56:57', '杨俊杰【经理部总经理】于2020/5/4 12:56:57尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:00:18', '杨俊杰总经理于2020/5/4 13:00:18进行了添加员工操作,员工编号为:WK775!', '杨俊杰总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:01:48', '杨俊杰总经理于2020/5/4 13:01:48对员工:凌峰进行了奖罚情况录入!', '杨俊杰总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:02:45', '杨俊杰总经理于2020/5/4 13:02:45将员工:老铁晋升为人事部职员', '杨俊杰总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:04:49', '经理部总经理杨俊杰于2020/5/4 13:04:49帮助TS1480进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:05:02', '杨俊杰【经理部总经理】于2020/5/4 13:05:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:07:13', 'WK010于2020/5/4 13:07:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:07:57', '经理部总经理杨俊杰于2020/5/4 13:07:57帮助TS1032进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:11:18', 'WK010于2020/5/4 13:11:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:12:40', '经理部总经理杨俊杰于2020/5/4 13:12:40帮助TS1074进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:36:39', 'WK010于2020/5/4 13:36:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:41:26', '杨俊杰【经理部总经理】于2020/5/4 13:41:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:43:22', 'WK010于2020/5/4 13:43:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:43:30', '杨俊杰【经理部总经理】于2020/5/4 13:43:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:43:51', '杨俊杰【经理部总经理】于2020/5/4 13:43:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:45:21', 'WK010于2020/5/4 13:45:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:45:32', '杨俊杰【经理部总经理】于2020/5/4 13:45:32尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:45:49', '杨俊杰【经理部总经理】于2020/5/4 13:45:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:47:07', 'WK010于2020/5/4 13:47:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:47:12', '杨俊杰【经理部总经理】于2020/5/4 13:47:12尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:48:41', 'WK010于2020/5/4 13:48:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:48:50', '杨俊杰【经理部总经理】于2020/5/4 13:48:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:49:04', '杨俊杰【经理部总经理】于2020/5/4 13:49:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:58:21', 'WK010于2020/5/4 13:58:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 13:58:28', '杨俊杰【经理部总经理】于2020/5/4 13:58:28尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 14:18:52', 'WK010于2020/5/4 14:18:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 14:19:02', '杨俊杰【经理部总经理】于2020/5/4 14:19:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 14:20:01', 'WK010于2020/5/4 14:20:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 15:47:32', 'WK010于2020/5/4 15:47:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 15:47:41', '杨俊杰【经理部总经理】于2020/5/4 15:47:41尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 15:57:19', 'WK010于2020/5/4 15:57:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 15:57:27', '杨俊杰【经理部总经理】于2020/5/4 15:57:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 16:05:09', 'WK010于2020/5/4 16:05:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 16:05:25', '杨俊杰【经理部总经理】于2020/5/4 16:05:25尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 16:10:03', 'WK010于2020/5/4 16:10:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 16:10:13', '杨俊杰【经理部总经理】于2020/5/4 16:10:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 16:19:52', 'WK010于2020/5/4 16:19:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 16:21:54', '杨俊杰【经理部总经理】于2020/5/4 16:21:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-04 17:03:47', 'WK010于2020/5/4 17:03:47登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-06 14:22:14', 'WK010于2020/5/6 14:22:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-06 20:00:35', 'WK010于2020/5/6 20:00:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-07 13:18:04', 'WK010于7.5.2020 13:18:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-07 13:18:16', '杨俊杰【经理部总经理】于7.5.2020 13:18:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-07 13:56:11', 'TS1002于7.5.2020 13:56:11进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-07 14:01:30', 'TS1003于7.5.2020 14:01:30进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-07 14:03:48', '经理部总经理杨俊杰于7.5.2020 14:03:48查看了TS1043的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-07 14:03:53', '经理部总经理杨俊杰于7.5.2020 14:03:53查看了TS1043的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-07 14:05:07', '经理部总经理杨俊杰于7.5.2020 14:05:07帮助TS1043进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-07 15:13:42', 'WK010于2020/5/7 15:13:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-07 15:16:07', '经理部总经理杨俊杰于2020/5/7 15:16:07查看了TS1239的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-07 15:16:57', '经理部总经理杨俊杰于2020/5/7 15:16:57帮助TS1239进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-07 15:18:51', '经理部总经理杨俊杰于2020/5/7 15:18:51帮助TS1862进行了消费商品:三只松鼠夏威夷坚果操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-07 18:12:04', 'WK010于2020/5/7 18:12:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-07 18:13:25', '经理部总经理杨俊杰于2020/5/7 18:13:25查看了TS1571的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-07 18:13:37', '经理部总经理杨俊杰于2020/5/7 18:13:37查看了TS1634的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-08 14:32:56', 'WK010于2020/5/8 14:32:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-08 14:35:17', 'WK010于2020/5/8 14:35:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-08 15:07:47', 'WK010于2020/5/8 15:07:47登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:07:51', 'WK010于2020-04-23 16:07:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:09:39', '杨俊杰【经理部总经理】于2020-04-23 16:09:39尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:12:28', '杨俊杰【经理部总经理】于2020-04-23 16:12:28尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:12:29', '杨俊杰【经理部总经理】于2020-04-23 16:12:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:12:31', '杨俊杰【经理部总经理】于2020-04-23 16:12:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:12:33', '杨俊杰【经理部总经理】于2020-04-23 16:12:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:13:33', '杨俊杰【经理部总经理】于2020-04-23 16:13:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:13:42', '杨俊杰【经理部总经理】于2020-04-23 16:13:42尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:13:44', '杨俊杰【经理部总经理】于2020-04-23 16:13:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:13:49', '杨俊杰【经理部总经理】于2020-04-23 16:13:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:13:51', '杨俊杰【经理部总经理】于2020-04-23 16:13:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:13:53', '杨俊杰【经理部总经理】于2020-04-23 16:13:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:13:54', '杨俊杰【经理部总经理】于2020-04-23 16:13:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:13:55', '杨俊杰【经理部总经理】于2020-04-23 16:13:55尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-23 16:14:02', '杨俊杰【经理部总经理】于2020-04-23 16:14:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-25 16:26:53', 'WK010于2020/4/25 16:26:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 14:14:16', 'WK010于2020/4/26 14:14:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-04-26 14:34:35', 'WK010于2020/4/26 14:34:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-03 20:37:52', 'WK010于2020/5/3 20:37:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-03 20:46:21', 'WK010于2020/5/3 20:46:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-03 20:53:40', 'WK010于2020/5/3 20:53:40登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-03 21:34:27', 'WK010于2020/5/3 21:34:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-08 16:45:40', 'WK010于2020-05-08 16:45:40登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-08 16:56:14', 'WK010于2020-05-08 16:56:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-08 17:00:35', 'WK010于2020-05-08 17:00:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-08 20:21:50', 'WK010于2020/5/8 20:21:50登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-08 22:05:32', 'WK010于2020/5/8 22:05:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-08 23:11:23', 'WK010于2020/5/8 23:11:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-09 10:44:13', 'WK010于2020/5/9 10:44:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-09 10:51:31', '杨俊杰【经理部总经理】于2020/5/9 10:51:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-09 10:57:45', 'WK010于2020/5/9 10:57:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-09 10:57:52', '杨俊杰【经理部总经理】于2020/5/9 10:57:52尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-09 10:57:54', '杨俊杰【经理部总经理】于2020/5/9 10:57:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-09 23:13:06', 'WK010于2020/5/9 23:13:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-09 23:16:57', '经理部总经理杨俊杰于2020/5/9 23:16:57查看了TS1457的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-09 23:17:01', '经理部总经理杨俊杰于2020/5/9 23:17:01查看了TS1457的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-09 23:17:53', '经理部总经理杨俊杰于2020/5/9 23:17:53查看了TS1457的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-09 23:18:01', '经理部总经理杨俊杰于2020/5/9 23:18:01查看了TS1001的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-10 09:25:51', 'WK010于2020/5/10 9:25:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-10 15:32:52', 'WK010于2020/5/10 15:32:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-10 21:24:41', 'WK010于2020-05-10 21:24:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-10 21:30:45', 'WK010于2020/5/10 21:30:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-10 21:31:17', '经理部总经理杨俊杰于2020/5/10 21:31:17查看了TS1001的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-10 21:34:35', 'TS1005于2020/5/10 21:34:35进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-11 13:46:08', 'WK010于2020/5/11 13:46:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-11 14:41:36', 'WK010于2020/05/11 14:41:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-11 20:14:23', 'WK010于2020/5/11 20:14:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-11 20:16:43', '杨俊杰【经理部总经理】于2020/5/11 20:16:43尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-11 20:33:13', 'WK010于2020/5/11 20:33:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-12 14:50:27', 'WK010于2020/5/12 14:50:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-12 20:48:57', 'WK010于2020/5/12 20:48:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-12 20:58:00', 'WK010于2020/5/12 20:58:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-12 22:07:42', 'WK010于2020/5/12 22:07:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-12 22:08:10', '杨俊杰【经理部总经理】于2020/5/12 22:08:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-12 22:11:17', 'WK010于2020/5/12 22:11:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-12 22:15:31', 'WK010于2020/5/12 22:15:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-12 22:16:45', 'WK010于2020/5/12 22:16:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-12 22:17:33', 'WK010于2020/5/12 22:17:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-12 22:19:18', 'WK010于2020/5/12 22:19:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-12 22:25:01', 'WK010于2020/5/12 22:25:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-12 22:28:57', 'WK010于2020/5/12 22:28:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-12 22:34:36', 'WK010于2020/5/12 22:34:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-12 22:35:20', 'WK010于2020/5/12 22:35:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-13 17:37:42', 'WK010于2020/5/13 17:37:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-13 17:39:32', 'WK010于2020/5/13 17:39:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-13 17:40:21', '经理部总经理杨俊杰于2020/5/13 17:40:21帮助TS1005进行了消费商品:特级杜蕾斯操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-14 17:26:59', 'WK010于2020/5/14 下午 05:26:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-14 17:31:25', 'WK010于2020/5/14 下午 05:31:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-14 19:25:14', 'WK010于2020/5/14 下午 07:25:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-14 22:13:58', 'WK010于2020/5/14 22:13:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-15 14:10:56', 'WK010于2020/5/15 14:10:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-15 15:25:29', 'WK010于2020-05-15 15:25:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-15 17:06:22', 'WK010于2020/5/15 17:06:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-15 17:07:03', '经理部总经理杨俊杰于2020/5/15 17:07:03查看了TS1002的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-15 17:07:11', '经理部总经理杨俊杰于2020/5/15 17:07:11查看了TS1615的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-15 17:07:16', '经理部总经理杨俊杰于2020/5/15 17:07:16查看了TS1003的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-16 14:36:13', 'WK010于2020-05-16 14:36:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-16 14:36:33', 'WK010于2020-05-16 14:36:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-16 14:52:26', 'WK010于2020-05-16 14:52:26登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-16 15:09:22', 'WK010于2020-05-16 15:09:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-16 15:10:38', 'WK010于2020-05-16 15:10:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-16 15:13:20', 'WK010于2020-05-16 15:13:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-16 15:27:42', 'WK010于2020-05-16 15:27:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-17 22:38:52', 'WK010于2020/5/17 22:38:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-18 22:26:31', 'WK010于2020/5/18 22:26:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-18 23:05:11', 'WK010于2020/5/18 23:05:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-19 10:47:38', 'WK010于2020/5/19 10:47:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-19 10:49:52', '杨俊杰【经理部总经理】于2020/5/19 10:49:52尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-19 10:49:54', '杨俊杰【经理部总经理】于2020/5/19 10:49:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-19 21:31:52', 'WK010于2020/5/19 21:31:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-20 08:40:36', 'WK010于2020/5/20 8:40:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-20 16:18:03', 'WK010于2020/5/20 16:18:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-20 23:14:54', 'WK010于2020-05-20 23:14:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-20 23:20:36', 'WK010于2020-05-20 23:20:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-20 23:20:41', '杨俊杰【经理部总经理】于2020-05-20 23:20:41尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-20 23:21:53', '杨俊杰【经理部总经理】于2020-05-20 23:21:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-20 23:22:50', '杨俊杰【经理部总经理】于2020-05-20 23:22:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-21 14:35:22', 'WK010于2020/5/21 14:35:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-21 14:38:28', '杨俊杰【经理部总经理】于2020/5/21 14:38:28尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-22 10:37:44', 'WK010于2020/5/22 10:37:44登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-22 10:39:52', '经理部总经理杨俊杰于2020/5/22 10:39:52查看了TS1968的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-22 10:41:50', '经理部总经理杨俊杰于2020/5/22 10:41:50帮助TS1003进行了消费商品:特级杜蕾斯操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-22 10:42:57', 'WK010于2020/5/22 10:42:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-22 11:09:20', 'WK010于2020/5/22 11:09:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-22 11:11:27', 'WK010于2020/5/22 11:11:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-22 11:15:59', 'WK010于2020/5/22 11:15:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-22 19:48:22', 'WK010于2020/5/22 19:48:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-22 19:48:35', '杨俊杰【经理部总经理】于2020/5/22 19:48:35尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-23 20:31:12', 'WK010于2020-05-23 20:31:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-23 20:31:23', '杨俊杰【经理部总经理】于2020-05-23 20:31:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-23 20:32:46', 'WK010于2020-05-23 20:32:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-24 18:35:50', 'WK010于2020/5/24 18:35:50登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-25 09:38:30', 'WK010于2020/5/25 9:38:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-25 12:40:18', 'WK010于2020-05-25 12:40:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-25 12:40:36', '杨俊杰【经理部总经理】于2020-05-25 12:40:36尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-25 12:58:37', 'WK010于2020/5/25 星期一 12:58:37登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-25 12:59:06', '经理部总经理杨俊杰于2020/5/25 星期一 12:59:06查看了TS1539的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-25 21:43:02', 'WK010于2020/5/25 星期一 21:43:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-25 21:43:41', '经理部总经理杨俊杰于2020/5/25 星期一 21:43:41查看了的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 15:21:18', 'WK010于2020-05-26 15:21:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 15:22:26', '经理部总经理杨俊杰于2020-05-26 15:22:26查看了TS1003的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 15:22:30', '经理部总经理杨俊杰于2020-05-26 15:22:30查看了TS1003的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 15:25:29', '经理部总经理杨俊杰于2020-05-26 15:25:29帮助进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 15:26:44', '杨俊杰【经理部总经理】于2020-05-26 15:26:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 15:26:53', '杨俊杰【经理部总经理】于2020-05-26 15:26:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 15:28:34', 'WK010于2020-05-26 15:28:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 15:31:19', '经理部总经理杨俊杰于2020-05-26 15:31:19查看了TS1002的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 15:32:56', '杨俊杰【经理部总经理】于2020-05-26 15:32:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 15:33:23', 'WK010于2020-05-26 15:33:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 16:16:48', 'WK010于2020-05-26 16:16:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 16:17:01', '杨俊杰【经理部总经理】于2020-05-26 16:17:01尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 16:18:44', '杨俊杰【经理部总经理】于2020-05-26 16:18:45尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 16:20:01', 'WK010于2020-05-26 16:20:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 16:20:08', '杨俊杰【经理部总经理】于2020-05-26 16:20:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 16:23:25', 'WK010于2020-05-26 16:23:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 16:23:30', '杨俊杰【经理部总经理】于2020-05-26 16:23:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 16:24:03', 'WK010于2020-05-26 16:24:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 16:24:06', '杨俊杰【经理部总经理】于2020-05-26 16:24:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 16:30:10', '经理部杨俊杰总经理杨俊杰于2020-05-26 16:30:10导出了后台用户信息!', '经理部杨俊杰总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 16:31:43', '杨俊杰【经理部总经理】于2020-05-26 16:31:43尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 16:40:44', 'WK010于2020-05-26 16:40:44登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 20:34:36', 'WK010于2020/5/26 20:34:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 20:36:08', '经理部总经理杨俊杰于2020/5/26 20:36:08帮助17663721822进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 20:37:02', 'WK010于2020/5/26 20:37:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 20:38:19', 'WK010于2020/5/26 20:38:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-26 20:40:43', 'WK010于2020/5/26 20:40:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 08:24:28', 'WK010于2020-05-27 8:24:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 08:25:03', '杨俊杰【经理部总经理】于2020-05-27 8:25:03尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 08:26:09', 'WK010于2020-05-27 8:26:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 08:26:14', '杨俊杰【经理部总经理】于2020-05-27 8:26:14尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 08:28:59', 'WK010于2020-05-27 8:28:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 08:29:07', '杨俊杰【经理部总经理】于2020-05-27 8:29:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 08:31:28', '经理部总经理杨俊杰于2020-05-27 8:31:28帮助TS1001进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 08:31:41', '经理部总经理杨俊杰于2020-05-27 8:31:41帮助TS1074进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 08:32:01', '经理部总经理杨俊杰于2020-05-27 8:32:01帮助TS1005进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 08:32:09', '经理部总经理杨俊杰于2020-05-27 8:32:09帮助TS1003进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 08:32:17', '经理部总经理杨俊杰于2020-05-27 8:32:17帮助TS1002进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 08:44:38', 'WK010于2020-05-27 8:44:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 08:48:31', '杨俊杰【经理部总经理】于2020-05-27 8:48:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 09:04:14', 'WK010于2020-05-27 9:04:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 09:04:19', '杨俊杰【经理部总经理】于2020-05-27 9:04:19尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 09:22:30', 'WK010于2020-05-27 9:22:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 09:23:23', 'WK010于2020-05-27 9:23:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 09:35:15', 'WK010于2020-05-27 9:35:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 09:35:40', '杨俊杰【经理部总经理】于2020-05-27 9:35:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 09:48:21', '经理部总经理杨俊杰于2020-05-27 9:48:21查看了TS1005的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 09:48:33', '经理部总经理杨俊杰于2020-05-27 9:48:33查看了TS6128的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 09:58:56', 'WK010于2020-05-27 9:58:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 10:00:32', '经理部总经理杨俊杰于2020-05-27 10:00:32查看了TS1387的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 10:00:42', '杨俊杰【经理部总经理】于2020-05-27 10:00:42尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 10:02:25', 'WK010于2020-05-27 10:02:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 10:02:49', '杨俊杰【经理部总经理】于2020-05-27 10:02:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 10:12:14', 'WK010于2020-05-27 10:12:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 10:15:58', 'WK010于2020-05-27 10:15:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 10:16:07', '杨俊杰【经理部总经理】于2020-05-27 10:16:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 11:14:46', 'WK010于2020-05-27 11:14:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 11:20:05', '经理部总经理杨俊杰于2020-05-27 11:20:05帮助TS1310进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 12:44:43', 'WK010于2020-05-27 12:44:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 12:51:39', '杨俊杰【经理部总经理】于2020-05-27 12:51:39尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 15:38:14', 'WK010于2020-05-27 15:38:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 15:38:18', '杨俊杰【经理部总经理】于2020-05-27 15:38:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 16:01:25', 'WK010于2020-05-27 16:01:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-28 00:04:20', 'WK010于2020/5/28 0:04:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-22 19:48:48', 'WK010于2020/5/22 19:48:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-25 14:28:11', 'WK010于2020/5/25 14:28:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-25 15:25:22', 'WK010于2020/5/25 15:25:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-25 15:29:51', '经理部总经理杨俊杰于2020/5/25 15:29:51帮助进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-25 16:41:59', 'WK010于2020/5/25 16:41:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 23:48:12', 'WK010于2020/5/27 23:48:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-27 23:50:51', '杨俊杰【经理部总经理】于2020/5/27 23:50:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-28 09:40:17', 'WK010于2020-05-28 9:40:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-28 09:40:22', '杨俊杰【经理部总经理】于2020-05-28 9:40:22尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-28 11:25:08', 'WK010于2020-05-28 11:25:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-28 13:39:59', 'WK010于2020-05-28 13:39:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-28 17:23:29', 'WK010于2020/5/28 17:23:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-28 22:32:52', 'WK010于2020/5/28 22:32:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-28 22:33:30', '杨俊杰【经理部总经理】于2020/5/28 22:33:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-29 10:23:33', 'WK010于2020-05-29 10:23:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-29 10:23:43', '杨俊杰【经理部总经理】于2020-05-29 10:23:43尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-29 10:29:53', '杨俊杰【经理部总经理】于2020-05-29 10:29:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-29 10:33:05', '经理部总经理杨俊杰于2020-05-29 10:33:05查看了TS1005的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-29 11:54:32', 'WK010于2020/5/29 11:54:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-29 12:36:46', 'WK010于2020-05-29 12:36:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-29 12:37:11', '杨俊杰【经理部总经理】于2020-05-29 12:37:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-31 01:32:29', 'WK010于2020/5/31 1:32:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-31 01:33:32', '经理部总经理杨俊杰于2020/5/31 1:33:32帮助进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-05-31 01:34:08', '经理部总经理杨俊杰于2020/5/31 1:34:08帮助进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-02 11:31:55', 'WK010于2020/6/2 11:31:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-02 11:34:03', '经理部总经理杨俊杰于2020/6/2 11:34:03帮助TS1001进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-02 15:50:49', 'WK010于2020/6/2 15:50:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-02 21:18:47', 'WK010于2020/6/2 21:18:47登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-02 22:38:27', '【】于2020/6/2 22:38:27尝试或成功登入了后台系统!', '【】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-03 23:13:42', 'WK010于2020/6/3 23:13:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-04 15:48:23', 'WK010于2020/6/4 15:48:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-04 15:50:42', 'WK010于2020/6/4 15:50:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-04 15:51:19', '经理部总经理杨俊杰于2020/6/4 15:51:19查看了TS1043的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-04 15:51:26', '经理部总经理杨俊杰于2020/6/4 15:51:26查看了TS1043的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-05 11:41:32', 'WK010于2020-06-05 11:41:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-06 20:24:38', 'WK010于2020/6/6 20:24:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-07 01:11:20', 'WK010于2020/6/7 1:11:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-07 22:35:20', 'WK010于2020/6/7 22:35:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-07 22:36:13', '杨俊杰【经理部总经理】于2020/6/7 22:36:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-08 15:42:15', 'WK010于2020/06/08 15:42:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-08 22:30:38', 'WK010于2020/6/8 22:30:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-08 22:47:53', 'WK010于2020/6/8 22:47:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-09 08:48:43', 'WK010于2020-6-9 8:48:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-09 09:07:51', 'WK010于2020-6-9 9:07:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-09 10:37:51', 'WK010于2020/6/9 10:37:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-09 14:09:13', 'WK010于2020-6-9 14:09:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-09 14:11:32', 'WK010于2020-6-9 14:11:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-09 14:14:08', 'WK010于2020-6-9 14:14:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-09 20:09:23', 'WK010于2020-06-09 20:09:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-10 21:05:07', 'WK010于2020/6/10 21:05:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-10 22:48:10', 'WK010于2020/6/10 22:48:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-11 14:34:57', 'WK010于2020/6/11 14:34:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-12 14:41:21', 'WK010于2020/6/12 14:41:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-12 21:49:27', 'WK010于2020/6/12 21:49:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-12 22:05:01', 'WK010于2020/6/12 22:05:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-12 22:07:52', 'WK010于2020/6/12 22:07:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-12 22:27:15', 'WK010于2020/6/12 22:27:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-12 22:46:46', 'WK010于2020-06-12 22:46:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-13 17:52:31', 'WK010于2020/6/13 17:52:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-13 23:44:19', 'WK010于2020/6/13 23:44:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-14 02:38:42', 'WK010于2020/6/14 上午 02:38:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-14 02:48:37', 'WK010于2020/6/14 上午 02:48:37登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-17 00:02:59', 'WK010于2020/6/17 0:02:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-17 09:46:16', 'WK010于2020/6/17 9:46:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-17 09:49:40', '经理部总经理杨俊杰于2020/6/17 9:49:40查看了TS1002的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-17 10:48:58', 'WK010于2020/6/17 星期三 10:48:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-18 09:08:04', 'WK010于2020-06-18 09:08:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-18 09:58:33', 'WK010于2020-06-18 09:58:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-18 10:02:20', 'WK010于2020/6/18 10:02:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-19 11:58:10', 'WK010于2020/6/19 11:58:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-19 12:41:57', 'WK010于2020/6/19 12:41:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-19 12:44:07', 'WK010于2020/6/19 12:44:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-19 13:06:20', 'WK010于2020/6/19 13:06:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-21 22:00:58', 'WK010于2020/6/21 22:00:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-24 15:21:45', 'WK010于2020/6/24 15:21:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-24 15:22:54', '经理部总经理杨俊杰于2020/6/24 15:22:54查看了TS1001的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-24 15:27:46', '杨俊杰【经理部总经理】于2020/6/24 15:27:46尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-24 15:27:48', '杨俊杰【经理部总经理】于2020/6/24 15:27:48尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-24 15:35:41', '经理部总经理杨俊杰于2020/6/24 15:35:41帮助1478452762进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-24 17:33:16', 'WK010于2020/6/24 17:33:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-24 17:36:58', '杨俊杰【经理部总经理】于2020/6/24 17:36:58尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-24 19:54:11', 'WK010于2020/6/24 19:54:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-25 21:13:44', 'WK010于2020/6/25 21:13:44登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-25 21:22:11', 'WK010于2020/6/25 21:22:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-25 21:26:35', '经理部总经理杨俊杰于2020/6/25 21:26:35查看了TS1001的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-28 08:26:48', 'WK010于2020/6/28 8:26:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-28 09:30:24', 'WK010于2020/6/28 9:30:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-28 09:39:51', 'WK010于2020/6/28 9:39:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-28 09:40:25', '经理部总经理杨俊杰于2020/6/28 9:40:25查看了TS1005的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-28 09:41:49', '经理部总经理杨俊杰于2020/6/28 9:41:49查看了的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 15:28:17', 'WK010于2020/6/29 15:28:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 15:38:01', 'WK010于2020/6/29 15:38:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 15:39:14', '经理部总经理杨俊杰于2020/6/29 15:39:14查看了TS1210的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 16:06:38', 'WK010于2020/6/29 16:06:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 16:34:09', 'WK010于2020/6/29 16:34:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 16:34:45', '杨俊杰【经理部总经理】于2020/6/29 16:34:45尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 16:34:55', '杨俊杰【经理部总经理】于2020/6/29 16:34:55尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 16:34:56', '杨俊杰【经理部总经理】于2020/6/29 16:34:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 16:35:05', '杨俊杰【经理部总经理】于2020/6/29 16:35:05尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 16:36:15', 'WK010于2020/6/29 16:36:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 16:36:37', 'WK010于2020/6/29 16:36:37登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 16:37:56', '杨俊杰【经理部总经理】于2020/6/29 16:37:59尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 16:39:51', '杨俊杰【经理部总经理】于2020/6/29 16:39:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 16:40:19', '杨俊杰【经理部总经理】于2020/6/29 16:40:19尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 16:42:14', 'WK010于2020/6/29 16:42:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-29 16:42:17', '杨俊杰【经理部总经理】于2020/6/29 16:42:17尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-06-30 11:07:05', 'WK010于2020/6/30 11:07:05登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-01 02:51:42', 'WK010于2020/7/1 上午 02:51:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-01 16:30:47', 'WK010于2020/7/1 16:30:47登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-01 16:33:30', '经理部总经理杨俊杰于2020/7/1 16:33:30查看了TS1295的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-01 16:33:52', '杨俊杰【经理部总经理】于2020/7/1 16:33:52尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-01 16:35:07', '经理部总经理杨俊杰于2020/7/1 16:35:07查看了TS1005的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-02 22:20:47', 'WK010于2020/7/2 22:20:47登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-03 14:01:30', 'WK010于2020/7/3 14:01:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-04 13:16:04', 'WK010于2020-7-4 13:16:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-06 10:01:25', 'WK010于2020/7/6 10:01:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-06 14:37:01', 'WK010于2020/7/6 14:37:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-06 22:25:34', 'WK010于2020/7/6 22:25:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-07 09:20:48', 'WK010于2020/7/7 9:20:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-07 15:58:30', 'WK010于2020/7/7 星期二 15:58:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-08 09:22:37', 'WK010于2020/7/8 9:22:37登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-08 09:23:24', '经理部总经理杨俊杰于2020/7/8 9:23:24查看了TS1997的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-09 13:58:40', 'WK010于2020/7/9 13:58:40登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-10 20:44:54', 'WK010于2020/7/10 星期五 20:44:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-10 20:46:39', 'WK010于2020/7/10 星期五 20:46:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-11 14:08:56', 'WK010于2020/7/11 14:08:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-12 14:40:49', 'WK010于2020/7/12 14:40:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-13 08:29:57', 'WK010于2020/7/13 星期一 8:29:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-13 11:12:20', 'WK010于2020/7/13 星期一 11:12:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-13 11:13:04', 'WK010于2020/7/13 星期一 11:13:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-13 14:01:56', 'WK010于2020/7/13 14:01:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-13 20:26:28', 'WK010于2020/7/13 星期一 20:26:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-13 20:38:53', 'WK010于2020/7/13 星期一 20:38:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-13 20:45:06', 'WK010于2020/7/13 星期一 20:45:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-13 21:40:06', 'WK010于2020/7/13 21:40:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-13 21:44:09', 'WK010于2020/7/13 21:44:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-13 22:06:42', 'WK010于2020/7/13 星期一 22:06:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 14:37:26', 'WK010于2020-07-16 14:37:26登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 15:46:34', '经理部总经理杨俊杰于2020-07-16 15:46:34查看了的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 20:59:28', 'WK010于2020/7/16 20:59:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 21:01:11', 'WK010于2020/7/16 21:01:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 21:01:29', 'WK010于2020/7/16 21:01:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 21:05:42', 'WK010于2020/7/16 21:05:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 21:07:03', 'WK010于2020/7/16 21:07:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 21:07:08', '杨俊杰【经理部总经理】于2020/7/16 21:07:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 21:07:26', '杨俊杰【经理部总经理】于2020/7/16 21:07:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 21:07:51', '杨俊杰【经理部总经理】于2020/7/16 21:07:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 21:13:41', '杨俊杰总经理于2020/7/16 21:13:41进行了添加员工操作,员工编号为:WK261!', '杨俊杰总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 21:13:48', '杨俊杰总经理于2020/7/16 21:13:48进行了添加员工操作,员工编号为:WK100!', '杨俊杰总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 21:14:21', '杨俊杰总经理于2020/7/16 21:14:21进行了上传公告操作!', '杨俊杰总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 21:15:17', 'WK010于2020/7/16 21:15:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 21:15:27', '杨俊杰【经理部总经理】于2020/7/16 21:15:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-16 21:15:29', '杨俊杰【经理部总经理】于2020/7/16 21:15:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-17 17:12:17', 'WK010于2020/7/17 17:12:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-18 00:09:28', 'WK010于2020/7/18 0:09:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-18 11:22:13', 'WK010于2020/7/18 11:22:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-18 14:00:44', '经理部总经理杨俊杰于2020/7/18 14:00:44查看了的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-18 19:57:33', 'WK010于2020/7/18 19:57:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-18 20:46:53', 'WK010于2020/7/18 20:46:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-19 01:12:32', 'WK010于2020/7/19 1:12:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-19 01:49:27', 'TS1365于2020/7/19 1:49:27进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-19 01:52:50', 'WK010于2020/7/19 1:52:50登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-19 12:48:02', 'WK010于2020/7/19 12:48:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-19 12:48:07', '杨俊杰【经理部总经理】于2020/7/19 12:48:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-19 12:48:11', '杨俊杰【经理部总经理】于2020/7/19 12:48:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-19 13:12:14', 'WK010于2020/7/19 13:12:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-19 13:12:29', '杨俊杰【经理部总经理】于2020/7/19 13:12:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-20 10:12:11', 'WK010于2020-7-20 10:12:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-23 20:53:12', 'WK010于2020-07-23 ?? 8:53:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-24 11:29:12', 'WK010于2020-07-24 11:29:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-24 11:53:01', 'WK010于2020-07-24 11:53:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-24 11:53:31', '杨俊杰【经理部总经理】于2020-07-24 11:53:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-24 11:53:32', '杨俊杰【经理部总经理】于2020-07-24 11:53:32尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-24 11:53:40', '杨俊杰【经理部总经理】于2020-07-24 11:53:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-24 15:18:21', 'WK010于2020/7/24 15:18:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-24 17:06:40', 'WK010于2020-07-24 17:06:40登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-24 17:36:10', 'WK010于2020-7-24 17:36:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-24 21:42:19', 'WK010于2020-7-24 21:42:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-25 11:07:58', 'WK010于2020/07/25 11:07:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-26 05:09:52', 'WK010于2020/7/26 5:09:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-26 05:11:02', '经理部总经理杨俊杰于2020/7/26 5:11:02查看了TS1256的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-26 05:11:06', '经理部总经理杨俊杰于2020/7/26 5:11:06查看了TS1266的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-26 05:11:16', '经理部总经理杨俊杰于2020/7/26 5:11:16查看了TS1239的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-26 13:58:10', 'WK010于2020/7/26 13:58:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 09:12:02', 'WK010于2020-7-27 9:12:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 09:14:27', 'WK010于2020-7-27 9:14:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 09:59:54', 'WK010于2020-7-27 9:59:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 10:02:48', 'WK010于2020-7-27 10:02:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 10:33:24', 'WK010于2020-07-27 10:33:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 11:00:36', 'WK010于2020-7-27 11:00:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 11:10:13', 'WK010于2020-7-27 11:10:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 11:11:54', 'WK010于2020-7-27 11:11:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 11:17:18', 'WK010于2020-7-27 11:17:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 11:17:27', 'WK010于2020-7-27 11:17:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 11:57:09', 'WK010于2020-7-27 11:57:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 12:50:55', 'WK010于2020-7-27 12:50:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 12:56:30', 'WK010于2020-7-27 12:56:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 12:58:41', 'WK010于2020-7-27 12:58:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 12:59:46', 'WK010于2020-7-27 12:59:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 13:00:42', 'WK010于2020-7-27 13:00:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-13 14:05:45', 'WK010于2020/7/13 14:05:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-13 14:10:10', 'WK010于2020/7/13 14:10:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-13 14:16:18', 'WK010于2020/7/13 14:16:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-17 17:13:57', 'WK010于2020/7/17 17:13:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 13:01:33', 'WK010于2020-7-27 13:01:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 13:03:21', 'WK010于2020-7-27 13:03:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 13:04:25', 'WK010于2020-7-27 13:04:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 13:06:38', 'WK010于2020-7-27 13:06:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 13:08:12', 'WK010于2020-7-27 13:08:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 13:14:52', 'WK010于2020-7-27 13:14:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 13:33:30', 'WK010于2020-7-27 13:33:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 13:35:33', 'WK010于2020-7-27 13:35:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 13:42:08', 'WK010于2020-7-27 13:42:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 13:42:56', 'WK010于2020-7-27 13:42:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 13:44:06', 'WK010于2020-7-27 13:44:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 13:45:25', 'WK010于2020-7-27 13:45:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 14:45:43', 'WK010于2020-7-27 14:45:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 14:47:15', 'WK010于2020-7-27 14:47:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 14:47:49', 'WK010于2020-7-27 14:47:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 15:22:43', 'WK010于2020-7-27 15:22:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 17:05:28', 'WK010于2020-7-27 17:05:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 17:44:56', 'WK010于2020-7-27 17:44:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-28 09:50:34', 'WK010于2020/07/28 9:50:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-28 09:51:32', '经理部总经理杨俊杰于2020/07/28 9:51:32帮助TS1862进行了消费商品:香皂操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-28 09:51:39', '经理部总经理杨俊杰于2020/07/28 9:51:39帮助TS1862进行了消费商品:香皂操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-28 09:51:54', '经理部总经理杨俊杰于2020/07/28 9:51:54帮助TS1862进行了消费商品:青岛啤酒操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-28 10:53:19', 'WK010于2020/7/28 10:53:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-29 14:34:01', 'WK010于2020-7-29 14:34:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-29 14:39:59', 'WK010于2020-7-29 14:39:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-29 14:53:12', 'WK010于2020-7-29 14:53:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-29 20:55:15', 'WK010于2020-7-29 20:55:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-29 20:55:29', '杨俊杰【经理部总经理】于2020-7-29 20:55:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-29 20:56:07', '杨俊杰【经理部总经理】于2020-7-29 20:56:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-29 20:59:01', 'WK010于2020-7-29 20:59:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-29 20:59:20', '杨俊杰【经理部总经理】于2020-7-29 20:59:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-30 17:29:24', 'WK010于2020-7-30 17:29:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-02 14:18:07', 'WK010于2020/8/2 14:18:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-03 15:34:07', 'WK010于2020/8/3 15:34:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-03 15:59:45', 'WK010于2020/8/3 15:59:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-04 10:26:19', 'WK010于2020/8/4 10:26:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-04 10:27:19', 'WK010于2020/8/4 10:27:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-04 10:29:25', 'WK010于2020/8/4 10:29:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-04 11:39:25', 'WK010于2020/8/4 11:39:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-04 11:41:38', '经理部总经理杨俊杰于2020/8/4 11:41:38查看了TS1084的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-04 11:45:11', '经理部总经理杨俊杰于2020/8/4 11:45:11帮助ts1389进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-04 11:45:39', '经理部总经理杨俊杰于2020/8/4 11:45:39帮助TS1043进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-05 16:48:48', 'WK010于2020/8/5 16:48:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-05 16:50:24', '经理部总经理杨俊杰于2020/8/5 16:50:24帮助进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-05 17:01:38', 'WK010于2020-8-5 17:01:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-05 17:33:48', 'WK010于2020/8/5 17:33:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-05 17:40:32', 'WK010于2020/8/5 17:40:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-06 16:51:02', 'WK010于2020/8/6 16:51:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-06 19:46:18', 'WK010于2020/8/6 19:46:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-07 14:58:29', 'WK010于2020/8/7 14:58:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-07 15:34:55', 'WK010于2020/8/7 15:35:26登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-07 15:45:15', 'WK010于2020/8/7 15:45:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-07 17:19:12', 'WK010于2020/8/7 17:19:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-07 17:31:59', 'WK010于2020/8/7 17:31:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-08 14:15:34', 'WK010于2020/8/8 14:15:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-08 15:58:13', 'WK010于2020/8/8 15:58:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-10 11:45:09', 'WK010于2020/8/10 11:45:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-11 11:40:06', 'WK010于2020/8/11 11:40:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-11 15:18:40', 'WK010于2020/8/11 15:18:40登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-11 15:56:19', 'WK010于2020/8/11 15:56:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-11 17:28:45', 'WK010于2020-08-11 17:28:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-13 12:58:22', 'WK010于2020-08-13 12:58:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-13 12:59:51', '经理部总经理杨俊杰于2020-08-13 12:59:51查看了TS1914的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-13 18:04:42', 'WK010于2020/8/13 星期四 18:04:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 11:48:37', 'WK010于2020/8/14 11:48:37登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 11:52:45', 'WK010于2020/8/14 11:52:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:02:23', 'WK010于2020/8/14 12:02:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:04:37', 'WK010于2020/8/14 12:04:37登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:05:00', '杨俊杰【经理部总经理】于2020/8/14 12:05:00尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:05:09', '杨俊杰【经理部总经理】于2020/8/14 12:05:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:31:13', 'WK010于2020/8/14 12:31:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:31:26', '杨俊杰【经理部总经理】于2020/8/14 12:31:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:31:32', '杨俊杰【经理部总经理】于2020/8/14 12:31:32尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:33:20', '杨俊杰【经理部总经理】于2020/8/14 12:33:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 15:04:42', 'WK010于2020/8/14 15:04:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 15:06:08', '杨俊杰【经理部总经理】于2020/8/14 15:06:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 15:30:07', '杨俊杰【经理部总经理】于2020/8/14 15:30:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 15:30:27', '杨俊杰【经理部总经理】于2020/8/14 15:30:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 15:30:30', '杨俊杰【经理部总经理】于2020/8/14 15:30:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-15 12:01:06', 'WK010于2020/8/15 12:01:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-15 12:18:11', '经理部总经理杨俊杰于2020/8/15 12:18:11帮助TS1005进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-15 12:21:19', 'WK010于2020/8/15 12:21:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-15 12:22:28', '经理部总经理杨俊杰于2020/8/15 12:22:28帮助TS1571进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-15 14:24:59', 'WK010于2020/8/15 14:24:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-15 14:58:49', 'WK010于2020/8/15 14:58:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-15 15:13:34', '经理部总经理杨俊杰于2020/8/15 15:13:34查看了的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-15 15:26:35', '经理部总经理杨俊杰于2020/8/15 15:26:35帮助123进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-15 15:46:43', 'WK010于2020/8/15 15:46:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-15 17:36:07', '经理部总经理杨俊杰于2020/8/15 17:36:07查看了TS1081的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-15 23:05:42', 'WK010于2020/8/15 23:05:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-17 15:37:38', 'WK010于2020/8/17 15:37:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:13:59', 'WK010于2020/8/18 16:13:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:16:37', '经理部总经理杨俊杰于2020/8/18 16:16:37查看了TS1003的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:23:39', '杨俊杰【经理部总经理】于2020/8/18 16:23:39尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:24:02', '杨俊杰【经理部总经理】于2020/8/18 16:24:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:24:34', '杨俊杰【经理部总经理】于2020/8/18 16:24:34尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-07-27 14:13:30', 'WK010于2020-7-27 14:13:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 11:27:15', 'WK010于2020/8/14 11:27:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 09:27:26', 'WK010于2020/8/18 9:27:26登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 09:31:18', '杨俊杰【经理部总经理】于2020/8/18 9:31:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 17:00:36', 'WK010于2020-08-18 17:00:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 15:54:56', 'WK010于2020/8/19 15:54:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 15:56:03', 'WK010于2020/8/19 15:56:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 17:14:03', 'WK010于2020/8/19 17:14:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 17:15:36', '经理部总经理杨俊杰于2020/8/19 17:15:36帮助15810825328进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 17:16:34', 'WK010于2020/8/19 17:16:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 17:25:54', 'WK010于2020/8/19 17:25:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-29 16:55:22', 'WK010于2020-8-29 16:55:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-29 16:57:18', '经理部总经理杨俊杰于2020-8-29 16:57:18查看了TS1914的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-18 12:35:44', 'WK010于2020/9/18 12:35:44登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-19 17:34:36', 'WK010于2020/9/19 17:34:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-20 13:48:11', 'WK010于2020-09-20 13:48:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-22 08:11:32', 'WK010于2020/9/22 8:11:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-22 08:11:58', '杨俊杰【经理部总经理】于2020/9/22 8:11:58尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-22 08:12:08', '杨俊杰【经理部总经理】于2020/9/22 8:12:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 11:58:27', 'WK010于2020/8/14 11:58:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:03:11', '杨俊杰【经理部总经理】于2020/8/14 12:03:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:03:20', '杨俊杰【经理部总经理】于2020/8/14 12:03:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:12:45', 'WK010于2020/8/14 12:12:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:13:09', '杨俊杰【经理部总经理】于2020/8/14 12:13:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:31:50', '杨俊杰【经理部总经理】于2020/8/14 12:31:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:31:56', '杨俊杰【经理部总经理】于2020/8/14 12:31:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 12:32:04', '杨俊杰【经理部总经理】于2020/8/14 12:32:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 14:17:44', 'WK010于2020/8/14 14:17:44登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 14:19:49', '杨俊杰【经理部总经理】于2020/8/14 14:19:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-14 14:37:06', '总经理杨俊杰于2020/8/14 14:37:06进行资产录入,资产编号为:CN8051', '总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 14:53:19', 'WK010于2020/8/18 14:53:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 14:53:38', '杨俊杰【经理部总经理】于2020/8/18 14:53:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 17:01:40', 'WK010于2020/8/18 17:01:40登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 17:40:56', '杨俊杰【经理部总经理】于2020/8/18 17:40:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 17:42:38', '杨俊杰【经理部总经理】于2020/8/18 17:42:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:31:35', '杨俊杰【经理部总经理】于2020/8/18 16:31:35尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:35:53', 'wk010于2020/8/18 16:35:53登入了系统!', 'wk010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:36:29', '杨俊杰【经理部总经理】于2020/8/18 16:36:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:36:40', '杨俊杰【经理部总经理】于2020/8/18 16:36:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:36:40', '杨俊杰【经理部总经理】于2020/8/18 16:36:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:36:54', '杨俊杰【经理部总经理】于2020/8/18 16:36:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:38:33', 'WK011于2020/8/18 16:38:33登入了系统!', 'WK011', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:39:11', '六月【酒店部职员】于2020/8/18 16:39:11尝试或成功登入了后台系统!', '六月【酒店部职员】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:40:31', '六月【酒店部职员】于2020/8/18 16:40:31尝试或成功登入了后台系统!', '六月【酒店部职员】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:47:06', '六月【酒店部职员】于2020/8/18 16:47:06尝试或成功登入了后台系统!', '六月【酒店部职员】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:48:44', '六月【酒店部职员】于2020/8/18 16:48:44尝试或成功登入了后台系统!', '六月【酒店部职员】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 16:54:53', '六月【酒店部职员】于2020/8/18 16:54:53尝试或成功登入了后台系统!', '六月【酒店部职员】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 17:31:27', '酒店部职员六月于2020/8/18 17:31:27帮助TS1365进行了退房结算操作!', '酒店部职员六月', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-18 23:40:23', 'WK010于2020/8/18 23:40:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 09:37:05', 'WK010于2020/8/19 9:37:05登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 09:47:55', '经理部总经理杨俊杰于2020/8/19 9:47:55帮助18757523769进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 10:05:49', '杨俊杰【经理部总经理】于2020/8/19 10:05:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 10:07:54', 'WK010于2020/8/19 10:07:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 10:08:11', '杨俊杰【经理部总经理】于2020/8/19 10:08:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 10:15:56', '杨俊杰【经理部总经理】于2020/8/19 10:15:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 10:22:07', '杨俊杰【经理部总经理】于2020/8/19 10:22:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 10:36:04', 'shenyou于2020/8/19 10:36:04登入了系统!', 'shenyou', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 10:36:16', '申酉【经理部总经理】于2020/8/19 10:36:16尝试或成功登入了后台系统!', '申酉【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 10:52:28', 'WK010于2020/8/19 10:52:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 11:01:43', 'WK010于2020/8/19 11:01:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 11:38:29', 'WK010于2020/8/19 11:38:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 11:44:51', '经理部总经理杨俊杰于2020/8/19 11:44:51查看了TS1008的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 15:29:19', 'WK010于2020/8/19 15:29:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 15:38:13', 'WK010于2020/8/19 15:38:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 15:38:49', '杨俊杰【经理部总经理】于2020/8/19 15:38:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 15:43:27', '杨俊杰【经理部总经理】于2020/8/19 15:43:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 15:47:09', '杨俊杰【经理部总经理】于2020/8/19 15:47:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 16:01:01', '经理部杨俊杰总经理杨俊杰于2020/8/19 16:01:01导出了后台用户信息!', '经理部杨俊杰总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 16:01:47', 'WK011于2020/8/19 16:01:47登入了系统!', 'WK011', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 16:02:17', '六月【酒店部职员】于2020/8/19 16:02:17尝试或成功登入了后台系统!', '六月【酒店部职员】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 16:03:54', '酒店部六月职员六月于2020/8/19 16:03:54导出了后台用户信息!', '酒店部六月职员', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 16:09:18', '六月【酒店部职员】于2020/8/19 16:09:18尝试或成功登入了后台系统!', '六月【酒店部职员】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 16:13:33', '六月【酒店部职员】于2020/8/19 16:13:33尝试或成功登入了后台系统!', '六月【酒店部职员】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 16:51:33', '六月【酒店部职员】于2020/8/19 16:51:33尝试或成功登入了后台系统!', '六月【酒店部职员】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 16:57:43', '六月【酒店部职员】于2020/8/19 16:57:43尝试或成功登入了后台系统!', '六月【酒店部职员】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 18:32:41', 'WK010于2020/8/19 18:32:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 18:47:35', 'WK011于2020/8/19 18:47:35登入了系统!', 'WK011', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 18:48:44', 'lien于2020/8/19 18:48:44登入了系统!', 'lien', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 23:15:27', 'WK010于2020/8/19 23:15:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 23:15:48', '杨俊杰【经理部总经理】于2020/8/19 23:15:48尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-19 23:40:21', 'WK010于2020/8/19 23:40:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 09:05:38', 'WK010于2020/8/20 9:05:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 09:05:45', '杨俊杰【经理部总经理】于2020/8/20 9:05:45尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 09:13:13', '杨俊杰【经理部总经理】于2020/8/20 9:13:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 09:36:36', '杨俊杰总经理于2020/8/20 9:36:36进行了添加员工操作,员工编号为:WK388!', '杨俊杰总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 09:38:49', 'WK010于2020/8/20 9:38:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 09:38:57', '杨俊杰【经理部总经理】于2020/8/20 9:38:57尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 10:28:24', '杨俊杰【经理部总经理】于2020/8/20 10:28:24尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 10:29:42', 'WK010于2020/8/20 10:29:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 10:30:20', '杨俊杰【经理部总经理】于2020/8/20 10:30:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 10:53:26', '杨俊杰【经理部总经理】于2020/8/20 10:53:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 11:51:23', 'WK010于2020/8/20 11:51:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 11:51:36', '杨俊杰【经理部总经理】于2020/8/20 11:51:36尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 16:14:58', 'WK010于2020/8/20 16:14:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 16:21:20', 'WK010于2020/8/20 16:21:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 16:33:58', 'WK010于2020/8/20 16:33:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 16:35:33', 'WK011于2020/8/20 16:35:33登入了系统!', 'WK011', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-20 16:39:02', 'WK011于2020/8/20 16:39:02登入了系统!', 'WK011', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-21 10:33:02', 'WK010于2020/8/21 10:33:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-21 14:26:32', 'WK010于2020/8/21 14:26:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-21 14:30:30', '经理部总经理杨俊杰于2020/8/21 14:30:30帮助TS1571进行了消费商品:毛巾操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-21 14:31:34', '经理部总经理杨俊杰于2020/8/21 14:31:34帮助TS1571进行了消费商品:毛巾操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-21 14:37:35', '经理部总经理杨俊杰于2020/8/21 14:37:35帮助TS1571进行了消费商品:片(原味)操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-21 14:40:18', '经理部总经理杨俊杰于2020/8/21 14:40:18帮助TS1571进行了消费商品:WAHAHA操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-21 15:19:10', 'WK010于2020/8/21 15:19:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-21 17:02:54', 'WK010于2020/8/21 星期五 17:02:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-22 09:50:51', 'WK010于2020/8/22 9:50:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-22 12:02:59', 'WK010于2020/8/22 12:02:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-22 12:16:17', 'WK010于2020/8/22 12:16:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-22 12:24:52', 'WK010于2020/8/22 12:24:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-22 14:27:49', 'WK010于2020/8/22 14:27:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-22 14:44:39', '经理部总经理杨俊杰于2020/8/22 14:44:39帮助TS1005进行了消费商品:aaa操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-22 15:22:24', 'WK010于2020/8/22 15:22:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-22 15:22:40', '杨俊杰【经理部总经理】于2020/8/22 15:22:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-22 15:26:14', '总经理杨俊杰于2020/8/22 15:26:14进行资产录入,资产编号为:CN1262', '总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-22 15:27:25', '总经理杨俊杰于2020/8/22 15:27:25进行资产录入,资产编号为:', '总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-22 15:46:41', '总经理杨俊杰于2020/8/22 15:46:41进行资产录入,资产编号为:CN1631', '总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-23 17:01:18', 'WK010于2020/8/23 17:01:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-23 17:03:28', '杨俊杰【经理部总经理】于2020/8/23 17:03:28尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-23 17:03:54', 'WK010于2020/8/23 17:03:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-23 17:04:18', 'WK010于2020/8/23 17:04:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-23 17:04:26', '杨俊杰【经理部总经理】于2020/8/23 17:04:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-23 17:06:08', 'WK010于2020/8/23 17:06:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-23 17:06:47', '杨俊杰【经理部总经理】于2020/8/23 17:06:47尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-24 09:23:18', 'WK010于2020/8/24 9:23:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-24 09:23:26', '杨俊杰【经理部总经理】于2020/8/24 9:23:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-24 10:04:37', 'WK010于2020/8/24 10:04:37登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-24 10:04:50', '杨俊杰【经理部总经理】于2020/8/24 10:04:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-24 10:35:33', 'WK010于2020/8/24 10:35:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-24 11:08:28', 'WK010于2020/8/24 11:08:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-24 11:12:16', 'WK010于2020/8/24 11:12:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-24 16:40:41', 'WK010于2020/8/24 16:40:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-25 11:33:24', 'WK010于2020/8/25 11:33:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-27 12:08:42', 'WK010于2020/8/27 12:08:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-27 12:12:08', 'WK010于2020/8/27 12:12:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-27 22:50:17', 'WK010于2020-08-27 22:50:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-27 22:51:22', '杨俊杰【经理部总经理】于2020-08-27 22:51:22尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-27 22:51:24', '杨俊杰【经理部总经理】于2020-08-27 22:51:24尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-08-28 16:08:23', 'WK010于2020-08-28 16:08:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-01 11:07:00', 'WK010于2020-09-01 11:07:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-01 11:12:16', 'WK010于2020-09-01 11:12:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-01 11:13:14', 'WK010于2020-09-01 11:13:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-01 11:17:19', 'WK010于2020-09-01 11:17:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-01 11:22:38', 'WK010于2020-09-01 11:22:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-01 15:52:08', 'WK010于2020-09-01 15:52:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-02 13:03:29', 'WK010于2020/9/2 13:03:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-02 13:04:37', '经理部总经理杨俊杰于2020/9/2 13:04:37查看了TS1002的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-02 13:06:31', '经理部总经理杨俊杰于2020/9/2 13:06:31查看了TS1001的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-02 13:06:46', '经理部总经理杨俊杰于2020/9/2 13:06:46查看了TS1002的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-02 13:07:39', '经理部总经理杨俊杰于2020/9/2 13:07:39查看了TS1002的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-02 13:07:51', '经理部总经理杨俊杰于2020/9/2 13:07:51查看了TS1001的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-02 13:08:38', '经理部总经理杨俊杰于2020/9/2 13:08:38查看了TS1002的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-02 13:08:45', '经理部总经理杨俊杰于2020/9/2 13:08:45查看了TS1001的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-02 13:08:52', '经理部总经理杨俊杰于2020/9/2 13:08:52查看了TS1003的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-02 13:10:15', 'WK010于2020/9/2 13:10:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-03 10:48:52', 'WK010于2020/9/3 10:48:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-05 16:13:00', 'WK010于2020/09/05 16:13:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-06 14:04:53', 'WK010于2020/9/6 14:04:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-07 08:20:00', 'WK010于2020/9/7 8:20:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-07 08:20:53', '杨俊杰【经理部总经理】于2020/9/7 8:20:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-07 10:12:09', 'WK010于2020/9/7 10:12:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-07 10:17:00', 'WK010于2020/9/7 10:17:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-07 10:17:04', '杨俊杰【经理部总经理】于2020/9/7 10:17:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-07 10:21:33', '经理部总经理杨俊杰于2020/9/7 10:21:33查看了的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-09 11:56:53', 'WK010于2020-9-9 11:56:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-10 08:48:19', 'WK010于2020/9/10 8:48:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-12 17:10:23', 'WK010于2020/9/12 17:10:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-14 10:01:54', 'WK010于2020-09-14 10:01:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-14 14:07:17', 'WK010于2020-09-14 14:07:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-14 14:10:41', '杨俊杰【经理部总经理】于2020-09-14 14:10:41尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-14 14:31:27', 'WK010于2020-09-14 14:31:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-14 14:31:54', '杨俊杰【经理部总经理】于2020-09-14 14:31:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-14 14:45:16', 'WK010于2020-09-14 14:45:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 11:37:06', 'WK010于2020/9/16 11:37:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 11:39:46', '杨俊杰【经理部总经理】于2020/9/16 11:39:46尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 11:47:07', 'WK010于2020/9/16 11:47:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 11:48:11', '经理部总经理杨俊杰于2020/9/16 11:48:11查看了的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 11:49:09', '杨俊杰【经理部总经理】于2020/9/16 11:49:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 13:00:14', 'WK010于2020/9/16 13:00:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 13:00:38', '杨俊杰【经理部总经理】于2020/9/16 13:00:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 13:01:53', 'WK010于2020/9/16 13:01:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 13:02:47', '杨俊杰【经理部总经理】于2020/9/16 13:02:47尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 13:03:38', 'WK010于2020/9/16 13:03:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 13:04:14', '杨俊杰【经理部总经理】于2020/9/16 13:04:14尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 13:11:48', 'WK010于2020/9/16 13:11:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 13:12:11', '杨俊杰【经理部总经理】于2020/9/16 13:12:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 13:16:58', '经理部总经理杨俊杰于2020/9/16 13:16:58帮助123进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 13:49:37', 'WK010于2020/9/16 13:49:37登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 13:50:04', '杨俊杰【经理部总经理】于2020/9/16 13:50:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 13:52:32', '经理部总经理杨俊杰于2020/9/16 13:52:32查看了的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-16 18:46:07', 'WK010于2020/9/16 18:46:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-17 09:42:18', 'WK010于2020/9/17 9:42:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-17 09:45:05', '经理部总经理杨俊杰于2020/9/17 9:45:05查看了TS1002的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-17 09:45:30', '经理部总经理杨俊杰于2020/9/17 9:45:30查看了TS1005的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-17 09:49:55', '经理部总经理杨俊杰于2020/9/17 9:49:55帮助TS1998进行了消费商品:三只松鼠零食大礼包操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-17 11:59:45', 'WK010于2020-09-17 11:59:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-17 12:04:32', 'WK010于2020-09-17 12:04:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-17 16:06:22', 'WK010于2020-09-17 16:06:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-09-23 13:43:38', 'WK010于2020/9/23 13:43:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 14:42:49', 'WK010于2020/11/11 14:42:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 14:44:11', '杨俊杰【经理部总经理】于2020/11/11 14:44:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 14:54:20', 'WK010于2020/11/11 14:54:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 14:54:55', 'WK010于2020/11/11 14:54:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 16:24:29', 'WK010于2020/11/11 16:24:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 17:48:55', 'WK010于2020/11/11 17:48:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 17:49:46', 'WK010于2020/11/11 17:49:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 18:00:20', 'WK010于2020/11/11 18:00:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 18:13:58', 'WK010于2020/11/11 18:13:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 18:25:04', 'WK010于2020/11/11 18:25:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 18:41:58', 'WK010于2020/11/11 18:41:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 20:50:58', 'WK010于2020/11/11 20:50:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 20:55:36', 'WK010于2020/11/11 20:55:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 20:56:04', 'WK010于2020/11/11 20:56:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 20:56:48', 'WK010于2020/11/11 20:56:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 20:57:57', 'WK010于2020/11/11 20:57:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 20:58:58', 'WK010于2020/11/11 20:58:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 20:59:43', 'WK010于2020/11/11 20:59:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 21:03:07', 'WK010于2020/11/11 21:03:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 21:09:51', 'WK010于2020/11/11 21:09:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-11 23:13:27', 'WK010于2020/11/11 23:13:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 07:29:31', 'WK010于2020-11-12 07:29:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 09:33:38', 'WK010于2020-11-12 09:33:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 09:43:15', 'WK010于2020-11-12 9:43:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 20:28:51', 'WK010于2020-11-12 20:28:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 21:33:30', 'WK010于2020/11/12 21:33:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 21:34:14', '经理部总经理杨俊杰于2020/11/12 21:34:14查看了TS1140的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 22:03:50', 'WK010于2020/11/12 22:03:50登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 22:05:36', 'WK010于2020/11/12 22:05:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 22:06:27', 'WK010于2020/11/12 22:06:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 22:08:01', 'WK010于2020/11/12 22:08:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 22:09:28', 'WK010于2020/11/12 22:09:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 22:20:21', 'WK010于2020/11/12 22:20:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 22:31:05', 'WK010于2020/11/12 22:31:05登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 22:31:56', '经理部总经理杨俊杰于2020/11/12 22:31:56帮助TS1001进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 22:39:21', 'WK010于2020/11/12 22:39:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 22:48:39', 'WK010于2020/11/12 22:48:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 22:49:27', '经理部总经理杨俊杰于2020/11/12 22:49:27帮助TS1571进行了消费商品:雪碧操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 23:00:04', 'WK010于2020/11/12 23:00:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 23:01:16', 'WK010于2020/11/12 23:01:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 23:08:19', 'WK010于2020/11/12 23:08:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 23:10:21', 'WK010于2020/11/12 23:10:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 23:12:22', 'WK010于2020/11/12 23:12:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 23:12:46', 'WK010于2020/11/12 23:12:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 23:14:40', 'WK010于2020/11/12 23:14:40登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 23:16:01', 'WK010于2020/11/12 23:16:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-12 23:26:42', 'WK010于2020/11/12 23:26:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 10:45:45', 'WK010于2020/11/13 10:45:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 11:15:45', 'WK010于2020/11/13 11:15:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 11:16:51', '经理部总经理杨俊杰于2020/11/13 11:16:51帮助1进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 11:18:46', 'WK010于2020/11/13 11:18:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 11:19:15', 'WK010于2020/11/13 11:19:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 11:27:58', 'WK010于2020/11/13 11:27:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 11:36:47', 'WK010于2020/11/13 11:36:47登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 13:53:48', 'WK010于2020/11/13 13:53:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 16:03:42', 'WK010于2020/11/13 16:03:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 20:44:49', 'WK010于2020/11/13 20:44:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 21:00:08', 'WK010于2020/11/13 21:00:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 21:01:40', '经理部总经理杨俊杰于2020/11/13 21:01:40帮助TS1571进行了消费商品:乐事薯片(原味)操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 21:04:34', 'WK010于2020/11/13 21:04:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 21:05:23', 'WK010于2020/11/13 21:05:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 21:06:01', 'WK010于2020/11/13 21:06:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 21:17:47', 'WK010于2020/11/13 21:17:47登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 21:19:27', 'WK010于2020/11/13 21:19:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 21:45:36', 'WK010于2020/11/13 21:45:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 22:14:25', 'WK010于2020/11/13 22:14:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 22:17:08', 'WK010于2020/11/13 22:17:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 22:18:42', '经理部总经理杨俊杰于2020/11/13 22:18:42查看了TS1393的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 22:32:24', 'WK010于2020/11/13 22:32:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 22:33:27', '杨俊杰【经理部总经理】于2020/11/13 22:33:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 22:46:07', 'WK010于2020/11/13 22:46:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 22:46:43', 'WK010于2020/11/13 22:46:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 22:48:19', 'WK010于2020/11/13 22:48:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 22:49:59', 'WK010于2020/11/13 22:49:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 22:52:10', 'WK010于2020/11/13 22:52:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 23:03:06', 'WK010于2020/11/13 23:03:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-13 23:05:23', 'WK010于2020/11/13 23:05:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-14 14:45:01', 'WK010于2020/11/14 14:45:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-14 21:57:20', 'WK010于2020/11/14 21:57:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-15 00:07:10', '于2020/11/15 0:07:10登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-15 00:08:45', '于2020/11/15 0:08:45登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-15 00:09:28', '于2020/11/15 0:09:28登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-15 01:57:32', '于2020/11/15 1:57:32登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-15 13:59:59', '于2020/11/15 13:59:59登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-15 14:03:18', '于2020/11/15 14:03:18登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-15 14:04:09', '于2020/11/15 14:04:09登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-15 14:05:33', '于2020/11/15 14:05:33登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-15 14:10:34', '于2020/11/15 14:10:34登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-15 14:10:40', '杨俊杰【经理部总经理】于2020/11/15 14:10:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-15 14:19:57', '于2020/11/15 14:19:57登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-15 14:20:01', '杨俊杰【经理部总经理】于2020/11/15 14:20:01尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 18:23:06', 'WK010于2020-11-16 18:23:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:19:54', '于2020/11/16 21:19:54登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:21:23', '于2020/11/16 21:21:23登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:21:49', '于2020/11/16 21:21:49登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:23:57', '于2020/11/16 21:23:57登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:28:05', '于2020/11/16 21:28:05登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:28:48', '于2020/11/16 21:28:48登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:29:30', '于2020/11/16 21:29:30登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:30:02', '于2020/11/16 21:30:02登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:30:32', '于2020/11/16 21:30:32登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:32:10', '于2020/11/16 21:32:10登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:35:28', '于2020/11/16 21:35:28登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:36:44', '于2020/11/16 21:36:44登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:39:22', '于2020/11/16 21:39:22登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:43:04', '于2020/11/16 21:43:04登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:44:02', '于2020/11/16 21:44:02登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:46:06', '于2020/11/16 21:46:06登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:46:22', '于2020/11/16 21:46:22登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:47:07', '于2020/11/16 21:47:07登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:48:36', '于2020/11/16 21:48:36登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:50:32', '于2020/11/16 21:50:32登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:51:03', '于2020/11/16 21:51:03登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 21:53:11', '于2020/11/16 21:53:11登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 22:11:04', '于2020/11/16 22:11:04登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 22:12:04', '于2020/11/16 22:12:04登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 22:12:34', '于2020/11/16 22:12:34登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 22:15:34', '于2020/11/16 22:15:34登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 22:16:44', '于2020/11/16 22:16:44登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 22:17:34', '于2020/11/16 22:17:34登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 22:18:44', '于2020/11/16 22:18:44登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 22:22:50', '于2020/11/16 22:22:50登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 22:23:32', '于2020/11/16 22:23:32登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 22:24:37', '于2020/11/16 22:24:37登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 22:27:27', '于2020/11/16 22:27:27登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-16 22:27:53', '于2020/11/16 22:27:53登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 17:17:11', 'WK010于2020/11/17 17:17:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 17:19:43', 'WK010于2020/11/17 17:19:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 17:19:49', '杨俊杰【经理部总经理】于2020/11/17 17:19:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 17:22:59', '杨俊杰【经理部总经理】于2020/11/17 17:22:59尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 17:48:49', 'WK010于2020/11/17 17:48:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 17:48:59', '杨俊杰【经理部总经理】于2020/11/17 17:48:59尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 17:49:43', '杨俊杰【经理部总经理】于2020/11/17 17:49:43尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 17:57:45', 'WK010于2020/11/17 17:57:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 20:33:51', 'WK010于2020/11/17 20:33:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 20:36:13', '经理部总经理杨俊杰于2020/11/17 20:36:13帮助进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 20:41:16', 'WK010于2020/11/17 20:41:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 20:41:21', '杨俊杰【经理部总经理】于2020/11/17 20:41:21尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 23:44:57', '于2020/11/17 23:44:57登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 23:46:45', '于2020/11/17 23:46:45登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 23:48:43', '于2020/11/17 23:48:43登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 23:51:22', '于2020/11/17 23:51:22登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-17 23:53:10', '于2020/11/17 23:53:10登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-18 11:58:07', 'WK010于2020-11-18 11:58:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-18 19:00:48', '于2020/11/18 19:00:48登入了系统!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-18 19:06:27', 'WK010于2020/11/18 19:06:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-18 23:14:56', 'WK010于2020-11-18 23:14:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-19 23:12:52', 'WK010于2020/11/19 23:12:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-19 23:14:37', 'WK010于2020/11/19 23:14:37登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-19 23:17:46', 'WK010于2020/11/19 23:17:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-19 23:21:41', 'WK010于2020/11/19 23:21:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-19 23:22:51', 'WK010于2020/11/19 23:22:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-19 23:24:44', 'WK010于2020/11/19 23:24:44登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-19 23:27:59', 'WK010于2020/11/19 23:27:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-19 23:28:22', 'WK010于2020/11/19 23:28:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-19 23:31:02', 'WK010于2020/11/19 23:31:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-19 23:34:05', 'WK010于2020/11/19 23:34:05登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-19 23:35:30', 'WK010于2020/11/19 23:35:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-19 23:39:35', 'WK010于2020/11/19 23:39:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-21 11:37:57', 'WK010于2020/11/21 11:37:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-22 15:06:22', 'WK010于2020/11/22 15:06:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-23 21:04:10', 'WK010于2020/11/23 21:04:10登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-24 22:04:02', 'WK010于2020/11/24 22:04:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-25 11:56:09', 'WK010于2020-11-25 11:56:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-25 22:54:14', '于2020/11/25 22:54:14帮助TS1005进行了消费商品:火腿肠操作!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-26 21:29:15', '于2020/11/26 21:29:15帮助TS1005进行了消费商品:三只松鼠夏威夷坚果操作!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-26 21:30:12', '于2020/11/26 21:30:12帮助TS1005进行了消费商品:青岛啤酒操作!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-26 21:31:40', '于2020/11/26 21:31:40帮助TS1005进行了消费商品:毛巾操作!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-26 21:47:47', '于2020/11/26 21:47:47帮助TS1005进行了消费商品:澡巾操作!', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-28 11:17:35', 'WK010于2020/11/28 11:17:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-29 10:37:23', 'WK010于2020/11/29 10:37:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-30 18:04:41', 'WK010于2020/11/30 18:04:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-30 18:08:06', 'WK010于2020/11/30 18:08:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-30 18:09:58', 'WK010于2020/11/30 18:09:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-30 18:24:22', 'WK010于2020/11/30 18:24:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-11-30 18:28:29', '经理部总经理杨俊杰于2020/11/30 18:28:29帮助TS1005进行了退房结算操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-01 09:18:47', 'WK010于2020/12/1 9:18:47登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-01 09:21:06', '经理部总经理杨俊杰于2020/12/1 9:21:06查看了TS1475的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-01 09:21:14', '经理部总经理杨俊杰于2020/12/1 9:21:14查看了TS1475的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-01 09:28:21', '经理部总经理杨俊杰于2020/12/1 9:28:21帮助TS1143进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 11:35:09', 'WK010于2020/12/3 11:35:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 11:52:23', 'WK010于2020/12/3 11:52:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 11:53:17', 'WK010于2020/12/3 11:53:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 11:55:57', 'WK010于2020/12/3 11:55:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 11:56:00', '杨俊杰【经理部总经理】于2020/12/3 11:56:00尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 11:56:02', '杨俊杰【经理部总经理】于2020/12/3 11:56:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 11:56:04', '杨俊杰【经理部总经理】于2020/12/3 11:56:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 11:56:07', '杨俊杰【经理部总经理】于2020/12/3 11:56:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 13:34:12', 'WK010于2020/12/3 13:34:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 13:34:17', '杨俊杰【经理部总经理】于2020/12/3 13:34:17尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 13:34:19', '杨俊杰【经理部总经理】于2020/12/3 13:34:19尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 15:01:14', 'WK010于2020/12/3 15:01:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 15:01:18', '杨俊杰【经理部总经理】于2020/12/3 15:01:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 15:01:21', '杨俊杰【经理部总经理】于2020/12/3 15:01:21尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 16:53:03', 'WK010于2020-12-03 16:53:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 16:55:00', 'WK010于2020-12-03 16:55:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 21:06:58', 'WK010于2020/12/3 21:06:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 21:09:41', 'WK010于2020/12/3 21:09:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 21:14:39', 'WK010于2020/12/3 21:14:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 21:20:04', 'WK010于2020/12/3 21:20:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 21:20:57', 'WK010于2020/12/3 21:20:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 21:29:29', 'WK010于2020/12/3 21:29:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 22:00:20', 'WK010于2020/12/3 22:00:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-03 22:15:13', 'WK010于2020/12/3 22:15:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-04 10:13:37', 'WK010于2020/12/4 10:13:37登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-04 10:15:44', '杨俊杰【经理部总经理】于2020/12/4 10:15:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-04 10:15:47', '杨俊杰【经理部总经理】于2020/12/4 10:15:47尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-04 12:18:17', 'WK010于2020/12/4 12:18:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-04 15:42:47', 'WK010于2020-12-04 15:42:47登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-06 22:57:28', 'WK010于2020-12-06 22:57:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-06 23:01:25', 'WK010于2020-12-06 23:01:25登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-07 03:28:45', 'WK010于2020/12/7 星期一 3:28:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-07 03:30:03', 'WK010于2020/12/7 星期一 3:30:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-07 03:30:27', 'WK010于2020/12/7 星期一 3:30:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-07 03:31:40', '经理部总经理杨俊杰于2020/12/7 星期一 3:31:40查看了TS1034的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-07 03:35:04', 'WK010于2020/12/7 星期一 3:35:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-07 03:36:21', 'WK010于2020/12/7 星期一 3:36:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-07 03:43:12', 'WK010于2020/12/7 星期一 3:43:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-07 03:44:34', 'WK010于2020/12/7 星期一 3:44:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-08 21:04:41', 'WK010于2020/12/8 21:04:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-08 21:06:22', 'WK010于2020/12/8 21:06:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-08 21:08:54', 'WK010于2020/12/8 21:08:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-08 21:13:08', 'WK010于2020/12/8 21:13:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-08 21:15:17', 'WK010于2020/12/8 21:15:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-08 21:18:17', 'WK010于2020/12/8 21:18:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-08 21:19:51', 'WK010于2020/12/8 21:19:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-08 21:22:34', 'WK010于2020/12/8 21:22:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-08 21:24:39', 'WK010于2020/12/8 21:24:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-08 21:25:20', 'WK010于2020/12/8 21:25:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-08 21:30:00', 'WK010于2020/12/8 21:30:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-09 22:26:09', 'WK010于2020/12/9 22:26:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-09 23:13:59', 'WK010于2020/12/9 23:13:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-09 23:21:32', 'WK010于2020/12/9 23:21:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-09 23:22:30', 'WK010于2020/12/9 23:22:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-09 23:24:22', 'WK010于2020/12/9 23:24:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-09 23:26:05', 'WK010于2020/12/9 23:26:05登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-10 02:45:12', 'WK010于2020/12/10 2:45:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-10 02:47:03', '杨俊杰【经理部总经理】于2020/12/10 2:47:03尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-11 00:18:09', 'WK010于2020/12/11 星期五 0:18:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-11 00:23:59', '经理部总经理杨俊杰于2020/12/11 星期五 0:23:59查看了的证件号码!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-11 00:24:12', '杨俊杰【经理部总经理】于2020/12/11 星期五 0:24:12尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-11 00:41:55', 'WK010于2020/12/11 星期五 0:41:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-11 14:02:43', 'WK010于2020/12/11 星期五 14:02:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-13 18:18:16', 'WK010于2020/12/13 18:18:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-13 23:47:01', 'WK010于2020/12/13 23:47:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-14 21:45:27', 'WK010于2020/12/14 21:45:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-14 21:48:08', 'WK010于2020/12/14 21:48:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-14 21:52:26', 'WK010于2020/12/14 21:52:26登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-14 21:56:16', 'WK010于2020/12/14 21:56:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-14 21:58:39', 'WK010于2020/12/14 21:58:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-17 23:12:53', 'WK010于2020/12/17 23:12:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-17 23:13:29', 'WK010杨俊杰于2020/12/17 23:13:29尝试或成功登入了后台系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:13:27', 'WK010于2020/12/20 23:13:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:18:50', 'WK010于2020/12/20 23:18:50登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:22:09', 'WK010于2020/12/20 23:22:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:23:23', 'WK010于2020/12/20 23:23:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:24:29', 'WK010于2020/12/20 23:24:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:25:45', 'WK010于2020/12/20 23:25:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:28:31', 'WK010于2020/12/20 23:28:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:31:45', 'WK010于2020/12/20 23:31:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:33:13', 'WK010于2020/12/20 23:33:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:34:23', 'WK010于2020/12/20 23:34:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:34:51', 'WK010于2020/12/20 23:34:51登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:35:27', 'WK010于2020/12/20 23:35:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:35:50', 'WK010于2020/12/20 23:35:50登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:36:54', 'WK010于2020/12/20 23:36:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-20 23:38:13', '经理部总经理杨俊杰于2020/12/20 23:38:13帮助TS1492进行了消费商品:青岛啤酒操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-23 22:06:19', 'WK010于2020/12/23 22:06:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-23 22:08:09', 'WK010于2020/12/23 22:08:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-23 22:24:27', 'WK010于2020/12/23 22:24:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-23 22:25:58', '经理部总经理杨俊杰于2020/12/23 22:25:58帮助TS1492进行了消费商品:92拉菲操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-23 22:57:03', '经理部总经理杨俊杰于2020/12/23 22:57:03帮助TS1492进行了消费商品:92拉菲操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-23 22:59:20', 'WK010于2020/12/23 22:59:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-23 23:00:38', 'WK010于2020/12/23 23:00:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-24 21:25:18', 'WK010于2020/12/24 21:25:18登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-24 23:15:13', 'WK010于2020/12/24 23:15:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-24 23:16:19', 'WK010于2020/12/24 23:16:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-24 23:18:30', 'WK010于2020/12/24 23:18:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-24 23:19:19', 'WK010于2020/12/24 23:19:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-24 23:21:19', 'WK010于2020/12/24 23:21:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-24 23:23:13', 'WK010于2020/12/24 23:23:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-24 23:24:31', 'WK010于2020/12/24 23:24:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-24 23:25:04', '经理部总经理杨俊杰于2020/12/24 23:25:04帮助进行了预订房间操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-24 23:26:20', 'WK010于2020/12/24 23:26:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-25 20:58:45', 'WK010于2020/12/25 20:58:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-25 20:59:43', 'WK010于2020/12/25 20:59:43登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-25 21:05:22', 'WK010于2020/12/25 21:05:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-25 21:10:50', 'WK010于2020/12/25 21:10:50登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-27 19:06:44', 'WK010于2020/12/27 19:06:44登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-27 19:06:54', 'WK010杨俊杰于2020/12/27 19:06:54尝试或成功登入了后台系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2020-12-29 22:52:54', 'WK010于2020/12/29 22:52:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-06 00:54:19', 'WK010于2021/1/6 0:54:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-06 23:19:17', 'WK010于2021/1/6 23:19:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 22:33:32', 'WK010于2021/1/17 22:33:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 22:35:04', 'WK010于2021/1/17 22:35:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 22:35:34', '经理部总经理杨俊杰于2021/1/17 22:35:34帮助TS1816进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 22:42:42', 'WK010于2021/1/17 22:42:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 22:47:48', 'WK010于2021/1/17 22:47:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 22:49:33', 'WK010于2021/1/17 22:49:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 22:53:27', 'WK010于2021/1/17 22:53:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 22:58:36', 'WK010于2021/1/17 22:58:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 22:59:31', 'WK010于2021/1/17 22:59:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 23:00:13', 'WK010于2021/1/17 23:00:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 23:14:50', 'WK010于2021/1/17 23:14:50登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 23:31:11', 'WK010于2021/1/17 23:31:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 23:31:34', 'WK010于2021/1/17 23:31:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 23:32:08', 'WK010于2021/1/17 23:32:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 23:35:19', 'WK010于2021/1/17 23:35:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-17 23:36:55', 'WK010于2021/1/17 23:36:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 14:47:24', 'WK010于2021/1/24 14:47:24登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 14:49:03', 'WK010于2021/1/24 14:49:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 14:54:09', 'WK010于2021/1/24 14:54:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 14:55:50', 'WK010于2021/1/24 14:55:50登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 14:57:05', 'WK010于2021/1/24 14:57:05登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 14:58:17', 'WK010于2021/1/24 14:58:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 15:02:15', 'WK010于2021/1/24 15:02:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 15:06:35', 'WK010于2021/1/24 15:06:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 16:24:34', 'WK010于2021/1/24 16:24:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 16:27:56', 'WK010于2021/1/24 16:27:56登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 16:31:08', 'WK010于2021/1/24 16:31:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 16:31:32', 'WK010于2021/1/24 16:31:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 16:32:57', 'WK010于2021/1/24 16:32:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 16:34:29', 'WK010于2021/1/24 16:34:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 16:36:35', 'WK010于2021/1/24 16:36:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 16:40:23', 'WK010于2021/1/24 16:40:23登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 16:43:49', 'WK010于2021/1/24 16:43:49登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 16:44:57', 'WK010于2021/1/24 16:44:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 16:46:58', 'WK010于2021/1/24 16:46:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 16:56:36', 'WK010于2021/1/24 16:56:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 17:01:39', 'WK010于2021/1/24 17:01:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 17:02:13', '经理部总经理杨俊杰于2021/1/24 17:02:13帮助TS1143进行了消费商品:雪碧操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 17:04:13', 'WK010于2021/1/24 17:04:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 17:17:33', 'WK010于2021/1/24 17:17:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 17:29:29', 'WK010于2021/1/24 17:29:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 18:17:28', 'WK010于2021/1/24 18:17:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 18:18:38', 'WK010于2021/1/24 18:18:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 18:19:45', 'WK010于2021/1/24 18:19:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 18:20:21', 'WK010于2021/1/24 18:20:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 18:21:38', 'WK010于2021/1/24 18:21:38登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 18:23:04', 'WK010于2021/1/24 18:23:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 18:25:39', 'WK010于2021/1/24 18:25:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 19:56:21', 'WK010于2021/1/24 19:56:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 19:56:39', 'WK010于2021/1/24 19:56:39登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 19:59:48', 'WK010于2021/1/24 19:59:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 20:02:41', 'WK010于2021/1/24 20:02:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 20:05:27', 'WK010于2021/1/24 20:05:27登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 20:07:29', 'WK010于2021/1/24 20:07:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 20:07:46', 'WK010于2021/1/24 20:07:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 20:08:29', 'WK010于2021/1/24 20:08:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 20:12:35', 'WK010于2021/1/24 20:12:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 20:14:52', 'WK010于2021/1/24 20:14:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 20:15:44', 'WK010于2021/1/24 20:15:44登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 20:18:21', 'WK010于2021/1/24 20:18:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 20:24:13', 'WK010于2021/1/24 20:24:13登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 20:53:58', 'WK010于2021/1/24 20:53:58登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 21:00:32', 'WK010于2021/1/24 21:00:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 21:03:34', 'WK010于2021/1/24 21:03:34登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 21:07:28', 'WK010于2021/1/24 21:07:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 21:46:14', 'WK010于2021/1/24 21:46:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 21:46:33', 'WK010于2021/1/24 21:46:33登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 21:51:22', 'WK010于2021/1/24 21:51:22登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 21:51:40', 'WK010于2021/1/24 21:51:40登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 21:52:03', 'WK010于2021/1/24 21:52:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 21:53:20', 'WK010于2021/1/24 21:53:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 21:55:42', 'WK010于2021/1/24 21:55:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 21:58:46', 'WK010于2021/1/24 21:58:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 21:59:09', 'WK010于2021/1/24 21:59:09登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 21:59:37', 'WK010于2021/1/24 21:59:37登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 22:00:02', 'WK010于2021/1/24 22:00:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 22:02:28', 'WK010于2021/1/24 22:02:28登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 22:03:19', 'WK010于2021/1/24 22:03:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 22:04:37', 'WK010于2021/1/24 22:04:37登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 22:05:16', 'WK010于2021/1/24 22:05:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 22:09:16', 'WK010于2021/1/24 22:09:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 22:09:36', 'WK010于2021/1/24 22:09:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 22:17:48', 'WK010于2021/1/24 22:17:48登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 22:27:30', 'WK010于2021/1/24 22:27:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-24 22:30:59', 'WK010于2021/1/24 22:30:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-29 19:40:52', 'WK010于2021/1/29 19:40:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-29 19:42:14', 'WK010于2021/1/29 19:42:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-29 19:42:55', 'WK010于2021/1/29 19:42:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-29 19:44:20', 'WK010于2021/1/29 19:44:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-29 19:46:59', 'WK010于2021/1/29 19:46:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-29 19:49:54', 'WK010于2021/1/29 19:49:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-29 19:52:57', 'WK010于2021/1/29 19:52:57登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-29 19:56:35', 'WK010于2021/1/29 19:56:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-29 20:05:36', 'WK010于2021/1/29 20:05:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-29 20:14:12', 'WK010于2021/1/29 20:14:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-29 20:18:53', 'WK010于2021/1/29 20:18:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-29 21:23:44', 'WK010于2021/1/29 21:23:44登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-29 21:26:12', 'WK010于2021/1/29 21:26:12登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-29 21:28:07', 'WK010于2021/1/29 21:28:07登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 12:25:55', 'WK010于2021/1/30 12:25:55登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 12:27:41', 'WK010于2021/1/30 12:27:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 14:35:08', 'WK010于2021/1/30 14:35:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 14:40:16', 'WK010于2021/1/30 14:40:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 14:42:32', 'WK010于2021/1/30 14:42:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 14:43:36', 'WK010于2021/1/30 14:43:36登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 14:46:20', 'WK010于2021/1/30 14:46:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 14:48:20', 'WK010于2021/1/30 14:48:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 14:50:19', 'WK010于2021/1/30 14:50:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 14:50:59', 'WK010于2021/1/30 14:50:59登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 14:51:29', 'WK010杨俊杰于2021/1/30 14:51:29尝试或成功登入了后台系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 14:52:14', 'WK010杨俊杰于2021/1/30 14:52:14尝试或成功登入了后台系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 14:55:11', 'WK010于2021/1/30 14:55:11登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 15:23:20', 'WK010于2021/1/30 15:23:20登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 15:25:30', 'WK010于2021/1/30 15:25:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 15:27:17', 'WK010于2021/1/30 15:27:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 15:31:30', 'WK010于2021/1/30 15:31:30登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 15:41:03', 'WK010于2021/1/30 15:41:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 15:55:46', 'WK010于2021/1/30 15:55:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:14:04', 'WK010于2021/1/30 16:14:04登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:15:05', 'WK010于2021/1/30 16:15:05登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:16:01', 'WK010于2021/1/30 16:16:01登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:19:54', 'WK010于2021/1/30 16:19:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:21:35', 'WK010于2021/1/30 16:21:35登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:22:32', 'WK010于2021/1/30 16:22:32登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:23:03', 'WK010于2021/1/30 16:23:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:23:41', 'WK010于2021/1/30 16:23:41登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:35:31', 'WK010于2021/1/30 16:35:31登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:37:40', '经理部总经理杨俊杰于2021/1/30 16:37:40帮助TS1812进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:37:58', '经理部总经理杨俊杰于2021/1/30 16:37:58帮助TS1140进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:38:16', '经理部总经理杨俊杰于2021/1/30 16:38:16帮助TS1290进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:38:53', '经理部总经理杨俊杰于2021/1/30 16:38:53帮助TS1266进行了入住操作!', '经理部总经理杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:47:21', 'WK010于2021/1/30 16:47:21登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:47:46', 'WK010于2021/1/30 16:47:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:48:42', 'WK010于2021/1/30 16:48:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:50:29', 'WK010于2021/1/30 16:50:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:51:03', 'WK010于2021/1/30 16:51:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-01-30 16:51:22', 'WK010杨俊杰于2021/1/30 16:51:22尝试或成功登入了后台系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-09 17:48:14', 'WK010于2021/2/9 17:48:14登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-09 17:50:45', 'WK010于2021/2/9 17:50:45登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-09 17:51:53', 'WK010于2021/2/9 17:51:53登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-09 17:54:06', 'WK010于2021/2/9 17:54:06登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-09 17:59:42', 'WK010于2021/2/9 17:59:42登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-09 18:00:16', 'WK010于2021/2/9 18:00:16登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-09 18:02:03', 'WK010于2021/2/9 18:02:03登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-09 18:04:02', 'WK010于2021/2/9 18:04:02登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-09 18:04:56', 'TS1347于2021/2/9 18:04:59进行了换房,请记得到后台修改消费价格!', '杨俊杰', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-10 13:48:40', 'WK010于2021/2/10 13:48:40登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-10 13:53:29', 'WK010于2021/2/10 13:53:29登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-10 13:58:15', 'WK010于2021/2/10 13:58:15登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-10 13:58:46', 'WK009于2021/2/10 13:58:46登入了系统!', 'WK009', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-10 14:00:47', 'WK002于2021/2/10 14:00:47登入了系统!', 'WK002', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-10 14:04:05', 'WK010于2021/2/10 14:04:05登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-10 14:09:46', 'WK010于2021/2/10 14:09:46登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-10 14:10:08', 'WK010于2021/2/10 14:10:08登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-10 14:12:00', 'WK010于2021/2/10 14:12:00登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-10 14:14:52', 'WK010于2021/2/10 14:14:52登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-10 14:18:17', 'WK010于2021/2/10 14:18:17登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-10 14:23:54', 'WK010于2021/2/10 14:23:54登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-10 14:24:19', 'WK010于2021/2/10 14:24:19登入了系统!', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 21:39:34', 'WK010于2021/2/11 21:39:34登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 21:39:55', 'WK010于2021/2/11 21:39:55登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 21:46:44', 'WK010于2021/2/11 21:46:44登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 21:48:19', 'WK010于2021/2/11 21:48:19登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 21:49:31', 'WK010于2021/2/11 21:49:31登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 21:51:21', 'WK010于2021/2/11 21:51:21登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 21:52:03', 'WK010于2021/2/11 21:52:03登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 21:52:40', 'WK010于2021/2/11 21:52:40登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 21:53:28', 'WK010于2021/2/11 21:53:28登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 21:54:44', 'WK010于2021/2/11 21:54:44登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 21:56:39', 'WK010于2021/2/11 21:56:39登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 22:02:29', 'WK010于2021/2/11 22:02:29登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 22:04:19', 'WK010于2021/2/11 22:04:19登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 22:06:52', 'WK010于2021/2/11 22:06:52登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 22:09:58', 'WK010于2021/2/11 22:09:58登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 22:15:59', 'WK010于2021/2/11 22:15:59登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 22:19:37', 'WK010于2021/2/11 22:19:37登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 22:24:26', 'WK010于2021/2/11 22:24:26登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 22:25:06', 'WK010于2021/2/11 22:25:06登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 22:26:46', 'WK010于2021/2/11 22:26:46登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 22:28:58', 'WK010于2021/2/11 22:28:58登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:10:56', 'WK010于2021/2/11 23:10:56登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:12:49', 'WK010于2021/2/11 23:12:49登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:14:00', 'WK010于2021/2/11 23:14:00登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:18:26', 'WK010于2021/2/11 23:18:26登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:22:41', 'WK010于2021/2/11 23:22:41登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:27:47', 'WK010于2021/2/11 23:27:47登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:30:05', 'WK010于2021/2/11 23:30:05登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:31:07', 'WK010于2021/2/11 23:31:07登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:35:24', 'WK010于2021/2/11 23:35:24登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:41:04', 'WK010于2021/2/11 23:41:04登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:47:32', 'WK010于2021/2/11 23:47:32登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:50:18', 'WK010于2021/2/11 23:50:18登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:52:23', 'WK010于2021/2/11 23:52:23登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:55:08', 'WK010于2021/2/11 23:55:08登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:57:26', 'WK010于2021/2/11 23:57:26登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:59:09', 'WK010于2021/2/11 23:59:09登入了系统!', 'WK010', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-11 23:59:38', 'D-001P-0001杨俊杰于2021/2/11 23:59:38帮助TS1074进行了入住操作!', 'D-001P-0001杨俊杰', 0, 'WK010', '2021-02-11', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 14:33:30', 'WK010于2021/2/12 14:33:30登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 14:57:36', 'WK010于2021/2/12 14:57:36登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 14:59:18', 'WK010于2021/2/12 14:59:18登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:00:21', 'WK010于2021/2/12 15:00:21登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:02:20', 'WK010于2021/2/12 15:02:20登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:03:47', 'WK010于2021/2/12 15:03:47登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:04:17', 'TS1812于2021/2/12 15:04:17进行了换房,请记得到后台修改消费价格!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:05:45', 'WK010于2021/2/12 15:05:45登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:11:38', 'WK010于2021/2/12 15:11:38登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:13:11', 'WK010于2021/2/12 15:13:11登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:13:47', 'D-001P-0001杨俊杰于2021/2/12 15:13:47帮助进行了退房结算操作!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:20:35', 'WK010于2021/2/12 15:20:35登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:23:21', 'WK010于2021/2/12 15:23:21登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:27:04', 'WK010于2021/2/12 15:27:04登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:28:58', 'WK010于2021/2/12 15:28:58登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:38:34', 'WK010于2021/2/12 15:38:34登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:41:04', 'WK010于2021/2/12 15:41:04登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:48:21', 'WK010于2021/2/12 15:48:21登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:49:39', 'WK010于2021/2/12 15:49:39登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:50:37', 'WK010于2021/2/12 15:50:37登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:54:02', 'WK010于2021/2/12 15:54:02登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:55:18', 'WK010于2021/2/12 15:55:18登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:58:02', 'WK010于2021/2/12 15:58:02登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 15:59:10', 'D-001P-0001杨俊杰于2021/2/12 15:59:11帮助TS1812进行了消费商品:三只松鼠夏威夷坚果操作!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 16:00:10', 'WK010于2021/2/12 16:00:10登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 16:02:54', 'WK010于2021/2/12 16:02:54登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 16:10:21', 'WK010于2021/2/12 16:10:21登入了系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-12 16:11:46', 'WK010杨俊杰于2021/2/12 16:11:46尝试或成功登入了后台系统!', 'WK010', 0, 'WK010', '2021-02-12', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:03:47', '于2021/2/13 15:03:47新增了房间,房间号为:BD010,房间类型为:标准单人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:04:58', '于2021/2/13 15:04:58新增了房间,房间号为:BD011,房间类型为:标准单人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:07:46', '于2021/2/13 15:07:46新增了房间,房间号为:BD012,房间类型为:标准单人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:08:51', '于2021/2/13 15:08:51新增了房间,房间号为:BD013,房间类型为:标准单人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:09:00', '于2021/2/13 15:09:00新增了房间,房间号为:BD014,房间类型为:标准单人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:09:07', '于2021/2/13 15:09:07新增了房间,房间号为:BD015,房间类型为:标准单人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:09:55', '于2021/2/13 15:09:55新增了房间,房间号为:BS010,房间类型为:标准双人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:10:12', '于2021/2/13 15:10:12新增了房间,房间号为:BS011,房间类型为:标准双人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:10:20', '于2021/2/13 15:10:20新增了房间,房间号为:BS012,房间类型为:标准双人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:10:26', '于2021/2/13 15:10:26新增了房间,房间号为:BS013,房间类型为:标准双人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:10:31', '于2021/2/13 15:10:31新增了房间,房间号为:BS014,房间类型为:标准双人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:10:38', '于2021/2/13 15:10:38新增了房间,房间号为:BS015,房间类型为:标准双人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:11:05', '于2021/2/13 15:11:05新增了房间,房间号为:HD010,房间类型为:豪华单人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:11:10', '于2021/2/13 15:11:10新增了房间,房间号为:HD011,房间类型为:豪华单人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:11:16', '于2021/2/13 15:11:16新增了房间,房间号为:HD012,房间类型为:豪华单人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:11:20', '于2021/2/13 15:11:20新增了房间,房间号为:HD013,房间类型为:豪华单人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:11:24', '于2021/2/13 15:11:24新增了房间,房间号为:HD014,房间类型为:豪华单人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:11:29', '于2021/2/13 15:11:29新增了房间,房间号为:HD015,房间类型为:豪华单人间', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 15:55:02', '于2021/2/13 15:55:02进行了上传公告操作!', '', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `operationlog`(`OperationTime`, `OperationLog`, `OperationAccount`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('2021-02-13 20:32:21', 'WK010于2021/2/13 20:32:21登入了系统!', 'WK010', 0, 'WK010', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `passporttype`(`PassportId`, `PassportName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, '中国居民身份证', 0, NULL, NULL, NULL, NULL); +INSERT INTO `passporttype`(`PassportId`, `PassportName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '港澳通行证', 0, NULL, NULL, NULL, NULL); +INSERT INTO `passporttype`(`PassportId`, `PassportName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, '台胞证', 0, NULL, NULL, NULL, NULL); +INSERT INTO `passporttype`(`PassportId`, `PassportName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, '军官证', 0, NULL, NULL, NULL, NULL); +INSERT INTO `passporttype`(`PassportId`, `PassportName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (4, '外国护照', 0, NULL, NULL, NULL, NULL); +INSERT INTO `position`(`position_no`, `position_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('P-0001', '总经理', 0, 'System', '2021-01-31', 'System', '2021-01-31'); +INSERT INTO `position`(`position_no`, `position_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('P-0002', '经理', 0, 'System', '2021-02-01', 'System', '2021-02-01'); +INSERT INTO `position`(`position_no`, `position_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('P-0003', '职员', 0, 'System', '2021-02-02', 'System', '2021-02-02'); +INSERT INTO `position`(`position_no`, `position_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('P-0004', '监管组长', 0, 'System', '2021-02-03', 'System', '2021-02-03'); +INSERT INTO `position`(`position_no`, `position_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('P-0005', '监管组员', 0, 'System', '2021-02-04', 'System', '2021-02-04'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD001', 0, 'TS1074', '2021-02-11 23:59:34', NULL, 1, 300.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD002', 0, NULL, NULL, '2021-02-09 00:00:00', 3, 300.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD003', 0, NULL, NULL, '2021-02-12 15:04:14', 3, 300.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD004', 0, 'TS1816', '2021-01-17 22:35:31', NULL, 1, 300.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD005', 0, '', '2020-08-15 12:17:56', NULL, 3, 300.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD006', 0, 'TS1347', '2021-02-09 18:04:20', NULL, 1, 300.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD007', 0, NULL, NULL, '2020-05-27 08:32:18', 0, 300.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD008', 0, 'TS1812', '2021-02-12 15:04:14', NULL, 1, 300.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD009', 0, NULL, NULL, '2020-06-02 11:35:07', 0, 300.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD010', 0, 'TS1143', '2020-12-01 09:28:19', NULL, 1, 300.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD011', 0, NULL, NULL, NULL, 0, 300.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD012', 0, NULL, NULL, NULL, 0, 300.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD013', 0, NULL, NULL, NULL, 0, 300.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD014', 0, NULL, NULL, NULL, 0, 300.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BD015', 0, NULL, NULL, NULL, 0, 300.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS001', 1, NULL, NULL, '2020-11-30 00:00:00', 2, 425.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS002', 1, NULL, NULL, '2020-04-06 20:24:33', 0, 425.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS003', 1, NULL, NULL, '2020-04-06 19:59:19', 0, 425.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS004', 1, NULL, NULL, '2018-12-26 20:11:26', 0, 425.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS005', 1, NULL, NULL, '2020-04-07 14:37:32', 0, 425.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS006', 1, '', '2020-11-12 22:23:53', NULL, 0, 425.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS007', 1, NULL, NULL, '2020-05-27 08:32:10', 0, 425.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS008', 1, '', '2021-01-24 15:04:49', NULL, 0, 425.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS009', 1, NULL, NULL, NULL, 0, 425.00, 'A层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS010', 1, NULL, NULL, NULL, 0, 425.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS011', 1, NULL, NULL, NULL, 0, 425.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS012', 1, NULL, NULL, NULL, 0, 425.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS013', 1, NULL, NULL, NULL, 0, 425.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS014', 1, NULL, NULL, NULL, 0, 425.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('BS015', 1, NULL, NULL, NULL, 0, 425.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD001', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD002', 2, 'TS1140', '2021-01-30 16:37:56', NULL, 1, 625.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD003', 2, NULL, NULL, '2020-05-27 08:31:28', 0, 625.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD004', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD005', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD006', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD007', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD008', 2, 'TS1492', '2020-12-08 21:14:25', NULL, 1, 625.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD009', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD010', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD011', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD012', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD013', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD014', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HD015', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, '', '2021-02-13', NULL, '0001-01-01'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HS001', 3, NULL, NULL, '2020-04-07 14:48:41', 2, 600.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HS002', 3, NULL, NULL, NULL, 0, 660.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HS003', 3, NULL, NULL, NULL, 0, 660.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HS004', 3, NULL, NULL, NULL, 0, 660.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HS005', 3, NULL, NULL, '2018-12-25 08:44:07', 0, 660.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HS006', 3, NULL, NULL, NULL, 0, 660.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HS007', 3, NULL, NULL, NULL, 0, 660.00, 'B层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('HS008', 3, NULL, NULL, NULL, 2, 660.00, 'B层', 0, 'WK010', NULL, NULL, '2021-02-12'); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('QL001', 4, NULL, NULL, '2018-12-26 09:51:40', 0, 845.00, 'C层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('QL002', 4, NULL, NULL, NULL, 0, 845.00, 'C层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('QL003', 4, NULL, NULL, '2021-02-12 15:13:44', 3, 845.00, 'C层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('QL004', 4, NULL, NULL, NULL, 0, 845.00, 'C层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('QL005', 4, NULL, NULL, NULL, 0, 845.00, 'C层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('QL006', 4, NULL, NULL, NULL, 0, 845.00, 'C层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ZT001', 5, NULL, NULL, NULL, 0, 1080.00, 'D层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ZT002', 5, NULL, NULL, '2020-04-23 20:53:47', 0, 1080.00, 'D层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ZT003', 5, NULL, NULL, NULL, 0, 1080.00, 'D层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ZT004', 5, NULL, NULL, NULL, 0, 1080.00, 'D层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ZT005', 5, NULL, NULL, '2020-05-27 08:32:01', 0, 1080.00, 'D层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `room`(`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ZT006', 5, 'TS1266', '2021-01-30 16:38:51', NULL, 1, 1080.00, 'D层', 0, NULL, NULL, NULL, NULL); +INSERT INTO `roomstate`(`RoomStateId`, `RoomState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, '空房', 0, NULL, NULL, NULL, NULL); +INSERT INTO `roomstate`(`RoomStateId`, `RoomState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '已住', 0, NULL, NULL, NULL, NULL); +INSERT INTO `roomstate`(`RoomStateId`, `RoomState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, '维修中', 0, NULL, NULL, NULL, NULL); +INSERT INTO `roomstate`(`RoomStateId`, `RoomState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, '脏房', 0, NULL, NULL, NULL, NULL); +INSERT INTO `roomstate`(`RoomStateId`, `RoomState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (4, '已预约', 0, NULL, NULL, NULL, NULL); +INSERT INTO `roomtype`(`RoomType`, `RoomName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, '标准单人间', 0, NULL, NULL, NULL, NULL); +INSERT INTO `roomtype`(`RoomType`, `RoomName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '标准双人间', 0, NULL, NULL, NULL, NULL); +INSERT INTO `roomtype`(`RoomType`, `RoomName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, '豪华单人间', 0, NULL, NULL, NULL, NULL); +INSERT INTO `roomtype`(`RoomType`, `RoomName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, '豪华双人间', 0, NULL, NULL, NULL, NULL); +INSERT INTO `roomtype`(`RoomType`, `RoomName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (4, '情侣套房', 0, NULL, NULL, NULL, NULL); +INSERT INTO `roomtype`(`RoomType`, `RoomName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (5, '总统套房', 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST003', '可口可乐', 10.00, '/瓶(1.5L)', 969, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST005', '乐事薯片(原味)', 20.00, '/包(145g)', 951, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST007', '雪碧', 2.50, '/罐', 991, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST008', '特级杜蕾斯', 40.00, '/盒', 184, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST009', '三只松鼠夏威夷坚果', 40.00, '/袋(160g)', 1484, 0, NULL, NULL, 'WK010', '2021-02-12'); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST010', '蟹味瓜子仁', 30.00, '/袋', 1000, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST011', '青岛啤酒', 15.00, '/瓶', 970, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST012', '火腿肠', 10.00, '/包(40g)', 996, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST013', '毛巾', 10.00, '/条', 1000, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST014', '澡巾', 12.50, '/条', 999, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST015', '香皂', 25.00, '/个(145g)', 996, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST016', '牙刷', 10.00, '/个', 1000, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST017', '红枣', 25.00, '/包', 1000, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST019', '扑克牌', 5.00, '/副', 248, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST020', 'TS纪念品', 10.00, '/个', 998, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST021', '三只松鼠零食大礼包', 299.00, '/礼包', 2998, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST022', '芬达', 10.00, '/瓶(1.5L)', 900, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST398', '拉菲', 1080.00, '/支', 999, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST677', '92拉菲', 10800.00, '/瓶', 1153, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST851', 'T仔', 90.00, '/个', 30000, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sellthing`(`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST983', '日清方便面', 5.50, '/桶', 3001, 0, NULL, NULL, NULL, NULL); +INSERT INTO `sextype`(`sexId`, `sexName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, '女', 0, NULL, NULL, NULL, NULL); +INSERT INTO `sextype`(`sexId`, `sexName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '男', 0, NULL, NULL, NULL, NULL); +INSERT INTO `spend`(`CustoNo`, `SpendDate`, `SpendMoney`, `SpendType`, `SpendMess`, `Lender`, `Reamrks`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1001', '2018-10-05 00:00:00', 300.00, 1, '吃喝睡', '陈洪汉', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO `spend`(`CustoNo`, `SpendDate`, `SpendMoney`, `SpendType`, `SpendMess`, `Lender`, `Reamrks`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1395', '2018-10-22 00:00:00', 1200.00, 2, '吸收了两只万年魂兽', '戴沐白', '魂兽真香', 0, NULL, NULL, NULL, NULL); +INSERT INTO `spendtype`(`SpendType`, `TypeName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, '房费', 0, NULL, NULL, NULL, NULL); +INSERT INTO `spendtype`(`SpendType`, `TypeName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '娱乐', 0, NULL, NULL, NULL, NULL); +INSERT INTO `spendtype`(`SpendType`, `TypeName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, '饮食', 0, NULL, NULL, NULL, NULL); +INSERT INTO `uploadinfo`(`NoticeNo`, `Noticetheme`, `NoticeType`, `NoticeTime`, `NoticeContent`, `NoticeClub`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('UP001', '人员调动', 'PersonnelChanges', '2018-12-03 15:48:58', '现将临时工李顺调为正式工,并担任经理部秘书!即日起生效', '人事部', 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1005', 'Billy Hank', 1, '1231231213', 4, '003-12312312222222', 'American SHENGDIYAGE', '1900-01-01', 3, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1008', 'lili', 0, 'B0489EB1811EC329189424C9202E', 0, 'B0489EB1811EC329189424C9202E', '广西壮族自治区柳州市柳江县', '1998-06-18', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1032', '汪十', 0, '12345678911', 0, '123123213231', '', '1980-01-01', 3, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1043', '理查德', 0, '', 0, '', '', '2020-07-05', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1074', '李四', 1, '13411152323', 0, '899100090902323', NULL, '1870-08-23', 3, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1084', '景晨', 0, '13902992233', 1, '363939877421', '', '1998-02-17', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1140', '王五', 0, '', 0, '430621199806271759', '湖南省岳阳市岳阳县', '1998-06-27', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1239', '222', 0, '11111', 0, '130302197707163442', '河北省秦皇岛市海港区', '1977-07-16', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1251', '良辰', 1, '12345678987', 0, '232342342', '', '2001-12-03', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1256', 'Billy Hank', 1, '1231231213', 4, '003-12312312222222', 'American SHENGDIYAGE', '1900-01-01', 3, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1260', 'XYZ', 1, '12312313123', 0, '2312312312312', '', '1900-01-01', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1266', '小舞', 0, '2222222', 0, '2222222222222', '', '1998-12-03', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1290', '景晨', 1, '13902992233', 1, '363939877421', '', '1998-02-17', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1310', 'abc', 0, '17663721822', 0, '', '', '2020-05-27', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1336', 'ojh', 0, '877889', 0, '431990199812148787', '', '1998-12-14', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1364', 'MR.A', 1, '123123123', 0, '221021199612169889', '', '1996-12-16', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1365', '卢本伟', 1, '999', 0, '440922019931213879', '广东省茂名市高州县', '2020-06-02', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1387', '尚志强', 1, '', 0, '130123432918423456', '河北省石家庄市正定县', '2018-03-21', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1389', '彤彤', 0, '', 0, '42028819450827801x', '', '1945-08-27', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1395', '唐三', 0, '14566554434', 0, '990021123321233', NULL, '1990-09-12', 1, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1457', '罗良健', 0, '', 0, 'B0489EB1811EC329189424C9202E', '', '1999-10-28', 1, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1472', '王五', 0, '', 0, 'B0489EB1811EC329189424C9202E', '湖南省邵阳市邵东县', '1998-06-27', 3, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1480', '申', 1, '12354697812', 0, 'B0489EB1811EC329189424C9202E', '', '1998-12-14', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1537', 'June', 0, '001-0221002', 4, '00291129111221', '', '1990-02-10', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1571', '测试1', 0, '12344442222', 0, '4344321519920222', '', '1992-02-22', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1634', '杨俊杰', 1, '12345678901', 0, 'B0489EB1811EC329189424C9202E', '', '1900-01-01', 2, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1757', '付金鑫1', 1, '312312313', 0, '123123123', '市区', '1900-01-01', 1, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1765', 'pdd', 1, '123123123', 1, '12312412412', '', '1900-01-01', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1779', 'MR.S', 1, '789798789', 0, 'B0489EB1811EC329189424C9202E', '广东省茂名市信宜县', '1993-12-14', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1812', '杨俊杰', 1, '12345678901', 0, 'B0489EB1811EC329189424C9202E', '', '1900-01-01', 2, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1816', '李顺', 1, 'B0489EB1811EC329189424C9202E', 0, '123456789012345678', '天堂度假村', '1900-01-01', 1, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1828', '里', 0, '12335467698', 0, 'B0489EB1811EC329189424C9202E', '二夫人都是否定的否定', '1997-06-22', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1862', '杨三三', 0, 'B0489EB1811EC329189424C9202E', 0, 'B0489EB1811EC329189424C9202E', NULL, '1980-11-22', 1, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1897', '汪十', 1, 'B0489EB1811EC329189424C9202E', 0, '123123213231', '', '1990-01-01', 3, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1903', '赵六', 0, 'B0489EB1811EC329189424C9202E', 0, '110110110110', NULL, '1890-02-13', 3, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1914', '杨高兴', 0, 'B0489EB1811EC329189424C9202E', 0, '362330178405217890', '江西省上饶地区波阳县', '1900-01-01', 1, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1926', '路英才', 1, 'B0489EB1811EC329189424C9202E', 3, 'KJ00101231', '', '1900-12-09', 3, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1968', 'dsad', 0, 'B0489EB1811EC329189424C9202E', 0, '23123123', '', '2018-12-10', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1997', '汪十', 0, 'B0489EB1811EC329189424C9202E', 0, '123123213231', '', '1900-01-01', 3, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1998', '丽丽 ', 1, '18757523769', 0, '450621199806272589', '广西壮族自治区防城港市上思县', '1998-06-27', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS6128', 'Susan', 0, 'B0489EB1811EC329189424C9202E', 4, '099900121212', '美利坚共和国纽约', '1997-02-23', 3, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS6666', '付金鑫', 1, 'B0489EB1811EC329189424C9202E', 0, '123123123', '市区', '1900-01-01', 1, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS8888', 'Yang', 0, 'B0489EB1811EC329189424C9202E', 0, '12312312312', 'sdads', '2018-01-01', 3, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1393', '测试', 0, 'B0489EB1811EC329189424C9202E', 0, '1E901F3E245D2CA9D3D9D2751393030', '广东省茂名市信宜县', '1999-07-20', 1, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1492', '凌峰', 1, 'CA483EB765168D1C7BD9A7424F2B8A3', 0, 'A26EBC3BF16553F6BE7B0EB1F0A0BB', '广东省茂名市信宜县', '1999-12-15', 3, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1926', '路英才', 1, '19B3A74B8DAAFF17781B8C89C4691B2D', 3, '8A41B66CB22FFEDBAE29994619F6FA', '', '1900-12-09', 3, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1723', '路小粥', 0, '13838A25B6866650BA58EF018437EA1', 0, 'C718D0132458F588F39A8125A2C28E', '广东省茂名市信宜县', '1999-07-20', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1519', '苏米白', 0, '631128174969FAE70C014BD7EED7D8', 0, '9FE34262A19C96C0888C4604E20F9E1', '广东省茂名市信宜县', '1996-12-14', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1347', '1', 1, '1', 0, '340825199001011122', '安徽省安庆市太湖县', '1990-01-01', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1143', 'A ', 0, 'D41D8CD98F0B24E980998ECF8427E', 0, '4051C329FD528AA44CB5C01A63A6', '', '2020-12-01', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `userinfo`(`CustoNo`, `CustoName`, `CustoSex`, `CustoTel`, `PassportType`, `CustoID`, `CustoAdress`, `CustoBirth`, `CustoType`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('TS1043', '理查德', 1, 'D41D8CD98F0B24E980998ECF8427E', 0, 'D41D8CD98F0B24E980998ECF8427E', '', '2020-07-05', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `usertype`(`UserType`, `TypeName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, '普通用户', 0, NULL, NULL, NULL, NULL); +INSERT INTO `usertype`(`UserType`, `TypeName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '钻石会员', 0, NULL, NULL, NULL, NULL); +INSERT INTO `usertype`(`UserType`, `TypeName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, '白金会员', 0, NULL, NULL, NULL, NULL); +INSERT INTO `usertype`(`UserType`, `TypeName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, '黄金会员', 0, NULL, NULL, NULL, NULL); +INSERT INTO `warning`(`id`, `warning`, `website`, `token`) VALUES (1, 'To recover your lost databases and avoid leaking it: visit http://hn4wg4o6s5nc7763.onion and enter your unique token a981cab07ac7a2c8 and pay the required amount of Bitcoin to get it back. Databases that we have: tshoteldb, recover_databases. Your databases are downloaded and backed up on our servers. If we dont receive your payment in the next 9 Days, we will sell your database to the highest bidder or use them otherwise. To access this site you have use the tor browser https://www.torproject.org/projects/torbrowser.html', 'http://hn4wg4o6s5nc7763.onion', 'a981cab07ac7a2c8'); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Duyen', '阿娟', '1969-10-11 00:00:00', 0, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:20:31', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Hien', '阿賢', '1969-10-11 00:00:00', 0, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:19:53', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Huong', '阿香', '1969-10-11 00:00:00', 0, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:17:25', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Lam', '阿隆', '1969-10-11 00:00:00', 0, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:21:52', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Lien', '阿蓮', '1969-10-11 00:00:00', 0, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:16:44', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Shenyou', '申酉', '1999-07-20 00:00:00', 1, '15019927415', 'D-001', 'N-00001', '金湾', 'P-0003', '123121313132X3', '123456', '2020-07-05 02:18:19', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK001', '谭国平', '1999-12-05 00:00:00', 1, '15693857612', 'D-004', 'N-00001', '红旗', 'P-0003', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK002', '李杰峰', '1999-10-15 00:00:00', 1, '15632343232', 'D-003', 'N-00001', '市区', 'P-0003', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK003', '陈伟瀚', '1999-11-20 00:00:00', 1, '13036456756', 'D-005', 'N-00001', '斗门', 'P-0003', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK004', '杨旭东', '1999-02-15 00:00:00', 1, '15693857612', 'D-006', 'N-00001', '井岸', 'P-0003', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK005', '付金鑫', '1999-06-05 00:00:00', 1, '15693857612', 'D-002', 'N-00001', '市区', 'P-0003', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK006', '陈洪汉', '1999-10-05 00:00:00', 1, '15693857612', 'D-004', 'N-00001', '南屏', 'P-0003', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK007', '罗良建', '2000-12-05 00:00:00', 1, '15693857612', 'D-004', 'N-00001', '市区', 'P-0003', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK008', '林淑仪', '1999-12-05 00:00:00', 0, '15693857612', 'D-004', 'N-00001', '市区', 'P-0003', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK009', '老铁', '1989-12-05 00:00:00', 1, '15693857612', 'D-004', 'N-00001', '市区', 'P-0003', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '杨俊杰', '1999-07-20 00:00:00', 1, '15019927415', 'D-001', 'N-00001', '金湾', 'P-0001', '123121313132X3', 'admin', '2011-04-20 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK011', '六月', '1900-01-18 00:00:00', 1, '13433221223', 'D-002', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK012', '七月', '1989-10-11 00:00:00', 1, '13433221223', 'D-002', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK013', '八月', '1979-10-11 00:00:00', 1, '13433221223', 'D-004', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK014', '九月', '1969-10-11 00:00:00', 1, '13433221223', 'D-004', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK015', '十元', '1959-10-11 00:00:00', 1, '13433221223', 'D-004', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK016', '十月', '1949-10-11 00:00:00', 0, '13433221223', 'D-004', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK017', '十一月', '1939-10-11 00:00:00', 0, '13433221223', 'D-004', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK018', '十二月', '1929-10-11 00:00:00', 0, '13433221223', 'D-006', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK019', '十四年', '1911-10-11 00:00:00', 0, '13433221223', 'D-006', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK020', '十五年', '1992-10-11 00:00:00', 0, '13433221223', 'D-006', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK021', '一楠', '1993-10-11 00:00:00', 0, '13433221223', 'D-006', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK022', '二南', '1994-10-11 00:00:00', 1, '13433221223', 'D-006', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK023', '三男', '1995-10-11 00:00:00', 1, '13433221223', 'D-006', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK024', '四北', '1996-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK025', '花呗', '1997-10-11 00:00:00', 0, '13433221223', 'D-003', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK026', '蚂蚁', '1998-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK027', '余额宝', '1919-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK028', '支付宝', '1929-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK029', '阿里', '1939-10-11 00:00:00', 0, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK030', '阿狸', '1949-10-11 00:00:00', 1, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK031', '阿力', '1959-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK032', '瞎小', '1969-10-11 00:00:00', 0, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK033', '沙宣', '1979-10-11 00:00:00', 1, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK034', '沙县', '1989-10-11 00:00:00', 1, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK388', '张三', '1998-06-27 00:00:00', 1, '18756497655', 'D-002', 'N-00001', '广西壮族自治区防城港市上思县', 'P-0003', '450621199806271679', '585402554', '2020-08-20 09:33:45', '群众', 'E-00001', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK775', '凌峰', '1995-07-14 00:00:00', 1, '13328993360', 'D-003', 'N-00001', '广东省茂名市信宜县', 'P-0003', '440921199507149395', '123456', '2020-05-04 12:57:15', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO `worker`(`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Xingxue', '興學', '1999-07-20 00:00:00', 1, '15019927415', 'D-001', 'N-00001', '金湾', 'P-0003', '123121313132X3', '123456', '2020-07-05 02:18:53', '团员', 'E-00005', 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-04-19 19:23:13', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-04-21 19:25:55', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-04-22 13:01:26', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-04-23 15:46:18', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-04-25 18:44:03', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-04-26 10:33:41', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-04-29 00:12:50', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK001', '2020-04-29 12:38:12', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-01 00:24:14', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-02 10:54:07', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-03 19:55:47', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-04 12:51:47', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-07 15:20:18', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-08 22:06:14', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-09 10:46:01', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-10 21:30:52', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-11 20:16:32', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-12 20:58:07', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-14 22:14:03', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-15 17:07:43', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-18 22:26:40', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-19 10:49:38', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-20 08:40:40', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-21 14:38:13', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-22 19:48:30', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-24 18:35:58', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-25 14:28:22', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-27 23:50:39', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-05-28 17:23:55', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-06-02 21:20:57', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-06-04 15:53:00', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-06-07 22:36:06', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-06-08 22:31:55', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-06-12 14:41:33', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-06-19 12:42:27', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-06-24 17:37:10', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-06-28 09:31:41', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-07-01 16:31:36', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-07-02 22:25:34', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-07-13 14:16:26', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-07-16 15:02:03', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-07-24 11:29:44', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-08-04 11:39:43', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-08-05 16:49:44', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-08-06 16:52:38', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-08-07 15:35:51', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-08-19 15:56:18', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-08-23 17:06:06', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-09-14 14:09:25', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-09-16 13:02:07', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-09-17 09:44:26', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-11-11 14:54:59', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-11-12 21:33:40', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-11-13 21:00:32', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-11-15 01:57:48', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-11-16 18:23:56', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-11-17 17:49:24', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-11-30 18:25:03', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-12-03 13:42:16', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-12-08 21:04:52', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-12-09 23:21:38', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-12-10 02:46:46', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-12-13 18:18:29', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-12-23 23:01:06', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2020-12-25 21:05:35', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2021-01-17 22:35:44', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2021-01-24 17:29:39', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2021-01-30 14:44:52', '系统界面', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK002', '2021-02-10 14:00:55', '系统界面', 0, 0, 'WK002', '2021-02-10', NULL, NULL); +INSERT INTO `workercheck`(`WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2021-02-11 21:56:49', '系统界面', 0, 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO `workergoodbad`(`WorkNo`, `GBInfo`, `GBType`, `GBOperation`, `GBTime`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK008', '牛逼就完事了!', 0, '杨俊杰', '2020-04-21 21:02:30', 0, NULL, NULL, NULL, NULL); +INSERT INTO `workergoodbad`(`WorkNo`, `GBInfo`, `GBType`, `GBOperation`, `GBTime`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK775', '被评为优秀的“五四”行业青年', 0, '杨俊杰', '2020-05-04 13:01:17', 0, NULL, NULL, NULL, NULL); +INSERT INTO `workerhistory`(`WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2005-03-05 00:00:00', '2008-03-05 00:00:00', '部门经理', '海湾大酒店', 0, NULL, NULL, NULL, NULL); +INSERT INTO `workerhistory`(`WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '2009-06-23 00:00:00', '2010-02-02 00:00:00', '总经理', '非凡大酒店', 0, NULL, NULL, NULL, NULL); +INSERT INTO `workerhistory`(`WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK775', '2015-07-17 12:57:15', '2018-05-04 12:57:15', '财务会计', '非凡会计所', 0, NULL, NULL, NULL, NULL); +INSERT INTO `workerhistory`(`WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK261', '2020-07-16 21:13:33', '2020-07-16 21:13:33', '', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `workerhistory`(`WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK100', '2020-07-16 21:13:42', '2020-07-16 21:13:42', '', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `workerhistory`(`WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK388', '2020-08-20 09:33:45', '2020-08-20 09:33:45', '', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, 'BD001', '2018-12-11 09:48:00', '2018-12-11 10:08:29', 3.00, 3.00, 'admin', 'TS8888', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, 'ZT006', '2018-12-27 11:44:01', '2018-12-27 11:44:01', 0.16, 3.00, 'admin', 'TS8888', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, 'BD003', '2018-12-06 00:00:00', '2018-12-11 07:27:57', 0.80, 15.00, 'admin', 'TS6666', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (4, 'HD002', '2018-11-29 00:00:00', '2018-12-11 07:40:07', 1.92, 36.00, 'admin', 'TS1003', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (5, 'BD005', '2018-12-06 00:00:00', '2018-12-11 07:43:28', 0.80, 15.00, 'admin', 'TS1002', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (6, 'HS005', '2018-11-29 00:00:00', '2018-12-11 07:45:00', 1.92, 36.00, 'admin', 'TS1032', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (7, 'BD001', '2018-12-20 19:59:10', '2018-12-21 00:31:00', 0.16, 3.00, 'admin', 'TS1862', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (8, 'BS001', '2018-12-27 20:46:42', '2018-12-27 20:46:42', 0.00, 0.00, 'admin', 'TS1003', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (9, 'HD001', '2018-12-26 09:55:37', '2020-02-28 17:08:35', 68.64, 1287.00, 'admin', 'TS1862', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (10, 'ZT001', '2019-10-28 21:13:40', '2020-03-14 23:20:57', 22.08, 414.00, 'admin', 'TS1457', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (11, 'QL001', '2018-12-26 09:51:10', '2018-12-26 09:51:10', 0.16, 3.00, 'admin', 'TS1395', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (12, 'BS004', '2018-12-26 20:11:18', '2018-12-26 20:11:18', 0.00, 0.00, 'admin', 'TS1251', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (13, 'BS003', '2018-12-26 18:52:53', '2020-04-06 19:58:52', 74.72, 1401.00, 'admin', 'TS1084', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (14, 'BS002', '2018-12-26 18:52:37', '2020-04-06 20:24:26', 74.70, 1401.00, 'admin', 'TS1074', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (15, 'HD002', '2018-12-27 17:32:26', '2020-04-06 20:25:04', 74.56, 1398.00, 'admin', 'TS1634', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (16, 'HD003', '2018-12-26 20:06:12', '2020-04-06 20:25:22', 74.72, 1401.00, 'admin', 'TS1765', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (17, 'BD002', '2018-12-27 20:26:49', '2020-04-07 00:23:43', 74.72, 1401.00, 'admin', 'TS1001', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (18, 'BS005', '2020-04-07 14:34:21', '2020-04-07 14:37:17', 0.00, 0.00, 'admin', 'TS1081', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (19, 'BS009', '2020-04-08 12:49:19', '2020-04-09 14:39:53', 0.16, 3.00, 'admin', 'TS6666', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (20, 'BD003', '2020-04-06 18:14:17', '2020-04-14 16:46:08', 1.28, 24.00, 'admin', 'TS1779', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (21, 'BD001', '2020-04-23 16:35:48', '2020-04-23 16:35:48', 0.48, 9.00, 'admin', 'TS1032', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (22, 'ZT002', '2020-04-23 20:53:29', '2020-04-23 20:53:29', 2.56, 48.00, 'admin', 'TS1364', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (23, 'BD001', '2020-04-25 20:19:57', '2020-04-26 19:06:06', 0.16, 3.00, 'admin', 'TS1336', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (24, 'BD004', '2020-04-29 12:39:21', '2020-05-04 13:04:09', 0.80, 15.00, 'admin', 'TS1480', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (25, 'BD006', '2020-04-26 10:36:51', '2020-05-04 13:07:25', 1.28, 24.00, 'admin', 'TS1032', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (26, 'BD001', '2020-05-07 15:16:55', '2020-05-25 15:29:10', 2.88, 54.00, 'admin', 'TS1239', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (27, 'BD010', '2020-05-04 13:12:36', '2020-05-26 15:24:43', -6.40, -120.00, 'admin', 'TS1043', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (28, 'HD003', '2020-04-26 10:36:24', '2020-05-27 08:31:14', 4.96, 93.00, 'admin', 'TS1001', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (29, 'ZT006', '2020-05-04 13:12:36', '2020-05-27 08:31:36', 3.68, 69.00, 'admin', 'TS1074', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (30, 'ZT005', '2020-03-03 19:59:44', '2020-05-27 08:31:56', 13.60, 255.00, 'admin', 'TS1005', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (31, 'BS007', '2020-04-05 13:12:36', '2020-05-27 08:32:04', 8.32, 156.00, 'admin', 'TS1003', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (32, 'BD007', '2020-04-05 13:12:36', '2020-05-27 08:32:13', 8.32, 156.00, 'admin', 'TS1002', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (33, 'BD003', '2020-05-27 11:19:21', '2020-05-27 11:20:00', 0.00, 0.00, 'admin', 'TS1310', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (34, 'BD001', '2020-08-04 11:45:36', '2020-08-18 17:31:12', 12.32, 231.00, 'admin', 'TS1365', 0, NULL, NULL, NULL, NULL); +INSERT INTO `wtinfo`(`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (35, 'QL003', '2021-01-30 00:00:00', '2021-02-12 15:13:23', 1.92, 36.00, 'admin', 'TS1290', 0, NULL, '0001-01-01', NULL, '0001-01-01'); diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/Table.sql" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/Table.sql" new file mode 100644 index 0000000000000000000000000000000000000000..ef78e406e1dfd1d08b726c19692bf48958a12db2 --- /dev/null +++ "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/Table.sql" @@ -0,0 +1,641 @@ +/* + Navicat Premium Data Transfer + + Source Server : TencentCloudDB + Source Server Type : MySQL + Source Server Version : 80023 + Source Host : 134.175.239.108:3306 + Source Schema : tshoteldb + + Target Server Type : MySQL + Target Server Version : 80023 + File Encoding : 65001 + + Date: 14/02/2021 10:32:39 +*/ + +SET NAMES utf8mb4; +SET FOREIGN_KEY_CHECKS = 0; + +-- ---------------------------- +-- Table structure for admininfo +-- ---------------------------- +DROP TABLE IF EXISTS `admininfo`; +CREATE TABLE `admininfo` ( + `AdminAccount` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '管理员账号', + `AdminPassword` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '管理员密码', + `AdminType` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '管理员类型', + `AdminName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '管理员名称', + `IsAdmin` int NOT NULL COMMENT '是否为超级管理员', + `DeleteMk` int NOT NULL COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料新增人', + `datains_time` date NULL DEFAULT NULL COMMENT '资料新增时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_time` date NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`AdminAccount`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for admintype +-- ---------------------------- +DROP TABLE IF EXISTS `admintype`; +CREATE TABLE `admintype` ( + `type_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '管理员类型', + `type_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '管理员类型名称', + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`type_id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for applicationversion +-- ---------------------------- +DROP TABLE IF EXISTS `applicationversion`; +CREATE TABLE `applicationversion` ( + `base_versionId` int NOT NULL AUTO_INCREMENT COMMENT '流水号', + `base_version` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '版本号', + PRIMARY KEY (`base_versionId`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for backinfo +-- ---------------------------- +DROP TABLE IF EXISTS `backinfo`; +CREATE TABLE `backinfo` ( + `BackNo` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '物资编号', + `BackName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '物资名称', + `BackSource` varchar(18) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '物资来源', + `BackCash` decimal(6, 2) NOT NULL COMMENT '物资金额', + `BackType` int NOT NULL COMMENT '物资类型', + `BackPerson` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '经办人', + `ControlClub` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '管理部门', + `BackClub` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '所属部门', + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`BackNo`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for cardcodes +-- ---------------------------- +DROP TABLE IF EXISTS `cardcodes`; +CREATE TABLE `cardcodes` ( + `id` bigint NOT NULL COMMENT '编号', + `Province` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '省份', + `City` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '城市', + `District` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '地区', + `bm` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '地区识别码' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for cardinfo +-- ---------------------------- +DROP TABLE IF EXISTS `cardinfo`; +CREATE TABLE `cardinfo` ( + `CardID` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `CardName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `CustoNo` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + PRIMARY KEY (`CardID`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for cashinfo +-- ---------------------------- +DROP TABLE IF EXISTS `cashinfo`; +CREATE TABLE `cashinfo` ( + `CashNo` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '资产编号', + `CashName` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '资产名称', + `CashPrice` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '资产总值', + `CashClub` varchar(800) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '所属部门', + `CashTime` datetime(0) NOT NULL COMMENT '入库时间', + `CashSource` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '资产来源', + `CashPerson` varchar(800) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '资产经办人', + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`CashNo`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for checkinfo +-- ---------------------------- +DROP TABLE IF EXISTS `checkinfo`; +CREATE TABLE `checkinfo` ( + `CheckNo` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '监管统计编号', + `CheckClub` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '受监管部门', + `CheckProgres` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '受监管部门总体概述', + `CheckCash` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '受监管部门交易情况', + `CheckScore` int NOT NULL COMMENT '受监管部门得分情况', + `CheckPerson` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '本次监管负责人', + `CheckAdvice` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '监管建议', + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for counterrule +-- ---------------------------- +DROP TABLE IF EXISTS `counterrule`; +CREATE TABLE `counterrule` ( + `rule_id` int NOT NULL AUTO_INCREMENT COMMENT '规则编号', + `rule_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '规格名称', + `rule_desc` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '规则描述', + `now_id` int NULL DEFAULT NULL COMMENT '当前ID', + `prefix_name` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '规则简写', + `custo_format` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '规则格式', + `number_format` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '编号前缀', + `separating_char` varchar(5) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '规则分割符', + `datains_usrid` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料新增人', + `datains_time` datetime(0) NULL DEFAULT NULL COMMENT '资料新增时间', + `datachg_usrid` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_time` datetime(0) NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`rule_id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for custospend +-- ---------------------------- +DROP TABLE IF EXISTS `custospend`; +CREATE TABLE `custospend` ( + `SpendId` int NOT NULL AUTO_INCREMENT COMMENT '记录编号', + `RoomNo` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '房间编号', + `CustoNo` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '客户编号', + `SpendName` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '商品名称', + `SpendAmount` int NOT NULL COMMENT '商品数量', + `SpendPrice` decimal(10, 2) NOT NULL COMMENT '商品价格', + `SpendMoney` decimal(10, 2) NOT NULL COMMENT '消费总额', + `SpendTime` datetime(0) NOT NULL COMMENT '消费时间', + `MoneyState` varchar(9) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '结算状态', + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`SpendId`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 58 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for dept +-- ---------------------------- +DROP TABLE IF EXISTS `dept`; +CREATE TABLE `dept` ( + `dept_no` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '部门编号', + `dept_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '部门名称', + `dept_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '部门描述', + `dept_date` date NULL DEFAULT NULL COMMENT '创建时间(部门)', + `dept_leader` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '部门主管', + `dept_parent` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '上级部门', + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`dept_no`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for education +-- ---------------------------- +DROP TABLE IF EXISTS `education`; +CREATE TABLE `education` ( + `education_no` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '学历编号', + `education_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '学历名称', + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`education_no`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for fonts +-- ---------------------------- +DROP TABLE IF EXISTS `fonts`; +CREATE TABLE `fonts` ( + `FontsId` int NOT NULL AUTO_INCREMENT, + `FontsMess` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`FontsId`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for gbtype +-- ---------------------------- +DROP TABLE IF EXISTS `gbtype`; +CREATE TABLE `gbtype` ( + `GBTypeId` int NULL DEFAULT NULL, + `GBName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for module +-- ---------------------------- +DROP TABLE IF EXISTS `module`; +CREATE TABLE `module` ( + `module_id` varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '模块流水号', + `module_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT '模块名称', + `module_desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT '模块描述', + `module_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT '模块地址', + `datains_usr` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT '新增数据USR', + `datains_date` datetime(0) NULL DEFAULT NULL COMMENT '新增数据时间', + `datachg_usr` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT '更新数据USR', + `datachg_date` datetime(0) NULL DEFAULT NULL COMMENT '更新数据时间', + PRIMARY KEY (`module_id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_unicode_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for moneyinfo +-- ---------------------------- +DROP TABLE IF EXISTS `moneyinfo`; +CREATE TABLE `moneyinfo` ( + `MoneyNo` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `MoneyType` int NOT NULL, + `MoneyIn` decimal(10, 2) NOT NULL, + `MoneyOut` decimal(10, 2) NOT NULL, + `MoneyCheck` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `MoneyPerson` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `Remarks` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for nation +-- ---------------------------- +DROP TABLE IF EXISTS `nation`; +CREATE TABLE `nation` ( + `nation_no` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '民族编号', + `nation_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '民族名称', + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`nation_no`, `nation_name`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for operationlog +-- ---------------------------- +DROP TABLE IF EXISTS `operationlog`; +CREATE TABLE `operationlog` ( + `OperationTime` datetime(0) NOT NULL, + `OperationLog` varchar(8000) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `OperationAccount` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for passporttype +-- ---------------------------- +DROP TABLE IF EXISTS `passporttype`; +CREATE TABLE `passporttype` ( + `PassportId` int NOT NULL, + `PassportName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`PassportId`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for position +-- ---------------------------- +DROP TABLE IF EXISTS `position`; +CREATE TABLE `position` ( + `position_no` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '职位编号', + `position_name` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '职位名称', + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`position_no`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for reser +-- ---------------------------- +DROP TABLE IF EXISTS `reser`; +CREATE TABLE `reser` ( + `ReserId` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `CustoName` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `CustoTel` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `ReserWay` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `ReserRoom` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `ReserDate` date NULL DEFAULT NULL, + `ReserEndDate` date NULL DEFAULT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for room +-- ---------------------------- +DROP TABLE IF EXISTS `room`; +CREATE TABLE `room` ( + `RoomNo` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '房间编号', + `RoomType` int NOT NULL DEFAULT 1 COMMENT '房间类型', + `CustoNo` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT '' COMMENT '客户编号', + `CheckTime` datetime(0) NULL DEFAULT NULL COMMENT '入住时间', + `CheckOutTime` datetime(0) NULL DEFAULT NULL COMMENT '退房时间', + `RoomStateId` int NOT NULL DEFAULT 0 COMMENT '房间状态', + `RoomMoney` decimal(10, 2) NULL DEFAULT NULL COMMENT '房间单价', + `RoomPosition` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '房间位置', + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`RoomNo`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for roomstate +-- ---------------------------- +DROP TABLE IF EXISTS `roomstate`; +CREATE TABLE `roomstate` ( + `RoomStateId` int NOT NULL DEFAULT 0, + `RoomState` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for roomtype +-- ---------------------------- +DROP TABLE IF EXISTS `roomtype`; +CREATE TABLE `roomtype` ( + `RoomType` int NOT NULL, + `RoomName` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for sellthing +-- ---------------------------- +DROP TABLE IF EXISTS `sellthing`; +CREATE TABLE `sellthing` ( + `SellNo` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `SellName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `SellPrice` decimal(10, 2) NOT NULL, + `format` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `Stock` int NOT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for sextype +-- ---------------------------- +DROP TABLE IF EXISTS `sextype`; +CREATE TABLE `sextype` ( + `sexId` int NOT NULL COMMENT '性别ID', + `sexName` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '性别名称', + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`sexId`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for spend +-- ---------------------------- +DROP TABLE IF EXISTS `spend`; +CREATE TABLE `spend` ( + `CustoNo` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `SpendDate` datetime(0) NOT NULL, + `SpendMoney` decimal(6, 2) NOT NULL, + `SpendType` int NOT NULL, + `SpendMess` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `Lender` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `Reamrks` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for spendtype +-- ---------------------------- +DROP TABLE IF EXISTS `spendtype`; +CREATE TABLE `spendtype` ( + `SpendType` int NOT NULL, + `TypeName` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for uploadinfo +-- ---------------------------- +DROP TABLE IF EXISTS `uploadinfo`; +CREATE TABLE `uploadinfo` ( + `NoticeNo` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '公告编号', + `Noticetheme` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '公告主题', + `NoticeType` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '公告类型', + `NoticeTime` datetime(0) NOT NULL COMMENT '发布日期', + `NoticeContent` varchar(8000) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '公告正文', + `NoticeClub` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '发文部门', + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for userinfo +-- ---------------------------- +DROP TABLE IF EXISTS `userinfo`; +CREATE TABLE `userinfo` ( + `CustoNo` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `CustoName` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `CustoSex` int NOT NULL, + `CustoTel` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `PassportType` int NOT NULL, + `CustoID` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `CustoAdress` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `CustoBirth` date NOT NULL, + `CustoType` int NOT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for usertype +-- ---------------------------- +DROP TABLE IF EXISTS `usertype`; +CREATE TABLE `usertype` ( + `UserType` int NOT NULL, + `TypeName` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for warning +-- ---------------------------- +DROP TABLE IF EXISTS `warning`; +CREATE TABLE `warning` ( + `id` int NOT NULL, + `warning` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL, + `website` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL, + `token` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL, + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_unicode_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for worker +-- ---------------------------- +DROP TABLE IF EXISTS `worker`; +CREATE TABLE `worker` ( + `WorkerId` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '工号', + `WorkerName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '名字', + `WorkerBirthday` datetime(0) NOT NULL COMMENT '出生日期', + `WorkerSex` int NOT NULL COMMENT '性别', + `WorkerTel` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '电话', + `WorkerClub` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '部门', + `WorkerNation` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '民族', + `WorkerAddress` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '居住地址', + `WorkerPosition` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '职位', + `CardID` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '证件号码', + `WorkerPwd` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '123456' COMMENT '系统密码', + `WorkerTime` datetime(0) NOT NULL COMMENT '入职时间', + `WorkerFace` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '面貌', + `WorkerEducation` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '学历', + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for workercheck +-- ---------------------------- +DROP TABLE IF EXISTS `workercheck`; +CREATE TABLE `workercheck` ( + `WorkerNo` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `CheckTime` datetime(0) NULL DEFAULT NULL, + `CheckWay` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `CheckState` int NULL DEFAULT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for workergoodbad +-- ---------------------------- +DROP TABLE IF EXISTS `workergoodbad`; +CREATE TABLE `workergoodbad` ( + `WorkNo` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `GBInfo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `GBType` int NULL DEFAULT NULL, + `GBOperation` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, + `GBTime` datetime(0) NULL DEFAULT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for workerhistory +-- ---------------------------- +DROP TABLE IF EXISTS `workerhistory`; +CREATE TABLE `workerhistory` ( + `WorkerId` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `StartDate` datetime(0) NOT NULL, + `EndDate` datetime(0) NOT NULL, + `Position` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `Company` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间' +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +-- ---------------------------- +-- Table structure for wtinfo +-- ---------------------------- +DROP TABLE IF EXISTS `wtinfo`; +CREATE TABLE `wtinfo` ( + `WtiNo` int NOT NULL AUTO_INCREMENT COMMENT '记录编号', + `RoomNo` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '房间编号', + `UseDate` datetime(0) NOT NULL COMMENT '开始时间', + `EndDate` datetime(0) NULL DEFAULT NULL COMMENT '结束时间', + `WaterUse` decimal(6, 2) NOT NULL COMMENT '用水情况', + `PowerUse` decimal(6, 2) NOT NULL COMMENT '用电情况', + `Record` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '记录人', + `CustoNo` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '客户编号', + `delete_mk` int NOT NULL DEFAULT 0 COMMENT '删除标记', + `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料创建人', + `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', + `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '资料更新人', + `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', + PRIMARY KEY (`WtiNo`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 36 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; + +SET FOREIGN_KEY_CHECKS = 1; diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/tshoteldb.sql" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/tshoteldb.sql" deleted file mode 100644 index 06c24c2de07b593277a373ee43db4baf7ff78479..0000000000000000000000000000000000000000 --- "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/tshoteldb.sql" +++ /dev/null @@ -1,9177 +0,0 @@ -/* - Navicat Premium Data Transfer - - Source Server : TencentCloudMySQL - Source Server Type : MySQL - Source Server Version : 80022 - Source Host : 134.175.239.108:3306 - Source Schema : tshoteldb - - Target Server Type : MySQL - Target Server Version : 80022 - File Encoding : 65001 - - Date: 12/11/2020 13:20:10 -*/ - -SET NAMES utf8mb4; -SET FOREIGN_KEY_CHECKS = 0; - --- ---------------------------- --- Table structure for admininfo --- ---------------------------- -DROP TABLE IF EXISTS `admininfo`; -CREATE TABLE `admininfo` ( - `AdminPassword` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `AdminType` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `AdminName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of admininfo --- ---------------------------- -INSERT INTO `admininfo` VALUES ('admin', '总经理', '杨俊杰'); -INSERT INTO `admininfo` VALUES ('cashmin', '财务经理', '熊越明'); -INSERT INTO `admininfo` VALUES ('hotelmin', '酒店经理', '宾华安'); - --- ---------------------------- --- Table structure for backinfo --- ---------------------------- -DROP TABLE IF EXISTS `backinfo`; -CREATE TABLE `backinfo` ( - `BackNo` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `BackName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `BackSource` varchar(18) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `BackCash` decimal(6, 2) NOT NULL, - `BackType` int NOT NULL, - `BackPerson` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `ControlClub` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `BackClub` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of backinfo --- ---------------------------- -INSERT INTO `backinfo` VALUES ('B001', '一次性毛巾', '超市', 1000.00, 1, '李杰峰', '财务部', '餐饮部'); -INSERT INTO `backinfo` VALUES ('B002', '一次性牙刷', '超市', 2000.00, 2, '李杰峰', '财务部', '酒店部'); - --- ---------------------------- --- Table structure for baseversion --- ---------------------------- -DROP TABLE IF EXISTS `baseversion`; -CREATE TABLE `baseversion` ( - `base_version` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of baseversion --- ---------------------------- -INSERT INTO `baseversion` VALUES ('1.4.2.0'); - --- ---------------------------- --- Table structure for cardcodes --- ---------------------------- -DROP TABLE IF EXISTS `cardcodes`; -CREATE TABLE `cardcodes` ( - `id` bigint NULL DEFAULT NULL, - `Province` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `City` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `District` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `bm` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of cardcodes --- ---------------------------- -INSERT INTO `cardcodes` VALUES (300, '河北省', '保定地区', '高碑店市', '132404'); -INSERT INTO `cardcodes` VALUES (301, '河北省', '保定地区', '易县', '132421'); -INSERT INTO `cardcodes` VALUES (302, '河北省', '保定地区', '满城县', '132422'); -INSERT INTO `cardcodes` VALUES (303, '河北省', '保定地区', '徐水县', '132423'); -INSERT INTO `cardcodes` VALUES (304, '河北省', '保定地区', '涞源县', '132424'); -INSERT INTO `cardcodes` VALUES (305, '河北省', '保定地区', '定兴县', '132425'); -INSERT INTO `cardcodes` VALUES (306, '河北省', '保定地区', '完县', '132426'); -INSERT INTO `cardcodes` VALUES (307, '河北省', '保定地区', '唐县', '132427'); -INSERT INTO `cardcodes` VALUES (308, '河北省', '保定地区', '望都县', '132428'); -INSERT INTO `cardcodes` VALUES (309, '河北省', '保定地区', '涞水县', '132429'); -INSERT INTO `cardcodes` VALUES (310, '河北省', '保定地区', '涿县', '132430'); -INSERT INTO `cardcodes` VALUES (311, '河北省', '保定地区', '清苑县', '132431'); -INSERT INTO `cardcodes` VALUES (312, '河北省', '保定地区', '高阳县', '132432'); -INSERT INTO `cardcodes` VALUES (313, '河北省', '保定地区', '安新县', '132433'); -INSERT INTO `cardcodes` VALUES (314, '河北省', '保定地区', '雄县', '132434'); -INSERT INTO `cardcodes` VALUES (315, '河北省', '保定地区', '容城县', '132435'); -INSERT INTO `cardcodes` VALUES (316, '河北省', '保定地区', '新城县', '132436'); -INSERT INTO `cardcodes` VALUES (317, '河北省', '保定地区', '曲阳县', '132437'); -INSERT INTO `cardcodes` VALUES (318, '河北省', '保定地区', '阜平县', '132438'); -INSERT INTO `cardcodes` VALUES (319, '河北省', '保定地区', '定县', '132439'); -INSERT INTO `cardcodes` VALUES (320, '河北省', '保定地区', '安国县', '132440'); -INSERT INTO `cardcodes` VALUES (321, '河北省', '保定地区', '博野县', '132441'); -INSERT INTO `cardcodes` VALUES (322, '河北省', '保定地区', '蠡县', '132442'); -INSERT INTO `cardcodes` VALUES (323, '河北省', '张家口地区', '张家口市', '132501'); -INSERT INTO `cardcodes` VALUES (324, '河北省', '张家口地区', '张北市', '132521'); -INSERT INTO `cardcodes` VALUES (325, '河北省', '张家口地区', '康保县', '132522'); -INSERT INTO `cardcodes` VALUES (326, '河北省', '张家口地区', '沽源县', '132523'); -INSERT INTO `cardcodes` VALUES (327, '河北省', '张家口地区', '尚义县', '132524'); -INSERT INTO `cardcodes` VALUES (328, '河北省', '张家口地区', '蔚县', '132525'); -INSERT INTO `cardcodes` VALUES (329, '河北省', '张家口地区', '阳原县', '132526'); -INSERT INTO `cardcodes` VALUES (330, '河北省', '张家口地区', '怀安县', '132527'); -INSERT INTO `cardcodes` VALUES (331, '河北省', '张家口地区', '万全县', '132528'); -INSERT INTO `cardcodes` VALUES (332, '河北省', '张家口地区', '怀来县', '132529'); -INSERT INTO `cardcodes` VALUES (333, '河北省', '张家口地区', '涿鹿县', '132530'); -INSERT INTO `cardcodes` VALUES (334, '河北省', '张家口地区', '宣化县', '132531'); -INSERT INTO `cardcodes` VALUES (335, '河北省', '张家口地区', '赤城县', '132532'); -INSERT INTO `cardcodes` VALUES (336, '河北省', '张家口地区', '崇礼县', '132533'); -INSERT INTO `cardcodes` VALUES (337, '河北省', '承德地区', '承德市', '132601'); -INSERT INTO `cardcodes` VALUES (338, '河北省', '承德地区', '青龙县', '132621'); -INSERT INTO `cardcodes` VALUES (339, '河北省', '承德地区', '宽城满族自治县', '132622'); -INSERT INTO `cardcodes` VALUES (340, '河北省', '承德地区', '兴隆县', '132623'); -INSERT INTO `cardcodes` VALUES (341, '河北省', '承德地区', '平泉县', '132624'); -INSERT INTO `cardcodes` VALUES (342, '河北省', '承德地区', '承德县', '132625'); -INSERT INTO `cardcodes` VALUES (343, '河北省', '承德地区', '滦平县', '132626'); -INSERT INTO `cardcodes` VALUES (344, '河北省', '承德地区', '丰宁满族自治县', '132627'); -INSERT INTO `cardcodes` VALUES (345, '河北省', '承德地区', '隆化县', '132628'); -INSERT INTO `cardcodes` VALUES (346, '河北省', '承德地区', '围场满族蒙古族自治县', '132629'); -INSERT INTO `cardcodes` VALUES (347, '河北省', '廊坊地区', '廊坊市', '132801'); -INSERT INTO `cardcodes` VALUES (348, '河北省', '廊坊地区', '三河县', '132821'); -INSERT INTO `cardcodes` VALUES (349, '河北省', '廊坊地区', '大厂回族自治县', '132822'); -INSERT INTO `cardcodes` VALUES (350, '河北省', '廊坊地区', '香河县', '132823'); -INSERT INTO `cardcodes` VALUES (351, '河北省', '廊坊地区', '永清县', '132825'); -INSERT INTO `cardcodes` VALUES (352, '河北省', '廊坊地区', '固安县', '132826'); -INSERT INTO `cardcodes` VALUES (353, '河北省', '廊坊地区', '霸县', '132827'); -INSERT INTO `cardcodes` VALUES (354, '河北省', '廊坊地区', '文安县', '132828'); -INSERT INTO `cardcodes` VALUES (355, '河北省', '廊坊地区', '大城县', '132829'); -INSERT INTO `cardcodes` VALUES (356, '河北省', '沧州地区', '沧州市', '132901'); -INSERT INTO `cardcodes` VALUES (357, '河北省', '沧州地区', '泊头市', '132902'); -INSERT INTO `cardcodes` VALUES (358, '河北省', '沧州地区', '任丘市', '132903'); -INSERT INTO `cardcodes` VALUES (359, '河北省', '沧州地区', '黄骅市', '132904'); -INSERT INTO `cardcodes` VALUES (360, '河北省', '沧州地区', '河间市', '132905'); -INSERT INTO `cardcodes` VALUES (361, '河北省', '沧州地区', '沧县', '132921'); -INSERT INTO `cardcodes` VALUES (362, '河北省', '沧州地区', '河间县', '132922'); -INSERT INTO `cardcodes` VALUES (363, '河北省', '沧州地区', '肃宁县', '132923'); -INSERT INTO `cardcodes` VALUES (364, '河北省', '沧州地区', '献县', '132924'); -INSERT INTO `cardcodes` VALUES (365, '河北省', '沧州地区', '交河县', '132925'); -INSERT INTO `cardcodes` VALUES (366, '河北省', '沧州地区', '吴桥县', '132926'); -INSERT INTO `cardcodes` VALUES (367, '河北省', '沧州地区', '东光县', '132927'); -INSERT INTO `cardcodes` VALUES (368, '河北省', '沧州地区', '南皮县', '132928'); -INSERT INTO `cardcodes` VALUES (369, '河北省', '沧州地区', '盐山县', '132929'); -INSERT INTO `cardcodes` VALUES (370, '河北省', '沧州地区', '黄骅县', '132930'); -INSERT INTO `cardcodes` VALUES (371, '河北省', '沧州地区', '孟村回族自治县', '132931'); -INSERT INTO `cardcodes` VALUES (372, '河北省', '沧州地区', '青县', '132932'); -INSERT INTO `cardcodes` VALUES (373, '河北省', '沧州地区', '任丘县', '132933'); -INSERT INTO `cardcodes` VALUES (374, '河北省', '沧州地区', '海兴县', '132934'); -INSERT INTO `cardcodes` VALUES (375, '河北省', '衡水地区', '衡水市', '133001'); -INSERT INTO `cardcodes` VALUES (376, '河北省', '衡水地区', '冀州市', '133002'); -INSERT INTO `cardcodes` VALUES (377, '河北省', '衡水地区', '衡水县', '133021'); -INSERT INTO `cardcodes` VALUES (378, '河北省', '衡水地区', '冀县', '133022'); -INSERT INTO `cardcodes` VALUES (379, '河北省', '衡水地区', '枣强县', '133023'); -INSERT INTO `cardcodes` VALUES (380, '河北省', '衡水地区', '武邑县', '133024'); -INSERT INTO `cardcodes` VALUES (381, '河北省', '衡水地区', '深县', '133025'); -INSERT INTO `cardcodes` VALUES (382, '河北省', '衡水地区', '武强县', '133026'); -INSERT INTO `cardcodes` VALUES (383, '河北省', '衡水地区', '饶阳县', '133027'); -INSERT INTO `cardcodes` VALUES (384, '河北省', '衡水地区', '安平县', '133028'); -INSERT INTO `cardcodes` VALUES (385, '河北省', '衡水地区', '故城县', '133029'); -INSERT INTO `cardcodes` VALUES (386, '河北省', '衡水地区', '景县', '133030'); -INSERT INTO `cardcodes` VALUES (387, '河北省', '衡水地区', '阜城县', '133031'); -INSERT INTO `cardcodes` VALUES (388, '河北省', NULL, '武安市', '139001'); -INSERT INTO `cardcodes` VALUES (389, '山西省', '太原市', '市辖区', '140101'); -INSERT INTO `cardcodes` VALUES (390, '山西省', '太原市', '南城区', '140102'); -INSERT INTO `cardcodes` VALUES (391, '山西省', '太原市', '北城区', '140103'); -INSERT INTO `cardcodes` VALUES (392, '山西省', '太原市', '河西区', '140104'); -INSERT INTO `cardcodes` VALUES (393, '山西省', '太原市', '小店区', '140105'); -INSERT INTO `cardcodes` VALUES (394, '山西省', '太原市', '迎泽区', '140106'); -INSERT INTO `cardcodes` VALUES (395, '山西省', '太原市', '杏花岭区', '140107'); -INSERT INTO `cardcodes` VALUES (396, '山西省', '太原市', '尖草坪区', '140108'); -INSERT INTO `cardcodes` VALUES (397, '山西省', '太原市', '万柏林区', '140109'); -INSERT INTO `cardcodes` VALUES (398, '山西省', '太原市', '晋源区', '140110'); -INSERT INTO `cardcodes` VALUES (399, '山西省', '太原市', '古交工矿区', '140111'); -INSERT INTO `cardcodes` VALUES (400, '山西省', '太原市', '南郊区', '140112'); -INSERT INTO `cardcodes` VALUES (401, '山西省', '太原市', '北郊区', '140113'); -INSERT INTO `cardcodes` VALUES (402, '山西省', '太原市', '清徐县', '140121'); -INSERT INTO `cardcodes` VALUES (403, '山西省', '太原市', '阳曲县', '140122'); -INSERT INTO `cardcodes` VALUES (404, '山西省', '太原市', '娄烦县', '140123'); -INSERT INTO `cardcodes` VALUES (405, '山西省', '太原市', '古交市', '140181'); -INSERT INTO `cardcodes` VALUES (406, '山西省', '大同市', '市辖区', '140201'); -INSERT INTO `cardcodes` VALUES (407, '山西省', '大同市', '城区', '140202'); -INSERT INTO `cardcodes` VALUES (408, '山西省', '大同市', '矿区', '140203'); -INSERT INTO `cardcodes` VALUES (409, '山西省', '大同市', '南郊区', '140211'); -INSERT INTO `cardcodes` VALUES (410, '山西省', '大同市', '新荣区', '140212'); -INSERT INTO `cardcodes` VALUES (411, '山西省', '大同市', '阳高县', '140221'); -INSERT INTO `cardcodes` VALUES (412, '山西省', '大同市', '天镇县', '140222'); -INSERT INTO `cardcodes` VALUES (413, '山西省', '大同市', '广灵县', '140223'); -INSERT INTO `cardcodes` VALUES (414, '山西省', '大同市', '灵丘县', '140224'); -INSERT INTO `cardcodes` VALUES (415, '山西省', '大同市', '浑源县', '140225'); -INSERT INTO `cardcodes` VALUES (416, '山西省', '大同市', '左云县', '140226'); -INSERT INTO `cardcodes` VALUES (417, '山西省', '大同市', '大同县', '140227'); -INSERT INTO `cardcodes` VALUES (418, '山西省', '大同市', '左云县', '140230'); -INSERT INTO `cardcodes` VALUES (419, '山西省', '大同市', '大同县', '140232'); -INSERT INTO `cardcodes` VALUES (420, '山西省', '阳泉市', '市辖区', '140301'); -INSERT INTO `cardcodes` VALUES (421, '山西省', '阳泉市', '城区', '140302'); -INSERT INTO `cardcodes` VALUES (422, '山西省', '阳泉市', '矿区', '140303'); -INSERT INTO `cardcodes` VALUES (423, '山西省', '阳泉市', '郊区', '140311'); -INSERT INTO `cardcodes` VALUES (424, '山西省', '阳泉市', '平定县', '140321'); -INSERT INTO `cardcodes` VALUES (425, '山西省', '阳泉市', '盂县', '140322'); -INSERT INTO `cardcodes` VALUES (426, '山西省', '长治市', '市辖区', '140401'); -INSERT INTO `cardcodes` VALUES (427, '山西省', '长治市', '城区', '140402'); -INSERT INTO `cardcodes` VALUES (428, '山西省', '长治市', '郊区', '140411'); -INSERT INTO `cardcodes` VALUES (429, '山西省', '长治市', '长治县', '140421'); -INSERT INTO `cardcodes` VALUES (430, '山西省', '长治市', '襄垣县', '140423'); -INSERT INTO `cardcodes` VALUES (431, '山西省', '长治市', '屯留县', '140424'); -INSERT INTO `cardcodes` VALUES (432, '山西省', '长治市', '平顺县', '140425'); -INSERT INTO `cardcodes` VALUES (433, '山西省', '长治市', '黎城县', '140426'); -INSERT INTO `cardcodes` VALUES (434, '山西省', '长治市', '壶关县', '140427'); -INSERT INTO `cardcodes` VALUES (435, '山西省', '长治市', '长子县', '140428'); -INSERT INTO `cardcodes` VALUES (436, '山西省', '长治市', '武乡县', '140429'); -INSERT INTO `cardcodes` VALUES (437, '山西省', '长治市', '沁县', '140430'); -INSERT INTO `cardcodes` VALUES (438, '山西省', '长治市', '沁源县', '140431'); -INSERT INTO `cardcodes` VALUES (439, '山西省', '长治市', '潞城市', '140481'); -INSERT INTO `cardcodes` VALUES (440, '山西省', '晋城市', '市辖区', '140501'); -INSERT INTO `cardcodes` VALUES (441, '山西省', '晋城市', '城区', '140502'); -INSERT INTO `cardcodes` VALUES (442, '山西省', '晋城市', '郊区', '140511'); -INSERT INTO `cardcodes` VALUES (443, '山西省', '晋城市', '沁水县', '140521'); -INSERT INTO `cardcodes` VALUES (444, '山西省', '晋城市', '阳城县', '140522'); -INSERT INTO `cardcodes` VALUES (445, '山西省', '晋城市', '高平县', '140523'); -INSERT INTO `cardcodes` VALUES (446, '山西省', '晋城市', '陵川县', '140524'); -INSERT INTO `cardcodes` VALUES (447, '山西省', '晋城市', '泽州县', '140525'); -INSERT INTO `cardcodes` VALUES (448, '山西省', '晋城市', '高平市', '140581'); -INSERT INTO `cardcodes` VALUES (449, '山西省', '朔州市', '市辖区', '140601'); -INSERT INTO `cardcodes` VALUES (450, '山西省', '朔州市', '朔城区', '140602'); -INSERT INTO `cardcodes` VALUES (451, '山西省', '朔州市', '平鲁区', '140603'); -INSERT INTO `cardcodes` VALUES (452, '山西省', '朔州市', '山阴县', '140621'); -INSERT INTO `cardcodes` VALUES (453, '山西省', '朔州市', '应县', '140622'); -INSERT INTO `cardcodes` VALUES (454, '山西省', '朔州市', '右玉县', '140623'); -INSERT INTO `cardcodes` VALUES (455, '山西省', '朔州市', '怀仁县', '140624'); -INSERT INTO `cardcodes` VALUES (456, '山西省', '晋中市', '市辖区', '140701'); -INSERT INTO `cardcodes` VALUES (457, '山西省', '晋中市', '榆次区', '140702'); -INSERT INTO `cardcodes` VALUES (458, '山西省', '晋中市', '榆社县', '140721'); -INSERT INTO `cardcodes` VALUES (459, '山西省', '晋中市', '左权县', '140722'); -INSERT INTO `cardcodes` VALUES (460, '山西省', '晋中市', '和顺县', '140723'); -INSERT INTO `cardcodes` VALUES (461, '山西省', '晋中市', '昔阳县', '140724'); -INSERT INTO `cardcodes` VALUES (462, '山西省', '晋中市', '寿阳县', '140725'); -INSERT INTO `cardcodes` VALUES (463, '山西省', '晋中市', '太谷县', '140726'); -INSERT INTO `cardcodes` VALUES (464, '山西省', '晋中市', '祁县', '140727'); -INSERT INTO `cardcodes` VALUES (465, '山西省', '晋中市', '平遥县', '140728'); -INSERT INTO `cardcodes` VALUES (466, '山西省', '晋中市', '灵石县', '140729'); -INSERT INTO `cardcodes` VALUES (467, '山西省', '晋中市', '介休市', '140781'); -INSERT INTO `cardcodes` VALUES (468, '山西省', '运城市', '市辖区', '140801'); -INSERT INTO `cardcodes` VALUES (469, '山西省', '运城市', '盐湖区', '140802'); -INSERT INTO `cardcodes` VALUES (470, '山西省', '运城市', '临猗县', '140821'); -INSERT INTO `cardcodes` VALUES (471, '山西省', '运城市', '万荣县', '140822'); -INSERT INTO `cardcodes` VALUES (472, '山西省', '运城市', '闻喜县', '140823'); -INSERT INTO `cardcodes` VALUES (473, '山西省', '运城市', '稷山县', '140824'); -INSERT INTO `cardcodes` VALUES (474, '山西省', '运城市', '新绛县', '140825'); -INSERT INTO `cardcodes` VALUES (475, '山西省', '运城市', '绛县', '140826'); -INSERT INTO `cardcodes` VALUES (476, '山西省', '运城市', '垣曲县', '140827'); -INSERT INTO `cardcodes` VALUES (477, '山西省', '运城市', '夏县', '140828'); -INSERT INTO `cardcodes` VALUES (478, '山西省', '运城市', '平陆县', '140829'); -INSERT INTO `cardcodes` VALUES (479, '山西省', '运城市', '芮城县', '140830'); -INSERT INTO `cardcodes` VALUES (480, '山西省', '运城市', '永济市', '140881'); -INSERT INTO `cardcodes` VALUES (481, '山西省', '运城市', '河津市', '140882'); -INSERT INTO `cardcodes` VALUES (482, '山西省', '忻州市', '市辖区', '140901'); -INSERT INTO `cardcodes` VALUES (483, '山西省', '忻州市', '忻府区', '140902'); -INSERT INTO `cardcodes` VALUES (484, '山西省', '忻州市', '定襄县', '140921'); -INSERT INTO `cardcodes` VALUES (485, '山西省', '忻州市', '五台县', '140922'); -INSERT INTO `cardcodes` VALUES (486, '山西省', '忻州市', '代县', '140923'); -INSERT INTO `cardcodes` VALUES (487, '山西省', '忻州市', '繁峙县', '140924'); -INSERT INTO `cardcodes` VALUES (488, '山西省', '忻州市', '宁武县', '140925'); -INSERT INTO `cardcodes` VALUES (489, '山西省', '忻州市', '静乐县', '140926'); -INSERT INTO `cardcodes` VALUES (490, '山西省', '忻州市', '神池县', '140927'); -INSERT INTO `cardcodes` VALUES (491, '山西省', '忻州市', '五寨县', '140928'); -INSERT INTO `cardcodes` VALUES (492, '山西省', '忻州市', '岢岚县', '140929'); -INSERT INTO `cardcodes` VALUES (493, '山西省', '忻州市', '河曲县', '140930'); -INSERT INTO `cardcodes` VALUES (494, '山西省', '忻州市', '保德县', '140931'); -INSERT INTO `cardcodes` VALUES (495, '山西省', '忻州市', '偏关县', '140932'); -INSERT INTO `cardcodes` VALUES (496, '山西省', '忻州市', '原平市', '140981'); -INSERT INTO `cardcodes` VALUES (497, '山西省', '临汾市', '市辖区', '141001'); -INSERT INTO `cardcodes` VALUES (498, '山西省', '临汾市', '尧都区', '141002'); -INSERT INTO `cardcodes` VALUES (499, '山西省', '临汾市', '曲沃县', '141021'); -INSERT INTO `cardcodes` VALUES (500, '山西省', '临汾市', '翼城县', '141022'); -INSERT INTO `cardcodes` VALUES (501, '山西省', '临汾市', '襄汾县', '141023'); -INSERT INTO `cardcodes` VALUES (502, '山西省', '临汾市', '洪洞县', '141024'); -INSERT INTO `cardcodes` VALUES (503, '山西省', '临汾市', '古县', '141025'); -INSERT INTO `cardcodes` VALUES (504, '山西省', '临汾市', '安泽县', '141026'); -INSERT INTO `cardcodes` VALUES (505, '山西省', '临汾市', '浮山县', '141027'); -INSERT INTO `cardcodes` VALUES (506, '山西省', '临汾市', '吉县', '141028'); -INSERT INTO `cardcodes` VALUES (507, '山西省', '临汾市', '乡宁县', '141029'); -INSERT INTO `cardcodes` VALUES (508, '山西省', '临汾市', '大宁县', '141030'); -INSERT INTO `cardcodes` VALUES (509, '山西省', '临汾市', '隰县', '141031'); -INSERT INTO `cardcodes` VALUES (510, '山西省', '临汾市', '永和县', '141032'); -INSERT INTO `cardcodes` VALUES (511, '山西省', '临汾市', '蒲县', '141033'); -INSERT INTO `cardcodes` VALUES (512, '山西省', '临汾市', '汾西县', '141034'); -INSERT INTO `cardcodes` VALUES (513, '山西省', '临汾市', '侯马市', '141081'); -INSERT INTO `cardcodes` VALUES (514, '山西省', '临汾市', '霍州市', '141082'); -INSERT INTO `cardcodes` VALUES (515, '山西省', '吕梁市', '市辖区', '141101'); -INSERT INTO `cardcodes` VALUES (516, '山西省', '吕梁市', '离石区', '141102'); -INSERT INTO `cardcodes` VALUES (517, '山西省', '吕梁市', '文水县', '141121'); -INSERT INTO `cardcodes` VALUES (518, '山西省', '吕梁市', '交城县', '141122'); -INSERT INTO `cardcodes` VALUES (519, '山西省', '吕梁市', '兴县', '141123'); -INSERT INTO `cardcodes` VALUES (520, '山西省', '吕梁市', '临县', '141124'); -INSERT INTO `cardcodes` VALUES (521, '山西省', '吕梁市', '柳林县', '141125'); -INSERT INTO `cardcodes` VALUES (522, '山西省', '吕梁市', '石楼县', '141126'); -INSERT INTO `cardcodes` VALUES (523, '山西省', '吕梁市', '岚县', '141127'); -INSERT INTO `cardcodes` VALUES (524, '山西省', '吕梁市', '方山县', '141128'); -INSERT INTO `cardcodes` VALUES (525, '山西省', '吕梁市', '中阳县', '141129'); -INSERT INTO `cardcodes` VALUES (526, '山西省', '吕梁市', '交口县', '141130'); -INSERT INTO `cardcodes` VALUES (527, '山西省', '吕梁市', '孝义市', '141181'); -INSERT INTO `cardcodes` VALUES (528, '山西省', '吕梁市', '汾阳市', '141182'); -INSERT INTO `cardcodes` VALUES (529, '山西省', '雁北地区', '阳高县', '142121'); -INSERT INTO `cardcodes` VALUES (530, '山西省', '雁北地区', '天镇县', '142122'); -INSERT INTO `cardcodes` VALUES (531, '山西省', '雁北地区', '广灵县', '142123'); -INSERT INTO `cardcodes` VALUES (532, '山西省', '雁北地区', '灵丘县', '142124'); -INSERT INTO `cardcodes` VALUES (533, '山西省', '雁北地区', '浑源县', '142125'); -INSERT INTO `cardcodes` VALUES (534, '山西省', '雁北地区', '应县', '142126'); -INSERT INTO `cardcodes` VALUES (535, '山西省', '雁北地区', '山阴县', '142127'); -INSERT INTO `cardcodes` VALUES (536, '山西省', '雁北地区', '朔县', '142128'); -INSERT INTO `cardcodes` VALUES (537, '山西省', '雁北地区', '平鲁县', '142129'); -INSERT INTO `cardcodes` VALUES (538, '山西省', '雁北地区', '左云县', '142130'); -INSERT INTO `cardcodes` VALUES (539, '山西省', '雁北地区', '右玉县', '142131'); -INSERT INTO `cardcodes` VALUES (540, '山西省', '雁北地区', '大同县', '142132'); -INSERT INTO `cardcodes` VALUES (541, '山西省', '雁北地区', '怀仁县', '142133'); -INSERT INTO `cardcodes` VALUES (542, '山西省', '忻州地区', '忻州市', '142201'); -INSERT INTO `cardcodes` VALUES (543, '山西省', '忻州地区', '原平市', '142202'); -INSERT INTO `cardcodes` VALUES (544, '山西省', '忻州地区', '定襄县', '142222'); -INSERT INTO `cardcodes` VALUES (545, '山西省', '忻州地区', '五台县', '142223'); -INSERT INTO `cardcodes` VALUES (546, '山西省', '忻州地区', '代县', '142225'); -INSERT INTO `cardcodes` VALUES (547, '山西省', '忻州地区', '繁峙县', '142226'); -INSERT INTO `cardcodes` VALUES (548, '山西省', '忻州地区', '宁武县', '142227'); -INSERT INTO `cardcodes` VALUES (549, '山西省', '忻州地区', '静乐县', '142228'); -INSERT INTO `cardcodes` VALUES (550, '山西省', '忻州地区', '神池县', '142229'); -INSERT INTO `cardcodes` VALUES (551, '山西省', '忻州地区', '五寨县', '142230'); -INSERT INTO `cardcodes` VALUES (552, '山西省', '忻州地区', '岢岚县', '142231'); -INSERT INTO `cardcodes` VALUES (553, '山西省', '忻州地区', '河曲县', '142232'); -INSERT INTO `cardcodes` VALUES (554, '山西省', '忻州地区', '保德县', '142233'); -INSERT INTO `cardcodes` VALUES (555, '山西省', '忻州地区', '偏关县', '142234'); -INSERT INTO `cardcodes` VALUES (556, '山西省', '吕梁地区', '孝义市', '142301'); -INSERT INTO `cardcodes` VALUES (557, '山西省', '吕梁地区', '离石市', '142302'); -INSERT INTO `cardcodes` VALUES (558, '山西省', '吕梁地区', '汾阳市', '142303'); -INSERT INTO `cardcodes` VALUES (559, '山西省', '吕梁地区', '汾阳县', '142321'); -INSERT INTO `cardcodes` VALUES (560, '山西省', '吕梁地区', '文水县', '142322'); -INSERT INTO `cardcodes` VALUES (561, '山西省', '吕梁地区', '交城县', '142323'); -INSERT INTO `cardcodes` VALUES (562, '山西省', '吕梁地区', '兴县', '142325'); -INSERT INTO `cardcodes` VALUES (563, '山西省', '吕梁地区', '临县', '142326'); -INSERT INTO `cardcodes` VALUES (564, '山西省', '吕梁地区', '柳林县', '142327'); -INSERT INTO `cardcodes` VALUES (565, '山西省', '吕梁地区', '石楼县', '142328'); -INSERT INTO `cardcodes` VALUES (566, '山西省', '吕梁地区', '岚县', '142329'); -INSERT INTO `cardcodes` VALUES (567, '山西省', '吕梁地区', '方山县', '142330'); -INSERT INTO `cardcodes` VALUES (568, '山西省', '吕梁地区', '中阳县', '142332'); -INSERT INTO `cardcodes` VALUES (569, '山西省', '吕梁地区', '交口县', '142333'); -INSERT INTO `cardcodes` VALUES (570, '山西省', '晋中地区', '榆次市', '142401'); -INSERT INTO `cardcodes` VALUES (571, '山西省', '晋中地区', '介休市', '142402'); -INSERT INTO `cardcodes` VALUES (572, '山西省', '晋中地区', '榆社县', '142421'); -INSERT INTO `cardcodes` VALUES (573, '山西省', '晋中地区', '左权县', '142422'); -INSERT INTO `cardcodes` VALUES (574, '山西省', '晋中地区', '和顺县', '142423'); -INSERT INTO `cardcodes` VALUES (575, '山西省', '晋中地区', '昔阳县', '142424'); -INSERT INTO `cardcodes` VALUES (576, '山西省', '晋中地区', '寿阳县', '142427'); -INSERT INTO `cardcodes` VALUES (577, '山西省', '晋中地区', '太谷县', '142429'); -INSERT INTO `cardcodes` VALUES (578, '山西省', '晋中地区', '祁县', '142430'); -INSERT INTO `cardcodes` VALUES (579, '山西省', '晋中地区', '平遥县', '142431'); -INSERT INTO `cardcodes` VALUES (580, '山西省', '晋中地区', '灵石县', '142433'); -INSERT INTO `cardcodes` VALUES (581, '山西省', '临汾地区', '临汾市', '142601'); -INSERT INTO `cardcodes` VALUES (582, '山西省', '临汾地区', '侯马市', '142602'); -INSERT INTO `cardcodes` VALUES (583, '山西省', '临汾地区', '霍州市', '142603'); -INSERT INTO `cardcodes` VALUES (584, '山西省', '临汾地区', '曲沃县', '142621'); -INSERT INTO `cardcodes` VALUES (585, '山西省', '临汾地区', '翼城县', '142622'); -INSERT INTO `cardcodes` VALUES (586, '山西省', '临汾地区', '襄汾县', '142623'); -INSERT INTO `cardcodes` VALUES (587, '山西省', '临汾地区', '洪洞县', '142625'); -INSERT INTO `cardcodes` VALUES (588, '山西省', '临汾地区', '古县', '142627'); -INSERT INTO `cardcodes` VALUES (589, '山西省', '临汾地区', '安泽县', '142628'); -INSERT INTO `cardcodes` VALUES (590, '山西省', '临汾地区', '浮山县', '142629'); -INSERT INTO `cardcodes` VALUES (591, '山西省', '临汾地区', '吉县', '142630'); -INSERT INTO `cardcodes` VALUES (592, '山西省', '临汾地区', '乡宁县', '142631'); -INSERT INTO `cardcodes` VALUES (593, '山西省', '临汾地区', '蒲县', '142632'); -INSERT INTO `cardcodes` VALUES (594, '山西省', '临汾地区', '大宁县', '142633'); -INSERT INTO `cardcodes` VALUES (595, '山西省', '临汾地区', '永和县', '142634'); -INSERT INTO `cardcodes` VALUES (596, '山西省', '临汾地区', '隰县', '142635'); -INSERT INTO `cardcodes` VALUES (597, '山西省', '临汾地区', '汾西县', '142636'); -INSERT INTO `cardcodes` VALUES (598, '山西省', '运城地区', '运城市', '142701'); -INSERT INTO `cardcodes` VALUES (599, '山西省', '运城地区', '永济市', '142702'); -INSERT INTO `cardcodes` VALUES (600, '山西省', '运城地区', '河津市', '142703'); -INSERT INTO `cardcodes` VALUES (601, '山西省', '运城地区', '芮城县', '142723'); -INSERT INTO `cardcodes` VALUES (602, '山西省', '运城地区', '临猗县', '142724'); -INSERT INTO `cardcodes` VALUES (603, '山西省', '运城地区', '万荣县', '142725'); -INSERT INTO `cardcodes` VALUES (604, '山西省', '运城地区', '新绛县', '142726'); -INSERT INTO `cardcodes` VALUES (605, '山西省', '运城地区', '稷山县', '142727'); -INSERT INTO `cardcodes` VALUES (606, '山西省', '运城地区', '闻喜县', '142729'); -INSERT INTO `cardcodes` VALUES (607, '山西省', '运城地区', '夏县', '142730'); -INSERT INTO `cardcodes` VALUES (608, '山西省', '运城地区', '绛县', '142731'); -INSERT INTO `cardcodes` VALUES (609, '山西省', '运城地区', '平陆县', '142732'); -INSERT INTO `cardcodes` VALUES (610, '山西省', '运城地区', '垣曲县', '142733'); -INSERT INTO `cardcodes` VALUES (611, '山西省', NULL, '古交市', '149001'); -INSERT INTO `cardcodes` VALUES (612, '内蒙古自治区', '呼和浩特市', '市辖区', '150101'); -INSERT INTO `cardcodes` VALUES (613, '内蒙古自治区', '呼和浩特市', '新城区', '150102'); -INSERT INTO `cardcodes` VALUES (614, '内蒙古自治区', '呼和浩特市', '回民区', '150103'); -INSERT INTO `cardcodes` VALUES (615, '内蒙古自治区', '呼和浩特市', '玉泉区', '150104'); -INSERT INTO `cardcodes` VALUES (616, '内蒙古自治区', '呼和浩特市', '郊区', '150105'); -INSERT INTO `cardcodes` VALUES (617, '内蒙古自治区', '呼和浩特市', '土默特左旗', '150121'); -INSERT INTO `cardcodes` VALUES (618, '内蒙古自治区', '呼和浩特市', '托克托县', '150122'); -INSERT INTO `cardcodes` VALUES (619, '内蒙古自治区', '呼和浩特市', '和林格尔县', '150123'); -INSERT INTO `cardcodes` VALUES (620, '内蒙古自治区', '呼和浩特市', '清水河县', '150124'); -INSERT INTO `cardcodes` VALUES (621, '内蒙古自治区', '呼和浩特市', '武川县', '150125'); -INSERT INTO `cardcodes` VALUES (622, '内蒙古自治区', '包头市', '市辖区', '150201'); -INSERT INTO `cardcodes` VALUES (623, '内蒙古自治区', '包头市', '东河区', '150202'); -INSERT INTO `cardcodes` VALUES (624, '内蒙古自治区', '包头市', '昆都伦区', '150203'); -INSERT INTO `cardcodes` VALUES (625, '内蒙古自治区', '包头市', '青山区', '150204'); -INSERT INTO `cardcodes` VALUES (626, '内蒙古自治区', '包头市', '石拐矿区', '150205'); -INSERT INTO `cardcodes` VALUES (627, '内蒙古自治区', '包头市', '白云矿区', '150206'); -INSERT INTO `cardcodes` VALUES (628, '内蒙古自治区', '包头市', '郊区', '150207'); -INSERT INTO `cardcodes` VALUES (629, '内蒙古自治区', '包头市', '土默特右旗', '150221'); -INSERT INTO `cardcodes` VALUES (630, '内蒙古自治区', '包头市', '固阳县', '150222'); -INSERT INTO `cardcodes` VALUES (631, '内蒙古自治区', '包头市', '达尔罕茂明安联合旗', '150223'); -INSERT INTO `cardcodes` VALUES (632, '内蒙古自治区', '乌海市', '市辖区', '150301'); -INSERT INTO `cardcodes` VALUES (633, '内蒙古自治区', '乌海市', '海勃湾区', '150302'); -INSERT INTO `cardcodes` VALUES (634, '内蒙古自治区', '乌海市', '海南区', '150303'); -INSERT INTO `cardcodes` VALUES (635, '内蒙古自治区', '乌海市', '乌达区', '150304'); -INSERT INTO `cardcodes` VALUES (636, '内蒙古自治区', '赤峰市', '市辖区', '150401'); -INSERT INTO `cardcodes` VALUES (637, '内蒙古自治区', '赤峰市', '红山区', '150402'); -INSERT INTO `cardcodes` VALUES (638, '内蒙古自治区', '赤峰市', '元宝山区', '150403'); -INSERT INTO `cardcodes` VALUES (639, '内蒙古自治区', '赤峰市', '松山区', '150404'); -INSERT INTO `cardcodes` VALUES (640, '内蒙古自治区', '赤峰市', '阿鲁科尔沁旗', '150421'); -INSERT INTO `cardcodes` VALUES (641, '内蒙古自治区', '赤峰市', '巴林左旗', '150422'); -INSERT INTO `cardcodes` VALUES (642, '内蒙古自治区', '赤峰市', '巴林右旗', '150423'); -INSERT INTO `cardcodes` VALUES (643, '内蒙古自治区', '赤峰市', '林西县', '150424'); -INSERT INTO `cardcodes` VALUES (644, '内蒙古自治区', '赤峰市', '克什克腾旗', '150425'); -INSERT INTO `cardcodes` VALUES (645, '内蒙古自治区', '赤峰市', '翁牛特旗', '150426'); -INSERT INTO `cardcodes` VALUES (646, '内蒙古自治区', '赤峰市', '喀喇沁旗', '150428'); -INSERT INTO `cardcodes` VALUES (647, '内蒙古自治区', '赤峰市', '宁城县', '150429'); -INSERT INTO `cardcodes` VALUES (648, '内蒙古自治区', '赤峰市', '敖汉旗', '150430'); -INSERT INTO `cardcodes` VALUES (649, '内蒙古自治区', '通辽市', '市辖区', '150501'); -INSERT INTO `cardcodes` VALUES (650, '内蒙古自治区', '通辽市', '科尔沁区', '150502'); -INSERT INTO `cardcodes` VALUES (651, '内蒙古自治区', '通辽市', '科尔沁左翼中旗', '150521'); -INSERT INTO `cardcodes` VALUES (652, '内蒙古自治区', '通辽市', '科尔沁左翼后旗', '150522'); -INSERT INTO `cardcodes` VALUES (653, '内蒙古自治区', '通辽市', '开鲁县', '150523'); -INSERT INTO `cardcodes` VALUES (654, '内蒙古自治区', '通辽市', '库伦旗', '150524'); -INSERT INTO `cardcodes` VALUES (655, '内蒙古自治区', '通辽市', '奈曼旗', '150525'); -INSERT INTO `cardcodes` VALUES (656, '内蒙古自治区', '通辽市', '扎鲁特旗', '150526'); -INSERT INTO `cardcodes` VALUES (657, '内蒙古自治区', '通辽市', '霍林郭勒市', '150581'); -INSERT INTO `cardcodes` VALUES (658, '内蒙古自治区', '鄂尔多斯市', '鄂尔多斯市', '150601'); -INSERT INTO `cardcodes` VALUES (659, '内蒙古自治区', '鄂尔多斯市', '东胜区', '150602'); -INSERT INTO `cardcodes` VALUES (660, '内蒙古自治区', '鄂尔多斯市', '达拉特旗', '150621'); -INSERT INTO `cardcodes` VALUES (661, '内蒙古自治区', '鄂尔多斯市', '准格尔旗', '150622'); -INSERT INTO `cardcodes` VALUES (662, '内蒙古自治区', '鄂尔多斯市', '鄂托克前旗', '150623'); -INSERT INTO `cardcodes` VALUES (663, '内蒙古自治区', '鄂尔多斯市', '鄂托克旗', '150624'); -INSERT INTO `cardcodes` VALUES (664, '内蒙古自治区', '鄂尔多斯市', '杭锦旗', '150625'); -INSERT INTO `cardcodes` VALUES (665, '内蒙古自治区', '鄂尔多斯市', '乌审旗', '150626'); -INSERT INTO `cardcodes` VALUES (666, '内蒙古自治区', '鄂尔多斯市', '伊金霍洛旗', '150627'); -INSERT INTO `cardcodes` VALUES (667, '内蒙古自治区', '呼伦贝尔市', '市辖区', '150701'); -INSERT INTO `cardcodes` VALUES (668, '内蒙古自治区', '呼伦贝尔市', '海拉尔区', '150702'); -INSERT INTO `cardcodes` VALUES (669, '内蒙古自治区', '呼伦贝尔市', '阿荣旗', '150721'); -INSERT INTO `cardcodes` VALUES (670, '内蒙古自治区', '呼伦贝尔市', '莫力达瓦达斡尔族自治旗', '150722'); -INSERT INTO `cardcodes` VALUES (671, '内蒙古自治区', '呼伦贝尔市', '鄂伦春自治旗', '150723'); -INSERT INTO `cardcodes` VALUES (672, '内蒙古自治区', '呼伦贝尔市', '鄂温克族自治旗', '150724'); -INSERT INTO `cardcodes` VALUES (673, '内蒙古自治区', '呼伦贝尔市', '陈巴尔虎旗', '150725'); -INSERT INTO `cardcodes` VALUES (674, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎左旗', '150726'); -INSERT INTO `cardcodes` VALUES (675, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎右旗', '150727'); -INSERT INTO `cardcodes` VALUES (676, '内蒙古自治区', '呼伦贝尔市', '满洲里市', '150781'); -INSERT INTO `cardcodes` VALUES (677, '内蒙古自治区', '呼伦贝尔市', '牙克石市', '150782'); -INSERT INTO `cardcodes` VALUES (678, '内蒙古自治区', '呼伦贝尔市', '扎兰屯市', '150783'); -INSERT INTO `cardcodes` VALUES (679, '内蒙古自治区', '呼伦贝尔市', '额尔古纳市', '150784'); -INSERT INTO `cardcodes` VALUES (680, '内蒙古自治区', '呼伦贝尔市', '根河市', '150785'); -INSERT INTO `cardcodes` VALUES (681, '内蒙古自治区', '巴彦淖尔市', '市辖区', '150801'); -INSERT INTO `cardcodes` VALUES (682, '内蒙古自治区', '巴彦淖尔市', '临河区', '150802'); -INSERT INTO `cardcodes` VALUES (683, '内蒙古自治区', '巴彦淖尔市', '五原县', '150821'); -INSERT INTO `cardcodes` VALUES (684, '内蒙古自治区', '巴彦淖尔市', '磴口县', '150822'); -INSERT INTO `cardcodes` VALUES (685, '内蒙古自治区', '巴彦淖尔市', '乌拉特前旗', '150823'); -INSERT INTO `cardcodes` VALUES (686, '内蒙古自治区', '巴彦淖尔市', '乌拉特中旗', '150824'); -INSERT INTO `cardcodes` VALUES (687, '内蒙古自治区', '巴彦淖尔市', '乌拉特后旗', '150825'); -INSERT INTO `cardcodes` VALUES (688, '内蒙古自治区', '巴彦淖尔市', '杭锦后旗', '150826'); -INSERT INTO `cardcodes` VALUES (689, '内蒙古自治区', '乌兰察布市', '市辖区', '150901'); -INSERT INTO `cardcodes` VALUES (690, '内蒙古自治区', '乌兰察布市', '集宁区', '150902'); -INSERT INTO `cardcodes` VALUES (691, '内蒙古自治区', '乌兰察布市', '卓资县', '150921'); -INSERT INTO `cardcodes` VALUES (692, '内蒙古自治区', '乌兰察布市', '化德县', '150922'); -INSERT INTO `cardcodes` VALUES (693, '内蒙古自治区', '乌兰察布市', '商都县', '150923'); -INSERT INTO `cardcodes` VALUES (694, '内蒙古自治区', '乌兰察布市', '兴和县', '150924'); -INSERT INTO `cardcodes` VALUES (695, '内蒙古自治区', '乌兰察布市', '凉城县', '150925'); -INSERT INTO `cardcodes` VALUES (696, '内蒙古自治区', '乌兰察布市', '察哈尔右翼前旗', '150926'); -INSERT INTO `cardcodes` VALUES (697, '内蒙古自治区', '乌兰察布市', '察哈尔右翼中旗', '150927'); -INSERT INTO `cardcodes` VALUES (698, '内蒙古自治区', '乌兰察布市', '察哈尔右翼后旗', '150928'); -INSERT INTO `cardcodes` VALUES (699, '内蒙古自治区', '乌兰察布市', '四子王旗', '150929'); -INSERT INTO `cardcodes` VALUES (700, '内蒙古自治区', '乌兰察布市', '丰镇市', '150981'); -INSERT INTO `cardcodes` VALUES (701, '内蒙古自治区', '呼伦贝尔盟', '海拉尔市', '152101'); -INSERT INTO `cardcodes` VALUES (702, '内蒙古自治区', '呼伦贝尔盟', '满洲里市', '152102'); -INSERT INTO `cardcodes` VALUES (703, '内蒙古自治区', '呼伦贝尔盟', '扎兰屯市', '152103'); -INSERT INTO `cardcodes` VALUES (704, '内蒙古自治区', '呼伦贝尔盟', '牙克石市', '152104'); -INSERT INTO `cardcodes` VALUES (705, '内蒙古自治区', '呼伦贝尔盟', '根河市', '152105'); -INSERT INTO `cardcodes` VALUES (706, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳市', '152106'); -INSERT INTO `cardcodes` VALUES (707, '内蒙古自治区', '呼伦贝尔盟', '布特哈旗', '152121'); -INSERT INTO `cardcodes` VALUES (708, '内蒙古自治区', '呼伦贝尔盟', '阿荣旗', '152122'); -INSERT INTO `cardcodes` VALUES (709, '内蒙古自治区', '呼伦贝尔盟', '莫力达瓦达斡尔族自治旗', '152123'); -INSERT INTO `cardcodes` VALUES (710, '内蒙古自治区', '呼伦贝尔盟', '喜桂图旗', '152124'); -INSERT INTO `cardcodes` VALUES (711, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳右旗', '152125'); -INSERT INTO `cardcodes` VALUES (712, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳左旗', '152126'); -INSERT INTO `cardcodes` VALUES (713, '内蒙古自治区', '呼伦贝尔盟', '鄂伦春自治旗', '152127'); -INSERT INTO `cardcodes` VALUES (714, '内蒙古自治区', '呼伦贝尔盟', '鄂温克族自治旗', '152128'); -INSERT INTO `cardcodes` VALUES (715, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎右旗', '152129'); -INSERT INTO `cardcodes` VALUES (716, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎左旗', '152130'); -INSERT INTO `cardcodes` VALUES (717, '内蒙古自治区', '呼伦贝尔盟', '陈巴尔虎旗', '152131'); -INSERT INTO `cardcodes` VALUES (718, '内蒙古自治区', '兴安盟', '乌兰浩特市', '152201'); -INSERT INTO `cardcodes` VALUES (719, '内蒙古自治区', '兴安盟', '阿尔山市', '152202'); -INSERT INTO `cardcodes` VALUES (720, '内蒙古自治区', '兴安盟', '科尔沁右翼前旗', '152221'); -INSERT INTO `cardcodes` VALUES (721, '内蒙古自治区', '兴安盟', '科尔沁右翼中旗', '152222'); -INSERT INTO `cardcodes` VALUES (722, '内蒙古自治区', '兴安盟', '扎赉特旗', '152223'); -INSERT INTO `cardcodes` VALUES (723, '内蒙古自治区', '兴安盟', '突泉县', '152224'); -INSERT INTO `cardcodes` VALUES (724, '内蒙古自治区', '哲里木盟', '通辽市', '152301'); -INSERT INTO `cardcodes` VALUES (725, '内蒙古自治区', '哲里木盟', '霍林郭勒市', '152302'); -INSERT INTO `cardcodes` VALUES (726, '内蒙古自治区', '哲里木盟', '通辽县', '152321'); -INSERT INTO `cardcodes` VALUES (727, '内蒙古自治区', '哲里木盟', '科尔沁左翼中旗', '152322'); -INSERT INTO `cardcodes` VALUES (728, '内蒙古自治区', '哲里木盟', '科尔沁左翼后旗', '152323'); -INSERT INTO `cardcodes` VALUES (729, '内蒙古自治区', '哲里木盟', '开鲁县', '152324'); -INSERT INTO `cardcodes` VALUES (730, '内蒙古自治区', '哲里木盟', '库伦旗', '152325'); -INSERT INTO `cardcodes` VALUES (731, '内蒙古自治区', '哲里木盟', '奈曼旗', '152326'); -INSERT INTO `cardcodes` VALUES (732, '内蒙古自治区', '哲里木盟', '扎鲁特旗', '152327'); -INSERT INTO `cardcodes` VALUES (733, '内蒙古自治区', '锡林郭勒盟', '二连浩特市', '152501'); -INSERT INTO `cardcodes` VALUES (734, '内蒙古自治区', '锡林郭勒盟', '锡林浩特市', '152502'); -INSERT INTO `cardcodes` VALUES (735, '内蒙古自治区', '锡林郭勒盟', '阿巴嘎旗', '152522'); -INSERT INTO `cardcodes` VALUES (736, '内蒙古自治区', '锡林郭勒盟', '苏尼特左旗', '152523'); -INSERT INTO `cardcodes` VALUES (737, '内蒙古自治区', '锡林郭勒盟', '苏尼特右旗', '152524'); -INSERT INTO `cardcodes` VALUES (738, '内蒙古自治区', '锡林郭勒盟', '东乌珠穆沁旗', '152525'); -INSERT INTO `cardcodes` VALUES (739, '内蒙古自治区', '锡林郭勒盟', '西乌珠穆沁旗', '152526'); -INSERT INTO `cardcodes` VALUES (740, '内蒙古自治区', '锡林郭勒盟', '太仆寺旗', '152527'); -INSERT INTO `cardcodes` VALUES (741, '内蒙古自治区', '锡林郭勒盟', '镶黄旗', '152528'); -INSERT INTO `cardcodes` VALUES (742, '内蒙古自治区', '锡林郭勒盟', '正镶白旗', '152529'); -INSERT INTO `cardcodes` VALUES (743, '内蒙古自治区', '锡林郭勒盟', '正蓝旗', '152530'); -INSERT INTO `cardcodes` VALUES (744, '内蒙古自治区', '锡林郭勒盟', '多伦县', '152531'); -INSERT INTO `cardcodes` VALUES (745, '内蒙古自治区', '乌兰察布盟', '集宁市', '152601'); -INSERT INTO `cardcodes` VALUES (746, '内蒙古自治区', '乌兰察布盟', '丰镇市', '152602'); -INSERT INTO `cardcodes` VALUES (747, '内蒙古自治区', '乌兰察布盟', '武川县', '152621'); -INSERT INTO `cardcodes` VALUES (748, '内蒙古自治区', '乌兰察布盟', '和林格尔县', '152622'); -INSERT INTO `cardcodes` VALUES (749, '内蒙古自治区', '乌兰察布盟', '清水河县', '152623'); -INSERT INTO `cardcodes` VALUES (750, '内蒙古自治区', '乌兰察布盟', '卓资县', '152624'); -INSERT INTO `cardcodes` VALUES (751, '内蒙古自治区', '乌兰察布盟', '化德县', '152625'); -INSERT INTO `cardcodes` VALUES (752, '内蒙古自治区', '乌兰察布盟', '商都县', '152626'); -INSERT INTO `cardcodes` VALUES (753, '内蒙古自治区', '乌兰察布盟', '兴和县', '152627'); -INSERT INTO `cardcodes` VALUES (754, '内蒙古自治区', '乌兰察布盟', '丰镇县', '152628'); -INSERT INTO `cardcodes` VALUES (755, '内蒙古自治区', '乌兰察布盟', '凉城县', '152629'); -INSERT INTO `cardcodes` VALUES (756, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼前旗', '152630'); -INSERT INTO `cardcodes` VALUES (757, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼中旗', '152631'); -INSERT INTO `cardcodes` VALUES (758, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼后旗', '152632'); -INSERT INTO `cardcodes` VALUES (759, '内蒙古自治区', '乌兰察布盟', '达尔罕茂明安联合旗', '152633'); -INSERT INTO `cardcodes` VALUES (760, '内蒙古自治区', '乌兰察布盟', '四子王旗', '152634'); -INSERT INTO `cardcodes` VALUES (761, '内蒙古自治区', '伊克昭盟', '东胜市', '152701'); -INSERT INTO `cardcodes` VALUES (762, '内蒙古自治区', '伊克昭盟', '东胜县', '152721'); -INSERT INTO `cardcodes` VALUES (763, '内蒙古自治区', '伊克昭盟', '达拉特旗', '152722'); -INSERT INTO `cardcodes` VALUES (764, '内蒙古自治区', '伊克昭盟', '准格尔旗', '152723'); -INSERT INTO `cardcodes` VALUES (765, '内蒙古自治区', '伊克昭盟', '鄂托克前旗', '152724'); -INSERT INTO `cardcodes` VALUES (766, '内蒙古自治区', '伊克昭盟', '鄂托克旗', '152725'); -INSERT INTO `cardcodes` VALUES (767, '内蒙古自治区', '伊克昭盟', '杭锦旗', '152726'); -INSERT INTO `cardcodes` VALUES (768, '内蒙古自治区', '伊克昭盟', '乌审旗', '152727'); -INSERT INTO `cardcodes` VALUES (769, '内蒙古自治区', '伊克昭盟', '伊金霍洛旗', '152728'); -INSERT INTO `cardcodes` VALUES (770, '内蒙古自治区', '巴彦淖尔盟', '临河市', '152801'); -INSERT INTO `cardcodes` VALUES (771, '内蒙古自治区', '巴彦淖尔盟', '临河县', '152821'); -INSERT INTO `cardcodes` VALUES (772, '内蒙古自治区', '巴彦淖尔盟', '五原县', '152822'); -INSERT INTO `cardcodes` VALUES (773, '内蒙古自治区', '巴彦淖尔盟', '磴口县', '152823'); -INSERT INTO `cardcodes` VALUES (774, '内蒙古自治区', '巴彦淖尔盟', '乌拉特前旗', '152824'); -INSERT INTO `cardcodes` VALUES (775, '内蒙古自治区', '巴彦淖尔盟', '乌拉特中旗', '152825'); -INSERT INTO `cardcodes` VALUES (776, '内蒙古自治区', '巴彦淖尔盟', '乌拉特后旗', '152826'); -INSERT INTO `cardcodes` VALUES (777, '内蒙古自治区', '巴彦淖尔盟', '杭锦后旗', '152827'); -INSERT INTO `cardcodes` VALUES (778, '内蒙古自治区', '阿拉善盟', '阿拉善左旗', '152921'); -INSERT INTO `cardcodes` VALUES (779, '内蒙古自治区', '阿拉善盟', '阿拉善右旗', '152922'); -INSERT INTO `cardcodes` VALUES (780, '内蒙古自治区', '阿拉善盟', '额济纳旗', '152923'); -INSERT INTO `cardcodes` VALUES (781, '辽宁省', '沈阳市', '市辖区', '210101'); -INSERT INTO `cardcodes` VALUES (782, '辽宁省', '沈阳市', '和平区', '210102'); -INSERT INTO `cardcodes` VALUES (783, '辽宁省', '沈阳市', '沈河区', '210103'); -INSERT INTO `cardcodes` VALUES (784, '辽宁省', '沈阳市', '大东区', '210104'); -INSERT INTO `cardcodes` VALUES (785, '辽宁省', '沈阳市', '皇姑区', '210105'); -INSERT INTO `cardcodes` VALUES (786, '辽宁省', '沈阳市', '铁西区', '210106'); -INSERT INTO `cardcodes` VALUES (787, '辽宁省', '沈阳市', '苏家屯区', '210111'); -INSERT INTO `cardcodes` VALUES (788, '辽宁省', '沈阳市', '东陵区', '210112'); -INSERT INTO `cardcodes` VALUES (789, '辽宁省', '沈阳市', '沈北新区', '210113'); -INSERT INTO `cardcodes` VALUES (790, '辽宁省', '沈阳市', '于洪区', '210114'); -INSERT INTO `cardcodes` VALUES (791, '辽宁省', '沈阳市', '市区', '210120'); -INSERT INTO `cardcodes` VALUES (792, '辽宁省', '沈阳市', '新民县', '210121'); -INSERT INTO `cardcodes` VALUES (793, '辽宁省', '沈阳市', '辽中县', '210122'); -INSERT INTO `cardcodes` VALUES (794, '辽宁省', '沈阳市', '康平县', '210123'); -INSERT INTO `cardcodes` VALUES (795, '辽宁省', '沈阳市', '法库县', '210124'); -INSERT INTO `cardcodes` VALUES (796, '辽宁省', '沈阳市', '新民市', '210181'); -INSERT INTO `cardcodes` VALUES (797, '辽宁省', '大连市', '市辖区', '210201'); -INSERT INTO `cardcodes` VALUES (798, '辽宁省', '大连市', '中山区', '210202'); -INSERT INTO `cardcodes` VALUES (799, '辽宁省', '大连市', '西岗区', '210203'); -INSERT INTO `cardcodes` VALUES (800, '辽宁省', '大连市', '沙河口区', '210204'); -INSERT INTO `cardcodes` VALUES (801, '辽宁省', '大连市', '甘井子区', '210211'); -INSERT INTO `cardcodes` VALUES (802, '辽宁省', '大连市', '旅顺口区', '210212'); -INSERT INTO `cardcodes` VALUES (803, '辽宁省', '大连市', '金州区', '210213'); -INSERT INTO `cardcodes` VALUES (804, '辽宁省', '大连市', '瓦房店市', '210219'); -INSERT INTO `cardcodes` VALUES (805, '辽宁省', '大连市', '市区', '210220'); -INSERT INTO `cardcodes` VALUES (806, '辽宁省', '大连市', '金县', '210221'); -INSERT INTO `cardcodes` VALUES (807, '辽宁省', '大连市', '新金县', '210222'); -INSERT INTO `cardcodes` VALUES (808, '辽宁省', '大连市', '复县', '210223'); -INSERT INTO `cardcodes` VALUES (809, '辽宁省', '大连市', '长海县', '210224'); -INSERT INTO `cardcodes` VALUES (810, '辽宁省', '大连市', '庄河县', '210225'); -INSERT INTO `cardcodes` VALUES (811, '辽宁省', '大连市', '瓦房店市', '210281'); -INSERT INTO `cardcodes` VALUES (812, '辽宁省', '大连市', '普兰店市', '210282'); -INSERT INTO `cardcodes` VALUES (813, '辽宁省', '大连市', '庄河市', '210283'); -INSERT INTO `cardcodes` VALUES (814, '辽宁省', '鞍山市', '市辖区', '210301'); -INSERT INTO `cardcodes` VALUES (815, '辽宁省', '鞍山市', '铁东区', '210302'); -INSERT INTO `cardcodes` VALUES (816, '辽宁省', '鞍山市', '铁西区', '210303'); -INSERT INTO `cardcodes` VALUES (817, '辽宁省', '鞍山市', '立山区', '210304'); -INSERT INTO `cardcodes` VALUES (818, '辽宁省', '鞍山市', '千山区', '210311'); -INSERT INTO `cardcodes` VALUES (819, '辽宁省', '鞍山市', '开发区', '210319'); -INSERT INTO `cardcodes` VALUES (820, '辽宁省', '鞍山市', '台安县', '210321'); -INSERT INTO `cardcodes` VALUES (821, '辽宁省', '鞍山市', '岫岩满族自治县', '210323'); -INSERT INTO `cardcodes` VALUES (822, '辽宁省', '鞍山市', '海城市', '210381'); -INSERT INTO `cardcodes` VALUES (823, '辽宁省', '抚顺市', '市辖区', '210401'); -INSERT INTO `cardcodes` VALUES (824, '辽宁省', '抚顺市', '新抚区', '210402'); -INSERT INTO `cardcodes` VALUES (825, '辽宁省', '抚顺市', '东洲区', '210403'); -INSERT INTO `cardcodes` VALUES (826, '辽宁省', '抚顺市', '望花区', '210404'); -INSERT INTO `cardcodes` VALUES (827, '辽宁省', '抚顺市', '顺城区', '210411'); -INSERT INTO `cardcodes` VALUES (828, '辽宁省', '抚顺市', '抚顺县', '210421'); -INSERT INTO `cardcodes` VALUES (829, '辽宁省', '抚顺市', '新宾满族自治县', '210422'); -INSERT INTO `cardcodes` VALUES (830, '辽宁省', '抚顺市', '清原满族自治县', '210423'); -INSERT INTO `cardcodes` VALUES (831, '辽宁省', '本溪市', '市辖区', '210501'); -INSERT INTO `cardcodes` VALUES (832, '辽宁省', '本溪市', '平山区', '210502'); -INSERT INTO `cardcodes` VALUES (833, '辽宁省', '本溪市', '溪湖区', '210503'); -INSERT INTO `cardcodes` VALUES (834, '辽宁省', '本溪市', '明山区', '210504'); -INSERT INTO `cardcodes` VALUES (835, '辽宁省', '本溪市', '南芬区', '210505'); -INSERT INTO `cardcodes` VALUES (836, '辽宁省', '本溪市', '南芬区', '210511'); -INSERT INTO `cardcodes` VALUES (837, '辽宁省', '本溪市', '本溪满族自治县', '210521'); -INSERT INTO `cardcodes` VALUES (838, '辽宁省', '本溪市', '桓仁满族自治县', '210522'); -INSERT INTO `cardcodes` VALUES (839, '辽宁省', '丹东市', '市辖区', '210601'); -INSERT INTO `cardcodes` VALUES (840, '辽宁省', '丹东市', '元宝区', '210602'); -INSERT INTO `cardcodes` VALUES (841, '辽宁省', '丹东市', '振兴区', '210603'); -INSERT INTO `cardcodes` VALUES (842, '辽宁省', '丹东市', '振安区', '210604'); -INSERT INTO `cardcodes` VALUES (843, '辽宁省', '丹东市', '市区', '210620'); -INSERT INTO `cardcodes` VALUES (844, '辽宁省', '丹东市', '凤城满族自治县', '210621'); -INSERT INTO `cardcodes` VALUES (845, '辽宁省', '丹东市', '岫岩满族自治县', '210622'); -INSERT INTO `cardcodes` VALUES (846, '辽宁省', '丹东市', '东沟县', '210623'); -INSERT INTO `cardcodes` VALUES (847, '辽宁省', '丹东市', '宽甸满族自治县', '210624'); -INSERT INTO `cardcodes` VALUES (848, '辽宁省', '丹东市', '东港市', '210681'); -INSERT INTO `cardcodes` VALUES (849, '辽宁省', '丹东市', '凤城市', '210682'); -INSERT INTO `cardcodes` VALUES (850, '辽宁省', '锦州市', '市辖区', '210701'); -INSERT INTO `cardcodes` VALUES (851, '辽宁省', '锦州市', '古塔区', '210702'); -INSERT INTO `cardcodes` VALUES (852, '辽宁省', '锦州市', '凌河区', '210703'); -INSERT INTO `cardcodes` VALUES (853, '辽宁省', '锦州市', '南票区', '210704'); -INSERT INTO `cardcodes` VALUES (854, '辽宁省', '锦州市', '葫芦岛区', '210705'); -INSERT INTO `cardcodes` VALUES (855, '辽宁省', '锦州市', '太和区', '210711'); -INSERT INTO `cardcodes` VALUES (856, '辽宁省', '锦州市', '锦西市', '210719'); -INSERT INTO `cardcodes` VALUES (857, '辽宁省', '锦州市', '市区', '210720'); -INSERT INTO `cardcodes` VALUES (858, '辽宁省', '锦州市', '锦西县', '210721'); -INSERT INTO `cardcodes` VALUES (859, '辽宁省', '锦州市', '兴城县', '210722'); -INSERT INTO `cardcodes` VALUES (860, '辽宁省', '锦州市', '绥中县', '210723'); -INSERT INTO `cardcodes` VALUES (861, '辽宁省', '锦州市', '锦县', '210724'); -INSERT INTO `cardcodes` VALUES (862, '辽宁省', '锦州市', '北镇满族自治县', '210725'); -INSERT INTO `cardcodes` VALUES (863, '辽宁省', '锦州市', '黑山县', '210726'); -INSERT INTO `cardcodes` VALUES (864, '辽宁省', '锦州市', '义县', '210727'); -INSERT INTO `cardcodes` VALUES (865, '辽宁省', '锦州市', '凌海市', '210781'); -INSERT INTO `cardcodes` VALUES (866, '辽宁省', '锦州市', '北镇市', '210782'); -INSERT INTO `cardcodes` VALUES (867, '辽宁省', '营口市', '市辖区', '210801'); -INSERT INTO `cardcodes` VALUES (868, '辽宁省', '营口市', '站前区', '210802'); -INSERT INTO `cardcodes` VALUES (869, '辽宁省', '营口市', '西市区', '210803'); -INSERT INTO `cardcodes` VALUES (870, '辽宁省', '营口市', '鲅鱼圈区', '210804'); -INSERT INTO `cardcodes` VALUES (871, '辽宁省', '营口市', '老边区', '210811'); -INSERT INTO `cardcodes` VALUES (872, '辽宁省', '营口市', '营口县', '210821'); -INSERT INTO `cardcodes` VALUES (873, '辽宁省', '营口市', '盖县', '210824'); -INSERT INTO `cardcodes` VALUES (874, '辽宁省', '营口市', '盖州市', '210881'); -INSERT INTO `cardcodes` VALUES (875, '辽宁省', '营口市', '大石桥市', '210882'); -INSERT INTO `cardcodes` VALUES (876, '辽宁省', '阜新市', '市辖区', '210901'); -INSERT INTO `cardcodes` VALUES (877, '辽宁省', '阜新市', '海州区', '210902'); -INSERT INTO `cardcodes` VALUES (878, '辽宁省', '阜新市', '新邱区', '210903'); -INSERT INTO `cardcodes` VALUES (879, '辽宁省', '阜新市', '太平区', '210904'); -INSERT INTO `cardcodes` VALUES (880, '辽宁省', '阜新市', '清河门区', '210905'); -INSERT INTO `cardcodes` VALUES (881, '辽宁省', '阜新市', '细河区', '210911'); -INSERT INTO `cardcodes` VALUES (882, '辽宁省', '阜新市', '阜新蒙古族自治县', '210921'); -INSERT INTO `cardcodes` VALUES (883, '辽宁省', '阜新市', '彰武县', '210922'); -INSERT INTO `cardcodes` VALUES (884, '辽宁省', '辽阳市', '市辖区', '211001'); -INSERT INTO `cardcodes` VALUES (885, '辽宁省', '辽阳市', '白塔区', '211002'); -INSERT INTO `cardcodes` VALUES (886, '辽宁省', '辽阳市', '文圣区', '211003'); -INSERT INTO `cardcodes` VALUES (887, '辽宁省', '辽阳市', '宏伟区', '211004'); -INSERT INTO `cardcodes` VALUES (888, '辽宁省', '辽阳市', '弓长岭区', '211005'); -INSERT INTO `cardcodes` VALUES (889, '辽宁省', '辽阳市', '太子河区', '211011'); -INSERT INTO `cardcodes` VALUES (890, '辽宁省', '辽阳市', '辽阳县', '211021'); -INSERT INTO `cardcodes` VALUES (891, '辽宁省', '辽阳市', '灯塔县', '211022'); -INSERT INTO `cardcodes` VALUES (892, '辽宁省', '辽阳市', '灯塔市', '211081'); -INSERT INTO `cardcodes` VALUES (893, '辽宁省', '盘锦市', '市辖区', '211101'); -INSERT INTO `cardcodes` VALUES (894, '辽宁省', '盘锦市', '双台子区', '211102'); -INSERT INTO `cardcodes` VALUES (895, '辽宁省', '盘锦市', '兴隆台区', '211103'); -INSERT INTO `cardcodes` VALUES (896, '辽宁省', '盘锦市', '郊区', '211111'); -INSERT INTO `cardcodes` VALUES (897, '辽宁省', '盘锦市', '大洼县', '211121'); -INSERT INTO `cardcodes` VALUES (898, '辽宁省', '盘锦市', '盘山县', '211122'); -INSERT INTO `cardcodes` VALUES (899, '辽宁省', '铁岭市', '市辖区', '211201'); -INSERT INTO `cardcodes` VALUES (900, '辽宁省', '铁岭市', '银州区', '211202'); -INSERT INTO `cardcodes` VALUES (901, '辽宁省', '铁岭市', '铁法区', '211203'); -INSERT INTO `cardcodes` VALUES (902, '辽宁省', '铁岭市', '清河区', '211204'); -INSERT INTO `cardcodes` VALUES (903, '辽宁省', '铁岭市', '铁岭县', '211221'); -INSERT INTO `cardcodes` VALUES (904, '辽宁省', '铁岭市', '开原县', '211222'); -INSERT INTO `cardcodes` VALUES (905, '辽宁省', '铁岭市', '西丰县', '211223'); -INSERT INTO `cardcodes` VALUES (906, '辽宁省', '铁岭市', '昌图县', '211224'); -INSERT INTO `cardcodes` VALUES (907, '辽宁省', '铁岭市', '康平县', '211225'); -INSERT INTO `cardcodes` VALUES (908, '辽宁省', '铁岭市', '法库县', '211226'); -INSERT INTO `cardcodes` VALUES (909, '辽宁省', '铁岭市', '调兵山市', '211281'); -INSERT INTO `cardcodes` VALUES (910, '辽宁省', '铁岭市', '开原市', '211282'); -INSERT INTO `cardcodes` VALUES (911, '辽宁省', '朝阳市', '市辖区', '211301'); -INSERT INTO `cardcodes` VALUES (912, '辽宁省', '朝阳市', '双塔区', '211302'); -INSERT INTO `cardcodes` VALUES (913, '辽宁省', '朝阳市', '龙城区', '211303'); -INSERT INTO `cardcodes` VALUES (914, '辽宁省', '朝阳市', '朝阳县', '211321'); -INSERT INTO `cardcodes` VALUES (915, '辽宁省', '朝阳市', '建平县', '211322'); -INSERT INTO `cardcodes` VALUES (916, '辽宁省', '朝阳市', '凌源县', '211323'); -INSERT INTO `cardcodes` VALUES (917, '辽宁省', '朝阳市', '喀喇沁左翼蒙古族自治县', '211324'); -INSERT INTO `cardcodes` VALUES (918, '辽宁省', '朝阳市', '建昌县', '211325'); -INSERT INTO `cardcodes` VALUES (919, '辽宁省', '朝阳市', '北票县', '211326'); -INSERT INTO `cardcodes` VALUES (920, '辽宁省', '朝阳市', '北票市', '211381'); -INSERT INTO `cardcodes` VALUES (921, '辽宁省', '朝阳市', '凌源市', '211382'); -INSERT INTO `cardcodes` VALUES (922, '辽宁省', '葫芦岛市', '市辖区', '211401'); -INSERT INTO `cardcodes` VALUES (923, '辽宁省', '葫芦岛市', '连山区', '211402'); -INSERT INTO `cardcodes` VALUES (924, '辽宁省', '葫芦岛市', '龙港区', '211403'); -INSERT INTO `cardcodes` VALUES (925, '辽宁省', '葫芦岛市', '南票区', '211404'); -INSERT INTO `cardcodes` VALUES (926, '辽宁省', '葫芦岛市', '绥中县', '211421'); -INSERT INTO `cardcodes` VALUES (927, '辽宁省', '葫芦岛市', '建昌县', '211422'); -INSERT INTO `cardcodes` VALUES (928, '辽宁省', '葫芦岛市', '兴城市', '211481'); -INSERT INTO `cardcodes` VALUES (929, '辽宁省', '铁岭市', '铁岭市', '212101'); -INSERT INTO `cardcodes` VALUES (930, '辽宁省', '铁岭市', '铁法市', '212102'); -INSERT INTO `cardcodes` VALUES (931, '辽宁省', '铁岭市', '铁岭县', '212121'); -INSERT INTO `cardcodes` VALUES (932, '辽宁省', '铁岭市', '开原县', '212122'); -INSERT INTO `cardcodes` VALUES (933, '辽宁省', '铁岭市', '西丰县', '212123'); -INSERT INTO `cardcodes` VALUES (934, '辽宁省', '铁岭市', '昌图县', '212124'); -INSERT INTO `cardcodes` VALUES (935, '辽宁省', '铁岭市', '康平县', '212125'); -INSERT INTO `cardcodes` VALUES (936, '辽宁省', '铁岭市', '法库县', '212126'); -INSERT INTO `cardcodes` VALUES (937, '辽宁省', '朝阳市', '建昌县', '212225'); -INSERT INTO `cardcodes` VALUES (938, '辽宁省', '朝阳市', '北票县', '212226'); -INSERT INTO `cardcodes` VALUES (939, '辽宁省', NULL, '瓦房店市', '219001'); -INSERT INTO `cardcodes` VALUES (940, '辽宁省', NULL, '海城市', '219002'); -INSERT INTO `cardcodes` VALUES (941, '辽宁省', NULL, '锦西市', '219003'); -INSERT INTO `cardcodes` VALUES (942, '辽宁省', NULL, '兴城市', '219004'); -INSERT INTO `cardcodes` VALUES (943, '辽宁省', NULL, '铁法市', '219005'); -INSERT INTO `cardcodes` VALUES (944, '辽宁省', NULL, '北票市', '219006'); -INSERT INTO `cardcodes` VALUES (945, '辽宁省', NULL, '开原市', '219007'); -INSERT INTO `cardcodes` VALUES (946, '吉林省', '长春市', '市辖区', '220101'); -INSERT INTO `cardcodes` VALUES (947, '吉林省', '长春市', '南关区', '220102'); -INSERT INTO `cardcodes` VALUES (948, '吉林省', '长春市', '宽城区', '220103'); -INSERT INTO `cardcodes` VALUES (949, '吉林省', '长春市', '朝阳区', '220104'); -INSERT INTO `cardcodes` VALUES (950, '吉林省', '长春市', '二道区', '220105'); -INSERT INTO `cardcodes` VALUES (951, '吉林省', '长春市', '绿园区', '220106'); -INSERT INTO `cardcodes` VALUES (952, '吉林省', '长春市', '郊区', '220111'); -INSERT INTO `cardcodes` VALUES (953, '吉林省', '长春市', '双阳区', '220112'); -INSERT INTO `cardcodes` VALUES (954, '吉林省', '长春市', '市区', '220120'); -INSERT INTO `cardcodes` VALUES (955, '吉林省', '长春市', '榆树县', '220121'); -INSERT INTO `cardcodes` VALUES (956, '吉林省', '长春市', '农安县', '220122'); -INSERT INTO `cardcodes` VALUES (957, '吉林省', '长春市', '九台县', '220123'); -INSERT INTO `cardcodes` VALUES (958, '吉林省', '长春市', '德惠县', '220124'); -INSERT INTO `cardcodes` VALUES (959, '吉林省', '长春市', '双阳县', '220125'); -INSERT INTO `cardcodes` VALUES (960, '吉林省', '长春市', '九台市', '220181'); -INSERT INTO `cardcodes` VALUES (961, '吉林省', '长春市', '榆树市', '220182'); -INSERT INTO `cardcodes` VALUES (962, '吉林省', '长春市', '德惠市', '220183'); -INSERT INTO `cardcodes` VALUES (963, '吉林省', '吉林市', '市辖区', '220201'); -INSERT INTO `cardcodes` VALUES (964, '吉林省', '吉林市', '昌邑区', '220202'); -INSERT INTO `cardcodes` VALUES (965, '吉林省', '吉林市', '龙潭区', '220203'); -INSERT INTO `cardcodes` VALUES (966, '吉林省', '吉林市', '船营区', '220204'); -INSERT INTO `cardcodes` VALUES (967, '吉林省', '吉林市', '丰满区', '220211'); -INSERT INTO `cardcodes` VALUES (968, '吉林省', '吉林市', '市区', '220220'); -INSERT INTO `cardcodes` VALUES (969, '吉林省', '吉林市', '永吉县', '220221'); -INSERT INTO `cardcodes` VALUES (970, '吉林省', '吉林市', '舒兰县', '220222'); -INSERT INTO `cardcodes` VALUES (971, '吉林省', '吉林市', '磐石县', '220223'); -INSERT INTO `cardcodes` VALUES (972, '吉林省', '吉林市', '蛟河县', '220224'); -INSERT INTO `cardcodes` VALUES (973, '吉林省', '吉林市', '桦甸县', '220225'); -INSERT INTO `cardcodes` VALUES (974, '吉林省', '吉林市', '蛟河市', '220281'); -INSERT INTO `cardcodes` VALUES (975, '吉林省', '吉林市', '桦甸市', '220282'); -INSERT INTO `cardcodes` VALUES (976, '吉林省', '吉林市', '舒兰市', '220283'); -INSERT INTO `cardcodes` VALUES (977, '吉林省', '吉林市', '磐石市', '220284'); -INSERT INTO `cardcodes` VALUES (978, '吉林省', '四平市', '市辖区', '220301'); -INSERT INTO `cardcodes` VALUES (979, '吉林省', '四平市', '铁西区', '220302'); -INSERT INTO `cardcodes` VALUES (980, '吉林省', '四平市', '铁东区', '220303'); -INSERT INTO `cardcodes` VALUES (981, '吉林省', '四平市', '公主岭市', '220319'); -INSERT INTO `cardcodes` VALUES (982, '吉林省', '四平市', '怀德县', '220321'); -INSERT INTO `cardcodes` VALUES (983, '吉林省', '四平市', '梨树县', '220322'); -INSERT INTO `cardcodes` VALUES (984, '吉林省', '四平市', '伊通满族自治县', '220323'); -INSERT INTO `cardcodes` VALUES (985, '吉林省', '四平市', '双辽县', '220324'); -INSERT INTO `cardcodes` VALUES (986, '吉林省', '四平市', '公主岭市', '220381'); -INSERT INTO `cardcodes` VALUES (987, '吉林省', '四平市', '双辽市', '220382'); -INSERT INTO `cardcodes` VALUES (988, '吉林省', '辽源市', '市辖区', '220401'); -INSERT INTO `cardcodes` VALUES (989, '吉林省', '辽源市', '龙山区', '220402'); -INSERT INTO `cardcodes` VALUES (990, '吉林省', '辽源市', '西安区', '220403'); -INSERT INTO `cardcodes` VALUES (991, '吉林省', '辽源市', '东丰县', '220421'); -INSERT INTO `cardcodes` VALUES (992, '吉林省', '辽源市', '东辽县', '220422'); -INSERT INTO `cardcodes` VALUES (993, '吉林省', '通化市', '市辖区', '220501'); -INSERT INTO `cardcodes` VALUES (994, '吉林省', '通化市', '东昌区', '220502'); -INSERT INTO `cardcodes` VALUES (995, '吉林省', '通化市', '二道江区', '220503'); -INSERT INTO `cardcodes` VALUES (996, '吉林省', '通化市', '梅河口市', '220519'); -INSERT INTO `cardcodes` VALUES (997, '吉林省', '通化市', '通化县', '220521'); -INSERT INTO `cardcodes` VALUES (998, '吉林省', '通化市', '集安县', '220522'); -INSERT INTO `cardcodes` VALUES (999, '吉林省', '通化市', '辉南县', '220523'); -INSERT INTO `cardcodes` VALUES (1000, '吉林省', '通化市', '柳河县', '220524'); -INSERT INTO `cardcodes` VALUES (1001, '吉林省', '通化市', '梅河口市', '220581'); -INSERT INTO `cardcodes` VALUES (1002, '吉林省', '通化市', '集安市', '220582'); -INSERT INTO `cardcodes` VALUES (1003, '吉林省', '白山市', '市辖区', '220601'); -INSERT INTO `cardcodes` VALUES (1004, '吉林省', '白山市', '八道江区', '220602'); -INSERT INTO `cardcodes` VALUES (1005, '吉林省', '白山市', '三岔子区', '220603'); -INSERT INTO `cardcodes` VALUES (1006, '吉林省', '白山市', '临江区', '220604'); -INSERT INTO `cardcodes` VALUES (1007, '吉林省', '白山市', '抚松县', '220621'); -INSERT INTO `cardcodes` VALUES (1008, '吉林省', '白山市', '靖宇县', '220622'); -INSERT INTO `cardcodes` VALUES (1009, '吉林省', '白山市', '长白朝鲜族自治县', '220623'); -INSERT INTO `cardcodes` VALUES (1010, '吉林省', '白山市', '江源县', '220625'); -INSERT INTO `cardcodes` VALUES (1011, '吉林省', '白山市', '临江市', '220681'); -INSERT INTO `cardcodes` VALUES (1012, '吉林省', '松原市', '市辖区', '220701'); -INSERT INTO `cardcodes` VALUES (1013, '吉林省', '松原市', '宁江区', '220702'); -INSERT INTO `cardcodes` VALUES (1014, '吉林省', '松原市', '前郭尔罗斯蒙古族自治县', '220721'); -INSERT INTO `cardcodes` VALUES (1015, '吉林省', '松原市', '长岭县', '220722'); -INSERT INTO `cardcodes` VALUES (1016, '吉林省', '松原市', '乾安县', '220723'); -INSERT INTO `cardcodes` VALUES (1017, '吉林省', '松原市', '扶余县', '220724'); -INSERT INTO `cardcodes` VALUES (1018, '吉林省', '白城市', '市辖区', '220801'); -INSERT INTO `cardcodes` VALUES (1019, '吉林省', '白城市', '洮北区', '220802'); -INSERT INTO `cardcodes` VALUES (1020, '吉林省', '白城市', '镇赉县', '220821'); -INSERT INTO `cardcodes` VALUES (1021, '吉林省', '白城市', '通榆县', '220822'); -INSERT INTO `cardcodes` VALUES (1022, '吉林省', '白城市', '洮南市', '220881'); -INSERT INTO `cardcodes` VALUES (1023, '吉林省', '白城市', '大安市', '220882'); -INSERT INTO `cardcodes` VALUES (1024, '吉林省', '白城地区', '白城市', '222301'); -INSERT INTO `cardcodes` VALUES (1025, '吉林省', '白城地区', '洮南市', '222302'); -INSERT INTO `cardcodes` VALUES (1026, '吉林省', '白城地区', '扶余市', '222303'); -INSERT INTO `cardcodes` VALUES (1027, '吉林省', '白城地区', '大安市', '222304'); -INSERT INTO `cardcodes` VALUES (1028, '吉林省', '白城地区', '扶余县', '222321'); -INSERT INTO `cardcodes` VALUES (1029, '吉林省', '白城地区', '洮安县', '222322'); -INSERT INTO `cardcodes` VALUES (1030, '吉林省', '白城地区', '长岭县', '222323'); -INSERT INTO `cardcodes` VALUES (1031, '吉林省', '白城地区', '前郭尔罗斯蒙古族自治县', '222324'); -INSERT INTO `cardcodes` VALUES (1032, '吉林省', '白城地区', '大安县', '222325'); -INSERT INTO `cardcodes` VALUES (1033, '吉林省', '白城地区', '镇赉县', '222326'); -INSERT INTO `cardcodes` VALUES (1034, '吉林省', '白城地区', '通榆县', '222327'); -INSERT INTO `cardcodes` VALUES (1035, '吉林省', '白城地区', '乾安县', '222328'); -INSERT INTO `cardcodes` VALUES (1036, '吉林省', '延边朝鲜族自治州', '延吉市', '222401'); -INSERT INTO `cardcodes` VALUES (1037, '吉林省', '延边朝鲜族自治州', '图们市', '222402'); -INSERT INTO `cardcodes` VALUES (1038, '吉林省', '延边朝鲜族自治州', '敦化市', '222403'); -INSERT INTO `cardcodes` VALUES (1039, '吉林省', '延边朝鲜族自治州', '珲春市', '222404'); -INSERT INTO `cardcodes` VALUES (1040, '吉林省', '延边朝鲜族自治州', '龙井市', '222405'); -INSERT INTO `cardcodes` VALUES (1041, '吉林省', '延边朝鲜族自治州', '和龙市', '222406'); -INSERT INTO `cardcodes` VALUES (1042, '吉林省', '延边朝鲜族自治州', '龙井县', '222421'); -INSERT INTO `cardcodes` VALUES (1043, '吉林省', '延边朝鲜族自治州', '敦化县', '222422'); -INSERT INTO `cardcodes` VALUES (1044, '吉林省', '延边朝鲜族自治州', '和龙县', '222423'); -INSERT INTO `cardcodes` VALUES (1045, '吉林省', '延边朝鲜族自治州', '汪清县', '222424'); -INSERT INTO `cardcodes` VALUES (1046, '吉林省', '延边朝鲜族自治州', '珲春县', '222425'); -INSERT INTO `cardcodes` VALUES (1047, '吉林省', '延边朝鲜族自治州', '安图县', '222426'); -INSERT INTO `cardcodes` VALUES (1048, '吉林省', NULL, '四平市', '222101'); -INSERT INTO `cardcodes` VALUES (1049, '吉林省', NULL, '辽源市', '222102'); -INSERT INTO `cardcodes` VALUES (1050, '吉林省', NULL, '怀德县', '222121'); -INSERT INTO `cardcodes` VALUES (1051, '吉林省', NULL, '梨树县', '222122'); -INSERT INTO `cardcodes` VALUES (1052, '吉林省', NULL, '伊通满族自治县', '222123'); -INSERT INTO `cardcodes` VALUES (1053, '吉林省', NULL, '东丰县', '222124'); -INSERT INTO `cardcodes` VALUES (1054, '吉林省', NULL, '双辽县', '222125'); -INSERT INTO `cardcodes` VALUES (1055, '吉林省', NULL, '通化市', '222201'); -INSERT INTO `cardcodes` VALUES (1056, '吉林省', NULL, '浑江市', '222202'); -INSERT INTO `cardcodes` VALUES (1057, '吉林省', NULL, '海龙县', '222221'); -INSERT INTO `cardcodes` VALUES (1058, '吉林省', NULL, '通化县', '222222'); -INSERT INTO `cardcodes` VALUES (1059, '吉林省', NULL, '柳河县', '222223'); -INSERT INTO `cardcodes` VALUES (1060, '吉林省', NULL, '辉南县', '222224'); -INSERT INTO `cardcodes` VALUES (1061, '吉林省', NULL, '集安县', '222225'); -INSERT INTO `cardcodes` VALUES (1062, '吉林省', NULL, '抚松县', '222226'); -INSERT INTO `cardcodes` VALUES (1063, '吉林省', NULL, '靖宇县', '222227'); -INSERT INTO `cardcodes` VALUES (1064, '吉林省', NULL, '长白朝鲜族自治县', '222228'); -INSERT INTO `cardcodes` VALUES (1065, '吉林省', NULL, '公主岭市', '229001'); -INSERT INTO `cardcodes` VALUES (1066, '吉林省', NULL, '梅河口市', '229002'); -INSERT INTO `cardcodes` VALUES (1067, '吉林省', NULL, '集安市', '229003'); -INSERT INTO `cardcodes` VALUES (1068, '吉林省', NULL, '桦甸市', '229004'); -INSERT INTO `cardcodes` VALUES (1069, '吉林省', NULL, '九台市', '229005'); -INSERT INTO `cardcodes` VALUES (1070, '黑龙江省', '哈尔滨市', '市辖区', '230101'); -INSERT INTO `cardcodes` VALUES (1071, '黑龙江省', '哈尔滨市', '道里区', '230102'); -INSERT INTO `cardcodes` VALUES (1072, '黑龙江省', '哈尔滨市', '南岗区', '230103'); -INSERT INTO `cardcodes` VALUES (1073, '黑龙江省', '哈尔滨市', '道外区', '230104'); -INSERT INTO `cardcodes` VALUES (1074, '黑龙江省', '哈尔滨市', '太平区', '230105'); -INSERT INTO `cardcodes` VALUES (1075, '黑龙江省', '哈尔滨市', '香坊区', '230106'); -INSERT INTO `cardcodes` VALUES (1076, '黑龙江省', '哈尔滨市', '动力区', '230107'); -INSERT INTO `cardcodes` VALUES (1077, '黑龙江省', '哈尔滨市', '平房区', '230108'); -INSERT INTO `cardcodes` VALUES (1078, '黑龙江省', '哈尔滨市', '松北区', '230109'); -INSERT INTO `cardcodes` VALUES (1079, '黑龙江省', '哈尔滨市', '香坊区', '230110'); -INSERT INTO `cardcodes` VALUES (1080, '黑龙江省', '哈尔滨市', '呼兰区', '230111'); -INSERT INTO `cardcodes` VALUES (1081, '黑龙江省', '哈尔滨市', '阿城区', '230112'); -INSERT INTO `cardcodes` VALUES (1082, '黑龙江省', '哈尔滨市', '阿城市', '230119'); -INSERT INTO `cardcodes` VALUES (1083, '黑龙江省', '哈尔滨市', '呼兰县', '230121'); -INSERT INTO `cardcodes` VALUES (1084, '黑龙江省', '哈尔滨市', '阿城县', '230122'); -INSERT INTO `cardcodes` VALUES (1085, '黑龙江省', '哈尔滨市', '依兰县', '230123'); -INSERT INTO `cardcodes` VALUES (1086, '黑龙江省', '哈尔滨市', '方正县', '230124'); -INSERT INTO `cardcodes` VALUES (1087, '黑龙江省', '哈尔滨市', '宾县', '230125'); -INSERT INTO `cardcodes` VALUES (1088, '黑龙江省', '哈尔滨市', '巴彦县', '230126'); -INSERT INTO `cardcodes` VALUES (1089, '黑龙江省', '哈尔滨市', '木兰县', '230127'); -INSERT INTO `cardcodes` VALUES (1090, '黑龙江省', '哈尔滨市', '通河县', '230128'); -INSERT INTO `cardcodes` VALUES (1091, '黑龙江省', '哈尔滨市', '延寿县', '230129'); -INSERT INTO `cardcodes` VALUES (1092, '黑龙江省', '哈尔滨市', '阿城市', '230181'); -INSERT INTO `cardcodes` VALUES (1093, '黑龙江省', '哈尔滨市', '双城市', '230182'); -INSERT INTO `cardcodes` VALUES (1094, '黑龙江省', '哈尔滨市', '尚志市', '230183'); -INSERT INTO `cardcodes` VALUES (1095, '黑龙江省', '哈尔滨市', '五常市', '230184'); -INSERT INTO `cardcodes` VALUES (1096, '黑龙江省', '齐齐哈尔市', '市辖区', '230201'); -INSERT INTO `cardcodes` VALUES (1097, '黑龙江省', '齐齐哈尔市', '龙沙区', '230202'); -INSERT INTO `cardcodes` VALUES (1098, '黑龙江省', '齐齐哈尔市', '建华区', '230203'); -INSERT INTO `cardcodes` VALUES (1099, '黑龙江省', '齐齐哈尔市', '铁锋区', '230204'); -INSERT INTO `cardcodes` VALUES (1100, '黑龙江省', '齐齐哈尔市', '昂昂溪区', '230205'); -INSERT INTO `cardcodes` VALUES (1101, '黑龙江省', '齐齐哈尔市', '富拉尔基区', '230206'); -INSERT INTO `cardcodes` VALUES (1102, '黑龙江省', '齐齐哈尔市', '碾子山区', '230207'); -INSERT INTO `cardcodes` VALUES (1103, '黑龙江省', '齐齐哈尔市', '梅里斯达斡尔族区', '230208'); -INSERT INTO `cardcodes` VALUES (1104, '黑龙江省', '齐齐哈尔市', '龙江县', '230221'); -INSERT INTO `cardcodes` VALUES (1105, '黑龙江省', '齐齐哈尔市', '讷河县', '230222'); -INSERT INTO `cardcodes` VALUES (1106, '黑龙江省', '齐齐哈尔市', '依安县', '230223'); -INSERT INTO `cardcodes` VALUES (1107, '黑龙江省', '齐齐哈尔市', '泰来县', '230224'); -INSERT INTO `cardcodes` VALUES (1108, '黑龙江省', '齐齐哈尔市', '甘南县', '230225'); -INSERT INTO `cardcodes` VALUES (1109, '黑龙江省', '齐齐哈尔市', '杜尔伯特蒙古族自治县', '230226'); -INSERT INTO `cardcodes` VALUES (1110, '黑龙江省', '齐齐哈尔市', '富裕县', '230227'); -INSERT INTO `cardcodes` VALUES (1111, '黑龙江省', '齐齐哈尔市', '林甸县', '230228'); -INSERT INTO `cardcodes` VALUES (1112, '黑龙江省', '齐齐哈尔市', '克山县', '230229'); -INSERT INTO `cardcodes` VALUES (1113, '黑龙江省', '齐齐哈尔市', '克东县', '230230'); -INSERT INTO `cardcodes` VALUES (1114, '黑龙江省', '齐齐哈尔市', '拜泉县', '230231'); -INSERT INTO `cardcodes` VALUES (1115, '黑龙江省', '齐齐哈尔市', '讷河市', '230281'); -INSERT INTO `cardcodes` VALUES (1116, '黑龙江省', '鸡西市', '市辖区', '230301'); -INSERT INTO `cardcodes` VALUES (1117, '黑龙江省', '鸡西市', '鸡冠区', '230302'); -INSERT INTO `cardcodes` VALUES (1118, '黑龙江省', '鸡西市', '恒山区', '230303'); -INSERT INTO `cardcodes` VALUES (1119, '黑龙江省', '鸡西市', '滴道区', '230304'); -INSERT INTO `cardcodes` VALUES (1120, '黑龙江省', '鸡西市', '梨树区', '230305'); -INSERT INTO `cardcodes` VALUES (1121, '黑龙江省', '鸡西市', '城子河区', '230306'); -INSERT INTO `cardcodes` VALUES (1122, '黑龙江省', '鸡西市', '麻山区', '230307'); -INSERT INTO `cardcodes` VALUES (1123, '黑龙江省', '鸡西市', '鸡东县', '230321'); -INSERT INTO `cardcodes` VALUES (1124, '黑龙江省', '鸡西市', '虎林市', '230381'); -INSERT INTO `cardcodes` VALUES (1125, '黑龙江省', '鸡西市', '密山市', '230382'); -INSERT INTO `cardcodes` VALUES (1126, '黑龙江省', '鹤岗市', '市辖区', '230401'); -INSERT INTO `cardcodes` VALUES (1127, '黑龙江省', '鹤岗市', '向阳区', '230402'); -INSERT INTO `cardcodes` VALUES (1128, '黑龙江省', '鹤岗市', '工农区', '230403'); -INSERT INTO `cardcodes` VALUES (1129, '黑龙江省', '鹤岗市', '南山区', '230404'); -INSERT INTO `cardcodes` VALUES (1130, '黑龙江省', '鹤岗市', '兴安区', '230405'); -INSERT INTO `cardcodes` VALUES (1131, '黑龙江省', '鹤岗市', '东山区', '230406'); -INSERT INTO `cardcodes` VALUES (1132, '黑龙江省', '鹤岗市', '兴山区', '230407'); -INSERT INTO `cardcodes` VALUES (1133, '黑龙江省', '鹤岗市', '萝北县', '230421'); -INSERT INTO `cardcodes` VALUES (1134, '黑龙江省', '鹤岗市', '绥滨县', '230422'); -INSERT INTO `cardcodes` VALUES (1135, '黑龙江省', '双鸭山市', '市辖区', '230501'); -INSERT INTO `cardcodes` VALUES (1136, '黑龙江省', '双鸭山市', '尖山区', '230502'); -INSERT INTO `cardcodes` VALUES (1137, '黑龙江省', '双鸭山市', '岭东区', '230503'); -INSERT INTO `cardcodes` VALUES (1138, '黑龙江省', '双鸭山市', '岭西区', '230504'); -INSERT INTO `cardcodes` VALUES (1139, '黑龙江省', '双鸭山市', '四方台区', '230505'); -INSERT INTO `cardcodes` VALUES (1140, '黑龙江省', '双鸭山市', '宝山区', '230506'); -INSERT INTO `cardcodes` VALUES (1141, '黑龙江省', '双鸭山市', '集贤县', '230521'); -INSERT INTO `cardcodes` VALUES (1142, '黑龙江省', '双鸭山市', '友谊县', '230522'); -INSERT INTO `cardcodes` VALUES (1143, '黑龙江省', '双鸭山市', '宝清县', '230523'); -INSERT INTO `cardcodes` VALUES (1144, '黑龙江省', '双鸭山市', '饶河县', '230524'); -INSERT INTO `cardcodes` VALUES (1145, '黑龙江省', '大庆市', '市辖区', '230601'); -INSERT INTO `cardcodes` VALUES (1146, '黑龙江省', '大庆市', '萨尔图区', '230602'); -INSERT INTO `cardcodes` VALUES (1147, '黑龙江省', '大庆市', '龙凤区', '230603'); -INSERT INTO `cardcodes` VALUES (1148, '黑龙江省', '大庆市', '让胡路区', '230604'); -INSERT INTO `cardcodes` VALUES (1149, '黑龙江省', '大庆市', '红岗区', '230605'); -INSERT INTO `cardcodes` VALUES (1150, '黑龙江省', '大庆市', '大同区', '230606'); -INSERT INTO `cardcodes` VALUES (1151, '黑龙江省', '大庆市', '肇州县', '230621'); -INSERT INTO `cardcodes` VALUES (1152, '黑龙江省', '大庆市', '肇源县', '230622'); -INSERT INTO `cardcodes` VALUES (1153, '黑龙江省', '大庆市', '林甸县', '230623'); -INSERT INTO `cardcodes` VALUES (1154, '黑龙江省', '大庆市', '杜尔伯特蒙古族自治县', '230624'); -INSERT INTO `cardcodes` VALUES (1155, '黑龙江省', '伊春市', '市辖区', '230701'); -INSERT INTO `cardcodes` VALUES (1156, '黑龙江省', '伊春市', '伊春区', '230702'); -INSERT INTO `cardcodes` VALUES (1157, '黑龙江省', '伊春市', '南岔区', '230703'); -INSERT INTO `cardcodes` VALUES (1158, '黑龙江省', '伊春市', '友好区', '230704'); -INSERT INTO `cardcodes` VALUES (1159, '黑龙江省', '伊春市', '西林区', '230705'); -INSERT INTO `cardcodes` VALUES (1160, '黑龙江省', '伊春市', '翠峦区', '230706'); -INSERT INTO `cardcodes` VALUES (1161, '黑龙江省', '伊春市', '新青区', '230707'); -INSERT INTO `cardcodes` VALUES (1162, '黑龙江省', '伊春市', '美溪区', '230708'); -INSERT INTO `cardcodes` VALUES (1163, '黑龙江省', '伊春市', '金山屯区', '230709'); -INSERT INTO `cardcodes` VALUES (1164, '黑龙江省', '伊春市', '五营区', '230710'); -INSERT INTO `cardcodes` VALUES (1165, '黑龙江省', '伊春市', '乌马河区', '230711'); -INSERT INTO `cardcodes` VALUES (1166, '黑龙江省', '伊春市', '汤旺河区', '230712'); -INSERT INTO `cardcodes` VALUES (1167, '黑龙江省', '伊春市', '带岭区', '230713'); -INSERT INTO `cardcodes` VALUES (1168, '黑龙江省', '伊春市', '乌伊岭区', '230714'); -INSERT INTO `cardcodes` VALUES (1169, '黑龙江省', '伊春市', '红星区', '230715'); -INSERT INTO `cardcodes` VALUES (1170, '黑龙江省', '伊春市', '上甘岭区', '230716'); -INSERT INTO `cardcodes` VALUES (1171, '黑龙江省', '伊春市', '铁力县', '230721'); -INSERT INTO `cardcodes` VALUES (1172, '黑龙江省', '伊春市', '嘉荫县', '230722'); -INSERT INTO `cardcodes` VALUES (1173, '黑龙江省', '伊春市', '铁力市', '230781'); -INSERT INTO `cardcodes` VALUES (1174, '黑龙江省', '佳木斯市', '市辖区', '230801'); -INSERT INTO `cardcodes` VALUES (1175, '黑龙江省', '佳木斯市', '永红区', '230802'); -INSERT INTO `cardcodes` VALUES (1176, '黑龙江省', '佳木斯市', '向阳区', '230803'); -INSERT INTO `cardcodes` VALUES (1177, '黑龙江省', '佳木斯市', '前进区', '230804'); -INSERT INTO `cardcodes` VALUES (1178, '黑龙江省', '佳木斯市', '东风区', '230805'); -INSERT INTO `cardcodes` VALUES (1179, '黑龙江省', '佳木斯市', '郊区', '230811'); -INSERT INTO `cardcodes` VALUES (1180, '黑龙江省', '佳木斯市', '富锦县', '230821'); -INSERT INTO `cardcodes` VALUES (1181, '黑龙江省', '佳木斯市', '桦南县', '230822'); -INSERT INTO `cardcodes` VALUES (1182, '黑龙江省', '佳木斯市', '依兰县', '230823'); -INSERT INTO `cardcodes` VALUES (1183, '黑龙江省', '佳木斯市', '集贤县', '230825'); -INSERT INTO `cardcodes` VALUES (1184, '黑龙江省', '佳木斯市', '桦川县', '230826'); -INSERT INTO `cardcodes` VALUES (1185, '黑龙江省', '佳木斯市', '宝清县', '230827'); -INSERT INTO `cardcodes` VALUES (1186, '黑龙江省', '佳木斯市', '汤原县', '230828'); -INSERT INTO `cardcodes` VALUES (1187, '黑龙江省', '佳木斯市', '绥滨县', '230829'); -INSERT INTO `cardcodes` VALUES (1188, '黑龙江省', '佳木斯市', '萝北县', '230830'); -INSERT INTO `cardcodes` VALUES (1189, '黑龙江省', '佳木斯市', '同江县', '230831'); -INSERT INTO `cardcodes` VALUES (1190, '黑龙江省', '佳木斯市', '饶河县', '230832'); -INSERT INTO `cardcodes` VALUES (1191, '黑龙江省', '佳木斯市', '抚远县', '230833'); -INSERT INTO `cardcodes` VALUES (1192, '黑龙江省', '佳木斯市', '友谊县', '230834'); -INSERT INTO `cardcodes` VALUES (1193, '黑龙江省', '佳木斯市', '同江市', '230881'); -INSERT INTO `cardcodes` VALUES (1194, '黑龙江省', '佳木斯市', '富锦市', '230882'); -INSERT INTO `cardcodes` VALUES (1195, '黑龙江省', '七台河市', '市辖区', '230901'); -INSERT INTO `cardcodes` VALUES (1196, '黑龙江省', '七台河市', '新兴区', '230902'); -INSERT INTO `cardcodes` VALUES (1197, '黑龙江省', '七台河市', '桃山区', '230903'); -INSERT INTO `cardcodes` VALUES (1198, '黑龙江省', '七台河市', '茄子河区', '230904'); -INSERT INTO `cardcodes` VALUES (1199, '黑龙江省', '七台河市', '勃利县', '230921'); -INSERT INTO `cardcodes` VALUES (1200, '黑龙江省', '牡丹江市', '市辖区', '231001'); -INSERT INTO `cardcodes` VALUES (1201, '黑龙江省', '牡丹江市', '东安区', '231002'); -INSERT INTO `cardcodes` VALUES (1202, '黑龙江省', '牡丹江市', '阳明区', '231003'); -INSERT INTO `cardcodes` VALUES (1203, '黑龙江省', '牡丹江市', '爱民区', '231004'); -INSERT INTO `cardcodes` VALUES (1204, '黑龙江省', '牡丹江市', '西安区', '231005'); -INSERT INTO `cardcodes` VALUES (1205, '黑龙江省', '牡丹江市', '郊区', '231011'); -INSERT INTO `cardcodes` VALUES (1206, '黑龙江省', '牡丹江市', '绥芬河市', '231020'); -INSERT INTO `cardcodes` VALUES (1207, '黑龙江省', '牡丹江市', '宁安县', '231021'); -INSERT INTO `cardcodes` VALUES (1208, '黑龙江省', '牡丹江市', '海林县', '231022'); -INSERT INTO `cardcodes` VALUES (1209, '黑龙江省', '牡丹江市', '穆棱县', '231023'); -INSERT INTO `cardcodes` VALUES (1210, '黑龙江省', '牡丹江市', '东宁县', '231024'); -INSERT INTO `cardcodes` VALUES (1211, '黑龙江省', '牡丹江市', '林口县', '231025'); -INSERT INTO `cardcodes` VALUES (1212, '黑龙江省', '牡丹江市', '密山县', '231026'); -INSERT INTO `cardcodes` VALUES (1213, '黑龙江省', '牡丹江市', '虎林县', '231027'); -INSERT INTO `cardcodes` VALUES (1214, '黑龙江省', '牡丹江市', '绥芬河市', '231081'); -INSERT INTO `cardcodes` VALUES (1215, '黑龙江省', '牡丹江市', '密山市', '231082'); -INSERT INTO `cardcodes` VALUES (1216, '黑龙江省', '牡丹江市', '海林市', '231083'); -INSERT INTO `cardcodes` VALUES (1217, '黑龙江省', '牡丹江市', '宁安市', '231084'); -INSERT INTO `cardcodes` VALUES (1218, '黑龙江省', '牡丹江市', '穆棱市', '231085'); -INSERT INTO `cardcodes` VALUES (1219, '黑龙江省', '黑河市', '市辖区', '231101'); -INSERT INTO `cardcodes` VALUES (1220, '黑龙江省', '黑河市', '爱辉区', '231102'); -INSERT INTO `cardcodes` VALUES (1221, '黑龙江省', '黑河市', '嫩江县', '231121'); -INSERT INTO `cardcodes` VALUES (1222, '黑龙江省', '黑河市', '逊克县', '231123'); -INSERT INTO `cardcodes` VALUES (1223, '黑龙江省', '黑河市', '孙吴县', '231124'); -INSERT INTO `cardcodes` VALUES (1224, '黑龙江省', '黑河市', '北安市', '231181'); -INSERT INTO `cardcodes` VALUES (1225, '黑龙江省', '黑河市', '五大连池市', '231182'); -INSERT INTO `cardcodes` VALUES (1226, '黑龙江省', '绥化市', '市辖区', '231201'); -INSERT INTO `cardcodes` VALUES (1227, '黑龙江省', '绥化市', '北林区', '231202'); -INSERT INTO `cardcodes` VALUES (1228, '黑龙江省', '绥化市', '望奎县', '231221'); -INSERT INTO `cardcodes` VALUES (1229, '黑龙江省', '绥化市', '兰西县', '231222'); -INSERT INTO `cardcodes` VALUES (1230, '黑龙江省', '绥化市', '青冈县', '231223'); -INSERT INTO `cardcodes` VALUES (1231, '黑龙江省', '绥化市', '庆安县', '231224'); -INSERT INTO `cardcodes` VALUES (1232, '黑龙江省', '绥化市', '明水县', '231225'); -INSERT INTO `cardcodes` VALUES (1233, '黑龙江省', '绥化市', '绥棱县', '231226'); -INSERT INTO `cardcodes` VALUES (1234, '黑龙江省', '绥化市', '安达市', '231281'); -INSERT INTO `cardcodes` VALUES (1235, '黑龙江省', '绥化市', '肇东市', '231282'); -INSERT INTO `cardcodes` VALUES (1236, '黑龙江省', '绥化市', '海伦市', '231283'); -INSERT INTO `cardcodes` VALUES (1237, '黑龙江省', '松花江地区', '双城市', '232101'); -INSERT INTO `cardcodes` VALUES (1238, '黑龙江省', '松花江地区', '尚志市', '232102'); -INSERT INTO `cardcodes` VALUES (1239, '黑龙江省', '松花江地区', '五常市', '232103'); -INSERT INTO `cardcodes` VALUES (1240, '黑龙江省', '松花江地区', '阿城市', '232121'); -INSERT INTO `cardcodes` VALUES (1241, '黑龙江省', '松花江地区', '宾县', '232122'); -INSERT INTO `cardcodes` VALUES (1242, '黑龙江省', '松花江地区', '呼兰县', '232123'); -INSERT INTO `cardcodes` VALUES (1243, '黑龙江省', '松花江地区', '双城市', '232124'); -INSERT INTO `cardcodes` VALUES (1244, '黑龙江省', '松花江地区', '五常市', '232125'); -INSERT INTO `cardcodes` VALUES (1245, '黑龙江省', '松花江地区', '巴彦县', '232126'); -INSERT INTO `cardcodes` VALUES (1246, '黑龙江省', '松花江地区', '木兰县', '232127'); -INSERT INTO `cardcodes` VALUES (1247, '黑龙江省', '松花江地区', '通河县', '232128'); -INSERT INTO `cardcodes` VALUES (1248, '黑龙江省', '松花江地区', '尚志市', '232129'); -INSERT INTO `cardcodes` VALUES (1249, '黑龙江省', '松花江地区', '方正县', '232130'); -INSERT INTO `cardcodes` VALUES (1250, '黑龙江省', '松花江地区', '延寿县', '232131'); -INSERT INTO `cardcodes` VALUES (1251, '黑龙江省', '绥化地区', '绥化市', '232301'); -INSERT INTO `cardcodes` VALUES (1252, '黑龙江省', '绥化地区', '安达市', '232302'); -INSERT INTO `cardcodes` VALUES (1253, '黑龙江省', '绥化地区', '肇东市', '232303'); -INSERT INTO `cardcodes` VALUES (1254, '黑龙江省', '绥化地区', '海伦市', '232304'); -INSERT INTO `cardcodes` VALUES (1255, '黑龙江省', '绥化地区', '海伦县', '232321'); -INSERT INTO `cardcodes` VALUES (1256, '黑龙江省', '绥化地区', '肇东县', '232322'); -INSERT INTO `cardcodes` VALUES (1257, '黑龙江省', '绥化地区', '绥化县', '232323'); -INSERT INTO `cardcodes` VALUES (1258, '黑龙江省', '绥化地区', '望奎县', '232324'); -INSERT INTO `cardcodes` VALUES (1259, '黑龙江省', '绥化地区', '兰西县', '232325'); -INSERT INTO `cardcodes` VALUES (1260, '黑龙江省', '绥化地区', '青冈县', '232326'); -INSERT INTO `cardcodes` VALUES (1261, '黑龙江省', '绥化地区', '安达县', '232327'); -INSERT INTO `cardcodes` VALUES (1262, '黑龙江省', '绥化地区', '肇源县', '232328'); -INSERT INTO `cardcodes` VALUES (1263, '黑龙江省', '绥化地区', '肇州县', '232329'); -INSERT INTO `cardcodes` VALUES (1264, '黑龙江省', '绥化地区', '庆安县', '232330'); -INSERT INTO `cardcodes` VALUES (1265, '黑龙江省', '绥化地区', '明水县', '232331'); -INSERT INTO `cardcodes` VALUES (1266, '黑龙江省', '绥化地区', '绥棱县', '232332'); -INSERT INTO `cardcodes` VALUES (1267, '黑龙江省', '佳木斯地区', '佳木斯市', '232401'); -INSERT INTO `cardcodes` VALUES (1268, '黑龙江省', '佳木斯地区', '富锦县', '232421'); -INSERT INTO `cardcodes` VALUES (1269, '黑龙江省', '佳木斯地区', '桦南县', '232422'); -INSERT INTO `cardcodes` VALUES (1270, '黑龙江省', '佳木斯地区', '依兰县', '232423'); -INSERT INTO `cardcodes` VALUES (1271, '黑龙江省', '佳木斯地区', '勃利县', '232424'); -INSERT INTO `cardcodes` VALUES (1272, '黑龙江省', '佳木斯地区', '集贤县', '232425'); -INSERT INTO `cardcodes` VALUES (1273, '黑龙江省', '佳木斯地区', '桦川县', '232426'); -INSERT INTO `cardcodes` VALUES (1274, '黑龙江省', '佳木斯地区', '宝清县', '232427'); -INSERT INTO `cardcodes` VALUES (1275, '黑龙江省', '佳木斯地区', '汤原县', '232428'); -INSERT INTO `cardcodes` VALUES (1276, '黑龙江省', '佳木斯地区', '绥滨县', '232429'); -INSERT INTO `cardcodes` VALUES (1277, '黑龙江省', '佳木斯地区', '萝北县', '232430'); -INSERT INTO `cardcodes` VALUES (1278, '黑龙江省', '佳木斯地区', '同江县', '232431'); -INSERT INTO `cardcodes` VALUES (1279, '黑龙江省', '佳木斯地区', '饶河县', '232432'); -INSERT INTO `cardcodes` VALUES (1280, '黑龙江省', '佳木斯地区', '抚远县', '232433'); -INSERT INTO `cardcodes` VALUES (1281, '黑龙江省', '牡丹江地区', '牡丹江市', '232501'); -INSERT INTO `cardcodes` VALUES (1282, '黑龙江省', '牡丹江地区', '绥芬河市', '232502'); -INSERT INTO `cardcodes` VALUES (1283, '黑龙江省', '牡丹江地区', '宁安县', '232521'); -INSERT INTO `cardcodes` VALUES (1284, '黑龙江省', '牡丹江地区', '海林县', '232522'); -INSERT INTO `cardcodes` VALUES (1285, '黑龙江省', '牡丹江地区', '穆棱县', '232523'); -INSERT INTO `cardcodes` VALUES (1286, '黑龙江省', '牡丹江地区', '东宁县', '232524'); -INSERT INTO `cardcodes` VALUES (1287, '黑龙江省', '牡丹江地区', '林口县', '232525'); -INSERT INTO `cardcodes` VALUES (1288, '黑龙江省', '牡丹江地区', '鸡东县', '232526'); -INSERT INTO `cardcodes` VALUES (1289, '黑龙江省', '牡丹江地区', '密山县', '232527'); -INSERT INTO `cardcodes` VALUES (1290, '黑龙江省', '牡丹江地区', '虎林县', '232528'); -INSERT INTO `cardcodes` VALUES (1291, '黑龙江省', '黑河地区', '黑河市', '232601'); -INSERT INTO `cardcodes` VALUES (1292, '黑龙江省', '黑河地区', '北安市', '232602'); -INSERT INTO `cardcodes` VALUES (1293, '黑龙江省', '黑河地区', '五大连池市', '232603'); -INSERT INTO `cardcodes` VALUES (1294, '黑龙江省', '黑河地区', '北安县', '232621'); -INSERT INTO `cardcodes` VALUES (1295, '黑龙江省', '黑河地区', '嫩江县', '232622'); -INSERT INTO `cardcodes` VALUES (1296, '黑龙江省', '黑河地区', '德都县', '232623'); -INSERT INTO `cardcodes` VALUES (1297, '黑龙江省', '黑河地区', '逊克县', '232625'); -INSERT INTO `cardcodes` VALUES (1298, '黑龙江省', '黑河地区', '孙吴县', '232626'); -INSERT INTO `cardcodes` VALUES (1299, '黑龙江省', '大兴安岭地区', '加格达奇区', '232701'); -INSERT INTO `cardcodes` VALUES (1300, '黑龙江省', '大兴安岭地区', '呼玛县', '232721'); -INSERT INTO `cardcodes` VALUES (1301, '黑龙江省', '大兴安岭地区', '塔河县', '232722'); -INSERT INTO `cardcodes` VALUES (1302, '黑龙江省', '大兴安岭地区', '漠河县', '232723'); -INSERT INTO `cardcodes` VALUES (1303, '黑龙江省', '大兴安岭地区', '漠河县', '232724'); -INSERT INTO `cardcodes` VALUES (1304, '黑龙江省', NULL, '绥芬河市', '239001'); -INSERT INTO `cardcodes` VALUES (1305, '黑龙江省', NULL, '阿城市', '239002'); -INSERT INTO `cardcodes` VALUES (1306, '黑龙江省', NULL, '同江市', '239003'); -INSERT INTO `cardcodes` VALUES (1307, '黑龙江省', NULL, '富锦市', '239004'); -INSERT INTO `cardcodes` VALUES (1308, '黑龙江省', NULL, '铁力市', '239005'); -INSERT INTO `cardcodes` VALUES (1309, '黑龙江省', NULL, '密山市', '239006'); -INSERT INTO `cardcodes` VALUES (1310, '上海市', NULL, '黄浦区', '310101'); -INSERT INTO `cardcodes` VALUES (1311, '上海市', NULL, '南市区', '310102'); -INSERT INTO `cardcodes` VALUES (1312, '上海市', NULL, '卢湾区', '310103'); -INSERT INTO `cardcodes` VALUES (1313, '上海市', NULL, '徐汇区', '310104'); -INSERT INTO `cardcodes` VALUES (1314, '上海市', NULL, '长宁区', '310105'); -INSERT INTO `cardcodes` VALUES (1315, '上海市', NULL, '静安区', '310106'); -INSERT INTO `cardcodes` VALUES (1316, '上海市', NULL, '普陀区', '310107'); -INSERT INTO `cardcodes` VALUES (1317, '上海市', NULL, '闸北区', '310108'); -INSERT INTO `cardcodes` VALUES (1318, '上海市', NULL, '虹口区', '310109'); -INSERT INTO `cardcodes` VALUES (1319, '上海市', NULL, '杨浦区', '310110'); -INSERT INTO `cardcodes` VALUES (1320, '上海市', NULL, '吴凇区', '310111'); -INSERT INTO `cardcodes` VALUES (1321, '上海市', NULL, '闵行区', '310112'); -INSERT INTO `cardcodes` VALUES (1322, '上海市', NULL, '宝山区', '310113'); -INSERT INTO `cardcodes` VALUES (1323, '上海市', NULL, '嘉定区', '310114'); -INSERT INTO `cardcodes` VALUES (1324, '上海市', NULL, '浦东新区', '310115'); -INSERT INTO `cardcodes` VALUES (1325, '上海市', NULL, '金山区', '310116'); -INSERT INTO `cardcodes` VALUES (1326, '上海市', NULL, '松江区', '310117'); -INSERT INTO `cardcodes` VALUES (1327, '上海市', NULL, '青浦区', '310118'); -INSERT INTO `cardcodes` VALUES (1328, '上海市', NULL, '南汇区', '310119'); -INSERT INTO `cardcodes` VALUES (1329, '上海市', NULL, '奉贤区', '310120'); -INSERT INTO `cardcodes` VALUES (1330, '上海市', NULL, '上海县', '310221'); -INSERT INTO `cardcodes` VALUES (1331, '上海市', NULL, '嘉定县', '310222'); -INSERT INTO `cardcodes` VALUES (1332, '上海市', NULL, '宝山县', '310223'); -INSERT INTO `cardcodes` VALUES (1333, '上海市', NULL, '川沙县', '310224'); -INSERT INTO `cardcodes` VALUES (1334, '上海市', NULL, '南汇县', '310225'); -INSERT INTO `cardcodes` VALUES (1335, '上海市', NULL, '奉贤县', '310226'); -INSERT INTO `cardcodes` VALUES (1336, '上海市', NULL, '松江县', '310227'); -INSERT INTO `cardcodes` VALUES (1337, '上海市', NULL, '金山县', '310228'); -INSERT INTO `cardcodes` VALUES (1338, '上海市', NULL, '青浦县', '310229'); -INSERT INTO `cardcodes` VALUES (1339, '上海市', NULL, '崇明县', '310230'); -INSERT INTO `cardcodes` VALUES (1340, '江苏省', '南京市', '市辖区', '320101'); -INSERT INTO `cardcodes` VALUES (1341, '江苏省', '南京市', '玄武区', '320102'); -INSERT INTO `cardcodes` VALUES (1342, '江苏省', '南京市', '白下区', '320103'); -INSERT INTO `cardcodes` VALUES (1343, '江苏省', '南京市', '秦淮区', '320104'); -INSERT INTO `cardcodes` VALUES (1344, '江苏省', '南京市', '建邺区', '320105'); -INSERT INTO `cardcodes` VALUES (1345, '江苏省', '南京市', '鼓楼区', '320106'); -INSERT INTO `cardcodes` VALUES (1346, '江苏省', '南京市', '下关区', '320107'); -INSERT INTO `cardcodes` VALUES (1347, '江苏省', '南京市', '浦口区', '320111'); -INSERT INTO `cardcodes` VALUES (1348, '江苏省', '南京市', '大厂区', '320112'); -INSERT INTO `cardcodes` VALUES (1349, '江苏省', '南京市', '栖霞区', '320113'); -INSERT INTO `cardcodes` VALUES (1350, '江苏省', '南京市', '雨花台区', '320114'); -INSERT INTO `cardcodes` VALUES (1351, '江苏省', '南京市', '江宁区', '320115'); -INSERT INTO `cardcodes` VALUES (1352, '江苏省', '南京市', '六合区', '320116'); -INSERT INTO `cardcodes` VALUES (1353, '江苏省', '南京市', '市区', '320120'); -INSERT INTO `cardcodes` VALUES (1354, '江苏省', '南京市', '江宁县', '320121'); -INSERT INTO `cardcodes` VALUES (1355, '江苏省', '南京市', '江浦县', '320122'); -INSERT INTO `cardcodes` VALUES (1356, '江苏省', '南京市', '六合县', '320123'); -INSERT INTO `cardcodes` VALUES (1357, '江苏省', '南京市', '溧水县', '320124'); -INSERT INTO `cardcodes` VALUES (1358, '江苏省', '南京市', '高淳县', '320125'); -INSERT INTO `cardcodes` VALUES (1359, '江苏省', '南京市', '江都县', '320126'); -INSERT INTO `cardcodes` VALUES (1360, '江苏省', '无锡市', '市辖区', '320201'); -INSERT INTO `cardcodes` VALUES (1361, '江苏省', '无锡市', '崇安区', '320202'); -INSERT INTO `cardcodes` VALUES (1362, '江苏省', '无锡市', '南长区', '320203'); -INSERT INTO `cardcodes` VALUES (1363, '江苏省', '无锡市', '北塘区', '320204'); -INSERT INTO `cardcodes` VALUES (1364, '江苏省', '无锡市', '锡山区', '320205'); -INSERT INTO `cardcodes` VALUES (1365, '江苏省', '无锡市', '惠山区', '320206'); -INSERT INTO `cardcodes` VALUES (1366, '江苏省', '无锡市', '郊区', '320211'); -INSERT INTO `cardcodes` VALUES (1367, '江苏省', '无锡市', '马山区', '320212'); -INSERT INTO `cardcodes` VALUES (1368, '江苏省', '无锡市', '江阴县', '320219'); -INSERT INTO `cardcodes` VALUES (1369, '江苏省', '无锡市', '江阴县', '320221'); -INSERT INTO `cardcodes` VALUES (1370, '江苏省', '无锡市', '无锡县', '320222'); -INSERT INTO `cardcodes` VALUES (1371, '江苏省', '无锡市', '宜兴县', '320223'); -INSERT INTO `cardcodes` VALUES (1372, '江苏省', '无锡市', '江阴市', '320281'); -INSERT INTO `cardcodes` VALUES (1373, '江苏省', '无锡市', '宜兴市', '320282'); -INSERT INTO `cardcodes` VALUES (1374, '江苏省', '无锡市', '锡山市', '320283'); -INSERT INTO `cardcodes` VALUES (1375, '江苏省', '徐州市', '市辖区', '320301'); -INSERT INTO `cardcodes` VALUES (1376, '江苏省', '徐州市', '鼓楼区', '320302'); -INSERT INTO `cardcodes` VALUES (1, '北京市', NULL, '东城区', '110101'); -INSERT INTO `cardcodes` VALUES (2, '北京市', NULL, '西城区', '110102'); -INSERT INTO `cardcodes` VALUES (3, '北京市', NULL, '崇文区', '110103'); -INSERT INTO `cardcodes` VALUES (4, '北京市', NULL, '宣武区', '110104'); -INSERT INTO `cardcodes` VALUES (5, '北京市', NULL, '朝阳区', '110105'); -INSERT INTO `cardcodes` VALUES (6, '北京市', NULL, '丰台区', '110106'); -INSERT INTO `cardcodes` VALUES (7, '北京市', NULL, '石景山区', '110107'); -INSERT INTO `cardcodes` VALUES (8, '北京市', NULL, '海淀区', '110108'); -INSERT INTO `cardcodes` VALUES (9, '北京市', NULL, '门头沟区', '110109'); -INSERT INTO `cardcodes` VALUES (10, '北京市', NULL, '燕山区', '110110'); -INSERT INTO `cardcodes` VALUES (11, '北京市', NULL, '房山区', '110111'); -INSERT INTO `cardcodes` VALUES (12, '北京市', NULL, '通州区', '110112'); -INSERT INTO `cardcodes` VALUES (13, '北京市', NULL, '顺义区', '110113'); -INSERT INTO `cardcodes` VALUES (14, '北京市', NULL, '昌平区', '110114'); -INSERT INTO `cardcodes` VALUES (15, '北京市', NULL, '大兴区', '110115'); -INSERT INTO `cardcodes` VALUES (16, '北京市', NULL, '怀柔区', '110116'); -INSERT INTO `cardcodes` VALUES (17, '北京市', NULL, '平谷区', '110117'); -INSERT INTO `cardcodes` VALUES (18, '北京市', NULL, '昌平县', '110221'); -INSERT INTO `cardcodes` VALUES (19, '北京市', NULL, '顺义县', '110222'); -INSERT INTO `cardcodes` VALUES (20, '北京市', NULL, '通县', '110223'); -INSERT INTO `cardcodes` VALUES (21, '北京市', NULL, '大兴县', '110224'); -INSERT INTO `cardcodes` VALUES (22, '北京市', NULL, '房山县', '110225'); -INSERT INTO `cardcodes` VALUES (23, '北京市', NULL, '平谷县', '110226'); -INSERT INTO `cardcodes` VALUES (24, '北京市', NULL, '怀柔县', '110227'); -INSERT INTO `cardcodes` VALUES (25, '北京市', NULL, '密云县', '110228'); -INSERT INTO `cardcodes` VALUES (26, '北京市', NULL, '延庆县', '110229'); -INSERT INTO `cardcodes` VALUES (27, '天津市', NULL, '和平区', '120101'); -INSERT INTO `cardcodes` VALUES (28, '天津市', NULL, '河东区', '120102'); -INSERT INTO `cardcodes` VALUES (29, '天津市', NULL, '河西区', '120103'); -INSERT INTO `cardcodes` VALUES (30, '天津市', NULL, '南开区', '120104'); -INSERT INTO `cardcodes` VALUES (31, '天津市', NULL, '河北区', '120105'); -INSERT INTO `cardcodes` VALUES (32, '天津市', NULL, '红桥区', '120106'); -INSERT INTO `cardcodes` VALUES (33, '天津市', NULL, '塘沽区', '120107'); -INSERT INTO `cardcodes` VALUES (34, '天津市', NULL, '汉沽区', '120108'); -INSERT INTO `cardcodes` VALUES (35, '天津市', NULL, '大港区', '120109'); -INSERT INTO `cardcodes` VALUES (36, '天津市', NULL, '东丽区', '120110'); -INSERT INTO `cardcodes` VALUES (37, '天津市', NULL, '西青区', '120111'); -INSERT INTO `cardcodes` VALUES (38, '天津市', NULL, '津南区', '120112'); -INSERT INTO `cardcodes` VALUES (39, '天津市', NULL, '北辰区', '120113'); -INSERT INTO `cardcodes` VALUES (40, '天津市', NULL, '武清区', '120114'); -INSERT INTO `cardcodes` VALUES (41, '天津市', NULL, '宝坻区', '120115'); -INSERT INTO `cardcodes` VALUES (42, '天津市', NULL, '宁河县', '120221'); -INSERT INTO `cardcodes` VALUES (43, '天津市', NULL, '武清县', '120222'); -INSERT INTO `cardcodes` VALUES (44, '天津市', NULL, '静海县', '120223'); -INSERT INTO `cardcodes` VALUES (45, '天津市', NULL, '宝坻县', '120224'); -INSERT INTO `cardcodes` VALUES (46, '天津市', NULL, '蓟县', '120225'); -INSERT INTO `cardcodes` VALUES (47, '河北省', '石家庄市', '市辖区', '130101'); -INSERT INTO `cardcodes` VALUES (48, '河北省', '石家庄市', '长安区', '130102'); -INSERT INTO `cardcodes` VALUES (49, '河北省', '石家庄市', '桥东区', '130103'); -INSERT INTO `cardcodes` VALUES (50, '河北省', '石家庄市', '桥西区', '130104'); -INSERT INTO `cardcodes` VALUES (51, '河北省', '石家庄市', '新华区', '130105'); -INSERT INTO `cardcodes` VALUES (52, '河北省', '石家庄市', '郊区', '130106'); -INSERT INTO `cardcodes` VALUES (53, '河北省', '石家庄市', '井陉矿区', '130107'); -INSERT INTO `cardcodes` VALUES (54, '河北省', '石家庄市', '裕华区', '130108'); -INSERT INTO `cardcodes` VALUES (55, '河北省', '石家庄市', '井陉县', '130121'); -INSERT INTO `cardcodes` VALUES (56, '河北省', '石家庄市', '获鹿县', '130122'); -INSERT INTO `cardcodes` VALUES (57, '河北省', '石家庄市', '正定县', '130123'); -INSERT INTO `cardcodes` VALUES (58, '河北省', '石家庄市', '栾城县', '130124'); -INSERT INTO `cardcodes` VALUES (59, '河北省', '石家庄市', '行唐县', '130125'); -INSERT INTO `cardcodes` VALUES (60, '河北省', '石家庄市', '灵寿县', '130126'); -INSERT INTO `cardcodes` VALUES (61, '河北省', '石家庄市', '高邑县', '130127'); -INSERT INTO `cardcodes` VALUES (62, '河北省', '石家庄市', '深泽县', '130128'); -INSERT INTO `cardcodes` VALUES (63, '河北省', '石家庄市', '赞皇县', '130129'); -INSERT INTO `cardcodes` VALUES (64, '河北省', '石家庄市', '无极县', '130130'); -INSERT INTO `cardcodes` VALUES (65, '河北省', '石家庄市', '平山县', '130131'); -INSERT INTO `cardcodes` VALUES (66, '河北省', '石家庄市', '元氏县', '130132'); -INSERT INTO `cardcodes` VALUES (67, '河北省', '石家庄市', '赵县', '130133'); -INSERT INTO `cardcodes` VALUES (68, '河北省', '石家庄市', '辛集市', '130181'); -INSERT INTO `cardcodes` VALUES (69, '河北省', '石家庄市', '藁城市', '130182'); -INSERT INTO `cardcodes` VALUES (70, '河北省', '石家庄市', '晋州市', '130183'); -INSERT INTO `cardcodes` VALUES (71, '河北省', '石家庄市', '新乐市', '130184'); -INSERT INTO `cardcodes` VALUES (72, '河北省', '石家庄市', '鹿泉市', '130185'); -INSERT INTO `cardcodes` VALUES (73, '河北省', '唐山市', '市辖区', '130201'); -INSERT INTO `cardcodes` VALUES (74, '河北省', '唐山市', '路南区', '130202'); -INSERT INTO `cardcodes` VALUES (75, '河北省', '唐山市', '路北区', '130203'); -INSERT INTO `cardcodes` VALUES (76, '河北省', '唐山市', '古冶区', '130204'); -INSERT INTO `cardcodes` VALUES (77, '河北省', '唐山市', '开平区', '130205'); -INSERT INTO `cardcodes` VALUES (78, '河北省', '唐山市', '新区', '130206'); -INSERT INTO `cardcodes` VALUES (79, '河北省', '唐山市', '丰南区', '130207'); -INSERT INTO `cardcodes` VALUES (80, '河北省', '唐山市', '丰润区', '130208'); -INSERT INTO `cardcodes` VALUES (81, '河北省', '唐山市', '丰润县', '130221'); -INSERT INTO `cardcodes` VALUES (82, '河北省', '唐山市', '丰南县', '130222'); -INSERT INTO `cardcodes` VALUES (83, '河北省', '唐山市', '滦县', '130223'); -INSERT INTO `cardcodes` VALUES (84, '河北省', '唐山市', '滦南县', '130224'); -INSERT INTO `cardcodes` VALUES (85, '河北省', '唐山市', '乐亭县', '130225'); -INSERT INTO `cardcodes` VALUES (86, '河北省', '唐山市', '迁安县', '130226'); -INSERT INTO `cardcodes` VALUES (87, '河北省', '唐山市', '迁西县', '130227'); -INSERT INTO `cardcodes` VALUES (88, '河北省', '唐山市', '遵化县', '130228'); -INSERT INTO `cardcodes` VALUES (89, '河北省', '唐山市', '玉田县', '130229'); -INSERT INTO `cardcodes` VALUES (90, '河北省', '唐山市', '唐海县', '130230'); -INSERT INTO `cardcodes` VALUES (91, '河北省', '唐山市', '遵化市', '130281'); -INSERT INTO `cardcodes` VALUES (92, '河北省', '唐山市', '丰南市', '130282'); -INSERT INTO `cardcodes` VALUES (93, '河北省', '唐山市', '迁安市', '130283'); -INSERT INTO `cardcodes` VALUES (94, '河北省', '秦皇岛市', '市辖区', '130301'); -INSERT INTO `cardcodes` VALUES (95, '河北省', '秦皇岛市', '海港区', '130302'); -INSERT INTO `cardcodes` VALUES (96, '河北省', '秦皇岛市', '山海关区', '130303'); -INSERT INTO `cardcodes` VALUES (97, '河北省', '秦皇岛市', '北戴河区', '130304'); -INSERT INTO `cardcodes` VALUES (98, '河北省', '秦皇岛市', '青龙满族自治县', '130321'); -INSERT INTO `cardcodes` VALUES (99, '河北省', '秦皇岛市', '昌黎县', '130322'); -INSERT INTO `cardcodes` VALUES (100, '河北省', '秦皇岛市', '抚宁县', '130323'); -INSERT INTO `cardcodes` VALUES (101, '河北省', '秦皇岛市', '卢龙县', '130324'); -INSERT INTO `cardcodes` VALUES (102, '河北省', '邯郸市', '市辖区', '130401'); -INSERT INTO `cardcodes` VALUES (103, '河北省', '邯郸市', '邯山区', '130402'); -INSERT INTO `cardcodes` VALUES (104, '河北省', '邯郸市', '丛台区', '130403'); -INSERT INTO `cardcodes` VALUES (105, '河北省', '邯郸市', '复兴区', '130404'); -INSERT INTO `cardcodes` VALUES (106, '河北省', '邯郸市', '郊区', '130405'); -INSERT INTO `cardcodes` VALUES (107, '河北省', '邯郸市', '峰峰矿区', '130406'); -INSERT INTO `cardcodes` VALUES (108, '河北省', '邯郸市', '邯郸县', '130421'); -INSERT INTO `cardcodes` VALUES (109, '河北省', '邯郸市', '武安县', '130422'); -INSERT INTO `cardcodes` VALUES (110, '河北省', '邯郸市', '临漳县', '130423'); -INSERT INTO `cardcodes` VALUES (111, '河北省', '邯郸市', '成安县', '130424'); -INSERT INTO `cardcodes` VALUES (112, '河北省', '邯郸市', '大名县', '130425'); -INSERT INTO `cardcodes` VALUES (113, '河北省', '邯郸市', '涉县', '130426'); -INSERT INTO `cardcodes` VALUES (114, '河北省', '邯郸市', '磁县', '130427'); -INSERT INTO `cardcodes` VALUES (115, '河北省', '邯郸市', '肥乡县', '130428'); -INSERT INTO `cardcodes` VALUES (116, '河北省', '邯郸市', '永年县', '130429'); -INSERT INTO `cardcodes` VALUES (117, '河北省', '邯郸市', '邱县', '130430'); -INSERT INTO `cardcodes` VALUES (118, '河北省', '邯郸市', '鸡泽县', '130431'); -INSERT INTO `cardcodes` VALUES (119, '河北省', '邯郸市', '广平县', '130432'); -INSERT INTO `cardcodes` VALUES (120, '河北省', '邯郸市', '馆陶县', '130433'); -INSERT INTO `cardcodes` VALUES (121, '河北省', '邯郸市', '魏县', '130434'); -INSERT INTO `cardcodes` VALUES (122, '河北省', '邯郸市', '曲周县', '130435'); -INSERT INTO `cardcodes` VALUES (123, '河北省', '邯郸市', '武安市', '130481'); -INSERT INTO `cardcodes` VALUES (124, '河北省', '邢台市', '市辖区', '130501'); -INSERT INTO `cardcodes` VALUES (125, '河北省', '邢台市', '桥东区', '130502'); -INSERT INTO `cardcodes` VALUES (126, '河北省', '邢台市', '桥西区', '130503'); -INSERT INTO `cardcodes` VALUES (127, '河北省', '邢台市', '邢台县', '130521'); -INSERT INTO `cardcodes` VALUES (128, '河北省', '邢台市', '临城县', '130522'); -INSERT INTO `cardcodes` VALUES (129, '河北省', '邢台市', '内丘县', '130523'); -INSERT INTO `cardcodes` VALUES (130, '河北省', '邢台市', '柏乡县', '130524'); -INSERT INTO `cardcodes` VALUES (131, '河北省', '邢台市', '隆尧县', '130525'); -INSERT INTO `cardcodes` VALUES (132, '河北省', '邢台市', '任县', '130526'); -INSERT INTO `cardcodes` VALUES (133, '河北省', '邢台市', '南和县', '130527'); -INSERT INTO `cardcodes` VALUES (134, '河北省', '邢台市', '宁晋县', '130528'); -INSERT INTO `cardcodes` VALUES (135, '河北省', '邢台市', '巨鹿县', '130529'); -INSERT INTO `cardcodes` VALUES (136, '河北省', '邢台市', '新河县', '130530'); -INSERT INTO `cardcodes` VALUES (137, '河北省', '邢台市', '广宗县', '130531'); -INSERT INTO `cardcodes` VALUES (138, '河北省', '邢台市', '平乡县', '130532'); -INSERT INTO `cardcodes` VALUES (139, '河北省', '邢台市', '威县', '130533'); -INSERT INTO `cardcodes` VALUES (140, '河北省', '邢台市', '清河县', '130534'); -INSERT INTO `cardcodes` VALUES (141, '河北省', '邢台市', '临西县', '130535'); -INSERT INTO `cardcodes` VALUES (142, '河北省', '邢台市', '南宫市', '130581'); -INSERT INTO `cardcodes` VALUES (143, '河北省', '邢台市', '沙河市', '130582'); -INSERT INTO `cardcodes` VALUES (144, '河北省', '保定市', '市辖区', '130601'); -INSERT INTO `cardcodes` VALUES (145, '河北省', '保定市', '新市区', '130602'); -INSERT INTO `cardcodes` VALUES (146, '河北省', '保定市', '北市区', '130603'); -INSERT INTO `cardcodes` VALUES (147, '河北省', '保定市', '南市区', '130604'); -INSERT INTO `cardcodes` VALUES (148, '河北省', '保定市', '满城县', '130621'); -INSERT INTO `cardcodes` VALUES (149, '河北省', '保定市', '清苑县', '130622'); -INSERT INTO `cardcodes` VALUES (150, '河北省', '保定市', '涞水县', '130623'); -INSERT INTO `cardcodes` VALUES (151, '河北省', '保定市', '阜平县', '130624'); -INSERT INTO `cardcodes` VALUES (152, '河北省', '保定市', '徐水县', '130625'); -INSERT INTO `cardcodes` VALUES (153, '河北省', '保定市', '定兴县', '130626'); -INSERT INTO `cardcodes` VALUES (154, '河北省', '保定市', '唐县', '130627'); -INSERT INTO `cardcodes` VALUES (155, '河北省', '保定市', '高阳县', '130628'); -INSERT INTO `cardcodes` VALUES (156, '河北省', '保定市', '容城县', '130629'); -INSERT INTO `cardcodes` VALUES (157, '河北省', '保定市', '涞源县', '130630'); -INSERT INTO `cardcodes` VALUES (158, '河北省', '保定市', '望都县', '130631'); -INSERT INTO `cardcodes` VALUES (159, '河北省', '保定市', '安新县', '130632'); -INSERT INTO `cardcodes` VALUES (160, '河北省', '保定市', '易县', '130633'); -INSERT INTO `cardcodes` VALUES (161, '河北省', '保定市', '曲阳县', '130634'); -INSERT INTO `cardcodes` VALUES (162, '河北省', '保定市', '蠡县', '130635'); -INSERT INTO `cardcodes` VALUES (163, '河北省', '保定市', '顺平县', '130636'); -INSERT INTO `cardcodes` VALUES (164, '河北省', '保定市', '博野县', '130637'); -INSERT INTO `cardcodes` VALUES (165, '河北省', '保定市', '雄县', '130638'); -INSERT INTO `cardcodes` VALUES (166, '河北省', '保定市', '涿州市', '130681'); -INSERT INTO `cardcodes` VALUES (167, '河北省', '保定市', '定州市', '130682'); -INSERT INTO `cardcodes` VALUES (168, '河北省', '保定市', '安国市', '130683'); -INSERT INTO `cardcodes` VALUES (169, '河北省', '保定市', '高碑店市', '130684'); -INSERT INTO `cardcodes` VALUES (170, '河北省', '张家口市', '市辖区', '130701'); -INSERT INTO `cardcodes` VALUES (171, '河北省', '张家口市', '桥东区', '130702'); -INSERT INTO `cardcodes` VALUES (172, '河北省', '张家口市', '桥西区', '130703'); -INSERT INTO `cardcodes` VALUES (173, '河北省', '张家口市', '宣化区', '130705'); -INSERT INTO `cardcodes` VALUES (174, '河北省', '张家口市', '下花园区', '130706'); -INSERT INTO `cardcodes` VALUES (175, '河北省', '张家口市', '宣化县', '130721'); -INSERT INTO `cardcodes` VALUES (176, '河北省', '张家口市', '张北县', '130722'); -INSERT INTO `cardcodes` VALUES (177, '河北省', '张家口市', '康保县', '130723'); -INSERT INTO `cardcodes` VALUES (178, '河北省', '张家口市', '沽源县', '130724'); -INSERT INTO `cardcodes` VALUES (179, '河北省', '张家口市', '尚义县', '130725'); -INSERT INTO `cardcodes` VALUES (180, '河北省', '张家口市', '蔚县', '130726'); -INSERT INTO `cardcodes` VALUES (181, '河北省', '张家口市', '阳原县', '130727'); -INSERT INTO `cardcodes` VALUES (182, '河北省', '张家口市', '怀安县', '130728'); -INSERT INTO `cardcodes` VALUES (183, '河北省', '张家口市', '万全县', '130729'); -INSERT INTO `cardcodes` VALUES (184, '河北省', '张家口市', '怀来县', '130730'); -INSERT INTO `cardcodes` VALUES (185, '河北省', '张家口市', '涿鹿县', '130731'); -INSERT INTO `cardcodes` VALUES (186, '河北省', '张家口市', '赤城县', '130732'); -INSERT INTO `cardcodes` VALUES (187, '河北省', '张家口市', '崇礼县', '130733'); -INSERT INTO `cardcodes` VALUES (188, '河北省', '承德市', '市辖区', '130801'); -INSERT INTO `cardcodes` VALUES (189, '河北省', '承德市', '双桥区', '130802'); -INSERT INTO `cardcodes` VALUES (190, '河北省', '承德市', '双滦区', '130803'); -INSERT INTO `cardcodes` VALUES (191, '河北省', '承德市', '鹰手营子矿区', '130804'); -INSERT INTO `cardcodes` VALUES (192, '河北省', '承德市', '承德县', '130821'); -INSERT INTO `cardcodes` VALUES (193, '河北省', '承德市', '兴隆县', '130822'); -INSERT INTO `cardcodes` VALUES (194, '河北省', '承德市', '平泉县', '130823'); -INSERT INTO `cardcodes` VALUES (195, '河北省', '承德市', '滦平县', '130824'); -INSERT INTO `cardcodes` VALUES (196, '河北省', '承德市', '隆化县', '130825'); -INSERT INTO `cardcodes` VALUES (197, '河北省', '承德市', '丰宁满族自治县', '130826'); -INSERT INTO `cardcodes` VALUES (198, '河北省', '承德市', '宽城满族自治县', '130827'); -INSERT INTO `cardcodes` VALUES (199, '河北省', '承德市', '围场满族蒙古族自治县', '130828'); -INSERT INTO `cardcodes` VALUES (200, '河北省', '沧州市', '市辖区', '130901'); -INSERT INTO `cardcodes` VALUES (201, '河北省', '沧州市', '新华区', '130902'); -INSERT INTO `cardcodes` VALUES (202, '河北省', '沧州市', '运河区', '130903'); -INSERT INTO `cardcodes` VALUES (203, '河北省', '沧州市', '郊区', '130904'); -INSERT INTO `cardcodes` VALUES (204, '河北省', '沧州市', '沧县', '130921'); -INSERT INTO `cardcodes` VALUES (205, '河北省', '沧州市', '青县', '130922'); -INSERT INTO `cardcodes` VALUES (206, '河北省', '沧州市', '东光县', '130923'); -INSERT INTO `cardcodes` VALUES (207, '河北省', '沧州市', '海兴县', '130924'); -INSERT INTO `cardcodes` VALUES (208, '河北省', '沧州市', '盐山县', '130925'); -INSERT INTO `cardcodes` VALUES (209, '河北省', '沧州市', '肃宁县', '130926'); -INSERT INTO `cardcodes` VALUES (210, '河北省', '沧州市', '南皮县', '130927'); -INSERT INTO `cardcodes` VALUES (211, '河北省', '沧州市', '吴桥县', '130928'); -INSERT INTO `cardcodes` VALUES (212, '河北省', '沧州市', '献县', '130929'); -INSERT INTO `cardcodes` VALUES (213, '河北省', '沧州市', '孟村回族自治县', '130930'); -INSERT INTO `cardcodes` VALUES (214, '河北省', '沧州市', '泊头市', '130981'); -INSERT INTO `cardcodes` VALUES (215, '河北省', '沧州市', '任丘市', '130982'); -INSERT INTO `cardcodes` VALUES (216, '河北省', '沧州市', '黄骅市', '130983'); -INSERT INTO `cardcodes` VALUES (217, '河北省', '沧州市', '河间市', '130984'); -INSERT INTO `cardcodes` VALUES (218, '河北省', '廊坊市', '市辖区', '131001'); -INSERT INTO `cardcodes` VALUES (219, '河北省', '廊坊市', '安次区', '131002'); -INSERT INTO `cardcodes` VALUES (220, '河北省', '廊坊市', '广阳区', '131003'); -INSERT INTO `cardcodes` VALUES (221, '河北省', '廊坊市', '三河县', '131021'); -INSERT INTO `cardcodes` VALUES (222, '河北省', '廊坊市', '固安县', '131022'); -INSERT INTO `cardcodes` VALUES (223, '河北省', '廊坊市', '永清县', '131023'); -INSERT INTO `cardcodes` VALUES (224, '河北省', '廊坊市', '香河县', '131024'); -INSERT INTO `cardcodes` VALUES (225, '河北省', '廊坊市', '大城县', '131025'); -INSERT INTO `cardcodes` VALUES (226, '河北省', '廊坊市', '文安县', '131026'); -INSERT INTO `cardcodes` VALUES (227, '河北省', '廊坊市', '霸县', '131027'); -INSERT INTO `cardcodes` VALUES (228, '河北省', '廊坊市', '大厂回族自治县', '131028'); -INSERT INTO `cardcodes` VALUES (229, '河北省', '廊坊市', '霸州市', '131081'); -INSERT INTO `cardcodes` VALUES (230, '河北省', '廊坊市', '三河市', '131082'); -INSERT INTO `cardcodes` VALUES (231, '河北省', '衡水市', '市辖区', '131101'); -INSERT INTO `cardcodes` VALUES (232, '河北省', '衡水市', '桃城区', '131102'); -INSERT INTO `cardcodes` VALUES (233, '河北省', '衡水市', '枣强县', '131121'); -INSERT INTO `cardcodes` VALUES (234, '河北省', '衡水市', '武邑县', '131122'); -INSERT INTO `cardcodes` VALUES (235, '河北省', '衡水市', '武强县', '131123'); -INSERT INTO `cardcodes` VALUES (236, '河北省', '衡水市', '饶阳县', '131124'); -INSERT INTO `cardcodes` VALUES (237, '河北省', '衡水市', '安平县', '131125'); -INSERT INTO `cardcodes` VALUES (238, '河北省', '衡水市', '故城县', '131126'); -INSERT INTO `cardcodes` VALUES (239, '河北省', '衡水市', '景县', '131127'); -INSERT INTO `cardcodes` VALUES (240, '河北省', '衡水市', '阜城县', '131128'); -INSERT INTO `cardcodes` VALUES (241, '河北省', '衡水市', '冀州市', '131181'); -INSERT INTO `cardcodes` VALUES (242, '河北省', '衡水市', '深州市', '131182'); -INSERT INTO `cardcodes` VALUES (243, '河北省', '邯郸地区', '邯郸市', '132101'); -INSERT INTO `cardcodes` VALUES (244, '河北省', '邯郸地区', '大名县', '132121'); -INSERT INTO `cardcodes` VALUES (245, '河北省', '邯郸地区', '魏县', '132122'); -INSERT INTO `cardcodes` VALUES (246, '河北省', '邯郸地区', '曲周县', '132123'); -INSERT INTO `cardcodes` VALUES (247, '河北省', '邯郸地区', '丘县', '132124'); -INSERT INTO `cardcodes` VALUES (248, '河北省', '邯郸地区', '鸡泽县', '132125'); -INSERT INTO `cardcodes` VALUES (249, '河北省', '邯郸地区', '肥乡县', '132126'); -INSERT INTO `cardcodes` VALUES (250, '河北省', '邯郸地区', '广平县', '132127'); -INSERT INTO `cardcodes` VALUES (251, '河北省', '邯郸地区', '成安县', '132128'); -INSERT INTO `cardcodes` VALUES (252, '河北省', '邯郸地区', '临漳县', '132129'); -INSERT INTO `cardcodes` VALUES (253, '河北省', '邯郸地区', '磁县', '132130'); -INSERT INTO `cardcodes` VALUES (254, '河北省', '邯郸地区', '武安县', '132131'); -INSERT INTO `cardcodes` VALUES (255, '河北省', '邯郸地区', '涉县', '132132'); -INSERT INTO `cardcodes` VALUES (256, '河北省', '邯郸地区', '永年县', '132133'); -INSERT INTO `cardcodes` VALUES (257, '河北省', '邯郸地区', '邯郸县', '132134'); -INSERT INTO `cardcodes` VALUES (258, '河北省', '邯郸地区', '馆陶县', '132135'); -INSERT INTO `cardcodes` VALUES (259, '河北省', '邢台地区', '南宫市', '132201'); -INSERT INTO `cardcodes` VALUES (260, '河北省', '邢台地区', '沙河市', '132202'); -INSERT INTO `cardcodes` VALUES (261, '河北省', '邢台地区', '邢台县', '132221'); -INSERT INTO `cardcodes` VALUES (262, '河北省', '邢台地区', '沙河县', '132222'); -INSERT INTO `cardcodes` VALUES (263, '河北省', '邢台地区', '临城县', '132223'); -INSERT INTO `cardcodes` VALUES (264, '河北省', '邢台地区', '内丘县', '132224'); -INSERT INTO `cardcodes` VALUES (265, '河北省', '邢台地区', '柏乡县', '132225'); -INSERT INTO `cardcodes` VALUES (266, '河北省', '邢台地区', '隆尧县', '132226'); -INSERT INTO `cardcodes` VALUES (267, '河北省', '邢台地区', '任县', '132227'); -INSERT INTO `cardcodes` VALUES (268, '河北省', '邢台地区', '南和县', '132228'); -INSERT INTO `cardcodes` VALUES (269, '河北省', '邢台地区', '宁晋县', '132229'); -INSERT INTO `cardcodes` VALUES (270, '河北省', '邢台地区', '南宫县', '132230'); -INSERT INTO `cardcodes` VALUES (271, '河北省', '邢台地区', '巨鹿县', '132231'); -INSERT INTO `cardcodes` VALUES (272, '河北省', '邢台地区', '新河县', '132232'); -INSERT INTO `cardcodes` VALUES (273, '河北省', '邢台地区', '广宗县', '132233'); -INSERT INTO `cardcodes` VALUES (274, '河北省', '邢台地区', '平乡县', '132234'); -INSERT INTO `cardcodes` VALUES (275, '河北省', '邢台地区', '威县', '132235'); -INSERT INTO `cardcodes` VALUES (276, '河北省', '邢台地区', '清河县', '132236'); -INSERT INTO `cardcodes` VALUES (277, '河北省', '邢台地区', '临西县', '132237'); -INSERT INTO `cardcodes` VALUES (278, '河北省', '石家庄市', '辛集市', '132301'); -INSERT INTO `cardcodes` VALUES (279, '河北省', '石家庄市', '藁城市', '132302'); -INSERT INTO `cardcodes` VALUES (280, '河北省', '石家庄市', '束鹿县', '132321'); -INSERT INTO `cardcodes` VALUES (281, '河北省', '石家庄市', '晋县', '132322'); -INSERT INTO `cardcodes` VALUES (282, '河北省', '石家庄市', '深泽县', '132323'); -INSERT INTO `cardcodes` VALUES (283, '河北省', '石家庄市', '无极县', '132324'); -INSERT INTO `cardcodes` VALUES (284, '河北省', '石家庄市', '藁城县', '132325'); -INSERT INTO `cardcodes` VALUES (285, '河北省', '石家庄市', '赵县', '132326'); -INSERT INTO `cardcodes` VALUES (286, '河北省', '石家庄市', '栾城县', '132327'); -INSERT INTO `cardcodes` VALUES (287, '河北省', '石家庄市', '正定县', '132328'); -INSERT INTO `cardcodes` VALUES (288, '河北省', '石家庄市', '新乐县', '132329'); -INSERT INTO `cardcodes` VALUES (289, '河北省', '石家庄市', '高邑县', '132330'); -INSERT INTO `cardcodes` VALUES (290, '河北省', '石家庄市', '元氏县', '132331'); -INSERT INTO `cardcodes` VALUES (291, '河北省', '石家庄市', '赞皇县', '132332'); -INSERT INTO `cardcodes` VALUES (292, '河北省', '石家庄市', '井陉县', '132333'); -INSERT INTO `cardcodes` VALUES (293, '河北省', '石家庄市', '获鹿县', '132334'); -INSERT INTO `cardcodes` VALUES (294, '河北省', '石家庄市', '平山县', '132335'); -INSERT INTO `cardcodes` VALUES (295, '河北省', '石家庄市', '灵寿县', '132336'); -INSERT INTO `cardcodes` VALUES (296, '河北省', '石家庄市', '行唐县', '132337'); -INSERT INTO `cardcodes` VALUES (297, '河北省', '保定地区', '定州市', '132401'); -INSERT INTO `cardcodes` VALUES (298, '河北省', '保定地区', '涿州市', '132402'); -INSERT INTO `cardcodes` VALUES (299, '河北省', '保定地区', '安国市', '132403'); -INSERT INTO `cardcodes` VALUES (300, '河北省', '保定地区', '高碑店市', '132404'); -INSERT INTO `cardcodes` VALUES (301, '河北省', '保定地区', '易县', '132421'); -INSERT INTO `cardcodes` VALUES (302, '河北省', '保定地区', '满城县', '132422'); -INSERT INTO `cardcodes` VALUES (303, '河北省', '保定地区', '徐水县', '132423'); -INSERT INTO `cardcodes` VALUES (304, '河北省', '保定地区', '涞源县', '132424'); -INSERT INTO `cardcodes` VALUES (305, '河北省', '保定地区', '定兴县', '132425'); -INSERT INTO `cardcodes` VALUES (306, '河北省', '保定地区', '完县', '132426'); -INSERT INTO `cardcodes` VALUES (307, '河北省', '保定地区', '唐县', '132427'); -INSERT INTO `cardcodes` VALUES (308, '河北省', '保定地区', '望都县', '132428'); -INSERT INTO `cardcodes` VALUES (309, '河北省', '保定地区', '涞水县', '132429'); -INSERT INTO `cardcodes` VALUES (310, '河北省', '保定地区', '涿县', '132430'); -INSERT INTO `cardcodes` VALUES (311, '河北省', '保定地区', '清苑县', '132431'); -INSERT INTO `cardcodes` VALUES (312, '河北省', '保定地区', '高阳县', '132432'); -INSERT INTO `cardcodes` VALUES (313, '河北省', '保定地区', '安新县', '132433'); -INSERT INTO `cardcodes` VALUES (314, '河北省', '保定地区', '雄县', '132434'); -INSERT INTO `cardcodes` VALUES (315, '河北省', '保定地区', '容城县', '132435'); -INSERT INTO `cardcodes` VALUES (316, '河北省', '保定地区', '新城县', '132436'); -INSERT INTO `cardcodes` VALUES (317, '河北省', '保定地区', '曲阳县', '132437'); -INSERT INTO `cardcodes` VALUES (318, '河北省', '保定地区', '阜平县', '132438'); -INSERT INTO `cardcodes` VALUES (319, '河北省', '保定地区', '定县', '132439'); -INSERT INTO `cardcodes` VALUES (320, '河北省', '保定地区', '安国县', '132440'); -INSERT INTO `cardcodes` VALUES (321, '河北省', '保定地区', '博野县', '132441'); -INSERT INTO `cardcodes` VALUES (322, '河北省', '保定地区', '蠡县', '132442'); -INSERT INTO `cardcodes` VALUES (323, '河北省', '张家口地区', '张家口市', '132501'); -INSERT INTO `cardcodes` VALUES (324, '河北省', '张家口地区', '张北市', '132521'); -INSERT INTO `cardcodes` VALUES (325, '河北省', '张家口地区', '康保县', '132522'); -INSERT INTO `cardcodes` VALUES (326, '河北省', '张家口地区', '沽源县', '132523'); -INSERT INTO `cardcodes` VALUES (327, '河北省', '张家口地区', '尚义县', '132524'); -INSERT INTO `cardcodes` VALUES (328, '河北省', '张家口地区', '蔚县', '132525'); -INSERT INTO `cardcodes` VALUES (329, '河北省', '张家口地区', '阳原县', '132526'); -INSERT INTO `cardcodes` VALUES (330, '河北省', '张家口地区', '怀安县', '132527'); -INSERT INTO `cardcodes` VALUES (331, '河北省', '张家口地区', '万全县', '132528'); -INSERT INTO `cardcodes` VALUES (332, '河北省', '张家口地区', '怀来县', '132529'); -INSERT INTO `cardcodes` VALUES (333, '河北省', '张家口地区', '涿鹿县', '132530'); -INSERT INTO `cardcodes` VALUES (334, '河北省', '张家口地区', '宣化县', '132531'); -INSERT INTO `cardcodes` VALUES (335, '河北省', '张家口地区', '赤城县', '132532'); -INSERT INTO `cardcodes` VALUES (336, '河北省', '张家口地区', '崇礼县', '132533'); -INSERT INTO `cardcodes` VALUES (337, '河北省', '承德地区', '承德市', '132601'); -INSERT INTO `cardcodes` VALUES (338, '河北省', '承德地区', '青龙县', '132621'); -INSERT INTO `cardcodes` VALUES (339, '河北省', '承德地区', '宽城满族自治县', '132622'); -INSERT INTO `cardcodes` VALUES (340, '河北省', '承德地区', '兴隆县', '132623'); -INSERT INTO `cardcodes` VALUES (341, '河北省', '承德地区', '平泉县', '132624'); -INSERT INTO `cardcodes` VALUES (342, '河北省', '承德地区', '承德县', '132625'); -INSERT INTO `cardcodes` VALUES (343, '河北省', '承德地区', '滦平县', '132626'); -INSERT INTO `cardcodes` VALUES (344, '河北省', '承德地区', '丰宁满族自治县', '132627'); -INSERT INTO `cardcodes` VALUES (345, '河北省', '承德地区', '隆化县', '132628'); -INSERT INTO `cardcodes` VALUES (346, '河北省', '承德地区', '围场满族蒙古族自治县', '132629'); -INSERT INTO `cardcodes` VALUES (347, '河北省', '廊坊地区', '廊坊市', '132801'); -INSERT INTO `cardcodes` VALUES (348, '河北省', '廊坊地区', '三河县', '132821'); -INSERT INTO `cardcodes` VALUES (349, '河北省', '廊坊地区', '大厂回族自治县', '132822'); -INSERT INTO `cardcodes` VALUES (350, '河北省', '廊坊地区', '香河县', '132823'); -INSERT INTO `cardcodes` VALUES (351, '河北省', '廊坊地区', '永清县', '132825'); -INSERT INTO `cardcodes` VALUES (352, '河北省', '廊坊地区', '固安县', '132826'); -INSERT INTO `cardcodes` VALUES (353, '河北省', '廊坊地区', '霸县', '132827'); -INSERT INTO `cardcodes` VALUES (354, '河北省', '廊坊地区', '文安县', '132828'); -INSERT INTO `cardcodes` VALUES (355, '河北省', '廊坊地区', '大城县', '132829'); -INSERT INTO `cardcodes` VALUES (356, '河北省', '沧州地区', '沧州市', '132901'); -INSERT INTO `cardcodes` VALUES (357, '河北省', '沧州地区', '泊头市', '132902'); -INSERT INTO `cardcodes` VALUES (358, '河北省', '沧州地区', '任丘市', '132903'); -INSERT INTO `cardcodes` VALUES (359, '河北省', '沧州地区', '黄骅市', '132904'); -INSERT INTO `cardcodes` VALUES (360, '河北省', '沧州地区', '河间市', '132905'); -INSERT INTO `cardcodes` VALUES (361, '河北省', '沧州地区', '沧县', '132921'); -INSERT INTO `cardcodes` VALUES (362, '河北省', '沧州地区', '河间县', '132922'); -INSERT INTO `cardcodes` VALUES (363, '河北省', '沧州地区', '肃宁县', '132923'); -INSERT INTO `cardcodes` VALUES (364, '河北省', '沧州地区', '献县', '132924'); -INSERT INTO `cardcodes` VALUES (365, '河北省', '沧州地区', '交河县', '132925'); -INSERT INTO `cardcodes` VALUES (366, '河北省', '沧州地区', '吴桥县', '132926'); -INSERT INTO `cardcodes` VALUES (367, '河北省', '沧州地区', '东光县', '132927'); -INSERT INTO `cardcodes` VALUES (368, '河北省', '沧州地区', '南皮县', '132928'); -INSERT INTO `cardcodes` VALUES (369, '河北省', '沧州地区', '盐山县', '132929'); -INSERT INTO `cardcodes` VALUES (370, '河北省', '沧州地区', '黄骅县', '132930'); -INSERT INTO `cardcodes` VALUES (371, '河北省', '沧州地区', '孟村回族自治县', '132931'); -INSERT INTO `cardcodes` VALUES (372, '河北省', '沧州地区', '青县', '132932'); -INSERT INTO `cardcodes` VALUES (373, '河北省', '沧州地区', '任丘县', '132933'); -INSERT INTO `cardcodes` VALUES (374, '河北省', '沧州地区', '海兴县', '132934'); -INSERT INTO `cardcodes` VALUES (375, '河北省', '衡水地区', '衡水市', '133001'); -INSERT INTO `cardcodes` VALUES (376, '河北省', '衡水地区', '冀州市', '133002'); -INSERT INTO `cardcodes` VALUES (377, '河北省', '衡水地区', '衡水县', '133021'); -INSERT INTO `cardcodes` VALUES (378, '河北省', '衡水地区', '冀县', '133022'); -INSERT INTO `cardcodes` VALUES (379, '河北省', '衡水地区', '枣强县', '133023'); -INSERT INTO `cardcodes` VALUES (380, '河北省', '衡水地区', '武邑县', '133024'); -INSERT INTO `cardcodes` VALUES (381, '河北省', '衡水地区', '深县', '133025'); -INSERT INTO `cardcodes` VALUES (382, '河北省', '衡水地区', '武强县', '133026'); -INSERT INTO `cardcodes` VALUES (383, '河北省', '衡水地区', '饶阳县', '133027'); -INSERT INTO `cardcodes` VALUES (384, '河北省', '衡水地区', '安平县', '133028'); -INSERT INTO `cardcodes` VALUES (385, '河北省', '衡水地区', '故城县', '133029'); -INSERT INTO `cardcodes` VALUES (386, '河北省', '衡水地区', '景县', '133030'); -INSERT INTO `cardcodes` VALUES (387, '河北省', '衡水地区', '阜城县', '133031'); -INSERT INTO `cardcodes` VALUES (388, '河北省', NULL, '武安市', '139001'); -INSERT INTO `cardcodes` VALUES (389, '山西省', '太原市', '市辖区', '140101'); -INSERT INTO `cardcodes` VALUES (390, '山西省', '太原市', '南城区', '140102'); -INSERT INTO `cardcodes` VALUES (391, '山西省', '太原市', '北城区', '140103'); -INSERT INTO `cardcodes` VALUES (392, '山西省', '太原市', '河西区', '140104'); -INSERT INTO `cardcodes` VALUES (393, '山西省', '太原市', '小店区', '140105'); -INSERT INTO `cardcodes` VALUES (394, '山西省', '太原市', '迎泽区', '140106'); -INSERT INTO `cardcodes` VALUES (395, '山西省', '太原市', '杏花岭区', '140107'); -INSERT INTO `cardcodes` VALUES (396, '山西省', '太原市', '尖草坪区', '140108'); -INSERT INTO `cardcodes` VALUES (397, '山西省', '太原市', '万柏林区', '140109'); -INSERT INTO `cardcodes` VALUES (398, '山西省', '太原市', '晋源区', '140110'); -INSERT INTO `cardcodes` VALUES (399, '山西省', '太原市', '古交工矿区', '140111'); -INSERT INTO `cardcodes` VALUES (400, '山西省', '太原市', '南郊区', '140112'); -INSERT INTO `cardcodes` VALUES (401, '山西省', '太原市', '北郊区', '140113'); -INSERT INTO `cardcodes` VALUES (402, '山西省', '太原市', '清徐县', '140121'); -INSERT INTO `cardcodes` VALUES (403, '山西省', '太原市', '阳曲县', '140122'); -INSERT INTO `cardcodes` VALUES (404, '山西省', '太原市', '娄烦县', '140123'); -INSERT INTO `cardcodes` VALUES (405, '山西省', '太原市', '古交市', '140181'); -INSERT INTO `cardcodes` VALUES (406, '山西省', '大同市', '市辖区', '140201'); -INSERT INTO `cardcodes` VALUES (407, '山西省', '大同市', '城区', '140202'); -INSERT INTO `cardcodes` VALUES (408, '山西省', '大同市', '矿区', '140203'); -INSERT INTO `cardcodes` VALUES (409, '山西省', '大同市', '南郊区', '140211'); -INSERT INTO `cardcodes` VALUES (410, '山西省', '大同市', '新荣区', '140212'); -INSERT INTO `cardcodes` VALUES (411, '山西省', '大同市', '阳高县', '140221'); -INSERT INTO `cardcodes` VALUES (412, '山西省', '大同市', '天镇县', '140222'); -INSERT INTO `cardcodes` VALUES (413, '山西省', '大同市', '广灵县', '140223'); -INSERT INTO `cardcodes` VALUES (414, '山西省', '大同市', '灵丘县', '140224'); -INSERT INTO `cardcodes` VALUES (415, '山西省', '大同市', '浑源县', '140225'); -INSERT INTO `cardcodes` VALUES (416, '山西省', '大同市', '左云县', '140226'); -INSERT INTO `cardcodes` VALUES (417, '山西省', '大同市', '大同县', '140227'); -INSERT INTO `cardcodes` VALUES (418, '山西省', '大同市', '左云县', '140230'); -INSERT INTO `cardcodes` VALUES (419, '山西省', '大同市', '大同县', '140232'); -INSERT INTO `cardcodes` VALUES (420, '山西省', '阳泉市', '市辖区', '140301'); -INSERT INTO `cardcodes` VALUES (421, '山西省', '阳泉市', '城区', '140302'); -INSERT INTO `cardcodes` VALUES (422, '山西省', '阳泉市', '矿区', '140303'); -INSERT INTO `cardcodes` VALUES (423, '山西省', '阳泉市', '郊区', '140311'); -INSERT INTO `cardcodes` VALUES (424, '山西省', '阳泉市', '平定县', '140321'); -INSERT INTO `cardcodes` VALUES (425, '山西省', '阳泉市', '盂县', '140322'); -INSERT INTO `cardcodes` VALUES (426, '山西省', '长治市', '市辖区', '140401'); -INSERT INTO `cardcodes` VALUES (427, '山西省', '长治市', '城区', '140402'); -INSERT INTO `cardcodes` VALUES (428, '山西省', '长治市', '郊区', '140411'); -INSERT INTO `cardcodes` VALUES (429, '山西省', '长治市', '长治县', '140421'); -INSERT INTO `cardcodes` VALUES (430, '山西省', '长治市', '襄垣县', '140423'); -INSERT INTO `cardcodes` VALUES (431, '山西省', '长治市', '屯留县', '140424'); -INSERT INTO `cardcodes` VALUES (432, '山西省', '长治市', '平顺县', '140425'); -INSERT INTO `cardcodes` VALUES (433, '山西省', '长治市', '黎城县', '140426'); -INSERT INTO `cardcodes` VALUES (434, '山西省', '长治市', '壶关县', '140427'); -INSERT INTO `cardcodes` VALUES (435, '山西省', '长治市', '长子县', '140428'); -INSERT INTO `cardcodes` VALUES (436, '山西省', '长治市', '武乡县', '140429'); -INSERT INTO `cardcodes` VALUES (437, '山西省', '长治市', '沁县', '140430'); -INSERT INTO `cardcodes` VALUES (438, '山西省', '长治市', '沁源县', '140431'); -INSERT INTO `cardcodes` VALUES (439, '山西省', '长治市', '潞城市', '140481'); -INSERT INTO `cardcodes` VALUES (440, '山西省', '晋城市', '市辖区', '140501'); -INSERT INTO `cardcodes` VALUES (441, '山西省', '晋城市', '城区', '140502'); -INSERT INTO `cardcodes` VALUES (442, '山西省', '晋城市', '郊区', '140511'); -INSERT INTO `cardcodes` VALUES (443, '山西省', '晋城市', '沁水县', '140521'); -INSERT INTO `cardcodes` VALUES (444, '山西省', '晋城市', '阳城县', '140522'); -INSERT INTO `cardcodes` VALUES (445, '山西省', '晋城市', '高平县', '140523'); -INSERT INTO `cardcodes` VALUES (446, '山西省', '晋城市', '陵川县', '140524'); -INSERT INTO `cardcodes` VALUES (447, '山西省', '晋城市', '泽州县', '140525'); -INSERT INTO `cardcodes` VALUES (448, '山西省', '晋城市', '高平市', '140581'); -INSERT INTO `cardcodes` VALUES (449, '山西省', '朔州市', '市辖区', '140601'); -INSERT INTO `cardcodes` VALUES (450, '山西省', '朔州市', '朔城区', '140602'); -INSERT INTO `cardcodes` VALUES (451, '山西省', '朔州市', '平鲁区', '140603'); -INSERT INTO `cardcodes` VALUES (452, '山西省', '朔州市', '山阴县', '140621'); -INSERT INTO `cardcodes` VALUES (453, '山西省', '朔州市', '应县', '140622'); -INSERT INTO `cardcodes` VALUES (454, '山西省', '朔州市', '右玉县', '140623'); -INSERT INTO `cardcodes` VALUES (455, '山西省', '朔州市', '怀仁县', '140624'); -INSERT INTO `cardcodes` VALUES (456, '山西省', '晋中市', '市辖区', '140701'); -INSERT INTO `cardcodes` VALUES (457, '山西省', '晋中市', '榆次区', '140702'); -INSERT INTO `cardcodes` VALUES (458, '山西省', '晋中市', '榆社县', '140721'); -INSERT INTO `cardcodes` VALUES (459, '山西省', '晋中市', '左权县', '140722'); -INSERT INTO `cardcodes` VALUES (460, '山西省', '晋中市', '和顺县', '140723'); -INSERT INTO `cardcodes` VALUES (461, '山西省', '晋中市', '昔阳县', '140724'); -INSERT INTO `cardcodes` VALUES (462, '山西省', '晋中市', '寿阳县', '140725'); -INSERT INTO `cardcodes` VALUES (463, '山西省', '晋中市', '太谷县', '140726'); -INSERT INTO `cardcodes` VALUES (464, '山西省', '晋中市', '祁县', '140727'); -INSERT INTO `cardcodes` VALUES (465, '山西省', '晋中市', '平遥县', '140728'); -INSERT INTO `cardcodes` VALUES (466, '山西省', '晋中市', '灵石县', '140729'); -INSERT INTO `cardcodes` VALUES (467, '山西省', '晋中市', '介休市', '140781'); -INSERT INTO `cardcodes` VALUES (468, '山西省', '运城市', '市辖区', '140801'); -INSERT INTO `cardcodes` VALUES (469, '山西省', '运城市', '盐湖区', '140802'); -INSERT INTO `cardcodes` VALUES (470, '山西省', '运城市', '临猗县', '140821'); -INSERT INTO `cardcodes` VALUES (471, '山西省', '运城市', '万荣县', '140822'); -INSERT INTO `cardcodes` VALUES (472, '山西省', '运城市', '闻喜县', '140823'); -INSERT INTO `cardcodes` VALUES (473, '山西省', '运城市', '稷山县', '140824'); -INSERT INTO `cardcodes` VALUES (474, '山西省', '运城市', '新绛县', '140825'); -INSERT INTO `cardcodes` VALUES (475, '山西省', '运城市', '绛县', '140826'); -INSERT INTO `cardcodes` VALUES (476, '山西省', '运城市', '垣曲县', '140827'); -INSERT INTO `cardcodes` VALUES (477, '山西省', '运城市', '夏县', '140828'); -INSERT INTO `cardcodes` VALUES (478, '山西省', '运城市', '平陆县', '140829'); -INSERT INTO `cardcodes` VALUES (479, '山西省', '运城市', '芮城县', '140830'); -INSERT INTO `cardcodes` VALUES (480, '山西省', '运城市', '永济市', '140881'); -INSERT INTO `cardcodes` VALUES (481, '山西省', '运城市', '河津市', '140882'); -INSERT INTO `cardcodes` VALUES (482, '山西省', '忻州市', '市辖区', '140901'); -INSERT INTO `cardcodes` VALUES (483, '山西省', '忻州市', '忻府区', '140902'); -INSERT INTO `cardcodes` VALUES (484, '山西省', '忻州市', '定襄县', '140921'); -INSERT INTO `cardcodes` VALUES (485, '山西省', '忻州市', '五台县', '140922'); -INSERT INTO `cardcodes` VALUES (486, '山西省', '忻州市', '代县', '140923'); -INSERT INTO `cardcodes` VALUES (487, '山西省', '忻州市', '繁峙县', '140924'); -INSERT INTO `cardcodes` VALUES (488, '山西省', '忻州市', '宁武县', '140925'); -INSERT INTO `cardcodes` VALUES (489, '山西省', '忻州市', '静乐县', '140926'); -INSERT INTO `cardcodes` VALUES (490, '山西省', '忻州市', '神池县', '140927'); -INSERT INTO `cardcodes` VALUES (491, '山西省', '忻州市', '五寨县', '140928'); -INSERT INTO `cardcodes` VALUES (492, '山西省', '忻州市', '岢岚县', '140929'); -INSERT INTO `cardcodes` VALUES (493, '山西省', '忻州市', '河曲县', '140930'); -INSERT INTO `cardcodes` VALUES (494, '山西省', '忻州市', '保德县', '140931'); -INSERT INTO `cardcodes` VALUES (495, '山西省', '忻州市', '偏关县', '140932'); -INSERT INTO `cardcodes` VALUES (496, '山西省', '忻州市', '原平市', '140981'); -INSERT INTO `cardcodes` VALUES (497, '山西省', '临汾市', '市辖区', '141001'); -INSERT INTO `cardcodes` VALUES (498, '山西省', '临汾市', '尧都区', '141002'); -INSERT INTO `cardcodes` VALUES (499, '山西省', '临汾市', '曲沃县', '141021'); -INSERT INTO `cardcodes` VALUES (500, '山西省', '临汾市', '翼城县', '141022'); -INSERT INTO `cardcodes` VALUES (501, '山西省', '临汾市', '襄汾县', '141023'); -INSERT INTO `cardcodes` VALUES (502, '山西省', '临汾市', '洪洞县', '141024'); -INSERT INTO `cardcodes` VALUES (503, '山西省', '临汾市', '古县', '141025'); -INSERT INTO `cardcodes` VALUES (504, '山西省', '临汾市', '安泽县', '141026'); -INSERT INTO `cardcodes` VALUES (505, '山西省', '临汾市', '浮山县', '141027'); -INSERT INTO `cardcodes` VALUES (506, '山西省', '临汾市', '吉县', '141028'); -INSERT INTO `cardcodes` VALUES (507, '山西省', '临汾市', '乡宁县', '141029'); -INSERT INTO `cardcodes` VALUES (508, '山西省', '临汾市', '大宁县', '141030'); -INSERT INTO `cardcodes` VALUES (509, '山西省', '临汾市', '隰县', '141031'); -INSERT INTO `cardcodes` VALUES (510, '山西省', '临汾市', '永和县', '141032'); -INSERT INTO `cardcodes` VALUES (511, '山西省', '临汾市', '蒲县', '141033'); -INSERT INTO `cardcodes` VALUES (512, '山西省', '临汾市', '汾西县', '141034'); -INSERT INTO `cardcodes` VALUES (513, '山西省', '临汾市', '侯马市', '141081'); -INSERT INTO `cardcodes` VALUES (514, '山西省', '临汾市', '霍州市', '141082'); -INSERT INTO `cardcodes` VALUES (515, '山西省', '吕梁市', '市辖区', '141101'); -INSERT INTO `cardcodes` VALUES (516, '山西省', '吕梁市', '离石区', '141102'); -INSERT INTO `cardcodes` VALUES (517, '山西省', '吕梁市', '文水县', '141121'); -INSERT INTO `cardcodes` VALUES (518, '山西省', '吕梁市', '交城县', '141122'); -INSERT INTO `cardcodes` VALUES (519, '山西省', '吕梁市', '兴县', '141123'); -INSERT INTO `cardcodes` VALUES (520, '山西省', '吕梁市', '临县', '141124'); -INSERT INTO `cardcodes` VALUES (521, '山西省', '吕梁市', '柳林县', '141125'); -INSERT INTO `cardcodes` VALUES (522, '山西省', '吕梁市', '石楼县', '141126'); -INSERT INTO `cardcodes` VALUES (523, '山西省', '吕梁市', '岚县', '141127'); -INSERT INTO `cardcodes` VALUES (524, '山西省', '吕梁市', '方山县', '141128'); -INSERT INTO `cardcodes` VALUES (525, '山西省', '吕梁市', '中阳县', '141129'); -INSERT INTO `cardcodes` VALUES (526, '山西省', '吕梁市', '交口县', '141130'); -INSERT INTO `cardcodes` VALUES (527, '山西省', '吕梁市', '孝义市', '141181'); -INSERT INTO `cardcodes` VALUES (528, '山西省', '吕梁市', '汾阳市', '141182'); -INSERT INTO `cardcodes` VALUES (529, '山西省', '雁北地区', '阳高县', '142121'); -INSERT INTO `cardcodes` VALUES (530, '山西省', '雁北地区', '天镇县', '142122'); -INSERT INTO `cardcodes` VALUES (531, '山西省', '雁北地区', '广灵县', '142123'); -INSERT INTO `cardcodes` VALUES (532, '山西省', '雁北地区', '灵丘县', '142124'); -INSERT INTO `cardcodes` VALUES (533, '山西省', '雁北地区', '浑源县', '142125'); -INSERT INTO `cardcodes` VALUES (534, '山西省', '雁北地区', '应县', '142126'); -INSERT INTO `cardcodes` VALUES (535, '山西省', '雁北地区', '山阴县', '142127'); -INSERT INTO `cardcodes` VALUES (536, '山西省', '雁北地区', '朔县', '142128'); -INSERT INTO `cardcodes` VALUES (537, '山西省', '雁北地区', '平鲁县', '142129'); -INSERT INTO `cardcodes` VALUES (538, '山西省', '雁北地区', '左云县', '142130'); -INSERT INTO `cardcodes` VALUES (539, '山西省', '雁北地区', '右玉县', '142131'); -INSERT INTO `cardcodes` VALUES (540, '山西省', '雁北地区', '大同县', '142132'); -INSERT INTO `cardcodes` VALUES (541, '山西省', '雁北地区', '怀仁县', '142133'); -INSERT INTO `cardcodes` VALUES (542, '山西省', '忻州地区', '忻州市', '142201'); -INSERT INTO `cardcodes` VALUES (543, '山西省', '忻州地区', '原平市', '142202'); -INSERT INTO `cardcodes` VALUES (544, '山西省', '忻州地区', '定襄县', '142222'); -INSERT INTO `cardcodes` VALUES (545, '山西省', '忻州地区', '五台县', '142223'); -INSERT INTO `cardcodes` VALUES (546, '山西省', '忻州地区', '代县', '142225'); -INSERT INTO `cardcodes` VALUES (547, '山西省', '忻州地区', '繁峙县', '142226'); -INSERT INTO `cardcodes` VALUES (548, '山西省', '忻州地区', '宁武县', '142227'); -INSERT INTO `cardcodes` VALUES (549, '山西省', '忻州地区', '静乐县', '142228'); -INSERT INTO `cardcodes` VALUES (550, '山西省', '忻州地区', '神池县', '142229'); -INSERT INTO `cardcodes` VALUES (551, '山西省', '忻州地区', '五寨县', '142230'); -INSERT INTO `cardcodes` VALUES (552, '山西省', '忻州地区', '岢岚县', '142231'); -INSERT INTO `cardcodes` VALUES (553, '山西省', '忻州地区', '河曲县', '142232'); -INSERT INTO `cardcodes` VALUES (554, '山西省', '忻州地区', '保德县', '142233'); -INSERT INTO `cardcodes` VALUES (555, '山西省', '忻州地区', '偏关县', '142234'); -INSERT INTO `cardcodes` VALUES (556, '山西省', '吕梁地区', '孝义市', '142301'); -INSERT INTO `cardcodes` VALUES (557, '山西省', '吕梁地区', '离石市', '142302'); -INSERT INTO `cardcodes` VALUES (558, '山西省', '吕梁地区', '汾阳市', '142303'); -INSERT INTO `cardcodes` VALUES (559, '山西省', '吕梁地区', '汾阳县', '142321'); -INSERT INTO `cardcodes` VALUES (560, '山西省', '吕梁地区', '文水县', '142322'); -INSERT INTO `cardcodes` VALUES (561, '山西省', '吕梁地区', '交城县', '142323'); -INSERT INTO `cardcodes` VALUES (562, '山西省', '吕梁地区', '兴县', '142325'); -INSERT INTO `cardcodes` VALUES (563, '山西省', '吕梁地区', '临县', '142326'); -INSERT INTO `cardcodes` VALUES (564, '山西省', '吕梁地区', '柳林县', '142327'); -INSERT INTO `cardcodes` VALUES (565, '山西省', '吕梁地区', '石楼县', '142328'); -INSERT INTO `cardcodes` VALUES (566, '山西省', '吕梁地区', '岚县', '142329'); -INSERT INTO `cardcodes` VALUES (567, '山西省', '吕梁地区', '方山县', '142330'); -INSERT INTO `cardcodes` VALUES (568, '山西省', '吕梁地区', '中阳县', '142332'); -INSERT INTO `cardcodes` VALUES (569, '山西省', '吕梁地区', '交口县', '142333'); -INSERT INTO `cardcodes` VALUES (570, '山西省', '晋中地区', '榆次市', '142401'); -INSERT INTO `cardcodes` VALUES (571, '山西省', '晋中地区', '介休市', '142402'); -INSERT INTO `cardcodes` VALUES (572, '山西省', '晋中地区', '榆社县', '142421'); -INSERT INTO `cardcodes` VALUES (573, '山西省', '晋中地区', '左权县', '142422'); -INSERT INTO `cardcodes` VALUES (574, '山西省', '晋中地区', '和顺县', '142423'); -INSERT INTO `cardcodes` VALUES (575, '山西省', '晋中地区', '昔阳县', '142424'); -INSERT INTO `cardcodes` VALUES (576, '山西省', '晋中地区', '寿阳县', '142427'); -INSERT INTO `cardcodes` VALUES (577, '山西省', '晋中地区', '太谷县', '142429'); -INSERT INTO `cardcodes` VALUES (578, '山西省', '晋中地区', '祁县', '142430'); -INSERT INTO `cardcodes` VALUES (579, '山西省', '晋中地区', '平遥县', '142431'); -INSERT INTO `cardcodes` VALUES (580, '山西省', '晋中地区', '灵石县', '142433'); -INSERT INTO `cardcodes` VALUES (581, '山西省', '临汾地区', '临汾市', '142601'); -INSERT INTO `cardcodes` VALUES (582, '山西省', '临汾地区', '侯马市', '142602'); -INSERT INTO `cardcodes` VALUES (583, '山西省', '临汾地区', '霍州市', '142603'); -INSERT INTO `cardcodes` VALUES (584, '山西省', '临汾地区', '曲沃县', '142621'); -INSERT INTO `cardcodes` VALUES (585, '山西省', '临汾地区', '翼城县', '142622'); -INSERT INTO `cardcodes` VALUES (586, '山西省', '临汾地区', '襄汾县', '142623'); -INSERT INTO `cardcodes` VALUES (587, '山西省', '临汾地区', '洪洞县', '142625'); -INSERT INTO `cardcodes` VALUES (588, '山西省', '临汾地区', '古县', '142627'); -INSERT INTO `cardcodes` VALUES (589, '山西省', '临汾地区', '安泽县', '142628'); -INSERT INTO `cardcodes` VALUES (590, '山西省', '临汾地区', '浮山县', '142629'); -INSERT INTO `cardcodes` VALUES (591, '山西省', '临汾地区', '吉县', '142630'); -INSERT INTO `cardcodes` VALUES (592, '山西省', '临汾地区', '乡宁县', '142631'); -INSERT INTO `cardcodes` VALUES (593, '山西省', '临汾地区', '蒲县', '142632'); -INSERT INTO `cardcodes` VALUES (594, '山西省', '临汾地区', '大宁县', '142633'); -INSERT INTO `cardcodes` VALUES (595, '山西省', '临汾地区', '永和县', '142634'); -INSERT INTO `cardcodes` VALUES (596, '山西省', '临汾地区', '隰县', '142635'); -INSERT INTO `cardcodes` VALUES (597, '山西省', '临汾地区', '汾西县', '142636'); -INSERT INTO `cardcodes` VALUES (598, '山西省', '运城地区', '运城市', '142701'); -INSERT INTO `cardcodes` VALUES (599, '山西省', '运城地区', '永济市', '142702'); -INSERT INTO `cardcodes` VALUES (600, '山西省', '运城地区', '河津市', '142703'); -INSERT INTO `cardcodes` VALUES (601, '山西省', '运城地区', '芮城县', '142723'); -INSERT INTO `cardcodes` VALUES (602, '山西省', '运城地区', '临猗县', '142724'); -INSERT INTO `cardcodes` VALUES (603, '山西省', '运城地区', '万荣县', '142725'); -INSERT INTO `cardcodes` VALUES (604, '山西省', '运城地区', '新绛县', '142726'); -INSERT INTO `cardcodes` VALUES (605, '山西省', '运城地区', '稷山县', '142727'); -INSERT INTO `cardcodes` VALUES (606, '山西省', '运城地区', '闻喜县', '142729'); -INSERT INTO `cardcodes` VALUES (607, '山西省', '运城地区', '夏县', '142730'); -INSERT INTO `cardcodes` VALUES (608, '山西省', '运城地区', '绛县', '142731'); -INSERT INTO `cardcodes` VALUES (609, '山西省', '运城地区', '平陆县', '142732'); -INSERT INTO `cardcodes` VALUES (610, '山西省', '运城地区', '垣曲县', '142733'); -INSERT INTO `cardcodes` VALUES (611, '山西省', NULL, '古交市', '149001'); -INSERT INTO `cardcodes` VALUES (612, '内蒙古自治区', '呼和浩特市', '市辖区', '150101'); -INSERT INTO `cardcodes` VALUES (613, '内蒙古自治区', '呼和浩特市', '新城区', '150102'); -INSERT INTO `cardcodes` VALUES (614, '内蒙古自治区', '呼和浩特市', '回民区', '150103'); -INSERT INTO `cardcodes` VALUES (615, '内蒙古自治区', '呼和浩特市', '玉泉区', '150104'); -INSERT INTO `cardcodes` VALUES (616, '内蒙古自治区', '呼和浩特市', '郊区', '150105'); -INSERT INTO `cardcodes` VALUES (617, '内蒙古自治区', '呼和浩特市', '土默特左旗', '150121'); -INSERT INTO `cardcodes` VALUES (618, '内蒙古自治区', '呼和浩特市', '托克托县', '150122'); -INSERT INTO `cardcodes` VALUES (619, '内蒙古自治区', '呼和浩特市', '和林格尔县', '150123'); -INSERT INTO `cardcodes` VALUES (620, '内蒙古自治区', '呼和浩特市', '清水河县', '150124'); -INSERT INTO `cardcodes` VALUES (621, '内蒙古自治区', '呼和浩特市', '武川县', '150125'); -INSERT INTO `cardcodes` VALUES (622, '内蒙古自治区', '包头市', '市辖区', '150201'); -INSERT INTO `cardcodes` VALUES (623, '内蒙古自治区', '包头市', '东河区', '150202'); -INSERT INTO `cardcodes` VALUES (624, '内蒙古自治区', '包头市', '昆都伦区', '150203'); -INSERT INTO `cardcodes` VALUES (625, '内蒙古自治区', '包头市', '青山区', '150204'); -INSERT INTO `cardcodes` VALUES (626, '内蒙古自治区', '包头市', '石拐矿区', '150205'); -INSERT INTO `cardcodes` VALUES (627, '内蒙古自治区', '包头市', '白云矿区', '150206'); -INSERT INTO `cardcodes` VALUES (628, '内蒙古自治区', '包头市', '郊区', '150207'); -INSERT INTO `cardcodes` VALUES (629, '内蒙古自治区', '包头市', '土默特右旗', '150221'); -INSERT INTO `cardcodes` VALUES (630, '内蒙古自治区', '包头市', '固阳县', '150222'); -INSERT INTO `cardcodes` VALUES (631, '内蒙古自治区', '包头市', '达尔罕茂明安联合旗', '150223'); -INSERT INTO `cardcodes` VALUES (632, '内蒙古自治区', '乌海市', '市辖区', '150301'); -INSERT INTO `cardcodes` VALUES (633, '内蒙古自治区', '乌海市', '海勃湾区', '150302'); -INSERT INTO `cardcodes` VALUES (634, '内蒙古自治区', '乌海市', '海南区', '150303'); -INSERT INTO `cardcodes` VALUES (635, '内蒙古自治区', '乌海市', '乌达区', '150304'); -INSERT INTO `cardcodes` VALUES (636, '内蒙古自治区', '赤峰市', '市辖区', '150401'); -INSERT INTO `cardcodes` VALUES (637, '内蒙古自治区', '赤峰市', '红山区', '150402'); -INSERT INTO `cardcodes` VALUES (638, '内蒙古自治区', '赤峰市', '元宝山区', '150403'); -INSERT INTO `cardcodes` VALUES (639, '内蒙古自治区', '赤峰市', '松山区', '150404'); -INSERT INTO `cardcodes` VALUES (640, '内蒙古自治区', '赤峰市', '阿鲁科尔沁旗', '150421'); -INSERT INTO `cardcodes` VALUES (641, '内蒙古自治区', '赤峰市', '巴林左旗', '150422'); -INSERT INTO `cardcodes` VALUES (642, '内蒙古自治区', '赤峰市', '巴林右旗', '150423'); -INSERT INTO `cardcodes` VALUES (643, '内蒙古自治区', '赤峰市', '林西县', '150424'); -INSERT INTO `cardcodes` VALUES (644, '内蒙古自治区', '赤峰市', '克什克腾旗', '150425'); -INSERT INTO `cardcodes` VALUES (645, '内蒙古自治区', '赤峰市', '翁牛特旗', '150426'); -INSERT INTO `cardcodes` VALUES (646, '内蒙古自治区', '赤峰市', '喀喇沁旗', '150428'); -INSERT INTO `cardcodes` VALUES (647, '内蒙古自治区', '赤峰市', '宁城县', '150429'); -INSERT INTO `cardcodes` VALUES (648, '内蒙古自治区', '赤峰市', '敖汉旗', '150430'); -INSERT INTO `cardcodes` VALUES (649, '内蒙古自治区', '通辽市', '市辖区', '150501'); -INSERT INTO `cardcodes` VALUES (650, '内蒙古自治区', '通辽市', '科尔沁区', '150502'); -INSERT INTO `cardcodes` VALUES (651, '内蒙古自治区', '通辽市', '科尔沁左翼中旗', '150521'); -INSERT INTO `cardcodes` VALUES (652, '内蒙古自治区', '通辽市', '科尔沁左翼后旗', '150522'); -INSERT INTO `cardcodes` VALUES (653, '内蒙古自治区', '通辽市', '开鲁县', '150523'); -INSERT INTO `cardcodes` VALUES (654, '内蒙古自治区', '通辽市', '库伦旗', '150524'); -INSERT INTO `cardcodes` VALUES (655, '内蒙古自治区', '通辽市', '奈曼旗', '150525'); -INSERT INTO `cardcodes` VALUES (656, '内蒙古自治区', '通辽市', '扎鲁特旗', '150526'); -INSERT INTO `cardcodes` VALUES (657, '内蒙古自治区', '通辽市', '霍林郭勒市', '150581'); -INSERT INTO `cardcodes` VALUES (658, '内蒙古自治区', '鄂尔多斯市', '鄂尔多斯市', '150601'); -INSERT INTO `cardcodes` VALUES (659, '内蒙古自治区', '鄂尔多斯市', '东胜区', '150602'); -INSERT INTO `cardcodes` VALUES (660, '内蒙古自治区', '鄂尔多斯市', '达拉特旗', '150621'); -INSERT INTO `cardcodes` VALUES (661, '内蒙古自治区', '鄂尔多斯市', '准格尔旗', '150622'); -INSERT INTO `cardcodes` VALUES (662, '内蒙古自治区', '鄂尔多斯市', '鄂托克前旗', '150623'); -INSERT INTO `cardcodes` VALUES (663, '内蒙古自治区', '鄂尔多斯市', '鄂托克旗', '150624'); -INSERT INTO `cardcodes` VALUES (664, '内蒙古自治区', '鄂尔多斯市', '杭锦旗', '150625'); -INSERT INTO `cardcodes` VALUES (665, '内蒙古自治区', '鄂尔多斯市', '乌审旗', '150626'); -INSERT INTO `cardcodes` VALUES (666, '内蒙古自治区', '鄂尔多斯市', '伊金霍洛旗', '150627'); -INSERT INTO `cardcodes` VALUES (667, '内蒙古自治区', '呼伦贝尔市', '市辖区', '150701'); -INSERT INTO `cardcodes` VALUES (668, '内蒙古自治区', '呼伦贝尔市', '海拉尔区', '150702'); -INSERT INTO `cardcodes` VALUES (669, '内蒙古自治区', '呼伦贝尔市', '阿荣旗', '150721'); -INSERT INTO `cardcodes` VALUES (670, '内蒙古自治区', '呼伦贝尔市', '莫力达瓦达斡尔族自治旗', '150722'); -INSERT INTO `cardcodes` VALUES (671, '内蒙古自治区', '呼伦贝尔市', '鄂伦春自治旗', '150723'); -INSERT INTO `cardcodes` VALUES (672, '内蒙古自治区', '呼伦贝尔市', '鄂温克族自治旗', '150724'); -INSERT INTO `cardcodes` VALUES (673, '内蒙古自治区', '呼伦贝尔市', '陈巴尔虎旗', '150725'); -INSERT INTO `cardcodes` VALUES (674, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎左旗', '150726'); -INSERT INTO `cardcodes` VALUES (675, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎右旗', '150727'); -INSERT INTO `cardcodes` VALUES (676, '内蒙古自治区', '呼伦贝尔市', '满洲里市', '150781'); -INSERT INTO `cardcodes` VALUES (677, '内蒙古自治区', '呼伦贝尔市', '牙克石市', '150782'); -INSERT INTO `cardcodes` VALUES (678, '内蒙古自治区', '呼伦贝尔市', '扎兰屯市', '150783'); -INSERT INTO `cardcodes` VALUES (679, '内蒙古自治区', '呼伦贝尔市', '额尔古纳市', '150784'); -INSERT INTO `cardcodes` VALUES (680, '内蒙古自治区', '呼伦贝尔市', '根河市', '150785'); -INSERT INTO `cardcodes` VALUES (681, '内蒙古自治区', '巴彦淖尔市', '市辖区', '150801'); -INSERT INTO `cardcodes` VALUES (682, '内蒙古自治区', '巴彦淖尔市', '临河区', '150802'); -INSERT INTO `cardcodes` VALUES (683, '内蒙古自治区', '巴彦淖尔市', '五原县', '150821'); -INSERT INTO `cardcodes` VALUES (684, '内蒙古自治区', '巴彦淖尔市', '磴口县', '150822'); -INSERT INTO `cardcodes` VALUES (685, '内蒙古自治区', '巴彦淖尔市', '乌拉特前旗', '150823'); -INSERT INTO `cardcodes` VALUES (686, '内蒙古自治区', '巴彦淖尔市', '乌拉特中旗', '150824'); -INSERT INTO `cardcodes` VALUES (687, '内蒙古自治区', '巴彦淖尔市', '乌拉特后旗', '150825'); -INSERT INTO `cardcodes` VALUES (688, '内蒙古自治区', '巴彦淖尔市', '杭锦后旗', '150826'); -INSERT INTO `cardcodes` VALUES (689, '内蒙古自治区', '乌兰察布市', '市辖区', '150901'); -INSERT INTO `cardcodes` VALUES (690, '内蒙古自治区', '乌兰察布市', '集宁区', '150902'); -INSERT INTO `cardcodes` VALUES (691, '内蒙古自治区', '乌兰察布市', '卓资县', '150921'); -INSERT INTO `cardcodes` VALUES (692, '内蒙古自治区', '乌兰察布市', '化德县', '150922'); -INSERT INTO `cardcodes` VALUES (693, '内蒙古自治区', '乌兰察布市', '商都县', '150923'); -INSERT INTO `cardcodes` VALUES (694, '内蒙古自治区', '乌兰察布市', '兴和县', '150924'); -INSERT INTO `cardcodes` VALUES (695, '内蒙古自治区', '乌兰察布市', '凉城县', '150925'); -INSERT INTO `cardcodes` VALUES (696, '内蒙古自治区', '乌兰察布市', '察哈尔右翼前旗', '150926'); -INSERT INTO `cardcodes` VALUES (697, '内蒙古自治区', '乌兰察布市', '察哈尔右翼中旗', '150927'); -INSERT INTO `cardcodes` VALUES (698, '内蒙古自治区', '乌兰察布市', '察哈尔右翼后旗', '150928'); -INSERT INTO `cardcodes` VALUES (699, '内蒙古自治区', '乌兰察布市', '四子王旗', '150929'); -INSERT INTO `cardcodes` VALUES (700, '内蒙古自治区', '乌兰察布市', '丰镇市', '150981'); -INSERT INTO `cardcodes` VALUES (701, '内蒙古自治区', '呼伦贝尔盟', '海拉尔市', '152101'); -INSERT INTO `cardcodes` VALUES (702, '内蒙古自治区', '呼伦贝尔盟', '满洲里市', '152102'); -INSERT INTO `cardcodes` VALUES (703, '内蒙古自治区', '呼伦贝尔盟', '扎兰屯市', '152103'); -INSERT INTO `cardcodes` VALUES (704, '内蒙古自治区', '呼伦贝尔盟', '牙克石市', '152104'); -INSERT INTO `cardcodes` VALUES (705, '内蒙古自治区', '呼伦贝尔盟', '根河市', '152105'); -INSERT INTO `cardcodes` VALUES (706, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳市', '152106'); -INSERT INTO `cardcodes` VALUES (707, '内蒙古自治区', '呼伦贝尔盟', '布特哈旗', '152121'); -INSERT INTO `cardcodes` VALUES (708, '内蒙古自治区', '呼伦贝尔盟', '阿荣旗', '152122'); -INSERT INTO `cardcodes` VALUES (709, '内蒙古自治区', '呼伦贝尔盟', '莫力达瓦达斡尔族自治旗', '152123'); -INSERT INTO `cardcodes` VALUES (710, '内蒙古自治区', '呼伦贝尔盟', '喜桂图旗', '152124'); -INSERT INTO `cardcodes` VALUES (711, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳右旗', '152125'); -INSERT INTO `cardcodes` VALUES (712, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳左旗', '152126'); -INSERT INTO `cardcodes` VALUES (713, '内蒙古自治区', '呼伦贝尔盟', '鄂伦春自治旗', '152127'); -INSERT INTO `cardcodes` VALUES (714, '内蒙古自治区', '呼伦贝尔盟', '鄂温克族自治旗', '152128'); -INSERT INTO `cardcodes` VALUES (715, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎右旗', '152129'); -INSERT INTO `cardcodes` VALUES (716, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎左旗', '152130'); -INSERT INTO `cardcodes` VALUES (717, '内蒙古自治区', '呼伦贝尔盟', '陈巴尔虎旗', '152131'); -INSERT INTO `cardcodes` VALUES (718, '内蒙古自治区', '兴安盟', '乌兰浩特市', '152201'); -INSERT INTO `cardcodes` VALUES (719, '内蒙古自治区', '兴安盟', '阿尔山市', '152202'); -INSERT INTO `cardcodes` VALUES (720, '内蒙古自治区', '兴安盟', '科尔沁右翼前旗', '152221'); -INSERT INTO `cardcodes` VALUES (721, '内蒙古自治区', '兴安盟', '科尔沁右翼中旗', '152222'); -INSERT INTO `cardcodes` VALUES (722, '内蒙古自治区', '兴安盟', '扎赉特旗', '152223'); -INSERT INTO `cardcodes` VALUES (723, '内蒙古自治区', '兴安盟', '突泉县', '152224'); -INSERT INTO `cardcodes` VALUES (724, '内蒙古自治区', '哲里木盟', '通辽市', '152301'); -INSERT INTO `cardcodes` VALUES (725, '内蒙古自治区', '哲里木盟', '霍林郭勒市', '152302'); -INSERT INTO `cardcodes` VALUES (726, '内蒙古自治区', '哲里木盟', '通辽县', '152321'); -INSERT INTO `cardcodes` VALUES (727, '内蒙古自治区', '哲里木盟', '科尔沁左翼中旗', '152322'); -INSERT INTO `cardcodes` VALUES (728, '内蒙古自治区', '哲里木盟', '科尔沁左翼后旗', '152323'); -INSERT INTO `cardcodes` VALUES (729, '内蒙古自治区', '哲里木盟', '开鲁县', '152324'); -INSERT INTO `cardcodes` VALUES (730, '内蒙古自治区', '哲里木盟', '库伦旗', '152325'); -INSERT INTO `cardcodes` VALUES (731, '内蒙古自治区', '哲里木盟', '奈曼旗', '152326'); -INSERT INTO `cardcodes` VALUES (732, '内蒙古自治区', '哲里木盟', '扎鲁特旗', '152327'); -INSERT INTO `cardcodes` VALUES (733, '内蒙古自治区', '锡林郭勒盟', '二连浩特市', '152501'); -INSERT INTO `cardcodes` VALUES (734, '内蒙古自治区', '锡林郭勒盟', '锡林浩特市', '152502'); -INSERT INTO `cardcodes` VALUES (735, '内蒙古自治区', '锡林郭勒盟', '阿巴嘎旗', '152522'); -INSERT INTO `cardcodes` VALUES (736, '内蒙古自治区', '锡林郭勒盟', '苏尼特左旗', '152523'); -INSERT INTO `cardcodes` VALUES (737, '内蒙古自治区', '锡林郭勒盟', '苏尼特右旗', '152524'); -INSERT INTO `cardcodes` VALUES (738, '内蒙古自治区', '锡林郭勒盟', '东乌珠穆沁旗', '152525'); -INSERT INTO `cardcodes` VALUES (739, '内蒙古自治区', '锡林郭勒盟', '西乌珠穆沁旗', '152526'); -INSERT INTO `cardcodes` VALUES (740, '内蒙古自治区', '锡林郭勒盟', '太仆寺旗', '152527'); -INSERT INTO `cardcodes` VALUES (741, '内蒙古自治区', '锡林郭勒盟', '镶黄旗', '152528'); -INSERT INTO `cardcodes` VALUES (742, '内蒙古自治区', '锡林郭勒盟', '正镶白旗', '152529'); -INSERT INTO `cardcodes` VALUES (743, '内蒙古自治区', '锡林郭勒盟', '正蓝旗', '152530'); -INSERT INTO `cardcodes` VALUES (744, '内蒙古自治区', '锡林郭勒盟', '多伦县', '152531'); -INSERT INTO `cardcodes` VALUES (745, '内蒙古自治区', '乌兰察布盟', '集宁市', '152601'); -INSERT INTO `cardcodes` VALUES (746, '内蒙古自治区', '乌兰察布盟', '丰镇市', '152602'); -INSERT INTO `cardcodes` VALUES (747, '内蒙古自治区', '乌兰察布盟', '武川县', '152621'); -INSERT INTO `cardcodes` VALUES (748, '内蒙古自治区', '乌兰察布盟', '和林格尔县', '152622'); -INSERT INTO `cardcodes` VALUES (749, '内蒙古自治区', '乌兰察布盟', '清水河县', '152623'); -INSERT INTO `cardcodes` VALUES (750, '内蒙古自治区', '乌兰察布盟', '卓资县', '152624'); -INSERT INTO `cardcodes` VALUES (751, '内蒙古自治区', '乌兰察布盟', '化德县', '152625'); -INSERT INTO `cardcodes` VALUES (752, '内蒙古自治区', '乌兰察布盟', '商都县', '152626'); -INSERT INTO `cardcodes` VALUES (753, '内蒙古自治区', '乌兰察布盟', '兴和县', '152627'); -INSERT INTO `cardcodes` VALUES (754, '内蒙古自治区', '乌兰察布盟', '丰镇县', '152628'); -INSERT INTO `cardcodes` VALUES (755, '内蒙古自治区', '乌兰察布盟', '凉城县', '152629'); -INSERT INTO `cardcodes` VALUES (756, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼前旗', '152630'); -INSERT INTO `cardcodes` VALUES (757, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼中旗', '152631'); -INSERT INTO `cardcodes` VALUES (758, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼后旗', '152632'); -INSERT INTO `cardcodes` VALUES (759, '内蒙古自治区', '乌兰察布盟', '达尔罕茂明安联合旗', '152633'); -INSERT INTO `cardcodes` VALUES (760, '内蒙古自治区', '乌兰察布盟', '四子王旗', '152634'); -INSERT INTO `cardcodes` VALUES (761, '内蒙古自治区', '伊克昭盟', '东胜市', '152701'); -INSERT INTO `cardcodes` VALUES (762, '内蒙古自治区', '伊克昭盟', '东胜县', '152721'); -INSERT INTO `cardcodes` VALUES (763, '内蒙古自治区', '伊克昭盟', '达拉特旗', '152722'); -INSERT INTO `cardcodes` VALUES (764, '内蒙古自治区', '伊克昭盟', '准格尔旗', '152723'); -INSERT INTO `cardcodes` VALUES (765, '内蒙古自治区', '伊克昭盟', '鄂托克前旗', '152724'); -INSERT INTO `cardcodes` VALUES (766, '内蒙古自治区', '伊克昭盟', '鄂托克旗', '152725'); -INSERT INTO `cardcodes` VALUES (767, '内蒙古自治区', '伊克昭盟', '杭锦旗', '152726'); -INSERT INTO `cardcodes` VALUES (768, '内蒙古自治区', '伊克昭盟', '乌审旗', '152727'); -INSERT INTO `cardcodes` VALUES (769, '内蒙古自治区', '伊克昭盟', '伊金霍洛旗', '152728'); -INSERT INTO `cardcodes` VALUES (770, '内蒙古自治区', '巴彦淖尔盟', '临河市', '152801'); -INSERT INTO `cardcodes` VALUES (771, '内蒙古自治区', '巴彦淖尔盟', '临河县', '152821'); -INSERT INTO `cardcodes` VALUES (772, '内蒙古自治区', '巴彦淖尔盟', '五原县', '152822'); -INSERT INTO `cardcodes` VALUES (773, '内蒙古自治区', '巴彦淖尔盟', '磴口县', '152823'); -INSERT INTO `cardcodes` VALUES (774, '内蒙古自治区', '巴彦淖尔盟', '乌拉特前旗', '152824'); -INSERT INTO `cardcodes` VALUES (775, '内蒙古自治区', '巴彦淖尔盟', '乌拉特中旗', '152825'); -INSERT INTO `cardcodes` VALUES (776, '内蒙古自治区', '巴彦淖尔盟', '乌拉特后旗', '152826'); -INSERT INTO `cardcodes` VALUES (777, '内蒙古自治区', '巴彦淖尔盟', '杭锦后旗', '152827'); -INSERT INTO `cardcodes` VALUES (778, '内蒙古自治区', '阿拉善盟', '阿拉善左旗', '152921'); -INSERT INTO `cardcodes` VALUES (779, '内蒙古自治区', '阿拉善盟', '阿拉善右旗', '152922'); -INSERT INTO `cardcodes` VALUES (780, '内蒙古自治区', '阿拉善盟', '额济纳旗', '152923'); -INSERT INTO `cardcodes` VALUES (781, '辽宁省', '沈阳市', '市辖区', '210101'); -INSERT INTO `cardcodes` VALUES (782, '辽宁省', '沈阳市', '和平区', '210102'); -INSERT INTO `cardcodes` VALUES (783, '辽宁省', '沈阳市', '沈河区', '210103'); -INSERT INTO `cardcodes` VALUES (784, '辽宁省', '沈阳市', '大东区', '210104'); -INSERT INTO `cardcodes` VALUES (785, '辽宁省', '沈阳市', '皇姑区', '210105'); -INSERT INTO `cardcodes` VALUES (786, '辽宁省', '沈阳市', '铁西区', '210106'); -INSERT INTO `cardcodes` VALUES (787, '辽宁省', '沈阳市', '苏家屯区', '210111'); -INSERT INTO `cardcodes` VALUES (788, '辽宁省', '沈阳市', '东陵区', '210112'); -INSERT INTO `cardcodes` VALUES (789, '辽宁省', '沈阳市', '沈北新区', '210113'); -INSERT INTO `cardcodes` VALUES (790, '辽宁省', '沈阳市', '于洪区', '210114'); -INSERT INTO `cardcodes` VALUES (791, '辽宁省', '沈阳市', '市区', '210120'); -INSERT INTO `cardcodes` VALUES (792, '辽宁省', '沈阳市', '新民县', '210121'); -INSERT INTO `cardcodes` VALUES (793, '辽宁省', '沈阳市', '辽中县', '210122'); -INSERT INTO `cardcodes` VALUES (794, '辽宁省', '沈阳市', '康平县', '210123'); -INSERT INTO `cardcodes` VALUES (795, '辽宁省', '沈阳市', '法库县', '210124'); -INSERT INTO `cardcodes` VALUES (796, '辽宁省', '沈阳市', '新民市', '210181'); -INSERT INTO `cardcodes` VALUES (797, '辽宁省', '大连市', '市辖区', '210201'); -INSERT INTO `cardcodes` VALUES (798, '辽宁省', '大连市', '中山区', '210202'); -INSERT INTO `cardcodes` VALUES (799, '辽宁省', '大连市', '西岗区', '210203'); -INSERT INTO `cardcodes` VALUES (800, '辽宁省', '大连市', '沙河口区', '210204'); -INSERT INTO `cardcodes` VALUES (801, '辽宁省', '大连市', '甘井子区', '210211'); -INSERT INTO `cardcodes` VALUES (802, '辽宁省', '大连市', '旅顺口区', '210212'); -INSERT INTO `cardcodes` VALUES (803, '辽宁省', '大连市', '金州区', '210213'); -INSERT INTO `cardcodes` VALUES (804, '辽宁省', '大连市', '瓦房店市', '210219'); -INSERT INTO `cardcodes` VALUES (805, '辽宁省', '大连市', '市区', '210220'); -INSERT INTO `cardcodes` VALUES (806, '辽宁省', '大连市', '金县', '210221'); -INSERT INTO `cardcodes` VALUES (807, '辽宁省', '大连市', '新金县', '210222'); -INSERT INTO `cardcodes` VALUES (808, '辽宁省', '大连市', '复县', '210223'); -INSERT INTO `cardcodes` VALUES (809, '辽宁省', '大连市', '长海县', '210224'); -INSERT INTO `cardcodes` VALUES (810, '辽宁省', '大连市', '庄河县', '210225'); -INSERT INTO `cardcodes` VALUES (811, '辽宁省', '大连市', '瓦房店市', '210281'); -INSERT INTO `cardcodes` VALUES (812, '辽宁省', '大连市', '普兰店市', '210282'); -INSERT INTO `cardcodes` VALUES (813, '辽宁省', '大连市', '庄河市', '210283'); -INSERT INTO `cardcodes` VALUES (814, '辽宁省', '鞍山市', '市辖区', '210301'); -INSERT INTO `cardcodes` VALUES (815, '辽宁省', '鞍山市', '铁东区', '210302'); -INSERT INTO `cardcodes` VALUES (816, '辽宁省', '鞍山市', '铁西区', '210303'); -INSERT INTO `cardcodes` VALUES (817, '辽宁省', '鞍山市', '立山区', '210304'); -INSERT INTO `cardcodes` VALUES (818, '辽宁省', '鞍山市', '千山区', '210311'); -INSERT INTO `cardcodes` VALUES (819, '辽宁省', '鞍山市', '开发区', '210319'); -INSERT INTO `cardcodes` VALUES (820, '辽宁省', '鞍山市', '台安县', '210321'); -INSERT INTO `cardcodes` VALUES (821, '辽宁省', '鞍山市', '岫岩满族自治县', '210323'); -INSERT INTO `cardcodes` VALUES (822, '辽宁省', '鞍山市', '海城市', '210381'); -INSERT INTO `cardcodes` VALUES (823, '辽宁省', '抚顺市', '市辖区', '210401'); -INSERT INTO `cardcodes` VALUES (824, '辽宁省', '抚顺市', '新抚区', '210402'); -INSERT INTO `cardcodes` VALUES (825, '辽宁省', '抚顺市', '东洲区', '210403'); -INSERT INTO `cardcodes` VALUES (826, '辽宁省', '抚顺市', '望花区', '210404'); -INSERT INTO `cardcodes` VALUES (827, '辽宁省', '抚顺市', '顺城区', '210411'); -INSERT INTO `cardcodes` VALUES (828, '辽宁省', '抚顺市', '抚顺县', '210421'); -INSERT INTO `cardcodes` VALUES (829, '辽宁省', '抚顺市', '新宾满族自治县', '210422'); -INSERT INTO `cardcodes` VALUES (830, '辽宁省', '抚顺市', '清原满族自治县', '210423'); -INSERT INTO `cardcodes` VALUES (831, '辽宁省', '本溪市', '市辖区', '210501'); -INSERT INTO `cardcodes` VALUES (832, '辽宁省', '本溪市', '平山区', '210502'); -INSERT INTO `cardcodes` VALUES (833, '辽宁省', '本溪市', '溪湖区', '210503'); -INSERT INTO `cardcodes` VALUES (834, '辽宁省', '本溪市', '明山区', '210504'); -INSERT INTO `cardcodes` VALUES (835, '辽宁省', '本溪市', '南芬区', '210505'); -INSERT INTO `cardcodes` VALUES (836, '辽宁省', '本溪市', '南芬区', '210511'); -INSERT INTO `cardcodes` VALUES (837, '辽宁省', '本溪市', '本溪满族自治县', '210521'); -INSERT INTO `cardcodes` VALUES (838, '辽宁省', '本溪市', '桓仁满族自治县', '210522'); -INSERT INTO `cardcodes` VALUES (839, '辽宁省', '丹东市', '市辖区', '210601'); -INSERT INTO `cardcodes` VALUES (840, '辽宁省', '丹东市', '元宝区', '210602'); -INSERT INTO `cardcodes` VALUES (841, '辽宁省', '丹东市', '振兴区', '210603'); -INSERT INTO `cardcodes` VALUES (842, '辽宁省', '丹东市', '振安区', '210604'); -INSERT INTO `cardcodes` VALUES (843, '辽宁省', '丹东市', '市区', '210620'); -INSERT INTO `cardcodes` VALUES (844, '辽宁省', '丹东市', '凤城满族自治县', '210621'); -INSERT INTO `cardcodes` VALUES (845, '辽宁省', '丹东市', '岫岩满族自治县', '210622'); -INSERT INTO `cardcodes` VALUES (846, '辽宁省', '丹东市', '东沟县', '210623'); -INSERT INTO `cardcodes` VALUES (847, '辽宁省', '丹东市', '宽甸满族自治县', '210624'); -INSERT INTO `cardcodes` VALUES (848, '辽宁省', '丹东市', '东港市', '210681'); -INSERT INTO `cardcodes` VALUES (849, '辽宁省', '丹东市', '凤城市', '210682'); -INSERT INTO `cardcodes` VALUES (850, '辽宁省', '锦州市', '市辖区', '210701'); -INSERT INTO `cardcodes` VALUES (851, '辽宁省', '锦州市', '古塔区', '210702'); -INSERT INTO `cardcodes` VALUES (852, '辽宁省', '锦州市', '凌河区', '210703'); -INSERT INTO `cardcodes` VALUES (853, '辽宁省', '锦州市', '南票区', '210704'); -INSERT INTO `cardcodes` VALUES (854, '辽宁省', '锦州市', '葫芦岛区', '210705'); -INSERT INTO `cardcodes` VALUES (855, '辽宁省', '锦州市', '太和区', '210711'); -INSERT INTO `cardcodes` VALUES (856, '辽宁省', '锦州市', '锦西市', '210719'); -INSERT INTO `cardcodes` VALUES (857, '辽宁省', '锦州市', '市区', '210720'); -INSERT INTO `cardcodes` VALUES (858, '辽宁省', '锦州市', '锦西县', '210721'); -INSERT INTO `cardcodes` VALUES (859, '辽宁省', '锦州市', '兴城县', '210722'); -INSERT INTO `cardcodes` VALUES (860, '辽宁省', '锦州市', '绥中县', '210723'); -INSERT INTO `cardcodes` VALUES (861, '辽宁省', '锦州市', '锦县', '210724'); -INSERT INTO `cardcodes` VALUES (862, '辽宁省', '锦州市', '北镇满族自治县', '210725'); -INSERT INTO `cardcodes` VALUES (863, '辽宁省', '锦州市', '黑山县', '210726'); -INSERT INTO `cardcodes` VALUES (864, '辽宁省', '锦州市', '义县', '210727'); -INSERT INTO `cardcodes` VALUES (865, '辽宁省', '锦州市', '凌海市', '210781'); -INSERT INTO `cardcodes` VALUES (866, '辽宁省', '锦州市', '北镇市', '210782'); -INSERT INTO `cardcodes` VALUES (867, '辽宁省', '营口市', '市辖区', '210801'); -INSERT INTO `cardcodes` VALUES (868, '辽宁省', '营口市', '站前区', '210802'); -INSERT INTO `cardcodes` VALUES (869, '辽宁省', '营口市', '西市区', '210803'); -INSERT INTO `cardcodes` VALUES (870, '辽宁省', '营口市', '鲅鱼圈区', '210804'); -INSERT INTO `cardcodes` VALUES (871, '辽宁省', '营口市', '老边区', '210811'); -INSERT INTO `cardcodes` VALUES (872, '辽宁省', '营口市', '营口县', '210821'); -INSERT INTO `cardcodes` VALUES (873, '辽宁省', '营口市', '盖县', '210824'); -INSERT INTO `cardcodes` VALUES (874, '辽宁省', '营口市', '盖州市', '210881'); -INSERT INTO `cardcodes` VALUES (875, '辽宁省', '营口市', '大石桥市', '210882'); -INSERT INTO `cardcodes` VALUES (876, '辽宁省', '阜新市', '市辖区', '210901'); -INSERT INTO `cardcodes` VALUES (877, '辽宁省', '阜新市', '海州区', '210902'); -INSERT INTO `cardcodes` VALUES (878, '辽宁省', '阜新市', '新邱区', '210903'); -INSERT INTO `cardcodes` VALUES (879, '辽宁省', '阜新市', '太平区', '210904'); -INSERT INTO `cardcodes` VALUES (880, '辽宁省', '阜新市', '清河门区', '210905'); -INSERT INTO `cardcodes` VALUES (881, '辽宁省', '阜新市', '细河区', '210911'); -INSERT INTO `cardcodes` VALUES (882, '辽宁省', '阜新市', '阜新蒙古族自治县', '210921'); -INSERT INTO `cardcodes` VALUES (883, '辽宁省', '阜新市', '彰武县', '210922'); -INSERT INTO `cardcodes` VALUES (884, '辽宁省', '辽阳市', '市辖区', '211001'); -INSERT INTO `cardcodes` VALUES (885, '辽宁省', '辽阳市', '白塔区', '211002'); -INSERT INTO `cardcodes` VALUES (886, '辽宁省', '辽阳市', '文圣区', '211003'); -INSERT INTO `cardcodes` VALUES (887, '辽宁省', '辽阳市', '宏伟区', '211004'); -INSERT INTO `cardcodes` VALUES (888, '辽宁省', '辽阳市', '弓长岭区', '211005'); -INSERT INTO `cardcodes` VALUES (889, '辽宁省', '辽阳市', '太子河区', '211011'); -INSERT INTO `cardcodes` VALUES (890, '辽宁省', '辽阳市', '辽阳县', '211021'); -INSERT INTO `cardcodes` VALUES (891, '辽宁省', '辽阳市', '灯塔县', '211022'); -INSERT INTO `cardcodes` VALUES (892, '辽宁省', '辽阳市', '灯塔市', '211081'); -INSERT INTO `cardcodes` VALUES (893, '辽宁省', '盘锦市', '市辖区', '211101'); -INSERT INTO `cardcodes` VALUES (894, '辽宁省', '盘锦市', '双台子区', '211102'); -INSERT INTO `cardcodes` VALUES (895, '辽宁省', '盘锦市', '兴隆台区', '211103'); -INSERT INTO `cardcodes` VALUES (896, '辽宁省', '盘锦市', '郊区', '211111'); -INSERT INTO `cardcodes` VALUES (897, '辽宁省', '盘锦市', '大洼县', '211121'); -INSERT INTO `cardcodes` VALUES (898, '辽宁省', '盘锦市', '盘山县', '211122'); -INSERT INTO `cardcodes` VALUES (899, '辽宁省', '铁岭市', '市辖区', '211201'); -INSERT INTO `cardcodes` VALUES (900, '辽宁省', '铁岭市', '银州区', '211202'); -INSERT INTO `cardcodes` VALUES (901, '辽宁省', '铁岭市', '铁法区', '211203'); -INSERT INTO `cardcodes` VALUES (902, '辽宁省', '铁岭市', '清河区', '211204'); -INSERT INTO `cardcodes` VALUES (903, '辽宁省', '铁岭市', '铁岭县', '211221'); -INSERT INTO `cardcodes` VALUES (904, '辽宁省', '铁岭市', '开原县', '211222'); -INSERT INTO `cardcodes` VALUES (905, '辽宁省', '铁岭市', '西丰县', '211223'); -INSERT INTO `cardcodes` VALUES (906, '辽宁省', '铁岭市', '昌图县', '211224'); -INSERT INTO `cardcodes` VALUES (907, '辽宁省', '铁岭市', '康平县', '211225'); -INSERT INTO `cardcodes` VALUES (908, '辽宁省', '铁岭市', '法库县', '211226'); -INSERT INTO `cardcodes` VALUES (909, '辽宁省', '铁岭市', '调兵山市', '211281'); -INSERT INTO `cardcodes` VALUES (910, '辽宁省', '铁岭市', '开原市', '211282'); -INSERT INTO `cardcodes` VALUES (911, '辽宁省', '朝阳市', '市辖区', '211301'); -INSERT INTO `cardcodes` VALUES (912, '辽宁省', '朝阳市', '双塔区', '211302'); -INSERT INTO `cardcodes` VALUES (913, '辽宁省', '朝阳市', '龙城区', '211303'); -INSERT INTO `cardcodes` VALUES (914, '辽宁省', '朝阳市', '朝阳县', '211321'); -INSERT INTO `cardcodes` VALUES (915, '辽宁省', '朝阳市', '建平县', '211322'); -INSERT INTO `cardcodes` VALUES (916, '辽宁省', '朝阳市', '凌源县', '211323'); -INSERT INTO `cardcodes` VALUES (917, '辽宁省', '朝阳市', '喀喇沁左翼蒙古族自治县', '211324'); -INSERT INTO `cardcodes` VALUES (918, '辽宁省', '朝阳市', '建昌县', '211325'); -INSERT INTO `cardcodes` VALUES (919, '辽宁省', '朝阳市', '北票县', '211326'); -INSERT INTO `cardcodes` VALUES (920, '辽宁省', '朝阳市', '北票市', '211381'); -INSERT INTO `cardcodes` VALUES (921, '辽宁省', '朝阳市', '凌源市', '211382'); -INSERT INTO `cardcodes` VALUES (922, '辽宁省', '葫芦岛市', '市辖区', '211401'); -INSERT INTO `cardcodes` VALUES (923, '辽宁省', '葫芦岛市', '连山区', '211402'); -INSERT INTO `cardcodes` VALUES (924, '辽宁省', '葫芦岛市', '龙港区', '211403'); -INSERT INTO `cardcodes` VALUES (925, '辽宁省', '葫芦岛市', '南票区', '211404'); -INSERT INTO `cardcodes` VALUES (926, '辽宁省', '葫芦岛市', '绥中县', '211421'); -INSERT INTO `cardcodes` VALUES (927, '辽宁省', '葫芦岛市', '建昌县', '211422'); -INSERT INTO `cardcodes` VALUES (928, '辽宁省', '葫芦岛市', '兴城市', '211481'); -INSERT INTO `cardcodes` VALUES (929, '辽宁省', '铁岭市', '铁岭市', '212101'); -INSERT INTO `cardcodes` VALUES (930, '辽宁省', '铁岭市', '铁法市', '212102'); -INSERT INTO `cardcodes` VALUES (931, '辽宁省', '铁岭市', '铁岭县', '212121'); -INSERT INTO `cardcodes` VALUES (932, '辽宁省', '铁岭市', '开原县', '212122'); -INSERT INTO `cardcodes` VALUES (933, '辽宁省', '铁岭市', '西丰县', '212123'); -INSERT INTO `cardcodes` VALUES (934, '辽宁省', '铁岭市', '昌图县', '212124'); -INSERT INTO `cardcodes` VALUES (935, '辽宁省', '铁岭市', '康平县', '212125'); -INSERT INTO `cardcodes` VALUES (936, '辽宁省', '铁岭市', '法库县', '212126'); -INSERT INTO `cardcodes` VALUES (937, '辽宁省', '朝阳市', '建昌县', '212225'); -INSERT INTO `cardcodes` VALUES (938, '辽宁省', '朝阳市', '北票县', '212226'); -INSERT INTO `cardcodes` VALUES (939, '辽宁省', NULL, '瓦房店市', '219001'); -INSERT INTO `cardcodes` VALUES (940, '辽宁省', NULL, '海城市', '219002'); -INSERT INTO `cardcodes` VALUES (941, '辽宁省', NULL, '锦西市', '219003'); -INSERT INTO `cardcodes` VALUES (942, '辽宁省', NULL, '兴城市', '219004'); -INSERT INTO `cardcodes` VALUES (943, '辽宁省', NULL, '铁法市', '219005'); -INSERT INTO `cardcodes` VALUES (944, '辽宁省', NULL, '北票市', '219006'); -INSERT INTO `cardcodes` VALUES (945, '辽宁省', NULL, '开原市', '219007'); -INSERT INTO `cardcodes` VALUES (946, '吉林省', '长春市', '市辖区', '220101'); -INSERT INTO `cardcodes` VALUES (947, '吉林省', '长春市', '南关区', '220102'); -INSERT INTO `cardcodes` VALUES (948, '吉林省', '长春市', '宽城区', '220103'); -INSERT INTO `cardcodes` VALUES (949, '吉林省', '长春市', '朝阳区', '220104'); -INSERT INTO `cardcodes` VALUES (950, '吉林省', '长春市', '二道区', '220105'); -INSERT INTO `cardcodes` VALUES (951, '吉林省', '长春市', '绿园区', '220106'); -INSERT INTO `cardcodes` VALUES (952, '吉林省', '长春市', '郊区', '220111'); -INSERT INTO `cardcodes` VALUES (953, '吉林省', '长春市', '双阳区', '220112'); -INSERT INTO `cardcodes` VALUES (954, '吉林省', '长春市', '市区', '220120'); -INSERT INTO `cardcodes` VALUES (955, '吉林省', '长春市', '榆树县', '220121'); -INSERT INTO `cardcodes` VALUES (956, '吉林省', '长春市', '农安县', '220122'); -INSERT INTO `cardcodes` VALUES (957, '吉林省', '长春市', '九台县', '220123'); -INSERT INTO `cardcodes` VALUES (958, '吉林省', '长春市', '德惠县', '220124'); -INSERT INTO `cardcodes` VALUES (959, '吉林省', '长春市', '双阳县', '220125'); -INSERT INTO `cardcodes` VALUES (960, '吉林省', '长春市', '九台市', '220181'); -INSERT INTO `cardcodes` VALUES (961, '吉林省', '长春市', '榆树市', '220182'); -INSERT INTO `cardcodes` VALUES (962, '吉林省', '长春市', '德惠市', '220183'); -INSERT INTO `cardcodes` VALUES (963, '吉林省', '吉林市', '市辖区', '220201'); -INSERT INTO `cardcodes` VALUES (964, '吉林省', '吉林市', '昌邑区', '220202'); -INSERT INTO `cardcodes` VALUES (965, '吉林省', '吉林市', '龙潭区', '220203'); -INSERT INTO `cardcodes` VALUES (966, '吉林省', '吉林市', '船营区', '220204'); -INSERT INTO `cardcodes` VALUES (967, '吉林省', '吉林市', '丰满区', '220211'); -INSERT INTO `cardcodes` VALUES (968, '吉林省', '吉林市', '市区', '220220'); -INSERT INTO `cardcodes` VALUES (969, '吉林省', '吉林市', '永吉县', '220221'); -INSERT INTO `cardcodes` VALUES (970, '吉林省', '吉林市', '舒兰县', '220222'); -INSERT INTO `cardcodes` VALUES (971, '吉林省', '吉林市', '磐石县', '220223'); -INSERT INTO `cardcodes` VALUES (972, '吉林省', '吉林市', '蛟河县', '220224'); -INSERT INTO `cardcodes` VALUES (973, '吉林省', '吉林市', '桦甸县', '220225'); -INSERT INTO `cardcodes` VALUES (974, '吉林省', '吉林市', '蛟河市', '220281'); -INSERT INTO `cardcodes` VALUES (975, '吉林省', '吉林市', '桦甸市', '220282'); -INSERT INTO `cardcodes` VALUES (976, '吉林省', '吉林市', '舒兰市', '220283'); -INSERT INTO `cardcodes` VALUES (977, '吉林省', '吉林市', '磐石市', '220284'); -INSERT INTO `cardcodes` VALUES (978, '吉林省', '四平市', '市辖区', '220301'); -INSERT INTO `cardcodes` VALUES (979, '吉林省', '四平市', '铁西区', '220302'); -INSERT INTO `cardcodes` VALUES (980, '吉林省', '四平市', '铁东区', '220303'); -INSERT INTO `cardcodes` VALUES (981, '吉林省', '四平市', '公主岭市', '220319'); -INSERT INTO `cardcodes` VALUES (982, '吉林省', '四平市', '怀德县', '220321'); -INSERT INTO `cardcodes` VALUES (983, '吉林省', '四平市', '梨树县', '220322'); -INSERT INTO `cardcodes` VALUES (984, '吉林省', '四平市', '伊通满族自治县', '220323'); -INSERT INTO `cardcodes` VALUES (985, '吉林省', '四平市', '双辽县', '220324'); -INSERT INTO `cardcodes` VALUES (986, '吉林省', '四平市', '公主岭市', '220381'); -INSERT INTO `cardcodes` VALUES (987, '吉林省', '四平市', '双辽市', '220382'); -INSERT INTO `cardcodes` VALUES (988, '吉林省', '辽源市', '市辖区', '220401'); -INSERT INTO `cardcodes` VALUES (989, '吉林省', '辽源市', '龙山区', '220402'); -INSERT INTO `cardcodes` VALUES (990, '吉林省', '辽源市', '西安区', '220403'); -INSERT INTO `cardcodes` VALUES (991, '吉林省', '辽源市', '东丰县', '220421'); -INSERT INTO `cardcodes` VALUES (992, '吉林省', '辽源市', '东辽县', '220422'); -INSERT INTO `cardcodes` VALUES (993, '吉林省', '通化市', '市辖区', '220501'); -INSERT INTO `cardcodes` VALUES (994, '吉林省', '通化市', '东昌区', '220502'); -INSERT INTO `cardcodes` VALUES (995, '吉林省', '通化市', '二道江区', '220503'); -INSERT INTO `cardcodes` VALUES (996, '吉林省', '通化市', '梅河口市', '220519'); -INSERT INTO `cardcodes` VALUES (997, '吉林省', '通化市', '通化县', '220521'); -INSERT INTO `cardcodes` VALUES (998, '吉林省', '通化市', '集安县', '220522'); -INSERT INTO `cardcodes` VALUES (999, '吉林省', '通化市', '辉南县', '220523'); -INSERT INTO `cardcodes` VALUES (1000, '吉林省', '通化市', '柳河县', '220524'); -INSERT INTO `cardcodes` VALUES (1001, '吉林省', '通化市', '梅河口市', '220581'); -INSERT INTO `cardcodes` VALUES (1002, '吉林省', '通化市', '集安市', '220582'); -INSERT INTO `cardcodes` VALUES (1003, '吉林省', '白山市', '市辖区', '220601'); -INSERT INTO `cardcodes` VALUES (1004, '吉林省', '白山市', '八道江区', '220602'); -INSERT INTO `cardcodes` VALUES (1005, '吉林省', '白山市', '三岔子区', '220603'); -INSERT INTO `cardcodes` VALUES (1006, '吉林省', '白山市', '临江区', '220604'); -INSERT INTO `cardcodes` VALUES (1007, '吉林省', '白山市', '抚松县', '220621'); -INSERT INTO `cardcodes` VALUES (1008, '吉林省', '白山市', '靖宇县', '220622'); -INSERT INTO `cardcodes` VALUES (1009, '吉林省', '白山市', '长白朝鲜族自治县', '220623'); -INSERT INTO `cardcodes` VALUES (1010, '吉林省', '白山市', '江源县', '220625'); -INSERT INTO `cardcodes` VALUES (1011, '吉林省', '白山市', '临江市', '220681'); -INSERT INTO `cardcodes` VALUES (1012, '吉林省', '松原市', '市辖区', '220701'); -INSERT INTO `cardcodes` VALUES (1013, '吉林省', '松原市', '宁江区', '220702'); -INSERT INTO `cardcodes` VALUES (1014, '吉林省', '松原市', '前郭尔罗斯蒙古族自治县', '220721'); -INSERT INTO `cardcodes` VALUES (1015, '吉林省', '松原市', '长岭县', '220722'); -INSERT INTO `cardcodes` VALUES (1016, '吉林省', '松原市', '乾安县', '220723'); -INSERT INTO `cardcodes` VALUES (1017, '吉林省', '松原市', '扶余县', '220724'); -INSERT INTO `cardcodes` VALUES (1018, '吉林省', '白城市', '市辖区', '220801'); -INSERT INTO `cardcodes` VALUES (1019, '吉林省', '白城市', '洮北区', '220802'); -INSERT INTO `cardcodes` VALUES (1020, '吉林省', '白城市', '镇赉县', '220821'); -INSERT INTO `cardcodes` VALUES (1021, '吉林省', '白城市', '通榆县', '220822'); -INSERT INTO `cardcodes` VALUES (1022, '吉林省', '白城市', '洮南市', '220881'); -INSERT INTO `cardcodes` VALUES (1023, '吉林省', '白城市', '大安市', '220882'); -INSERT INTO `cardcodes` VALUES (1024, '吉林省', '白城地区', '白城市', '222301'); -INSERT INTO `cardcodes` VALUES (1025, '吉林省', '白城地区', '洮南市', '222302'); -INSERT INTO `cardcodes` VALUES (1026, '吉林省', '白城地区', '扶余市', '222303'); -INSERT INTO `cardcodes` VALUES (1027, '吉林省', '白城地区', '大安市', '222304'); -INSERT INTO `cardcodes` VALUES (1028, '吉林省', '白城地区', '扶余县', '222321'); -INSERT INTO `cardcodes` VALUES (1029, '吉林省', '白城地区', '洮安县', '222322'); -INSERT INTO `cardcodes` VALUES (1030, '吉林省', '白城地区', '长岭县', '222323'); -INSERT INTO `cardcodes` VALUES (1031, '吉林省', '白城地区', '前郭尔罗斯蒙古族自治县', '222324'); -INSERT INTO `cardcodes` VALUES (1032, '吉林省', '白城地区', '大安县', '222325'); -INSERT INTO `cardcodes` VALUES (1033, '吉林省', '白城地区', '镇赉县', '222326'); -INSERT INTO `cardcodes` VALUES (1034, '吉林省', '白城地区', '通榆县', '222327'); -INSERT INTO `cardcodes` VALUES (1035, '吉林省', '白城地区', '乾安县', '222328'); -INSERT INTO `cardcodes` VALUES (1036, '吉林省', '延边朝鲜族自治州', '延吉市', '222401'); -INSERT INTO `cardcodes` VALUES (1037, '吉林省', '延边朝鲜族自治州', '图们市', '222402'); -INSERT INTO `cardcodes` VALUES (1038, '吉林省', '延边朝鲜族自治州', '敦化市', '222403'); -INSERT INTO `cardcodes` VALUES (1039, '吉林省', '延边朝鲜族自治州', '珲春市', '222404'); -INSERT INTO `cardcodes` VALUES (1040, '吉林省', '延边朝鲜族自治州', '龙井市', '222405'); -INSERT INTO `cardcodes` VALUES (1041, '吉林省', '延边朝鲜族自治州', '和龙市', '222406'); -INSERT INTO `cardcodes` VALUES (1042, '吉林省', '延边朝鲜族自治州', '龙井县', '222421'); -INSERT INTO `cardcodes` VALUES (1043, '吉林省', '延边朝鲜族自治州', '敦化县', '222422'); -INSERT INTO `cardcodes` VALUES (1044, '吉林省', '延边朝鲜族自治州', '和龙县', '222423'); -INSERT INTO `cardcodes` VALUES (1045, '吉林省', '延边朝鲜族自治州', '汪清县', '222424'); -INSERT INTO `cardcodes` VALUES (1046, '吉林省', '延边朝鲜族自治州', '珲春县', '222425'); -INSERT INTO `cardcodes` VALUES (1047, '吉林省', '延边朝鲜族自治州', '安图县', '222426'); -INSERT INTO `cardcodes` VALUES (1048, '吉林省', NULL, '四平市', '222101'); -INSERT INTO `cardcodes` VALUES (1049, '吉林省', NULL, '辽源市', '222102'); -INSERT INTO `cardcodes` VALUES (1050, '吉林省', NULL, '怀德县', '222121'); -INSERT INTO `cardcodes` VALUES (1051, '吉林省', NULL, '梨树县', '222122'); -INSERT INTO `cardcodes` VALUES (1052, '吉林省', NULL, '伊通满族自治县', '222123'); -INSERT INTO `cardcodes` VALUES (1053, '吉林省', NULL, '东丰县', '222124'); -INSERT INTO `cardcodes` VALUES (1054, '吉林省', NULL, '双辽县', '222125'); -INSERT INTO `cardcodes` VALUES (1055, '吉林省', NULL, '通化市', '222201'); -INSERT INTO `cardcodes` VALUES (1056, '吉林省', NULL, '浑江市', '222202'); -INSERT INTO `cardcodes` VALUES (1057, '吉林省', NULL, '海龙县', '222221'); -INSERT INTO `cardcodes` VALUES (1058, '吉林省', NULL, '通化县', '222222'); -INSERT INTO `cardcodes` VALUES (1059, '吉林省', NULL, '柳河县', '222223'); -INSERT INTO `cardcodes` VALUES (1060, '吉林省', NULL, '辉南县', '222224'); -INSERT INTO `cardcodes` VALUES (1061, '吉林省', NULL, '集安县', '222225'); -INSERT INTO `cardcodes` VALUES (1062, '吉林省', NULL, '抚松县', '222226'); -INSERT INTO `cardcodes` VALUES (1063, '吉林省', NULL, '靖宇县', '222227'); -INSERT INTO `cardcodes` VALUES (1064, '吉林省', NULL, '长白朝鲜族自治县', '222228'); -INSERT INTO `cardcodes` VALUES (1065, '吉林省', NULL, '公主岭市', '229001'); -INSERT INTO `cardcodes` VALUES (1066, '吉林省', NULL, '梅河口市', '229002'); -INSERT INTO `cardcodes` VALUES (1067, '吉林省', NULL, '集安市', '229003'); -INSERT INTO `cardcodes` VALUES (1068, '吉林省', NULL, '桦甸市', '229004'); -INSERT INTO `cardcodes` VALUES (1069, '吉林省', NULL, '九台市', '229005'); -INSERT INTO `cardcodes` VALUES (1070, '黑龙江省', '哈尔滨市', '市辖区', '230101'); -INSERT INTO `cardcodes` VALUES (1071, '黑龙江省', '哈尔滨市', '道里区', '230102'); -INSERT INTO `cardcodes` VALUES (1072, '黑龙江省', '哈尔滨市', '南岗区', '230103'); -INSERT INTO `cardcodes` VALUES (1073, '黑龙江省', '哈尔滨市', '道外区', '230104'); -INSERT INTO `cardcodes` VALUES (1074, '黑龙江省', '哈尔滨市', '太平区', '230105'); -INSERT INTO `cardcodes` VALUES (1075, '黑龙江省', '哈尔滨市', '香坊区', '230106'); -INSERT INTO `cardcodes` VALUES (1076, '黑龙江省', '哈尔滨市', '动力区', '230107'); -INSERT INTO `cardcodes` VALUES (1077, '黑龙江省', '哈尔滨市', '平房区', '230108'); -INSERT INTO `cardcodes` VALUES (1078, '黑龙江省', '哈尔滨市', '松北区', '230109'); -INSERT INTO `cardcodes` VALUES (1079, '黑龙江省', '哈尔滨市', '香坊区', '230110'); -INSERT INTO `cardcodes` VALUES (1080, '黑龙江省', '哈尔滨市', '呼兰区', '230111'); -INSERT INTO `cardcodes` VALUES (1081, '黑龙江省', '哈尔滨市', '阿城区', '230112'); -INSERT INTO `cardcodes` VALUES (1082, '黑龙江省', '哈尔滨市', '阿城市', '230119'); -INSERT INTO `cardcodes` VALUES (1083, '黑龙江省', '哈尔滨市', '呼兰县', '230121'); -INSERT INTO `cardcodes` VALUES (1084, '黑龙江省', '哈尔滨市', '阿城县', '230122'); -INSERT INTO `cardcodes` VALUES (1085, '黑龙江省', '哈尔滨市', '依兰县', '230123'); -INSERT INTO `cardcodes` VALUES (1086, '黑龙江省', '哈尔滨市', '方正县', '230124'); -INSERT INTO `cardcodes` VALUES (1087, '黑龙江省', '哈尔滨市', '宾县', '230125'); -INSERT INTO `cardcodes` VALUES (1088, '黑龙江省', '哈尔滨市', '巴彦县', '230126'); -INSERT INTO `cardcodes` VALUES (1089, '黑龙江省', '哈尔滨市', '木兰县', '230127'); -INSERT INTO `cardcodes` VALUES (1090, '黑龙江省', '哈尔滨市', '通河县', '230128'); -INSERT INTO `cardcodes` VALUES (1091, '黑龙江省', '哈尔滨市', '延寿县', '230129'); -INSERT INTO `cardcodes` VALUES (1092, '黑龙江省', '哈尔滨市', '阿城市', '230181'); -INSERT INTO `cardcodes` VALUES (1093, '黑龙江省', '哈尔滨市', '双城市', '230182'); -INSERT INTO `cardcodes` VALUES (1094, '黑龙江省', '哈尔滨市', '尚志市', '230183'); -INSERT INTO `cardcodes` VALUES (1095, '黑龙江省', '哈尔滨市', '五常市', '230184'); -INSERT INTO `cardcodes` VALUES (1096, '黑龙江省', '齐齐哈尔市', '市辖区', '230201'); -INSERT INTO `cardcodes` VALUES (1097, '黑龙江省', '齐齐哈尔市', '龙沙区', '230202'); -INSERT INTO `cardcodes` VALUES (1098, '黑龙江省', '齐齐哈尔市', '建华区', '230203'); -INSERT INTO `cardcodes` VALUES (1099, '黑龙江省', '齐齐哈尔市', '铁锋区', '230204'); -INSERT INTO `cardcodes` VALUES (1100, '黑龙江省', '齐齐哈尔市', '昂昂溪区', '230205'); -INSERT INTO `cardcodes` VALUES (1101, '黑龙江省', '齐齐哈尔市', '富拉尔基区', '230206'); -INSERT INTO `cardcodes` VALUES (1102, '黑龙江省', '齐齐哈尔市', '碾子山区', '230207'); -INSERT INTO `cardcodes` VALUES (1103, '黑龙江省', '齐齐哈尔市', '梅里斯达斡尔族区', '230208'); -INSERT INTO `cardcodes` VALUES (1104, '黑龙江省', '齐齐哈尔市', '龙江县', '230221'); -INSERT INTO `cardcodes` VALUES (1105, '黑龙江省', '齐齐哈尔市', '讷河县', '230222'); -INSERT INTO `cardcodes` VALUES (1106, '黑龙江省', '齐齐哈尔市', '依安县', '230223'); -INSERT INTO `cardcodes` VALUES (1107, '黑龙江省', '齐齐哈尔市', '泰来县', '230224'); -INSERT INTO `cardcodes` VALUES (1108, '黑龙江省', '齐齐哈尔市', '甘南县', '230225'); -INSERT INTO `cardcodes` VALUES (1109, '黑龙江省', '齐齐哈尔市', '杜尔伯特蒙古族自治县', '230226'); -INSERT INTO `cardcodes` VALUES (1110, '黑龙江省', '齐齐哈尔市', '富裕县', '230227'); -INSERT INTO `cardcodes` VALUES (1111, '黑龙江省', '齐齐哈尔市', '林甸县', '230228'); -INSERT INTO `cardcodes` VALUES (1112, '黑龙江省', '齐齐哈尔市', '克山县', '230229'); -INSERT INTO `cardcodes` VALUES (1113, '黑龙江省', '齐齐哈尔市', '克东县', '230230'); -INSERT INTO `cardcodes` VALUES (1114, '黑龙江省', '齐齐哈尔市', '拜泉县', '230231'); -INSERT INTO `cardcodes` VALUES (1115, '黑龙江省', '齐齐哈尔市', '讷河市', '230281'); -INSERT INTO `cardcodes` VALUES (1116, '黑龙江省', '鸡西市', '市辖区', '230301'); -INSERT INTO `cardcodes` VALUES (1117, '黑龙江省', '鸡西市', '鸡冠区', '230302'); -INSERT INTO `cardcodes` VALUES (1118, '黑龙江省', '鸡西市', '恒山区', '230303'); -INSERT INTO `cardcodes` VALUES (1119, '黑龙江省', '鸡西市', '滴道区', '230304'); -INSERT INTO `cardcodes` VALUES (1120, '黑龙江省', '鸡西市', '梨树区', '230305'); -INSERT INTO `cardcodes` VALUES (1121, '黑龙江省', '鸡西市', '城子河区', '230306'); -INSERT INTO `cardcodes` VALUES (1122, '黑龙江省', '鸡西市', '麻山区', '230307'); -INSERT INTO `cardcodes` VALUES (1123, '黑龙江省', '鸡西市', '鸡东县', '230321'); -INSERT INTO `cardcodes` VALUES (1124, '黑龙江省', '鸡西市', '虎林市', '230381'); -INSERT INTO `cardcodes` VALUES (1125, '黑龙江省', '鸡西市', '密山市', '230382'); -INSERT INTO `cardcodes` VALUES (1126, '黑龙江省', '鹤岗市', '市辖区', '230401'); -INSERT INTO `cardcodes` VALUES (1127, '黑龙江省', '鹤岗市', '向阳区', '230402'); -INSERT INTO `cardcodes` VALUES (1128, '黑龙江省', '鹤岗市', '工农区', '230403'); -INSERT INTO `cardcodes` VALUES (1129, '黑龙江省', '鹤岗市', '南山区', '230404'); -INSERT INTO `cardcodes` VALUES (1130, '黑龙江省', '鹤岗市', '兴安区', '230405'); -INSERT INTO `cardcodes` VALUES (1131, '黑龙江省', '鹤岗市', '东山区', '230406'); -INSERT INTO `cardcodes` VALUES (1132, '黑龙江省', '鹤岗市', '兴山区', '230407'); -INSERT INTO `cardcodes` VALUES (1133, '黑龙江省', '鹤岗市', '萝北县', '230421'); -INSERT INTO `cardcodes` VALUES (1134, '黑龙江省', '鹤岗市', '绥滨县', '230422'); -INSERT INTO `cardcodes` VALUES (1135, '黑龙江省', '双鸭山市', '市辖区', '230501'); -INSERT INTO `cardcodes` VALUES (1136, '黑龙江省', '双鸭山市', '尖山区', '230502'); -INSERT INTO `cardcodes` VALUES (1137, '黑龙江省', '双鸭山市', '岭东区', '230503'); -INSERT INTO `cardcodes` VALUES (1138, '黑龙江省', '双鸭山市', '岭西区', '230504'); -INSERT INTO `cardcodes` VALUES (1139, '黑龙江省', '双鸭山市', '四方台区', '230505'); -INSERT INTO `cardcodes` VALUES (1140, '黑龙江省', '双鸭山市', '宝山区', '230506'); -INSERT INTO `cardcodes` VALUES (1141, '黑龙江省', '双鸭山市', '集贤县', '230521'); -INSERT INTO `cardcodes` VALUES (1142, '黑龙江省', '双鸭山市', '友谊县', '230522'); -INSERT INTO `cardcodes` VALUES (1143, '黑龙江省', '双鸭山市', '宝清县', '230523'); -INSERT INTO `cardcodes` VALUES (1144, '黑龙江省', '双鸭山市', '饶河县', '230524'); -INSERT INTO `cardcodes` VALUES (1145, '黑龙江省', '大庆市', '市辖区', '230601'); -INSERT INTO `cardcodes` VALUES (1146, '黑龙江省', '大庆市', '萨尔图区', '230602'); -INSERT INTO `cardcodes` VALUES (1147, '黑龙江省', '大庆市', '龙凤区', '230603'); -INSERT INTO `cardcodes` VALUES (1148, '黑龙江省', '大庆市', '让胡路区', '230604'); -INSERT INTO `cardcodes` VALUES (1149, '黑龙江省', '大庆市', '红岗区', '230605'); -INSERT INTO `cardcodes` VALUES (1150, '黑龙江省', '大庆市', '大同区', '230606'); -INSERT INTO `cardcodes` VALUES (1151, '黑龙江省', '大庆市', '肇州县', '230621'); -INSERT INTO `cardcodes` VALUES (1152, '黑龙江省', '大庆市', '肇源县', '230622'); -INSERT INTO `cardcodes` VALUES (1153, '黑龙江省', '大庆市', '林甸县', '230623'); -INSERT INTO `cardcodes` VALUES (1154, '黑龙江省', '大庆市', '杜尔伯特蒙古族自治县', '230624'); -INSERT INTO `cardcodes` VALUES (1155, '黑龙江省', '伊春市', '市辖区', '230701'); -INSERT INTO `cardcodes` VALUES (1156, '黑龙江省', '伊春市', '伊春区', '230702'); -INSERT INTO `cardcodes` VALUES (1157, '黑龙江省', '伊春市', '南岔区', '230703'); -INSERT INTO `cardcodes` VALUES (1158, '黑龙江省', '伊春市', '友好区', '230704'); -INSERT INTO `cardcodes` VALUES (1159, '黑龙江省', '伊春市', '西林区', '230705'); -INSERT INTO `cardcodes` VALUES (1160, '黑龙江省', '伊春市', '翠峦区', '230706'); -INSERT INTO `cardcodes` VALUES (1161, '黑龙江省', '伊春市', '新青区', '230707'); -INSERT INTO `cardcodes` VALUES (1162, '黑龙江省', '伊春市', '美溪区', '230708'); -INSERT INTO `cardcodes` VALUES (1163, '黑龙江省', '伊春市', '金山屯区', '230709'); -INSERT INTO `cardcodes` VALUES (1164, '黑龙江省', '伊春市', '五营区', '230710'); -INSERT INTO `cardcodes` VALUES (1165, '黑龙江省', '伊春市', '乌马河区', '230711'); -INSERT INTO `cardcodes` VALUES (1166, '黑龙江省', '伊春市', '汤旺河区', '230712'); -INSERT INTO `cardcodes` VALUES (1167, '黑龙江省', '伊春市', '带岭区', '230713'); -INSERT INTO `cardcodes` VALUES (1168, '黑龙江省', '伊春市', '乌伊岭区', '230714'); -INSERT INTO `cardcodes` VALUES (1169, '黑龙江省', '伊春市', '红星区', '230715'); -INSERT INTO `cardcodes` VALUES (1170, '黑龙江省', '伊春市', '上甘岭区', '230716'); -INSERT INTO `cardcodes` VALUES (1171, '黑龙江省', '伊春市', '铁力县', '230721'); -INSERT INTO `cardcodes` VALUES (1172, '黑龙江省', '伊春市', '嘉荫县', '230722'); -INSERT INTO `cardcodes` VALUES (1173, '黑龙江省', '伊春市', '铁力市', '230781'); -INSERT INTO `cardcodes` VALUES (1174, '黑龙江省', '佳木斯市', '市辖区', '230801'); -INSERT INTO `cardcodes` VALUES (1175, '黑龙江省', '佳木斯市', '永红区', '230802'); -INSERT INTO `cardcodes` VALUES (1176, '黑龙江省', '佳木斯市', '向阳区', '230803'); -INSERT INTO `cardcodes` VALUES (1177, '黑龙江省', '佳木斯市', '前进区', '230804'); -INSERT INTO `cardcodes` VALUES (1178, '黑龙江省', '佳木斯市', '东风区', '230805'); -INSERT INTO `cardcodes` VALUES (1179, '黑龙江省', '佳木斯市', '郊区', '230811'); -INSERT INTO `cardcodes` VALUES (1180, '黑龙江省', '佳木斯市', '富锦县', '230821'); -INSERT INTO `cardcodes` VALUES (1181, '黑龙江省', '佳木斯市', '桦南县', '230822'); -INSERT INTO `cardcodes` VALUES (1182, '黑龙江省', '佳木斯市', '依兰县', '230823'); -INSERT INTO `cardcodes` VALUES (1183, '黑龙江省', '佳木斯市', '集贤县', '230825'); -INSERT INTO `cardcodes` VALUES (1184, '黑龙江省', '佳木斯市', '桦川县', '230826'); -INSERT INTO `cardcodes` VALUES (1185, '黑龙江省', '佳木斯市', '宝清县', '230827'); -INSERT INTO `cardcodes` VALUES (1186, '黑龙江省', '佳木斯市', '汤原县', '230828'); -INSERT INTO `cardcodes` VALUES (1187, '黑龙江省', '佳木斯市', '绥滨县', '230829'); -INSERT INTO `cardcodes` VALUES (1188, '黑龙江省', '佳木斯市', '萝北县', '230830'); -INSERT INTO `cardcodes` VALUES (1189, '黑龙江省', '佳木斯市', '同江县', '230831'); -INSERT INTO `cardcodes` VALUES (1190, '黑龙江省', '佳木斯市', '饶河县', '230832'); -INSERT INTO `cardcodes` VALUES (1191, '黑龙江省', '佳木斯市', '抚远县', '230833'); -INSERT INTO `cardcodes` VALUES (1192, '黑龙江省', '佳木斯市', '友谊县', '230834'); -INSERT INTO `cardcodes` VALUES (1193, '黑龙江省', '佳木斯市', '同江市', '230881'); -INSERT INTO `cardcodes` VALUES (1194, '黑龙江省', '佳木斯市', '富锦市', '230882'); -INSERT INTO `cardcodes` VALUES (1195, '黑龙江省', '七台河市', '市辖区', '230901'); -INSERT INTO `cardcodes` VALUES (1196, '黑龙江省', '七台河市', '新兴区', '230902'); -INSERT INTO `cardcodes` VALUES (1197, '黑龙江省', '七台河市', '桃山区', '230903'); -INSERT INTO `cardcodes` VALUES (1198, '黑龙江省', '七台河市', '茄子河区', '230904'); -INSERT INTO `cardcodes` VALUES (1199, '黑龙江省', '七台河市', '勃利县', '230921'); -INSERT INTO `cardcodes` VALUES (1200, '黑龙江省', '牡丹江市', '市辖区', '231001'); -INSERT INTO `cardcodes` VALUES (1201, '黑龙江省', '牡丹江市', '东安区', '231002'); -INSERT INTO `cardcodes` VALUES (1202, '黑龙江省', '牡丹江市', '阳明区', '231003'); -INSERT INTO `cardcodes` VALUES (1203, '黑龙江省', '牡丹江市', '爱民区', '231004'); -INSERT INTO `cardcodes` VALUES (1204, '黑龙江省', '牡丹江市', '西安区', '231005'); -INSERT INTO `cardcodes` VALUES (1205, '黑龙江省', '牡丹江市', '郊区', '231011'); -INSERT INTO `cardcodes` VALUES (1206, '黑龙江省', '牡丹江市', '绥芬河市', '231020'); -INSERT INTO `cardcodes` VALUES (1207, '黑龙江省', '牡丹江市', '宁安县', '231021'); -INSERT INTO `cardcodes` VALUES (1208, '黑龙江省', '牡丹江市', '海林县', '231022'); -INSERT INTO `cardcodes` VALUES (1209, '黑龙江省', '牡丹江市', '穆棱县', '231023'); -INSERT INTO `cardcodes` VALUES (1210, '黑龙江省', '牡丹江市', '东宁县', '231024'); -INSERT INTO `cardcodes` VALUES (1211, '黑龙江省', '牡丹江市', '林口县', '231025'); -INSERT INTO `cardcodes` VALUES (1212, '黑龙江省', '牡丹江市', '密山县', '231026'); -INSERT INTO `cardcodes` VALUES (1213, '黑龙江省', '牡丹江市', '虎林县', '231027'); -INSERT INTO `cardcodes` VALUES (1214, '黑龙江省', '牡丹江市', '绥芬河市', '231081'); -INSERT INTO `cardcodes` VALUES (1215, '黑龙江省', '牡丹江市', '密山市', '231082'); -INSERT INTO `cardcodes` VALUES (1216, '黑龙江省', '牡丹江市', '海林市', '231083'); -INSERT INTO `cardcodes` VALUES (1217, '黑龙江省', '牡丹江市', '宁安市', '231084'); -INSERT INTO `cardcodes` VALUES (1218, '黑龙江省', '牡丹江市', '穆棱市', '231085'); -INSERT INTO `cardcodes` VALUES (1219, '黑龙江省', '黑河市', '市辖区', '231101'); -INSERT INTO `cardcodes` VALUES (1220, '黑龙江省', '黑河市', '爱辉区', '231102'); -INSERT INTO `cardcodes` VALUES (1221, '黑龙江省', '黑河市', '嫩江县', '231121'); -INSERT INTO `cardcodes` VALUES (1222, '黑龙江省', '黑河市', '逊克县', '231123'); -INSERT INTO `cardcodes` VALUES (1223, '黑龙江省', '黑河市', '孙吴县', '231124'); -INSERT INTO `cardcodes` VALUES (1224, '黑龙江省', '黑河市', '北安市', '231181'); -INSERT INTO `cardcodes` VALUES (1225, '黑龙江省', '黑河市', '五大连池市', '231182'); -INSERT INTO `cardcodes` VALUES (1226, '黑龙江省', '绥化市', '市辖区', '231201'); -INSERT INTO `cardcodes` VALUES (1227, '黑龙江省', '绥化市', '北林区', '231202'); -INSERT INTO `cardcodes` VALUES (1228, '黑龙江省', '绥化市', '望奎县', '231221'); -INSERT INTO `cardcodes` VALUES (1229, '黑龙江省', '绥化市', '兰西县', '231222'); -INSERT INTO `cardcodes` VALUES (1230, '黑龙江省', '绥化市', '青冈县', '231223'); -INSERT INTO `cardcodes` VALUES (1231, '黑龙江省', '绥化市', '庆安县', '231224'); -INSERT INTO `cardcodes` VALUES (1232, '黑龙江省', '绥化市', '明水县', '231225'); -INSERT INTO `cardcodes` VALUES (1233, '黑龙江省', '绥化市', '绥棱县', '231226'); -INSERT INTO `cardcodes` VALUES (1234, '黑龙江省', '绥化市', '安达市', '231281'); -INSERT INTO `cardcodes` VALUES (1235, '黑龙江省', '绥化市', '肇东市', '231282'); -INSERT INTO `cardcodes` VALUES (1236, '黑龙江省', '绥化市', '海伦市', '231283'); -INSERT INTO `cardcodes` VALUES (1237, '黑龙江省', '松花江地区', '双城市', '232101'); -INSERT INTO `cardcodes` VALUES (1238, '黑龙江省', '松花江地区', '尚志市', '232102'); -INSERT INTO `cardcodes` VALUES (1239, '黑龙江省', '松花江地区', '五常市', '232103'); -INSERT INTO `cardcodes` VALUES (1240, '黑龙江省', '松花江地区', '阿城市', '232121'); -INSERT INTO `cardcodes` VALUES (1241, '黑龙江省', '松花江地区', '宾县', '232122'); -INSERT INTO `cardcodes` VALUES (1242, '黑龙江省', '松花江地区', '呼兰县', '232123'); -INSERT INTO `cardcodes` VALUES (1243, '黑龙江省', '松花江地区', '双城市', '232124'); -INSERT INTO `cardcodes` VALUES (1244, '黑龙江省', '松花江地区', '五常市', '232125'); -INSERT INTO `cardcodes` VALUES (1245, '黑龙江省', '松花江地区', '巴彦县', '232126'); -INSERT INTO `cardcodes` VALUES (1246, '黑龙江省', '松花江地区', '木兰县', '232127'); -INSERT INTO `cardcodes` VALUES (1247, '黑龙江省', '松花江地区', '通河县', '232128'); -INSERT INTO `cardcodes` VALUES (1248, '黑龙江省', '松花江地区', '尚志市', '232129'); -INSERT INTO `cardcodes` VALUES (1249, '黑龙江省', '松花江地区', '方正县', '232130'); -INSERT INTO `cardcodes` VALUES (1250, '黑龙江省', '松花江地区', '延寿县', '232131'); -INSERT INTO `cardcodes` VALUES (1251, '黑龙江省', '绥化地区', '绥化市', '232301'); -INSERT INTO `cardcodes` VALUES (1252, '黑龙江省', '绥化地区', '安达市', '232302'); -INSERT INTO `cardcodes` VALUES (1253, '黑龙江省', '绥化地区', '肇东市', '232303'); -INSERT INTO `cardcodes` VALUES (1254, '黑龙江省', '绥化地区', '海伦市', '232304'); -INSERT INTO `cardcodes` VALUES (1255, '黑龙江省', '绥化地区', '海伦县', '232321'); -INSERT INTO `cardcodes` VALUES (1256, '黑龙江省', '绥化地区', '肇东县', '232322'); -INSERT INTO `cardcodes` VALUES (1257, '黑龙江省', '绥化地区', '绥化县', '232323'); -INSERT INTO `cardcodes` VALUES (1258, '黑龙江省', '绥化地区', '望奎县', '232324'); -INSERT INTO `cardcodes` VALUES (1259, '黑龙江省', '绥化地区', '兰西县', '232325'); -INSERT INTO `cardcodes` VALUES (1260, '黑龙江省', '绥化地区', '青冈县', '232326'); -INSERT INTO `cardcodes` VALUES (1261, '黑龙江省', '绥化地区', '安达县', '232327'); -INSERT INTO `cardcodes` VALUES (1262, '黑龙江省', '绥化地区', '肇源县', '232328'); -INSERT INTO `cardcodes` VALUES (1263, '黑龙江省', '绥化地区', '肇州县', '232329'); -INSERT INTO `cardcodes` VALUES (1264, '黑龙江省', '绥化地区', '庆安县', '232330'); -INSERT INTO `cardcodes` VALUES (1265, '黑龙江省', '绥化地区', '明水县', '232331'); -INSERT INTO `cardcodes` VALUES (1266, '黑龙江省', '绥化地区', '绥棱县', '232332'); -INSERT INTO `cardcodes` VALUES (1267, '黑龙江省', '佳木斯地区', '佳木斯市', '232401'); -INSERT INTO `cardcodes` VALUES (1268, '黑龙江省', '佳木斯地区', '富锦县', '232421'); -INSERT INTO `cardcodes` VALUES (1269, '黑龙江省', '佳木斯地区', '桦南县', '232422'); -INSERT INTO `cardcodes` VALUES (1270, '黑龙江省', '佳木斯地区', '依兰县', '232423'); -INSERT INTO `cardcodes` VALUES (1271, '黑龙江省', '佳木斯地区', '勃利县', '232424'); -INSERT INTO `cardcodes` VALUES (1272, '黑龙江省', '佳木斯地区', '集贤县', '232425'); -INSERT INTO `cardcodes` VALUES (1273, '黑龙江省', '佳木斯地区', '桦川县', '232426'); -INSERT INTO `cardcodes` VALUES (1274, '黑龙江省', '佳木斯地区', '宝清县', '232427'); -INSERT INTO `cardcodes` VALUES (1275, '黑龙江省', '佳木斯地区', '汤原县', '232428'); -INSERT INTO `cardcodes` VALUES (1276, '黑龙江省', '佳木斯地区', '绥滨县', '232429'); -INSERT INTO `cardcodes` VALUES (1277, '黑龙江省', '佳木斯地区', '萝北县', '232430'); -INSERT INTO `cardcodes` VALUES (1278, '黑龙江省', '佳木斯地区', '同江县', '232431'); -INSERT INTO `cardcodes` VALUES (1279, '黑龙江省', '佳木斯地区', '饶河县', '232432'); -INSERT INTO `cardcodes` VALUES (1280, '黑龙江省', '佳木斯地区', '抚远县', '232433'); -INSERT INTO `cardcodes` VALUES (1281, '黑龙江省', '牡丹江地区', '牡丹江市', '232501'); -INSERT INTO `cardcodes` VALUES (1282, '黑龙江省', '牡丹江地区', '绥芬河市', '232502'); -INSERT INTO `cardcodes` VALUES (1283, '黑龙江省', '牡丹江地区', '宁安县', '232521'); -INSERT INTO `cardcodes` VALUES (1284, '黑龙江省', '牡丹江地区', '海林县', '232522'); -INSERT INTO `cardcodes` VALUES (1285, '黑龙江省', '牡丹江地区', '穆棱县', '232523'); -INSERT INTO `cardcodes` VALUES (1286, '黑龙江省', '牡丹江地区', '东宁县', '232524'); -INSERT INTO `cardcodes` VALUES (1287, '黑龙江省', '牡丹江地区', '林口县', '232525'); -INSERT INTO `cardcodes` VALUES (1288, '黑龙江省', '牡丹江地区', '鸡东县', '232526'); -INSERT INTO `cardcodes` VALUES (1289, '黑龙江省', '牡丹江地区', '密山县', '232527'); -INSERT INTO `cardcodes` VALUES (1290, '黑龙江省', '牡丹江地区', '虎林县', '232528'); -INSERT INTO `cardcodes` VALUES (1291, '黑龙江省', '黑河地区', '黑河市', '232601'); -INSERT INTO `cardcodes` VALUES (1292, '黑龙江省', '黑河地区', '北安市', '232602'); -INSERT INTO `cardcodes` VALUES (1293, '黑龙江省', '黑河地区', '五大连池市', '232603'); -INSERT INTO `cardcodes` VALUES (1294, '黑龙江省', '黑河地区', '北安县', '232621'); -INSERT INTO `cardcodes` VALUES (1295, '黑龙江省', '黑河地区', '嫩江县', '232622'); -INSERT INTO `cardcodes` VALUES (1296, '黑龙江省', '黑河地区', '德都县', '232623'); -INSERT INTO `cardcodes` VALUES (1297, '黑龙江省', '黑河地区', '逊克县', '232625'); -INSERT INTO `cardcodes` VALUES (1298, '黑龙江省', '黑河地区', '孙吴县', '232626'); -INSERT INTO `cardcodes` VALUES (1299, '黑龙江省', '大兴安岭地区', '加格达奇区', '232701'); -INSERT INTO `cardcodes` VALUES (1300, '黑龙江省', '大兴安岭地区', '呼玛县', '232721'); -INSERT INTO `cardcodes` VALUES (1301, '黑龙江省', '大兴安岭地区', '塔河县', '232722'); -INSERT INTO `cardcodes` VALUES (1302, '黑龙江省', '大兴安岭地区', '漠河县', '232723'); -INSERT INTO `cardcodes` VALUES (1303, '黑龙江省', '大兴安岭地区', '漠河县', '232724'); -INSERT INTO `cardcodes` VALUES (1304, '黑龙江省', NULL, '绥芬河市', '239001'); -INSERT INTO `cardcodes` VALUES (1305, '黑龙江省', NULL, '阿城市', '239002'); -INSERT INTO `cardcodes` VALUES (1306, '黑龙江省', NULL, '同江市', '239003'); -INSERT INTO `cardcodes` VALUES (1307, '黑龙江省', NULL, '富锦市', '239004'); -INSERT INTO `cardcodes` VALUES (1308, '黑龙江省', NULL, '铁力市', '239005'); -INSERT INTO `cardcodes` VALUES (1309, '黑龙江省', NULL, '密山市', '239006'); -INSERT INTO `cardcodes` VALUES (1310, '上海市', NULL, '黄浦区', '310101'); -INSERT INTO `cardcodes` VALUES (1311, '上海市', NULL, '南市区', '310102'); -INSERT INTO `cardcodes` VALUES (1312, '上海市', NULL, '卢湾区', '310103'); -INSERT INTO `cardcodes` VALUES (1313, '上海市', NULL, '徐汇区', '310104'); -INSERT INTO `cardcodes` VALUES (1314, '上海市', NULL, '长宁区', '310105'); -INSERT INTO `cardcodes` VALUES (1315, '上海市', NULL, '静安区', '310106'); -INSERT INTO `cardcodes` VALUES (1316, '上海市', NULL, '普陀区', '310107'); -INSERT INTO `cardcodes` VALUES (1317, '上海市', NULL, '闸北区', '310108'); -INSERT INTO `cardcodes` VALUES (1318, '上海市', NULL, '虹口区', '310109'); -INSERT INTO `cardcodes` VALUES (1319, '上海市', NULL, '杨浦区', '310110'); -INSERT INTO `cardcodes` VALUES (1320, '上海市', NULL, '吴凇区', '310111'); -INSERT INTO `cardcodes` VALUES (1321, '上海市', NULL, '闵行区', '310112'); -INSERT INTO `cardcodes` VALUES (1322, '上海市', NULL, '宝山区', '310113'); -INSERT INTO `cardcodes` VALUES (1323, '上海市', NULL, '嘉定区', '310114'); -INSERT INTO `cardcodes` VALUES (1324, '上海市', NULL, '浦东新区', '310115'); -INSERT INTO `cardcodes` VALUES (1325, '上海市', NULL, '金山区', '310116'); -INSERT INTO `cardcodes` VALUES (1326, '上海市', NULL, '松江区', '310117'); -INSERT INTO `cardcodes` VALUES (1327, '上海市', NULL, '青浦区', '310118'); -INSERT INTO `cardcodes` VALUES (1328, '上海市', NULL, '南汇区', '310119'); -INSERT INTO `cardcodes` VALUES (1329, '上海市', NULL, '奉贤区', '310120'); -INSERT INTO `cardcodes` VALUES (1330, '上海市', NULL, '上海县', '310221'); -INSERT INTO `cardcodes` VALUES (1331, '上海市', NULL, '嘉定县', '310222'); -INSERT INTO `cardcodes` VALUES (1332, '上海市', NULL, '宝山县', '310223'); -INSERT INTO `cardcodes` VALUES (1333, '上海市', NULL, '川沙县', '310224'); -INSERT INTO `cardcodes` VALUES (1334, '上海市', NULL, '南汇县', '310225'); -INSERT INTO `cardcodes` VALUES (1335, '上海市', NULL, '奉贤县', '310226'); -INSERT INTO `cardcodes` VALUES (1336, '上海市', NULL, '松江县', '310227'); -INSERT INTO `cardcodes` VALUES (1337, '上海市', NULL, '金山县', '310228'); -INSERT INTO `cardcodes` VALUES (1338, '上海市', NULL, '青浦县', '310229'); -INSERT INTO `cardcodes` VALUES (1339, '上海市', NULL, '崇明县', '310230'); -INSERT INTO `cardcodes` VALUES (1340, '江苏省', '南京市', '市辖区', '320101'); -INSERT INTO `cardcodes` VALUES (1341, '江苏省', '南京市', '玄武区', '320102'); -INSERT INTO `cardcodes` VALUES (1342, '江苏省', '南京市', '白下区', '320103'); -INSERT INTO `cardcodes` VALUES (1343, '江苏省', '南京市', '秦淮区', '320104'); -INSERT INTO `cardcodes` VALUES (1344, '江苏省', '南京市', '建邺区', '320105'); -INSERT INTO `cardcodes` VALUES (1345, '江苏省', '南京市', '鼓楼区', '320106'); -INSERT INTO `cardcodes` VALUES (1346, '江苏省', '南京市', '下关区', '320107'); -INSERT INTO `cardcodes` VALUES (1347, '江苏省', '南京市', '浦口区', '320111'); -INSERT INTO `cardcodes` VALUES (1348, '江苏省', '南京市', '大厂区', '320112'); -INSERT INTO `cardcodes` VALUES (1349, '江苏省', '南京市', '栖霞区', '320113'); -INSERT INTO `cardcodes` VALUES (1350, '江苏省', '南京市', '雨花台区', '320114'); -INSERT INTO `cardcodes` VALUES (1351, '江苏省', '南京市', '江宁区', '320115'); -INSERT INTO `cardcodes` VALUES (1352, '江苏省', '南京市', '六合区', '320116'); -INSERT INTO `cardcodes` VALUES (1353, '江苏省', '南京市', '市区', '320120'); -INSERT INTO `cardcodes` VALUES (1354, '江苏省', '南京市', '江宁县', '320121'); -INSERT INTO `cardcodes` VALUES (1355, '江苏省', '南京市', '江浦县', '320122'); -INSERT INTO `cardcodes` VALUES (1356, '江苏省', '南京市', '六合县', '320123'); -INSERT INTO `cardcodes` VALUES (1357, '江苏省', '南京市', '溧水县', '320124'); -INSERT INTO `cardcodes` VALUES (1358, '江苏省', '南京市', '高淳县', '320125'); -INSERT INTO `cardcodes` VALUES (1359, '江苏省', '南京市', '江都县', '320126'); -INSERT INTO `cardcodes` VALUES (1360, '江苏省', '无锡市', '市辖区', '320201'); -INSERT INTO `cardcodes` VALUES (1361, '江苏省', '无锡市', '崇安区', '320202'); -INSERT INTO `cardcodes` VALUES (1362, '江苏省', '无锡市', '南长区', '320203'); -INSERT INTO `cardcodes` VALUES (1363, '江苏省', '无锡市', '北塘区', '320204'); -INSERT INTO `cardcodes` VALUES (1364, '江苏省', '无锡市', '锡山区', '320205'); -INSERT INTO `cardcodes` VALUES (1365, '江苏省', '无锡市', '惠山区', '320206'); -INSERT INTO `cardcodes` VALUES (1366, '江苏省', '无锡市', '郊区', '320211'); -INSERT INTO `cardcodes` VALUES (1367, '江苏省', '无锡市', '马山区', '320212'); -INSERT INTO `cardcodes` VALUES (1368, '江苏省', '无锡市', '江阴县', '320219'); -INSERT INTO `cardcodes` VALUES (1369, '江苏省', '无锡市', '江阴县', '320221'); -INSERT INTO `cardcodes` VALUES (1370, '江苏省', '无锡市', '无锡县', '320222'); -INSERT INTO `cardcodes` VALUES (1371, '江苏省', '无锡市', '宜兴县', '320223'); -INSERT INTO `cardcodes` VALUES (1372, '江苏省', '无锡市', '江阴市', '320281'); -INSERT INTO `cardcodes` VALUES (1373, '江苏省', '无锡市', '宜兴市', '320282'); -INSERT INTO `cardcodes` VALUES (1374, '江苏省', '无锡市', '锡山市', '320283'); -INSERT INTO `cardcodes` VALUES (1375, '江苏省', '徐州市', '市辖区', '320301'); -INSERT INTO `cardcodes` VALUES (1376, '江苏省', '徐州市', '鼓楼区', '320302'); -INSERT INTO `cardcodes` VALUES (1377, '江苏省', '徐州市', '云龙区', '320303'); -INSERT INTO `cardcodes` VALUES (1378, '江苏省', '徐州市', '九里区', '320304'); -INSERT INTO `cardcodes` VALUES (1379, '江苏省', '徐州市', '贾汪区', '320305'); -INSERT INTO `cardcodes` VALUES (1380, '江苏省', '徐州市', '泉山区', '320311'); -INSERT INTO `cardcodes` VALUES (1381, '江苏省', '徐州市', '丰县', '320321'); -INSERT INTO `cardcodes` VALUES (1382, '江苏省', '徐州市', '沛县', '320322'); -INSERT INTO `cardcodes` VALUES (1383, '江苏省', '徐州市', '铜山县', '320323'); -INSERT INTO `cardcodes` VALUES (1384, '江苏省', '徐州市', '睢宁县', '320324'); -INSERT INTO `cardcodes` VALUES (1385, '江苏省', '徐州市', '邳县', '320325'); -INSERT INTO `cardcodes` VALUES (1386, '江苏省', '徐州市', '新沂县', '320326'); -INSERT INTO `cardcodes` VALUES (1387, '江苏省', '徐州市', '新沂市', '320381'); -INSERT INTO `cardcodes` VALUES (1388, '江苏省', '徐州市', '邳州市', '320382'); -INSERT INTO `cardcodes` VALUES (1389, '江苏省', '常州市', '市辖区', '320401'); -INSERT INTO `cardcodes` VALUES (1390, '江苏省', '常州市', '天宁区', '320402'); -INSERT INTO `cardcodes` VALUES (1391, '江苏省', '常州市', '钟楼区', '320404'); -INSERT INTO `cardcodes` VALUES (1392, '江苏省', '常州市', '戚墅堰区', '320405'); -INSERT INTO `cardcodes` VALUES (1393, '江苏省', '常州市', '郊区', '320411'); -INSERT INTO `cardcodes` VALUES (1394, '江苏省', '常州市', '武进区', '320412'); -INSERT INTO `cardcodes` VALUES (1395, '江苏省', '常州市', '武进市', '320419'); -INSERT INTO `cardcodes` VALUES (1396, '江苏省', '常州市', '武进县', '320421'); -INSERT INTO `cardcodes` VALUES (1397, '江苏省', '常州市', '金坛县', '320422'); -INSERT INTO `cardcodes` VALUES (1398, '江苏省', '常州市', '溧阳县', '320423'); -INSERT INTO `cardcodes` VALUES (1399, '江苏省', '常州市', '溧阳市', '320481'); -INSERT INTO `cardcodes` VALUES (1400, '江苏省', '常州市', '金坛市', '320482'); -INSERT INTO `cardcodes` VALUES (1401, '江苏省', '常州市', '武进市', '320483'); -INSERT INTO `cardcodes` VALUES (1402, '江苏省', '苏州市', '市辖区', '320501'); -INSERT INTO `cardcodes` VALUES (1403, '江苏省', '苏州市', '沧浪区', '320502'); -INSERT INTO `cardcodes` VALUES (1404, '江苏省', '苏州市', '平江区', '320503'); -INSERT INTO `cardcodes` VALUES (1405, '江苏省', '苏州市', '金阊区', '320504'); -INSERT INTO `cardcodes` VALUES (1406, '江苏省', '苏州市', '虎丘区', '320505'); -INSERT INTO `cardcodes` VALUES (1407, '江苏省', '苏州市', '吴中区', '320506'); -INSERT INTO `cardcodes` VALUES (1408, '江苏省', '苏州市', '相城区', '320507'); -INSERT INTO `cardcodes` VALUES (1409, '江苏省', '苏州市', '郊区', '320511'); -INSERT INTO `cardcodes` VALUES (1410, '江苏省', '苏州市', '常熟市', '320520'); -INSERT INTO `cardcodes` VALUES (1411, '江苏省', '苏州市', '沙洲县', '320521'); -INSERT INTO `cardcodes` VALUES (1412, '江苏省', '苏州市', '太仓县', '320522'); -INSERT INTO `cardcodes` VALUES (1413, '江苏省', '苏州市', '昆山县', '320523'); -INSERT INTO `cardcodes` VALUES (1414, '江苏省', '苏州市', '吴县', '320524'); -INSERT INTO `cardcodes` VALUES (1415, '江苏省', '苏州市', '吴江县', '320525'); -INSERT INTO `cardcodes` VALUES (1416, '江苏省', '苏州市', '常熟市', '320581'); -INSERT INTO `cardcodes` VALUES (1417, '江苏省', '苏州市', '张家港市', '320582'); -INSERT INTO `cardcodes` VALUES (1418, '江苏省', '苏州市', '昆山市', '320583'); -INSERT INTO `cardcodes` VALUES (1419, '江苏省', '苏州市', '吴江市', '320584'); -INSERT INTO `cardcodes` VALUES (1420, '江苏省', '苏州市', '太仓市', '320585'); -INSERT INTO `cardcodes` VALUES (1421, '江苏省', '苏州市', '吴县市', '320586'); -INSERT INTO `cardcodes` VALUES (1422, '江苏省', '南通市', '市辖区', '320601'); -INSERT INTO `cardcodes` VALUES (1423, '江苏省', '南通市', '崇川区', '320602'); -INSERT INTO `cardcodes` VALUES (1424, '江苏省', '南通市', '港闸区', '320611'); -INSERT INTO `cardcodes` VALUES (1425, '江苏省', '南通市', '海安县', '320621'); -INSERT INTO `cardcodes` VALUES (1426, '江苏省', '南通市', '如皋县', '320622'); -INSERT INTO `cardcodes` VALUES (1427, '江苏省', '南通市', '如东县', '320623'); -INSERT INTO `cardcodes` VALUES (1428, '江苏省', '南通市', '南通县', '320624'); -INSERT INTO `cardcodes` VALUES (1429, '江苏省', '南通市', '海门县', '320625'); -INSERT INTO `cardcodes` VALUES (1430, '江苏省', '南通市', '启东县', '320626'); -INSERT INTO `cardcodes` VALUES (1431, '江苏省', '南通市', '启东市', '320681'); -INSERT INTO `cardcodes` VALUES (1432, '江苏省', '南通市', '如皋市', '320682'); -INSERT INTO `cardcodes` VALUES (1433, '江苏省', '南通市', '通州市', '320683'); -INSERT INTO `cardcodes` VALUES (1434, '江苏省', '南通市', '海门市', '320684'); -INSERT INTO `cardcodes` VALUES (1435, '江苏省', '连云港市', '市辖区', '320701'); -INSERT INTO `cardcodes` VALUES (1436, '江苏省', '连云港市', '连云区', '320703'); -INSERT INTO `cardcodes` VALUES (1437, '江苏省', '连云港市', '云台区', '320704'); -INSERT INTO `cardcodes` VALUES (1438, '江苏省', '连云港市', '新浦区', '320705'); -INSERT INTO `cardcodes` VALUES (1439, '江苏省', '连云港市', '海州区', '320706'); -INSERT INTO `cardcodes` VALUES (1440, '江苏省', '连云港市', '赣榆县', '320721'); -INSERT INTO `cardcodes` VALUES (1441, '江苏省', '连云港市', '东海县', '320722'); -INSERT INTO `cardcodes` VALUES (1442, '江苏省', '连云港市', '灌云县', '320723'); -INSERT INTO `cardcodes` VALUES (1443, '江苏省', '连云港市', '灌南县', '320724'); -INSERT INTO `cardcodes` VALUES (1444, '江苏省', '淮安市', '市辖区', '320801'); -INSERT INTO `cardcodes` VALUES (1445, '江苏省', '淮安市', '清河区', '320802'); -INSERT INTO `cardcodes` VALUES (1446, '江苏省', '淮安市', '楚州区', '320803'); -INSERT INTO `cardcodes` VALUES (1447, '江苏省', '淮安市', '淮阴区', '320804'); -INSERT INTO `cardcodes` VALUES (1448, '江苏省', '淮安市', '清浦区', '320811'); -INSERT INTO `cardcodes` VALUES (1449, '江苏省', '淮安市', '宿迁市', '320819'); -INSERT INTO `cardcodes` VALUES (1450, '江苏省', '淮安市', '淮阴县', '320821'); -INSERT INTO `cardcodes` VALUES (1451, '江苏省', '淮安市', '灌南县', '320822'); -INSERT INTO `cardcodes` VALUES (1452, '江苏省', '淮安市', '沭阳县', '320823'); -INSERT INTO `cardcodes` VALUES (1453, '江苏省', '淮安市', '宿迁县', '320824'); -INSERT INTO `cardcodes` VALUES (1454, '江苏省', '淮安市', '泗阳县', '320825'); -INSERT INTO `cardcodes` VALUES (1455, '江苏省', '淮安市', '涟水县', '320826'); -INSERT INTO `cardcodes` VALUES (1456, '江苏省', '淮安市', '泗洪县', '320827'); -INSERT INTO `cardcodes` VALUES (1457, '江苏省', '淮安市', '淮安县', '320828'); -INSERT INTO `cardcodes` VALUES (1458, '江苏省', '淮安市', '洪泽县', '320829'); -INSERT INTO `cardcodes` VALUES (1459, '江苏省', '淮安市', '盱眙县', '320830'); -INSERT INTO `cardcodes` VALUES (1460, '江苏省', '淮安市', '金湖县', '320831'); -INSERT INTO `cardcodes` VALUES (1461, '江苏省', '淮安市', '宿迁市', '320881'); -INSERT INTO `cardcodes` VALUES (1462, '江苏省', '淮安市', '淮安市', '320882'); -INSERT INTO `cardcodes` VALUES (1463, '江苏省', '盐城市', '市辖区', '320901'); -INSERT INTO `cardcodes` VALUES (1464, '江苏省', '盐城市', '城区', '320902'); -INSERT INTO `cardcodes` VALUES (1465, '江苏省', '盐城市', '盐都区', '320903'); -INSERT INTO `cardcodes` VALUES (1466, '江苏省', '盐城市', '郊区', '320911'); -INSERT INTO `cardcodes` VALUES (1467, '江苏省', '盐城市', '东台市', '320919'); -INSERT INTO `cardcodes` VALUES (1468, '江苏省', '盐城市', '响水县', '320921'); -INSERT INTO `cardcodes` VALUES (1469, '江苏省', '盐城市', '滨海县', '320922'); -INSERT INTO `cardcodes` VALUES (1470, '江苏省', '盐城市', '阜宁县', '320923'); -INSERT INTO `cardcodes` VALUES (1471, '江苏省', '盐城市', '射阳县', '320924'); -INSERT INTO `cardcodes` VALUES (1472, '江苏省', '盐城市', '建湖县', '320925'); -INSERT INTO `cardcodes` VALUES (1473, '江苏省', '盐城市', '大丰县', '320926'); -INSERT INTO `cardcodes` VALUES (1474, '江苏省', '盐城市', '东台县', '320927'); -INSERT INTO `cardcodes` VALUES (1475, '江苏省', '盐城市', '盐都县', '320928'); -INSERT INTO `cardcodes` VALUES (1476, '江苏省', '盐城市', '东台市', '320981'); -INSERT INTO `cardcodes` VALUES (1477, '江苏省', '盐城市', '大丰市', '320982'); -INSERT INTO `cardcodes` VALUES (1478, '江苏省', '扬州市', '市辖区', '321001'); -INSERT INTO `cardcodes` VALUES (1479, '江苏省', '扬州市', '广陵区', '321002'); -INSERT INTO `cardcodes` VALUES (1480, '江苏省', '扬州市', '邗江区', '321003'); -INSERT INTO `cardcodes` VALUES (1481, '江苏省', '扬州市', '郊区', '321011'); -INSERT INTO `cardcodes` VALUES (1482, '江苏省', '扬州市', '仪征市', '321019'); -INSERT INTO `cardcodes` VALUES (1483, '江苏省', '扬州市', '泰州市', '321020'); -INSERT INTO `cardcodes` VALUES (1484, '江苏省', '扬州市', '兴化县', '321021'); -INSERT INTO `cardcodes` VALUES (1485, '江苏省', '扬州市', '高邮县', '321022'); -INSERT INTO `cardcodes` VALUES (1486, '江苏省', '扬州市', '宝应县', '321023'); -INSERT INTO `cardcodes` VALUES (1487, '江苏省', '扬州市', '靖江县', '321024'); -INSERT INTO `cardcodes` VALUES (1488, '江苏省', '扬州市', '泰兴县', '321025'); -INSERT INTO `cardcodes` VALUES (1489, '江苏省', '扬州市', '江都县', '321026'); -INSERT INTO `cardcodes` VALUES (1490, '江苏省', '扬州市', '邗江县', '321027'); -INSERT INTO `cardcodes` VALUES (1491, '江苏省', '扬州市', '泰县', '321028'); -INSERT INTO `cardcodes` VALUES (1492, '江苏省', '扬州市', '仪征县', '321029'); -INSERT INTO `cardcodes` VALUES (1493, '江苏省', '扬州市', '仪征市', '321081'); -INSERT INTO `cardcodes` VALUES (1494, '江苏省', '扬州市', '泰州市', '321082'); -INSERT INTO `cardcodes` VALUES (1495, '江苏省', '扬州市', '兴化市', '321083'); -INSERT INTO `cardcodes` VALUES (1377, '江苏省', '徐州市', '云龙区', '320303'); -INSERT INTO `cardcodes` VALUES (1378, '江苏省', '徐州市', '九里区', '320304'); -INSERT INTO `cardcodes` VALUES (1379, '江苏省', '徐州市', '贾汪区', '320305'); -INSERT INTO `cardcodes` VALUES (1380, '江苏省', '徐州市', '泉山区', '320311'); -INSERT INTO `cardcodes` VALUES (1381, '江苏省', '徐州市', '丰县', '320321'); -INSERT INTO `cardcodes` VALUES (1382, '江苏省', '徐州市', '沛县', '320322'); -INSERT INTO `cardcodes` VALUES (1383, '江苏省', '徐州市', '铜山县', '320323'); -INSERT INTO `cardcodes` VALUES (1384, '江苏省', '徐州市', '睢宁县', '320324'); -INSERT INTO `cardcodes` VALUES (1385, '江苏省', '徐州市', '邳县', '320325'); -INSERT INTO `cardcodes` VALUES (1386, '江苏省', '徐州市', '新沂县', '320326'); -INSERT INTO `cardcodes` VALUES (1387, '江苏省', '徐州市', '新沂市', '320381'); -INSERT INTO `cardcodes` VALUES (1388, '江苏省', '徐州市', '邳州市', '320382'); -INSERT INTO `cardcodes` VALUES (1389, '江苏省', '常州市', '市辖区', '320401'); -INSERT INTO `cardcodes` VALUES (1390, '江苏省', '常州市', '天宁区', '320402'); -INSERT INTO `cardcodes` VALUES (1391, '江苏省', '常州市', '钟楼区', '320404'); -INSERT INTO `cardcodes` VALUES (1392, '江苏省', '常州市', '戚墅堰区', '320405'); -INSERT INTO `cardcodes` VALUES (1393, '江苏省', '常州市', '郊区', '320411'); -INSERT INTO `cardcodes` VALUES (1394, '江苏省', '常州市', '武进区', '320412'); -INSERT INTO `cardcodes` VALUES (1395, '江苏省', '常州市', '武进市', '320419'); -INSERT INTO `cardcodes` VALUES (1396, '江苏省', '常州市', '武进县', '320421'); -INSERT INTO `cardcodes` VALUES (1397, '江苏省', '常州市', '金坛县', '320422'); -INSERT INTO `cardcodes` VALUES (1398, '江苏省', '常州市', '溧阳县', '320423'); -INSERT INTO `cardcodes` VALUES (1399, '江苏省', '常州市', '溧阳市', '320481'); -INSERT INTO `cardcodes` VALUES (1400, '江苏省', '常州市', '金坛市', '320482'); -INSERT INTO `cardcodes` VALUES (1401, '江苏省', '常州市', '武进市', '320483'); -INSERT INTO `cardcodes` VALUES (1402, '江苏省', '苏州市', '市辖区', '320501'); -INSERT INTO `cardcodes` VALUES (1403, '江苏省', '苏州市', '沧浪区', '320502'); -INSERT INTO `cardcodes` VALUES (1404, '江苏省', '苏州市', '平江区', '320503'); -INSERT INTO `cardcodes` VALUES (1405, '江苏省', '苏州市', '金阊区', '320504'); -INSERT INTO `cardcodes` VALUES (1406, '江苏省', '苏州市', '虎丘区', '320505'); -INSERT INTO `cardcodes` VALUES (1407, '江苏省', '苏州市', '吴中区', '320506'); -INSERT INTO `cardcodes` VALUES (1408, '江苏省', '苏州市', '相城区', '320507'); -INSERT INTO `cardcodes` VALUES (1409, '江苏省', '苏州市', '郊区', '320511'); -INSERT INTO `cardcodes` VALUES (1410, '江苏省', '苏州市', '常熟市', '320520'); -INSERT INTO `cardcodes` VALUES (1411, '江苏省', '苏州市', '沙洲县', '320521'); -INSERT INTO `cardcodes` VALUES (1412, '江苏省', '苏州市', '太仓县', '320522'); -INSERT INTO `cardcodes` VALUES (1413, '江苏省', '苏州市', '昆山县', '320523'); -INSERT INTO `cardcodes` VALUES (1414, '江苏省', '苏州市', '吴县', '320524'); -INSERT INTO `cardcodes` VALUES (1415, '江苏省', '苏州市', '吴江县', '320525'); -INSERT INTO `cardcodes` VALUES (1416, '江苏省', '苏州市', '常熟市', '320581'); -INSERT INTO `cardcodes` VALUES (1417, '江苏省', '苏州市', '张家港市', '320582'); -INSERT INTO `cardcodes` VALUES (1418, '江苏省', '苏州市', '昆山市', '320583'); -INSERT INTO `cardcodes` VALUES (1419, '江苏省', '苏州市', '吴江市', '320584'); -INSERT INTO `cardcodes` VALUES (1420, '江苏省', '苏州市', '太仓市', '320585'); -INSERT INTO `cardcodes` VALUES (1421, '江苏省', '苏州市', '吴县市', '320586'); -INSERT INTO `cardcodes` VALUES (1422, '江苏省', '南通市', '市辖区', '320601'); -INSERT INTO `cardcodes` VALUES (1423, '江苏省', '南通市', '崇川区', '320602'); -INSERT INTO `cardcodes` VALUES (1424, '江苏省', '南通市', '港闸区', '320611'); -INSERT INTO `cardcodes` VALUES (1425, '江苏省', '南通市', '海安县', '320621'); -INSERT INTO `cardcodes` VALUES (1426, '江苏省', '南通市', '如皋县', '320622'); -INSERT INTO `cardcodes` VALUES (1427, '江苏省', '南通市', '如东县', '320623'); -INSERT INTO `cardcodes` VALUES (1428, '江苏省', '南通市', '南通县', '320624'); -INSERT INTO `cardcodes` VALUES (1429, '江苏省', '南通市', '海门县', '320625'); -INSERT INTO `cardcodes` VALUES (1430, '江苏省', '南通市', '启东县', '320626'); -INSERT INTO `cardcodes` VALUES (1431, '江苏省', '南通市', '启东市', '320681'); -INSERT INTO `cardcodes` VALUES (1432, '江苏省', '南通市', '如皋市', '320682'); -INSERT INTO `cardcodes` VALUES (1433, '江苏省', '南通市', '通州市', '320683'); -INSERT INTO `cardcodes` VALUES (1434, '江苏省', '南通市', '海门市', '320684'); -INSERT INTO `cardcodes` VALUES (1435, '江苏省', '连云港市', '市辖区', '320701'); -INSERT INTO `cardcodes` VALUES (1436, '江苏省', '连云港市', '连云区', '320703'); -INSERT INTO `cardcodes` VALUES (1437, '江苏省', '连云港市', '云台区', '320704'); -INSERT INTO `cardcodes` VALUES (1438, '江苏省', '连云港市', '新浦区', '320705'); -INSERT INTO `cardcodes` VALUES (1439, '江苏省', '连云港市', '海州区', '320706'); -INSERT INTO `cardcodes` VALUES (1440, '江苏省', '连云港市', '赣榆县', '320721'); -INSERT INTO `cardcodes` VALUES (1441, '江苏省', '连云港市', '东海县', '320722'); -INSERT INTO `cardcodes` VALUES (1442, '江苏省', '连云港市', '灌云县', '320723'); -INSERT INTO `cardcodes` VALUES (1443, '江苏省', '连云港市', '灌南县', '320724'); -INSERT INTO `cardcodes` VALUES (1444, '江苏省', '淮安市', '市辖区', '320801'); -INSERT INTO `cardcodes` VALUES (1445, '江苏省', '淮安市', '清河区', '320802'); -INSERT INTO `cardcodes` VALUES (1446, '江苏省', '淮安市', '楚州区', '320803'); -INSERT INTO `cardcodes` VALUES (1447, '江苏省', '淮安市', '淮阴区', '320804'); -INSERT INTO `cardcodes` VALUES (1448, '江苏省', '淮安市', '清浦区', '320811'); -INSERT INTO `cardcodes` VALUES (1449, '江苏省', '淮安市', '宿迁市', '320819'); -INSERT INTO `cardcodes` VALUES (1450, '江苏省', '淮安市', '淮阴县', '320821'); -INSERT INTO `cardcodes` VALUES (1451, '江苏省', '淮安市', '灌南县', '320822'); -INSERT INTO `cardcodes` VALUES (1452, '江苏省', '淮安市', '沭阳县', '320823'); -INSERT INTO `cardcodes` VALUES (1453, '江苏省', '淮安市', '宿迁县', '320824'); -INSERT INTO `cardcodes` VALUES (1454, '江苏省', '淮安市', '泗阳县', '320825'); -INSERT INTO `cardcodes` VALUES (1455, '江苏省', '淮安市', '涟水县', '320826'); -INSERT INTO `cardcodes` VALUES (1456, '江苏省', '淮安市', '泗洪县', '320827'); -INSERT INTO `cardcodes` VALUES (1457, '江苏省', '淮安市', '淮安县', '320828'); -INSERT INTO `cardcodes` VALUES (1458, '江苏省', '淮安市', '洪泽县', '320829'); -INSERT INTO `cardcodes` VALUES (1459, '江苏省', '淮安市', '盱眙县', '320830'); -INSERT INTO `cardcodes` VALUES (1460, '江苏省', '淮安市', '金湖县', '320831'); -INSERT INTO `cardcodes` VALUES (1461, '江苏省', '淮安市', '宿迁市', '320881'); -INSERT INTO `cardcodes` VALUES (1462, '江苏省', '淮安市', '淮安市', '320882'); -INSERT INTO `cardcodes` VALUES (1463, '江苏省', '盐城市', '市辖区', '320901'); -INSERT INTO `cardcodes` VALUES (1464, '江苏省', '盐城市', '城区', '320902'); -INSERT INTO `cardcodes` VALUES (1465, '江苏省', '盐城市', '盐都区', '320903'); -INSERT INTO `cardcodes` VALUES (1466, '江苏省', '盐城市', '郊区', '320911'); -INSERT INTO `cardcodes` VALUES (1467, '江苏省', '盐城市', '东台市', '320919'); -INSERT INTO `cardcodes` VALUES (1468, '江苏省', '盐城市', '响水县', '320921'); -INSERT INTO `cardcodes` VALUES (1469, '江苏省', '盐城市', '滨海县', '320922'); -INSERT INTO `cardcodes` VALUES (1470, '江苏省', '盐城市', '阜宁县', '320923'); -INSERT INTO `cardcodes` VALUES (1471, '江苏省', '盐城市', '射阳县', '320924'); -INSERT INTO `cardcodes` VALUES (1472, '江苏省', '盐城市', '建湖县', '320925'); -INSERT INTO `cardcodes` VALUES (1473, '江苏省', '盐城市', '大丰县', '320926'); -INSERT INTO `cardcodes` VALUES (1474, '江苏省', '盐城市', '东台县', '320927'); -INSERT INTO `cardcodes` VALUES (1475, '江苏省', '盐城市', '盐都县', '320928'); -INSERT INTO `cardcodes` VALUES (1476, '江苏省', '盐城市', '东台市', '320981'); -INSERT INTO `cardcodes` VALUES (1477, '江苏省', '盐城市', '大丰市', '320982'); -INSERT INTO `cardcodes` VALUES (1478, '江苏省', '扬州市', '市辖区', '321001'); -INSERT INTO `cardcodes` VALUES (1479, '江苏省', '扬州市', '广陵区', '321002'); -INSERT INTO `cardcodes` VALUES (1480, '江苏省', '扬州市', '邗江区', '321003'); -INSERT INTO `cardcodes` VALUES (1481, '江苏省', '扬州市', '郊区', '321011'); -INSERT INTO `cardcodes` VALUES (1482, '江苏省', '扬州市', '仪征市', '321019'); -INSERT INTO `cardcodes` VALUES (1483, '江苏省', '扬州市', '泰州市', '321020'); -INSERT INTO `cardcodes` VALUES (1484, '江苏省', '扬州市', '兴化县', '321021'); -INSERT INTO `cardcodes` VALUES (1485, '江苏省', '扬州市', '高邮县', '321022'); -INSERT INTO `cardcodes` VALUES (1486, '江苏省', '扬州市', '宝应县', '321023'); -INSERT INTO `cardcodes` VALUES (1487, '江苏省', '扬州市', '靖江县', '321024'); -INSERT INTO `cardcodes` VALUES (1488, '江苏省', '扬州市', '泰兴县', '321025'); -INSERT INTO `cardcodes` VALUES (1489, '江苏省', '扬州市', '江都县', '321026'); -INSERT INTO `cardcodes` VALUES (1490, '江苏省', '扬州市', '邗江县', '321027'); -INSERT INTO `cardcodes` VALUES (1491, '江苏省', '扬州市', '泰县', '321028'); -INSERT INTO `cardcodes` VALUES (1492, '江苏省', '扬州市', '仪征县', '321029'); -INSERT INTO `cardcodes` VALUES (1493, '江苏省', '扬州市', '仪征市', '321081'); -INSERT INTO `cardcodes` VALUES (1494, '江苏省', '扬州市', '泰州市', '321082'); -INSERT INTO `cardcodes` VALUES (1495, '江苏省', '扬州市', '兴化市', '321083'); -INSERT INTO `cardcodes` VALUES (2991, '湖北省', '咸宁市', '市辖区', '421201'); -INSERT INTO `cardcodes` VALUES (2992, '湖北省', '咸宁市', '咸安区', '421202'); -INSERT INTO `cardcodes` VALUES (2993, '湖北省', '咸宁市', '嘉鱼县', '421221'); -INSERT INTO `cardcodes` VALUES (2994, '湖北省', '咸宁市', '通城县', '421222'); -INSERT INTO `cardcodes` VALUES (2995, '湖北省', '咸宁市', '崇阳县', '421223'); -INSERT INTO `cardcodes` VALUES (2996, '湖北省', '咸宁市', '通山县', '421224'); -INSERT INTO `cardcodes` VALUES (2997, '湖北省', '咸宁市', '赤壁市', '421281'); -INSERT INTO `cardcodes` VALUES (2998, '湖北省', '随州市', '市辖区', '421301'); -INSERT INTO `cardcodes` VALUES (2999, '湖北省', '随州市', '曾都区', '421302'); -INSERT INTO `cardcodes` VALUES (3000, '湖北省', '随州市', '广水市', '421381'); -INSERT INTO `cardcodes` VALUES (3001, '湖北省', '黄冈地区', '鄂州市', '422101'); -INSERT INTO `cardcodes` VALUES (3002, '湖北省', '黄冈地区', '武穴市', '422102'); -INSERT INTO `cardcodes` VALUES (3003, '湖北省', '黄冈地区', '黄州市', '422103'); -INSERT INTO `cardcodes` VALUES (3004, '湖北省', '黄冈地区', '黄冈县', '422121'); -INSERT INTO `cardcodes` VALUES (3005, '湖北省', '黄冈地区', '新洲县', '422122'); -INSERT INTO `cardcodes` VALUES (3006, '湖北省', '黄冈地区', '红安县', '422123'); -INSERT INTO `cardcodes` VALUES (3007, '湖北省', '黄冈地区', '麻城县', '422124'); -INSERT INTO `cardcodes` VALUES (2991, '湖北省', '咸宁市', '市辖区', '421201'); -INSERT INTO `cardcodes` VALUES (2992, '湖北省', '咸宁市', '咸安区', '421202'); -INSERT INTO `cardcodes` VALUES (2993, '湖北省', '咸宁市', '嘉鱼县', '421221'); -INSERT INTO `cardcodes` VALUES (2994, '湖北省', '咸宁市', '通城县', '421222'); -INSERT INTO `cardcodes` VALUES (2995, '湖北省', '咸宁市', '崇阳县', '421223'); -INSERT INTO `cardcodes` VALUES (2996, '湖北省', '咸宁市', '通山县', '421224'); -INSERT INTO `cardcodes` VALUES (2997, '湖北省', '咸宁市', '赤壁市', '421281'); -INSERT INTO `cardcodes` VALUES (2998, '湖北省', '随州市', '市辖区', '421301'); -INSERT INTO `cardcodes` VALUES (2999, '湖北省', '随州市', '曾都区', '421302'); -INSERT INTO `cardcodes` VALUES (3000, '湖北省', '随州市', '广水市', '421381'); -INSERT INTO `cardcodes` VALUES (3001, '湖北省', '黄冈地区', '鄂州市', '422101'); -INSERT INTO `cardcodes` VALUES (3002, '湖北省', '黄冈地区', '武穴市', '422102'); -INSERT INTO `cardcodes` VALUES (3003, '湖北省', '黄冈地区', '黄州市', '422103'); -INSERT INTO `cardcodes` VALUES (3004, '湖北省', '黄冈地区', '黄冈县', '422121'); -INSERT INTO `cardcodes` VALUES (3005, '湖北省', '黄冈地区', '新洲县', '422122'); -INSERT INTO `cardcodes` VALUES (3006, '湖北省', '黄冈地区', '红安县', '422123'); -INSERT INTO `cardcodes` VALUES (3007, '湖北省', '黄冈地区', '麻城县', '422124'); -INSERT INTO `cardcodes` VALUES (3008, '湖北省', '黄冈地区', '罗田县', '422125'); -INSERT INTO `cardcodes` VALUES (3009, '湖北省', '黄冈地区', '英山县', '422126'); -INSERT INTO `cardcodes` VALUES (3010, '湖北省', '黄冈地区', '浠水县', '422127'); -INSERT INTO `cardcodes` VALUES (3011, '湖北省', '黄冈地区', '蕲春县', '422128'); -INSERT INTO `cardcodes` VALUES (3012, '湖北省', '黄冈地区', '广济县', '422129'); -INSERT INTO `cardcodes` VALUES (3013, '湖北省', '黄冈地区', '黄梅县', '422130'); -INSERT INTO `cardcodes` VALUES (3014, '湖北省', '黄冈地区', '鄂城县', '422131'); -INSERT INTO `cardcodes` VALUES (3015, '湖北省', '孝感地区', '孝感市', '422201'); -INSERT INTO `cardcodes` VALUES (3016, '湖北省', '孝感地区', '应城市', '422202'); -INSERT INTO `cardcodes` VALUES (3017, '湖北省', '孝感地区', '安陆市', '422203'); -INSERT INTO `cardcodes` VALUES (3018, '湖北省', '孝感地区', '广水市', '422204'); -INSERT INTO `cardcodes` VALUES (3019, '湖北省', '孝感地区', '孝感县', '422221'); -INSERT INTO `cardcodes` VALUES (3020, '湖北省', '孝感地区', '黄陂县', '422222'); -INSERT INTO `cardcodes` VALUES (3021, '湖北省', '孝感地区', '大悟县', '422223'); -INSERT INTO `cardcodes` VALUES (3022, '湖北省', '孝感地区', '应山县', '422224'); -INSERT INTO `cardcodes` VALUES (3023, '湖北省', '孝感地区', '安陆县', '422225'); -INSERT INTO `cardcodes` VALUES (3024, '湖北省', '孝感地区', '云梦县', '422226'); -INSERT INTO `cardcodes` VALUES (3025, '湖北省', '孝感地区', '应城县', '422227'); -INSERT INTO `cardcodes` VALUES (3026, '湖北省', '孝感地区', '汉川县', '422228'); -INSERT INTO `cardcodes` VALUES (3027, '湖北省', '省直辖行政单位', '神农架林区', '422921'); -INSERT INTO `cardcodes` VALUES (3028, '湖北省', '省直辖行政单位', '随州市', '429001'); -INSERT INTO `cardcodes` VALUES (3029, '湖北省', '省直辖行政单位', '枣阳市', '429003'); -INSERT INTO `cardcodes` VALUES (3030, '湖北省', '省直辖行政单位', '仙桃市', '429004'); -INSERT INTO `cardcodes` VALUES (3031, '湖北省', '省直辖行政单位', '潜江市', '429005'); -INSERT INTO `cardcodes` VALUES (3032, '湖北省', '省直辖行政单位', '天门市', '429006'); -INSERT INTO `cardcodes` VALUES (3033, '湖北省', '省直辖行政单位', '神农架林区', '429021'); -INSERT INTO `cardcodes` VALUES (3034, '湖北省', '武汉市', '市辖区', '420101'); -INSERT INTO `cardcodes` VALUES (3035, '湖北省', '武汉市', '江岸区', '420102'); -INSERT INTO `cardcodes` VALUES (3036, '湖北省', '武汉市', '江汉区', '420103'); -INSERT INTO `cardcodes` VALUES (3037, '湖北省', '武汉市', '乔口区', '420104'); -INSERT INTO `cardcodes` VALUES (3038, '湖北省', '武汉市', '汉阳区', '420105'); -INSERT INTO `cardcodes` VALUES (3039, '湖北省', '武汉市', '武昌区', '420106'); -INSERT INTO `cardcodes` VALUES (3040, '湖北省', '武汉市', '青山区', '420107'); -INSERT INTO `cardcodes` VALUES (3041, '湖北省', '武汉市', '东湖管理分局', '420109'); -INSERT INTO `cardcodes` VALUES (3042, '湖北省', '武汉市', '洪山区', '420111'); -INSERT INTO `cardcodes` VALUES (3043, '湖北省', '武汉市', '东西湖区', '420112'); -INSERT INTO `cardcodes` VALUES (3044, '湖北省', '武汉市', '汉南区', '420113'); -INSERT INTO `cardcodes` VALUES (3045, '湖北省', '武汉市', '蔡甸区', '420114'); -INSERT INTO `cardcodes` VALUES (3046, '湖北省', '武汉市', '江夏区', '420115'); -INSERT INTO `cardcodes` VALUES (3047, '湖北省', '武汉市', '黄陂区', '420116'); -INSERT INTO `cardcodes` VALUES (3048, '湖北省', '武汉市', '新洲区', '420117'); -INSERT INTO `cardcodes` VALUES (3049, '湖北省', '武汉市', '蔡甸区', '420121'); -INSERT INTO `cardcodes` VALUES (3050, '湖北省', '武汉市', '江夏区', '420122'); -INSERT INTO `cardcodes` VALUES (3051, '湖北省', '武汉市', '黄陂区', '420123'); -INSERT INTO `cardcodes` VALUES (3052, '湖北省', '武汉市', '新洲县', '420124'); -INSERT INTO `cardcodes` VALUES (3053, '湖北省', '黄石市', '市辖区', '420201'); -INSERT INTO `cardcodes` VALUES (3054, '湖北省', '黄石市', '黄石港区', '420202'); -INSERT INTO `cardcodes` VALUES (3055, '湖北省', '黄石市', '石灰窑区', '420203'); -INSERT INTO `cardcodes` VALUES (3056, '湖北省', '黄石市', '下陆区', '420204'); -INSERT INTO `cardcodes` VALUES (3057, '湖北省', '黄石市', '铁山区', '420205'); -INSERT INTO `cardcodes` VALUES (3058, '湖北省', '黄石市', '市区', '420220'); -INSERT INTO `cardcodes` VALUES (3059, '湖北省', '黄石市', '大冶县', '420221'); -INSERT INTO `cardcodes` VALUES (3060, '湖北省', '黄石市', '阳新县', '420222'); -INSERT INTO `cardcodes` VALUES (3061, '湖北省', '黄石市', '大冶市', '420281'); -INSERT INTO `cardcodes` VALUES (3062, '湖北省', '十堰市', '市辖区', '420301'); -INSERT INTO `cardcodes` VALUES (3063, '湖北省', '十堰市', '茅箭区', '420302'); -INSERT INTO `cardcodes` VALUES (3064, '湖北省', '十堰市', '张湾区', '420303'); -INSERT INTO `cardcodes` VALUES (3065, '湖北省', '十堰市', '郧县', '420321'); -INSERT INTO `cardcodes` VALUES (3066, '湖北省', '十堰市', '郧西县', '420322'); -INSERT INTO `cardcodes` VALUES (3067, '湖北省', '十堰市', '竹山县', '420323'); -INSERT INTO `cardcodes` VALUES (3068, '湖北省', '十堰市', '竹溪县', '420324'); -INSERT INTO `cardcodes` VALUES (3069, '湖北省', '十堰市', '房县', '420325'); -INSERT INTO `cardcodes` VALUES (3070, '湖北省', '十堰市', '丹江口市', '420381'); -INSERT INTO `cardcodes` VALUES (3071, '湖北省', '咸宁地区', '咸宁市', '422301'); -INSERT INTO `cardcodes` VALUES (3072, '湖北省', '咸宁地区', '赤壁市', '422302'); -INSERT INTO `cardcodes` VALUES (3073, '湖北省', '咸宁地区', '咸宁县', '422321'); -INSERT INTO `cardcodes` VALUES (3074, '湖北省', '咸宁地区', '嘉鱼县', '422322'); -INSERT INTO `cardcodes` VALUES (3075, '湖北省', '咸宁地区', '蒲圻县', '422323'); -INSERT INTO `cardcodes` VALUES (3076, '湖北省', '咸宁地区', '通城县', '422324'); -INSERT INTO `cardcodes` VALUES (3077, '湖北省', '咸宁地区', '崇阳县', '422325'); -INSERT INTO `cardcodes` VALUES (3078, '湖北省', '咸宁地区', '通山县', '422326'); -INSERT INTO `cardcodes` VALUES (3079, '湖北省', '咸宁地区', '阳新县', '422327'); -INSERT INTO `cardcodes` VALUES (3080, '湖北省', '荆州地区', '仙桃市', '422401'); -INSERT INTO `cardcodes` VALUES (3081, '湖北省', '荆州地区', '石首市', '422402'); -INSERT INTO `cardcodes` VALUES (3082, '湖北省', '荆州地区', '洪湖市', '422403'); -INSERT INTO `cardcodes` VALUES (3083, '湖北省', '荆州地区', '天门市', '422404'); -INSERT INTO `cardcodes` VALUES (3084, '湖北省', '荆州地区', '潜江市', '422405'); -INSERT INTO `cardcodes` VALUES (3085, '湖北省', '荆州地区', '钟祥市', '422406'); -INSERT INTO `cardcodes` VALUES (3086, '湖北省', '荆州地区', '江陵县', '422421'); -INSERT INTO `cardcodes` VALUES (3087, '湖北省', '荆州地区', '松滋县', '422422'); -INSERT INTO `cardcodes` VALUES (3088, '湖北省', '荆州地区', '公安县', '422423'); -INSERT INTO `cardcodes` VALUES (3089, '湖北省', '荆州地区', '石首县', '422424'); -INSERT INTO `cardcodes` VALUES (3090, '湖北省', '荆州地区', '监利县', '422425'); -INSERT INTO `cardcodes` VALUES (3091, '湖北省', '荆州地区', '洪湖县', '422426'); -INSERT INTO `cardcodes` VALUES (3092, '湖北省', '荆州地区', '沔阳县', '422427'); -INSERT INTO `cardcodes` VALUES (3093, '湖北省', '荆州地区', '天门县', '422428'); -INSERT INTO `cardcodes` VALUES (3094, '湖北省', '荆州地区', '潜江县', '422429'); -INSERT INTO `cardcodes` VALUES (3095, '湖北省', '荆州地区', '荆门县', '422430'); -INSERT INTO `cardcodes` VALUES (3096, '湖北省', '荆州地区', '钟祥县', '422431'); -INSERT INTO `cardcodes` VALUES (3097, '湖北省', '荆州地区', '京山县', '422432'); -INSERT INTO `cardcodes` VALUES (3098, '湖北省', '随州地区', '随州市', '422501'); -INSERT INTO `cardcodes` VALUES (3099, '湖北省', '随州地区', '老河口市', '422502'); -INSERT INTO `cardcodes` VALUES (3100, '湖北省', '随州地区', '襄阳县', '422521'); -INSERT INTO `cardcodes` VALUES (3101, '湖北省', '随州地区', '枣阳县', '422522'); -INSERT INTO `cardcodes` VALUES (3102, '湖北省', '随州地区', '宜城县', '422524'); -INSERT INTO `cardcodes` VALUES (3103, '湖北省', '随州地区', '南漳县', '422525'); -INSERT INTO `cardcodes` VALUES (3104, '湖北省', '随州地区', '谷城县', '422527'); -INSERT INTO `cardcodes` VALUES (3105, '湖北省', '随州地区', '保康县', '422528'); -INSERT INTO `cardcodes` VALUES (3106, '湖北省', '郧阳地区', '丹江口市', '422601'); -INSERT INTO `cardcodes` VALUES (3107, '湖北省', '郧阳地区', '郧县', '422622'); -INSERT INTO `cardcodes` VALUES (3108, '湖北省', '郧阳地区', '郧西县', '422623'); -INSERT INTO `cardcodes` VALUES (3109, '湖北省', '郧阳地区', '竹山县', '422624'); -INSERT INTO `cardcodes` VALUES (3110, '湖北省', '郧阳地区', '竹溪县', '422625'); -INSERT INTO `cardcodes` VALUES (3111, '湖北省', '郧阳地区', '房县', '422626'); -INSERT INTO `cardcodes` VALUES (3112, '湖北省', '郧阳地区', '神农架林区', '422627'); -INSERT INTO `cardcodes` VALUES (3113, '湖北省', '宜昌地区', '枝城市', '422701'); -INSERT INTO `cardcodes` VALUES (3114, '湖北省', '宜昌地区', '当阳市', '422702'); -INSERT INTO `cardcodes` VALUES (3115, '湖北省', '宜昌地区', '宜昌县', '422721'); -INSERT INTO `cardcodes` VALUES (3116, '湖北省', '宜昌地区', '宜都县', '422722'); -INSERT INTO `cardcodes` VALUES (3117, '湖北省', '宜昌地区', '枝江县', '422723'); -INSERT INTO `cardcodes` VALUES (3118, '湖北省', '宜昌地区', '当阳县', '422724'); -INSERT INTO `cardcodes` VALUES (3119, '湖北省', '宜昌地区', '远安县', '422725'); -INSERT INTO `cardcodes` VALUES (3120, '湖北省', '宜昌地区', '兴山县', '422726'); -INSERT INTO `cardcodes` VALUES (3121, '湖北省', '宜昌地区', '秭归县', '422727'); -INSERT INTO `cardcodes` VALUES (3122, '湖北省', '宜昌地区', '长阳土家族自治县', '422728'); -INSERT INTO `cardcodes` VALUES (3123, '湖北省', '宜昌地区', '五峰土家族自治县', '422729'); -INSERT INTO `cardcodes` VALUES (3124, '湖北省', '恩施土家族苗族自治州', '恩施市', '422801'); -INSERT INTO `cardcodes` VALUES (3125, '湖北省', '恩施土家族苗族自治州', '利川市', '422802'); -INSERT INTO `cardcodes` VALUES (3126, '湖北省', '恩施土家族苗族自治州', '建始县', '422822'); -INSERT INTO `cardcodes` VALUES (3127, '湖北省', '恩施土家族苗族自治州', '巴东县', '422823'); -INSERT INTO `cardcodes` VALUES (3128, '湖北省', '恩施土家族苗族自治州', '宣恩县', '422825'); -INSERT INTO `cardcodes` VALUES (3129, '湖北省', '恩施土家族苗族自治州', '咸丰县', '422826'); -INSERT INTO `cardcodes` VALUES (3130, '湖北省', '恩施土家族苗族自治州', '来凤县', '422827'); -INSERT INTO `cardcodes` VALUES (3131, '湖北省', '恩施土家族苗族自治州', '鹤峰县', '422828'); -INSERT INTO `cardcodes` VALUES (3132, '湖北省', NULL, '沙市', '420400'); -INSERT INTO `cardcodes` VALUES (3133, '湖北省', NULL, '沙洋监狱管理局', '423022'); -INSERT INTO `cardcodes` VALUES (3134, '湖南省', '长沙市', '市辖区', '430101'); -INSERT INTO `cardcodes` VALUES (3135, '湖南省', '长沙市', '芙蓉区', '430102'); -INSERT INTO `cardcodes` VALUES (3136, '湖南省', '长沙市', '天心区', '430103'); -INSERT INTO `cardcodes` VALUES (3137, '湖南省', '长沙市', '岳麓区', '430104'); -INSERT INTO `cardcodes` VALUES (3138, '湖南省', '长沙市', '开福区', '430105'); -INSERT INTO `cardcodes` VALUES (3139, '湖南省', '长沙市', '雨花区', '430111'); -INSERT INTO `cardcodes` VALUES (3140, '湖南省', '长沙市', '市区', '430120'); -INSERT INTO `cardcodes` VALUES (3141, '湖南省', '长沙市', '长沙县', '430121'); -INSERT INTO `cardcodes` VALUES (3142, '湖南省', '长沙市', '望城县', '430122'); -INSERT INTO `cardcodes` VALUES (3143, '湖南省', '长沙市', '浏阳县', '430123'); -INSERT INTO `cardcodes` VALUES (3144, '湖南省', '长沙市', '宁乡县', '430124'); -INSERT INTO `cardcodes` VALUES (3145, '湖南省', '长沙市', '浏阳市', '430181'); -INSERT INTO `cardcodes` VALUES (3146, '湖南省', '株洲市', '市辖区', '430201'); -INSERT INTO `cardcodes` VALUES (3147, '湖南省', '株洲市', '荷塘区', '430202'); -INSERT INTO `cardcodes` VALUES (3148, '湖南省', '株洲市', '芦淞区', '430203'); -INSERT INTO `cardcodes` VALUES (3149, '湖南省', '株洲市', '石峰区', '430204'); -INSERT INTO `cardcodes` VALUES (3150, '湖南省', '株洲市', '天元区', '430211'); -INSERT INTO `cardcodes` VALUES (3151, '湖南省', '株洲市', '醴陵市', '430219'); -INSERT INTO `cardcodes` VALUES (3152, '湖南省', '株洲市', '市区', '430220'); -INSERT INTO `cardcodes` VALUES (3153, '湖南省', '株洲市', '株洲县', '430221'); -INSERT INTO `cardcodes` VALUES (3154, '湖南省', '株洲市', '醴陵县', '430222'); -INSERT INTO `cardcodes` VALUES (3155, '湖南省', '株洲市', '攸县', '430223'); -INSERT INTO `cardcodes` VALUES (3156, '湖南省', '株洲市', '茶陵县', '430224'); -INSERT INTO `cardcodes` VALUES (3157, '湖南省', '株洲市', '炎陵县', '430225'); -INSERT INTO `cardcodes` VALUES (3158, '湖南省', '株洲市', '醴陵市', '430281'); -INSERT INTO `cardcodes` VALUES (3159, '湖南省', '湘潭市', '市辖区', '430301'); -INSERT INTO `cardcodes` VALUES (3160, '湖南省', '湘潭市', '雨湖区', '430302'); -INSERT INTO `cardcodes` VALUES (3161, '湖南省', '湘潭市', '湘江区', '430303'); -INSERT INTO `cardcodes` VALUES (3162, '湖南省', '湘潭市', '岳塘区', '430304'); -INSERT INTO `cardcodes` VALUES (3163, '湖南省', '湘潭市', '板塘区', '430305'); -INSERT INTO `cardcodes` VALUES (3164, '湖南省', '湘潭市', '韶山区', '430306'); -INSERT INTO `cardcodes` VALUES (3165, '湖南省', '湘潭市', '郊区', '430311'); -INSERT INTO `cardcodes` VALUES (3166, '湖南省', '湘潭市', '韶山区', '430312'); -INSERT INTO `cardcodes` VALUES (3167, '湖南省', '湘潭市', '湘潭县', '430321'); -INSERT INTO `cardcodes` VALUES (3168, '湖南省', '湘潭市', '湘乡县', '430322'); -INSERT INTO `cardcodes` VALUES (3169, '湖南省', '湘潭市', '湘乡市', '430381'); -INSERT INTO `cardcodes` VALUES (3170, '湖南省', '湘潭市', '韶山市', '430382'); -INSERT INTO `cardcodes` VALUES (3171, '湖南省', '衡阳市', '市辖区', '430401'); -INSERT INTO `cardcodes` VALUES (3172, '湖南省', '衡阳市', '江东区', '430402'); -INSERT INTO `cardcodes` VALUES (3173, '湖南省', '衡阳市', '城南区', '430403'); -INSERT INTO `cardcodes` VALUES (3174, '湖南省', '衡阳市', '城北区', '430404'); -INSERT INTO `cardcodes` VALUES (3175, '湖南省', '衡阳市', '珠晖区', '430405'); -INSERT INTO `cardcodes` VALUES (3176, '湖南省', '衡阳市', '雁峰区', '430406'); -INSERT INTO `cardcodes` VALUES (3177, '湖南省', '衡阳市', '石鼓区', '430407'); -INSERT INTO `cardcodes` VALUES (3178, '湖南省', '衡阳市', '蒸湘区', '430408'); -INSERT INTO `cardcodes` VALUES (3179, '湖南省', '衡阳市', '郊区', '430411'); -INSERT INTO `cardcodes` VALUES (3180, '湖南省', '衡阳市', '南岳区', '430412'); -INSERT INTO `cardcodes` VALUES (3181, '湖南省', '衡阳市', '耒阳市', '430419'); -INSERT INTO `cardcodes` VALUES (3182, '湖南省', '衡阳市', '衡阳县', '430421'); -INSERT INTO `cardcodes` VALUES (3183, '湖南省', '衡阳市', '衡南县', '430422'); -INSERT INTO `cardcodes` VALUES (3184, '湖南省', '衡阳市', '衡山县', '430423'); -INSERT INTO `cardcodes` VALUES (3185, '湖南省', '衡阳市', '衡东县', '430424'); -INSERT INTO `cardcodes` VALUES (3186, '湖南省', '衡阳市', '常宁县', '430425'); -INSERT INTO `cardcodes` VALUES (3187, '湖南省', '衡阳市', '祁东县', '430426'); -INSERT INTO `cardcodes` VALUES (3188, '湖南省', '衡阳市', '耒阳县', '430427'); -INSERT INTO `cardcodes` VALUES (3189, '湖南省', '衡阳市', '耒阳市', '430481'); -INSERT INTO `cardcodes` VALUES (3190, '湖南省', '衡阳市', '常宁市', '430482'); -INSERT INTO `cardcodes` VALUES (3191, '湖南省', '湘潭地区', '湘潭县', '432121'); -INSERT INTO `cardcodes` VALUES (3192, '湖南省', '湘潭地区', '湘乡县', '432122'); -INSERT INTO `cardcodes` VALUES (3193, '湖南省', '湘潭地区', '醴陵县', '432123'); -INSERT INTO `cardcodes` VALUES (3194, '湖南省', '湘潭地区', '浏阳县', '432124'); -INSERT INTO `cardcodes` VALUES (3195, '湖南省', '湘潭地区', '攸县', '432125'); -INSERT INTO `cardcodes` VALUES (3196, '湖南省', '湘潭地区', '茶陵县', '432126'); -INSERT INTO `cardcodes` VALUES (3197, '湖南省', '湘潭地区', '酃县', '432127'); -INSERT INTO `cardcodes` VALUES (3198, '湖南省', '岳阳地区', '岳阳市', '432201'); -INSERT INTO `cardcodes` VALUES (3199, '湖南省', '岳阳地区', '平江县', '432222'); -INSERT INTO `cardcodes` VALUES (3200, '湖南省', '岳阳地区', '湘阴县', '432223'); -INSERT INTO `cardcodes` VALUES (3201, '湖南省', '岳阳地区', '汨罗县', '432224'); -INSERT INTO `cardcodes` VALUES (3202, '湖南省', '岳阳地区', '临湘市', '432225'); -INSERT INTO `cardcodes` VALUES (3203, '湖南省', '岳阳地区', '华容县', '432226'); -INSERT INTO `cardcodes` VALUES (3204, '湖南省', '益阳地区', '益阳市', '432301'); -INSERT INTO `cardcodes` VALUES (3205, '湖南省', '益阳地区', '沅江市', '432302'); -INSERT INTO `cardcodes` VALUES (3206, '湖南省', '益阳地区', '益阳县', '432321'); -INSERT INTO `cardcodes` VALUES (3207, '湖南省', '益阳地区', '南县', '432322'); -INSERT INTO `cardcodes` VALUES (3208, '湖南省', '益阳地区', '沅江县', '432323'); -INSERT INTO `cardcodes` VALUES (3209, '湖南省', '益阳地区', '宁乡县', '432324'); -INSERT INTO `cardcodes` VALUES (3210, '湖南省', '益阳地区', '桃江县', '432325'); -INSERT INTO `cardcodes` VALUES (3211, '湖南省', '益阳地区', '安化县', '432326'); -INSERT INTO `cardcodes` VALUES (3212, '湖南省', '常德地区', '常德市', '432401'); -INSERT INTO `cardcodes` VALUES (3213, '湖南省', '常德地区', '津市市', '432402'); -INSERT INTO `cardcodes` VALUES (3214, '湖南省', '常德地区', '常德县', '432421'); -INSERT INTO `cardcodes` VALUES (3215, '湖南省', '常德地区', '安乡县', '432422'); -INSERT INTO `cardcodes` VALUES (3216, '湖南省', '常德地区', '汉寿县', '432423'); -INSERT INTO `cardcodes` VALUES (3217, '湖南省', '常德地区', '澧县', '432424'); -INSERT INTO `cardcodes` VALUES (3218, '湖南省', '常德地区', '临澧县', '432425'); -INSERT INTO `cardcodes` VALUES (3219, '湖南省', '常德地区', '桃源县', '432426'); -INSERT INTO `cardcodes` VALUES (3220, '湖南省', '常德地区', '石门县', '432427'); -INSERT INTO `cardcodes` VALUES (3221, '湖南省', '常德地区', '慈利县', '432428'); -INSERT INTO `cardcodes` VALUES (3222, '湖南省', '娄底地区', '娄底市', '432501'); -INSERT INTO `cardcodes` VALUES (3223, '湖南省', '娄底地区', '冷水江市', '432502'); -INSERT INTO `cardcodes` VALUES (3224, '湖南省', '娄底地区', '涟源市', '432503'); -INSERT INTO `cardcodes` VALUES (3225, '湖南省', '娄底地区', '涟源县', '432521'); -INSERT INTO `cardcodes` VALUES (3226, '湖南省', '娄底地区', '双峰县', '432522'); -INSERT INTO `cardcodes` VALUES (3227, '湖南省', '娄底地区', '邵东县', '432523'); -INSERT INTO `cardcodes` VALUES (3228, '湖南省', '娄底地区', '新化县', '432524'); -INSERT INTO `cardcodes` VALUES (3229, '湖南省', '娄底地区', '新邵县', '432525'); -INSERT INTO `cardcodes` VALUES (3230, '湖南省', '邵阳地区', '邵阳县', '432621'); -INSERT INTO `cardcodes` VALUES (3231, '湖南省', '邵阳地区', '隆回县', '432622'); -INSERT INTO `cardcodes` VALUES (3232, '湖南省', '邵阳地区', '武冈县', '432623'); -INSERT INTO `cardcodes` VALUES (3233, '湖南省', '邵阳地区', '洞口县', '432624'); -INSERT INTO `cardcodes` VALUES (3234, '湖南省', '邵阳地区', '新宁县', '432625'); -INSERT INTO `cardcodes` VALUES (3235, '湖南省', '邵阳地区', '绥宁县', '432626'); -INSERT INTO `cardcodes` VALUES (3236, '湖南省', '邵阳地区', '城步苗族自治县', '432627'); -INSERT INTO `cardcodes` VALUES (3237, '湖南省', '衡阳地区', '衡阳县', '432721'); -INSERT INTO `cardcodes` VALUES (3238, '湖南省', '衡阳地区', '衡南县', '432722'); -INSERT INTO `cardcodes` VALUES (3239, '湖南省', '衡阳地区', '衡山县', '432723'); -INSERT INTO `cardcodes` VALUES (3240, '湖南省', '衡阳地区', '衡东县', '432724'); -INSERT INTO `cardcodes` VALUES (3241, '湖南省', '衡阳地区', '常宁县', '432725'); -INSERT INTO `cardcodes` VALUES (3242, '湖南省', '衡阳地区', '祁东县', '432726'); -INSERT INTO `cardcodes` VALUES (3243, '湖南省', '衡阳地区', '祁阳县', '432727'); -INSERT INTO `cardcodes` VALUES (3244, '湖南省', '郴州地区', '郴州市', '432801'); -INSERT INTO `cardcodes` VALUES (3245, '湖南省', '郴州地区', '资兴市', '432802'); -INSERT INTO `cardcodes` VALUES (3246, '湖南省', '郴州地区', '郴县', '432821'); -INSERT INTO `cardcodes` VALUES (3247, '湖南省', '郴州地区', '桂阳县', '432822'); -INSERT INTO `cardcodes` VALUES (3248, '湖南省', '郴州地区', '永兴县', '432823'); -INSERT INTO `cardcodes` VALUES (3249, '湖南省', '郴州地区', '宜章县', '432824'); -INSERT INTO `cardcodes` VALUES (3250, '湖南省', '郴州地区', '资兴县', '432825'); -INSERT INTO `cardcodes` VALUES (3251, '湖南省', '郴州地区', '嘉禾县', '432826'); -INSERT INTO `cardcodes` VALUES (3252, '湖南省', '郴州地区', '临武县', '432827'); -INSERT INTO `cardcodes` VALUES (3253, '湖南省', '郴州地区', '汝城县', '432828'); -INSERT INTO `cardcodes` VALUES (3254, '湖南省', '郴州地区', '桂东县', '432829'); -INSERT INTO `cardcodes` VALUES (3255, '湖南省', '郴州地区', '耒阳县', '432830'); -INSERT INTO `cardcodes` VALUES (3256, '湖南省', '郴州地区', '安仁县', '432831'); -INSERT INTO `cardcodes` VALUES (3257, '湖南省', '零陵地区', '永州市', '432901'); -INSERT INTO `cardcodes` VALUES (3258, '湖南省', '零陵地区', '冷水滩市', '432902'); -INSERT INTO `cardcodes` VALUES (3259, '湖南省', '零陵地区', '零陵县', '432921'); -INSERT INTO `cardcodes` VALUES (3260, '湖南省', '零陵地区', '东安县', '432922'); -INSERT INTO `cardcodes` VALUES (3261, '湖南省', '零陵地区', '道县', '432923'); -INSERT INTO `cardcodes` VALUES (3262, '湖南省', '零陵地区', '宁远县', '432924'); -INSERT INTO `cardcodes` VALUES (3263, '湖南省', '零陵地区', '江永县', '432925'); -INSERT INTO `cardcodes` VALUES (3264, '湖南省', '零陵地区', '江华瑶族自治县', '432926'); -INSERT INTO `cardcodes` VALUES (3265, '湖南省', '零陵地区', '蓝山县', '432927'); -INSERT INTO `cardcodes` VALUES (3266, '湖南省', '零陵地区', '新田县', '432928'); -INSERT INTO `cardcodes` VALUES (3267, '湖南省', '零陵地区', '双牌县', '432929'); -INSERT INTO `cardcodes` VALUES (3268, '湖南省', '零陵地区', '双牌县', '432930'); -INSERT INTO `cardcodes` VALUES (3269, '湖南省', '邵阳市', '市辖区', '430501'); -INSERT INTO `cardcodes` VALUES (3270, '湖南省', '邵阳市', '双清区', '430502'); -INSERT INTO `cardcodes` VALUES (3271, '湖南省', '邵阳市', '大祥区', '430503'); -INSERT INTO `cardcodes` VALUES (3272, '湖南省', '邵阳市', '北塔区', '430511'); -INSERT INTO `cardcodes` VALUES (3273, '湖南省', '邵阳市', '邵东县', '430521'); -INSERT INTO `cardcodes` VALUES (3274, '湖南省', '邵阳市', '新邵县', '430522'); -INSERT INTO `cardcodes` VALUES (3275, '湖南省', '邵阳市', '邵阳县', '430523'); -INSERT INTO `cardcodes` VALUES (3276, '湖南省', '邵阳市', '隆回县', '430524'); -INSERT INTO `cardcodes` VALUES (3277, '湖南省', '邵阳市', '洞口县', '430525'); -INSERT INTO `cardcodes` VALUES (3278, '湖南省', '邵阳市', '武冈县', '430526'); -INSERT INTO `cardcodes` VALUES (3279, '湖南省', '邵阳市', '绥宁县', '430527'); -INSERT INTO `cardcodes` VALUES (3280, '湖南省', '邵阳市', '新宁县', '430528'); -INSERT INTO `cardcodes` VALUES (3281, '湖南省', '邵阳市', '城步苗族自治县', '430529'); -INSERT INTO `cardcodes` VALUES (3282, '湖南省', '邵阳市', '武冈市', '430581'); -INSERT INTO `cardcodes` VALUES (3283, '湖南省', '岳阳市', '市辖区', '430601'); -INSERT INTO `cardcodes` VALUES (3284, '湖南省', '岳阳市', '岳阳楼区', '430602'); -INSERT INTO `cardcodes` VALUES (3285, '湖南省', '岳阳市', '云溪区', '430603'); -INSERT INTO `cardcodes` VALUES (3286, '湖南省', '岳阳市', '君山区', '430611'); -INSERT INTO `cardcodes` VALUES (3287, '湖南省', '岳阳市', '岳阳县', '430621'); -INSERT INTO `cardcodes` VALUES (3288, '湖南省', '岳阳市', '临湘县', '430622'); -INSERT INTO `cardcodes` VALUES (3289, '湖南省', '岳阳市', '华容县', '430623'); -INSERT INTO `cardcodes` VALUES (3290, '湖南省', '岳阳市', '湘阴县', '430624'); -INSERT INTO `cardcodes` VALUES (3291, '湖南省', '岳阳市', '汨罗县', '430625'); -INSERT INTO `cardcodes` VALUES (3292, '湖南省', '岳阳市', '平江县', '430626'); -INSERT INTO `cardcodes` VALUES (3293, '湖南省', '岳阳市', '汨罗市', '430681'); -INSERT INTO `cardcodes` VALUES (3294, '湖南省', '岳阳市', '临湘市', '430682'); -INSERT INTO `cardcodes` VALUES (3295, '湖南省', '常德市', '市辖区', '430701'); -INSERT INTO `cardcodes` VALUES (3296, '湖南省', '常德市', '武陵区', '430702'); -INSERT INTO `cardcodes` VALUES (3297, '湖南省', '常德市', '鼎城区', '430703'); -INSERT INTO `cardcodes` VALUES (3298, '湖南省', '常德市', '安乡县', '430721'); -INSERT INTO `cardcodes` VALUES (3299, '湖南省', '常德市', '汉寿县', '430722'); -INSERT INTO `cardcodes` VALUES (3300, '湖南省', '常德市', '澧县', '430723'); -INSERT INTO `cardcodes` VALUES (3301, '湖南省', '常德市', '临澧县', '430724'); -INSERT INTO `cardcodes` VALUES (3302, '湖南省', '常德市', '桃源县', '430725'); -INSERT INTO `cardcodes` VALUES (3303, '湖南省', '常德市', '石门县', '430726'); -INSERT INTO `cardcodes` VALUES (3304, '湖南省', '常德市', '津市市', '430781'); -INSERT INTO `cardcodes` VALUES (3305, '湖南省', '张家界市', '市辖区', '430801'); -INSERT INTO `cardcodes` VALUES (3306, '湖南省', '张家界市', '永定区', '430802'); -INSERT INTO `cardcodes` VALUES (3307, '湖南省', '张家界市', '武陵源区', '430811'); -INSERT INTO `cardcodes` VALUES (3308, '湖南省', '张家界市', '慈利县', '430821'); -INSERT INTO `cardcodes` VALUES (3309, '湖南省', '张家界市', '桑植县', '430822'); -INSERT INTO `cardcodes` VALUES (3310, '湖南省', '益阳市', '市辖区', '430901'); -INSERT INTO `cardcodes` VALUES (3311, '湖南省', '益阳市', '资阳区', '430902'); -INSERT INTO `cardcodes` VALUES (3312, '湖南省', '益阳市', '赫山区', '430903'); -INSERT INTO `cardcodes` VALUES (3313, '湖南省', '益阳市', '市区', '430911'); -INSERT INTO `cardcodes` VALUES (3314, '湖南省', '益阳市', '南县', '430921'); -INSERT INTO `cardcodes` VALUES (3315, '湖南省', '益阳市', '桃江县', '430922'); -INSERT INTO `cardcodes` VALUES (3316, '湖南省', '益阳市', '安化县', '430923'); -INSERT INTO `cardcodes` VALUES (3317, '湖南省', '益阳市', '沅江市', '430981'); -INSERT INTO `cardcodes` VALUES (3318, '湖南省', '郴州市', '市辖区', '431001'); -INSERT INTO `cardcodes` VALUES (3319, '湖南省', '郴州市', '北湖区', '431002'); -INSERT INTO `cardcodes` VALUES (3320, '湖南省', '郴州市', '苏仙区', '431003'); -INSERT INTO `cardcodes` VALUES (3321, '湖南省', '郴州市', '桂阳县', '431021'); -INSERT INTO `cardcodes` VALUES (3322, '湖南省', '郴州市', '宜章县', '431022'); -INSERT INTO `cardcodes` VALUES (3323, '湖南省', '郴州市', '永兴县', '431023'); -INSERT INTO `cardcodes` VALUES (3324, '湖南省', '郴州市', '嘉禾县', '431024'); -INSERT INTO `cardcodes` VALUES (3325, '湖南省', '郴州市', '临武县', '431025'); -INSERT INTO `cardcodes` VALUES (3326, '湖南省', '郴州市', '汝城县', '431026'); -INSERT INTO `cardcodes` VALUES (3327, '湖南省', '郴州市', '桂东县', '431027'); -INSERT INTO `cardcodes` VALUES (3328, '湖南省', '郴州市', '安仁县', '431028'); -INSERT INTO `cardcodes` VALUES (3329, '湖南省', '郴州市', '资兴市', '431081'); -INSERT INTO `cardcodes` VALUES (3330, '湖南省', '永州市', '市辖区', '431101'); -INSERT INTO `cardcodes` VALUES (3331, '湖南省', '永州市', '零陵区', '431102'); -INSERT INTO `cardcodes` VALUES (3332, '湖南省', '永州市', '冷水滩区', '431103'); -INSERT INTO `cardcodes` VALUES (3333, '湖南省', '永州市', '祁阳县', '431121'); -INSERT INTO `cardcodes` VALUES (3334, '湖南省', '永州市', '东安县', '431122'); -INSERT INTO `cardcodes` VALUES (3335, '湖南省', '永州市', '双牌县', '431123'); -INSERT INTO `cardcodes` VALUES (3336, '湖南省', '永州市', '道县', '431124'); -INSERT INTO `cardcodes` VALUES (3337, '湖南省', '永州市', '江永县', '431125'); -INSERT INTO `cardcodes` VALUES (3338, '湖南省', '永州市', '宁远县', '431126'); -INSERT INTO `cardcodes` VALUES (3339, '湖南省', '永州市', '蓝山县', '431127'); -INSERT INTO `cardcodes` VALUES (3340, '湖南省', '永州市', '新田县', '431128'); -INSERT INTO `cardcodes` VALUES (3341, '湖南省', '永州市', '江华瑶族自治县', '431129'); -INSERT INTO `cardcodes` VALUES (3342, '湖南省', '怀化市', '市辖区', '431201'); -INSERT INTO `cardcodes` VALUES (3343, '湖南省', '怀化市', '鹤城区', '431202'); -INSERT INTO `cardcodes` VALUES (3344, '湖南省', '怀化市', '中方县', '431221'); -INSERT INTO `cardcodes` VALUES (3345, '湖南省', '怀化市', '沅陵县', '431222'); -INSERT INTO `cardcodes` VALUES (3346, '湖南省', '怀化市', '辰溪县', '431223'); -INSERT INTO `cardcodes` VALUES (3347, '湖南省', '怀化市', '溆浦县', '431224'); -INSERT INTO `cardcodes` VALUES (3348, '湖南省', '怀化市', '会同县', '431225'); -INSERT INTO `cardcodes` VALUES (3349, '湖南省', '怀化市', '麻阳苗族自治县', '431226'); -INSERT INTO `cardcodes` VALUES (3350, '湖南省', '怀化市', '新晃侗族自治县', '431227'); -INSERT INTO `cardcodes` VALUES (3351, '湖南省', '怀化市', '芷江侗族自治县', '431228'); -INSERT INTO `cardcodes` VALUES (3352, '湖南省', '怀化市', '靖州苗族侗族自治县', '431229'); -INSERT INTO `cardcodes` VALUES (3353, '湖南省', '怀化市', '通道侗族自治县', '431230'); -INSERT INTO `cardcodes` VALUES (3354, '湖南省', '怀化市', '洪江市', '431281'); -INSERT INTO `cardcodes` VALUES (3355, '湖南省', '娄底市', '市辖区', '431301'); -INSERT INTO `cardcodes` VALUES (3356, '湖南省', '娄底市', '娄星区', '431302'); -INSERT INTO `cardcodes` VALUES (3357, '湖南省', '娄底市', '双峰县', '431321'); -INSERT INTO `cardcodes` VALUES (3358, '湖南省', '娄底市', '新化县', '431322'); -INSERT INTO `cardcodes` VALUES (3359, '湖南省', '娄底市', '冷水江市', '431381'); -INSERT INTO `cardcodes` VALUES (3360, '湖南省', '娄底市', '涟源市', '431382'); -INSERT INTO `cardcodes` VALUES (3361, '湖南省', '怀化地区', '怀化市', '433001'); -INSERT INTO `cardcodes` VALUES (3362, '湖南省', '怀化地区', '洪江市', '433002'); -INSERT INTO `cardcodes` VALUES (3363, '湖南省', '怀化地区', '黔阳县', '433021'); -INSERT INTO `cardcodes` VALUES (3364, '湖南省', '怀化地区', '沅陵县', '433022'); -INSERT INTO `cardcodes` VALUES (3365, '湖南省', '怀化地区', '辰溪县', '433023'); -INSERT INTO `cardcodes` VALUES (3366, '湖南省', '怀化地区', '溆浦县', '433024'); -INSERT INTO `cardcodes` VALUES (3367, '湖南省', '怀化地区', '麻阳县', '433025'); -INSERT INTO `cardcodes` VALUES (3368, '湖南省', '怀化地区', '新晃侗族自治县', '433026'); -INSERT INTO `cardcodes` VALUES (3369, '湖南省', '怀化地区', '芷江县', '433027'); -INSERT INTO `cardcodes` VALUES (3370, '湖南省', '怀化地区', '怀化县', '433028'); -INSERT INTO `cardcodes` VALUES (3371, '湖南省', '怀化地区', '会同县', '433029'); -INSERT INTO `cardcodes` VALUES (3372, '湖南省', '怀化地区', '靖县', '433030'); -INSERT INTO `cardcodes` VALUES (3373, '湖南省', '怀化地区', '通道侗族自治县', '433031'); -INSERT INTO `cardcodes` VALUES (3374, '湖南省', '湘西土家族苗族自治州', '吉首市', '433101'); -INSERT INTO `cardcodes` VALUES (3375, '湖南省', '湘西土家族苗族自治州', '吉首县', '433121'); -INSERT INTO `cardcodes` VALUES (3376, '湖南省', '湘西土家族苗族自治州', '泸溪县', '433122'); -INSERT INTO `cardcodes` VALUES (3377, '湖南省', '湘西土家族苗族自治州', '凤凰县', '433123'); -INSERT INTO `cardcodes` VALUES (3378, '湖南省', '湘西土家族苗族自治州', '花垣县', '433124'); -INSERT INTO `cardcodes` VALUES (3379, '湖南省', '湘西土家族苗族自治州', '保靖县', '433125'); -INSERT INTO `cardcodes` VALUES (3380, '湖南省', '湘西土家族苗族自治州', '古丈县', '433126'); -INSERT INTO `cardcodes` VALUES (3381, '湖南省', '湘西土家族苗族自治州', '永顺县', '433127'); -INSERT INTO `cardcodes` VALUES (3382, '湖南省', '湘西土家族苗族自治州', '大庸县', '433128'); -INSERT INTO `cardcodes` VALUES (3383, '湖南省', '湘西土家族苗族自治州', '桑植县', '433129'); -INSERT INTO `cardcodes` VALUES (3384, '湖南省', '湘西土家族苗族自治州', '龙山县', '433130'); -INSERT INTO `cardcodes` VALUES (3385, '湖南省', NULL, '醴陵市', '439001'); -INSERT INTO `cardcodes` VALUES (3386, '湖南省', NULL, '湘乡市', '439002'); -INSERT INTO `cardcodes` VALUES (3387, '湖南省', NULL, '耒阳市', '439003'); -INSERT INTO `cardcodes` VALUES (3388, '湖南省', NULL, '汨罗市', '439004'); -INSERT INTO `cardcodes` VALUES (3389, '湖南省', NULL, '津市市', '439005'); -INSERT INTO `cardcodes` VALUES (3390, '广东省', '广州市', '市辖区', '440101'); -INSERT INTO `cardcodes` VALUES (3391, '广东省', '广州市', '东山区', '440102'); -INSERT INTO `cardcodes` VALUES (3392, '广东省', '广州市', '荔湾区', '440103'); -INSERT INTO `cardcodes` VALUES (3393, '广东省', '广州市', '越秀区', '440104'); -INSERT INTO `cardcodes` VALUES (3394, '广东省', '广州市', '海珠区', '440105'); -INSERT INTO `cardcodes` VALUES (3395, '广东省', '广州市', '天河区', '440106'); -INSERT INTO `cardcodes` VALUES (3396, '广东省', '广州市', '芳村区', '440107'); -INSERT INTO `cardcodes` VALUES (3397, '广东省', '广州市', '白云区', '440111'); -INSERT INTO `cardcodes` VALUES (3398, '广东省', '广州市', '黄埔区', '440112'); -INSERT INTO `cardcodes` VALUES (3399, '广东省', '广州市', '番禺区', '440113'); -INSERT INTO `cardcodes` VALUES (3400, '广东省', '广州市', '花都区', '440114'); -INSERT INTO `cardcodes` VALUES (3401, '广东省', '广州市', '南沙区', '440115'); -INSERT INTO `cardcodes` VALUES (3402, '广东省', '广州市', '萝岗区', '440116'); -INSERT INTO `cardcodes` VALUES (3403, '广东省', '广州市', '市区', '440120'); -INSERT INTO `cardcodes` VALUES (3404, '广东省', '广州市', '花县', '440121'); -INSERT INTO `cardcodes` VALUES (3405, '广东省', '广州市', '从化县', '440122'); -INSERT INTO `cardcodes` VALUES (3406, '广东省', '广州市', '新丰县', '440123'); -INSERT INTO `cardcodes` VALUES (3407, '广东省', '广州市', '龙门县', '440124'); -INSERT INTO `cardcodes` VALUES (3408, '广东省', '广州市', '增城县', '440125'); -INSERT INTO `cardcodes` VALUES (3409, '广东省', '广州市', '番禺县', '440126'); -INSERT INTO `cardcodes` VALUES (3410, '广东省', '广州市', '清远县', '440127'); -INSERT INTO `cardcodes` VALUES (3411, '广东省', '广州市', '佛冈县', '440128'); -INSERT INTO `cardcodes` VALUES (3412, '广东省', '广州市', '番禺市', '440181'); -INSERT INTO `cardcodes` VALUES (3413, '广东省', '广州市', '花都市', '440182'); -INSERT INTO `cardcodes` VALUES (3414, '广东省', '广州市', '增城市', '440183'); -INSERT INTO `cardcodes` VALUES (3415, '广东省', '广州市', '从化市', '440184'); -INSERT INTO `cardcodes` VALUES (3416, '广东省', '韶关市', '市辖区', '440201'); -INSERT INTO `cardcodes` VALUES (3417, '广东省', '韶关市', '北江区', '440202'); -INSERT INTO `cardcodes` VALUES (3418, '广东省', '韶关市', '武江区', '440203'); -INSERT INTO `cardcodes` VALUES (3419, '广东省', '韶关市', '浈江区', '440204'); -INSERT INTO `cardcodes` VALUES (3420, '广东省', '韶关市', '曲江区', '440205'); -INSERT INTO `cardcodes` VALUES (3421, '广东省', '韶关市', '曲江县', '440221'); -INSERT INTO `cardcodes` VALUES (3422, '广东省', '韶关市', '始兴县', '440222'); -INSERT INTO `cardcodes` VALUES (3423, '广东省', '韶关市', '南雄县', '440223'); -INSERT INTO `cardcodes` VALUES (3424, '广东省', '韶关市', '仁化县', '440224'); -INSERT INTO `cardcodes` VALUES (3425, '广东省', '韶关市', '乐昌县', '440225'); -INSERT INTO `cardcodes` VALUES (3426, '广东省', '韶关市', '连县', '440226'); -INSERT INTO `cardcodes` VALUES (3427, '广东省', '韶关市', '阳山县', '440227'); -INSERT INTO `cardcodes` VALUES (3428, '广东省', '韶关市', '英德县', '440228'); -INSERT INTO `cardcodes` VALUES (3429, '广东省', '韶关市', '翁源县', '440229'); -INSERT INTO `cardcodes` VALUES (3430, '广东省', '韶关市', '连山壮族瑶族自治县', '440230'); -INSERT INTO `cardcodes` VALUES (3431, '广东省', '韶关市', '连南瑶族自治县', '440231'); -INSERT INTO `cardcodes` VALUES (3432, '广东省', '韶关市', '乳源瑶族自治县', '440232'); -INSERT INTO `cardcodes` VALUES (3433, '广东省', '韶关市', '新丰县', '440233'); -INSERT INTO `cardcodes` VALUES (3434, '广东省', '韶关市', '乐昌市', '440281'); -INSERT INTO `cardcodes` VALUES (3435, '广东省', '韶关市', '南雄市', '440282'); -INSERT INTO `cardcodes` VALUES (3436, '广东省', '深圳市', '市辖区', '440301'); -INSERT INTO `cardcodes` VALUES (3437, '广东省', '深圳市', '盐田区', '440302'); -INSERT INTO `cardcodes` VALUES (3438, '广东省', '深圳市', '罗湖区', '440303'); -INSERT INTO `cardcodes` VALUES (3439, '广东省', '深圳市', '福田区', '440304'); -INSERT INTO `cardcodes` VALUES (3440, '广东省', '深圳市', '南山区', '440305'); -INSERT INTO `cardcodes` VALUES (3441, '广东省', '深圳市', '宝安区', '440306'); -INSERT INTO `cardcodes` VALUES (3442, '广东省', '深圳市', '龙岗区', '440307'); -INSERT INTO `cardcodes` VALUES (3443, '广东省', '深圳市', '盐田区', '440308'); -INSERT INTO `cardcodes` VALUES (3444, '广东省', '深圳市', '市区', '440320'); -INSERT INTO `cardcodes` VALUES (3445, '广东省', '深圳市', '宝安县', '440321'); -INSERT INTO `cardcodes` VALUES (3446, '广东省', '珠海市', '市辖区', '440401'); -INSERT INTO `cardcodes` VALUES (3447, '广东省', '珠海市', '香洲区', '440402'); -INSERT INTO `cardcodes` VALUES (3448, '广东省', '珠海市', '斗门区', '440403'); -INSERT INTO `cardcodes` VALUES (3449, '广东省', '珠海市', '金湾区', '440404'); -INSERT INTO `cardcodes` VALUES (3450, '广东省', '珠海市', '斗门县', '440421'); -INSERT INTO `cardcodes` VALUES (3451, '广东省', '汕头市', '市辖区', '440501'); -INSERT INTO `cardcodes` VALUES (3452, '广东省', '汕头市', '同平区', '440502'); -INSERT INTO `cardcodes` VALUES (3453, '广东省', '汕头市', '安平区', '440503'); -INSERT INTO `cardcodes` VALUES (3454, '广东省', '汕头市', '公园区', '440504'); -INSERT INTO `cardcodes` VALUES (3455, '广东省', '汕头市', '金砂区', '440505'); -INSERT INTO `cardcodes` VALUES (3456, '广东省', '汕头市', '达濠区', '440506'); -INSERT INTO `cardcodes` VALUES (3457, '广东省', '汕头市', '龙湖区', '440507'); -INSERT INTO `cardcodes` VALUES (3458, '广东省', '汕头市', '金园区', '440508'); -INSERT INTO `cardcodes` VALUES (3459, '广东省', '汕头市', '升平区', '440509'); -INSERT INTO `cardcodes` VALUES (3460, '广东省', '汕头市', '河浦区', '440510'); -INSERT INTO `cardcodes` VALUES (3461, '广东省', '汕头市', '金平区', '440511'); -INSERT INTO `cardcodes` VALUES (3462, '广东省', '汕头市', '濠江区', '440512'); -INSERT INTO `cardcodes` VALUES (3463, '广东省', '汕头市', '潮阳区', '440513'); -INSERT INTO `cardcodes` VALUES (3464, '广东省', '汕头市', '潮南区', '440514'); -INSERT INTO `cardcodes` VALUES (3465, '广东省', '汕头市', '澄海区', '440515'); -INSERT INTO `cardcodes` VALUES (3466, '广东省', '汕头市', '潮州市', '440520'); -INSERT INTO `cardcodes` VALUES (3467, '广东省', '汕头市', '澄海县', '440521'); -INSERT INTO `cardcodes` VALUES (3468, '广东省', '汕头市', '饶平县', '440522'); -INSERT INTO `cardcodes` VALUES (3469, '广东省', '汕头市', '南澳县', '440523'); -INSERT INTO `cardcodes` VALUES (3470, '广东省', '汕头市', '潮阳县', '440524'); -INSERT INTO `cardcodes` VALUES (3471, '广东省', '汕头市', '揭阳县', '440525'); -INSERT INTO `cardcodes` VALUES (3472, '广东省', '汕头市', '揭西县', '440526'); -INSERT INTO `cardcodes` VALUES (3473, '广东省', '汕头市', '普宁县', '440527'); -INSERT INTO `cardcodes` VALUES (3474, '广东省', '汕头市', '惠来县', '440528'); -INSERT INTO `cardcodes` VALUES (3475, '广东省', '汕头市', '潮州市', '440581'); -INSERT INTO `cardcodes` VALUES (3476, '广东省', '汕头市', '潮阳市', '440582'); -INSERT INTO `cardcodes` VALUES (3477, '广东省', '汕头市', '澄海市', '440583'); -INSERT INTO `cardcodes` VALUES (3478, '广东省', '佛山市', '市辖区', '440601'); -INSERT INTO `cardcodes` VALUES (3479, '广东省', '佛山市', '城区', '440602'); -INSERT INTO `cardcodes` VALUES (3480, '广东省', '佛山市', '石湾区', '440603'); -INSERT INTO `cardcodes` VALUES (3481, '广东省', '佛山市', '禅城区', '440604'); -INSERT INTO `cardcodes` VALUES (3482, '广东省', '佛山市', '南海区', '440605'); -INSERT INTO `cardcodes` VALUES (3483, '广东省', '佛山市', '顺德区', '440606'); -INSERT INTO `cardcodes` VALUES (3484, '广东省', '佛山市', '三水区', '440607'); -INSERT INTO `cardcodes` VALUES (3485, '广东省', '佛山市', '高明区', '440608'); -INSERT INTO `cardcodes` VALUES (3486, '广东省', '佛山市', '中山市', '440620'); -INSERT INTO `cardcodes` VALUES (3487, '广东省', '佛山市', '三水县', '440621'); -INSERT INTO `cardcodes` VALUES (3488, '广东省', '佛山市', '南海县', '440622'); -INSERT INTO `cardcodes` VALUES (3489, '广东省', '佛山市', '顺德县', '440623'); -INSERT INTO `cardcodes` VALUES (3490, '广东省', '佛山市', '高明县', '440624'); -INSERT INTO `cardcodes` VALUES (3491, '广东省', '佛山市', '顺德市', '440681'); -INSERT INTO `cardcodes` VALUES (3492, '广东省', '佛山市', '南海市', '440682'); -INSERT INTO `cardcodes` VALUES (3493, '广东省', '佛山市', '三水市', '440683'); -INSERT INTO `cardcodes` VALUES (3494, '广东省', '佛山市', '高明市', '440684'); -INSERT INTO `cardcodes` VALUES (3495, '广东省', '江门市', '市辖区', '440701'); -INSERT INTO `cardcodes` VALUES (3496, '广东省', '江门市', '城区', '440702'); -INSERT INTO `cardcodes` VALUES (3497, '广东省', '江门市', '蓬江区', '440703'); -INSERT INTO `cardcodes` VALUES (3498, '广东省', '江门市', '江海区', '440704'); -INSERT INTO `cardcodes` VALUES (3499, '广东省', '江门市', '新会区', '440705'); -INSERT INTO `cardcodes` VALUES (3500, '广东省', '江门市', '郊区', '440711'); -INSERT INTO `cardcodes` VALUES (3501, '广东省', '江门市', '新会县', '440721'); -INSERT INTO `cardcodes` VALUES (3502, '广东省', '江门市', '台山县', '440722'); -INSERT INTO `cardcodes` VALUES (3503, '广东省', '江门市', '恩平县', '440723'); -INSERT INTO `cardcodes` VALUES (3504, '广东省', '江门市', '开平县', '440724'); -INSERT INTO `cardcodes` VALUES (3505, '广东省', '江门市', '鹤山县', '440725'); -INSERT INTO `cardcodes` VALUES (3506, '广东省', '江门市', '阳江县', '440726'); -INSERT INTO `cardcodes` VALUES (3507, '广东省', '江门市', '阳春县', '440727'); -INSERT INTO `cardcodes` VALUES (3508, '广东省', '江门市', '台山市', '440781'); -INSERT INTO `cardcodes` VALUES (3509, '广东省', '江门市', '新会市', '440782'); -INSERT INTO `cardcodes` VALUES (3510, '广东省', '江门市', '开平市', '440783'); -INSERT INTO `cardcodes` VALUES (3511, '广东省', '江门市', '鹤山市', '440784'); -INSERT INTO `cardcodes` VALUES (3512, '广东省', '江门市', '恩平市', '440785'); -INSERT INTO `cardcodes` VALUES (3513, '广东省', '清远市', '连州市', '441882'); -INSERT INTO `cardcodes` VALUES (3514, '广东省', '清远市', '市辖区', '441801'); -INSERT INTO `cardcodes` VALUES (3515, '广东省', '清远市', '清城区', '441802'); -INSERT INTO `cardcodes` VALUES (3516, '广东省', '清远市', '清郊区', '441811'); -INSERT INTO `cardcodes` VALUES (3517, '广东省', '清远市', '佛冈县', '441821'); -INSERT INTO `cardcodes` VALUES (3518, '广东省', '清远市', '英德县', '441822'); -INSERT INTO `cardcodes` VALUES (3519, '广东省', '清远市', '阳山县', '441823'); -INSERT INTO `cardcodes` VALUES (3520, '广东省', '清远市', '连县', '441824'); -INSERT INTO `cardcodes` VALUES (3521, '广东省', '清远市', '连山壮族瑶族自治县', '441825'); -INSERT INTO `cardcodes` VALUES (3522, '广东省', '清远市', '连南瑶族自治县', '441826'); -INSERT INTO `cardcodes` VALUES (3523, '广东省', '清远市', '清新县', '441827'); -INSERT INTO `cardcodes` VALUES (3524, '广东省', '清远市', '英德市', '441881'); -INSERT INTO `cardcodes` VALUES (3525, '广东省', '佛山市', '佛山市', '442701'); -INSERT INTO `cardcodes` VALUES (3526, '广东省', '佛山市', '江门市', '442702'); -INSERT INTO `cardcodes` VALUES (3527, '广东省', '佛山市', '三水县', '442721'); -INSERT INTO `cardcodes` VALUES (3528, '广东省', '佛山市', '南海县', '442722'); -INSERT INTO `cardcodes` VALUES (3529, '广东省', '佛山市', '顺德县', '442723'); -INSERT INTO `cardcodes` VALUES (3530, '广东省', '佛山市', '中山县', '442724'); -INSERT INTO `cardcodes` VALUES (3531, '广东省', '佛山市', '斗门县', '442725'); -INSERT INTO `cardcodes` VALUES (3532, '广东省', '佛山市', '新会县', '442726'); -INSERT INTO `cardcodes` VALUES (3533, '广东省', '佛山市', '台山县', '442727'); -INSERT INTO `cardcodes` VALUES (3534, '广东省', '佛山市', '恩平县', '442728'); -INSERT INTO `cardcodes` VALUES (3535, '广东省', '佛山市', '开平县', '442729'); -INSERT INTO `cardcodes` VALUES (3536, '广东省', '佛山市', '鹤山县', '442731'); -INSERT INTO `cardcodes` VALUES (3537, '广东省', '佛山市', '高明县', '442732'); -INSERT INTO `cardcodes` VALUES (3538, '广东省', '湛江市', '湛江市', '442901'); -INSERT INTO `cardcodes` VALUES (3539, '广东省', '湛江市', '茂名市', '442902'); -INSERT INTO `cardcodes` VALUES (3540, '广东省', '湛江市', '阳江县', '442921'); -INSERT INTO `cardcodes` VALUES (3541, '广东省', '湛江市', '阳春县', '442922'); -INSERT INTO `cardcodes` VALUES (3542, '广东省', '湛江市', '信宜县', '442923'); -INSERT INTO `cardcodes` VALUES (3543, '广东省', '湛江市', '高州县', '442924'); -INSERT INTO `cardcodes` VALUES (3544, '广东省', '湛江市', '电白县', '442925'); -INSERT INTO `cardcodes` VALUES (3545, '广东省', '湛江市', '吴川县', '442926'); -INSERT INTO `cardcodes` VALUES (3546, '广东省', '湛江市', '化州县', '442927'); -INSERT INTO `cardcodes` VALUES (3547, '广东省', '湛江市', '廉江县', '442928'); -INSERT INTO `cardcodes` VALUES (3548, '广东省', '湛江市', '遂溪县', '442929'); -INSERT INTO `cardcodes` VALUES (3549, '广东省', '湛江市', '海康县', '442930'); -INSERT INTO `cardcodes` VALUES (3550, '广东省', '湛江市', '徐闻县', '442931'); -INSERT INTO `cardcodes` VALUES (3551, '广东省', '潮州市', '市辖区', '445101'); -INSERT INTO `cardcodes` VALUES (3552, '广东省', '潮州市', '湘桥区', '445102'); -INSERT INTO `cardcodes` VALUES (3553, '广东省', '潮州市', '潮安县', '445121'); -INSERT INTO `cardcodes` VALUES (3554, '广东省', '潮州市', '饶平县', '445122'); -INSERT INTO `cardcodes` VALUES (3555, '广东省', '揭阳市', '市辖区', '445201'); -INSERT INTO `cardcodes` VALUES (3556, '广东省', '揭阳市', '榕城区', '445202'); -INSERT INTO `cardcodes` VALUES (3557, '广东省', '揭阳市', '揭东县', '445221'); -INSERT INTO `cardcodes` VALUES (3558, '广东省', '揭阳市', '揭西县', '445222'); -INSERT INTO `cardcodes` VALUES (3559, '广东省', '揭阳市', '惠来县', '445224'); -INSERT INTO `cardcodes` VALUES (3560, '广东省', '揭阳市', '普宁市', '445281'); -INSERT INTO `cardcodes` VALUES (3561, '广东省', '湛江市', '市辖区', '440801'); -INSERT INTO `cardcodes` VALUES (3562, '广东省', '湛江市', '赤坎区', '440802'); -INSERT INTO `cardcodes` VALUES (3563, '广东省', '湛江市', '霞山区', '440803'); -INSERT INTO `cardcodes` VALUES (3564, '广东省', '湛江市', '坡头区', '440804'); -INSERT INTO `cardcodes` VALUES (3565, '广东省', '湛江市', '麻章区', '440811'); -INSERT INTO `cardcodes` VALUES (3566, '广东省', '湛江市', '吴川县', '440821'); -INSERT INTO `cardcodes` VALUES (3567, '广东省', '湛江市', '廉江县', '440822'); -INSERT INTO `cardcodes` VALUES (3568, '广东省', '湛江市', '遂溪县', '440823'); -INSERT INTO `cardcodes` VALUES (3569, '广东省', '湛江市', '海康县', '440824'); -INSERT INTO `cardcodes` VALUES (3570, '广东省', '湛江市', '徐闻县', '440825'); -INSERT INTO `cardcodes` VALUES (3571, '广东省', '湛江市', '廉江市', '440881'); -INSERT INTO `cardcodes` VALUES (3572, '广东省', '湛江市', '雷州市', '440882'); -INSERT INTO `cardcodes` VALUES (3573, '广东省', '湛江市', '吴川市', '440883'); -INSERT INTO `cardcodes` VALUES (3574, '广东省', '茂名市', '市辖区', '440901'); -INSERT INTO `cardcodes` VALUES (3575, '广东省', '茂名市', '茂南区', '440902'); -INSERT INTO `cardcodes` VALUES (3576, '广东省', '茂名市', '茂港区', '440903'); -INSERT INTO `cardcodes` VALUES (3577, '广东省', '茂名市', '信宜县', '440921'); -INSERT INTO `cardcodes` VALUES (3578, '广东省', '茂名市', '高州县', '440922'); -INSERT INTO `cardcodes` VALUES (3579, '广东省', '茂名市', '电白县', '440923'); -INSERT INTO `cardcodes` VALUES (3580, '广东省', '茂名市', '化州县', '440924'); -INSERT INTO `cardcodes` VALUES (3581, '广东省', '茂名市', '高州市', '440981'); -INSERT INTO `cardcodes` VALUES (3582, '广东省', '茂名市', '化州市', '440982'); -INSERT INTO `cardcodes` VALUES (3583, '广东省', '茂名市', '信宜市', '440983'); -INSERT INTO `cardcodes` VALUES (3584, '广东省', '肇庆市', '市辖区', '441201'); -INSERT INTO `cardcodes` VALUES (3585, '广东省', '肇庆市', '端州区', '441202'); -INSERT INTO `cardcodes` VALUES (3586, '广东省', '肇庆市', '鼎湖区', '441203'); -INSERT INTO `cardcodes` VALUES (3587, '广东省', '肇庆市', '高要县', '441221'); -INSERT INTO `cardcodes` VALUES (3588, '广东省', '肇庆市', '四会县', '441222'); -INSERT INTO `cardcodes` VALUES (3589, '广东省', '肇庆市', '广宁县', '441223'); -INSERT INTO `cardcodes` VALUES (3590, '广东省', '肇庆市', '怀集县', '441224'); -INSERT INTO `cardcodes` VALUES (3591, '广东省', '肇庆市', '封开县', '441225'); -INSERT INTO `cardcodes` VALUES (3592, '广东省', '肇庆市', '德庆县', '441226'); -INSERT INTO `cardcodes` VALUES (3593, '广东省', '肇庆市', '云浮县', '441227'); -INSERT INTO `cardcodes` VALUES (3594, '广东省', '肇庆市', '新兴县', '441228'); -INSERT INTO `cardcodes` VALUES (3595, '广东省', '肇庆市', '郁南县', '441229'); -INSERT INTO `cardcodes` VALUES (3596, '广东省', '肇庆市', '罗定县', '441230'); -INSERT INTO `cardcodes` VALUES (3597, '广东省', '肇庆市', '云浮市', '441281'); -INSERT INTO `cardcodes` VALUES (3598, '广东省', '肇庆市', '罗定市', '441282'); -INSERT INTO `cardcodes` VALUES (3599, '广东省', '肇庆市', '高要市', '441283'); -INSERT INTO `cardcodes` VALUES (3600, '广东省', '肇庆市', '四会市', '441284'); -INSERT INTO `cardcodes` VALUES (3601, '广东省', '惠州市', '市辖区', '441301'); -INSERT INTO `cardcodes` VALUES (3602, '广东省', '惠州市', '惠城区', '441302'); -INSERT INTO `cardcodes` VALUES (3603, '广东省', '惠州市', '惠阳区', '441303'); -INSERT INTO `cardcodes` VALUES (3604, '广东省', '惠州市', '惠阳县', '441321'); -INSERT INTO `cardcodes` VALUES (3605, '广东省', '惠州市', '博罗县', '441322'); -INSERT INTO `cardcodes` VALUES (3606, '广东省', '惠州市', '惠东县', '441323'); -INSERT INTO `cardcodes` VALUES (3607, '广东省', '惠州市', '龙门县', '441324'); -INSERT INTO `cardcodes` VALUES (3608, '广东省', '惠州市', '惠阳市', '441381'); -INSERT INTO `cardcodes` VALUES (3609, '广东省', '梅州市', '市辖区', '441401'); -INSERT INTO `cardcodes` VALUES (3610, '广东省', '梅州市', '梅江区', '441402'); -INSERT INTO `cardcodes` VALUES (3611, '广东省', '梅州市', '梅县', '441421'); -INSERT INTO `cardcodes` VALUES (3612, '广东省', '梅州市', '大埔县', '441422'); -INSERT INTO `cardcodes` VALUES (3613, '广东省', '梅州市', '丰顺县', '441423'); -INSERT INTO `cardcodes` VALUES (3614, '广东省', '梅州市', '五华县', '441424'); -INSERT INTO `cardcodes` VALUES (3615, '广东省', '梅州市', '兴宁县', '441425'); -INSERT INTO `cardcodes` VALUES (3616, '广东省', '梅州市', '平远县', '441426'); -INSERT INTO `cardcodes` VALUES (3617, '广东省', '梅州市', '蕉岭县', '441427'); -INSERT INTO `cardcodes` VALUES (3618, '广东省', '梅州市', '兴宁市', '441481'); -INSERT INTO `cardcodes` VALUES (3619, '广东省', '汕尾市', '市辖区', '441501'); -INSERT INTO `cardcodes` VALUES (3620, '广东省', '汕尾市', '城区', '441502'); -INSERT INTO `cardcodes` VALUES (3621, '广东省', '汕尾市', '海丰县', '441521'); -INSERT INTO `cardcodes` VALUES (3622, '广东省', '汕尾市', '陆丰县', '441522'); -INSERT INTO `cardcodes` VALUES (3623, '广东省', '汕尾市', '陆河县', '441523'); -INSERT INTO `cardcodes` VALUES (3624, '广东省', '汕尾市', '陆丰市', '441581'); -INSERT INTO `cardcodes` VALUES (3625, '广东省', '河源市', '市辖区', '441601'); -INSERT INTO `cardcodes` VALUES (3626, '广东省', '河源市', '源城区', '441602'); -INSERT INTO `cardcodes` VALUES (3627, '广东省', '河源市', '郊区', '441611'); -INSERT INTO `cardcodes` VALUES (3628, '广东省', '河源市', '紫金县', '441621'); -INSERT INTO `cardcodes` VALUES (3629, '广东省', '河源市', '龙川县', '441622'); -INSERT INTO `cardcodes` VALUES (3630, '广东省', '河源市', '连平县', '441623'); -INSERT INTO `cardcodes` VALUES (3631, '广东省', '河源市', '和平县', '441624'); -INSERT INTO `cardcodes` VALUES (3632, '广东省', '河源市', '东源县', '441625'); -INSERT INTO `cardcodes` VALUES (3633, '广东省', '阳江市', '市辖区', '441701'); -INSERT INTO `cardcodes` VALUES (3634, '广东省', '阳江市', '江城区', '441702'); -INSERT INTO `cardcodes` VALUES (3635, '广东省', '阳江市', '阳东区', '441703'); -INSERT INTO `cardcodes` VALUES (3636, '广东省', '阳江市', '阳西县', '441721'); -INSERT INTO `cardcodes` VALUES (3637, '广东省', '阳江市', '阳春县', '441722'); -INSERT INTO `cardcodes` VALUES (3638, '广东省', '阳江市', '阳东县', '441723'); -INSERT INTO `cardcodes` VALUES (3639, '广东省', '阳江市', '阳春市', '441781'); -INSERT INTO `cardcodes` VALUES (3640, '广东省', '云浮市', '市辖区', '445301'); -INSERT INTO `cardcodes` VALUES (3641, '广东省', '云浮市', '云城区', '445302'); -INSERT INTO `cardcodes` VALUES (3642, '广东省', '云浮市', '新兴县', '445321'); -INSERT INTO `cardcodes` VALUES (3643, '广东省', '云浮市', '郁南县', '445322'); -INSERT INTO `cardcodes` VALUES (3644, '广东省', '云浮市', '云安县', '445323'); -INSERT INTO `cardcodes` VALUES (3645, '广东省', '云浮市', '罗定市', '445381'); -INSERT INTO `cardcodes` VALUES (3646, '广东省', NULL, '东莞市', '441900'); -INSERT INTO `cardcodes` VALUES (3647, '广东省', NULL, '中山市', '442000'); -INSERT INTO `cardcodes` VALUES (3648, '广东省', NULL, '连平县', '442524'); -INSERT INTO `cardcodes` VALUES (3649, '广东省', NULL, '河源县', '442525'); -INSERT INTO `cardcodes` VALUES (3650, '广东省', NULL, '博罗县', '442526'); -INSERT INTO `cardcodes` VALUES (3651, '广东省', NULL, '东莞县', '442527'); -INSERT INTO `cardcodes` VALUES (3652, '广东省', NULL, '惠东县', '442528'); -INSERT INTO `cardcodes` VALUES (3653, '广东省', NULL, '龙川县', '442529'); -INSERT INTO `cardcodes` VALUES (3654, '广东省', NULL, '陆丰县', '442530'); -INSERT INTO `cardcodes` VALUES (3655, '广东省', NULL, '海丰县', '442531'); -INSERT INTO `cardcodes` VALUES (3656, '广东省', NULL, '始兴县', '442621'); -INSERT INTO `cardcodes` VALUES (3657, '广东省', NULL, '南雄县', '442622'); -INSERT INTO `cardcodes` VALUES (3658, '广东省', NULL, '仁化县', '442623'); -INSERT INTO `cardcodes` VALUES (3659, '广东省', NULL, '乐昌县', '442624'); -INSERT INTO `cardcodes` VALUES (3660, '广东省', NULL, '清远县', '442628'); -INSERT INTO `cardcodes` VALUES (3661, '广东省', NULL, '翁源县', '442630'); -INSERT INTO `cardcodes` VALUES (3662, '广东省', NULL, '连山壮族瑶族自治县', '442631'); -INSERT INTO `cardcodes` VALUES (3663, '广东省', NULL, '连南瑶族自治县', '442632'); -INSERT INTO `cardcodes` VALUES (3664, '广东省', NULL, '乳源瑶族自治县', '442633'); -INSERT INTO `cardcodes` VALUES (3665, '广东省', NULL, '高要县', '442821'); -INSERT INTO `cardcodes` VALUES (3666, '广东省', NULL, '四会县', '442822'); -INSERT INTO `cardcodes` VALUES (3667, '广东省', NULL, '广宁县', '442823'); -INSERT INTO `cardcodes` VALUES (3668, '广东省', NULL, '怀集县', '442824'); -INSERT INTO `cardcodes` VALUES (3669, '广东省', NULL, '封开县', '442825'); -INSERT INTO `cardcodes` VALUES (3670, '广东省', NULL, '德庆县', '442826'); -INSERT INTO `cardcodes` VALUES (3671, '广东省', NULL, '云浮县', '442827'); -INSERT INTO `cardcodes` VALUES (3672, '广东省', NULL, '新兴县', '442828'); -INSERT INTO `cardcodes` VALUES (3673, '广东省', NULL, '郁南县', '442829'); -INSERT INTO `cardcodes` VALUES (3674, '广东省', NULL, '罗定县', '442830'); -INSERT INTO `cardcodes` VALUES (3675, '广东省', NULL, '惠州市', '442501'); -INSERT INTO `cardcodes` VALUES (3676, '广东省', NULL, '东莞市', '442502'); -INSERT INTO `cardcodes` VALUES (3677, '广东省', NULL, '惠阳县', '442521'); -INSERT INTO `cardcodes` VALUES (3678, '广东省', NULL, '紫金县', '442522'); -INSERT INTO `cardcodes` VALUES (3679, '广东省', NULL, '和平县', '442523'); -INSERT INTO `cardcodes` VALUES (3680, '广西壮族自治区', '百色市', '市辖区', '451001'); -INSERT INTO `cardcodes` VALUES (3681, '广西壮族自治区', '百色市', '右江区', '451002'); -INSERT INTO `cardcodes` VALUES (3682, '广西壮族自治区', '百色市', '田阳县', '451021'); -INSERT INTO `cardcodes` VALUES (3683, '广西壮族自治区', '百色市', '田东县', '451022'); -INSERT INTO `cardcodes` VALUES (3684, '广西壮族自治区', '百色市', '平果县', '451023'); -INSERT INTO `cardcodes` VALUES (3685, '广西壮族自治区', '百色市', '德保县', '451024'); -INSERT INTO `cardcodes` VALUES (3686, '广西壮族自治区', '百色市', '靖西县', '451025'); -INSERT INTO `cardcodes` VALUES (3687, '广西壮族自治区', '百色市', '那坡县', '451026'); -INSERT INTO `cardcodes` VALUES (3688, '广西壮族自治区', '百色市', '凌云县', '451027'); -INSERT INTO `cardcodes` VALUES (3689, '广西壮族自治区', '百色市', '乐业县', '451028'); -INSERT INTO `cardcodes` VALUES (3690, '广西壮族自治区', '百色市', '田林县', '451029'); -INSERT INTO `cardcodes` VALUES (3691, '广西壮族自治区', '百色市', '西林县', '451030'); -INSERT INTO `cardcodes` VALUES (3692, '广西壮族自治区', '百色市', '隆林各族自治县', '451031'); -INSERT INTO `cardcodes` VALUES (3693, '广西壮族自治区', '贺州市', '市辖区', '451101'); -INSERT INTO `cardcodes` VALUES (3694, '广西壮族自治区', '贺州市', '八步区', '451102'); -INSERT INTO `cardcodes` VALUES (3695, '广西壮族自治区', '贺州市', '昭平县', '451121'); -INSERT INTO `cardcodes` VALUES (3696, '广西壮族自治区', '贺州市', '钟山县', '451122'); -INSERT INTO `cardcodes` VALUES (3697, '广西壮族自治区', '贺州市', '富川瑶族自治县', '451123'); -INSERT INTO `cardcodes` VALUES (3698, '广西壮族自治区', '河池市', '市辖区', '451201'); -INSERT INTO `cardcodes` VALUES (3699, '广西壮族自治区', '河池市', '金城江区', '451202'); -INSERT INTO `cardcodes` VALUES (3700, '广西壮族自治区', '河池市', '南丹县', '451221'); -INSERT INTO `cardcodes` VALUES (3701, '广西壮族自治区', '河池市', '天峨县', '451222'); -INSERT INTO `cardcodes` VALUES (3702, '广西壮族自治区', '河池市', '凤山县', '451223'); -INSERT INTO `cardcodes` VALUES (3703, '广西壮族自治区', '河池市', '东兰县', '451224'); -INSERT INTO `cardcodes` VALUES (3704, '广西壮族自治区', '河池市', '罗城仫佬族自治县', '451225'); -INSERT INTO `cardcodes` VALUES (3705, '广西壮族自治区', '河池市', '环江毛南族自治县', '451226'); -INSERT INTO `cardcodes` VALUES (3706, '广西壮族自治区', '河池市', '巴马瑶族自治县', '451227'); -INSERT INTO `cardcodes` VALUES (3707, '广西壮族自治区', '河池市', '都安瑶族自治县', '451228'); -INSERT INTO `cardcodes` VALUES (3708, '广西壮族自治区', '河池市', '大化瑶族自治县', '451229'); -INSERT INTO `cardcodes` VALUES (3709, '广西壮族自治区', '河池市', '宜州市', '451281'); -INSERT INTO `cardcodes` VALUES (3710, '广西壮族自治区', '来宾市', '市辖区', '451301'); -INSERT INTO `cardcodes` VALUES (3711, '广西壮族自治区', '来宾市', '兴宾区', '451302'); -INSERT INTO `cardcodes` VALUES (3712, '广西壮族自治区', '来宾市', '忻城县', '451321'); -INSERT INTO `cardcodes` VALUES (3713, '广西壮族自治区', '来宾市', '象州县', '451322'); -INSERT INTO `cardcodes` VALUES (3714, '广西壮族自治区', '来宾市', '武宣县', '451323'); -INSERT INTO `cardcodes` VALUES (3715, '广西壮族自治区', '来宾市', '金秀瑶族自治县', '451324'); -INSERT INTO `cardcodes` VALUES (3716, '广西壮族自治区', '来宾市', '合山市', '451381'); -INSERT INTO `cardcodes` VALUES (3717, '广西壮族自治区', '崇左市', '市辖区', '451401'); -INSERT INTO `cardcodes` VALUES (3718, '广西壮族自治区', '崇左市', '江洲区', '451402'); -INSERT INTO `cardcodes` VALUES (3719, '广西壮族自治区', '崇左市', '扶绥县', '451421'); -INSERT INTO `cardcodes` VALUES (3720, '广西壮族自治区', '崇左市', '宁明县', '451422'); -INSERT INTO `cardcodes` VALUES (3721, '广西壮族自治区', '崇左市', '龙州县', '451423'); -INSERT INTO `cardcodes` VALUES (3722, '广西壮族自治区', '崇左市', '大新县', '451424'); -INSERT INTO `cardcodes` VALUES (3723, '广西壮族自治区', '崇左市', '天等县', '451425'); -INSERT INTO `cardcodes` VALUES (3724, '广西壮族自治区', '崇左市', '凭祥市', '451481'); -INSERT INTO `cardcodes` VALUES (3725, '广西壮族自治区', '南宁地区', '凭祥市', '452101'); -INSERT INTO `cardcodes` VALUES (3726, '广西壮族自治区', '南宁地区', '横县', '452122'); -INSERT INTO `cardcodes` VALUES (3727, '广西壮族自治区', '南宁地区', '宾阳县', '452123'); -INSERT INTO `cardcodes` VALUES (3728, '广西壮族自治区', '南宁地区', '上林县', '452124'); -INSERT INTO `cardcodes` VALUES (3729, '广西壮族自治区', '南宁地区', '隆安县', '452126'); -INSERT INTO `cardcodes` VALUES (3730, '广西壮族自治区', '南宁地区', '马山县', '452127'); -INSERT INTO `cardcodes` VALUES (3731, '广西壮族自治区', '南宁地区', '扶绥县', '452128'); -INSERT INTO `cardcodes` VALUES (3732, '广西壮族自治区', '南宁地区', '崇左县', '452129'); -INSERT INTO `cardcodes` VALUES (3733, '广西壮族自治区', '南宁地区', '大新县', '452130'); -INSERT INTO `cardcodes` VALUES (3734, '广西壮族自治区', '南宁地区', '天等县', '452131'); -INSERT INTO `cardcodes` VALUES (3735, '广西壮族自治区', '南宁地区', '宁明县', '452132'); -INSERT INTO `cardcodes` VALUES (3736, '广西壮族自治区', '南宁地区', '龙州县', '452133'); -INSERT INTO `cardcodes` VALUES (3737, '广西壮族自治区', '柳州地区', '合山市', '452201'); -INSERT INTO `cardcodes` VALUES (3738, '广西壮族自治区', '柳州地区', '鹿寨县', '452223'); -INSERT INTO `cardcodes` VALUES (3739, '广西壮族自治区', '柳州地区', '象州县', '452224'); -INSERT INTO `cardcodes` VALUES (3740, '广西壮族自治区', '柳州地区', '武宣县', '452225'); -INSERT INTO `cardcodes` VALUES (3741, '广西壮族自治区', '柳州地区', '来宾县', '452226'); -INSERT INTO `cardcodes` VALUES (3742, '广西壮族自治区', '柳州地区', '融安县', '452227'); -INSERT INTO `cardcodes` VALUES (3743, '广西壮族自治区', '柳州地区', '三江侗族自治县', '452228'); -INSERT INTO `cardcodes` VALUES (3744, '广西壮族自治区', '柳州地区', '融水苗族自治县', '452229'); -INSERT INTO `cardcodes` VALUES (3745, '广西壮族自治区', '柳州地区', '金秀瑶族自治县', '452230'); -INSERT INTO `cardcodes` VALUES (3746, '广西壮族自治区', '柳州地区', '忻城县', '452231'); -INSERT INTO `cardcodes` VALUES (3747, '广西壮族自治区', '南宁市', '市辖区', '450101'); -INSERT INTO `cardcodes` VALUES (3748, '广西壮族自治区', '南宁市', '兴宁区', '450102'); -INSERT INTO `cardcodes` VALUES (3749, '广西壮族自治区', '南宁市', '青秀区', '450103'); -INSERT INTO `cardcodes` VALUES (3750, '广西壮族自治区', '南宁市', '城北区', '450104'); -INSERT INTO `cardcodes` VALUES (3751, '广西壮族自治区', '南宁市', '江南区', '450105'); -INSERT INTO `cardcodes` VALUES (3752, '广西壮族自治区', '南宁市', '永新区', '450106'); -INSERT INTO `cardcodes` VALUES (3753, '广西壮族自治区', '南宁市', '西乡塘区', '450107'); -INSERT INTO `cardcodes` VALUES (3754, '广西壮族自治区', '南宁市', '良庆区', '450108'); -INSERT INTO `cardcodes` VALUES (3755, '广西壮族自治区', '南宁市', '邕宁区', '450109'); -INSERT INTO `cardcodes` VALUES (3756, '广西壮族自治区', '南宁市', '郊区', '450111'); -INSERT INTO `cardcodes` VALUES (3757, '广西壮族自治区', '南宁市', '邕宁县', '450121'); -INSERT INTO `cardcodes` VALUES (3758, '广西壮族自治区', '南宁市', '武鸣县', '450122'); -INSERT INTO `cardcodes` VALUES (3759, '广西壮族自治区', '南宁市', '隆安县', '450123'); -INSERT INTO `cardcodes` VALUES (3760, '广西壮族自治区', '南宁市', '马山县', '450124'); -INSERT INTO `cardcodes` VALUES (3761, '广西壮族自治区', '南宁市', '上林县', '450125'); -INSERT INTO `cardcodes` VALUES (3762, '广西壮族自治区', '南宁市', '宾阳县', '450126'); -INSERT INTO `cardcodes` VALUES (3763, '广西壮族自治区', '南宁市', '横县', '450127'); -INSERT INTO `cardcodes` VALUES (3764, '广西壮族自治区', '柳州市', '市辖区', '450201'); -INSERT INTO `cardcodes` VALUES (3765, '广西壮族自治区', '柳州市', '城中区', '450202'); -INSERT INTO `cardcodes` VALUES (3766, '广西壮族自治区', '柳州市', '鱼峰区', '450203'); -INSERT INTO `cardcodes` VALUES (3767, '广西壮族自治区', '柳州市', '柳南区', '450204'); -INSERT INTO `cardcodes` VALUES (3768, '广西壮族自治区', '柳州市', '柳北区', '450205'); -INSERT INTO `cardcodes` VALUES (3769, '广西壮族自治区', '柳州市', '市郊区', '450211'); -INSERT INTO `cardcodes` VALUES (3770, '广西壮族自治区', '柳州市', '柳江县', '450221'); -INSERT INTO `cardcodes` VALUES (3771, '广西壮族自治区', '柳州市', '柳城县', '450222'); -INSERT INTO `cardcodes` VALUES (3772, '广西壮族自治区', '柳州市', '鹿寨县', '450223'); -INSERT INTO `cardcodes` VALUES (3773, '广西壮族自治区', '柳州市', '融安县', '450224'); -INSERT INTO `cardcodes` VALUES (3774, '广西壮族自治区', '柳州市', '融水苗族自治县', '450225'); -INSERT INTO `cardcodes` VALUES (3775, '广西壮族自治区', '柳州市', '三江侗族自治县', '450226'); -INSERT INTO `cardcodes` VALUES (3776, '广西壮族自治区', '桂林市', '市辖区', '450301'); -INSERT INTO `cardcodes` VALUES (3777, '广西壮族自治区', '桂林市', '秀峰区', '450302'); -INSERT INTO `cardcodes` VALUES (3778, '广西壮族自治区', '桂林市', '叠彩区', '450303'); -INSERT INTO `cardcodes` VALUES (3779, '广西壮族自治区', '桂林市', '象山区', '450304'); -INSERT INTO `cardcodes` VALUES (3780, '广西壮族自治区', '桂林市', '七星区', '450305'); -INSERT INTO `cardcodes` VALUES (3781, '广西壮族自治区', '桂林市', '雁山区', '450311'); -INSERT INTO `cardcodes` VALUES (3782, '广西壮族自治区', '桂林市', '阳朔县', '450321'); -INSERT INTO `cardcodes` VALUES (3783, '广西壮族自治区', '桂林市', '临桂县', '450322'); -INSERT INTO `cardcodes` VALUES (3784, '广西壮族自治区', '桂林市', '灵川县', '450323'); -INSERT INTO `cardcodes` VALUES (3785, '广西壮族自治区', '桂林市', '全州县', '450324'); -INSERT INTO `cardcodes` VALUES (3786, '广西壮族自治区', '桂林市', '兴安县', '450325'); -INSERT INTO `cardcodes` VALUES (3787, '广西壮族自治区', '桂林市', '永福县', '450326'); -INSERT INTO `cardcodes` VALUES (3788, '广西壮族自治区', '桂林市', '灌阳县', '450327'); -INSERT INTO `cardcodes` VALUES (3789, '广西壮族自治区', '桂林市', '龙胜各族自治县', '450328'); -INSERT INTO `cardcodes` VALUES (3790, '广西壮族自治区', '桂林市', '资源县', '450329'); -INSERT INTO `cardcodes` VALUES (3791, '广西壮族自治区', '桂林市', '平乐县', '450330'); -INSERT INTO `cardcodes` VALUES (3792, '广西壮族自治区', '桂林市', '荔蒲县', '450331'); -INSERT INTO `cardcodes` VALUES (3793, '广西壮族自治区', '桂林市', '恭城瑶族自治县', '450332'); -INSERT INTO `cardcodes` VALUES (3794, '广西壮族自治区', '梧州市', '市辖区', '450401'); -INSERT INTO `cardcodes` VALUES (3795, '广西壮族自治区', '梧州市', '白云区', '450402'); -INSERT INTO `cardcodes` VALUES (3796, '广西壮族自治区', '梧州市', '万秀区', '450403'); -INSERT INTO `cardcodes` VALUES (3797, '广西壮族自治区', '梧州市', '蝶山区', '450404'); -INSERT INTO `cardcodes` VALUES (3798, '广西壮族自治区', '梧州市', '长洲区', '450405'); -INSERT INTO `cardcodes` VALUES (3799, '广西壮族自治区', '梧州市', '市郊区', '450411'); -INSERT INTO `cardcodes` VALUES (3800, '广西壮族自治区', '梧州市', '苍梧县', '450421'); -INSERT INTO `cardcodes` VALUES (3801, '广西壮族自治区', '梧州市', '藤县', '450422'); -INSERT INTO `cardcodes` VALUES (3802, '广西壮族自治区', '梧州市', '蒙山县', '450423'); -INSERT INTO `cardcodes` VALUES (3803, '广西壮族自治区', '梧州市', '岑溪市', '450481'); -INSERT INTO `cardcodes` VALUES (3804, '广西壮族自治区', '北海市', '市辖区', '450501'); -INSERT INTO `cardcodes` VALUES (3805, '广西壮族自治区', '北海市', '海城区', '450502'); -INSERT INTO `cardcodes` VALUES (3806, '广西壮族自治区', '北海市', '银海区', '450503'); -INSERT INTO `cardcodes` VALUES (3807, '广西壮族自治区', '北海市', '铁山港区', '450512'); -INSERT INTO `cardcodes` VALUES (3808, '广西壮族自治区', '北海市', '合浦县', '450521'); -INSERT INTO `cardcodes` VALUES (3809, '广西壮族自治区', '防城港市', '市辖区', '450601'); -INSERT INTO `cardcodes` VALUES (3810, '广西壮族自治区', '防城港市', '港口区', '450602'); -INSERT INTO `cardcodes` VALUES (3811, '广西壮族自治区', '防城港市', '防城区', '450603'); -INSERT INTO `cardcodes` VALUES (3812, '广西壮族自治区', '防城港市', '上思县', '450621'); -INSERT INTO `cardcodes` VALUES (3813, '广西壮族自治区', '防城港市', '东兴市', '450681'); -INSERT INTO `cardcodes` VALUES (3814, '广西壮族自治区', '钦州市', '市辖区', '450701'); -INSERT INTO `cardcodes` VALUES (3815, '广西壮族自治区', '钦州市', '钦南区', '450702'); -INSERT INTO `cardcodes` VALUES (3816, '广西壮族自治区', '钦州市', '钦北区', '450703'); -INSERT INTO `cardcodes` VALUES (3817, '广西壮族自治区', '钦州市', '灵山县', '450721'); -INSERT INTO `cardcodes` VALUES (3818, '广西壮族自治区', '钦州市', '浦北县', '450722'); -INSERT INTO `cardcodes` VALUES (3819, '广西壮族自治区', '贵港市', '市辖区', '450801'); -INSERT INTO `cardcodes` VALUES (3820, '广西壮族自治区', '贵港市', '港北区', '450802'); -INSERT INTO `cardcodes` VALUES (3821, '广西壮族自治区', '贵港市', '港南区', '450803'); -INSERT INTO `cardcodes` VALUES (3822, '广西壮族自治区', '贵港市', '覃塘区', '450804'); -INSERT INTO `cardcodes` VALUES (3823, '广西壮族自治区', '贵港市', '平南县', '450821'); -INSERT INTO `cardcodes` VALUES (3824, '广西壮族自治区', '贵港市', '桂平市', '450881'); -INSERT INTO `cardcodes` VALUES (3825, '广西壮族自治区', '玉林市', '市辖区', '450901'); -INSERT INTO `cardcodes` VALUES (3826, '广西壮族自治区', '玉林市', '玉州区', '450902'); -INSERT INTO `cardcodes` VALUES (3827, '广西壮族自治区', '玉林市', '容县', '450921'); -INSERT INTO `cardcodes` VALUES (3828, '广西壮族自治区', '玉林市', '陆川县', '450922'); -INSERT INTO `cardcodes` VALUES (3829, '广西壮族自治区', '玉林市', '博白县', '450923'); -INSERT INTO `cardcodes` VALUES (3830, '广西壮族自治区', '玉林市', '兴业县', '450924'); -INSERT INTO `cardcodes` VALUES (3831, '广西壮族自治区', '玉林市', '北流市', '450981'); -INSERT INTO `cardcodes` VALUES (3832, '广西壮族自治区', '桂林地区', '临桂县', '452321'); -INSERT INTO `cardcodes` VALUES (3833, '广西壮族自治区', '桂林地区', '灵川县', '452322'); -INSERT INTO `cardcodes` VALUES (3834, '广西壮族自治区', '桂林地区', '全州县', '452323'); -INSERT INTO `cardcodes` VALUES (3835, '广西壮族自治区', '桂林地区', '兴安县', '452324'); -INSERT INTO `cardcodes` VALUES (3836, '广西壮族自治区', '桂林地区', '永福县', '452325'); -INSERT INTO `cardcodes` VALUES (3837, '广西壮族自治区', '桂林地区', '灌阳县', '452327'); -INSERT INTO `cardcodes` VALUES (3838, '广西壮族自治区', '桂林地区', '龙胜各族自治县', '452328'); -INSERT INTO `cardcodes` VALUES (3839, '广西壮族自治区', '桂林地区', '资源县', '452329'); -INSERT INTO `cardcodes` VALUES (3840, '广西壮族自治区', '桂林地区', '平乐县', '452330'); -INSERT INTO `cardcodes` VALUES (3841, '广西壮族自治区', '桂林地区', '荔蒲县', '452331'); -INSERT INTO `cardcodes` VALUES (3842, '广西壮族自治区', '桂林地区', '恭城瑶族自治县', '452332'); -INSERT INTO `cardcodes` VALUES (3843, '广西壮族自治区', '贺州地区', '岑溪市', '452401'); -INSERT INTO `cardcodes` VALUES (3844, '广西壮族自治区', '贺州地区', '贺州市', '452402'); -INSERT INTO `cardcodes` VALUES (3845, '广西壮族自治区', '贺州地区', '岑溪县', '452421'); -INSERT INTO `cardcodes` VALUES (3846, '广西壮族自治区', '贺州地区', '苍梧县', '452422'); -INSERT INTO `cardcodes` VALUES (3847, '广西壮族自治区', '贺州地区', '藤县', '452423'); -INSERT INTO `cardcodes` VALUES (3848, '广西壮族自治区', '贺州地区', '昭平县', '452424'); -INSERT INTO `cardcodes` VALUES (3849, '广西壮族自治区', '贺州地区', '蒙山县', '452425'); -INSERT INTO `cardcodes` VALUES (3850, '广西壮族自治区', '贺州地区', '贺县', '452426'); -INSERT INTO `cardcodes` VALUES (3851, '广西壮族自治区', '贺州地区', '钟山县', '452427'); -INSERT INTO `cardcodes` VALUES (3852, '广西壮族自治区', '贺州地区', '富川瑶族自治县', '452428'); -INSERT INTO `cardcodes` VALUES (3853, '广西壮族自治区', '玉林地区', '玉林市', '452501'); -INSERT INTO `cardcodes` VALUES (3854, '广西壮族自治区', '玉林地区', '贵港市', '452502'); -INSERT INTO `cardcodes` VALUES (3855, '广西壮族自治区', '玉林地区', '北流市', '452503'); -INSERT INTO `cardcodes` VALUES (3856, '广西壮族自治区', '玉林地区', '桂平市', '452504'); -INSERT INTO `cardcodes` VALUES (3857, '广西壮族自治区', '玉林地区', '玉林县', '452521'); -INSERT INTO `cardcodes` VALUES (3858, '广西壮族自治区', '玉林地区', '贵县', '452522'); -INSERT INTO `cardcodes` VALUES (3859, '广西壮族自治区', '玉林地区', '桂平县', '452523'); -INSERT INTO `cardcodes` VALUES (3860, '广西壮族自治区', '玉林地区', '平南县', '452524'); -INSERT INTO `cardcodes` VALUES (3861, '广西壮族自治区', '玉林地区', '容县', '452525'); -INSERT INTO `cardcodes` VALUES (3862, '广西壮族自治区', '玉林地区', '北流县', '452526'); -INSERT INTO `cardcodes` VALUES (3863, '广西壮族自治区', '玉林地区', '陆川县', '452527'); -INSERT INTO `cardcodes` VALUES (3864, '广西壮族自治区', '玉林地区', '博白县', '452528'); -INSERT INTO `cardcodes` VALUES (3865, '广西壮族自治区', '百色地区', '百色市', '452601'); -INSERT INTO `cardcodes` VALUES (3866, '广西壮族自治区', '百色地区', '百色县', '452621'); -INSERT INTO `cardcodes` VALUES (3867, '广西壮族自治区', '百色地区', '田阳县', '452622'); -INSERT INTO `cardcodes` VALUES (3868, '广西壮族自治区', '百色地区', '田东县', '452623'); -INSERT INTO `cardcodes` VALUES (3869, '广西壮族自治区', '百色地区', '平果县', '452624'); -INSERT INTO `cardcodes` VALUES (3870, '广西壮族自治区', '百色地区', '德保县', '452625'); -INSERT INTO `cardcodes` VALUES (3871, '广西壮族自治区', '百色地区', '靖西县', '452626'); -INSERT INTO `cardcodes` VALUES (3872, '广西壮族自治区', '百色地区', '那坡县', '452627'); -INSERT INTO `cardcodes` VALUES (3873, '广西壮族自治区', '百色地区', '凌云县', '452628'); -INSERT INTO `cardcodes` VALUES (3874, '广西壮族自治区', '百色地区', '乐业县', '452629'); -INSERT INTO `cardcodes` VALUES (3875, '广西壮族自治区', '百色地区', '田林县', '452630'); -INSERT INTO `cardcodes` VALUES (3876, '广西壮族自治区', '百色地区', '隆林各族自治县', '452631'); -INSERT INTO `cardcodes` VALUES (3877, '广西壮族自治区', '百色地区', '西林县', '452632'); -INSERT INTO `cardcodes` VALUES (3878, '广西壮族自治区', '河池地区', '河池市', '452701'); -INSERT INTO `cardcodes` VALUES (3879, '广西壮族自治区', '河池地区', '宜州市', '452702'); -INSERT INTO `cardcodes` VALUES (3880, '广西壮族自治区', '河池地区', '河池县', '452721'); -INSERT INTO `cardcodes` VALUES (3881, '广西壮族自治区', '河池地区', '宜山县', '452722'); -INSERT INTO `cardcodes` VALUES (3882, '广西壮族自治区', '河池地区', '罗城仫佬族自治县', '452723'); -INSERT INTO `cardcodes` VALUES (3883, '广西壮族自治区', '河池地区', '环江毛南族自治县', '452724'); -INSERT INTO `cardcodes` VALUES (3884, '广西壮族自治区', '河池地区', '南丹县', '452725'); -INSERT INTO `cardcodes` VALUES (3885, '广西壮族自治区', '河池地区', '天峨县', '452726'); -INSERT INTO `cardcodes` VALUES (3886, '广西壮族自治区', '河池地区', '凤山县', '452727'); -INSERT INTO `cardcodes` VALUES (3887, '广西壮族自治区', '河池地区', '东兰县', '452728'); -INSERT INTO `cardcodes` VALUES (3888, '广西壮族自治区', '河池地区', '巴马瑶族自治县', '452729'); -INSERT INTO `cardcodes` VALUES (3889, '广西壮族自治区', '河池地区', '都安瑶族自治县', '452730'); -INSERT INTO `cardcodes` VALUES (3890, '广西壮族自治区', '河池地区', '大化瑶族自治县', '452731'); -INSERT INTO `cardcodes` VALUES (3891, '广西壮族自治区', '钦州地区', '北海市', '452801'); -INSERT INTO `cardcodes` VALUES (3892, '广西壮族自治区', '钦州地区', '钦州市', '452802'); -INSERT INTO `cardcodes` VALUES (3893, '广西壮族自治区', '钦州地区', '上思县', '452821'); -INSERT INTO `cardcodes` VALUES (3894, '广西壮族自治区', '钦州地区', '防城各族自治县', '452822'); -INSERT INTO `cardcodes` VALUES (3895, '广西壮族自治区', '钦州地区', '钦州县', '452823'); -INSERT INTO `cardcodes` VALUES (3896, '广西壮族自治区', '钦州地区', '灵山县', '452824'); -INSERT INTO `cardcodes` VALUES (3897, '广西壮族自治区', '钦州地区', '合浦县', '452825'); -INSERT INTO `cardcodes` VALUES (3898, '广西壮族自治区', '钦州地区', '浦北县', '452826'); -INSERT INTO `cardcodes` VALUES (3899, '海南省', '海口市', '市辖区', '460101'); -INSERT INTO `cardcodes` VALUES (3900, '海南省', '海口市', '振东区', '460102'); -INSERT INTO `cardcodes` VALUES (3901, '海南省', '海口市', '新华区', '460103'); -INSERT INTO `cardcodes` VALUES (3902, '海南省', '海口市', '秀英区', '460104'); -INSERT INTO `cardcodes` VALUES (3903, '海南省', '海口市', '秀英区', '460105'); -INSERT INTO `cardcodes` VALUES (3904, '海南省', '海口市', '龙华区', '460106'); -INSERT INTO `cardcodes` VALUES (3905, '海南省', '海口市', '琼山区', '460107'); -INSERT INTO `cardcodes` VALUES (3906, '海南省', '海口市', '美兰区', '460108'); -INSERT INTO `cardcodes` VALUES (3907, '海南省', '三亚市', '市辖区', '460201'); -INSERT INTO `cardcodes` VALUES (3908, '海南省', NULL, '陵水黎族自治县', '469034'); -INSERT INTO `cardcodes` VALUES (3909, '海南省', NULL, '保亭黎族苗族自治县', '469035'); -INSERT INTO `cardcodes` VALUES (3910, '海南省', NULL, '琼中黎族苗族自治县', '469036'); -INSERT INTO `cardcodes` VALUES (3911, '海南省', NULL, '西沙群岛', '469037'); -INSERT INTO `cardcodes` VALUES (3912, '海南省', NULL, '南沙群岛', '469038'); -INSERT INTO `cardcodes` VALUES (3913, '海南省', NULL, '中沙群岛的岛礁及其海域', '469039'); -INSERT INTO `cardcodes` VALUES (3914, '海南省', NULL, '通什市', '460001'); -INSERT INTO `cardcodes` VALUES (3915, '海南省', NULL, '琼海市', '460002'); -INSERT INTO `cardcodes` VALUES (3916, '海南省', NULL, '儋州市', '460003'); -INSERT INTO `cardcodes` VALUES (3917, '海南省', NULL, '琼山市', '460004'); -INSERT INTO `cardcodes` VALUES (3918, '海南省', NULL, '文昌市', '460005'); -INSERT INTO `cardcodes` VALUES (3919, '海南省', NULL, '万宁市', '460006'); -INSERT INTO `cardcodes` VALUES (3920, '海南省', NULL, '东方市', '460007'); -INSERT INTO `cardcodes` VALUES (3921, '海南省', NULL, '琼山县', '460021'); -INSERT INTO `cardcodes` VALUES (3922, '海南省', NULL, '文昌县', '460022'); -INSERT INTO `cardcodes` VALUES (3923, '海南省', NULL, '琼海县', '460023'); -INSERT INTO `cardcodes` VALUES (3924, '海南省', NULL, '万宁县', '460024'); -INSERT INTO `cardcodes` VALUES (3925, '海南省', NULL, '定安县', '460025'); -INSERT INTO `cardcodes` VALUES (3926, '海南省', NULL, '屯昌县', '460026'); -INSERT INTO `cardcodes` VALUES (3927, '海南省', NULL, '澄迈县', '460027'); -INSERT INTO `cardcodes` VALUES (3928, '海南省', NULL, '临高县', '460028'); -INSERT INTO `cardcodes` VALUES (3929, '海南省', NULL, '儋县', '460029'); -INSERT INTO `cardcodes` VALUES (3930, '海南省', NULL, '白沙黎族自治县', '460030'); -INSERT INTO `cardcodes` VALUES (3931, '海南省', NULL, '昌江黎族自治县', '460031'); -INSERT INTO `cardcodes` VALUES (3932, '海南省', NULL, '东方黎族自治县', '460032'); -INSERT INTO `cardcodes` VALUES (3933, '海南省', NULL, '乐东黎族自治县', '460033'); -INSERT INTO `cardcodes` VALUES (3934, '海南省', NULL, '陵水黎族自治县', '460034'); -INSERT INTO `cardcodes` VALUES (3935, '海南省', NULL, '保亭黎族苗族自治县', '460035'); -INSERT INTO `cardcodes` VALUES (3936, '海南省', NULL, '琼中黎族苗族自治县', '460036'); -INSERT INTO `cardcodes` VALUES (3937, '海南省', NULL, '西沙群岛', '460037'); -INSERT INTO `cardcodes` VALUES (3938, '海南省', NULL, '南沙群岛', '460038'); -INSERT INTO `cardcodes` VALUES (3939, '海南省', NULL, '中沙群岛的岛礁及其海域', '460039'); -INSERT INTO `cardcodes` VALUES (3940, '海南省', NULL, '五指山市', '469001'); -INSERT INTO `cardcodes` VALUES (3941, '海南省', NULL, '琼海市', '469002'); -INSERT INTO `cardcodes` VALUES (3942, '海南省', NULL, '儋州市', '469003'); -INSERT INTO `cardcodes` VALUES (3943, '海南省', NULL, '文昌市', '469005'); -INSERT INTO `cardcodes` VALUES (3944, '海南省', NULL, '万宁市', '469006'); -INSERT INTO `cardcodes` VALUES (3945, '海南省', NULL, '东方市', '469007'); -INSERT INTO `cardcodes` VALUES (3946, '海南省', NULL, '定安县', '469025'); -INSERT INTO `cardcodes` VALUES (3947, '海南省', NULL, '屯昌县', '469026'); -INSERT INTO `cardcodes` VALUES (3948, '海南省', NULL, '澄迈县', '469027'); -INSERT INTO `cardcodes` VALUES (3949, '海南省', NULL, '临高县', '469028'); -INSERT INTO `cardcodes` VALUES (3950, '海南省', NULL, '白沙黎族自治县', '469030'); -INSERT INTO `cardcodes` VALUES (3951, '海南省', NULL, '昌江黎族自治县', '469031'); -INSERT INTO `cardcodes` VALUES (3952, '海南省', NULL, '乐东黎族自治县', '469033'); -INSERT INTO `cardcodes` VALUES (3953, '重庆市', '市', '江津市', '500381'); -INSERT INTO `cardcodes` VALUES (3954, '重庆市', '市', '合川市', '500382'); -INSERT INTO `cardcodes` VALUES (3955, '重庆市', '市', '永川市', '500383'); -INSERT INTO `cardcodes` VALUES (3956, '重庆市', '市', '南川市', '500384'); -INSERT INTO `cardcodes` VALUES (3957, '重庆市', NULL, '万州区', '500101'); -INSERT INTO `cardcodes` VALUES (3958, '重庆市', NULL, '涪陵区', '500102'); -INSERT INTO `cardcodes` VALUES (3959, '重庆市', NULL, '渝中区', '500103'); -INSERT INTO `cardcodes` VALUES (3960, '重庆市', NULL, '大渡口区', '500104'); -INSERT INTO `cardcodes` VALUES (3961, '重庆市', NULL, '江北区', '500105'); -INSERT INTO `cardcodes` VALUES (3962, '重庆市', NULL, '沙坪坝区', '500106'); -INSERT INTO `cardcodes` VALUES (3963, '重庆市', NULL, '九龙坡区', '500107'); -INSERT INTO `cardcodes` VALUES (3964, '重庆市', NULL, '南岸区', '500108'); -INSERT INTO `cardcodes` VALUES (3965, '重庆市', NULL, '北碚区', '500109'); -INSERT INTO `cardcodes` VALUES (3966, '重庆市', NULL, '万盛区', '500110'); -INSERT INTO `cardcodes` VALUES (3967, '重庆市', NULL, '双桥区', '500111'); -INSERT INTO `cardcodes` VALUES (3968, '重庆市', NULL, '渝北区', '500112'); -INSERT INTO `cardcodes` VALUES (3969, '重庆市', NULL, '巴南区', '500113'); -INSERT INTO `cardcodes` VALUES (3970, '重庆市', NULL, '黔江区', '500114'); -INSERT INTO `cardcodes` VALUES (3971, '重庆市', NULL, '长寿区', '500115'); -INSERT INTO `cardcodes` VALUES (3972, '重庆市', NULL, '渝中区', '500201'); -INSERT INTO `cardcodes` VALUES (3973, '重庆市', NULL, '江北区', '500211'); -INSERT INTO `cardcodes` VALUES (3974, '重庆市', NULL, '沙坪坝区', '500212'); -INSERT INTO `cardcodes` VALUES (3975, '重庆市', NULL, '九龙坡区', '500213'); -INSERT INTO `cardcodes` VALUES (3976, '重庆市', NULL, '南岸区', '500214'); -INSERT INTO `cardcodes` VALUES (3977, '重庆市', NULL, '北碚区', '500215'); -INSERT INTO `cardcodes` VALUES (3978, '重庆市', NULL, '万盛区', '500216'); -INSERT INTO `cardcodes` VALUES (3979, '重庆市', NULL, '双桥区', '500217'); -INSERT INTO `cardcodes` VALUES (3980, '重庆市', NULL, '长寿县', '500221'); -INSERT INTO `cardcodes` VALUES (3981, '重庆市', NULL, '綦江县', '500222'); -INSERT INTO `cardcodes` VALUES (3982, '重庆市', NULL, '潼南县', '500223'); -INSERT INTO `cardcodes` VALUES (3983, '重庆市', NULL, '铜梁县', '500224'); -INSERT INTO `cardcodes` VALUES (3984, '重庆市', NULL, '大足县', '500225'); -INSERT INTO `cardcodes` VALUES (3985, '重庆市', NULL, '荣昌县', '500226'); -INSERT INTO `cardcodes` VALUES (3986, '重庆市', NULL, '璧山县', '500227'); -INSERT INTO `cardcodes` VALUES (3987, '重庆市', NULL, '梁平县', '500228'); -INSERT INTO `cardcodes` VALUES (3988, '重庆市', NULL, '城口县', '500229'); -INSERT INTO `cardcodes` VALUES (3989, '重庆市', NULL, '丰都县', '500230'); -INSERT INTO `cardcodes` VALUES (3990, '重庆市', NULL, '垫江县', '500231'); -INSERT INTO `cardcodes` VALUES (3991, '重庆市', NULL, '武隆县', '500232'); -INSERT INTO `cardcodes` VALUES (3992, '重庆市', NULL, '忠县', '500233'); -INSERT INTO `cardcodes` VALUES (3993, '重庆市', NULL, '开县', '500234'); -INSERT INTO `cardcodes` VALUES (3994, '重庆市', NULL, '云阳县', '500235'); -INSERT INTO `cardcodes` VALUES (3995, '重庆市', NULL, '奉节县', '500236'); -INSERT INTO `cardcodes` VALUES (3996, '重庆市', NULL, '巫山县', '500237'); -INSERT INTO `cardcodes` VALUES (3997, '重庆市', NULL, '巫溪县', '500238'); -INSERT INTO `cardcodes` VALUES (3998, '重庆市', NULL, '黔江土家族苗族自治县', '500239'); -INSERT INTO `cardcodes` VALUES (3999, '重庆市', NULL, '石柱土家族自治县', '500240'); -INSERT INTO `cardcodes` VALUES (4000, '重庆市', NULL, '秀山土家族苗族自治县', '500241'); -INSERT INTO `cardcodes` VALUES (4001, '重庆市', NULL, '酉阳土家族苗族自治县', '500242'); -INSERT INTO `cardcodes` VALUES (4002, '重庆市', NULL, '彭水苗族土家族自治县', '500243'); -INSERT INTO `cardcodes` VALUES (4003, '四川省', '自贡市', '市辖区', '510301'); -INSERT INTO `cardcodes` VALUES (4004, '四川省', '自贡市', '自流井区', '510302'); -INSERT INTO `cardcodes` VALUES (4005, '四川省', '自贡市', '贡井区', '510303'); -INSERT INTO `cardcodes` VALUES (4006, '四川省', '自贡市', '大安区', '510304'); -INSERT INTO `cardcodes` VALUES (4007, '四川省', '自贡市', '沿滩区', '510311'); -INSERT INTO `cardcodes` VALUES (4008, '四川省', '自贡市', '荣县', '510321'); -INSERT INTO `cardcodes` VALUES (4009, '四川省', '自贡市', '富顺县', '510322'); -INSERT INTO `cardcodes` VALUES (4010, '四川省', '攀枝花市', '市辖区', '510401'); -INSERT INTO `cardcodes` VALUES (4011, '四川省', '攀枝花市', '东区', '510402'); -INSERT INTO `cardcodes` VALUES (4012, '四川省', '攀枝花市', '西区', '510403'); -INSERT INTO `cardcodes` VALUES (4013, '四川省', '攀枝花市', '仁和区', '510411'); -INSERT INTO `cardcodes` VALUES (4014, '四川省', '攀枝花市', '米易县', '510421'); -INSERT INTO `cardcodes` VALUES (4015, '四川省', '攀枝花市', '盐边县', '510422'); -INSERT INTO `cardcodes` VALUES (4016, '四川省', '泸州市', '市辖区', '510501'); -INSERT INTO `cardcodes` VALUES (4017, '四川省', '泸州市', '江阳区', '510502'); -INSERT INTO `cardcodes` VALUES (4018, '四川省', '泸州市', '纳溪区', '510503'); -INSERT INTO `cardcodes` VALUES (4019, '四川省', '泸州市', '龙马潭区', '510504'); -INSERT INTO `cardcodes` VALUES (4020, '四川省', '泸州市', '泸县', '510521'); -INSERT INTO `cardcodes` VALUES (4021, '四川省', '泸州市', '合江县', '510522'); -INSERT INTO `cardcodes` VALUES (4022, '四川省', '泸州市', '纳溪县', '510523'); -INSERT INTO `cardcodes` VALUES (4023, '四川省', '泸州市', '叙永县', '510524'); -INSERT INTO `cardcodes` VALUES (4024, '四川省', '泸州市', '古蔺县', '510525'); -INSERT INTO `cardcodes` VALUES (4025, '四川省', '德阳市', '市辖区', '510601'); -INSERT INTO `cardcodes` VALUES (4026, '四川省', '德阳市', '市中区', '510602'); -INSERT INTO `cardcodes` VALUES (4027, '四川省', '德阳市', '旌阳区', '510603'); -INSERT INTO `cardcodes` VALUES (4028, '四川省', '德阳市', '绵竹县', '510622'); -INSERT INTO `cardcodes` VALUES (4029, '四川省', '德阳市', '中江县', '510623'); -INSERT INTO `cardcodes` VALUES (4030, '四川省', '德阳市', '广汉县', '510624'); -INSERT INTO `cardcodes` VALUES (4031, '四川省', '德阳市', '什邡县', '510625'); -INSERT INTO `cardcodes` VALUES (4032, '四川省', '德阳市', '罗江县', '510626'); -INSERT INTO `cardcodes` VALUES (4033, '四川省', '德阳市', '广汉市', '510681'); -INSERT INTO `cardcodes` VALUES (4034, '四川省', '德阳市', '什邡市', '510682'); -INSERT INTO `cardcodes` VALUES (4035, '四川省', '德阳市', '绵竹市', '510683'); -INSERT INTO `cardcodes` VALUES (4036, '四川省', '绵阳市', '市辖区', '510701'); -INSERT INTO `cardcodes` VALUES (4037, '四川省', '绵阳市', '市中区', '510702'); -INSERT INTO `cardcodes` VALUES (4038, '四川省', '绵阳市', '涪城区', '510703'); -INSERT INTO `cardcodes` VALUES (4039, '四川省', '绵阳市', '游仙区', '510704'); -INSERT INTO `cardcodes` VALUES (4040, '四川省', '绵阳市', '江油县', '510721'); -INSERT INTO `cardcodes` VALUES (4041, '四川省', '绵阳市', '三台县', '510722'); -INSERT INTO `cardcodes` VALUES (4042, '四川省', '绵阳市', '盐亭县', '510723'); -INSERT INTO `cardcodes` VALUES (4043, '四川省', '绵阳市', '安县', '510724'); -INSERT INTO `cardcodes` VALUES (4044, '四川省', '绵阳市', '梓潼县', '510725'); -INSERT INTO `cardcodes` VALUES (4045, '四川省', '绵阳市', '北川县', '510726'); -INSERT INTO `cardcodes` VALUES (4046, '四川省', '绵阳市', '平武县', '510727'); -INSERT INTO `cardcodes` VALUES (4047, '四川省', '绵阳市', '江油市', '510781'); -INSERT INTO `cardcodes` VALUES (4048, '四川省', '广元市', '市辖区', '510801'); -INSERT INTO `cardcodes` VALUES (4049, '四川省', '广元市', '市中区', '510802'); -INSERT INTO `cardcodes` VALUES (4050, '四川省', '广元市', '元坝区', '510811'); -INSERT INTO `cardcodes` VALUES (4051, '四川省', '广元市', '朝天区', '510812'); -INSERT INTO `cardcodes` VALUES (4052, '四川省', '广元市', '旺苍县', '510821'); -INSERT INTO `cardcodes` VALUES (4053, '四川省', '广元市', '青川县', '510822'); -INSERT INTO `cardcodes` VALUES (4054, '四川省', '广元市', '剑阁县', '510823'); -INSERT INTO `cardcodes` VALUES (4055, '四川省', '广元市', '苍溪县', '510824'); -INSERT INTO `cardcodes` VALUES (4056, '四川省', '遂宁市', '市辖区', '510901'); -INSERT INTO `cardcodes` VALUES (4057, '四川省', '遂宁市', '市中区', '510902'); -INSERT INTO `cardcodes` VALUES (4058, '四川省', '遂宁市', '船山区', '510903'); -INSERT INTO `cardcodes` VALUES (4059, '四川省', '遂宁市', '安居区', '510904'); -INSERT INTO `cardcodes` VALUES (4060, '四川省', '遂宁市', '蓬溪县', '510921'); -INSERT INTO `cardcodes` VALUES (4061, '四川省', '遂宁市', '射洪县', '510922'); -INSERT INTO `cardcodes` VALUES (4062, '四川省', '遂宁市', '大英县', '510923'); -INSERT INTO `cardcodes` VALUES (4063, '四川省', '内江市', '市辖区', '511001'); -INSERT INTO `cardcodes` VALUES (4064, '四川省', '内江市', '市中区', '511002'); -INSERT INTO `cardcodes` VALUES (4065, '四川省', '内江市', '东兴区', '511011'); -INSERT INTO `cardcodes` VALUES (4066, '四川省', '内江市', '内江县', '511021'); -INSERT INTO `cardcodes` VALUES (4067, '四川省', '内江市', '乐至县', '511022'); -INSERT INTO `cardcodes` VALUES (4068, '四川省', '内江市', '安岳县', '511023'); -INSERT INTO `cardcodes` VALUES (4069, '四川省', '内江市', '威远县', '511024'); -INSERT INTO `cardcodes` VALUES (4070, '四川省', '内江市', '资中县', '511025'); -INSERT INTO `cardcodes` VALUES (4071, '四川省', '内江市', '资阳市', '511026'); -INSERT INTO `cardcodes` VALUES (4072, '四川省', '内江市', '简阳县', '511027'); -INSERT INTO `cardcodes` VALUES (4073, '四川省', '内江市', '隆昌县', '511028'); -INSERT INTO `cardcodes` VALUES (4074, '四川省', '内江市', '资阳市', '511081'); -INSERT INTO `cardcodes` VALUES (4075, '四川省', '万县地区', '奉节县', '512226'); -INSERT INTO `cardcodes` VALUES (4076, '四川省', '万县地区', '巫山县', '512227'); -INSERT INTO `cardcodes` VALUES (4077, '四川省', '万县地区', '巫溪县', '512228'); -INSERT INTO `cardcodes` VALUES (4078, '四川省', '万县地区', '城口县', '512229'); -INSERT INTO `cardcodes` VALUES (4079, '四川省', '万县地区', '万县市', '512201'); -INSERT INTO `cardcodes` VALUES (4080, '四川省', '万县地区', '万县', '512221'); -INSERT INTO `cardcodes` VALUES (4081, '四川省', '万县地区', '开县', '512222'); -INSERT INTO `cardcodes` VALUES (4082, '四川省', '万县地区', '忠县', '512223'); -INSERT INTO `cardcodes` VALUES (4083, '四川省', '万县地区', '梁平县', '512224'); -INSERT INTO `cardcodes` VALUES (4084, '四川省', '万县地区', '云阳县', '512225'); -INSERT INTO `cardcodes` VALUES (4085, '四川省', '涪陵地区', '涪陵市', '512301'); -INSERT INTO `cardcodes` VALUES (4086, '四川省', '涪陵地区', '南川市', '512302'); -INSERT INTO `cardcodes` VALUES (4087, '四川省', '涪陵地区', '涪陵县', '512321'); -INSERT INTO `cardcodes` VALUES (4088, '四川省', '涪陵地区', '垫江县', '512322'); -INSERT INTO `cardcodes` VALUES (4089, '四川省', '涪陵地区', '南川县', '512323'); -INSERT INTO `cardcodes` VALUES (4090, '四川省', '涪陵地区', '丰都县', '512324'); -INSERT INTO `cardcodes` VALUES (4091, '四川省', '涪陵地区', '石柱县', '512325'); -INSERT INTO `cardcodes` VALUES (4092, '四川省', '涪陵地区', '武隆县', '512326'); -INSERT INTO `cardcodes` VALUES (4093, '四川省', '涪陵地区', '彭水县', '512327'); -INSERT INTO `cardcodes` VALUES (4094, '四川省', '涪陵地区', '黔江县', '512328'); -INSERT INTO `cardcodes` VALUES (4095, '四川省', '涪陵地区', '酉阳县', '512329'); -INSERT INTO `cardcodes` VALUES (4096, '四川省', '涪陵地区', '秀山县', '512330'); -INSERT INTO `cardcodes` VALUES (4097, '四川省', '宜宾地区', '宜宾市', '512501'); -INSERT INTO `cardcodes` VALUES (4098, '四川省', '宜宾地区', '宜宾县', '512527'); -INSERT INTO `cardcodes` VALUES (4099, '四川省', '宜宾地区', '南溪县', '512528'); -INSERT INTO `cardcodes` VALUES (4100, '四川省', '宜宾地区', '江安县', '512529'); -INSERT INTO `cardcodes` VALUES (4101, '四川省', '宜宾地区', '长宁县', '512530'); -INSERT INTO `cardcodes` VALUES (4102, '四川省', '宜宾地区', '高县', '512531'); -INSERT INTO `cardcodes` VALUES (4103, '四川省', '宜宾地区', '筠连县', '512532'); -INSERT INTO `cardcodes` VALUES (4104, '四川省', '宜宾地区', '珙县', '512533'); -INSERT INTO `cardcodes` VALUES (4105, '四川省', '宜宾地区', '兴文县', '512534'); -INSERT INTO `cardcodes` VALUES (4106, '四川省', '宜宾地区', '屏山县', '512535'); -INSERT INTO `cardcodes` VALUES (4107, '四川省', '南充地区', '南充市', '512901'); -INSERT INTO `cardcodes` VALUES (4108, '四川省', '南充地区', '华蓥市', '512902'); -INSERT INTO `cardcodes` VALUES (4109, '四川省', '南充地区', '阆中市', '512903'); -INSERT INTO `cardcodes` VALUES (4110, '四川省', '南充地区', '南充县', '512921'); -INSERT INTO `cardcodes` VALUES (4111, '四川省', '南充地区', '南部县', '512922'); -INSERT INTO `cardcodes` VALUES (4112, '四川省', '南充地区', '岳池县', '512923'); -INSERT INTO `cardcodes` VALUES (4113, '四川省', '南充地区', '营山县', '512924'); -INSERT INTO `cardcodes` VALUES (4114, '四川省', '南充地区', '广安县', '512925'); -INSERT INTO `cardcodes` VALUES (4115, '四川省', '南充地区', '蓬安县', '512926'); -INSERT INTO `cardcodes` VALUES (4116, '四川省', '南充地区', '仪陇县', '512927'); -INSERT INTO `cardcodes` VALUES (4117, '四川省', '南充地区', '武胜县', '512928'); -INSERT INTO `cardcodes` VALUES (4118, '四川省', '南充地区', '西充县', '512929'); -INSERT INTO `cardcodes` VALUES (4119, '四川省', '南充地区', '阆中县', '512930'); -INSERT INTO `cardcodes` VALUES (4120, '四川省', '南充地区', '苍溪县', '512931'); -INSERT INTO `cardcodes` VALUES (4121, '四川省', '南充地区', '华云工农区', '512932'); -INSERT INTO `cardcodes` VALUES (4122, '四川省', '达川地区', '达川市', '513001'); -INSERT INTO `cardcodes` VALUES (4123, '四川省', '达川地区', '万源市', '513002'); -INSERT INTO `cardcodes` VALUES (4124, '四川省', '达川地区', '达县', '513021'); -INSERT INTO `cardcodes` VALUES (4125, '四川省', '达川地区', '宣汉县', '513022'); -INSERT INTO `cardcodes` VALUES (4126, '四川省', '达川地区', '开江县', '513023'); -INSERT INTO `cardcodes` VALUES (4127, '四川省', '达川地区', '万源县', '513024'); -INSERT INTO `cardcodes` VALUES (4128, '四川省', '达川地区', '通江县', '513025'); -INSERT INTO `cardcodes` VALUES (4129, '四川省', '达川地区', '南江县', '513026'); -INSERT INTO `cardcodes` VALUES (4130, '四川省', '达川地区', '巴中县', '513027'); -INSERT INTO `cardcodes` VALUES (4131, '四川省', '达川地区', '平昌县', '513028'); -INSERT INTO `cardcodes` VALUES (4132, '四川省', '达川地区', '大竹县', '513029'); -INSERT INTO `cardcodes` VALUES (4133, '四川省', '达川地区', '渠县', '513030'); -INSERT INTO `cardcodes` VALUES (4134, '四川省', '达川地区', '邻水县', '513031'); -INSERT INTO `cardcodes` VALUES (4135, '四川省', '达川地区', '白沙工农区', '513032'); -INSERT INTO `cardcodes` VALUES (4136, '四川省', '雅安地区', '雅安市', '513101'); -INSERT INTO `cardcodes` VALUES (4137, '四川省', '雅安地区', '名山县', '513122'); -INSERT INTO `cardcodes` VALUES (4138, '四川省', '雅安地区', '荥经县', '513123'); -INSERT INTO `cardcodes` VALUES (4139, '四川省', '雅安地区', '汉源县', '513124'); -INSERT INTO `cardcodes` VALUES (4140, '四川省', '雅安地区', '石棉县', '513125'); -INSERT INTO `cardcodes` VALUES (4141, '四川省', '雅安地区', '天全县', '513126'); -INSERT INTO `cardcodes` VALUES (4142, '四川省', '雅安地区', '芦山县', '513127'); -INSERT INTO `cardcodes` VALUES (4143, '四川省', '雅安地区', '宝兴县', '513128'); -INSERT INTO `cardcodes` VALUES (4144, '四川省', '阿坝藏族羌族自治州', '汶川县', '513221'); -INSERT INTO `cardcodes` VALUES (4145, '四川省', '阿坝藏族羌族自治州', '理县', '513222'); -INSERT INTO `cardcodes` VALUES (4146, '四川省', '阿坝藏族羌族自治州', '茂县', '513223'); -INSERT INTO `cardcodes` VALUES (4147, '四川省', '阿坝藏族羌族自治州', '松潘县', '513224'); -INSERT INTO `cardcodes` VALUES (4148, '四川省', '阿坝藏族羌族自治州', '九寨沟县', '513225'); -INSERT INTO `cardcodes` VALUES (4149, '四川省', '阿坝藏族羌族自治州', '金川县', '513226'); -INSERT INTO `cardcodes` VALUES (4150, '四川省', '阿坝藏族羌族自治州', '小金县', '513227'); -INSERT INTO `cardcodes` VALUES (4151, '四川省', '阿坝藏族羌族自治州', '黑水县', '513228'); -INSERT INTO `cardcodes` VALUES (4152, '四川省', '阿坝藏族羌族自治州', '马尔康县', '513229'); -INSERT INTO `cardcodes` VALUES (4153, '四川省', '阿坝藏族羌族自治州', '壤塘县', '513230'); -INSERT INTO `cardcodes` VALUES (4154, '四川省', '阿坝藏族羌族自治州', '阿坝县', '513231'); -INSERT INTO `cardcodes` VALUES (4155, '四川省', '阿坝藏族羌族自治州', '若尔盖县', '513232'); -INSERT INTO `cardcodes` VALUES (4156, '四川省', '阿坝藏族羌族自治州', '红原县', '513233'); -INSERT INTO `cardcodes` VALUES (4157, '四川省', '甘孜藏族自治州', '康定县', '513321'); -INSERT INTO `cardcodes` VALUES (4158, '四川省', '甘孜藏族自治州', '泸定县', '513322'); -INSERT INTO `cardcodes` VALUES (4159, '四川省', '甘孜藏族自治州', '丹巴县', '513323'); -INSERT INTO `cardcodes` VALUES (4160, '四川省', '甘孜藏族自治州', '九龙县', '513324'); -INSERT INTO `cardcodes` VALUES (4161, '四川省', '甘孜藏族自治州', '雅江县', '513325'); -INSERT INTO `cardcodes` VALUES (4162, '四川省', '甘孜藏族自治州', '道孚县', '513326'); -INSERT INTO `cardcodes` VALUES (4163, '四川省', '甘孜藏族自治州', '炉霍县', '513327'); -INSERT INTO `cardcodes` VALUES (4164, '四川省', '甘孜藏族自治州', '甘孜县', '513328'); -INSERT INTO `cardcodes` VALUES (4165, '四川省', '甘孜藏族自治州', '新龙县', '513329'); -INSERT INTO `cardcodes` VALUES (4166, '四川省', '甘孜藏族自治州', '德格县', '513330'); -INSERT INTO `cardcodes` VALUES (4167, '四川省', '甘孜藏族自治州', '白玉县', '513331'); -INSERT INTO `cardcodes` VALUES (4168, '四川省', '甘孜藏族自治州', '石渠县', '513332'); -INSERT INTO `cardcodes` VALUES (4169, '四川省', '甘孜藏族自治州', '色达县', '513333'); -INSERT INTO `cardcodes` VALUES (4170, '四川省', '甘孜藏族自治州', '理塘县', '513334'); -INSERT INTO `cardcodes` VALUES (4171, '四川省', '甘孜藏族自治州', '巴塘县', '513335'); -INSERT INTO `cardcodes` VALUES (4172, '四川省', '甘孜藏族自治州', '乡城县', '513336'); -INSERT INTO `cardcodes` VALUES (4173, '四川省', '甘孜藏族自治州', '稻城县', '513337'); -INSERT INTO `cardcodes` VALUES (4174, '四川省', '甘孜藏族自治州', '得荣县', '513338'); -INSERT INTO `cardcodes` VALUES (4175, '四川省', '凉山彝族自治州', '西昌市', '513401'); -INSERT INTO `cardcodes` VALUES (4176, '四川省', '凉山彝族自治州', '木里藏族自治县', '513422'); -INSERT INTO `cardcodes` VALUES (4177, '四川省', '凉山彝族自治州', '盐源县', '513423'); -INSERT INTO `cardcodes` VALUES (4178, '四川省', '凉山彝族自治州', '德昌县', '513424'); -INSERT INTO `cardcodes` VALUES (4179, '四川省', '凉山彝族自治州', '会理县', '513425'); -INSERT INTO `cardcodes` VALUES (4180, '四川省', '凉山彝族自治州', '会东县', '513426'); -INSERT INTO `cardcodes` VALUES (4181, '四川省', '凉山彝族自治州', '宁南县', '513427'); -INSERT INTO `cardcodes` VALUES (4182, '四川省', '凉山彝族自治州', '普格县', '513428'); -INSERT INTO `cardcodes` VALUES (4183, '四川省', '凉山彝族自治州', '布拖县', '513429'); -INSERT INTO `cardcodes` VALUES (4184, '四川省', '凉山彝族自治州', '金阳县', '513430'); -INSERT INTO `cardcodes` VALUES (4185, '四川省', '凉山彝族自治州', '昭觉县', '513431'); -INSERT INTO `cardcodes` VALUES (4186, '四川省', '凉山彝族自治州', '喜德县', '513432'); -INSERT INTO `cardcodes` VALUES (4187, '四川省', '凉山彝族自治州', '冕宁县', '513433'); -INSERT INTO `cardcodes` VALUES (4188, '四川省', '凉山彝族自治州', '越西县', '513434'); -INSERT INTO `cardcodes` VALUES (4189, '四川省', '凉山彝族自治州', '甘洛县', '513435'); -INSERT INTO `cardcodes` VALUES (4190, '四川省', '凉山彝族自治州', '美姑县', '513436'); -INSERT INTO `cardcodes` VALUES (4191, '四川省', '凉山彝族自治州', '雷波县', '513437'); -INSERT INTO `cardcodes` VALUES (4192, '四川省', '成都市', '市辖区', '510101'); -INSERT INTO `cardcodes` VALUES (4193, '四川省', '成都市', '东城区', '510102'); -INSERT INTO `cardcodes` VALUES (4194, '四川省', '成都市', '西城区', '510103'); -INSERT INTO `cardcodes` VALUES (4195, '四川省', '成都市', '锦江区', '510104'); -INSERT INTO `cardcodes` VALUES (4196, '四川省', '成都市', '青羊区', '510105'); -INSERT INTO `cardcodes` VALUES (4197, '四川省', '成都市', '金牛区', '510106'); -INSERT INTO `cardcodes` VALUES (4198, '四川省', '成都市', '武侯区', '510107'); -INSERT INTO `cardcodes` VALUES (4199, '四川省', '成都市', '成华区', '510108'); -INSERT INTO `cardcodes` VALUES (4200, '四川省', '成都市', '金牛区', '510111'); -INSERT INTO `cardcodes` VALUES (4201, '四川省', '成都市', '龙泉驿区', '510112'); -INSERT INTO `cardcodes` VALUES (4202, '四川省', '成都市', '青白江区', '510113'); -INSERT INTO `cardcodes` VALUES (4203, '四川省', '成都市', '新都区', '510114'); -INSERT INTO `cardcodes` VALUES (4204, '四川省', '成都市', '市区', '510120'); -INSERT INTO `cardcodes` VALUES (4205, '四川省', '成都市', '金堂县', '510121'); -INSERT INTO `cardcodes` VALUES (4206, '四川省', '成都市', '双流县', '510122'); -INSERT INTO `cardcodes` VALUES (4207, '四川省', '成都市', '温江县', '510123'); -INSERT INTO `cardcodes` VALUES (4208, '四川省', '成都市', '郫县', '510124'); -INSERT INTO `cardcodes` VALUES (4209, '四川省', '成都市', '新都县', '510125'); -INSERT INTO `cardcodes` VALUES (4210, '四川省', '成都市', '彭县', '510126'); -INSERT INTO `cardcodes` VALUES (4211, '四川省', '成都市', '灌县', '510127'); -INSERT INTO `cardcodes` VALUES (4212, '四川省', '成都市', '崇庆县', '510128'); -INSERT INTO `cardcodes` VALUES (4213, '四川省', '成都市', '大邑县', '510129'); -INSERT INTO `cardcodes` VALUES (4214, '四川省', '成都市', '邛崃县', '510130'); -INSERT INTO `cardcodes` VALUES (4215, '四川省', '成都市', '蒲江县', '510131'); -INSERT INTO `cardcodes` VALUES (4216, '四川省', '成都市', '新津县', '510132'); -INSERT INTO `cardcodes` VALUES (4217, '四川省', '成都市', '都江堰市', '510181'); -INSERT INTO `cardcodes` VALUES (4218, '四川省', '成都市', '彭州市', '510182'); -INSERT INTO `cardcodes` VALUES (4219, '四川省', '成都市', '邛崃市', '510183'); -INSERT INTO `cardcodes` VALUES (4220, '四川省', '成都市', '崇州市', '510184'); -INSERT INTO `cardcodes` VALUES (4221, '四川省', '重庆市', '市辖区', '510201'); -INSERT INTO `cardcodes` VALUES (4222, '四川省', '重庆市', '市中区', '510202'); -INSERT INTO `cardcodes` VALUES (4223, '四川省', '重庆市', '大渡口区', '510203'); -INSERT INTO `cardcodes` VALUES (4224, '四川省', '重庆市', '江北区', '510211'); -INSERT INTO `cardcodes` VALUES (4225, '四川省', '重庆市', '沙坪坝区', '510212'); -INSERT INTO `cardcodes` VALUES (4226, '四川省', '重庆市', '九龙坡区', '510213'); -INSERT INTO `cardcodes` VALUES (4227, '四川省', '重庆市', '南岸区', '510214'); -INSERT INTO `cardcodes` VALUES (4228, '四川省', '重庆市', '北碚区', '510215'); -INSERT INTO `cardcodes` VALUES (4229, '四川省', '重庆市', '万盛区', '510216'); -INSERT INTO `cardcodes` VALUES (4230, '四川省', '重庆市', '双桥区', '510217'); -INSERT INTO `cardcodes` VALUES (4231, '四川省', '重庆市', '渝北区', '510218'); -INSERT INTO `cardcodes` VALUES (4232, '四川省', '重庆市', '巴南区', '510219'); -INSERT INTO `cardcodes` VALUES (4233, '四川省', '重庆市', '市区', '510220'); -INSERT INTO `cardcodes` VALUES (4234, '四川省', '重庆市', '长寿县', '510221'); -INSERT INTO `cardcodes` VALUES (4235, '四川省', '重庆市', '巴县', '510222'); -INSERT INTO `cardcodes` VALUES (4236, '四川省', '重庆市', '綦江县', '510223'); -INSERT INTO `cardcodes` VALUES (4237, '四川省', '重庆市', '江北县', '510224'); -INSERT INTO `cardcodes` VALUES (4238, '四川省', '重庆市', '江津县', '510225'); -INSERT INTO `cardcodes` VALUES (4239, '四川省', '重庆市', '合川县', '510226'); -INSERT INTO `cardcodes` VALUES (4240, '四川省', '重庆市', '潼南县', '510227'); -INSERT INTO `cardcodes` VALUES (4241, '四川省', '重庆市', '铜梁县', '510228'); -INSERT INTO `cardcodes` VALUES (4242, '四川省', '重庆市', '永川县', '510229'); -INSERT INTO `cardcodes` VALUES (4243, '四川省', '重庆市', '大足县', '510230'); -INSERT INTO `cardcodes` VALUES (4244, '四川省', '重庆市', '北碚区', '510231'); -INSERT INTO `cardcodes` VALUES (4245, '四川省', '重庆市', '璧山县', '510232'); -INSERT INTO `cardcodes` VALUES (4246, '四川省', '重庆市', '永川市', '510281'); -INSERT INTO `cardcodes` VALUES (4247, '四川省', '重庆市', '江津市', '510282'); -INSERT INTO `cardcodes` VALUES (4248, '四川省', '重庆市', '合川市', '510283'); -INSERT INTO `cardcodes` VALUES (4249, '四川省', '乐山市', '市辖区', '511101'); -INSERT INTO `cardcodes` VALUES (4250, '四川省', '乐山市', '市中区', '511102'); -INSERT INTO `cardcodes` VALUES (4251, '四川省', '乐山市', '沙湾区', '511111'); -INSERT INTO `cardcodes` VALUES (4252, '四川省', '乐山市', '五通桥区', '511112'); -INSERT INTO `cardcodes` VALUES (4253, '四川省', '乐山市', '金口河区', '511113'); -INSERT INTO `cardcodes` VALUES (4254, '四川省', '乐山市', '仁寿县', '511121'); -INSERT INTO `cardcodes` VALUES (4255, '四川省', '乐山市', '眉山县', '511122'); -INSERT INTO `cardcodes` VALUES (4256, '四川省', '乐山市', '犍为县', '511123'); -INSERT INTO `cardcodes` VALUES (4257, '四川省', '乐山市', '井研县', '511124'); -INSERT INTO `cardcodes` VALUES (4258, '四川省', '乐山市', '峨眉县', '511125'); -INSERT INTO `cardcodes` VALUES (4259, '四川省', '乐山市', '夹江县', '511126'); -INSERT INTO `cardcodes` VALUES (4260, '四川省', '乐山市', '洪雅县', '511127'); -INSERT INTO `cardcodes` VALUES (4261, '四川省', '乐山市', '彭山县', '511128'); -INSERT INTO `cardcodes` VALUES (4262, '四川省', '乐山市', '沐川县', '511129'); -INSERT INTO `cardcodes` VALUES (4263, '四川省', '乐山市', '青神县', '511130'); -INSERT INTO `cardcodes` VALUES (4264, '四川省', '乐山市', '丹棱县', '511131'); -INSERT INTO `cardcodes` VALUES (4265, '四川省', '乐山市', '峨边彝族自治县', '511132'); -INSERT INTO `cardcodes` VALUES (4266, '四川省', '乐山市', '马边彝族自治县', '511133'); -INSERT INTO `cardcodes` VALUES (4267, '四川省', '乐山市', '峨眉山市', '511181'); -INSERT INTO `cardcodes` VALUES (4268, '四川省', '万县市', '市辖区', '511201'); -INSERT INTO `cardcodes` VALUES (4269, '四川省', '万县市', '龙宝区', '511202'); -INSERT INTO `cardcodes` VALUES (4270, '四川省', '万县市', '天成区', '511203'); -INSERT INTO `cardcodes` VALUES (4271, '四川省', '万县市', '五桥区', '511204'); -INSERT INTO `cardcodes` VALUES (4272, '四川省', '万县市', '开县', '511221'); -INSERT INTO `cardcodes` VALUES (4273, '四川省', '万县市', '忠县', '511222'); -INSERT INTO `cardcodes` VALUES (4274, '四川省', '万县市', '梁平县', '511223'); -INSERT INTO `cardcodes` VALUES (4275, '四川省', '万县市', '云阳县', '511224'); -INSERT INTO `cardcodes` VALUES (4276, '四川省', '万县市', '奉节县', '511225'); -INSERT INTO `cardcodes` VALUES (4277, '四川省', '万县市', '巫山县', '511226'); -INSERT INTO `cardcodes` VALUES (4278, '四川省', '万县市', '巫溪县', '511227'); -INSERT INTO `cardcodes` VALUES (4279, '四川省', '万县市', '城口县', '511228'); -INSERT INTO `cardcodes` VALUES (4280, '四川省', '南充市', '市辖区', '511301'); -INSERT INTO `cardcodes` VALUES (4281, '四川省', '南充市', '顺庆区', '511302'); -INSERT INTO `cardcodes` VALUES (4282, '四川省', '南充市', '高坪区', '511303'); -INSERT INTO `cardcodes` VALUES (4283, '四川省', '南充市', '嘉陵区', '511304'); -INSERT INTO `cardcodes` VALUES (4284, '四川省', '南充市', '南部县', '511321'); -INSERT INTO `cardcodes` VALUES (4285, '四川省', '南充市', '营山县', '511322'); -INSERT INTO `cardcodes` VALUES (4286, '四川省', '南充市', '蓬安县', '511323'); -INSERT INTO `cardcodes` VALUES (4287, '四川省', '南充市', '仪陇县', '511324'); -INSERT INTO `cardcodes` VALUES (4288, '四川省', '南充市', '西充县', '511325'); -INSERT INTO `cardcodes` VALUES (4289, '四川省', '南充市', '阆中市', '511381'); -INSERT INTO `cardcodes` VALUES (4290, '四川省', '眉山市', '市辖区', '511401'); -INSERT INTO `cardcodes` VALUES (4291, '四川省', '眉山市', '东坡区', '511402'); -INSERT INTO `cardcodes` VALUES (4292, '四川省', '眉山市', '仁寿县', '511421'); -INSERT INTO `cardcodes` VALUES (4293, '四川省', '眉山市', '彭山县', '511422'); -INSERT INTO `cardcodes` VALUES (4294, '四川省', '眉山市', '洪雅县', '511423'); -INSERT INTO `cardcodes` VALUES (4295, '四川省', '眉山市', '丹棱县', '511424'); -INSERT INTO `cardcodes` VALUES (4296, '四川省', '眉山市', '青神县', '511425'); -INSERT INTO `cardcodes` VALUES (4297, '四川省', '宜宾市', '市辖区', '511501'); -INSERT INTO `cardcodes` VALUES (4298, '四川省', '宜宾市', '翠屏区', '511502'); -INSERT INTO `cardcodes` VALUES (4299, '四川省', '宜宾市', '宜宾县', '511521'); -INSERT INTO `cardcodes` VALUES (4300, '四川省', '宜宾市', '南溪县', '511522'); -INSERT INTO `cardcodes` VALUES (4301, '四川省', '宜宾市', '江安县', '511523'); -INSERT INTO `cardcodes` VALUES (4302, '四川省', '宜宾市', '长宁县', '511524'); -INSERT INTO `cardcodes` VALUES (4303, '四川省', '宜宾市', '高县', '511525'); -INSERT INTO `cardcodes` VALUES (4304, '四川省', '宜宾市', '珙县', '511526'); -INSERT INTO `cardcodes` VALUES (4305, '四川省', '宜宾市', '筠连县', '511527'); -INSERT INTO `cardcodes` VALUES (4306, '四川省', '宜宾市', '兴文县', '511528'); -INSERT INTO `cardcodes` VALUES (4307, '四川省', '宜宾市', '屏山县', '511529'); -INSERT INTO `cardcodes` VALUES (4308, '四川省', '广安市', '市辖区', '511601'); -INSERT INTO `cardcodes` VALUES (4309, '四川省', '广安市', '广安区', '511602'); -INSERT INTO `cardcodes` VALUES (4310, '四川省', '广安市', '岳池县', '511621'); -INSERT INTO `cardcodes` VALUES (4311, '四川省', '广安市', '武胜县', '511622'); -INSERT INTO `cardcodes` VALUES (4312, '四川省', '广安市', '邻水县', '511623'); -INSERT INTO `cardcodes` VALUES (4313, '四川省', '广安市', '华蓥市', '511681'); -INSERT INTO `cardcodes` VALUES (4314, '四川省', '达州市', '市辖区', '511701'); -INSERT INTO `cardcodes` VALUES (4315, '四川省', '达州市', '通川区', '511702'); -INSERT INTO `cardcodes` VALUES (4316, '四川省', '达州市', '达县', '511721'); -INSERT INTO `cardcodes` VALUES (4317, '四川省', '达州市', '宣汉县', '511722'); -INSERT INTO `cardcodes` VALUES (4318, '四川省', '达州市', '开江县', '511723'); -INSERT INTO `cardcodes` VALUES (4319, '四川省', '达州市', '大竹县', '511724'); -INSERT INTO `cardcodes` VALUES (4320, '四川省', '达州市', '渠县', '511725'); -INSERT INTO `cardcodes` VALUES (4321, '四川省', '达州市', '万源市', '511781'); -INSERT INTO `cardcodes` VALUES (4322, '四川省', '雅安市', '市辖区', '511801'); -INSERT INTO `cardcodes` VALUES (4323, '四川省', '雅安市', '雨城区', '511802'); -INSERT INTO `cardcodes` VALUES (4324, '四川省', '雅安市', '名山县', '511821'); -INSERT INTO `cardcodes` VALUES (4325, '四川省', '雅安市', '荥经县', '511822'); -INSERT INTO `cardcodes` VALUES (4326, '四川省', '雅安市', '汉源县', '511823'); -INSERT INTO `cardcodes` VALUES (4327, '四川省', '雅安市', '石棉县', '511824'); -INSERT INTO `cardcodes` VALUES (4328, '四川省', '雅安市', '天全县', '511825'); -INSERT INTO `cardcodes` VALUES (4329, '四川省', '雅安市', '芦山县', '511826'); -INSERT INTO `cardcodes` VALUES (4330, '四川省', '雅安市', '宝兴县', '511827'); -INSERT INTO `cardcodes` VALUES (4331, '四川省', '巴中市', '市辖区', '511901'); -INSERT INTO `cardcodes` VALUES (4332, '四川省', '巴中市', '巴州区', '511902'); -INSERT INTO `cardcodes` VALUES (4333, '四川省', '巴中市', '通江县', '511921'); -INSERT INTO `cardcodes` VALUES (4334, '四川省', '巴中市', '南江县', '511922'); -INSERT INTO `cardcodes` VALUES (4335, '四川省', '巴中市', '平昌县', '511923'); -INSERT INTO `cardcodes` VALUES (4336, '四川省', '资阳市', '市辖区', '512001'); -INSERT INTO `cardcodes` VALUES (4337, '四川省', '资阳市', '雁江区', '512002'); -INSERT INTO `cardcodes` VALUES (4338, '四川省', '资阳市', '安岳县', '512021'); -INSERT INTO `cardcodes` VALUES (4339, '四川省', '资阳市', '乐至县', '512022'); -INSERT INTO `cardcodes` VALUES (4340, '四川省', '资阳市', '简阳市', '512081'); -INSERT INTO `cardcodes` VALUES (4341, '四川省', '黔江地区', '石柱土家族自治县', '513521'); -INSERT INTO `cardcodes` VALUES (4342, '四川省', '黔江地区', '秀山土家族苗族自治县', '513522'); -INSERT INTO `cardcodes` VALUES (4343, '四川省', '黔江地区', '黔江土家族苗族自治县', '513523'); -INSERT INTO `cardcodes` VALUES (4344, '四川省', '黔江地区', '酉阳土家族苗族自治县', '513524'); -INSERT INTO `cardcodes` VALUES (4345, '四川省', '广安市', '华蓥市', '513601'); -INSERT INTO `cardcodes` VALUES (4346, '四川省', '广安市', '岳池县', '513621'); -INSERT INTO `cardcodes` VALUES (4347, '四川省', '广安市', '广安县', '513622'); -INSERT INTO `cardcodes` VALUES (4348, '四川省', '广安市', '武胜县', '513623'); -INSERT INTO `cardcodes` VALUES (4349, '四川省', '广安市', '邻水县', '513624'); -INSERT INTO `cardcodes` VALUES (4350, '四川省', '巴中地区', '巴中市', '513701'); -INSERT INTO `cardcodes` VALUES (4351, '四川省', '巴中地区', '通江县', '513721'); -INSERT INTO `cardcodes` VALUES (4352, '四川省', '巴中地区', '南江县', '513722'); -INSERT INTO `cardcodes` VALUES (4353, '四川省', '巴中地区', '平昌县', '513723'); -INSERT INTO `cardcodes` VALUES (4354, '四川省', '眉山地区', '眉山县', '513821'); -INSERT INTO `cardcodes` VALUES (4355, '四川省', '眉山地区', '仁寿县', '513822'); -INSERT INTO `cardcodes` VALUES (4356, '四川省', '眉山地区', '彭山县', '513823'); -INSERT INTO `cardcodes` VALUES (4357, '四川省', '眉山地区', '洪雅县', '513824'); -INSERT INTO `cardcodes` VALUES (4358, '四川省', '眉山地区', '丹棱县', '513825'); -INSERT INTO `cardcodes` VALUES (4359, '四川省', '眉山地区', '青神县', '513826'); -INSERT INTO `cardcodes` VALUES (4360, '四川省', '资阳地区', '资阳市', '513901'); -INSERT INTO `cardcodes` VALUES (4361, '四川省', '资阳地区', '简阳市', '513902'); -INSERT INTO `cardcodes` VALUES (4362, '四川省', '资阳地区', '安岳县', '513921'); -INSERT INTO `cardcodes` VALUES (4363, '四川省', '资阳地区', '乐至县', '513922'); -INSERT INTO `cardcodes` VALUES (4364, '四川省', NULL, '广汉市', '519001'); -INSERT INTO `cardcodes` VALUES (4365, '四川省', NULL, '江油市', '519002'); -INSERT INTO `cardcodes` VALUES (4366, '四川省', NULL, '都江堰市', '519003'); -INSERT INTO `cardcodes` VALUES (4367, '四川省', NULL, '峨眉山市', '519004'); -INSERT INTO `cardcodes` VALUES (4368, '贵州省', '贵阳市', '市辖区', '520101'); -INSERT INTO `cardcodes` VALUES (4369, '贵州省', '贵阳市', '南明区', '520102'); -INSERT INTO `cardcodes` VALUES (4370, '贵州省', '贵阳市', '云岩区', '520103'); -INSERT INTO `cardcodes` VALUES (4371, '贵州省', '贵阳市', '花溪区', '520111'); -INSERT INTO `cardcodes` VALUES (4372, '贵州省', '贵阳市', '乌当区', '520112'); -INSERT INTO `cardcodes` VALUES (4373, '贵州省', '贵阳市', '白云区', '520113'); -INSERT INTO `cardcodes` VALUES (4374, '贵州省', '贵阳市', '小河区', '520114'); -INSERT INTO `cardcodes` VALUES (4375, '贵州省', '贵阳市', '开阳县', '520121'); -INSERT INTO `cardcodes` VALUES (4376, '贵州省', '贵阳市', '息烽县', '520122'); -INSERT INTO `cardcodes` VALUES (4377, '贵州省', '贵阳市', '修文县', '520123'); -INSERT INTO `cardcodes` VALUES (4378, '贵州省', '贵阳市', '清镇市', '520181'); -INSERT INTO `cardcodes` VALUES (4379, '贵州省', '六盘水市', '钟山区', '520201'); -INSERT INTO `cardcodes` VALUES (4380, '贵州省', '六盘水市', '盘县特区', '520202'); -INSERT INTO `cardcodes` VALUES (4381, '贵州省', '六盘水市', '六枝特区', '520203'); -INSERT INTO `cardcodes` VALUES (4382, '贵州省', '六盘水市', '水城县', '520221'); -INSERT INTO `cardcodes` VALUES (4383, '贵州省', '六盘水市', '盘县', '520222'); -INSERT INTO `cardcodes` VALUES (4384, '贵州省', '遵义市', '市辖区', '520301'); -INSERT INTO `cardcodes` VALUES (4385, '贵州省', '遵义市', '红花岗区', '520302'); -INSERT INTO `cardcodes` VALUES (4386, '贵州省', '遵义市', '汇川区', '520303'); -INSERT INTO `cardcodes` VALUES (4387, '贵州省', '遵义市', '遵义县', '520321'); -INSERT INTO `cardcodes` VALUES (4388, '贵州省', '遵义市', '桐梓县', '520322'); -INSERT INTO `cardcodes` VALUES (4389, '贵州省', '遵义市', '绥阳县', '520323'); -INSERT INTO `cardcodes` VALUES (4390, '贵州省', '遵义市', '正安县', '520324'); -INSERT INTO `cardcodes` VALUES (4391, '贵州省', '遵义市', '道真仡佬族苗族自治县', '520325'); -INSERT INTO `cardcodes` VALUES (4392, '贵州省', '遵义市', '务川仡佬族苗族自治县', '520326'); -INSERT INTO `cardcodes` VALUES (4393, '贵州省', '遵义市', '凤冈县', '520327'); -INSERT INTO `cardcodes` VALUES (4394, '贵州省', '遵义市', '湄潭县', '520328'); -INSERT INTO `cardcodes` VALUES (4395, '贵州省', '遵义市', '余庆县', '520329'); -INSERT INTO `cardcodes` VALUES (4396, '贵州省', '遵义市', '习水县', '520330'); -INSERT INTO `cardcodes` VALUES (4397, '贵州省', '遵义市', '赤水市', '520381'); -INSERT INTO `cardcodes` VALUES (4398, '贵州省', '遵义市', '仁怀市', '520382'); -INSERT INTO `cardcodes` VALUES (4399, '贵州省', '安顺市', '市辖区', '520401'); -INSERT INTO `cardcodes` VALUES (4400, '贵州省', '安顺市', '西秀区', '520402'); -INSERT INTO `cardcodes` VALUES (4401, '贵州省', '安顺市', '平坝县', '520421'); -INSERT INTO `cardcodes` VALUES (4402, '贵州省', '安顺市', '普定县', '520422'); -INSERT INTO `cardcodes` VALUES (4403, '贵州省', '安顺市', '镇宁布依族苗族自治县', '520423'); -INSERT INTO `cardcodes` VALUES (4404, '贵州省', '安顺市', '关岭布依族苗族自治县', '520424'); -INSERT INTO `cardcodes` VALUES (4405, '贵州省', '安顺市', '紫云苗族布依族自治县', '520425'); -INSERT INTO `cardcodes` VALUES (4406, '贵州省', '遵义地区', '遵义市', '522101'); -INSERT INTO `cardcodes` VALUES (4407, '贵州省', '遵义地区', '赤水市', '522102'); -INSERT INTO `cardcodes` VALUES (4408, '贵州省', '遵义地区', '仁怀市', '522103'); -INSERT INTO `cardcodes` VALUES (4409, '贵州省', '遵义地区', '遵义县', '522121'); -INSERT INTO `cardcodes` VALUES (4410, '贵州省', '遵义地区', '桐梓县', '522122'); -INSERT INTO `cardcodes` VALUES (4411, '贵州省', '遵义地区', '绥阳县', '522123'); -INSERT INTO `cardcodes` VALUES (4412, '贵州省', '遵义地区', '正安县', '522124'); -INSERT INTO `cardcodes` VALUES (4413, '贵州省', '遵义地区', '道真仡佬族苗族自治县', '522125'); -INSERT INTO `cardcodes` VALUES (4414, '贵州省', '遵义地区', '务川仡佬族苗族自治县', '522126'); -INSERT INTO `cardcodes` VALUES (4415, '贵州省', '遵义地区', '凤冈县', '522127'); -INSERT INTO `cardcodes` VALUES (4416, '贵州省', '遵义地区', '湄潭县', '522128'); -INSERT INTO `cardcodes` VALUES (4417, '贵州省', '遵义地区', '余庆县', '522129'); -INSERT INTO `cardcodes` VALUES (4418, '贵州省', '遵义地区', '仁怀县', '522130'); -INSERT INTO `cardcodes` VALUES (4419, '贵州省', '遵义地区', '赤水县', '522131'); -INSERT INTO `cardcodes` VALUES (4420, '贵州省', '遵义地区', '习水县', '522132'); -INSERT INTO `cardcodes` VALUES (4421, '贵州省', '铜仁地区', '铜仁市', '522201'); -INSERT INTO `cardcodes` VALUES (4422, '贵州省', '铜仁地区', '铜仁县', '522221'); -INSERT INTO `cardcodes` VALUES (4423, '贵州省', '铜仁地区', '江口县', '522222'); -INSERT INTO `cardcodes` VALUES (4424, '贵州省', '铜仁地区', '玉屏侗族自治县', '522223'); -INSERT INTO `cardcodes` VALUES (4425, '贵州省', '铜仁地区', '石阡县', '522224'); -INSERT INTO `cardcodes` VALUES (4426, '贵州省', '铜仁地区', '思南县', '522225'); -INSERT INTO `cardcodes` VALUES (4427, '贵州省', '铜仁地区', '印江土家族苗族自治县', '522226'); -INSERT INTO `cardcodes` VALUES (4428, '贵州省', '铜仁地区', '德江县', '522227'); -INSERT INTO `cardcodes` VALUES (4429, '贵州省', '铜仁地区', '沿河土家族自治县', '522228'); -INSERT INTO `cardcodes` VALUES (4430, '贵州省', '铜仁地区', '松桃苗族自治县', '522229'); -INSERT INTO `cardcodes` VALUES (4431, '贵州省', '铜仁地区', '万山特区', '522230'); -INSERT INTO `cardcodes` VALUES (4432, '贵州省', '黔西南布依族苗族自治州', '兴义市', '522301'); -INSERT INTO `cardcodes` VALUES (4433, '贵州省', '黔西南布依族苗族自治州', '赤壁市', '522302'); -INSERT INTO `cardcodes` VALUES (4434, '贵州省', '黔西南布依族苗族自治州', '兴义县', '522321'); -INSERT INTO `cardcodes` VALUES (4435, '贵州省', '黔西南布依族苗族自治州', '兴仁县', '522322'); -INSERT INTO `cardcodes` VALUES (4436, '贵州省', '黔西南布依族苗族自治州', '普安县', '522323'); -INSERT INTO `cardcodes` VALUES (4437, '贵州省', '黔西南布依族苗族自治州', '晴隆县', '522324'); -INSERT INTO `cardcodes` VALUES (4438, '贵州省', '黔西南布依族苗族自治州', '贞丰县', '522325'); -INSERT INTO `cardcodes` VALUES (4439, '贵州省', '黔西南布依族苗族自治州', '望谟县', '522326'); -INSERT INTO `cardcodes` VALUES (4440, '贵州省', '黔西南布依族苗族自治州', '册亨县', '522327'); -INSERT INTO `cardcodes` VALUES (4441, '贵州省', '黔西南布依族苗族自治州', '安龙县', '522328'); -INSERT INTO `cardcodes` VALUES (4442, '贵州省', '毕节地区', '毕节市', '522401'); -INSERT INTO `cardcodes` VALUES (4443, '贵州省', '毕节地区', '毕节县', '522421'); -INSERT INTO `cardcodes` VALUES (4444, '贵州省', '毕节地区', '大方县', '522422'); -INSERT INTO `cardcodes` VALUES (4445, '贵州省', '毕节地区', '黔西县', '522423'); -INSERT INTO `cardcodes` VALUES (4446, '贵州省', '毕节地区', '金沙县', '522424'); -INSERT INTO `cardcodes` VALUES (4447, '贵州省', '毕节地区', '织金县', '522425'); -INSERT INTO `cardcodes` VALUES (4448, '贵州省', '毕节地区', '纳雍县', '522426'); -INSERT INTO `cardcodes` VALUES (4449, '贵州省', '毕节地区', '威宁彝族回族苗族自治县', '522427'); -INSERT INTO `cardcodes` VALUES (4450, '贵州省', '毕节地区', '赫章县', '522428'); -INSERT INTO `cardcodes` VALUES (4451, '贵州省', '安顺地区', '安顺市', '522501'); -INSERT INTO `cardcodes` VALUES (4452, '贵州省', '安顺地区', '清镇市', '522502'); -INSERT INTO `cardcodes` VALUES (4453, '贵州省', '安顺地区', '安顺县', '522521'); -INSERT INTO `cardcodes` VALUES (4454, '贵州省', '安顺地区', '开阳县', '522522'); -INSERT INTO `cardcodes` VALUES (4455, '贵州省', '安顺地区', '息烽县', '522523'); -INSERT INTO `cardcodes` VALUES (4456, '贵州省', '安顺地区', '修文县', '522524'); -INSERT INTO `cardcodes` VALUES (4457, '贵州省', '安顺地区', '清镇县', '522525'); -INSERT INTO `cardcodes` VALUES (4458, '贵州省', '安顺地区', '平坝县', '522526'); -INSERT INTO `cardcodes` VALUES (4459, '贵州省', '安顺地区', '普定县', '522527'); -INSERT INTO `cardcodes` VALUES (4460, '贵州省', '安顺地区', '关岭布依族苗族自治县', '522528'); -INSERT INTO `cardcodes` VALUES (4461, '贵州省', '安顺地区', '镇宁布依族苗族自治县', '522529'); -INSERT INTO `cardcodes` VALUES (4462, '贵州省', '安顺地区', '紫云苗族布依族自治县', '522530'); -INSERT INTO `cardcodes` VALUES (4463, '贵州省', '黔东南苗族侗族自治州', '凯里市', '522601'); -INSERT INTO `cardcodes` VALUES (4464, '贵州省', '黔东南苗族侗族自治州', '黄平县', '522622'); -INSERT INTO `cardcodes` VALUES (4465, '贵州省', '黔东南苗族侗族自治州', '施秉县', '522623'); -INSERT INTO `cardcodes` VALUES (4466, '贵州省', '黔东南苗族侗族自治州', '三穗县', '522624'); -INSERT INTO `cardcodes` VALUES (4467, '贵州省', '黔东南苗族侗族自治州', '镇远县', '522625'); -INSERT INTO `cardcodes` VALUES (4468, '贵州省', '黔东南苗族侗族自治州', '岑巩县', '522626'); -INSERT INTO `cardcodes` VALUES (4469, '贵州省', '黔东南苗族侗族自治州', '天柱县', '522627'); -INSERT INTO `cardcodes` VALUES (4470, '贵州省', '黔东南苗族侗族自治州', '锦屏县', '522628'); -INSERT INTO `cardcodes` VALUES (4471, '贵州省', '黔东南苗族侗族自治州', '剑河县', '522629'); -INSERT INTO `cardcodes` VALUES (4472, '贵州省', '黔东南苗族侗族自治州', '台江县', '522630'); -INSERT INTO `cardcodes` VALUES (4473, '贵州省', '黔东南苗族侗族自治州', '黎平县', '522631'); -INSERT INTO `cardcodes` VALUES (4474, '贵州省', '黔东南苗族侗族自治州', '榕江县', '522632'); -INSERT INTO `cardcodes` VALUES (4475, '贵州省', '黔东南苗族侗族自治州', '从江县', '522633'); -INSERT INTO `cardcodes` VALUES (4476, '贵州省', '黔东南苗族侗族自治州', '雷山县', '522634'); -INSERT INTO `cardcodes` VALUES (4477, '贵州省', '黔东南苗族侗族自治州', '麻江县', '522635'); -INSERT INTO `cardcodes` VALUES (4478, '贵州省', '黔东南苗族侗族自治州', '丹寨县', '522636'); -INSERT INTO `cardcodes` VALUES (4479, '贵州省', '黔南布依族苗族自治州', '都匀市', '522701'); -INSERT INTO `cardcodes` VALUES (4480, '贵州省', '黔南布依族苗族自治州', '福泉市', '522702'); -INSERT INTO `cardcodes` VALUES (4481, '贵州省', '黔南布依族苗族自治州', '荔波县', '522722'); -INSERT INTO `cardcodes` VALUES (4482, '贵州省', '黔南布依族苗族自治州', '贵定县', '522723'); -INSERT INTO `cardcodes` VALUES (4483, '贵州省', '黔南布依族苗族自治州', '福泉县', '522724'); -INSERT INTO `cardcodes` VALUES (4484, '贵州省', '黔南布依族苗族自治州', '瓮安县', '522725'); -INSERT INTO `cardcodes` VALUES (4485, '贵州省', '黔南布依族苗族自治州', '独山县', '522726'); -INSERT INTO `cardcodes` VALUES (1, '北京市', NULL, '东城区', '110101'); -INSERT INTO `cardcodes` VALUES (2, '北京市', NULL, '西城区', '110102'); -INSERT INTO `cardcodes` VALUES (3, '北京市', NULL, '崇文区', '110103'); -INSERT INTO `cardcodes` VALUES (4, '北京市', NULL, '宣武区', '110104'); -INSERT INTO `cardcodes` VALUES (5, '北京市', NULL, '朝阳区', '110105'); -INSERT INTO `cardcodes` VALUES (6, '北京市', NULL, '丰台区', '110106'); -INSERT INTO `cardcodes` VALUES (7, '北京市', NULL, '石景山区', '110107'); -INSERT INTO `cardcodes` VALUES (8, '北京市', NULL, '海淀区', '110108'); -INSERT INTO `cardcodes` VALUES (9, '北京市', NULL, '门头沟区', '110109'); -INSERT INTO `cardcodes` VALUES (10, '北京市', NULL, '燕山区', '110110'); -INSERT INTO `cardcodes` VALUES (11, '北京市', NULL, '房山区', '110111'); -INSERT INTO `cardcodes` VALUES (12, '北京市', NULL, '通州区', '110112'); -INSERT INTO `cardcodes` VALUES (13, '北京市', NULL, '顺义区', '110113'); -INSERT INTO `cardcodes` VALUES (14, '北京市', NULL, '昌平区', '110114'); -INSERT INTO `cardcodes` VALUES (15, '北京市', NULL, '大兴区', '110115'); -INSERT INTO `cardcodes` VALUES (16, '北京市', NULL, '怀柔区', '110116'); -INSERT INTO `cardcodes` VALUES (17, '北京市', NULL, '平谷区', '110117'); -INSERT INTO `cardcodes` VALUES (18, '北京市', NULL, '昌平县', '110221'); -INSERT INTO `cardcodes` VALUES (19, '北京市', NULL, '顺义县', '110222'); -INSERT INTO `cardcodes` VALUES (20, '北京市', NULL, '通县', '110223'); -INSERT INTO `cardcodes` VALUES (21, '北京市', NULL, '大兴县', '110224'); -INSERT INTO `cardcodes` VALUES (22, '北京市', NULL, '房山县', '110225'); -INSERT INTO `cardcodes` VALUES (23, '北京市', NULL, '平谷县', '110226'); -INSERT INTO `cardcodes` VALUES (24, '北京市', NULL, '怀柔县', '110227'); -INSERT INTO `cardcodes` VALUES (25, '北京市', NULL, '密云县', '110228'); -INSERT INTO `cardcodes` VALUES (26, '北京市', NULL, '延庆县', '110229'); -INSERT INTO `cardcodes` VALUES (27, '天津市', NULL, '和平区', '120101'); -INSERT INTO `cardcodes` VALUES (28, '天津市', NULL, '河东区', '120102'); -INSERT INTO `cardcodes` VALUES (29, '天津市', NULL, '河西区', '120103'); -INSERT INTO `cardcodes` VALUES (30, '天津市', NULL, '南开区', '120104'); -INSERT INTO `cardcodes` VALUES (31, '天津市', NULL, '河北区', '120105'); -INSERT INTO `cardcodes` VALUES (32, '天津市', NULL, '红桥区', '120106'); -INSERT INTO `cardcodes` VALUES (33, '天津市', NULL, '塘沽区', '120107'); -INSERT INTO `cardcodes` VALUES (34, '天津市', NULL, '汉沽区', '120108'); -INSERT INTO `cardcodes` VALUES (35, '天津市', NULL, '大港区', '120109'); -INSERT INTO `cardcodes` VALUES (36, '天津市', NULL, '东丽区', '120110'); -INSERT INTO `cardcodes` VALUES (37, '天津市', NULL, '西青区', '120111'); -INSERT INTO `cardcodes` VALUES (38, '天津市', NULL, '津南区', '120112'); -INSERT INTO `cardcodes` VALUES (39, '天津市', NULL, '北辰区', '120113'); -INSERT INTO `cardcodes` VALUES (40, '天津市', NULL, '武清区', '120114'); -INSERT INTO `cardcodes` VALUES (41, '天津市', NULL, '宝坻区', '120115'); -INSERT INTO `cardcodes` VALUES (42, '天津市', NULL, '宁河县', '120221'); -INSERT INTO `cardcodes` VALUES (43, '天津市', NULL, '武清县', '120222'); -INSERT INTO `cardcodes` VALUES (44, '天津市', NULL, '静海县', '120223'); -INSERT INTO `cardcodes` VALUES (45, '天津市', NULL, '宝坻县', '120224'); -INSERT INTO `cardcodes` VALUES (46, '天津市', NULL, '蓟县', '120225'); -INSERT INTO `cardcodes` VALUES (47, '河北省', '石家庄市', '市辖区', '130101'); -INSERT INTO `cardcodes` VALUES (48, '河北省', '石家庄市', '长安区', '130102'); -INSERT INTO `cardcodes` VALUES (49, '河北省', '石家庄市', '桥东区', '130103'); -INSERT INTO `cardcodes` VALUES (50, '河北省', '石家庄市', '桥西区', '130104'); -INSERT INTO `cardcodes` VALUES (51, '河北省', '石家庄市', '新华区', '130105'); -INSERT INTO `cardcodes` VALUES (52, '河北省', '石家庄市', '郊区', '130106'); -INSERT INTO `cardcodes` VALUES (53, '河北省', '石家庄市', '井陉矿区', '130107'); -INSERT INTO `cardcodes` VALUES (54, '河北省', '石家庄市', '裕华区', '130108'); -INSERT INTO `cardcodes` VALUES (55, '河北省', '石家庄市', '井陉县', '130121'); -INSERT INTO `cardcodes` VALUES (56, '河北省', '石家庄市', '获鹿县', '130122'); -INSERT INTO `cardcodes` VALUES (57, '河北省', '石家庄市', '正定县', '130123'); -INSERT INTO `cardcodes` VALUES (58, '河北省', '石家庄市', '栾城县', '130124'); -INSERT INTO `cardcodes` VALUES (59, '河北省', '石家庄市', '行唐县', '130125'); -INSERT INTO `cardcodes` VALUES (60, '河北省', '石家庄市', '灵寿县', '130126'); -INSERT INTO `cardcodes` VALUES (61, '河北省', '石家庄市', '高邑县', '130127'); -INSERT INTO `cardcodes` VALUES (62, '河北省', '石家庄市', '深泽县', '130128'); -INSERT INTO `cardcodes` VALUES (63, '河北省', '石家庄市', '赞皇县', '130129'); -INSERT INTO `cardcodes` VALUES (64, '河北省', '石家庄市', '无极县', '130130'); -INSERT INTO `cardcodes` VALUES (65, '河北省', '石家庄市', '平山县', '130131'); -INSERT INTO `cardcodes` VALUES (66, '河北省', '石家庄市', '元氏县', '130132'); -INSERT INTO `cardcodes` VALUES (67, '河北省', '石家庄市', '赵县', '130133'); -INSERT INTO `cardcodes` VALUES (68, '河北省', '石家庄市', '辛集市', '130181'); -INSERT INTO `cardcodes` VALUES (69, '河北省', '石家庄市', '藁城市', '130182'); -INSERT INTO `cardcodes` VALUES (70, '河北省', '石家庄市', '晋州市', '130183'); -INSERT INTO `cardcodes` VALUES (71, '河北省', '石家庄市', '新乐市', '130184'); -INSERT INTO `cardcodes` VALUES (72, '河北省', '石家庄市', '鹿泉市', '130185'); -INSERT INTO `cardcodes` VALUES (73, '河北省', '唐山市', '市辖区', '130201'); -INSERT INTO `cardcodes` VALUES (74, '河北省', '唐山市', '路南区', '130202'); -INSERT INTO `cardcodes` VALUES (75, '河北省', '唐山市', '路北区', '130203'); -INSERT INTO `cardcodes` VALUES (76, '河北省', '唐山市', '古冶区', '130204'); -INSERT INTO `cardcodes` VALUES (77, '河北省', '唐山市', '开平区', '130205'); -INSERT INTO `cardcodes` VALUES (78, '河北省', '唐山市', '新区', '130206'); -INSERT INTO `cardcodes` VALUES (79, '河北省', '唐山市', '丰南区', '130207'); -INSERT INTO `cardcodes` VALUES (80, '河北省', '唐山市', '丰润区', '130208'); -INSERT INTO `cardcodes` VALUES (81, '河北省', '唐山市', '丰润县', '130221'); -INSERT INTO `cardcodes` VALUES (82, '河北省', '唐山市', '丰南县', '130222'); -INSERT INTO `cardcodes` VALUES (83, '河北省', '唐山市', '滦县', '130223'); -INSERT INTO `cardcodes` VALUES (84, '河北省', '唐山市', '滦南县', '130224'); -INSERT INTO `cardcodes` VALUES (85, '河北省', '唐山市', '乐亭县', '130225'); -INSERT INTO `cardcodes` VALUES (86, '河北省', '唐山市', '迁安县', '130226'); -INSERT INTO `cardcodes` VALUES (87, '河北省', '唐山市', '迁西县', '130227'); -INSERT INTO `cardcodes` VALUES (88, '河北省', '唐山市', '遵化县', '130228'); -INSERT INTO `cardcodes` VALUES (89, '河北省', '唐山市', '玉田县', '130229'); -INSERT INTO `cardcodes` VALUES (90, '河北省', '唐山市', '唐海县', '130230'); -INSERT INTO `cardcodes` VALUES (91, '河北省', '唐山市', '遵化市', '130281'); -INSERT INTO `cardcodes` VALUES (92, '河北省', '唐山市', '丰南市', '130282'); -INSERT INTO `cardcodes` VALUES (93, '河北省', '唐山市', '迁安市', '130283'); -INSERT INTO `cardcodes` VALUES (94, '河北省', '秦皇岛市', '市辖区', '130301'); -INSERT INTO `cardcodes` VALUES (95, '河北省', '秦皇岛市', '海港区', '130302'); -INSERT INTO `cardcodes` VALUES (96, '河北省', '秦皇岛市', '山海关区', '130303'); -INSERT INTO `cardcodes` VALUES (97, '河北省', '秦皇岛市', '北戴河区', '130304'); -INSERT INTO `cardcodes` VALUES (98, '河北省', '秦皇岛市', '青龙满族自治县', '130321'); -INSERT INTO `cardcodes` VALUES (99, '河北省', '秦皇岛市', '昌黎县', '130322'); -INSERT INTO `cardcodes` VALUES (100, '河北省', '秦皇岛市', '抚宁县', '130323'); -INSERT INTO `cardcodes` VALUES (101, '河北省', '秦皇岛市', '卢龙县', '130324'); -INSERT INTO `cardcodes` VALUES (102, '河北省', '邯郸市', '市辖区', '130401'); -INSERT INTO `cardcodes` VALUES (103, '河北省', '邯郸市', '邯山区', '130402'); -INSERT INTO `cardcodes` VALUES (104, '河北省', '邯郸市', '丛台区', '130403'); -INSERT INTO `cardcodes` VALUES (105, '河北省', '邯郸市', '复兴区', '130404'); -INSERT INTO `cardcodes` VALUES (106, '河北省', '邯郸市', '郊区', '130405'); -INSERT INTO `cardcodes` VALUES (107, '河北省', '邯郸市', '峰峰矿区', '130406'); -INSERT INTO `cardcodes` VALUES (108, '河北省', '邯郸市', '邯郸县', '130421'); -INSERT INTO `cardcodes` VALUES (109, '河北省', '邯郸市', '武安县', '130422'); -INSERT INTO `cardcodes` VALUES (110, '河北省', '邯郸市', '临漳县', '130423'); -INSERT INTO `cardcodes` VALUES (111, '河北省', '邯郸市', '成安县', '130424'); -INSERT INTO `cardcodes` VALUES (112, '河北省', '邯郸市', '大名县', '130425'); -INSERT INTO `cardcodes` VALUES (113, '河北省', '邯郸市', '涉县', '130426'); -INSERT INTO `cardcodes` VALUES (114, '河北省', '邯郸市', '磁县', '130427'); -INSERT INTO `cardcodes` VALUES (115, '河北省', '邯郸市', '肥乡县', '130428'); -INSERT INTO `cardcodes` VALUES (116, '河北省', '邯郸市', '永年县', '130429'); -INSERT INTO `cardcodes` VALUES (117, '河北省', '邯郸市', '邱县', '130430'); -INSERT INTO `cardcodes` VALUES (118, '河北省', '邯郸市', '鸡泽县', '130431'); -INSERT INTO `cardcodes` VALUES (119, '河北省', '邯郸市', '广平县', '130432'); -INSERT INTO `cardcodes` VALUES (120, '河北省', '邯郸市', '馆陶县', '130433'); -INSERT INTO `cardcodes` VALUES (121, '河北省', '邯郸市', '魏县', '130434'); -INSERT INTO `cardcodes` VALUES (122, '河北省', '邯郸市', '曲周县', '130435'); -INSERT INTO `cardcodes` VALUES (123, '河北省', '邯郸市', '武安市', '130481'); -INSERT INTO `cardcodes` VALUES (124, '河北省', '邢台市', '市辖区', '130501'); -INSERT INTO `cardcodes` VALUES (125, '河北省', '邢台市', '桥东区', '130502'); -INSERT INTO `cardcodes` VALUES (126, '河北省', '邢台市', '桥西区', '130503'); -INSERT INTO `cardcodes` VALUES (127, '河北省', '邢台市', '邢台县', '130521'); -INSERT INTO `cardcodes` VALUES (128, '河北省', '邢台市', '临城县', '130522'); -INSERT INTO `cardcodes` VALUES (129, '河北省', '邢台市', '内丘县', '130523'); -INSERT INTO `cardcodes` VALUES (130, '河北省', '邢台市', '柏乡县', '130524'); -INSERT INTO `cardcodes` VALUES (131, '河北省', '邢台市', '隆尧县', '130525'); -INSERT INTO `cardcodes` VALUES (132, '河北省', '邢台市', '任县', '130526'); -INSERT INTO `cardcodes` VALUES (133, '河北省', '邢台市', '南和县', '130527'); -INSERT INTO `cardcodes` VALUES (134, '河北省', '邢台市', '宁晋县', '130528'); -INSERT INTO `cardcodes` VALUES (135, '河北省', '邢台市', '巨鹿县', '130529'); -INSERT INTO `cardcodes` VALUES (136, '河北省', '邢台市', '新河县', '130530'); -INSERT INTO `cardcodes` VALUES (137, '河北省', '邢台市', '广宗县', '130531'); -INSERT INTO `cardcodes` VALUES (138, '河北省', '邢台市', '平乡县', '130532'); -INSERT INTO `cardcodes` VALUES (139, '河北省', '邢台市', '威县', '130533'); -INSERT INTO `cardcodes` VALUES (140, '河北省', '邢台市', '清河县', '130534'); -INSERT INTO `cardcodes` VALUES (1496, '江苏省', '扬州市', '高邮市', '321084'); -INSERT INTO `cardcodes` VALUES (1497, '江苏省', '扬州市', '泰兴市', '321085'); -INSERT INTO `cardcodes` VALUES (1498, '江苏省', '扬州市', '靖江市', '321086'); -INSERT INTO `cardcodes` VALUES (1499, '江苏省', '扬州市', '江都市', '321087'); -INSERT INTO `cardcodes` VALUES (1500, '江苏省', '扬州市', '江都市', '321088'); -INSERT INTO `cardcodes` VALUES (1501, '江苏省', '镇江市', '市辖区', '321101'); -INSERT INTO `cardcodes` VALUES (1502, '江苏省', '镇江市', '京口区', '321102'); -INSERT INTO `cardcodes` VALUES (1503, '江苏省', '镇江市', '润州区', '321111'); -INSERT INTO `cardcodes` VALUES (1504, '江苏省', '镇江市', '丹徒区', '321112'); -INSERT INTO `cardcodes` VALUES (1505, '江苏省', '镇江市', '丹阳市', '321119'); -INSERT INTO `cardcodes` VALUES (1506, '江苏省', '镇江市', '丹徒县', '321121'); -INSERT INTO `cardcodes` VALUES (1507, '江苏省', '镇江市', '丹阳县', '321122'); -INSERT INTO `cardcodes` VALUES (1508, '江苏省', '镇江市', '句容县', '321123'); -INSERT INTO `cardcodes` VALUES (1509, '江苏省', '镇江市', '扬中县', '321124'); -INSERT INTO `cardcodes` VALUES (1510, '江苏省', '镇江市', '丹阳市', '321181'); -INSERT INTO `cardcodes` VALUES (1511, '江苏省', '镇江市', '扬中市', '321182'); -INSERT INTO `cardcodes` VALUES (1512, '江苏省', '镇江市', '句容市', '321183'); -INSERT INTO `cardcodes` VALUES (1513, '江苏省', '泰州市', '市辖区', '321201'); -INSERT INTO `cardcodes` VALUES (1514, '江苏省', '泰州市', '海陵区', '321202'); -INSERT INTO `cardcodes` VALUES (1515, '江苏省', '泰州市', '高港区', '321203'); -INSERT INTO `cardcodes` VALUES (1516, '江苏省', '泰州市', '兴化市', '321281'); -INSERT INTO `cardcodes` VALUES (1517, '江苏省', '泰州市', '靖江市', '321282'); -INSERT INTO `cardcodes` VALUES (1518, '江苏省', '泰州市', '泰兴市', '321283'); -INSERT INTO `cardcodes` VALUES (1519, '江苏省', '泰州市', '姜堰市', '321284'); -INSERT INTO `cardcodes` VALUES (1520, '江苏省', '宿迁市', '市辖区', '321301'); -INSERT INTO `cardcodes` VALUES (1521, '江苏省', '宿迁市', '宿城区', '321302'); -INSERT INTO `cardcodes` VALUES (1522, '江苏省', '宿迁市', '宿豫区', '321311'); -INSERT INTO `cardcodes` VALUES (1523, '江苏省', '宿迁市', '宿豫县', '321321'); -INSERT INTO `cardcodes` VALUES (1524, '江苏省', '宿迁市', '沭阳县', '321322'); -INSERT INTO `cardcodes` VALUES (1525, '江苏省', '宿迁市', '泗阳县', '321323'); -INSERT INTO `cardcodes` VALUES (1526, '江苏省', '宿迁市', '泗洪县', '321324'); -INSERT INTO `cardcodes` VALUES (1527, '浙江省', '杭州市', '市辖区', '330101'); -INSERT INTO `cardcodes` VALUES (1528, '浙江省', '杭州市', '上城区', '330102'); -INSERT INTO `cardcodes` VALUES (1529, '浙江省', '杭州市', '下城区', '330103'); -INSERT INTO `cardcodes` VALUES (1530, '浙江省', '杭州市', '江干区', '330104'); -INSERT INTO `cardcodes` VALUES (1531, '浙江省', '杭州市', '拱墅区', '330105'); -INSERT INTO `cardcodes` VALUES (1532, '浙江省', '杭州市', '西湖区', '330106'); -INSERT INTO `cardcodes` VALUES (1533, '浙江省', '杭州市', '滨江区', '330107'); -INSERT INTO `cardcodes` VALUES (1534, '浙江省', '杭州市', '滨江区', '330108'); -INSERT INTO `cardcodes` VALUES (1535, '浙江省', '杭州市', '萧山区', '330109'); -INSERT INTO `cardcodes` VALUES (1536, '浙江省', '杭州市', '余杭区', '330110'); -INSERT INTO `cardcodes` VALUES (1537, '浙江省', '杭州市', '市区', '330120'); -INSERT INTO `cardcodes` VALUES (1538, '浙江省', '杭州市', '萧山县', '330121'); -INSERT INTO `cardcodes` VALUES (1539, '浙江省', '杭州市', '桐庐县', '330122'); -INSERT INTO `cardcodes` VALUES (1540, '浙江省', '杭州市', '富阳县', '330123'); -INSERT INTO `cardcodes` VALUES (1541, '浙江省', '杭州市', '临安县', '330124'); -INSERT INTO `cardcodes` VALUES (1542, '浙江省', '杭州市', '余杭县', '330125'); -INSERT INTO `cardcodes` VALUES (1543, '浙江省', '杭州市', '建德县', '330126'); -INSERT INTO `cardcodes` VALUES (1544, '浙江省', '杭州市', '淳安县', '330127'); -INSERT INTO `cardcodes` VALUES (1545, '浙江省', '杭州市', '萧山市', '330181'); -INSERT INTO `cardcodes` VALUES (1546, '浙江省', '杭州市', '建德市', '330182'); -INSERT INTO `cardcodes` VALUES (1547, '浙江省', '杭州市', '富阳市', '330183'); -INSERT INTO `cardcodes` VALUES (1548, '浙江省', '杭州市', '余杭市', '330184'); -INSERT INTO `cardcodes` VALUES (1549, '浙江省', '杭州市', '临安市', '330185'); -INSERT INTO `cardcodes` VALUES (1550, '浙江省', '台州市', '椒江区', '331002'); -INSERT INTO `cardcodes` VALUES (1551, '浙江省', '台州市', '黄岩区', '331003'); -INSERT INTO `cardcodes` VALUES (1552, '浙江省', '台州市', '路桥区', '331004'); -INSERT INTO `cardcodes` VALUES (1553, '浙江省', '台州市', '玉环县', '331021'); -INSERT INTO `cardcodes` VALUES (1554, '浙江省', '台州市', '三门县', '331022'); -INSERT INTO `cardcodes` VALUES (1555, '浙江省', '台州市', '天台县', '331023'); -INSERT INTO `cardcodes` VALUES (1556, '浙江省', '台州市', '仙居县', '331024'); -INSERT INTO `cardcodes` VALUES (1557, '浙江省', '台州市', '温岭市', '331081'); -INSERT INTO `cardcodes` VALUES (1558, '浙江省', '台州市', '临海市', '331082'); -INSERT INTO `cardcodes` VALUES (1559, '浙江省', '台州市', '市辖区', '331001'); -INSERT INTO `cardcodes` VALUES (1560, '浙江省', '丽水市', '市辖区', '331101'); -INSERT INTO `cardcodes` VALUES (1561, '浙江省', '丽水市', '莲都区', '331102'); -INSERT INTO `cardcodes` VALUES (1562, '浙江省', '丽水市', '青田县', '331121'); -INSERT INTO `cardcodes` VALUES (1563, '浙江省', '丽水市', '缙云县', '331122'); -INSERT INTO `cardcodes` VALUES (1564, '浙江省', '丽水市', '遂昌县', '331123'); -INSERT INTO `cardcodes` VALUES (1565, '浙江省', '丽水市', '松阳县', '331124'); -INSERT INTO `cardcodes` VALUES (1566, '浙江省', '丽水市', '云和县', '331125'); -INSERT INTO `cardcodes` VALUES (1567, '浙江省', '丽水市', '庆元县', '331126'); -INSERT INTO `cardcodes` VALUES (1568, '浙江省', '丽水市', '景宁畲族自治县', '331127'); -INSERT INTO `cardcodes` VALUES (1569, '浙江省', '丽水市', '龙泉市', '331181'); -INSERT INTO `cardcodes` VALUES (1570, '浙江省', '丽水地区', '丽水市', '332501'); -INSERT INTO `cardcodes` VALUES (1571, '浙江省', '丽水地区', '龙泉市', '332502'); -INSERT INTO `cardcodes` VALUES (1572, '浙江省', '丽水地区', '丽水县', '332521'); -INSERT INTO `cardcodes` VALUES (1573, '浙江省', '丽水地区', '青田县', '332522'); -INSERT INTO `cardcodes` VALUES (1574, '浙江省', '丽水地区', '云和县', '332523'); -INSERT INTO `cardcodes` VALUES (1575, '浙江省', '丽水地区', '龙泉县', '332524'); -INSERT INTO `cardcodes` VALUES (1576, '浙江省', '丽水地区', '庆元县', '332525'); -INSERT INTO `cardcodes` VALUES (1577, '浙江省', '丽水地区', '缙云县', '332526'); -INSERT INTO `cardcodes` VALUES (1578, '浙江省', '丽水地区', '遂昌县', '332527'); -INSERT INTO `cardcodes` VALUES (1579, '浙江省', '丽水地区', '松阳县', '332528'); -INSERT INTO `cardcodes` VALUES (1580, '浙江省', '丽水地区', '景宁畲族自治县', '332529'); -INSERT INTO `cardcodes` VALUES (1581, '浙江省', '台州地区', '椒江市', '332601'); -INSERT INTO `cardcodes` VALUES (1582, '浙江省', '台州地区', '临海市', '332602'); -INSERT INTO `cardcodes` VALUES (1583, '浙江省', '台州地区', '黄岩市', '332603'); -INSERT INTO `cardcodes` VALUES (1584, '浙江省', '台州地区', '临海县', '332621'); -INSERT INTO `cardcodes` VALUES (1585, '浙江省', '台州地区', '黄岩县', '332622'); -INSERT INTO `cardcodes` VALUES (1586, '浙江省', '台州地区', '温岭县', '332623'); -INSERT INTO `cardcodes` VALUES (1587, '浙江省', '台州地区', '仙居县', '332624'); -INSERT INTO `cardcodes` VALUES (1588, '浙江省', '台州地区', '天台县', '332625'); -INSERT INTO `cardcodes` VALUES (1589, '浙江省', '台州地区', '三门县', '332626'); -INSERT INTO `cardcodes` VALUES (1590, '浙江省', '台州地区', '玉环县', '332627'); -INSERT INTO `cardcodes` VALUES (1591, '浙江省', '舟山地区', '定海县', '332721'); -INSERT INTO `cardcodes` VALUES (1592, '浙江省', '舟山地区', '普陀县', '332722'); -INSERT INTO `cardcodes` VALUES (1593, '浙江省', '舟山地区', '岱山县', '332723'); -INSERT INTO `cardcodes` VALUES (1594, '浙江省', '舟山地区', '嵊泗县', '332724'); -INSERT INTO `cardcodes` VALUES (1595, '浙江省', '宁波市', '市辖区', '330201'); -INSERT INTO `cardcodes` VALUES (1596, '浙江省', '宁波市', '镇明区', '330202'); -INSERT INTO `cardcodes` VALUES (1597, '浙江省', '宁波市', '海曙区', '330203'); -INSERT INTO `cardcodes` VALUES (1598, '浙江省', '宁波市', '江东区', '330204'); -INSERT INTO `cardcodes` VALUES (1599, '浙江省', '宁波市', '江北区', '330205'); -INSERT INTO `cardcodes` VALUES (1600, '浙江省', '宁波市', '北仑区', '330206'); -INSERT INTO `cardcodes` VALUES (1601, '浙江省', '宁波市', '鄞州区', '330207'); -INSERT INTO `cardcodes` VALUES (1602, '浙江省', '宁波市', '镇海区', '330211'); -INSERT INTO `cardcodes` VALUES (1603, '浙江省', '宁波市', '鄞州区', '330212'); -INSERT INTO `cardcodes` VALUES (1604, '浙江省', '宁波市', '余姚市', '330219'); -INSERT INTO `cardcodes` VALUES (1605, '浙江省', '宁波市', '镇海县', '330221'); -INSERT INTO `cardcodes` VALUES (1606, '浙江省', '宁波市', '慈溪县', '330222'); -INSERT INTO `cardcodes` VALUES (1607, '浙江省', '宁波市', '余姚县', '330223'); -INSERT INTO `cardcodes` VALUES (1608, '浙江省', '宁波市', '奉化县', '330224'); -INSERT INTO `cardcodes` VALUES (1609, '浙江省', '宁波市', '象山县', '330225'); -INSERT INTO `cardcodes` VALUES (1610, '浙江省', '宁波市', '宁海县', '330226'); -INSERT INTO `cardcodes` VALUES (1611, '浙江省', '宁波市', '鄞县', '330227'); -INSERT INTO `cardcodes` VALUES (1612, '浙江省', '宁波市', '余姚市', '330281'); -INSERT INTO `cardcodes` VALUES (1613, '浙江省', '宁波市', '慈溪市', '330282'); -INSERT INTO `cardcodes` VALUES (1614, '浙江省', '宁波市', '奉化市', '330283'); -INSERT INTO `cardcodes` VALUES (1615, '浙江省', '温州市', '市辖区', '330301'); -INSERT INTO `cardcodes` VALUES (1616, '浙江省', '温州市', '鹿城区', '330302'); -INSERT INTO `cardcodes` VALUES (1617, '浙江省', '温州市', '龙湾区', '330303'); -INSERT INTO `cardcodes` VALUES (1618, '浙江省', '温州市', '瓯海区', '330304'); -INSERT INTO `cardcodes` VALUES (1619, '浙江省', '温州市', '瓯海县', '330321'); -INSERT INTO `cardcodes` VALUES (1620, '浙江省', '温州市', '洞头县', '330322'); -INSERT INTO `cardcodes` VALUES (1621, '浙江省', '温州市', '乐清县', '330323'); -INSERT INTO `cardcodes` VALUES (1622, '浙江省', '温州市', '永嘉县', '330324'); -INSERT INTO `cardcodes` VALUES (1623, '浙江省', '温州市', '瑞安县', '330325'); -INSERT INTO `cardcodes` VALUES (1624, '浙江省', '温州市', '平阳县', '330326'); -INSERT INTO `cardcodes` VALUES (1625, '浙江省', '温州市', '苍南县', '330327'); -INSERT INTO `cardcodes` VALUES (1626, '浙江省', '温州市', '文成县', '330328'); -INSERT INTO `cardcodes` VALUES (1627, '浙江省', '温州市', '泰顺县', '330329'); -INSERT INTO `cardcodes` VALUES (1628, '浙江省', '温州市', '瑞安市', '330381'); -INSERT INTO `cardcodes` VALUES (1629, '浙江省', '温州市', '乐清市', '330382'); -INSERT INTO `cardcodes` VALUES (1630, '浙江省', '嘉兴市', '市辖区', '330401'); -INSERT INTO `cardcodes` VALUES (1631, '浙江省', '嘉兴市', '秀城区', '330402'); -INSERT INTO `cardcodes` VALUES (1632, '浙江省', '嘉兴市', '郊区', '330411'); -INSERT INTO `cardcodes` VALUES (1633, '浙江省', '嘉兴市', '海宁市', '330419'); -INSERT INTO `cardcodes` VALUES (1634, '浙江省', '嘉兴市', '嘉善县', '330421'); -INSERT INTO `cardcodes` VALUES (1635, '浙江省', '嘉兴市', '平湖县', '330422'); -INSERT INTO `cardcodes` VALUES (1636, '浙江省', '嘉兴市', '海宁县', '330423'); -INSERT INTO `cardcodes` VALUES (1637, '浙江省', '嘉兴市', '海盐县', '330424'); -INSERT INTO `cardcodes` VALUES (1638, '浙江省', '嘉兴市', '桐乡县', '330425'); -INSERT INTO `cardcodes` VALUES (1639, '浙江省', '嘉兴市', '海宁市', '330481'); -INSERT INTO `cardcodes` VALUES (1640, '浙江省', '嘉兴市', '平湖市', '330482'); -INSERT INTO `cardcodes` VALUES (1641, '浙江省', '嘉兴市', '桐乡市', '330483'); -INSERT INTO `cardcodes` VALUES (1642, '浙江省', '湖州市', '市辖区', '330501'); -INSERT INTO `cardcodes` VALUES (1643, '浙江省', '湖州市', '吴兴区', '330502'); -INSERT INTO `cardcodes` VALUES (1644, '浙江省', '湖州市', '南浔区', '330503'); -INSERT INTO `cardcodes` VALUES (1645, '浙江省', '湖州市', '郊区', '330511'); -INSERT INTO `cardcodes` VALUES (1646, '浙江省', '湖州市', '德清县', '330521'); -INSERT INTO `cardcodes` VALUES (1647, '浙江省', '湖州市', '长兴县', '330522'); -INSERT INTO `cardcodes` VALUES (1648, '浙江省', '湖州市', '安吉县', '330523'); -INSERT INTO `cardcodes` VALUES (1649, '浙江省', '绍兴市', '市辖区', '330601'); -INSERT INTO `cardcodes` VALUES (1650, '浙江省', '绍兴市', '越城区', '330602'); -INSERT INTO `cardcodes` VALUES (1651, '浙江省', '绍兴市', '绍兴县', '330621'); -INSERT INTO `cardcodes` VALUES (1652, '浙江省', '绍兴市', '上虞县', '330622'); -INSERT INTO `cardcodes` VALUES (1653, '浙江省', '绍兴市', '嵊县', '330623'); -INSERT INTO `cardcodes` VALUES (1654, '浙江省', '绍兴市', '新昌县', '330624'); -INSERT INTO `cardcodes` VALUES (1655, '浙江省', '绍兴市', '诸暨县', '330625'); -INSERT INTO `cardcodes` VALUES (1656, '浙江省', '绍兴市', '诸暨市', '330681'); -INSERT INTO `cardcodes` VALUES (1657, '浙江省', '绍兴市', '上虞市', '330682'); -INSERT INTO `cardcodes` VALUES (1658, '浙江省', '绍兴市', '嵊州市', '330683'); -INSERT INTO `cardcodes` VALUES (1659, '浙江省', '金华市', '市辖区', '330701'); -INSERT INTO `cardcodes` VALUES (1660, '浙江省', '金华市', '婺城区', '330702'); -INSERT INTO `cardcodes` VALUES (1661, '浙江省', '金华市', '金东区', '330703'); -INSERT INTO `cardcodes` VALUES (1662, '浙江省', '金华市', '兰溪市', '330719'); -INSERT INTO `cardcodes` VALUES (1663, '浙江省', '金华市', '金华县', '330721'); -INSERT INTO `cardcodes` VALUES (1664, '浙江省', '金华市', '永康县', '330722'); -INSERT INTO `cardcodes` VALUES (1665, '浙江省', '金华市', '武义县', '330723'); -INSERT INTO `cardcodes` VALUES (1666, '浙江省', '金华市', '东阳县', '330724'); -INSERT INTO `cardcodes` VALUES (1667, '浙江省', '金华市', '义乌县', '330725'); -INSERT INTO `cardcodes` VALUES (1668, '浙江省', '金华市', '浦江县', '330726'); -INSERT INTO `cardcodes` VALUES (1669, '浙江省', '金华市', '磐安县', '330727'); -INSERT INTO `cardcodes` VALUES (1670, '浙江省', '金华市', '兰溪市', '330781'); -INSERT INTO `cardcodes` VALUES (1671, '浙江省', '金华市', '义乌市', '330782'); -INSERT INTO `cardcodes` VALUES (1672, '浙江省', '金华市', '东阳市', '330783'); -INSERT INTO `cardcodes` VALUES (1673, '浙江省', '金华市', '永康市', '330784'); -INSERT INTO `cardcodes` VALUES (1674, '浙江省', '衢州市', '市辖区', '330801'); -INSERT INTO `cardcodes` VALUES (1675, '浙江省', '衢州市', '柯城区', '330802'); -INSERT INTO `cardcodes` VALUES (1676, '浙江省', '衢州市', '衢江区', '330803'); -INSERT INTO `cardcodes` VALUES (1677, '浙江省', '衢州市', '衢县', '330821'); -INSERT INTO `cardcodes` VALUES (1678, '浙江省', '衢州市', '常山县', '330822'); -INSERT INTO `cardcodes` VALUES (1679, '浙江省', '衢州市', '江山县', '330823'); -INSERT INTO `cardcodes` VALUES (1680, '浙江省', '衢州市', '开化县', '330824'); -INSERT INTO `cardcodes` VALUES (1681, '浙江省', '衢州市', '龙游县', '330825'); -INSERT INTO `cardcodes` VALUES (1682, '浙江省', '衢州市', '江山市', '330881'); -INSERT INTO `cardcodes` VALUES (1683, '浙江省', '舟山市', '市辖区', '330901'); -INSERT INTO `cardcodes` VALUES (1684, '浙江省', '舟山市', '定海区', '330902'); -INSERT INTO `cardcodes` VALUES (1685, '浙江省', '舟山市', '普陀区', '330903'); -INSERT INTO `cardcodes` VALUES (1686, '浙江省', '舟山市', '岱山县', '330921'); -INSERT INTO `cardcodes` VALUES (1687, '浙江省', '舟山市', '嵊泗县', '330922'); -INSERT INTO `cardcodes` VALUES (1688, '浙江省', NULL, '余姚市', '339001'); -INSERT INTO `cardcodes` VALUES (1689, '浙江省', NULL, '海宁市', '339002'); -INSERT INTO `cardcodes` VALUES (1690, '浙江省', NULL, '兰溪市', '339003'); -INSERT INTO `cardcodes` VALUES (1691, '浙江省', NULL, '瑞安市', '339004'); -INSERT INTO `cardcodes` VALUES (1692, '浙江省', NULL, '萧山市', '339005'); -INSERT INTO `cardcodes` VALUES (1693, '浙江省', NULL, '江山市', '339006'); -INSERT INTO `cardcodes` VALUES (1694, '浙江省', NULL, '义乌市', '339007'); -INSERT INTO `cardcodes` VALUES (1695, '浙江省', NULL, '东阳市', '339008'); -INSERT INTO `cardcodes` VALUES (1696, '浙江省', NULL, '慈溪市', '339009'); -INSERT INTO `cardcodes` VALUES (1697, '浙江省', NULL, '奉化市', '339010'); -INSERT INTO `cardcodes` VALUES (1698, '浙江省', NULL, '诸暨市', '339011'); -INSERT INTO `cardcodes` VALUES (1699, '安徽省', '阜阳市', '临泉县', '341221'); -INSERT INTO `cardcodes` VALUES (1700, '安徽省', '阜阳市', '太和县', '341222'); -INSERT INTO `cardcodes` VALUES (1701, '安徽省', '阜阳市', '涡阳县', '341223'); -INSERT INTO `cardcodes` VALUES (1702, '安徽省', '阜阳市', '蒙城县', '341224'); -INSERT INTO `cardcodes` VALUES (1703, '安徽省', '阜阳市', '阜南县', '341225'); -INSERT INTO `cardcodes` VALUES (1704, '安徽省', '阜阳市', '颍上县', '341226'); -INSERT INTO `cardcodes` VALUES (1705, '安徽省', '阜阳市', '利辛县', '341227'); -INSERT INTO `cardcodes` VALUES (1706, '安徽省', '阜阳市', '亳州市', '341281'); -INSERT INTO `cardcodes` VALUES (1707, '安徽省', '阜阳市', '界首市', '341282'); -INSERT INTO `cardcodes` VALUES (1708, '安徽省', '阜阳市', '市辖区', '341201'); -INSERT INTO `cardcodes` VALUES (1709, '安徽省', '阜阳市', '颍州区', '341202'); -INSERT INTO `cardcodes` VALUES (1710, '安徽省', '阜阳市', '颍东区', '341203'); -INSERT INTO `cardcodes` VALUES (1711, '安徽省', '阜阳市', '颍泉区', '341204'); -INSERT INTO `cardcodes` VALUES (1712, '安徽省', '宿州市', '市辖区', '341301'); -INSERT INTO `cardcodes` VALUES (1713, '安徽省', '宿州市', '墉桥区', '341302'); -INSERT INTO `cardcodes` VALUES (1714, '安徽省', '宿州市', '砀山县', '341321'); -INSERT INTO `cardcodes` VALUES (1715, '安徽省', '宿州市', '萧县', '341322'); -INSERT INTO `cardcodes` VALUES (1716, '安徽省', '宿州市', '灵璧县', '341323'); -INSERT INTO `cardcodes` VALUES (1717, '安徽省', '宿州市', '泗县', '341324'); -INSERT INTO `cardcodes` VALUES (1718, '安徽省', '巢湖市', '市辖区', '341401'); -INSERT INTO `cardcodes` VALUES (1719, '安徽省', '巢湖市', '居巢区', '341402'); -INSERT INTO `cardcodes` VALUES (1720, '安徽省', '巢湖市', '庐江县', '341421'); -INSERT INTO `cardcodes` VALUES (1721, '安徽省', '巢湖市', '无为县', '341422'); -INSERT INTO `cardcodes` VALUES (1722, '安徽省', '巢湖市', '含山县', '341423'); -INSERT INTO `cardcodes` VALUES (1723, '安徽省', '巢湖市', '和县', '341424'); -INSERT INTO `cardcodes` VALUES (1724, '安徽省', '六安市', '市辖区', '341501'); -INSERT INTO `cardcodes` VALUES (1725, '安徽省', '六安市', '金安区', '341502'); -INSERT INTO `cardcodes` VALUES (1726, '安徽省', '六安市', '裕安区', '341503'); -INSERT INTO `cardcodes` VALUES (1727, '安徽省', '六安市', '寿县', '341521'); -INSERT INTO `cardcodes` VALUES (1728, '安徽省', '六安市', '霍邱县', '341522'); -INSERT INTO `cardcodes` VALUES (1729, '安徽省', '六安市', '舒城县', '341523'); -INSERT INTO `cardcodes` VALUES (1730, '安徽省', '六安市', '金寨县', '341524'); -INSERT INTO `cardcodes` VALUES (1731, '安徽省', '六安市', '霍山县', '341525'); -INSERT INTO `cardcodes` VALUES (1732, '安徽省', '亳州市', '市辖区', '341601'); -INSERT INTO `cardcodes` VALUES (1733, '安徽省', '亳州市', '谯城区', '341602'); -INSERT INTO `cardcodes` VALUES (1734, '安徽省', '亳州市', '涡阳县', '341621'); -INSERT INTO `cardcodes` VALUES (1735, '安徽省', '亳州市', '蒙城县', '341622'); -INSERT INTO `cardcodes` VALUES (1736, '安徽省', '亳州市', '利辛县', '341623'); -INSERT INTO `cardcodes` VALUES (1737, '安徽省', '池州市', '市辖区', '341701'); -INSERT INTO `cardcodes` VALUES (1738, '安徽省', '池州市', '贵池区', '341702'); -INSERT INTO `cardcodes` VALUES (1739, '安徽省', '池州市', '东至县', '341721'); -INSERT INTO `cardcodes` VALUES (1740, '安徽省', '池州市', '石台县', '341722'); -INSERT INTO `cardcodes` VALUES (1741, '安徽省', '池州市', '青阳县', '341723'); -INSERT INTO `cardcodes` VALUES (1742, '安徽省', '宣城市', '市辖区', '341801'); -INSERT INTO `cardcodes` VALUES (1743, '安徽省', '宣城市', '宣州区', '341802'); -INSERT INTO `cardcodes` VALUES (1744, '安徽省', '宣城市', '郎溪县', '341821'); -INSERT INTO `cardcodes` VALUES (1745, '安徽省', '宣城市', '广德县', '341822'); -INSERT INTO `cardcodes` VALUES (1746, '安徽省', '宣城市', '泾县', '341823'); -INSERT INTO `cardcodes` VALUES (1747, '安徽省', '宣城市', '绩溪县', '341824'); -INSERT INTO `cardcodes` VALUES (1748, '安徽省', '宣城市', '旌德县', '341825'); -INSERT INTO `cardcodes` VALUES (1749, '安徽省', '宣城市', '宁国市', '341881'); -INSERT INTO `cardcodes` VALUES (1750, '安徽省', '阜阳地区', '阜阳市', '342101'); -INSERT INTO `cardcodes` VALUES (1751, '安徽省', '阜阳地区', '阜阳县', '342121'); -INSERT INTO `cardcodes` VALUES (1752, '安徽省', '阜阳地区', '临泉县', '342122'); -INSERT INTO `cardcodes` VALUES (1753, '安徽省', '阜阳地区', '太和县', '342123'); -INSERT INTO `cardcodes` VALUES (1754, '安徽省', '阜阳地区', '涡阳县', '342124'); -INSERT INTO `cardcodes` VALUES (1755, '安徽省', '阜阳地区', '蒙城县', '342125'); -INSERT INTO `cardcodes` VALUES (1756, '安徽省', '阜阳地区', '亳县', '342126'); -INSERT INTO `cardcodes` VALUES (1757, '安徽省', '阜阳地区', '阜南县', '342127'); -INSERT INTO `cardcodes` VALUES (1758, '安徽省', '阜阳地区', '颍上县', '342128'); -INSERT INTO `cardcodes` VALUES (1759, '安徽省', '阜阳地区', '界首县', '342129'); -INSERT INTO `cardcodes` VALUES (1760, '安徽省', '阜阳地区', '利辛县', '342130'); -INSERT INTO `cardcodes` VALUES (1761, '安徽省', '宿县地区', '宿州市', '342201'); -INSERT INTO `cardcodes` VALUES (1762, '安徽省', '宿县地区', '砀山县', '342221'); -INSERT INTO `cardcodes` VALUES (1763, '安徽省', '宿县地区', '萧县', '342222'); -INSERT INTO `cardcodes` VALUES (1764, '安徽省', '宿县地区', '宿县', '342223'); -INSERT INTO `cardcodes` VALUES (1765, '安徽省', '宿县地区', '灵璧县', '342224'); -INSERT INTO `cardcodes` VALUES (1766, '安徽省', '宿县地区', '泗县', '342225'); -INSERT INTO `cardcodes` VALUES (1767, '安徽省', '宿县地区', '怀远县', '342226'); -INSERT INTO `cardcodes` VALUES (1768, '安徽省', '宿县地区', '五河县', '342227'); -INSERT INTO `cardcodes` VALUES (1769, '安徽省', '宿县地区', '固镇县', '342228'); -INSERT INTO `cardcodes` VALUES (1770, '安徽省', '滁县地区', '滁州市', '342301'); -INSERT INTO `cardcodes` VALUES (1771, '安徽省', '滁县地区', '天长县', '342321'); -INSERT INTO `cardcodes` VALUES (1772, '安徽省', '滁县地区', '来安县', '342322'); -INSERT INTO `cardcodes` VALUES (1773, '安徽省', '滁县地区', '滁县', '342323'); -INSERT INTO `cardcodes` VALUES (1774, '安徽省', '滁县地区', '全椒县', '342324'); -INSERT INTO `cardcodes` VALUES (1775, '安徽省', '滁县地区', '定远县', '342325'); -INSERT INTO `cardcodes` VALUES (1776, '安徽省', '滁县地区', '凤阳县', '342326'); -INSERT INTO `cardcodes` VALUES (1777, '安徽省', '滁县地区', '嘉山县', '342327'); -INSERT INTO `cardcodes` VALUES (1778, '安徽省', '六安地区', '六安市', '342401'); -INSERT INTO `cardcodes` VALUES (1779, '安徽省', '六安地区', '六安县', '342421'); -INSERT INTO `cardcodes` VALUES (1780, '安徽省', '六安地区', '寿县', '342422'); -INSERT INTO `cardcodes` VALUES (1781, '安徽省', '六安地区', '霍邱县', '342423'); -INSERT INTO `cardcodes` VALUES (1782, '安徽省', '六安地区', '肥西县', '342424'); -INSERT INTO `cardcodes` VALUES (1783, '安徽省', '六安地区', '舒城县', '342425'); -INSERT INTO `cardcodes` VALUES (1784, '安徽省', '六安地区', '金寨县', '342426'); -INSERT INTO `cardcodes` VALUES (1785, '安徽省', '六安地区', '霍山县', '342427'); -INSERT INTO `cardcodes` VALUES (1786, '安徽省', '宣城地区', '宣州市', '342501'); -INSERT INTO `cardcodes` VALUES (1787, '安徽省', '宣城地区', '宁国市', '342502'); -INSERT INTO `cardcodes` VALUES (1788, '安徽省', '宣城地区', '宣州县', '342521'); -INSERT INTO `cardcodes` VALUES (1789, '安徽省', '宣城地区', '郎溪县', '342522'); -INSERT INTO `cardcodes` VALUES (1790, '安徽省', '宣城地区', '广德县', '342523'); -INSERT INTO `cardcodes` VALUES (1791, '安徽省', '宣城地区', '宁国县', '342524'); -INSERT INTO `cardcodes` VALUES (1792, '安徽省', '宣城地区', '当涂县', '342525'); -INSERT INTO `cardcodes` VALUES (1793, '安徽省', '宣城地区', '繁昌县', '342526'); -INSERT INTO `cardcodes` VALUES (1794, '安徽省', '宣城地区', '南陵县', '342527'); -INSERT INTO `cardcodes` VALUES (1795, '安徽省', '宣城地区', '青阳县', '342528'); -INSERT INTO `cardcodes` VALUES (1796, '安徽省', '宣城地区', '泾县', '342529'); -INSERT INTO `cardcodes` VALUES (1797, '安徽省', '宣城地区', '旌德县', '342530'); -INSERT INTO `cardcodes` VALUES (1798, '安徽省', '宣城地区', '绩溪县', '342531'); -INSERT INTO `cardcodes` VALUES (1799, '安徽省', '巢湖地区', '巢湖市', '342601'); -INSERT INTO `cardcodes` VALUES (1800, '安徽省', '巢湖地区', '肥东县', '342621'); -INSERT INTO `cardcodes` VALUES (1801, '安徽省', '巢湖地区', '庐江县', '342622'); -INSERT INTO `cardcodes` VALUES (1802, '安徽省', '巢湖地区', '无为县', '342623'); -INSERT INTO `cardcodes` VALUES (1803, '安徽省', '巢湖地区', '巢县', '342624'); -INSERT INTO `cardcodes` VALUES (1804, '安徽省', '巢湖地区', '含山县', '342625'); -INSERT INTO `cardcodes` VALUES (1805, '安徽省', '巢湖地区', '和县', '342626'); -INSERT INTO `cardcodes` VALUES (1806, '安徽省', '徽州地区', '屯溪市', '342701'); -INSERT INTO `cardcodes` VALUES (1807, '安徽省', '徽州地区', '绩溪县', '342721'); -INSERT INTO `cardcodes` VALUES (1808, '安徽省', '徽州地区', '旌德县', '342722'); -INSERT INTO `cardcodes` VALUES (1809, '安徽省', '徽州地区', '歙县', '342723'); -INSERT INTO `cardcodes` VALUES (1810, '安徽省', '徽州地区', '休宁县', '342724'); -INSERT INTO `cardcodes` VALUES (1811, '安徽省', '徽州地区', '黟县', '342725'); -INSERT INTO `cardcodes` VALUES (1812, '安徽省', '徽州地区', '祁门县', '342726'); -INSERT INTO `cardcodes` VALUES (1813, '安徽省', '徽州地区', '太平县', '342727'); -INSERT INTO `cardcodes` VALUES (1814, '安徽省', '徽州地区', '石台县', '342728'); -INSERT INTO `cardcodes` VALUES (1815, '安徽省', '安庆地区', '怀宁县', '342821'); -INSERT INTO `cardcodes` VALUES (1816, '安徽省', '安庆地区', '桐城县', '342822'); -INSERT INTO `cardcodes` VALUES (1817, '安徽省', '安庆地区', '枞阳县', '342823'); -INSERT INTO `cardcodes` VALUES (1818, '安徽省', '安庆地区', '潜山县', '342824'); -INSERT INTO `cardcodes` VALUES (1819, '安徽省', '安庆地区', '太湖县', '342825'); -INSERT INTO `cardcodes` VALUES (1820, '安徽省', '安庆地区', '宿松县', '342826'); -INSERT INTO `cardcodes` VALUES (1821, '安徽省', '安庆地区', '望江县', '342827'); -INSERT INTO `cardcodes` VALUES (1822, '安徽省', '安庆地区', '岳西县', '342828'); -INSERT INTO `cardcodes` VALUES (1823, '安徽省', '安庆地区', '东至县', '342829'); -INSERT INTO `cardcodes` VALUES (1824, '安徽省', '安庆地区', '贵池县', '342830'); -INSERT INTO `cardcodes` VALUES (1825, '安徽省', '池州地区', '贵池市', '342901'); -INSERT INTO `cardcodes` VALUES (1826, '安徽省', '池州地区', '东至县', '342921'); -INSERT INTO `cardcodes` VALUES (1827, '安徽省', '池州地区', '石台县', '342922'); -INSERT INTO `cardcodes` VALUES (1828, '安徽省', '池州地区', '青阳县', '342923'); -INSERT INTO `cardcodes` VALUES (1829, '安徽省', '合肥市', '市辖区', '340101'); -INSERT INTO `cardcodes` VALUES (1830, '安徽省', '合肥市', '瑶海区', '340102'); -INSERT INTO `cardcodes` VALUES (1831, '安徽省', '合肥市', '庐阳区', '340103'); -INSERT INTO `cardcodes` VALUES (1832, '安徽省', '合肥市', '蜀山区', '340104'); -INSERT INTO `cardcodes` VALUES (1833, '安徽省', '合肥市', '包河区', '340111'); -INSERT INTO `cardcodes` VALUES (1834, '安徽省', '合肥市', '长丰县', '340121'); -INSERT INTO `cardcodes` VALUES (1835, '安徽省', '合肥市', '肥西县', '340122'); -INSERT INTO `cardcodes` VALUES (1836, '安徽省', '合肥市', '肥东县', '340123'); -INSERT INTO `cardcodes` VALUES (1837, '安徽省', '芜湖市', '市辖区', '340201'); -INSERT INTO `cardcodes` VALUES (1838, '安徽省', '芜湖市', '镜湖区', '340202'); -INSERT INTO `cardcodes` VALUES (1839, '安徽省', '芜湖市', '弋江区', '340203'); -INSERT INTO `cardcodes` VALUES (1840, '安徽省', '芜湖市', '新芜区', '340204'); -INSERT INTO `cardcodes` VALUES (1841, '安徽省', '芜湖市', '裕溪口区', '340205'); -INSERT INTO `cardcodes` VALUES (1842, '安徽省', '芜湖市', '四褐山区', '340206'); -INSERT INTO `cardcodes` VALUES (1843, '安徽省', '芜湖市', '鸠江区', '340207'); -INSERT INTO `cardcodes` VALUES (1844, '安徽省', '芜湖市', '三山区', '340208'); -INSERT INTO `cardcodes` VALUES (1845, '安徽省', '芜湖市', '郊区', '340211'); -INSERT INTO `cardcodes` VALUES (1846, '安徽省', '芜湖市', '市区', '340220'); -INSERT INTO `cardcodes` VALUES (1847, '安徽省', '芜湖市', '芜湖县', '340221'); -INSERT INTO `cardcodes` VALUES (1848, '安徽省', '芜湖市', '繁昌县', '340222'); -INSERT INTO `cardcodes` VALUES (1849, '安徽省', '芜湖市', '南陵县', '340223'); -INSERT INTO `cardcodes` VALUES (1850, '安徽省', '芜湖市', '青阳县', '340224'); -INSERT INTO `cardcodes` VALUES (1851, '安徽省', '蚌埠市', '市辖区', '340301'); -INSERT INTO `cardcodes` VALUES (1852, '安徽省', '蚌埠市', '龙子湖区', '340302'); -INSERT INTO `cardcodes` VALUES (1853, '安徽省', '蚌埠市', '蚌山区', '340303'); -INSERT INTO `cardcodes` VALUES (1854, '安徽省', '蚌埠市', '禹会区', '340304'); -INSERT INTO `cardcodes` VALUES (1855, '安徽省', '蚌埠市', '淮上区', '340311'); -INSERT INTO `cardcodes` VALUES (1856, '安徽省', '蚌埠市', '怀远县', '340321'); -INSERT INTO `cardcodes` VALUES (1857, '安徽省', '蚌埠市', '五河县', '340322'); -INSERT INTO `cardcodes` VALUES (1858, '安徽省', '蚌埠市', '固镇县', '340323'); -INSERT INTO `cardcodes` VALUES (1859, '安徽省', '淮南市', '市辖区', '340401'); -INSERT INTO `cardcodes` VALUES (1860, '安徽省', '淮南市', '大通区', '340402'); -INSERT INTO `cardcodes` VALUES (1861, '安徽省', '淮南市', '田家庵区', '340403'); -INSERT INTO `cardcodes` VALUES (1862, '安徽省', '淮南市', '谢家集区', '340404'); -INSERT INTO `cardcodes` VALUES (1863, '安徽省', '淮南市', '八公山区', '340405'); -INSERT INTO `cardcodes` VALUES (1864, '安徽省', '淮南市', '潘集区', '340406'); -INSERT INTO `cardcodes` VALUES (1865, '安徽省', '淮南市', '凤台县', '340421'); -INSERT INTO `cardcodes` VALUES (1866, '安徽省', '马鞍山市', '市辖区', '340501'); -INSERT INTO `cardcodes` VALUES (1867, '安徽省', '马鞍山市', '金家庄区', '340502'); -INSERT INTO `cardcodes` VALUES (1868, '安徽省', '马鞍山市', '花山区', '340503'); -INSERT INTO `cardcodes` VALUES (1869, '安徽省', '马鞍山市', '雨山区', '340504'); -INSERT INTO `cardcodes` VALUES (1870, '安徽省', '马鞍山市', '向山区', '340505'); -INSERT INTO `cardcodes` VALUES (1871, '安徽省', '马鞍山市', '当涂县', '340521'); -INSERT INTO `cardcodes` VALUES (1872, '安徽省', '淮北市', '市辖区', '340601'); -INSERT INTO `cardcodes` VALUES (1873, '安徽省', '淮北市', '杜集区', '340602'); -INSERT INTO `cardcodes` VALUES (1874, '安徽省', '淮北市', '相山区', '340603'); -INSERT INTO `cardcodes` VALUES (1875, '安徽省', '淮北市', '烈山区', '340604'); -INSERT INTO `cardcodes` VALUES (1876, '安徽省', '淮北市', '濉溪县', '340621'); -INSERT INTO `cardcodes` VALUES (1877, '安徽省', '铜陵市', '市辖区', '340701'); -INSERT INTO `cardcodes` VALUES (1878, '安徽省', '铜陵市', '铜官山区', '340702'); -INSERT INTO `cardcodes` VALUES (1879, '安徽省', '铜陵市', '狮子山区', '340703'); -INSERT INTO `cardcodes` VALUES (1880, '安徽省', '铜陵市', '郊区', '340711'); -INSERT INTO `cardcodes` VALUES (1881, '安徽省', '铜陵市', '铜陵县', '340721'); -INSERT INTO `cardcodes` VALUES (1882, '安徽省', '安庆市', '市辖区', '340801'); -INSERT INTO `cardcodes` VALUES (1883, '安徽省', '安庆市', '迎江区', '340802'); -INSERT INTO `cardcodes` VALUES (1884, '安徽省', '安庆市', '大观区', '340803'); -INSERT INTO `cardcodes` VALUES (1885, '安徽省', '安庆市', '郊区', '340811'); -INSERT INTO `cardcodes` VALUES (1886, '安徽省', '安庆市', '桐城县', '340821'); -INSERT INTO `cardcodes` VALUES (1887, '安徽省', '安庆市', '怀宁县', '340822'); -INSERT INTO `cardcodes` VALUES (1888, '安徽省', '安庆市', '枞阳县', '340823'); -INSERT INTO `cardcodes` VALUES (1889, '安徽省', '安庆市', '潜山县', '340824'); -INSERT INTO `cardcodes` VALUES (1890, '安徽省', '安庆市', '太湖县', '340825'); -INSERT INTO `cardcodes` VALUES (1891, '安徽省', '安庆市', '宿松县', '340826'); -INSERT INTO `cardcodes` VALUES (1892, '安徽省', '安庆市', '望江县', '340827'); -INSERT INTO `cardcodes` VALUES (1893, '安徽省', '安庆市', '岳西县', '340828'); -INSERT INTO `cardcodes` VALUES (1894, '安徽省', '安庆市', '桐城市', '340881'); -INSERT INTO `cardcodes` VALUES (1895, '安徽省', '黄山市', '市辖区', '341001'); -INSERT INTO `cardcodes` VALUES (1896, '安徽省', '黄山市', '屯溪区', '341002'); -INSERT INTO `cardcodes` VALUES (1897, '安徽省', '黄山市', '黄山区', '341003'); -INSERT INTO `cardcodes` VALUES (1898, '安徽省', '黄山市', '徽州区', '341004'); -INSERT INTO `cardcodes` VALUES (1899, '安徽省', '黄山市', '歙县', '341021'); -INSERT INTO `cardcodes` VALUES (1900, '安徽省', '黄山市', '休宁县', '341022'); -INSERT INTO `cardcodes` VALUES (1901, '安徽省', '黄山市', '黟县', '341023'); -INSERT INTO `cardcodes` VALUES (1902, '安徽省', '黄山市', '祁门县', '341024'); -INSERT INTO `cardcodes` VALUES (1903, '安徽省', '滁州市', '市辖区', '341101'); -INSERT INTO `cardcodes` VALUES (1904, '安徽省', '滁州市', '琅琊区', '341102'); -INSERT INTO `cardcodes` VALUES (1905, '安徽省', '滁州市', '南谯区', '341103'); -INSERT INTO `cardcodes` VALUES (1906, '安徽省', '滁州市', '天长县', '341121'); -INSERT INTO `cardcodes` VALUES (1907, '安徽省', '滁州市', '来安县', '341122'); -INSERT INTO `cardcodes` VALUES (1908, '安徽省', '滁州市', '全椒县', '341124'); -INSERT INTO `cardcodes` VALUES (1909, '安徽省', '滁州市', '定远县', '341125'); -INSERT INTO `cardcodes` VALUES (1910, '安徽省', '滁州市', '凤阳县', '341126'); -INSERT INTO `cardcodes` VALUES (1911, '安徽省', '滁州市', '嘉山县', '341127'); -INSERT INTO `cardcodes` VALUES (1912, '安徽省', '滁州市', '天长市', '341181'); -INSERT INTO `cardcodes` VALUES (1913, '安徽省', '滁州市', '明光市', '341182'); -INSERT INTO `cardcodes` VALUES (1914, '福建省', '宁德市', '市辖区', '350901'); -INSERT INTO `cardcodes` VALUES (1915, '福建省', '宁德市', '蕉城区', '350902'); -INSERT INTO `cardcodes` VALUES (1916, '福建省', '宁德市', '霞浦县', '350921'); -INSERT INTO `cardcodes` VALUES (1917, '福建省', '宁德市', '古田县', '350922'); -INSERT INTO `cardcodes` VALUES (1918, '福建省', '宁德市', '屏南县', '350923'); -INSERT INTO `cardcodes` VALUES (1919, '福建省', '宁德市', '寿宁县', '350924'); -INSERT INTO `cardcodes` VALUES (1920, '福建省', '宁德市', '周宁县', '350925'); -INSERT INTO `cardcodes` VALUES (1921, '福建省', '宁德市', '柘荣县', '350926'); -INSERT INTO `cardcodes` VALUES (1922, '福建省', '宁德市', '福安市', '350981'); -INSERT INTO `cardcodes` VALUES (1923, '福建省', '宁德市', '福鼎市', '350982'); -INSERT INTO `cardcodes` VALUES (1924, '福建省', '南平地区', '南平市', '352101'); -INSERT INTO `cardcodes` VALUES (1925, '福建省', '南平地区', '邵武市', '352102'); -INSERT INTO `cardcodes` VALUES (1926, '福建省', '南平地区', '武夷山市', '352103'); -INSERT INTO `cardcodes` VALUES (1927, '福建省', '南平地区', '建瓯市', '352104'); -INSERT INTO `cardcodes` VALUES (1928, '福建省', '南平地区', '顺昌县', '352121'); -INSERT INTO `cardcodes` VALUES (1929, '福建省', '南平地区', '建阳县', '352122'); -INSERT INTO `cardcodes` VALUES (1930, '福建省', '南平地区', '建瓯县', '352123'); -INSERT INTO `cardcodes` VALUES (1931, '福建省', '南平地区', '浦城县', '352124'); -INSERT INTO `cardcodes` VALUES (1932, '福建省', '南平地区', '邵武县', '352125'); -INSERT INTO `cardcodes` VALUES (1933, '福建省', '南平地区', '崇安县', '352126'); -INSERT INTO `cardcodes` VALUES (1934, '福建省', '南平地区', '光泽县', '352127'); -INSERT INTO `cardcodes` VALUES (1935, '福建省', '南平地区', '松溪县', '352128'); -INSERT INTO `cardcodes` VALUES (1936, '福建省', '南平地区', '政和县', '352129'); -INSERT INTO `cardcodes` VALUES (1937, '福建省', '宁德地区', '宁德市', '352201'); -INSERT INTO `cardcodes` VALUES (1938, '福建省', '宁德地区', '福安市', '352202'); -INSERT INTO `cardcodes` VALUES (1939, '福建省', '宁德地区', '福鼎市', '352203'); -INSERT INTO `cardcodes` VALUES (1940, '福建省', '宁德地区', '宁德县', '352221'); -INSERT INTO `cardcodes` VALUES (1941, '福建省', '宁德地区', '连江县', '352222'); -INSERT INTO `cardcodes` VALUES (1942, '福建省', '宁德地区', '罗源县', '352223'); -INSERT INTO `cardcodes` VALUES (1943, '福建省', '宁德地区', '福鼎县', '352224'); -INSERT INTO `cardcodes` VALUES (1944, '福建省', '宁德地区', '霞浦县', '352225'); -INSERT INTO `cardcodes` VALUES (1945, '福建省', '宁德地区', '福安县', '352226'); -INSERT INTO `cardcodes` VALUES (1946, '福建省', '宁德地区', '古田县', '352227'); -INSERT INTO `cardcodes` VALUES (1947, '福建省', '宁德地区', '屏南县', '352228'); -INSERT INTO `cardcodes` VALUES (1948, '福建省', '宁德地区', '寿宁县', '352229'); -INSERT INTO `cardcodes` VALUES (1949, '福建省', '宁德地区', '周宁县', '352230'); -INSERT INTO `cardcodes` VALUES (1950, '福建省', '宁德地区', '柘荣县', '352231'); -INSERT INTO `cardcodes` VALUES (1951, '福建省', '龙岩地区', '龙岩市', '352601'); -INSERT INTO `cardcodes` VALUES (1952, '福建省', '龙岩地区', '漳平市', '352602'); -INSERT INTO `cardcodes` VALUES (1953, '福建省', '龙岩地区', '长汀县', '352622'); -INSERT INTO `cardcodes` VALUES (1954, '福建省', '龙岩地区', '永定县', '352623'); -INSERT INTO `cardcodes` VALUES (1955, '福建省', '龙岩地区', '上杭县', '352624'); -INSERT INTO `cardcodes` VALUES (1956, '福建省', '龙岩地区', '武平县', '352625'); -INSERT INTO `cardcodes` VALUES (1957, '福建省', '龙岩地区', '漳平县', '352626'); -INSERT INTO `cardcodes` VALUES (1958, '福建省', '龙岩地区', '连城县', '352627'); -INSERT INTO `cardcodes` VALUES (1959, '福建省', '三明市', '三明市', '352701'); -INSERT INTO `cardcodes` VALUES (1960, '福建省', '三明市', '明溪县', '352721'); -INSERT INTO `cardcodes` VALUES (1961, '福建省', '三明市', '永安县', '352722'); -INSERT INTO `cardcodes` VALUES (1962, '福建省', '三明市', '清流县', '352723'); -INSERT INTO `cardcodes` VALUES (1963, '福建省', '三明市', '宁化县', '352724'); -INSERT INTO `cardcodes` VALUES (1964, '福建省', '三明市', '大田县', '352725'); -INSERT INTO `cardcodes` VALUES (1965, '福建省', '三明市', '尤溪县', '352726'); -INSERT INTO `cardcodes` VALUES (1966, '福建省', '三明市', '沙县', '352727'); -INSERT INTO `cardcodes` VALUES (1967, '福建省', '三明市', '将乐县', '352728'); -INSERT INTO `cardcodes` VALUES (1968, '福建省', '三明市', '泰宁县', '352729'); -INSERT INTO `cardcodes` VALUES (1969, '福建省', '三明市', '建宁县', '352730'); -INSERT INTO `cardcodes` VALUES (1970, '福建省', '福州市', '市辖区', '350101'); -INSERT INTO `cardcodes` VALUES (1971, '福建省', '福州市', '鼓楼区', '350102'); -INSERT INTO `cardcodes` VALUES (1972, '福建省', '福州市', '台江区', '350103'); -INSERT INTO `cardcodes` VALUES (1973, '福建省', '福州市', '仓山区', '350104'); -INSERT INTO `cardcodes` VALUES (1974, '福建省', '福州市', '马尾区', '350105'); -INSERT INTO `cardcodes` VALUES (1975, '福建省', '福州市', '晋安区', '350111'); -INSERT INTO `cardcodes` VALUES (1976, '福建省', '福州市', '市区', '350120'); -INSERT INTO `cardcodes` VALUES (1977, '福建省', '福州市', '闽侯县', '350121'); -INSERT INTO `cardcodes` VALUES (1978, '福建省', '福州市', '连江县', '350122'); -INSERT INTO `cardcodes` VALUES (1979, '福建省', '福州市', '罗源县', '350123'); -INSERT INTO `cardcodes` VALUES (1980, '福建省', '福州市', '闽清县', '350124'); -INSERT INTO `cardcodes` VALUES (1981, '福建省', '福州市', '永泰县', '350125'); -INSERT INTO `cardcodes` VALUES (1982, '福建省', '福州市', '长乐县', '350126'); -INSERT INTO `cardcodes` VALUES (1983, '福建省', '福州市', '福清县', '350127'); -INSERT INTO `cardcodes` VALUES (1984, '福建省', '福州市', '平潭县', '350128'); -INSERT INTO `cardcodes` VALUES (1985, '福建省', '福州市', '福清市', '350181'); -INSERT INTO `cardcodes` VALUES (1986, '福建省', '福州市', '长乐市', '350182'); -INSERT INTO `cardcodes` VALUES (1987, '福建省', '厦门市', '市辖区', '350201'); -INSERT INTO `cardcodes` VALUES (1988, '福建省', '厦门市', '鼓浪屿区', '350202'); -INSERT INTO `cardcodes` VALUES (1989, '福建省', '厦门市', '思明区', '350203'); -INSERT INTO `cardcodes` VALUES (1990, '福建省', '厦门市', '开元区', '350204'); -INSERT INTO `cardcodes` VALUES (1991, '福建省', '厦门市', '海沧区', '350205'); -INSERT INTO `cardcodes` VALUES (1992, '福建省', '厦门市', '湖里区', '350206'); -INSERT INTO `cardcodes` VALUES (1993, '福建省', '厦门市', '集美区', '350211'); -INSERT INTO `cardcodes` VALUES (1994, '福建省', '厦门市', '同安区', '350212'); -INSERT INTO `cardcodes` VALUES (1995, '福建省', '厦门市', '翔安区', '350213'); -INSERT INTO `cardcodes` VALUES (1996, '福建省', '莆田市', '市辖区', '350301'); -INSERT INTO `cardcodes` VALUES (1997, '福建省', '莆田市', '城厢区', '350302'); -INSERT INTO `cardcodes` VALUES (1998, '福建省', '莆田市', '涵江区', '350303'); -INSERT INTO `cardcodes` VALUES (1999, '福建省', '莆田市', '荔城区', '350304'); -INSERT INTO `cardcodes` VALUES (2000, '福建省', '莆田市', '秀屿区', '350305'); -INSERT INTO `cardcodes` VALUES (2001, '福建省', '莆田市', '莆田县', '350321'); -INSERT INTO `cardcodes` VALUES (2002, '福建省', '莆田市', '仙游县', '350322'); -INSERT INTO `cardcodes` VALUES (2003, '福建省', '三明市', '市辖区', '350401'); -INSERT INTO `cardcodes` VALUES (2004, '福建省', '三明市', '梅列区', '350402'); -INSERT INTO `cardcodes` VALUES (2005, '福建省', '三明市', '三元区', '350403'); -INSERT INTO `cardcodes` VALUES (2006, '福建省', '三明市', '永安市', '350404'); -INSERT INTO `cardcodes` VALUES (2007, '福建省', '三明市', '永安市', '350420'); -INSERT INTO `cardcodes` VALUES (2008, '福建省', '三明市', '明溪县', '350421'); -INSERT INTO `cardcodes` VALUES (2009, '福建省', '三明市', '永安县', '350422'); -INSERT INTO `cardcodes` VALUES (2010, '福建省', '三明市', '清流县', '350423'); -INSERT INTO `cardcodes` VALUES (2011, '福建省', '三明市', '宁化县', '350424'); -INSERT INTO `cardcodes` VALUES (2012, '福建省', '三明市', '大田县', '350425'); -INSERT INTO `cardcodes` VALUES (2013, '福建省', '三明市', '尤溪县', '350426'); -INSERT INTO `cardcodes` VALUES (2014, '福建省', '三明市', '沙县', '350427'); -INSERT INTO `cardcodes` VALUES (2015, '福建省', '三明市', '将乐县', '350428'); -INSERT INTO `cardcodes` VALUES (2016, '福建省', '三明市', '泰宁县', '350429'); -INSERT INTO `cardcodes` VALUES (2017, '福建省', '三明市', '建宁县', '350430'); -INSERT INTO `cardcodes` VALUES (2018, '福建省', '三明市', '永安市', '350481'); -INSERT INTO `cardcodes` VALUES (2019, '福建省', '泉州市', '市辖区', '350501'); -INSERT INTO `cardcodes` VALUES (2020, '福建省', '泉州市', '鲤城区', '350502'); -INSERT INTO `cardcodes` VALUES (2021, '福建省', '泉州市', '丰泽区', '350503'); -INSERT INTO `cardcodes` VALUES (2022, '福建省', '泉州市', '洛江区', '350504'); -INSERT INTO `cardcodes` VALUES (2023, '福建省', '泉州市', '泉港区', '350505'); -INSERT INTO `cardcodes` VALUES (2024, '福建省', '泉州市', '惠安县', '350521'); -INSERT INTO `cardcodes` VALUES (2025, '福建省', '泉州市', '晋江县', '350522'); -INSERT INTO `cardcodes` VALUES (2026, '福建省', '泉州市', '南安县', '350523'); -INSERT INTO `cardcodes` VALUES (2027, '福建省', '泉州市', '安溪县', '350524'); -INSERT INTO `cardcodes` VALUES (2028, '福建省', '泉州市', '永春县', '350525'); -INSERT INTO `cardcodes` VALUES (2029, '福建省', '泉州市', '德化县', '350526'); -INSERT INTO `cardcodes` VALUES (2030, '福建省', '泉州市', '金门县', '350527'); -INSERT INTO `cardcodes` VALUES (2031, '福建省', '泉州市', '石狮市', '350581'); -INSERT INTO `cardcodes` VALUES (2032, '福建省', '泉州市', '晋江市', '350582'); -INSERT INTO `cardcodes` VALUES (2033, '福建省', '泉州市', '南安市', '350583'); -INSERT INTO `cardcodes` VALUES (2034, '福建省', '漳州市', '市辖区', '350601'); -INSERT INTO `cardcodes` VALUES (2035, '福建省', '漳州市', '芗城区', '350602'); -INSERT INTO `cardcodes` VALUES (2036, '福建省', '漳州市', '龙文区', '350603'); -INSERT INTO `cardcodes` VALUES (2037, '福建省', '漳州市', '龙海县', '350621'); -INSERT INTO `cardcodes` VALUES (2038, '福建省', '漳州市', '云霄县', '350622'); -INSERT INTO `cardcodes` VALUES (2039, '福建省', '漳州市', '漳浦县', '350623'); -INSERT INTO `cardcodes` VALUES (2040, '福建省', '漳州市', '诏安县', '350624'); -INSERT INTO `cardcodes` VALUES (2041, '福建省', '漳州市', '长泰县', '350625'); -INSERT INTO `cardcodes` VALUES (2042, '福建省', '漳州市', '东山县', '350626'); -INSERT INTO `cardcodes` VALUES (2043, '福建省', '漳州市', '南靖县', '350627'); -INSERT INTO `cardcodes` VALUES (2044, '福建省', '漳州市', '平和县', '350628'); -INSERT INTO `cardcodes` VALUES (2045, '福建省', '漳州市', '华安县', '350629'); -INSERT INTO `cardcodes` VALUES (2046, '福建省', '漳州市', '龙海市', '350681'); -INSERT INTO `cardcodes` VALUES (2047, '福建省', '南平市', '市辖区', '350701'); -INSERT INTO `cardcodes` VALUES (2048, '福建省', '南平市', '延平区', '350702'); -INSERT INTO `cardcodes` VALUES (2049, '福建省', '南平市', '顺昌县', '350721'); -INSERT INTO `cardcodes` VALUES (2050, '福建省', '南平市', '浦城县', '350722'); -INSERT INTO `cardcodes` VALUES (2051, '福建省', '南平市', '光泽县', '350723'); -INSERT INTO `cardcodes` VALUES (2052, '福建省', '南平市', '松溪县', '350724'); -INSERT INTO `cardcodes` VALUES (2053, '福建省', '南平市', '政和县', '350725'); -INSERT INTO `cardcodes` VALUES (2054, '福建省', '南平市', '邵武市', '350781'); -INSERT INTO `cardcodes` VALUES (2055, '福建省', '南平市', '武夷山市', '350782'); -INSERT INTO `cardcodes` VALUES (2056, '福建省', '南平市', '建瓯市', '350783'); -INSERT INTO `cardcodes` VALUES (2057, '福建省', '南平市', '建阳市', '350784'); -INSERT INTO `cardcodes` VALUES (2058, '福建省', '龙岩市', '市辖区', '350801'); -INSERT INTO `cardcodes` VALUES (2059, '福建省', '龙岩市', '新罗区', '350802'); -INSERT INTO `cardcodes` VALUES (2060, '福建省', '龙岩市', '长汀县', '350821'); -INSERT INTO `cardcodes` VALUES (2061, '福建省', '龙岩市', '永定县', '350822'); -INSERT INTO `cardcodes` VALUES (2062, '福建省', '龙岩市', '上杭县', '350823'); -INSERT INTO `cardcodes` VALUES (2063, '福建省', '龙岩市', '武平县', '350824'); -INSERT INTO `cardcodes` VALUES (2064, '福建省', '龙岩市', '连城县', '350825'); -INSERT INTO `cardcodes` VALUES (2065, '福建省', '龙岩市', '漳平市', '350881'); -INSERT INTO `cardcodes` VALUES (2066, '福建省', NULL, '永安市', '359001'); -INSERT INTO `cardcodes` VALUES (2067, '福建省', NULL, '石狮市', '359002'); -INSERT INTO `cardcodes` VALUES (2068, '江西省', '南昌市', '市辖区', '360101'); -INSERT INTO `cardcodes` VALUES (2069, '江西省', '南昌市', '东湖区', '360102'); -INSERT INTO `cardcodes` VALUES (2070, '江西省', '南昌市', '西湖区', '360103'); -INSERT INTO `cardcodes` VALUES (2071, '江西省', '南昌市', '青云谱区', '360104'); -INSERT INTO `cardcodes` VALUES (2072, '江西省', '南昌市', '湾里区', '360105'); -INSERT INTO `cardcodes` VALUES (2073, '江西省', '南昌市', '郊区', '360111'); -INSERT INTO `cardcodes` VALUES (2074, '江西省', '南昌市', '南昌县', '360121'); -INSERT INTO `cardcodes` VALUES (2075, '江西省', '南昌市', '新建县', '360122'); -INSERT INTO `cardcodes` VALUES (2076, '江西省', '南昌市', '安义县', '360123'); -INSERT INTO `cardcodes` VALUES (2077, '江西省', '南昌市', '进贤县', '360124'); -INSERT INTO `cardcodes` VALUES (2078, '江西省', '景德镇市', '市辖区', '360201'); -INSERT INTO `cardcodes` VALUES (2079, '江西省', '景德镇市', '昌江区', '360202'); -INSERT INTO `cardcodes` VALUES (2080, '江西省', '景德镇市', '珠山区', '360203'); -INSERT INTO `cardcodes` VALUES (2081, '江西省', '景德镇市', '鹅湖区', '360211'); -INSERT INTO `cardcodes` VALUES (2082, '江西省', '景德镇市', '蛟潭区', '360212'); -INSERT INTO `cardcodes` VALUES (2083, '江西省', '景德镇市', '乐平县', '360221'); -INSERT INTO `cardcodes` VALUES (2084, '江西省', '景德镇市', '浮梁县', '360222'); -INSERT INTO `cardcodes` VALUES (2085, '江西省', '景德镇市', '乐平市', '360281'); -INSERT INTO `cardcodes` VALUES (2086, '江西省', '上饶市', '鄱阳县', '361128'); -INSERT INTO `cardcodes` VALUES (2087, '江西省', '上饶市', '万年县', '361129'); -INSERT INTO `cardcodes` VALUES (2088, '江西省', '上饶市', '婺源县', '361130'); -INSERT INTO `cardcodes` VALUES (2089, '江西省', '上饶市', '德兴市', '361181'); -INSERT INTO `cardcodes` VALUES (2090, '江西省', '上饶市', '市辖区', '361101'); -INSERT INTO `cardcodes` VALUES (2091, '江西省', '上饶市', '信州区', '361102'); -INSERT INTO `cardcodes` VALUES (2092, '江西省', '上饶市', '上饶县', '361121'); -INSERT INTO `cardcodes` VALUES (2093, '江西省', '上饶市', '广丰县', '361122'); -INSERT INTO `cardcodes` VALUES (2094, '江西省', '上饶市', '玉山县', '361123'); -INSERT INTO `cardcodes` VALUES (2095, '江西省', '上饶市', '铅山县', '361124'); -INSERT INTO `cardcodes` VALUES (2096, '江西省', '上饶市', '横峰县', '361125'); -INSERT INTO `cardcodes` VALUES (2097, '江西省', '上饶市', '弋阳县', '361126'); -INSERT INTO `cardcodes` VALUES (2098, '江西省', '上饶市', '余干县', '361127'); -INSERT INTO `cardcodes` VALUES (2099, '江西省', '赣州地区', '赣州市', '362101'); -INSERT INTO `cardcodes` VALUES (2100, '江西省', '赣州地区', '瑞金市', '362102'); -INSERT INTO `cardcodes` VALUES (2101, '江西省', '赣州地区', '南康市', '362103'); -INSERT INTO `cardcodes` VALUES (2102, '江西省', '赣州地区', '赣县', '362121'); -INSERT INTO `cardcodes` VALUES (2103, '江西省', '赣州地区', '南康市', '362122'); -INSERT INTO `cardcodes` VALUES (2104, '江西省', '赣州地区', '信丰县', '362123'); -INSERT INTO `cardcodes` VALUES (2105, '江西省', '赣州地区', '大余县', '362124'); -INSERT INTO `cardcodes` VALUES (2106, '江西省', '赣州地区', '上犹县', '362125'); -INSERT INTO `cardcodes` VALUES (2107, '江西省', '赣州地区', '崇义县', '362126'); -INSERT INTO `cardcodes` VALUES (2108, '江西省', '赣州地区', '安远县', '362127'); -INSERT INTO `cardcodes` VALUES (2109, '江西省', '赣州地区', '龙南县', '362128'); -INSERT INTO `cardcodes` VALUES (2110, '江西省', '赣州地区', '定南县', '362129'); -INSERT INTO `cardcodes` VALUES (2111, '江西省', '赣州地区', '全南县', '362130'); -INSERT INTO `cardcodes` VALUES (2112, '江西省', '赣州地区', '宁都县', '362131'); -INSERT INTO `cardcodes` VALUES (2113, '江西省', '赣州地区', '于都县', '362132'); -INSERT INTO `cardcodes` VALUES (2114, '江西省', '赣州地区', '兴国县', '362133'); -INSERT INTO `cardcodes` VALUES (2115, '江西省', '赣州地区', '瑞金市', '362134'); -INSERT INTO `cardcodes` VALUES (2116, '江西省', '赣州地区', '会昌县', '362135'); -INSERT INTO `cardcodes` VALUES (2117, '江西省', '赣州地区', '寻乌县', '362136'); -INSERT INTO `cardcodes` VALUES (2118, '江西省', '赣州地区', '石城县', '362137'); -INSERT INTO `cardcodes` VALUES (2119, '江西省', '赣州地区', '广昌县', '362138'); -INSERT INTO `cardcodes` VALUES (2120, '江西省', '宜春地区', '宜春市', '362201'); -INSERT INTO `cardcodes` VALUES (2121, '江西省', '宜春地区', '丰城市', '362202'); -INSERT INTO `cardcodes` VALUES (2122, '江西省', '宜春地区', '樟树市', '362203'); -INSERT INTO `cardcodes` VALUES (2123, '江西省', '宜春地区', '高安市', '362204'); -INSERT INTO `cardcodes` VALUES (2124, '江西省', '宜春地区', '丰城县', '362221'); -INSERT INTO `cardcodes` VALUES (2125, '江西省', '宜春地区', '高安县', '362222'); -INSERT INTO `cardcodes` VALUES (2126, '江西省', '宜春地区', '清江县', '362223'); -INSERT INTO `cardcodes` VALUES (2127, '江西省', '宜春地区', '新余县', '362224'); -INSERT INTO `cardcodes` VALUES (2128, '江西省', '宜春地区', '宜春县', '362225'); -INSERT INTO `cardcodes` VALUES (2129, '江西省', '宜春地区', '奉新县', '362226'); -INSERT INTO `cardcodes` VALUES (2130, '江西省', '宜春地区', '万载县', '362227'); -INSERT INTO `cardcodes` VALUES (2131, '江西省', '宜春地区', '上高县', '362228'); -INSERT INTO `cardcodes` VALUES (2132, '江西省', '宜春地区', '宜丰县', '362229'); -INSERT INTO `cardcodes` VALUES (2133, '江西省', '宜春地区', '分宜县', '362230'); -INSERT INTO `cardcodes` VALUES (2134, '江西省', '宜春地区', '安义县', '362231'); -INSERT INTO `cardcodes` VALUES (2135, '江西省', '宜春地区', '靖安县', '362232'); -INSERT INTO `cardcodes` VALUES (2136, '江西省', '宜春地区', '铜鼓县', '362233'); -INSERT INTO `cardcodes` VALUES (2137, '江西省', '上饶地区', '上饶市', '362301'); -INSERT INTO `cardcodes` VALUES (2138, '江西省', '上饶地区', '德兴市', '362302'); -INSERT INTO `cardcodes` VALUES (2139, '江西省', '上饶地区', '上饶县', '362321'); -INSERT INTO `cardcodes` VALUES (2140, '江西省', '上饶地区', '广丰县', '362322'); -INSERT INTO `cardcodes` VALUES (2141, '江西省', '上饶地区', '玉山县', '362323'); -INSERT INTO `cardcodes` VALUES (2142, '江西省', '上饶地区', '铅山县', '362324'); -INSERT INTO `cardcodes` VALUES (2143, '江西省', '上饶地区', '横峰县', '362325'); -INSERT INTO `cardcodes` VALUES (2144, '江西省', '上饶地区', '弋阳县', '362326'); -INSERT INTO `cardcodes` VALUES (2145, '江西省', '上饶地区', '贵溪县', '362327'); -INSERT INTO `cardcodes` VALUES (2146, '江西省', '上饶地区', '余江县', '362328'); -INSERT INTO `cardcodes` VALUES (2147, '江西省', '上饶地区', '余干县', '362329'); -INSERT INTO `cardcodes` VALUES (2148, '江西省', '上饶地区', '波阳县', '362330'); -INSERT INTO `cardcodes` VALUES (2149, '江西省', '上饶地区', '万年县', '362331'); -INSERT INTO `cardcodes` VALUES (2150, '江西省', '上饶地区', '乐平县', '362332'); -INSERT INTO `cardcodes` VALUES (2151, '江西省', '上饶地区', '德兴县', '362333'); -INSERT INTO `cardcodes` VALUES (2152, '江西省', '上饶地区', '婺源县', '362334'); -INSERT INTO `cardcodes` VALUES (2153, '江西省', '萍乡市', '市辖区', '360301'); -INSERT INTO `cardcodes` VALUES (2154, '江西省', '萍乡市', '安源区', '360302'); -INSERT INTO `cardcodes` VALUES (2155, '江西省', '萍乡市', '上栗区', '360311'); -INSERT INTO `cardcodes` VALUES (2156, '江西省', '萍乡市', '芦溪区', '360312'); -INSERT INTO `cardcodes` VALUES (2157, '江西省', '萍乡市', '湘东区', '360313'); -INSERT INTO `cardcodes` VALUES (2158, '江西省', '萍乡市', '莲花县', '360321'); -INSERT INTO `cardcodes` VALUES (2159, '江西省', '萍乡市', '上栗县', '360322'); -INSERT INTO `cardcodes` VALUES (2160, '江西省', '萍乡市', '芦溪县', '360323'); -INSERT INTO `cardcodes` VALUES (2161, '江西省', '九江市', '市辖区', '360401'); -INSERT INTO `cardcodes` VALUES (2162, '江西省', '九江市', '庐山区', '360402'); -INSERT INTO `cardcodes` VALUES (2163, '江西省', '九江市', '浔阳区', '360403'); -INSERT INTO `cardcodes` VALUES (2164, '江西省', '九江市', '九江县', '360421'); -INSERT INTO `cardcodes` VALUES (2165, '江西省', '九江市', '瑞昌县', '360422'); -INSERT INTO `cardcodes` VALUES (2166, '江西省', '九江市', '武宁县', '360423'); -INSERT INTO `cardcodes` VALUES (2167, '江西省', '九江市', '修水县', '360424'); -INSERT INTO `cardcodes` VALUES (2168, '江西省', '九江市', '永修县', '360425'); -INSERT INTO `cardcodes` VALUES (2169, '江西省', '九江市', '德安县', '360426'); -INSERT INTO `cardcodes` VALUES (2170, '江西省', '九江市', '星子县', '360427'); -INSERT INTO `cardcodes` VALUES (2171, '江西省', '九江市', '都昌县', '360428'); -INSERT INTO `cardcodes` VALUES (2172, '江西省', '九江市', '湖口县', '360429'); -INSERT INTO `cardcodes` VALUES (2173, '江西省', '九江市', '彭泽县', '360430'); -INSERT INTO `cardcodes` VALUES (2174, '江西省', '九江市', '瑞昌市', '360481'); -INSERT INTO `cardcodes` VALUES (2175, '江西省', '新余市', '市辖区', '360501'); -INSERT INTO `cardcodes` VALUES (2176, '江西省', '新余市', '渝水区', '360502'); -INSERT INTO `cardcodes` VALUES (2177, '江西省', '新余市', '分宜县', '360521'); -INSERT INTO `cardcodes` VALUES (2178, '江西省', '鹰潭市', '市辖区', '360601'); -INSERT INTO `cardcodes` VALUES (2179, '江西省', '鹰潭市', '月湖区', '360602'); -INSERT INTO `cardcodes` VALUES (2180, '江西省', '鹰潭市', '贵溪县', '360621'); -INSERT INTO `cardcodes` VALUES (2181, '江西省', '鹰潭市', '余江县', '360622'); -INSERT INTO `cardcodes` VALUES (2182, '江西省', '鹰潭市', '贵溪市', '360681'); -INSERT INTO `cardcodes` VALUES (2183, '江西省', '赣州市', '市辖区', '360701'); -INSERT INTO `cardcodes` VALUES (2184, '江西省', '赣州市', '章贡区', '360702'); -INSERT INTO `cardcodes` VALUES (2185, '江西省', '赣州市', '赣县', '360721'); -INSERT INTO `cardcodes` VALUES (2186, '江西省', '赣州市', '信丰县', '360722'); -INSERT INTO `cardcodes` VALUES (2187, '江西省', '赣州市', '大余县', '360723'); -INSERT INTO `cardcodes` VALUES (2188, '江西省', '赣州市', '上犹县', '360724'); -INSERT INTO `cardcodes` VALUES (2189, '江西省', '赣州市', '崇义县', '360725'); -INSERT INTO `cardcodes` VALUES (2190, '江西省', '赣州市', '安远县', '360726'); -INSERT INTO `cardcodes` VALUES (2191, '江西省', '赣州市', '龙南县', '360727'); -INSERT INTO `cardcodes` VALUES (2192, '江西省', '赣州市', '定南县', '360728'); -INSERT INTO `cardcodes` VALUES (2193, '江西省', '赣州市', '全南县', '360729'); -INSERT INTO `cardcodes` VALUES (2194, '江西省', '赣州市', '宁都县', '360730'); -INSERT INTO `cardcodes` VALUES (2195, '江西省', '赣州市', '于都县', '360731'); -INSERT INTO `cardcodes` VALUES (2196, '江西省', '赣州市', '兴国县', '360732'); -INSERT INTO `cardcodes` VALUES (2197, '江西省', '赣州市', '会昌县', '360733'); -INSERT INTO `cardcodes` VALUES (2198, '江西省', '赣州市', '寻乌县', '360734'); -INSERT INTO `cardcodes` VALUES (2199, '江西省', '赣州市', '石城县', '360735'); -INSERT INTO `cardcodes` VALUES (2200, '江西省', '赣州市', '瑞金市', '360781'); -INSERT INTO `cardcodes` VALUES (2201, '江西省', '赣州市', '南康市', '360782'); -INSERT INTO `cardcodes` VALUES (2202, '江西省', '吉安市', '市辖区', '360801'); -INSERT INTO `cardcodes` VALUES (2203, '江西省', '吉安市', '吉州区', '360802'); -INSERT INTO `cardcodes` VALUES (2204, '江西省', '吉安市', '青原区', '360803'); -INSERT INTO `cardcodes` VALUES (2205, '江西省', '吉安市', '吉安县', '360821'); -INSERT INTO `cardcodes` VALUES (2206, '江西省', '吉安市', '吉水县', '360822'); -INSERT INTO `cardcodes` VALUES (2207, '江西省', '吉安市', '峡江县', '360823'); -INSERT INTO `cardcodes` VALUES (2208, '江西省', '吉安市', '新干县', '360824'); -INSERT INTO `cardcodes` VALUES (2209, '江西省', '吉安市', '永丰县', '360825'); -INSERT INTO `cardcodes` VALUES (2210, '江西省', '吉安市', '泰和县', '360826'); -INSERT INTO `cardcodes` VALUES (2211, '江西省', '吉安市', '遂川县', '360827'); -INSERT INTO `cardcodes` VALUES (2212, '江西省', '吉安市', '万安县', '360828'); -INSERT INTO `cardcodes` VALUES (2213, '江西省', '吉安市', '安福县', '360829'); -INSERT INTO `cardcodes` VALUES (2214, '江西省', '吉安市', '永新县', '360830'); -INSERT INTO `cardcodes` VALUES (2215, '江西省', '吉安市', '井冈山市', '360881'); -INSERT INTO `cardcodes` VALUES (2216, '江西省', '宜春市', '市辖区', '360901'); -INSERT INTO `cardcodes` VALUES (2217, '江西省', '宜春市', '袁州区', '360902'); -INSERT INTO `cardcodes` VALUES (2218, '江西省', '宜春市', '奉新县', '360921'); -INSERT INTO `cardcodes` VALUES (2219, '江西省', '宜春市', '万载县', '360922'); -INSERT INTO `cardcodes` VALUES (2220, '江西省', '宜春市', '上高县', '360923'); -INSERT INTO `cardcodes` VALUES (2221, '江西省', '宜春市', '宜丰县', '360924'); -INSERT INTO `cardcodes` VALUES (2222, '江西省', '宜春市', '靖安县', '360925'); -INSERT INTO `cardcodes` VALUES (2223, '江西省', '宜春市', '铜鼓县', '360926'); -INSERT INTO `cardcodes` VALUES (2224, '江西省', '宜春市', '丰城市', '360981'); -INSERT INTO `cardcodes` VALUES (2225, '江西省', '宜春市', '樟树市', '360982'); -INSERT INTO `cardcodes` VALUES (2226, '江西省', '宜春市', '高安市', '360983'); -INSERT INTO `cardcodes` VALUES (2227, '江西省', '抚州市', '市辖区', '361001'); -INSERT INTO `cardcodes` VALUES (2228, '江西省', '抚州市', '临川区', '361002'); -INSERT INTO `cardcodes` VALUES (2229, '江西省', '抚州市', '南城县', '361021'); -INSERT INTO `cardcodes` VALUES (2230, '江西省', '抚州市', '黎川县', '361022'); -INSERT INTO `cardcodes` VALUES (2231, '江西省', '抚州市', '南丰县', '361023'); -INSERT INTO `cardcodes` VALUES (2232, '江西省', '抚州市', '崇仁县', '361024'); -INSERT INTO `cardcodes` VALUES (2233, '江西省', '抚州市', '乐安县', '361025'); -INSERT INTO `cardcodes` VALUES (2234, '江西省', '抚州市', '宜黄县', '361026'); -INSERT INTO `cardcodes` VALUES (2235, '江西省', '抚州市', '金溪县', '361027'); -INSERT INTO `cardcodes` VALUES (2236, '江西省', '抚州市', '资溪县', '361028'); -INSERT INTO `cardcodes` VALUES (2237, '江西省', '抚州市', '东乡县', '361029'); -INSERT INTO `cardcodes` VALUES (2238, '江西省', '抚州市', '广昌县', '361030'); -INSERT INTO `cardcodes` VALUES (2239, '江西省', '吉安地区', '吉安市', '362401'); -INSERT INTO `cardcodes` VALUES (2240, '江西省', '吉安地区', '井冈山市', '362402'); -INSERT INTO `cardcodes` VALUES (2241, '江西省', '吉安地区', '吉安县', '362421'); -INSERT INTO `cardcodes` VALUES (2242, '江西省', '吉安地区', '吉水县', '362422'); -INSERT INTO `cardcodes` VALUES (2243, '江西省', '吉安地区', '峡江县', '362423'); -INSERT INTO `cardcodes` VALUES (2244, '江西省', '吉安地区', '新干县', '362424'); -INSERT INTO `cardcodes` VALUES (2245, '江西省', '吉安地区', '永丰县', '362425'); -INSERT INTO `cardcodes` VALUES (2246, '江西省', '吉安地区', '泰和县', '362426'); -INSERT INTO `cardcodes` VALUES (2247, '江西省', '吉安地区', '遂川县', '362427'); -INSERT INTO `cardcodes` VALUES (2248, '江西省', '吉安地区', '万安县', '362428'); -INSERT INTO `cardcodes` VALUES (2249, '江西省', '吉安地区', '安福县', '362429'); -INSERT INTO `cardcodes` VALUES (2250, '江西省', '吉安地区', '永新县', '362430'); -INSERT INTO `cardcodes` VALUES (2251, '江西省', '吉安地区', '莲花县', '362431'); -INSERT INTO `cardcodes` VALUES (2252, '江西省', '吉安地区', '宁冈县', '362432'); -INSERT INTO `cardcodes` VALUES (2253, '江西省', '吉安地区', '井岗山县', '362433'); -INSERT INTO `cardcodes` VALUES (2254, '江西省', '抚州地区', '临川市', '362501'); -INSERT INTO `cardcodes` VALUES (2255, '江西省', '抚州地区', '临川市', '362502'); -INSERT INTO `cardcodes` VALUES (2256, '江西省', '抚州地区', '临川县', '362521'); -INSERT INTO `cardcodes` VALUES (2257, '江西省', '抚州地区', '南城县', '362522'); -INSERT INTO `cardcodes` VALUES (2258, '江西省', '抚州地区', '黎川县', '362523'); -INSERT INTO `cardcodes` VALUES (2259, '江西省', '抚州地区', '南丰县', '362524'); -INSERT INTO `cardcodes` VALUES (2260, '江西省', '抚州地区', '崇仁县', '362525'); -INSERT INTO `cardcodes` VALUES (2261, '江西省', '抚州地区', '乐安县', '362526'); -INSERT INTO `cardcodes` VALUES (2262, '江西省', '抚州地区', '宜黄县', '362527'); -INSERT INTO `cardcodes` VALUES (2263, '江西省', '抚州地区', '金溪县', '362528'); -INSERT INTO `cardcodes` VALUES (2264, '江西省', '抚州地区', '资溪县', '362529'); -INSERT INTO `cardcodes` VALUES (2265, '江西省', '抚州地区', '进贤县', '362530'); -INSERT INTO `cardcodes` VALUES (2266, '江西省', '抚州地区', '东乡县', '362531'); -INSERT INTO `cardcodes` VALUES (2267, '江西省', '抚州地区', '广昌县', '362532'); -INSERT INTO `cardcodes` VALUES (2268, '江西省', '九江地区', '九江县', '362621'); -INSERT INTO `cardcodes` VALUES (2269, '江西省', '九江地区', '瑞昌县', '362622'); -INSERT INTO `cardcodes` VALUES (2270, '江西省', '九江地区', '武宁县', '362623'); -INSERT INTO `cardcodes` VALUES (2271, '江西省', '九江地区', '修水县', '362624'); -INSERT INTO `cardcodes` VALUES (2272, '江西省', '九江地区', '永修县', '362625'); -INSERT INTO `cardcodes` VALUES (2273, '江西省', '九江地区', '德安县', '362626'); -INSERT INTO `cardcodes` VALUES (2274, '江西省', '九江地区', '星子县', '362627'); -INSERT INTO `cardcodes` VALUES (2275, '江西省', '九江地区', '都昌县', '362628'); -INSERT INTO `cardcodes` VALUES (2276, '江西省', '九江地区', '湖口县', '362629'); -INSERT INTO `cardcodes` VALUES (2277, '江西省', '九江地区', '彭泽县', '362630'); -INSERT INTO `cardcodes` VALUES (2278, '山东省', '青岛市', '崂山区', '370212'); -INSERT INTO `cardcodes` VALUES (2279, '山东省', '青岛市', '李沧区', '370213'); -INSERT INTO `cardcodes` VALUES (2280, '山东省', '青岛市', '城阳区', '370214'); -INSERT INTO `cardcodes` VALUES (2281, '山东省', '青岛市', '市区', '370220'); -INSERT INTO `cardcodes` VALUES (2282, '山东省', '青岛市', '崂山县', '370221'); -INSERT INTO `cardcodes` VALUES (2283, '山东省', '青岛市', '即墨县', '370222'); -INSERT INTO `cardcodes` VALUES (2284, '山东省', '青岛市', '胶南县', '370223'); -INSERT INTO `cardcodes` VALUES (2285, '山东省', '青岛市', '胶县', '370224'); -INSERT INTO `cardcodes` VALUES (2286, '山东省', '青岛市', '莱西县', '370225'); -INSERT INTO `cardcodes` VALUES (2287, '山东省', '青岛市', '平度县', '370226'); -INSERT INTO `cardcodes` VALUES (2288, '山东省', '青岛市', '胶州市', '370281'); -INSERT INTO `cardcodes` VALUES (2289, '山东省', '青岛市', '即墨市', '370282'); -INSERT INTO `cardcodes` VALUES (2290, '山东省', '青岛市', '平度市', '370283'); -INSERT INTO `cardcodes` VALUES (2291, '山东省', '青岛市', '胶南市', '370284'); -INSERT INTO `cardcodes` VALUES (2292, '山东省', '青岛市', '莱西市', '370285'); -INSERT INTO `cardcodes` VALUES (2293, '山东省', '青岛市', '市辖区', '370201'); -INSERT INTO `cardcodes` VALUES (2294, '山东省', '青岛市', '市南区', '370202'); -INSERT INTO `cardcodes` VALUES (2295, '山东省', '青岛市', '市北区', '370203'); -INSERT INTO `cardcodes` VALUES (2296, '山东省', '青岛市', '台东区', '370204'); -INSERT INTO `cardcodes` VALUES (2297, '山东省', '青岛市', '四方区', '370205'); -INSERT INTO `cardcodes` VALUES (2298, '山东省', '青岛市', '沧口区', '370206'); -INSERT INTO `cardcodes` VALUES (2299, '山东省', '青岛市', '黄岛区', '370211'); -INSERT INTO `cardcodes` VALUES (2300, '山东省', '淄博市', '市辖区', '370301'); -INSERT INTO `cardcodes` VALUES (2301, '山东省', '淄博市', '淄川区', '370302'); -INSERT INTO `cardcodes` VALUES (2302, '山东省', '淄博市', '张店区', '370303'); -INSERT INTO `cardcodes` VALUES (2303, '山东省', '淄博市', '博山区', '370304'); -INSERT INTO `cardcodes` VALUES (2304, '山东省', '淄博市', '临淄区', '370305'); -INSERT INTO `cardcodes` VALUES (2305, '山东省', '淄博市', '周村区', '370306'); -INSERT INTO `cardcodes` VALUES (2306, '山东省', '淄博市', '桓台县', '370321'); -INSERT INTO `cardcodes` VALUES (2307, '山东省', '淄博市', '高青县', '370322'); -INSERT INTO `cardcodes` VALUES (2308, '山东省', '淄博市', '沂源县', '370323'); -INSERT INTO `cardcodes` VALUES (2309, '山东省', '枣庄市', '市辖区', '370401'); -INSERT INTO `cardcodes` VALUES (2310, '山东省', '枣庄市', '市中区', '370402'); -INSERT INTO `cardcodes` VALUES (2311, '山东省', '枣庄市', '薛城区', '370403'); -INSERT INTO `cardcodes` VALUES (2312, '山东省', '枣庄市', '峄城区', '370404'); -INSERT INTO `cardcodes` VALUES (2313, '山东省', '枣庄市', '台儿庄区', '370405'); -INSERT INTO `cardcodes` VALUES (2314, '山东省', '枣庄市', '山亭区', '370406'); -INSERT INTO `cardcodes` VALUES (2315, '山东省', '枣庄市', '市区', '370420'); -INSERT INTO `cardcodes` VALUES (2316, '山东省', '枣庄市', '滕县', '370421'); -INSERT INTO `cardcodes` VALUES (2317, '山东省', '枣庄市', '滕州市', '370481'); -INSERT INTO `cardcodes` VALUES (2318, '山东省', '东营市', '市辖区', '370501'); -INSERT INTO `cardcodes` VALUES (2319, '山东省', '东营市', '东营区', '370502'); -INSERT INTO `cardcodes` VALUES (2320, '山东省', '东营市', '河口区', '370503'); -INSERT INTO `cardcodes` VALUES (2321, '山东省', '东营市', '垦利县', '370521'); -INSERT INTO `cardcodes` VALUES (2322, '山东省', '东营市', '利津县', '370522'); -INSERT INTO `cardcodes` VALUES (2323, '山东省', '东营市', '广饶县', '370523'); -INSERT INTO `cardcodes` VALUES (2324, '山东省', '烟台市', '市辖区', '370601'); -INSERT INTO `cardcodes` VALUES (2325, '山东省', '烟台市', '芝罘区', '370602'); -INSERT INTO `cardcodes` VALUES (2326, '山东省', '烟台市', '福山区', '370611'); -INSERT INTO `cardcodes` VALUES (2327, '山东省', '烟台市', '牟平区', '370612'); -INSERT INTO `cardcodes` VALUES (2328, '山东省', '烟台市', '莱山区', '370613'); -INSERT INTO `cardcodes` VALUES (2329, '山东省', '烟台市', '龙口市', '370619'); -INSERT INTO `cardcodes` VALUES (2330, '山东省', '烟台市', '威海市', '370620'); -INSERT INTO `cardcodes` VALUES (2331, '山东省', '烟台市', '蓬莱县', '370622'); -INSERT INTO `cardcodes` VALUES (2332, '山东省', '烟台市', '黄县', '370623'); -INSERT INTO `cardcodes` VALUES (2333, '山东省', '烟台市', '招远县', '370624'); -INSERT INTO `cardcodes` VALUES (2334, '山东省', '烟台市', '掖县', '370625'); -INSERT INTO `cardcodes` VALUES (2335, '山东省', '烟台市', '莱阳县', '370627'); -INSERT INTO `cardcodes` VALUES (2336, '山东省', '烟台市', '栖霞县', '370628'); -INSERT INTO `cardcodes` VALUES (2337, '山东省', '烟台市', '海阳县', '370629'); -INSERT INTO `cardcodes` VALUES (2338, '山东省', '烟台市', '牟平县', '370631'); -INSERT INTO `cardcodes` VALUES (2339, '山东省', '烟台市', '文登县', '370632'); -INSERT INTO `cardcodes` VALUES (2340, '山东省', '烟台市', '荣城县', '370633'); -INSERT INTO `cardcodes` VALUES (2341, '山东省', '烟台市', '长岛县', '370634'); -INSERT INTO `cardcodes` VALUES (2342, '山东省', '烟台市', '龙口市', '370681'); -INSERT INTO `cardcodes` VALUES (2343, '山东省', '烟台市', '莱阳市', '370682'); -INSERT INTO `cardcodes` VALUES (2344, '山东省', '烟台市', '莱州市', '370683'); -INSERT INTO `cardcodes` VALUES (2345, '山东省', '烟台市', '蓬莱市', '370684'); -INSERT INTO `cardcodes` VALUES (2346, '山东省', '烟台市', '招远市', '370685'); -INSERT INTO `cardcodes` VALUES (2347, '山东省', '烟台市', '栖霞市', '370686'); -INSERT INTO `cardcodes` VALUES (2348, '山东省', '烟台市', '海阳市', '370687'); -INSERT INTO `cardcodes` VALUES (2349, '山东省', '潍坊市', '市辖区', '370701'); -INSERT INTO `cardcodes` VALUES (2350, '山东省', '潍坊市', '潍城区', '370702'); -INSERT INTO `cardcodes` VALUES (2351, '山东省', '潍坊市', '寒亭区', '370703'); -INSERT INTO `cardcodes` VALUES (2352, '山东省', '潍坊市', '坊子区', '370704'); -INSERT INTO `cardcodes` VALUES (2353, '山东省', '潍坊市', '奎文区', '370705'); -INSERT INTO `cardcodes` VALUES (2354, '山东省', '潍坊市', '青州市', '370719'); -INSERT INTO `cardcodes` VALUES (2355, '山东省', '潍坊市', '益都县', '370721'); -INSERT INTO `cardcodes` VALUES (2356, '山东省', '潍坊市', '安丘县', '370722'); -INSERT INTO `cardcodes` VALUES (2357, '山东省', '潍坊市', '寿光县', '370723'); -INSERT INTO `cardcodes` VALUES (2358, '山东省', '潍坊市', '临朐县', '370724'); -INSERT INTO `cardcodes` VALUES (2359, '山东省', '潍坊市', '昌乐县', '370725'); -INSERT INTO `cardcodes` VALUES (2360, '山东省', '潍坊市', '昌邑县', '370726'); -INSERT INTO `cardcodes` VALUES (2361, '山东省', '潍坊市', '高密县', '370727'); -INSERT INTO `cardcodes` VALUES (2362, '山东省', '潍坊市', '诸城县', '370728'); -INSERT INTO `cardcodes` VALUES (2363, '山东省', '潍坊市', '五莲县', '370729'); -INSERT INTO `cardcodes` VALUES (2364, '山东省', '潍坊市', '青州市', '370781'); -INSERT INTO `cardcodes` VALUES (2365, '山东省', '潍坊市', '诸城市', '370782'); -INSERT INTO `cardcodes` VALUES (2366, '山东省', '潍坊市', '寿光市', '370783'); -INSERT INTO `cardcodes` VALUES (2367, '山东省', '潍坊市', '安丘市', '370784'); -INSERT INTO `cardcodes` VALUES (2368, '山东省', '潍坊市', '高密市', '370785'); -INSERT INTO `cardcodes` VALUES (2369, '山东省', '潍坊市', '昌邑市', '370786'); -INSERT INTO `cardcodes` VALUES (2370, '山东省', '济宁市', '市辖区', '370801'); -INSERT INTO `cardcodes` VALUES (2371, '山东省', '济宁市', '市中区', '370802'); -INSERT INTO `cardcodes` VALUES (2372, '山东省', '济宁市', '任城区', '370811'); -INSERT INTO `cardcodes` VALUES (2373, '山东省', '济宁市', '曲阜市', '370819'); -INSERT INTO `cardcodes` VALUES (2374, '山东省', '济宁市', '兖州县', '370822'); -INSERT INTO `cardcodes` VALUES (2375, '山东省', '济宁市', '曲阜县', '370823'); -INSERT INTO `cardcodes` VALUES (2376, '山东省', '济宁市', '邹县', '370825'); -INSERT INTO `cardcodes` VALUES (2377, '山东省', '济宁市', '微山县', '370826'); -INSERT INTO `cardcodes` VALUES (2378, '山东省', '济宁市', '鱼台县', '370827'); -INSERT INTO `cardcodes` VALUES (2379, '山东省', '济宁市', '金乡县', '370828'); -INSERT INTO `cardcodes` VALUES (2380, '山东省', '济宁市', '嘉祥县', '370829'); -INSERT INTO `cardcodes` VALUES (2381, '山东省', '济宁市', '汶上县', '370830'); -INSERT INTO `cardcodes` VALUES (2382, '山东省', '济宁市', '泗水县', '370831'); -INSERT INTO `cardcodes` VALUES (2383, '山东省', '济宁市', '梁山县', '370832'); -INSERT INTO `cardcodes` VALUES (2384, '山东省', '济宁市', '曲阜市', '370881'); -INSERT INTO `cardcodes` VALUES (2385, '山东省', '济宁市', '兖州市', '370882'); -INSERT INTO `cardcodes` VALUES (2386, '山东省', '济宁市', '邹城市', '370883'); -INSERT INTO `cardcodes` VALUES (2387, '山东省', '泰安市', '市辖区', '370901'); -INSERT INTO `cardcodes` VALUES (2388, '山东省', '泰安市', '泰山区', '370902'); -INSERT INTO `cardcodes` VALUES (2389, '山东省', '泰安市', '岱岳区', '370903'); -INSERT INTO `cardcodes` VALUES (2390, '山东省', '泰安市', '郊区', '370911'); -INSERT INTO `cardcodes` VALUES (2391, '山东省', '泰安市', '莱芜市', '370919'); -INSERT INTO `cardcodes` VALUES (2392, '山东省', '泰安市', '新泰市', '370920'); -INSERT INTO `cardcodes` VALUES (2393, '山东省', '泰安市', '宁阳县', '370921'); -INSERT INTO `cardcodes` VALUES (2394, '山东省', '泰安市', '肥城县', '370922'); -INSERT INTO `cardcodes` VALUES (2395, '山东省', '泰安市', '东平县', '370923'); -INSERT INTO `cardcodes` VALUES (2396, '山东省', '泰安市', '莱芜市', '370981'); -INSERT INTO `cardcodes` VALUES (2397, '山东省', '泰安市', '新泰市', '370982'); -INSERT INTO `cardcodes` VALUES (2398, '山东省', '泰安市', '肥城市', '370983'); -INSERT INTO `cardcodes` VALUES (2399, '山东省', '威海市', '市辖区', '371001'); -INSERT INTO `cardcodes` VALUES (2400, '山东省', '威海市', '环翠区', '371002'); -INSERT INTO `cardcodes` VALUES (2401, '山东省', '威海市', '乳山县', '371021'); -INSERT INTO `cardcodes` VALUES (2402, '山东省', '威海市', '文登市', '371081'); -INSERT INTO `cardcodes` VALUES (2403, '山东省', '威海市', '荣成市', '371082'); -INSERT INTO `cardcodes` VALUES (2404, '山东省', '威海市', '乳山市', '371083'); -INSERT INTO `cardcodes` VALUES (2405, '山东省', '日照市', '市辖区', '371101'); -INSERT INTO `cardcodes` VALUES (2406, '山东省', '日照市', '东港区', '371102'); -INSERT INTO `cardcodes` VALUES (2407, '山东省', '日照市', '岚山区', '371103'); -INSERT INTO `cardcodes` VALUES (2408, '山东省', '日照市', '五莲县', '371121'); -INSERT INTO `cardcodes` VALUES (2409, '山东省', '日照市', '莒县', '371122'); -INSERT INTO `cardcodes` VALUES (2410, '山东省', '莱芜市', '市辖区', '371201'); -INSERT INTO `cardcodes` VALUES (2411, '山东省', '莱芜市', '莱城区', '371202'); -INSERT INTO `cardcodes` VALUES (2412, '山东省', '莱芜市', '钢城区', '371203'); -INSERT INTO `cardcodes` VALUES (2413, '山东省', '临沂市', '市辖区', '371301'); -INSERT INTO `cardcodes` VALUES (2414, '山东省', '临沂市', '兰山区', '371302'); -INSERT INTO `cardcodes` VALUES (2415, '山东省', '临沂市', '罗庄区', '371311'); -INSERT INTO `cardcodes` VALUES (2416, '山东省', '临沂市', '河东区', '371312'); -INSERT INTO `cardcodes` VALUES (2417, '山东省', '临沂市', '沂南县', '371321'); -INSERT INTO `cardcodes` VALUES (2418, '山东省', '临沂市', '郯城县', '371322'); -INSERT INTO `cardcodes` VALUES (2419, '山东省', '临沂市', '沂水县', '371323'); -INSERT INTO `cardcodes` VALUES (2420, '山东省', '临沂市', '苍山县', '371324'); -INSERT INTO `cardcodes` VALUES (2421, '山东省', '临沂市', '费县', '371325'); -INSERT INTO `cardcodes` VALUES (2422, '山东省', '临沂市', '平邑县', '371326'); -INSERT INTO `cardcodes` VALUES (2423, '山东省', '临沂市', '莒南县', '371327'); -INSERT INTO `cardcodes` VALUES (2424, '山东省', '临沂市', '蒙阴县', '371328'); -INSERT INTO `cardcodes` VALUES (2425, '山东省', '临沂市', '临沭县', '371329'); -INSERT INTO `cardcodes` VALUES (2426, '山东省', '德州市', '市辖区', '371401'); -INSERT INTO `cardcodes` VALUES (2427, '山东省', '德州市', '德城区', '371402'); -INSERT INTO `cardcodes` VALUES (2428, '山东省', '德州市', '陵县', '371421'); -INSERT INTO `cardcodes` VALUES (2429, '山东省', '德州市', '宁津县', '371422'); -INSERT INTO `cardcodes` VALUES (2430, '山东省', '德州市', '庆云县', '371423'); -INSERT INTO `cardcodes` VALUES (2431, '山东省', '德州市', '临邑县', '371424'); -INSERT INTO `cardcodes` VALUES (2432, '山东省', '德州市', '齐河县', '371425'); -INSERT INTO `cardcodes` VALUES (2433, '山东省', '德州市', '平原县', '371426'); -INSERT INTO `cardcodes` VALUES (2434, '山东省', '德州市', '夏津县', '371427'); -INSERT INTO `cardcodes` VALUES (2435, '山东省', '德州市', '武城县', '371428'); -INSERT INTO `cardcodes` VALUES (2436, '山东省', '德州市', '乐陵市', '371481'); -INSERT INTO `cardcodes` VALUES (2437, '山东省', '德州市', '禹城市', '371482'); -INSERT INTO `cardcodes` VALUES (2438, '山东省', '聊城市', '市辖区', '371501'); -INSERT INTO `cardcodes` VALUES (2439, '山东省', '聊城市', '东昌府区', '371502'); -INSERT INTO `cardcodes` VALUES (2440, '山东省', '聊城市', '阳谷县', '371521'); -INSERT INTO `cardcodes` VALUES (2441, '山东省', '聊城市', '莘县', '371522'); -INSERT INTO `cardcodes` VALUES (2442, '山东省', '聊城市', '茌平县', '371523'); -INSERT INTO `cardcodes` VALUES (2443, '山东省', '聊城市', '东阿县', '371524'); -INSERT INTO `cardcodes` VALUES (2444, '山东省', '聊城市', '冠县', '371525'); -INSERT INTO `cardcodes` VALUES (2445, '山东省', '聊城市', '高唐县', '371526'); -INSERT INTO `cardcodes` VALUES (2446, '山东省', '聊城市', '临清市', '371581'); -INSERT INTO `cardcodes` VALUES (2447, '山东省', '滨州市', '市辖区', '371601'); -INSERT INTO `cardcodes` VALUES (2448, '山东省', '滨州市', '滨城区', '371602'); -INSERT INTO `cardcodes` VALUES (2449, '山东省', '滨州市', '惠民县', '371621'); -INSERT INTO `cardcodes` VALUES (2450, '山东省', '滨州市', '阳信县', '371622'); -INSERT INTO `cardcodes` VALUES (2451, '山东省', '滨州市', '无棣县', '371623'); -INSERT INTO `cardcodes` VALUES (2452, '山东省', '滨州市', '沾化县', '371624'); -INSERT INTO `cardcodes` VALUES (2453, '山东省', '滨州市', '博兴县', '371625'); -INSERT INTO `cardcodes` VALUES (2454, '山东省', '滨州市', '邹平县', '371626'); -INSERT INTO `cardcodes` VALUES (2455, '山东省', '济南市', '市辖区', '370101'); -INSERT INTO `cardcodes` VALUES (2456, '山东省', '济南市', '历下区', '370102'); -INSERT INTO `cardcodes` VALUES (2457, '山东省', '济南市', '市中区', '370103'); -INSERT INTO `cardcodes` VALUES (2458, '山东省', '济南市', '槐荫区', '370104'); -INSERT INTO `cardcodes` VALUES (2459, '山东省', '济南市', '天桥区', '370105'); -INSERT INTO `cardcodes` VALUES (2460, '山东省', '济南市', '郊区', '370111'); -INSERT INTO `cardcodes` VALUES (2461, '山东省', '济南市', '历城区', '370112'); -INSERT INTO `cardcodes` VALUES (2462, '山东省', '济南市', '长清区', '370113'); -INSERT INTO `cardcodes` VALUES (2463, '山东省', '济南市', '市区', '370120'); -INSERT INTO `cardcodes` VALUES (2464, '山东省', '济南市', '历城县', '370121'); -INSERT INTO `cardcodes` VALUES (2465, '山东省', '济南市', '章丘县', '370122'); -INSERT INTO `cardcodes` VALUES (2466, '山东省', '济南市', '长清县', '370123'); -INSERT INTO `cardcodes` VALUES (2467, '山东省', '济南市', '平阴县', '370124'); -INSERT INTO `cardcodes` VALUES (2468, '山东省', '济南市', '济阳县', '370125'); -INSERT INTO `cardcodes` VALUES (2469, '山东省', '济南市', '商河县', '370126'); -INSERT INTO `cardcodes` VALUES (2470, '山东省', '济南市', '章丘市', '370181'); -INSERT INTO `cardcodes` VALUES (2471, '山东省', '菏泽市', '市辖区', '371701'); -INSERT INTO `cardcodes` VALUES (2472, '山东省', '菏泽市', '牡丹区', '371702'); -INSERT INTO `cardcodes` VALUES (2473, '山东省', '菏泽市', '曹县', '371721'); -INSERT INTO `cardcodes` VALUES (2474, '山东省', '菏泽市', '单县', '371722'); -INSERT INTO `cardcodes` VALUES (2475, '山东省', '菏泽市', '成武县', '371723'); -INSERT INTO `cardcodes` VALUES (2476, '山东省', '菏泽市', '巨野县', '371724'); -INSERT INTO `cardcodes` VALUES (2477, '山东省', '菏泽市', '郓城县', '371725'); -INSERT INTO `cardcodes` VALUES (2478, '山东省', '菏泽市', '鄄城县', '371726'); -INSERT INTO `cardcodes` VALUES (2479, '山东省', '菏泽市', '定陶县', '371727'); -INSERT INTO `cardcodes` VALUES (2480, '山东省', '菏泽市', '东明县', '371728'); -INSERT INTO `cardcodes` VALUES (2481, '山东省', '烟台地区', '烟台市', '372101'); -INSERT INTO `cardcodes` VALUES (2482, '山东省', '烟台地区', '威海市', '372102'); -INSERT INTO `cardcodes` VALUES (2483, '山东省', '烟台地区', '福山县', '372121'); -INSERT INTO `cardcodes` VALUES (2484, '山东省', '烟台地区', '蓬莱县', '372122'); -INSERT INTO `cardcodes` VALUES (2485, '山东省', '烟台地区', '招远县', '372124'); -INSERT INTO `cardcodes` VALUES (2486, '山东省', '烟台地区', '掖县', '372125'); -INSERT INTO `cardcodes` VALUES (2487, '山东省', '烟台地区', '莱西县', '372126'); -INSERT INTO `cardcodes` VALUES (2488, '山东省', '烟台地区', '莱阳县', '372127'); -INSERT INTO `cardcodes` VALUES (2489, '山东省', '烟台地区', '栖霞县', '372128'); -INSERT INTO `cardcodes` VALUES (2490, '山东省', '烟台地区', '海阳县', '372129'); -INSERT INTO `cardcodes` VALUES (2491, '山东省', '烟台地区', '乳山县', '372130'); -INSERT INTO `cardcodes` VALUES (2492, '山东省', '烟台地区', '牟平县', '372131'); -INSERT INTO `cardcodes` VALUES (2493, '山东省', '烟台地区', '文登县', '372132'); -INSERT INTO `cardcodes` VALUES (2494, '山东省', '烟台地区', '荣城县', '372133'); -INSERT INTO `cardcodes` VALUES (2495, '山东省', '烟台地区', '长岛县', '372134'); -INSERT INTO `cardcodes` VALUES (2496, '山东省', '潍坊地区', '潍坊市', '372201'); -INSERT INTO `cardcodes` VALUES (2497, '山东省', '潍坊地区', '益都县', '372221'); -INSERT INTO `cardcodes` VALUES (2498, '山东省', '潍坊地区', '安丘县', '372222'); -INSERT INTO `cardcodes` VALUES (2499, '山东省', '潍坊地区', '寿光县', '372223'); -INSERT INTO `cardcodes` VALUES (2500, '山东省', '潍坊地区', '临朐县', '372224'); -INSERT INTO `cardcodes` VALUES (2501, '山东省', '潍坊地区', '昌乐县', '372225'); -INSERT INTO `cardcodes` VALUES (2502, '山东省', '潍坊地区', '昌邑县', '372226'); -INSERT INTO `cardcodes` VALUES (2503, '山东省', '潍坊地区', '高密县', '372227'); -INSERT INTO `cardcodes` VALUES (2504, '山东省', '潍坊地区', '诸城县', '372228'); -INSERT INTO `cardcodes` VALUES (2505, '山东省', '潍坊地区', '平度县', '372230'); -INSERT INTO `cardcodes` VALUES (2506, '山东省', '潍坊地区', '潍县', '372231'); -INSERT INTO `cardcodes` VALUES (2507, '山东省', '滨州地区', '滨州市', '372301'); -INSERT INTO `cardcodes` VALUES (2508, '山东省', '滨州地区', '惠民县', '372321'); -INSERT INTO `cardcodes` VALUES (2509, '山东省', '滨州地区', '滨县', '372322'); -INSERT INTO `cardcodes` VALUES (2510, '山东省', '滨州地区', '阳信县', '372323'); -INSERT INTO `cardcodes` VALUES (2511, '山东省', '滨州地区', '无棣县', '372324'); -INSERT INTO `cardcodes` VALUES (2512, '山东省', '滨州地区', '沾化县', '372325'); -INSERT INTO `cardcodes` VALUES (2513, '山东省', '滨州地区', '利津县', '372326'); -INSERT INTO `cardcodes` VALUES (2514, '山东省', '滨州地区', '广饶县', '372327'); -INSERT INTO `cardcodes` VALUES (2515, '山东省', '滨州地区', '博兴县', '372328'); -INSERT INTO `cardcodes` VALUES (2516, '山东省', '滨州地区', '桓台县', '372329'); -INSERT INTO `cardcodes` VALUES (2517, '山东省', '滨州地区', '邹平县', '372330'); -INSERT INTO `cardcodes` VALUES (2518, '山东省', '滨州地区', '高青县', '372331'); -INSERT INTO `cardcodes` VALUES (2519, '山东省', '滨州地区', '垦利县', '372332'); -INSERT INTO `cardcodes` VALUES (2520, '山东省', '德州地区', '德州市', '372401'); -INSERT INTO `cardcodes` VALUES (2521, '山东省', '德州地区', '乐陵市', '372402'); -INSERT INTO `cardcodes` VALUES (2522, '山东省', '德州地区', '禹城市', '372403'); -INSERT INTO `cardcodes` VALUES (2523, '山东省', '德州地区', '陵县', '372421'); -INSERT INTO `cardcodes` VALUES (2524, '山东省', '德州地区', '平原县', '372422'); -INSERT INTO `cardcodes` VALUES (2525, '山东省', '德州地区', '夏津县', '372423'); -INSERT INTO `cardcodes` VALUES (2526, '山东省', '德州地区', '武城县', '372424'); -INSERT INTO `cardcodes` VALUES (2527, '山东省', '德州地区', '齐河县', '372425'); -INSERT INTO `cardcodes` VALUES (2528, '山东省', '德州地区', '禹城县', '372426'); -INSERT INTO `cardcodes` VALUES (2529, '山东省', '德州地区', '乐陵县', '372427'); -INSERT INTO `cardcodes` VALUES (2530, '山东省', '德州地区', '临邑县', '372428'); -INSERT INTO `cardcodes` VALUES (2531, '山东省', '德州地区', '商河县', '372429'); -INSERT INTO `cardcodes` VALUES (2532, '山东省', '德州地区', '济阳县', '372430'); -INSERT INTO `cardcodes` VALUES (2533, '山东省', '德州地区', '宁津县', '372431'); -INSERT INTO `cardcodes` VALUES (2534, '山东省', '德州地区', '庆云县', '372432'); -INSERT INTO `cardcodes` VALUES (2535, '山东省', '聊城市', '聊城市', '372501'); -INSERT INTO `cardcodes` VALUES (2536, '山东省', '聊城市', '东昌府区', '372502'); -INSERT INTO `cardcodes` VALUES (2537, '山东省', '聊城市', '阳谷县', '372521'); -INSERT INTO `cardcodes` VALUES (2538, '山东省', '聊城市', '莘县', '372522'); -INSERT INTO `cardcodes` VALUES (2539, '山东省', '聊城市', '茌平县', '372523'); -INSERT INTO `cardcodes` VALUES (2540, '山东省', '聊城市', '东阿县', '372524'); -INSERT INTO `cardcodes` VALUES (2541, '山东省', '聊城市', '冠县', '372525'); -INSERT INTO `cardcodes` VALUES (2542, '山东省', '聊城市', '高唐县', '372526'); -INSERT INTO `cardcodes` VALUES (2543, '山东省', '聊城市', '高唐县', '372527'); -INSERT INTO `cardcodes` VALUES (2544, '山东省', '聊城市', '临清县', '372528'); -INSERT INTO `cardcodes` VALUES (2545, '山东省', '聊城市', '临清市', '372581'); -INSERT INTO `cardcodes` VALUES (2546, '山东省', '泰安地区', '泰安市', '372601'); -INSERT INTO `cardcodes` VALUES (2547, '山东省', '泰安地区', '莱芜市', '372602'); -INSERT INTO `cardcodes` VALUES (2548, '山东省', '泰安地区', '新泰市', '372603'); -INSERT INTO `cardcodes` VALUES (2549, '山东省', '泰安地区', '莱芜县', '372622'); -INSERT INTO `cardcodes` VALUES (2550, '山东省', '泰安地区', '新泰县', '372623'); -INSERT INTO `cardcodes` VALUES (2551, '山东省', '泰安地区', '宁阳县', '372624'); -INSERT INTO `cardcodes` VALUES (2552, '山东省', '泰安地区', '肥城县', '372625'); -INSERT INTO `cardcodes` VALUES (2553, '山东省', '泰安地区', '东平县', '372626'); -INSERT INTO `cardcodes` VALUES (2554, '山东省', '泰安地区', '平阴县', '372627'); -INSERT INTO `cardcodes` VALUES (2555, '山东省', '泰安地区', '新汶县', '372628'); -INSERT INTO `cardcodes` VALUES (2556, '山东省', '泰安地区', '泗水县', '372630'); -INSERT INTO `cardcodes` VALUES (2557, '山东省', '济宁地区', '济宁市', '372701'); -INSERT INTO `cardcodes` VALUES (2558, '山东省', '济宁地区', '兖州县', '372722'); -INSERT INTO `cardcodes` VALUES (2559, '山东省', '济宁地区', '曲阜县', '372723'); -INSERT INTO `cardcodes` VALUES (2560, '山东省', '济宁地区', '泗水县', '372724'); -INSERT INTO `cardcodes` VALUES (2561, '山东省', '济宁地区', '邹县', '372725'); -INSERT INTO `cardcodes` VALUES (2562, '山东省', '济宁地区', '微山县', '372726'); -INSERT INTO `cardcodes` VALUES (2563, '山东省', '济宁地区', '鱼台县', '372727'); -INSERT INTO `cardcodes` VALUES (2564, '山东省', '济宁地区', '金乡县', '372728'); -INSERT INTO `cardcodes` VALUES (2565, '山东省', '济宁地区', '嘉祥县', '372729'); -INSERT INTO `cardcodes` VALUES (2566, '山东省', '临沂地区', '临沂市', '372801'); -INSERT INTO `cardcodes` VALUES (2567, '山东省', '临沂地区', '日照市', '372802'); -INSERT INTO `cardcodes` VALUES (2568, '山东省', '临沂地区', '临沂县', '372821'); -INSERT INTO `cardcodes` VALUES (2569, '山东省', '临沂地区', '郯城县', '372822'); -INSERT INTO `cardcodes` VALUES (2570, '山东省', '临沂地区', '苍山县', '372823'); -INSERT INTO `cardcodes` VALUES (2571, '山东省', '临沂地区', '莒南县', '372824'); -INSERT INTO `cardcodes` VALUES (2572, '山东省', '临沂地区', '日照县', '372825'); -INSERT INTO `cardcodes` VALUES (2573, '山东省', '临沂地区', '莒县', '372826'); -INSERT INTO `cardcodes` VALUES (2574, '山东省', '临沂地区', '沂水县', '372827'); -INSERT INTO `cardcodes` VALUES (2575, '山东省', '临沂地区', '沂源县', '372828'); -INSERT INTO `cardcodes` VALUES (2576, '山东省', '临沂地区', '蒙阴县', '372829'); -INSERT INTO `cardcodes` VALUES (2577, '山东省', '临沂地区', '平邑县', '372830'); -INSERT INTO `cardcodes` VALUES (2578, '山东省', '临沂地区', '费县', '372831'); -INSERT INTO `cardcodes` VALUES (2579, '山东省', '临沂地区', '沂南县', '372832'); -INSERT INTO `cardcodes` VALUES (2580, '山东省', '临沂地区', '临沭县', '372833'); -INSERT INTO `cardcodes` VALUES (2581, '山东省', '菏泽地区', '菏泽市', '372901'); -INSERT INTO `cardcodes` VALUES (2582, '山东省', '菏泽地区', '菏泽县', '372921'); -INSERT INTO `cardcodes` VALUES (2583, '山东省', '菏泽地区', '曹县', '372922'); -INSERT INTO `cardcodes` VALUES (2584, '山东省', '菏泽地区', '定陶县', '372923'); -INSERT INTO `cardcodes` VALUES (2585, '山东省', '菏泽地区', '成武县', '372924'); -INSERT INTO `cardcodes` VALUES (2586, '山东省', '菏泽地区', '单县', '372925'); -INSERT INTO `cardcodes` VALUES (2587, '山东省', '菏泽地区', '巨野县', '372926'); -INSERT INTO `cardcodes` VALUES (2588, '山东省', '菏泽地区', '粱山县', '372927'); -INSERT INTO `cardcodes` VALUES (2589, '山东省', '菏泽地区', '郓城县', '372928'); -INSERT INTO `cardcodes` VALUES (2590, '山东省', '菏泽地区', '鄄城县', '372929'); -INSERT INTO `cardcodes` VALUES (2591, '山东省', '菏泽地区', '东明县', '372930'); -INSERT INTO `cardcodes` VALUES (2592, '山东省', NULL, '青州市', '379001'); -INSERT INTO `cardcodes` VALUES (2593, '山东省', NULL, '龙口市', '379002'); -INSERT INTO `cardcodes` VALUES (2594, '山东省', NULL, '曲阜市', '379003'); -INSERT INTO `cardcodes` VALUES (2595, '山东省', NULL, '莱芜市', '379004'); -INSERT INTO `cardcodes` VALUES (2596, '山东省', NULL, '新泰市', '379005'); -INSERT INTO `cardcodes` VALUES (2597, '山东省', NULL, '胶州市', '379006'); -INSERT INTO `cardcodes` VALUES (2598, '山东省', NULL, '诸城市', '379007'); -INSERT INTO `cardcodes` VALUES (2599, '山东省', NULL, '莱阳市', '379008'); -INSERT INTO `cardcodes` VALUES (2600, '山东省', NULL, '莱州市', '379009'); -INSERT INTO `cardcodes` VALUES (2601, '山东省', NULL, '滕州市', '379010'); -INSERT INTO `cardcodes` VALUES (2602, '山东省', NULL, '文登市', '379011'); -INSERT INTO `cardcodes` VALUES (2603, '山东省', NULL, '荣城市', '379012'); -INSERT INTO `cardcodes` VALUES (2604, '河南省', '鹤壁市', '鹤山区', '410602'); -INSERT INTO `cardcodes` VALUES (2605, '河南省', '鹤壁市', '山城区', '410603'); -INSERT INTO `cardcodes` VALUES (2606, '河南省', '鹤壁市', '淇滨区', '410611'); -INSERT INTO `cardcodes` VALUES (2607, '河南省', '鹤壁市', '浚县', '410621'); -INSERT INTO `cardcodes` VALUES (2608, '河南省', '鹤壁市', '淇县', '410622'); -INSERT INTO `cardcodes` VALUES (2609, '河南省', '鹤壁市', '市辖区', '410601'); -INSERT INTO `cardcodes` VALUES (2610, '河南省', '新乡市', '市辖区', '410701'); -INSERT INTO `cardcodes` VALUES (2611, '河南省', '新乡市', '红旗区', '410702'); -INSERT INTO `cardcodes` VALUES (2612, '河南省', '新乡市', '新华区', '410703'); -INSERT INTO `cardcodes` VALUES (2613, '河南省', '新乡市', '北站区', '410704'); -INSERT INTO `cardcodes` VALUES (2614, '河南省', '新乡市', '郊区', '410711'); -INSERT INTO `cardcodes` VALUES (2615, '河南省', '新乡市', '新乡县', '410721'); -INSERT INTO `cardcodes` VALUES (2616, '河南省', '新乡市', '汲县', '410722'); -INSERT INTO `cardcodes` VALUES (2617, '河南省', '新乡市', '辉县', '410723'); -INSERT INTO `cardcodes` VALUES (2618, '河南省', '新乡市', '获嘉县', '410724'); -INSERT INTO `cardcodes` VALUES (2619, '河南省', '新乡市', '原阳县', '410725'); -INSERT INTO `cardcodes` VALUES (2620, '河南省', '新乡市', '延津县', '410726'); -INSERT INTO `cardcodes` VALUES (2621, '河南省', '新乡市', '封丘县', '410727'); -INSERT INTO `cardcodes` VALUES (2622, '河南省', '新乡市', '长垣县', '410728'); -INSERT INTO `cardcodes` VALUES (2623, '河南省', '新乡市', '卫辉市', '410781'); -INSERT INTO `cardcodes` VALUES (2624, '河南省', '新乡市', '辉县市', '410782'); -INSERT INTO `cardcodes` VALUES (2625, '河南省', '焦作市', '市辖区', '410801'); -INSERT INTO `cardcodes` VALUES (2626, '河南省', '焦作市', '解放区', '410802'); -INSERT INTO `cardcodes` VALUES (2627, '河南省', '焦作市', '中站区', '410803'); -INSERT INTO `cardcodes` VALUES (2628, '河南省', '焦作市', '马村区', '410804'); -INSERT INTO `cardcodes` VALUES (2629, '河南省', '焦作市', '山阳区', '410811'); -INSERT INTO `cardcodes` VALUES (2630, '河南省', '焦作市', '修武县', '410821'); -INSERT INTO `cardcodes` VALUES (2631, '河南省', '焦作市', '博爱县', '410822'); -INSERT INTO `cardcodes` VALUES (2632, '河南省', '焦作市', '武陟县', '410823'); -INSERT INTO `cardcodes` VALUES (2633, '河南省', '焦作市', '沁阳县', '410824'); -INSERT INTO `cardcodes` VALUES (2634, '河南省', '焦作市', '温县', '410825'); -INSERT INTO `cardcodes` VALUES (2635, '河南省', '焦作市', '孟县', '410826'); -INSERT INTO `cardcodes` VALUES (2636, '河南省', '焦作市', '济源县', '410827'); -INSERT INTO `cardcodes` VALUES (2637, '河南省', '焦作市', '济源市', '410881'); -INSERT INTO `cardcodes` VALUES (2638, '河南省', '焦作市', '沁阳市', '410882'); -INSERT INTO `cardcodes` VALUES (2639, '河南省', '焦作市', '孟州市', '410883'); -INSERT INTO `cardcodes` VALUES (2640, '河南省', '濮阳市', '市辖区', '410901'); -INSERT INTO `cardcodes` VALUES (2641, '河南省', '濮阳市', '市区', '410902'); -INSERT INTO `cardcodes` VALUES (2642, '河南省', '濮阳市', '滑县', '410921'); -INSERT INTO `cardcodes` VALUES (2643, '河南省', '濮阳市', '清丰县', '410922'); -INSERT INTO `cardcodes` VALUES (2644, '河南省', '濮阳市', '南乐县', '410923'); -INSERT INTO `cardcodes` VALUES (2645, '河南省', '濮阳市', '内黄县', '410924'); -INSERT INTO `cardcodes` VALUES (2646, '河南省', '濮阳市', '长垣县', '410925'); -INSERT INTO `cardcodes` VALUES (2647, '河南省', '濮阳市', '范县', '410926'); -INSERT INTO `cardcodes` VALUES (2648, '河南省', '濮阳市', '台前县', '410927'); -INSERT INTO `cardcodes` VALUES (2649, '河南省', '濮阳市', '濮阳县', '410928'); -INSERT INTO `cardcodes` VALUES (2650, '河南省', '许昌市', '市辖区', '411001'); -INSERT INTO `cardcodes` VALUES (2651, '河南省', '许昌市', '魏都区', '411002'); -INSERT INTO `cardcodes` VALUES (2652, '河南省', '许昌市', '禹县', '411021'); -INSERT INTO `cardcodes` VALUES (2653, '河南省', '许昌市', '长葛县', '411022'); -INSERT INTO `cardcodes` VALUES (2654, '河南省', '许昌市', '许昌县', '411023'); -INSERT INTO `cardcodes` VALUES (2655, '河南省', '许昌市', '鄢陵县', '411024'); -INSERT INTO `cardcodes` VALUES (2656, '河南省', '许昌市', '襄城县', '411025'); -INSERT INTO `cardcodes` VALUES (2657, '河南省', '许昌市', '禹州市', '411081'); -INSERT INTO `cardcodes` VALUES (2658, '河南省', '许昌市', '长葛市', '411082'); -INSERT INTO `cardcodes` VALUES (2659, '河南省', '漯河市', '市辖区', '411101'); -INSERT INTO `cardcodes` VALUES (2660, '河南省', '漯河市', '源汇区', '411102'); -INSERT INTO `cardcodes` VALUES (2661, '河南省', '漯河市', '郾城区', '411103'); -INSERT INTO `cardcodes` VALUES (2662, '河南省', '漯河市', '召陵区', '411104'); -INSERT INTO `cardcodes` VALUES (2663, '河南省', '漯河市', '舞阳县', '411121'); -INSERT INTO `cardcodes` VALUES (2664, '河南省', '漯河市', '临颍县', '411122'); -INSERT INTO `cardcodes` VALUES (2665, '河南省', '漯河市', '郾城县', '411123'); -INSERT INTO `cardcodes` VALUES (2666, '河南省', '三门峡市', '市辖区', '411201'); -INSERT INTO `cardcodes` VALUES (2667, '河南省', '三门峡市', '湖滨区', '411202'); -INSERT INTO `cardcodes` VALUES (2668, '河南省', '三门峡市', '渑池县', '411221'); -INSERT INTO `cardcodes` VALUES (2669, '河南省', '三门峡市', '陕县', '411222'); -INSERT INTO `cardcodes` VALUES (2670, '河南省', '三门峡市', '灵宝县', '411223'); -INSERT INTO `cardcodes` VALUES (2671, '河南省', '三门峡市', '卢氏县', '411224'); -INSERT INTO `cardcodes` VALUES (2672, '河南省', '三门峡市', '义马市', '411281'); -INSERT INTO `cardcodes` VALUES (2673, '河南省', '三门峡市', '灵宝市', '411282'); -INSERT INTO `cardcodes` VALUES (2674, '河南省', '南阳市', '市辖区', '411301'); -INSERT INTO `cardcodes` VALUES (2675, '河南省', '南阳市', '宛城区', '411302'); -INSERT INTO `cardcodes` VALUES (2676, '河南省', '南阳市', '卧龙区', '411303'); -INSERT INTO `cardcodes` VALUES (2677, '河南省', '南阳市', '南召县', '411321'); -INSERT INTO `cardcodes` VALUES (2678, '河南省', '南阳市', '方城县', '411322'); -INSERT INTO `cardcodes` VALUES (2679, '河南省', '南阳市', '西峡县', '411323'); -INSERT INTO `cardcodes` VALUES (2680, '河南省', '南阳市', '镇平县', '411324'); -INSERT INTO `cardcodes` VALUES (2681, '河南省', '南阳市', '内乡县', '411325'); -INSERT INTO `cardcodes` VALUES (2682, '河南省', '南阳市', '淅川县', '411326'); -INSERT INTO `cardcodes` VALUES (2683, '河南省', '南阳市', '社旗县', '411327'); -INSERT INTO `cardcodes` VALUES (2684, '河南省', '南阳市', '唐河县', '411328'); -INSERT INTO `cardcodes` VALUES (2685, '河南省', '南阳市', '新野县', '411329'); -INSERT INTO `cardcodes` VALUES (2686, '河南省', '南阳市', '桐柏县', '411330'); -INSERT INTO `cardcodes` VALUES (2687, '河南省', '南阳市', '邓州市', '411381'); -INSERT INTO `cardcodes` VALUES (2688, '河南省', '郑州市', '市辖区', '410101'); -INSERT INTO `cardcodes` VALUES (2689, '河南省', '郑州市', '中原区', '410102'); -INSERT INTO `cardcodes` VALUES (2690, '河南省', '郑州市', '二七区', '410103'); -INSERT INTO `cardcodes` VALUES (2691, '河南省', '郑州市', '管城回族区', '410104'); -INSERT INTO `cardcodes` VALUES (2692, '河南省', '郑州市', '金水区', '410105'); -INSERT INTO `cardcodes` VALUES (2693, '河南省', '郑州市', '上街区', '410106'); -INSERT INTO `cardcodes` VALUES (2694, '河南省', '郑州市', '新密区', '410107'); -INSERT INTO `cardcodes` VALUES (2695, '河南省', '郑州市', '邙山区', '410108'); -INSERT INTO `cardcodes` VALUES (2696, '河南省', '郑州市', '金海区', '410111'); -INSERT INTO `cardcodes` VALUES (2697, '河南省', '郑州市', '郊区', '410112'); -INSERT INTO `cardcodes` VALUES (2698, '河南省', '郑州市', '市区', '410120'); -INSERT INTO `cardcodes` VALUES (2699, '河南省', '郑州市', '荥阳县', '410121'); -INSERT INTO `cardcodes` VALUES (2700, '河南省', '郑州市', '中牟县', '410122'); -INSERT INTO `cardcodes` VALUES (2701, '河南省', '郑州市', '新郑县', '410123'); -INSERT INTO `cardcodes` VALUES (2702, '河南省', '郑州市', '巩县', '410124'); -INSERT INTO `cardcodes` VALUES (2703, '河南省', '郑州市', '登封县', '410125'); -INSERT INTO `cardcodes` VALUES (2704, '河南省', '郑州市', '密县', '410126'); -INSERT INTO `cardcodes` VALUES (2705, '河南省', '郑州市', '巩义市', '410181'); -INSERT INTO `cardcodes` VALUES (2706, '河南省', '郑州市', '荥阳市', '410182'); -INSERT INTO `cardcodes` VALUES (2707, '河南省', '郑州市', '新密市', '410183'); -INSERT INTO `cardcodes` VALUES (2708, '河南省', '郑州市', '新郑市', '410184'); -INSERT INTO `cardcodes` VALUES (2709, '河南省', '郑州市', '登封市', '410185'); -INSERT INTO `cardcodes` VALUES (2710, '河南省', '开封市', '市辖区', '410201'); -INSERT INTO `cardcodes` VALUES (2711, '河南省', '开封市', '龙亭区', '410202'); -INSERT INTO `cardcodes` VALUES (2712, '河南省', '开封市', '顺河回族区', '410203'); -INSERT INTO `cardcodes` VALUES (2713, '河南省', '开封市', '鼓楼区', '410204'); -INSERT INTO `cardcodes` VALUES (2714, '河南省', '开封市', '禹王台区', '410205'); -INSERT INTO `cardcodes` VALUES (2715, '河南省', '开封市', '金明区', '410211'); -INSERT INTO `cardcodes` VALUES (2716, '河南省', '开封市', '杞县', '410221'); -INSERT INTO `cardcodes` VALUES (2717, '河南省', '开封市', '通许县', '410222'); -INSERT INTO `cardcodes` VALUES (2718, '河南省', '开封市', '尉氏县', '410223'); -INSERT INTO `cardcodes` VALUES (2719, '河南省', '开封市', '开封县', '410224'); -INSERT INTO `cardcodes` VALUES (2720, '河南省', '开封市', '兰考县', '410225'); -INSERT INTO `cardcodes` VALUES (2721, '河南省', '洛阳市', '市辖区', '410301'); -INSERT INTO `cardcodes` VALUES (2722, '河南省', '洛阳市', '老城区', '410302'); -INSERT INTO `cardcodes` VALUES (2723, '河南省', '洛阳市', '西工区', '410303'); -INSERT INTO `cardcodes` VALUES (2724, '河南省', '洛阳市', '廛河回族区', '410304'); -INSERT INTO `cardcodes` VALUES (2725, '河南省', '洛阳市', '涧西区', '410305'); -INSERT INTO `cardcodes` VALUES (2726, '河南省', '洛阳市', '吉利区', '410306'); -INSERT INTO `cardcodes` VALUES (2727, '河南省', '洛阳市', '洛龙区', '410307'); -INSERT INTO `cardcodes` VALUES (2728, '河南省', '洛阳市', '郊区', '410311'); -INSERT INTO `cardcodes` VALUES (2729, '河南省', '洛阳市', '偃师县', '410321'); -INSERT INTO `cardcodes` VALUES (2730, '河南省', '洛阳市', '孟津县', '410322'); -INSERT INTO `cardcodes` VALUES (2731, '河南省', '洛阳市', '新安县', '410323'); -INSERT INTO `cardcodes` VALUES (2732, '河南省', '洛阳市', '栾川县', '410324'); -INSERT INTO `cardcodes` VALUES (2733, '河南省', '洛阳市', '嵩县', '410325'); -INSERT INTO `cardcodes` VALUES (2734, '河南省', '洛阳市', '汝阳县', '410326'); -INSERT INTO `cardcodes` VALUES (2735, '河南省', '洛阳市', '宜阳县', '410327'); -INSERT INTO `cardcodes` VALUES (2736, '河南省', '洛阳市', '洛宁县', '410328'); -INSERT INTO `cardcodes` VALUES (2737, '河南省', '洛阳市', '伊川县', '410329'); -INSERT INTO `cardcodes` VALUES (2738, '河南省', '洛阳市', '偃师市', '410381'); -INSERT INTO `cardcodes` VALUES (2739, '河南省', '平顶山市', '市辖区', '410401'); -INSERT INTO `cardcodes` VALUES (2740, '河南省', '平顶山市', '新华区', '410402'); -INSERT INTO `cardcodes` VALUES (2741, '河南省', '平顶山市', '卫东区', '410403'); -INSERT INTO `cardcodes` VALUES (2742, '河南省', '平顶山市', '石龙区', '410404'); -INSERT INTO `cardcodes` VALUES (2743, '河南省', '平顶山市', '湛河区', '410411'); -INSERT INTO `cardcodes` VALUES (2744, '河南省', '平顶山市', '舞钢区', '410412'); -INSERT INTO `cardcodes` VALUES (2745, '河南省', '平顶山市', '宝丰县', '410421'); -INSERT INTO `cardcodes` VALUES (2746, '河南省', '平顶山市', '叶县', '410422'); -INSERT INTO `cardcodes` VALUES (2747, '河南省', '平顶山市', '鲁山县', '410423'); -INSERT INTO `cardcodes` VALUES (2748, '河南省', '平顶山市', '临汝县', '410424'); -INSERT INTO `cardcodes` VALUES (2749, '河南省', '平顶山市', '郏县', '410425'); -INSERT INTO `cardcodes` VALUES (2750, '河南省', '平顶山市', '襄城县', '410426'); -INSERT INTO `cardcodes` VALUES (2751, '河南省', '平顶山市', '舞钢市', '410481'); -INSERT INTO `cardcodes` VALUES (2752, '河南省', '平顶山市', '汝州市', '410482'); -INSERT INTO `cardcodes` VALUES (2753, '河南省', '安阳市', '市辖区', '410501'); -INSERT INTO `cardcodes` VALUES (2754, '河南省', '安阳市', '文峰区', '410502'); -INSERT INTO `cardcodes` VALUES (2755, '河南省', '安阳市', '北关区', '410503'); -INSERT INTO `cardcodes` VALUES (2756, '河南省', '安阳市', '铁西区', '410504'); -INSERT INTO `cardcodes` VALUES (2757, '河南省', '安阳市', '殷都区', '410505'); -INSERT INTO `cardcodes` VALUES (2758, '河南省', '安阳市', '龙安区', '410506'); -INSERT INTO `cardcodes` VALUES (2759, '河南省', '安阳市', '郊区', '410511'); -INSERT INTO `cardcodes` VALUES (2760, '河南省', '安阳市', '林县', '410521'); -INSERT INTO `cardcodes` VALUES (2761, '河南省', '安阳市', '安阳县', '410522'); -INSERT INTO `cardcodes` VALUES (2762, '河南省', '安阳市', '汤阴县', '410523'); -INSERT INTO `cardcodes` VALUES (2763, '河南省', '安阳市', '淇县', '410524'); -INSERT INTO `cardcodes` VALUES (2764, '河南省', '安阳市', '浚县', '410525'); -INSERT INTO `cardcodes` VALUES (2765, '河南省', '安阳市', '滑县', '410526'); -INSERT INTO `cardcodes` VALUES (2766, '河南省', '安阳市', '内黄县', '410527'); -INSERT INTO `cardcodes` VALUES (2767, '河南省', '安阳市', '林州市', '410581'); -INSERT INTO `cardcodes` VALUES (2768, '河南省', '商丘市', '市辖区', '411401'); -INSERT INTO `cardcodes` VALUES (2769, '河南省', '商丘市', '梁园区', '411402'); -INSERT INTO `cardcodes` VALUES (2770, '河南省', '商丘市', '睢阳区', '411403'); -INSERT INTO `cardcodes` VALUES (2771, '河南省', '商丘市', '民权县', '411421'); -INSERT INTO `cardcodes` VALUES (2772, '河南省', '商丘市', '睢县', '411422'); -INSERT INTO `cardcodes` VALUES (2773, '河南省', '商丘市', '宁陵县', '411423'); -INSERT INTO `cardcodes` VALUES (2774, '河南省', '商丘市', '柘城县', '411424'); -INSERT INTO `cardcodes` VALUES (2775, '河南省', '商丘市', '虞城县', '411425'); -INSERT INTO `cardcodes` VALUES (2776, '河南省', '商丘市', '夏邑县', '411426'); -INSERT INTO `cardcodes` VALUES (2777, '河南省', '商丘市', '永城市', '411481'); -INSERT INTO `cardcodes` VALUES (2778, '河南省', '信阳市', '市辖区', '411501'); -INSERT INTO `cardcodes` VALUES (2779, '河南省', '信阳市', '师河区', '411502'); -INSERT INTO `cardcodes` VALUES (2780, '河南省', '信阳市', '平桥区', '411503'); -INSERT INTO `cardcodes` VALUES (2781, '河南省', '信阳市', '罗山县', '411521'); -INSERT INTO `cardcodes` VALUES (2782, '河南省', '信阳市', '光山县', '411522'); -INSERT INTO `cardcodes` VALUES (2783, '河南省', '信阳市', '新县', '411523'); -INSERT INTO `cardcodes` VALUES (2784, '河南省', '信阳市', '商城县', '411524'); -INSERT INTO `cardcodes` VALUES (2785, '河南省', '信阳市', '固始县', '411525'); -INSERT INTO `cardcodes` VALUES (2786, '河南省', '信阳市', '潢川县', '411526'); -INSERT INTO `cardcodes` VALUES (2787, '河南省', '信阳市', '淮滨县', '411527'); -INSERT INTO `cardcodes` VALUES (2788, '河南省', '信阳市', '息县', '411528'); -INSERT INTO `cardcodes` VALUES (2789, '河南省', '周口市', '市辖区', '411601'); -INSERT INTO `cardcodes` VALUES (2790, '河南省', '周口市', '川汇区', '411602'); -INSERT INTO `cardcodes` VALUES (2791, '河南省', '周口市', '扶沟县', '411621'); -INSERT INTO `cardcodes` VALUES (2792, '河南省', '周口市', '西华县', '411622'); -INSERT INTO `cardcodes` VALUES (2793, '河南省', '周口市', '商水县', '411623'); -INSERT INTO `cardcodes` VALUES (2794, '河南省', '周口市', '沈丘县', '411624'); -INSERT INTO `cardcodes` VALUES (2795, '河南省', '周口市', '郸城县', '411625'); -INSERT INTO `cardcodes` VALUES (2796, '河南省', '周口市', '淮阳县', '411626'); -INSERT INTO `cardcodes` VALUES (2797, '河南省', '周口市', '太康县', '411627'); -INSERT INTO `cardcodes` VALUES (2798, '河南省', '周口市', '鹿邑县', '411628'); -INSERT INTO `cardcodes` VALUES (2799, '河南省', '周口市', '项城市', '411681'); -INSERT INTO `cardcodes` VALUES (2800, '河南省', '驻马店市', '市辖区', '411701'); -INSERT INTO `cardcodes` VALUES (2801, '河南省', '驻马店市', '驿城区', '411702'); -INSERT INTO `cardcodes` VALUES (2802, '河南省', '驻马店市', '西平县', '411721'); -INSERT INTO `cardcodes` VALUES (2803, '河南省', '驻马店市', '上蔡县', '411722'); -INSERT INTO `cardcodes` VALUES (2804, '河南省', '驻马店市', '平舆县', '411723'); -INSERT INTO `cardcodes` VALUES (2805, '河南省', '驻马店市', '正阳县', '411724'); -INSERT INTO `cardcodes` VALUES (2806, '河南省', '驻马店市', '确山县', '411725'); -INSERT INTO `cardcodes` VALUES (2807, '河南省', '驻马店市', '泌阳县', '411726'); -INSERT INTO `cardcodes` VALUES (2808, '河南省', '驻马店市', '汝南县', '411727'); -INSERT INTO `cardcodes` VALUES (2809, '河南省', '驻马店市', '遂平县', '411728'); -INSERT INTO `cardcodes` VALUES (2810, '河南省', '驻马店市', '新蔡县', '411729'); -INSERT INTO `cardcodes` VALUES (2811, '河南省', '商丘地区', '商丘市', '412301'); -INSERT INTO `cardcodes` VALUES (2812, '河南省', '商丘地区', '永城市', '412302'); -INSERT INTO `cardcodes` VALUES (2813, '河南省', '商丘地区', '虞城县', '412321'); -INSERT INTO `cardcodes` VALUES (2814, '河南省', '商丘地区', '商丘县', '412322'); -INSERT INTO `cardcodes` VALUES (2815, '河南省', '商丘地区', '民权县', '412323'); -INSERT INTO `cardcodes` VALUES (2816, '河南省', '商丘地区', '宁陵县', '412324'); -INSERT INTO `cardcodes` VALUES (2817, '河南省', '商丘地区', '睢县', '412325'); -INSERT INTO `cardcodes` VALUES (2818, '河南省', '商丘地区', '夏邑县', '412326'); -INSERT INTO `cardcodes` VALUES (2819, '河南省', '商丘地区', '柘城县', '412327'); -INSERT INTO `cardcodes` VALUES (2820, '河南省', '商丘地区', '永城县', '412328'); -INSERT INTO `cardcodes` VALUES (2821, '河南省', '开封地区', '杞县', '412421'); -INSERT INTO `cardcodes` VALUES (2822, '河南省', '开封地区', '通许县', '412422'); -INSERT INTO `cardcodes` VALUES (2823, '河南省', '开封地区', '尉氏县', '412423'); -INSERT INTO `cardcodes` VALUES (2824, '河南省', '开封地区', '开封县', '412424'); -INSERT INTO `cardcodes` VALUES (2825, '河南省', '开封地区', '中牟县', '412425'); -INSERT INTO `cardcodes` VALUES (2826, '河南省', '开封地区', '新郑县', '412426'); -INSERT INTO `cardcodes` VALUES (2827, '河南省', '开封地区', '巩县', '412427'); -INSERT INTO `cardcodes` VALUES (2828, '河南省', '开封地区', '登封县', '412428'); -INSERT INTO `cardcodes` VALUES (2829, '河南省', '开封地区', '密县', '412429'); -INSERT INTO `cardcodes` VALUES (2830, '河南省', '开封地区', '兰考县', '412430'); -INSERT INTO `cardcodes` VALUES (2831, '河南省', '三门峡市', '三门峡市', '412501'); -INSERT INTO `cardcodes` VALUES (2832, '河南省', '三门峡市', '义马市', '412502'); -INSERT INTO `cardcodes` VALUES (2833, '河南省', '三门峡市', '偃师县', '412521'); -INSERT INTO `cardcodes` VALUES (2834, '河南省', '三门峡市', '孟津县', '412522'); -INSERT INTO `cardcodes` VALUES (2835, '河南省', '三门峡市', '新安县', '412523'); -INSERT INTO `cardcodes` VALUES (2836, '河南省', '三门峡市', '渑池县', '412524'); -INSERT INTO `cardcodes` VALUES (2837, '河南省', '三门峡市', '陕县', '412525'); -INSERT INTO `cardcodes` VALUES (2838, '河南省', '三门峡市', '灵宝县', '412526'); -INSERT INTO `cardcodes` VALUES (2839, '河南省', '三门峡市', '伊川县', '412527'); -INSERT INTO `cardcodes` VALUES (2840, '河南省', '三门峡市', '汝阳县', '412528'); -INSERT INTO `cardcodes` VALUES (2841, '河南省', '三门峡市', '嵩县', '412529'); -INSERT INTO `cardcodes` VALUES (2842, '河南省', '三门峡市', '洛宁县', '412530'); -INSERT INTO `cardcodes` VALUES (2843, '河南省', '三门峡市', '卢氏县', '412531'); -INSERT INTO `cardcodes` VALUES (2844, '河南省', '三门峡市', '栾川县', '412532'); -INSERT INTO `cardcodes` VALUES (2845, '河南省', '三门峡市', '临汝县', '412533'); -INSERT INTO `cardcodes` VALUES (2846, '河南省', '三门峡市', '宜阳县', '412534'); -INSERT INTO `cardcodes` VALUES (2847, '河南省', '周口地区', '周口市', '412701'); -INSERT INTO `cardcodes` VALUES (2848, '河南省', '周口地区', '项城市', '412702'); -INSERT INTO `cardcodes` VALUES (2849, '河南省', '周口地区', '扶沟县', '412721'); -INSERT INTO `cardcodes` VALUES (2850, '河南省', '周口地区', '西华县', '412722'); -INSERT INTO `cardcodes` VALUES (2851, '河南省', '周口地区', '商水县', '412723'); -INSERT INTO `cardcodes` VALUES (2852, '河南省', '周口地区', '太康县', '412724'); -INSERT INTO `cardcodes` VALUES (2853, '河南省', '周口地区', '鹿邑县', '412725'); -INSERT INTO `cardcodes` VALUES (2854, '河南省', '周口地区', '郸城县', '412726'); -INSERT INTO `cardcodes` VALUES (2855, '河南省', '周口地区', '淮阳县', '412727'); -INSERT INTO `cardcodes` VALUES (2856, '河南省', '周口地区', '沈丘县', '412728'); -INSERT INTO `cardcodes` VALUES (2857, '河南省', '驻马店地区', '驻马店市', '412801'); -INSERT INTO `cardcodes` VALUES (2858, '河南省', '驻马店地区', '确山县', '412821'); -INSERT INTO `cardcodes` VALUES (2859, '河南省', '驻马店地区', '泌阳县', '412822'); -INSERT INTO `cardcodes` VALUES (2860, '河南省', '驻马店地区', '遂平县', '412823'); -INSERT INTO `cardcodes` VALUES (2861, '河南省', '驻马店地区', '西平县', '412824'); -INSERT INTO `cardcodes` VALUES (2862, '河南省', '驻马店地区', '上蔡县', '412825'); -INSERT INTO `cardcodes` VALUES (2863, '河南省', '驻马店地区', '汝南县', '412826'); -INSERT INTO `cardcodes` VALUES (2864, '河南省', '驻马店地区', '平舆县', '412827'); -INSERT INTO `cardcodes` VALUES (2865, '河南省', '驻马店地区', '新蔡县', '412828'); -INSERT INTO `cardcodes` VALUES (2866, '河南省', '驻马店地区', '正阳县', '412829'); -INSERT INTO `cardcodes` VALUES (2867, '河南省', '南阳市', '卧龙区', '412901'); -INSERT INTO `cardcodes` VALUES (2868, '河南省', '南阳市', '邓州市', '412902'); -INSERT INTO `cardcodes` VALUES (2869, '河南省', '南阳市', '宛城区', '412903'); -INSERT INTO `cardcodes` VALUES (2870, '河南省', '南阳市', '南召县', '412921'); -INSERT INTO `cardcodes` VALUES (2871, '河南省', '南阳市', '方城县', '412922'); -INSERT INTO `cardcodes` VALUES (2872, '河南省', '南阳市', '西峡县', '412923'); -INSERT INTO `cardcodes` VALUES (2873, '河南省', '南阳市', '南阳县', '412924'); -INSERT INTO `cardcodes` VALUES (2874, '河南省', '南阳市', '镇平县', '412925'); -INSERT INTO `cardcodes` VALUES (2875, '河南省', '南阳市', '内乡县', '412926'); -INSERT INTO `cardcodes` VALUES (2876, '河南省', '南阳市', '淅川县', '412927'); -INSERT INTO `cardcodes` VALUES (2877, '河南省', '南阳市', '社旗县', '412928'); -INSERT INTO `cardcodes` VALUES (2878, '河南省', '南阳市', '唐河县', '412929'); -INSERT INTO `cardcodes` VALUES (2879, '河南省', '南阳市', '邓县', '412930'); -INSERT INTO `cardcodes` VALUES (2880, '河南省', '南阳市', '新野县', '412931'); -INSERT INTO `cardcodes` VALUES (2881, '河南省', '南阳市', '桐柏县', '412932'); -INSERT INTO `cardcodes` VALUES (2882, '河南省', '南阳市', '规划控制区', '412933'); -INSERT INTO `cardcodes` VALUES (2883, '河南省', '信阳地区', '信阳市', '413001'); -INSERT INTO `cardcodes` VALUES (2884, '河南省', '信阳地区', '息县', '413021'); -INSERT INTO `cardcodes` VALUES (2885, '河南省', '信阳地区', '淮滨县', '413022'); -INSERT INTO `cardcodes` VALUES (2886, '河南省', '信阳地区', '平桥区', '413023'); -INSERT INTO `cardcodes` VALUES (2887, '河南省', '信阳地区', '潢川县', '413024'); -INSERT INTO `cardcodes` VALUES (2888, '河南省', '信阳地区', '光山县', '413025'); -INSERT INTO `cardcodes` VALUES (2889, '河南省', '信阳地区', '固始县', '413026'); -INSERT INTO `cardcodes` VALUES (2890, '河南省', '信阳地区', '商城县', '413027'); -INSERT INTO `cardcodes` VALUES (2891, '河南省', '信阳地区', '罗山县', '413028'); -INSERT INTO `cardcodes` VALUES (2892, '河南省', '信阳地区', '新县', '413029'); -INSERT INTO `cardcodes` VALUES (2893, '河南省', NULL, '许昌市', '412601'); -INSERT INTO `cardcodes` VALUES (2894, '河南省', NULL, '漯河市', '412602'); -INSERT INTO `cardcodes` VALUES (2895, '河南省', NULL, '长葛县', '412621'); -INSERT INTO `cardcodes` VALUES (2896, '河南省', NULL, '禹县', '412622'); -INSERT INTO `cardcodes` VALUES (2897, '河南省', NULL, '鄢陵县', '412623'); -INSERT INTO `cardcodes` VALUES (2898, '河南省', NULL, '许昌县', '412624'); -INSERT INTO `cardcodes` VALUES (2899, '河南省', NULL, '郏县', '412625'); -INSERT INTO `cardcodes` VALUES (2900, '河南省', NULL, '临颍县', '412626'); -INSERT INTO `cardcodes` VALUES (2901, '河南省', NULL, '襄城县', '412627'); -INSERT INTO `cardcodes` VALUES (2902, '河南省', NULL, '宝丰县', '412628'); -INSERT INTO `cardcodes` VALUES (2903, '河南省', NULL, '郾城县', '412629'); -INSERT INTO `cardcodes` VALUES (2904, '河南省', NULL, '叶县', '412630'); -INSERT INTO `cardcodes` VALUES (2905, '河南省', NULL, '鲁山县', '412631'); -INSERT INTO `cardcodes` VALUES (2906, '河南省', NULL, '舞阳县', '412632'); -INSERT INTO `cardcodes` VALUES (2907, '河南省', NULL, '义马市', '419001'); -INSERT INTO `cardcodes` VALUES (2908, '河南省', NULL, '汝州市', '419002'); -INSERT INTO `cardcodes` VALUES (2909, '河南省', NULL, '济源市', '419003'); -INSERT INTO `cardcodes` VALUES (2910, '河南省', NULL, '禹州市', '419004'); -INSERT INTO `cardcodes` VALUES (2911, '河南省', NULL, '卫辉市', '419005'); -INSERT INTO `cardcodes` VALUES (2912, '河南省', NULL, '辉县市', '419006'); -INSERT INTO `cardcodes` VALUES (2913, '湖北省', '宜昌市', '市辖区', '420501'); -INSERT INTO `cardcodes` VALUES (2914, '湖北省', '宜昌市', '西陵区', '420502'); -INSERT INTO `cardcodes` VALUES (2915, '湖北省', '宜昌市', '伍家岗区', '420503'); -INSERT INTO `cardcodes` VALUES (2916, '湖北省', '宜昌市', '点军区', '420504'); -INSERT INTO `cardcodes` VALUES (2917, '湖北省', '宜昌市', '猇亭区', '420505'); -INSERT INTO `cardcodes` VALUES (2918, '湖北省', '宜昌市', '夷陵区', '420506'); -INSERT INTO `cardcodes` VALUES (2919, '湖北省', '宜昌市', '宜昌县', '420521'); -INSERT INTO `cardcodes` VALUES (2920, '湖北省', '宜昌市', '枝江县', '420523'); -INSERT INTO `cardcodes` VALUES (2921, '湖北省', '宜昌市', '远安县', '420525'); -INSERT INTO `cardcodes` VALUES (2922, '湖北省', '宜昌市', '兴山县', '420526'); -INSERT INTO `cardcodes` VALUES (2923, '湖北省', '宜昌市', '秭归县', '420527'); -INSERT INTO `cardcodes` VALUES (2924, '湖北省', '宜昌市', '长阳土家族自治县', '420528'); -INSERT INTO `cardcodes` VALUES (2925, '湖北省', '宜昌市', '五峰土家族自治县', '420529'); -INSERT INTO `cardcodes` VALUES (2926, '湖北省', '宜昌市', '宜都市', '420581'); -INSERT INTO `cardcodes` VALUES (2927, '湖北省', '宜昌市', '当阳市', '420582'); -INSERT INTO `cardcodes` VALUES (2928, '湖北省', '宜昌市', '枝江市', '420583'); -INSERT INTO `cardcodes` VALUES (2929, '湖北省', '襄樊市', '市辖区', '420601'); -INSERT INTO `cardcodes` VALUES (2930, '湖北省', '襄樊市', '襄城区', '420602'); -INSERT INTO `cardcodes` VALUES (2931, '湖北省', '襄樊市', '樊东区', '420603'); -INSERT INTO `cardcodes` VALUES (2932, '湖北省', '襄樊市', '樊西区', '420604'); -INSERT INTO `cardcodes` VALUES (2933, '湖北省', '襄樊市', '郊区', '420605'); -INSERT INTO `cardcodes` VALUES (2934, '湖北省', '襄樊市', '樊城区', '420606'); -INSERT INTO `cardcodes` VALUES (2935, '湖北省', '襄樊市', '襄阳区', '420607'); -INSERT INTO `cardcodes` VALUES (2936, '湖北省', '襄樊市', '随州市', '420619'); -INSERT INTO `cardcodes` VALUES (2937, '湖北省', '襄樊市', '老河口市', '420620'); -INSERT INTO `cardcodes` VALUES (2938, '湖北省', '襄樊市', '襄阳县', '420621'); -INSERT INTO `cardcodes` VALUES (2939, '湖北省', '襄樊市', '枣阳县', '420622'); -INSERT INTO `cardcodes` VALUES (2940, '湖北省', '襄樊市', '宜城县', '420623'); -INSERT INTO `cardcodes` VALUES (2941, '湖北省', '襄樊市', '南漳县', '420624'); -INSERT INTO `cardcodes` VALUES (2942, '湖北省', '襄樊市', '谷城县', '420625'); -INSERT INTO `cardcodes` VALUES (2943, '湖北省', '襄樊市', '保康县', '420626'); -INSERT INTO `cardcodes` VALUES (2944, '湖北省', '襄樊市', '随州市', '420681'); -INSERT INTO `cardcodes` VALUES (2945, '湖北省', '襄樊市', '老河口市', '420682'); -INSERT INTO `cardcodes` VALUES (2946, '湖北省', '襄樊市', '枣阳市', '420683'); -INSERT INTO `cardcodes` VALUES (2947, '湖北省', '襄樊市', '宜城市', '420684'); -INSERT INTO `cardcodes` VALUES (2948, '湖北省', '鄂州市', '市辖区', '420701'); -INSERT INTO `cardcodes` VALUES (2949, '湖北省', '鄂州市', '梁子湖区', '420702'); -INSERT INTO `cardcodes` VALUES (2950, '湖北省', '鄂州市', '华容区', '420703'); -INSERT INTO `cardcodes` VALUES (2951, '湖北省', '鄂州市', '鄂城区', '420704'); -INSERT INTO `cardcodes` VALUES (2952, '湖北省', '荆门市', '市辖区', '420801'); -INSERT INTO `cardcodes` VALUES (2953, '湖北省', '荆门市', '东宝区', '420802'); -INSERT INTO `cardcodes` VALUES (2954, '湖北省', '荆门市', '沙洋区', '420803'); -INSERT INTO `cardcodes` VALUES (2955, '湖北省', '荆门市', '掇刀区', '420804'); -INSERT INTO `cardcodes` VALUES (2956, '湖北省', '荆门市', '京山县', '420821'); -INSERT INTO `cardcodes` VALUES (2957, '湖北省', '荆门市', '沙洋县', '420822'); -INSERT INTO `cardcodes` VALUES (2958, '湖北省', '荆门市', '钟祥市', '420881'); -INSERT INTO `cardcodes` VALUES (2959, '湖北省', '孝感市', '市辖区', '420901'); -INSERT INTO `cardcodes` VALUES (2960, '湖北省', '孝感市', '孝南区', '420902'); -INSERT INTO `cardcodes` VALUES (2961, '湖北省', '孝感市', '孝昌县', '420921'); -INSERT INTO `cardcodes` VALUES (2962, '湖北省', '孝感市', '大悟县', '420922'); -INSERT INTO `cardcodes` VALUES (2963, '湖北省', '孝感市', '云梦县', '420923'); -INSERT INTO `cardcodes` VALUES (2964, '湖北省', '孝感市', '应城市', '420981'); -INSERT INTO `cardcodes` VALUES (2965, '湖北省', '孝感市', '安陆市', '420982'); -INSERT INTO `cardcodes` VALUES (2966, '湖北省', '孝感市', '广水市', '420983'); -INSERT INTO `cardcodes` VALUES (2967, '湖北省', '孝感市', '汉川市', '420984'); -INSERT INTO `cardcodes` VALUES (2968, '湖北省', '荆州市', '市辖区', '421001'); -INSERT INTO `cardcodes` VALUES (2969, '湖北省', '荆州市', '沙市区', '421002'); -INSERT INTO `cardcodes` VALUES (2970, '湖北省', '荆州市', '荆州区', '421003'); -INSERT INTO `cardcodes` VALUES (2971, '湖北省', '荆州市', '江陵区', '421004'); -INSERT INTO `cardcodes` VALUES (2972, '湖北省', '荆州市', '松滋县', '421021'); -INSERT INTO `cardcodes` VALUES (2973, '湖北省', '荆州市', '公安县', '421022'); -INSERT INTO `cardcodes` VALUES (2974, '湖北省', '荆州市', '监利县', '421023'); -INSERT INTO `cardcodes` VALUES (2975, '湖北省', '荆州市', '江陵县', '421024'); -INSERT INTO `cardcodes` VALUES (2976, '湖北省', '荆州市', '石首市', '421081'); -INSERT INTO `cardcodes` VALUES (2977, '湖北省', '荆州市', '洪湖市', '421083'); -INSERT INTO `cardcodes` VALUES (2978, '湖北省', '荆州市', '松滋市', '421087'); -INSERT INTO `cardcodes` VALUES (2979, '湖北省', '黄冈市', '市辖区', '421101'); -INSERT INTO `cardcodes` VALUES (2980, '湖北省', '黄冈市', '黄州区', '421102'); -INSERT INTO `cardcodes` VALUES (2981, '湖北省', '黄冈市', '龙感湖管理区', '421103'); -INSERT INTO `cardcodes` VALUES (2982, '湖北省', '黄冈市', '团风县', '421121'); -INSERT INTO `cardcodes` VALUES (2983, '湖北省', '黄冈市', '红安县', '421122'); -INSERT INTO `cardcodes` VALUES (2984, '湖北省', '黄冈市', '罗田县', '421123'); -INSERT INTO `cardcodes` VALUES (2985, '湖北省', '黄冈市', '英山县', '421124'); -INSERT INTO `cardcodes` VALUES (2986, '湖北省', '黄冈市', '浠水县', '421125'); -INSERT INTO `cardcodes` VALUES (2987, '湖北省', '黄冈市', '蕲春县', '421126'); -INSERT INTO `cardcodes` VALUES (2988, '湖北省', '黄冈市', '黄梅县', '421127'); -INSERT INTO `cardcodes` VALUES (2989, '湖北省', '黄冈市', '麻城市', '421181'); -INSERT INTO `cardcodes` VALUES (2990, '湖北省', '黄冈市', '武穴市', '421182'); -INSERT INTO `cardcodes` VALUES (141, '河北省', '邢台市', '临西县', '130535'); -INSERT INTO `cardcodes` VALUES (142, '河北省', '邢台市', '南宫市', '130581'); -INSERT INTO `cardcodes` VALUES (143, '河北省', '邢台市', '沙河市', '130582'); -INSERT INTO `cardcodes` VALUES (144, '河北省', '保定市', '市辖区', '130601'); -INSERT INTO `cardcodes` VALUES (145, '河北省', '保定市', '新市区', '130602'); -INSERT INTO `cardcodes` VALUES (146, '河北省', '保定市', '北市区', '130603'); -INSERT INTO `cardcodes` VALUES (147, '河北省', '保定市', '南市区', '130604'); -INSERT INTO `cardcodes` VALUES (148, '河北省', '保定市', '满城县', '130621'); -INSERT INTO `cardcodes` VALUES (149, '河北省', '保定市', '清苑县', '130622'); -INSERT INTO `cardcodes` VALUES (150, '河北省', '保定市', '涞水县', '130623'); -INSERT INTO `cardcodes` VALUES (151, '河北省', '保定市', '阜平县', '130624'); -INSERT INTO `cardcodes` VALUES (152, '河北省', '保定市', '徐水县', '130625'); -INSERT INTO `cardcodes` VALUES (153, '河北省', '保定市', '定兴县', '130626'); -INSERT INTO `cardcodes` VALUES (154, '河北省', '保定市', '唐县', '130627'); -INSERT INTO `cardcodes` VALUES (155, '河北省', '保定市', '高阳县', '130628'); -INSERT INTO `cardcodes` VALUES (156, '河北省', '保定市', '容城县', '130629'); -INSERT INTO `cardcodes` VALUES (157, '河北省', '保定市', '涞源县', '130630'); -INSERT INTO `cardcodes` VALUES (158, '河北省', '保定市', '望都县', '130631'); -INSERT INTO `cardcodes` VALUES (159, '河北省', '保定市', '安新县', '130632'); -INSERT INTO `cardcodes` VALUES (160, '河北省', '保定市', '易县', '130633'); -INSERT INTO `cardcodes` VALUES (161, '河北省', '保定市', '曲阳县', '130634'); -INSERT INTO `cardcodes` VALUES (162, '河北省', '保定市', '蠡县', '130635'); -INSERT INTO `cardcodes` VALUES (163, '河北省', '保定市', '顺平县', '130636'); -INSERT INTO `cardcodes` VALUES (164, '河北省', '保定市', '博野县', '130637'); -INSERT INTO `cardcodes` VALUES (165, '河北省', '保定市', '雄县', '130638'); -INSERT INTO `cardcodes` VALUES (166, '河北省', '保定市', '涿州市', '130681'); -INSERT INTO `cardcodes` VALUES (167, '河北省', '保定市', '定州市', '130682'); -INSERT INTO `cardcodes` VALUES (168, '河北省', '保定市', '安国市', '130683'); -INSERT INTO `cardcodes` VALUES (169, '河北省', '保定市', '高碑店市', '130684'); -INSERT INTO `cardcodes` VALUES (170, '河北省', '张家口市', '市辖区', '130701'); -INSERT INTO `cardcodes` VALUES (171, '河北省', '张家口市', '桥东区', '130702'); -INSERT INTO `cardcodes` VALUES (172, '河北省', '张家口市', '桥西区', '130703'); -INSERT INTO `cardcodes` VALUES (173, '河北省', '张家口市', '宣化区', '130705'); -INSERT INTO `cardcodes` VALUES (174, '河北省', '张家口市', '下花园区', '130706'); -INSERT INTO `cardcodes` VALUES (175, '河北省', '张家口市', '宣化县', '130721'); -INSERT INTO `cardcodes` VALUES (176, '河北省', '张家口市', '张北县', '130722'); -INSERT INTO `cardcodes` VALUES (177, '河北省', '张家口市', '康保县', '130723'); -INSERT INTO `cardcodes` VALUES (178, '河北省', '张家口市', '沽源县', '130724'); -INSERT INTO `cardcodes` VALUES (179, '河北省', '张家口市', '尚义县', '130725'); -INSERT INTO `cardcodes` VALUES (180, '河北省', '张家口市', '蔚县', '130726'); -INSERT INTO `cardcodes` VALUES (181, '河北省', '张家口市', '阳原县', '130727'); -INSERT INTO `cardcodes` VALUES (182, '河北省', '张家口市', '怀安县', '130728'); -INSERT INTO `cardcodes` VALUES (183, '河北省', '张家口市', '万全县', '130729'); -INSERT INTO `cardcodes` VALUES (184, '河北省', '张家口市', '怀来县', '130730'); -INSERT INTO `cardcodes` VALUES (185, '河北省', '张家口市', '涿鹿县', '130731'); -INSERT INTO `cardcodes` VALUES (186, '河北省', '张家口市', '赤城县', '130732'); -INSERT INTO `cardcodes` VALUES (187, '河北省', '张家口市', '崇礼县', '130733'); -INSERT INTO `cardcodes` VALUES (188, '河北省', '承德市', '市辖区', '130801'); -INSERT INTO `cardcodes` VALUES (189, '河北省', '承德市', '双桥区', '130802'); -INSERT INTO `cardcodes` VALUES (190, '河北省', '承德市', '双滦区', '130803'); -INSERT INTO `cardcodes` VALUES (191, '河北省', '承德市', '鹰手营子矿区', '130804'); -INSERT INTO `cardcodes` VALUES (192, '河北省', '承德市', '承德县', '130821'); -INSERT INTO `cardcodes` VALUES (4486, '贵州省', '黔南布依族苗族自治州', '平塘县', '522727'); -INSERT INTO `cardcodes` VALUES (4487, '贵州省', '黔南布依族苗族自治州', '罗甸县', '522728'); -INSERT INTO `cardcodes` VALUES (4488, '贵州省', '黔南布依族苗族自治州', '长顺县', '522729'); -INSERT INTO `cardcodes` VALUES (4489, '贵州省', '黔南布依族苗族自治州', '龙里县', '522730'); -INSERT INTO `cardcodes` VALUES (4490, '贵州省', '黔南布依族苗族自治州', '惠水县', '522731'); -INSERT INTO `cardcodes` VALUES (4491, '贵州省', '黔南布依族苗族自治州', '三都水族自治县', '522732'); -INSERT INTO `cardcodes` VALUES (4492, '云南省', '昭通市', '威信县', '530629'); -INSERT INTO `cardcodes` VALUES (4493, '云南省', '昭通市', '水富县', '530630'); -INSERT INTO `cardcodes` VALUES (4494, '云南省', '昭通市', '市辖区', '530601'); -INSERT INTO `cardcodes` VALUES (4495, '云南省', '昭通市', '昭阳区', '530602'); -INSERT INTO `cardcodes` VALUES (4496, '云南省', '昭通市', '鲁甸县', '530621'); -INSERT INTO `cardcodes` VALUES (4497, '云南省', '昭通市', '巧家县', '530622'); -INSERT INTO `cardcodes` VALUES (4498, '云南省', '昭通市', '盐津县', '530623'); -INSERT INTO `cardcodes` VALUES (4499, '云南省', '昭通市', '大关县', '530624'); -INSERT INTO `cardcodes` VALUES (4500, '云南省', '昭通市', '永善县', '530625'); -INSERT INTO `cardcodes` VALUES (4501, '云南省', '昭通市', '绥江县', '530626'); -INSERT INTO `cardcodes` VALUES (4502, '云南省', '昭通市', '镇雄县', '530627'); -INSERT INTO `cardcodes` VALUES (4503, '云南省', '昭通市', '彝良县', '530628'); -INSERT INTO `cardcodes` VALUES (4504, '云南省', '丽江市', '市辖区', '530701'); -INSERT INTO `cardcodes` VALUES (4505, '云南省', '丽江市', '古城区', '530702'); -INSERT INTO `cardcodes` VALUES (4506, '云南省', '丽江市', '玉龙纳西族自治县', '530721'); -INSERT INTO `cardcodes` VALUES (4507, '云南省', '丽江市', '永胜县', '530722'); -INSERT INTO `cardcodes` VALUES (4508, '云南省', '丽江市', '华坪县', '530723'); -INSERT INTO `cardcodes` VALUES (4509, '云南省', '丽江市', '宁蒗彝族自治县', '530724'); -INSERT INTO `cardcodes` VALUES (4510, '云南省', '思茅市', '市辖区', '530801'); -INSERT INTO `cardcodes` VALUES (4511, '云南省', '思茅市', '翠云区', '530802'); -INSERT INTO `cardcodes` VALUES (4512, '云南省', '思茅市', '普洱哈尼族彝族自治县', '530821'); -INSERT INTO `cardcodes` VALUES (4513, '云南省', '思茅市', '墨江哈尼族自治县', '530822'); -INSERT INTO `cardcodes` VALUES (4514, '云南省', '思茅市', '景东彝族自治县', '530823'); -INSERT INTO `cardcodes` VALUES (4515, '云南省', '思茅市', '景谷傣族彝族自治县', '530824'); -INSERT INTO `cardcodes` VALUES (4516, '云南省', '思茅市', '镇沅彝族哈尼族拉祜族自治县', '530825'); -INSERT INTO `cardcodes` VALUES (4517, '云南省', '思茅市', '江城哈尼族彝族自治县', '530826'); -INSERT INTO `cardcodes` VALUES (4518, '云南省', '思茅市', '孟连傣族拉祜族佤族自治县', '530827'); -INSERT INTO `cardcodes` VALUES (4519, '云南省', '思茅市', '澜沧拉祜族自治县', '530828'); -INSERT INTO `cardcodes` VALUES (4520, '云南省', '思茅市', '西盟佤族自治县', '530829'); -INSERT INTO `cardcodes` VALUES (4521, '云南省', '临沧市', '市辖区', '530901'); -INSERT INTO `cardcodes` VALUES (4522, '云南省', '临沧市', '临翔区', '530902'); -INSERT INTO `cardcodes` VALUES (4523, '云南省', '临沧市', '凤庆县', '530921'); -INSERT INTO `cardcodes` VALUES (4524, '云南省', '临沧市', '云县', '530922'); -INSERT INTO `cardcodes` VALUES (4525, '云南省', '临沧市', '永德县', '530923'); -INSERT INTO `cardcodes` VALUES (4526, '云南省', '临沧市', '镇康县', '530924'); -INSERT INTO `cardcodes` VALUES (4527, '云南省', '临沧市', '双江拉祜族佤族布朗族傣族自治县', '530925'); -INSERT INTO `cardcodes` VALUES (4528, '云南省', '临沧市', '耿马傣族佤族自治县', '530926'); -INSERT INTO `cardcodes` VALUES (4529, '云南省', '临沧市', '沧源佤族自治县', '530927'); -INSERT INTO `cardcodes` VALUES (4530, '云南省', '昭通地区', '昭通市', '532101'); -INSERT INTO `cardcodes` VALUES (4531, '云南省', '昭通地区', '鲁甸县', '532122'); -INSERT INTO `cardcodes` VALUES (4532, '云南省', '昭通地区', '巧家县', '532123'); -INSERT INTO `cardcodes` VALUES (4533, '云南省', '昭通地区', '盐津县', '532124'); -INSERT INTO `cardcodes` VALUES (4534, '云南省', '昭通地区', '大关县', '532125'); -INSERT INTO `cardcodes` VALUES (4535, '云南省', '昭通地区', '永善县', '532126'); -INSERT INTO `cardcodes` VALUES (4536, '云南省', '昭通地区', '绥江县', '532127'); -INSERT INTO `cardcodes` VALUES (4537, '云南省', '昭通地区', '镇雄县', '532128'); -INSERT INTO `cardcodes` VALUES (4538, '云南省', '昭通地区', '彝良县', '532129'); -INSERT INTO `cardcodes` VALUES (4539, '云南省', '昭通地区', '威信县', '532130'); -INSERT INTO `cardcodes` VALUES (4540, '云南省', '昭通地区', '水富县', '532131'); -INSERT INTO `cardcodes` VALUES (4541, '云南省', '曲靖地区', '麒麟区', '532201'); -INSERT INTO `cardcodes` VALUES (4542, '云南省', '曲靖地区', '曲靖县', '532221'); -INSERT INTO `cardcodes` VALUES (4543, '云南省', '曲靖地区', '沾益县', '532222'); -INSERT INTO `cardcodes` VALUES (4544, '云南省', '曲靖地区', '马龙县', '532223'); -INSERT INTO `cardcodes` VALUES (4545, '云南省', '曲靖地区', '宣威市', '532224'); -INSERT INTO `cardcodes` VALUES (4546, '云南省', '曲靖地区', '富源县', '532225'); -INSERT INTO `cardcodes` VALUES (4547, '云南省', '曲靖地区', '罗平县', '532226'); -INSERT INTO `cardcodes` VALUES (4548, '云南省', '曲靖地区', '师宗县', '532227'); -INSERT INTO `cardcodes` VALUES (4549, '云南省', '曲靖地区', '陆良县', '532228'); -INSERT INTO `cardcodes` VALUES (4550, '云南省', '曲靖地区', '宜良县', '532229'); -INSERT INTO `cardcodes` VALUES (4551, '云南省', '曲靖地区', '路南彝族自治县', '532230'); -INSERT INTO `cardcodes` VALUES (4552, '云南省', '曲靖地区', '寻甸回族彝族自治县', '532231'); -INSERT INTO `cardcodes` VALUES (4553, '云南省', '曲靖地区', '嵩明县', '532232'); -INSERT INTO `cardcodes` VALUES (4554, '云南省', '曲靖地区', '会泽县', '532233'); -INSERT INTO `cardcodes` VALUES (4555, '云南省', '楚雄彝族自治州', '楚雄市', '532301'); -INSERT INTO `cardcodes` VALUES (4556, '云南省', '楚雄彝族自治州', '楚雄县', '532321'); -INSERT INTO `cardcodes` VALUES (4557, '云南省', '楚雄彝族自治州', '双柏县', '532322'); -INSERT INTO `cardcodes` VALUES (4558, '云南省', '楚雄彝族自治州', '牟定县', '532323'); -INSERT INTO `cardcodes` VALUES (4559, '云南省', '楚雄彝族自治州', '南华县', '532324'); -INSERT INTO `cardcodes` VALUES (4560, '云南省', '楚雄彝族自治州', '姚安县', '532325'); -INSERT INTO `cardcodes` VALUES (4561, '云南省', '楚雄彝族自治州', '大姚县', '532326'); -INSERT INTO `cardcodes` VALUES (4562, '云南省', '楚雄彝族自治州', '永仁县', '532327'); -INSERT INTO `cardcodes` VALUES (4563, '云南省', '楚雄彝族自治州', '元谋县', '532328'); -INSERT INTO `cardcodes` VALUES (4564, '云南省', '楚雄彝族自治州', '武定县', '532329'); -INSERT INTO `cardcodes` VALUES (4565, '云南省', '楚雄彝族自治州', '禄劝县', '532330'); -INSERT INTO `cardcodes` VALUES (4566, '云南省', '楚雄彝族自治州', '禄丰县', '532331'); -INSERT INTO `cardcodes` VALUES (4567, '云南省', '保山地区', '龙陵县', '533024'); -INSERT INTO `cardcodes` VALUES (4568, '云南省', '保山地区', '昌宁县', '533025'); -INSERT INTO `cardcodes` VALUES (4569, '云南省', '保山地区', '保山市', '533001'); -INSERT INTO `cardcodes` VALUES (4570, '云南省', '保山地区', '施甸县', '533022'); -INSERT INTO `cardcodes` VALUES (4571, '云南省', '保山地区', '腾冲县', '533023'); -INSERT INTO `cardcodes` VALUES (4572, '云南省', '德宏傣族景颇族自治州', '畹町市', '533101'); -INSERT INTO `cardcodes` VALUES (4573, '云南省', '德宏傣族景颇族自治州', '瑞丽市', '533102'); -INSERT INTO `cardcodes` VALUES (4574, '云南省', '德宏傣族景颇族自治州', '潞西市', '533103'); -INSERT INTO `cardcodes` VALUES (4575, '云南省', '德宏傣族景颇族自治州', '潞西县', '533121'); -INSERT INTO `cardcodes` VALUES (4576, '云南省', '德宏傣族景颇族自治州', '梁河县', '533122'); -INSERT INTO `cardcodes` VALUES (4577, '云南省', '德宏傣族景颇族自治州', '盈江县', '533123'); -INSERT INTO `cardcodes` VALUES (4578, '云南省', '德宏傣族景颇族自治州', '陇川县', '533124'); -INSERT INTO `cardcodes` VALUES (4579, '云南省', '德宏傣族景颇族自治州', '瑞丽县', '533125'); -INSERT INTO `cardcodes` VALUES (4580, '云南省', '德宏傣族景颇族自治州', '畹町镇', '533126'); -INSERT INTO `cardcodes` VALUES (4581, '云南省', '丽江地区', '丽江纳西族自治县', '533221'); -INSERT INTO `cardcodes` VALUES (4582, '云南省', '丽江地区', '永胜县', '533222'); -INSERT INTO `cardcodes` VALUES (4583, '云南省', '丽江地区', '华坪县', '533223'); -INSERT INTO `cardcodes` VALUES (4584, '云南省', '丽江地区', '宁蒗彝族自治县', '533224'); -INSERT INTO `cardcodes` VALUES (4585, '云南省', '怒江傈僳族自治州', '泸水县', '533321'); -INSERT INTO `cardcodes` VALUES (4586, '云南省', '怒江傈僳族自治州', '碧江县', '533322'); -INSERT INTO `cardcodes` VALUES (4587, '云南省', '怒江傈僳族自治州', '福贡县', '533323'); -INSERT INTO `cardcodes` VALUES (4588, '云南省', '怒江傈僳族自治州', '贡山独龙族怒族自治县', '533324'); -INSERT INTO `cardcodes` VALUES (4589, '云南省', '怒江傈僳族自治州', '兰坪白族普米族自治县', '533325'); -INSERT INTO `cardcodes` VALUES (4590, '云南省', '昆明市', '市辖区', '530101'); -INSERT INTO `cardcodes` VALUES (4591, '云南省', '昆明市', '五华区', '530102'); -INSERT INTO `cardcodes` VALUES (4592, '云南省', '昆明市', '盘龙区', '530103'); -INSERT INTO `cardcodes` VALUES (4593, '云南省', '昆明市', '官渡区', '530111'); -INSERT INTO `cardcodes` VALUES (4594, '云南省', '昆明市', '西山区', '530112'); -INSERT INTO `cardcodes` VALUES (4595, '云南省', '昆明市', '东川区', '530113'); -INSERT INTO `cardcodes` VALUES (4596, '云南省', '昆明市', '呈贡县', '530121'); -INSERT INTO `cardcodes` VALUES (4597, '云南省', '昆明市', '晋宁县', '530122'); -INSERT INTO `cardcodes` VALUES (4598, '云南省', '昆明市', '安宁县', '530123'); -INSERT INTO `cardcodes` VALUES (4599, '云南省', '昆明市', '富民县', '530124'); -INSERT INTO `cardcodes` VALUES (4600, '云南省', '昆明市', '宜良县', '530125'); -INSERT INTO `cardcodes` VALUES (4601, '云南省', '昆明市', '石林彝族自治县', '530126'); -INSERT INTO `cardcodes` VALUES (4602, '云南省', '昆明市', '嵩明县', '530127'); -INSERT INTO `cardcodes` VALUES (4603, '云南省', '昆明市', '禄劝彝族苗族自治县', '530128'); -INSERT INTO `cardcodes` VALUES (4604, '云南省', '昆明市', '寻甸回族彝族自治县', '530129'); -INSERT INTO `cardcodes` VALUES (4605, '云南省', '昆明市', '安宁市', '530181'); -INSERT INTO `cardcodes` VALUES (4606, '云南省', '曲靖市', '市辖区', '530301'); -INSERT INTO `cardcodes` VALUES (4607, '云南省', '曲靖市', '麒麟区', '530302'); -INSERT INTO `cardcodes` VALUES (4608, '云南省', '曲靖市', '马龙县', '530321'); -INSERT INTO `cardcodes` VALUES (4609, '云南省', '曲靖市', '陆良县', '530322'); -INSERT INTO `cardcodes` VALUES (4610, '云南省', '曲靖市', '师宗县', '530323'); -INSERT INTO `cardcodes` VALUES (4611, '云南省', '曲靖市', '罗平县', '530324'); -INSERT INTO `cardcodes` VALUES (4612, '云南省', '曲靖市', '富源县', '530325'); -INSERT INTO `cardcodes` VALUES (4613, '云南省', '曲靖市', '会泽县', '530326'); -INSERT INTO `cardcodes` VALUES (4614, '云南省', '曲靖市', '沾益县', '530328'); -INSERT INTO `cardcodes` VALUES (4615, '云南省', '曲靖市', '宣威市', '530381'); -INSERT INTO `cardcodes` VALUES (4616, '云南省', '玉溪市', '市辖区', '530401'); -INSERT INTO `cardcodes` VALUES (4617, '云南省', '玉溪市', '红塔区', '530402'); -INSERT INTO `cardcodes` VALUES (4618, '云南省', '玉溪市', '江川县', '530421'); -INSERT INTO `cardcodes` VALUES (4619, '云南省', '玉溪市', '澄江县', '530422'); -INSERT INTO `cardcodes` VALUES (4620, '云南省', '玉溪市', '通海县', '530423'); -INSERT INTO `cardcodes` VALUES (4621, '云南省', '玉溪市', '华宁县', '530424'); -INSERT INTO `cardcodes` VALUES (4622, '云南省', '玉溪市', '易门县', '530425'); -INSERT INTO `cardcodes` VALUES (4623, '云南省', '玉溪市', '峨山彝族自治县', '530426'); -INSERT INTO `cardcodes` VALUES (4624, '云南省', '玉溪市', '新平彝族傣族自治县', '530427'); -INSERT INTO `cardcodes` VALUES (4625, '云南省', '玉溪市', '元江哈尼族彝族傣族自治县', '530428'); -INSERT INTO `cardcodes` VALUES (4626, '云南省', '保山市', '市辖区', '530501'); -INSERT INTO `cardcodes` VALUES (4627, '云南省', '保山市', '隆阳区', '530502'); -INSERT INTO `cardcodes` VALUES (4628, '云南省', '保山市', '施甸县', '530521'); -INSERT INTO `cardcodes` VALUES (4629, '云南省', '保山市', '腾冲县', '530522'); -INSERT INTO `cardcodes` VALUES (4630, '云南省', '保山市', '龙陵县', '530523'); -INSERT INTO `cardcodes` VALUES (4631, '云南省', '保山市', '昌宁县', '530524'); -INSERT INTO `cardcodes` VALUES (4632, '云南省', '玉溪地区', '玉溪市', '532401'); -INSERT INTO `cardcodes` VALUES (4633, '云南省', '玉溪地区', '玉溪县', '532421'); -INSERT INTO `cardcodes` VALUES (4634, '云南省', '玉溪地区', '江川县', '532422'); -INSERT INTO `cardcodes` VALUES (4635, '云南省', '玉溪地区', '澄江县', '532423'); -INSERT INTO `cardcodes` VALUES (4636, '云南省', '玉溪地区', '通海县', '532424'); -INSERT INTO `cardcodes` VALUES (4637, '云南省', '玉溪地区', '华宁县', '532425'); -INSERT INTO `cardcodes` VALUES (4638, '云南省', '玉溪地区', '易门县', '532426'); -INSERT INTO `cardcodes` VALUES (4639, '云南省', '玉溪地区', '峨山彝族自治县', '532427'); -INSERT INTO `cardcodes` VALUES (4640, '云南省', '玉溪地区', '新平彝族傣族自治县', '532428'); -INSERT INTO `cardcodes` VALUES (4641, '云南省', '玉溪地区', '元江哈尼族彝族傣族自治县', '532429'); -INSERT INTO `cardcodes` VALUES (4642, '云南省', '红河哈尼族彝族自治州', '个旧市', '532501'); -INSERT INTO `cardcodes` VALUES (4643, '云南省', '红河哈尼族彝族自治州', '开远市', '532502'); -INSERT INTO `cardcodes` VALUES (4644, '云南省', '红河哈尼族彝族自治州', '蒙自县', '532522'); -INSERT INTO `cardcodes` VALUES (4645, '云南省', '红河哈尼族彝族自治州', '屏边苗族自治县', '532523'); -INSERT INTO `cardcodes` VALUES (4646, '云南省', '红河哈尼族彝族自治州', '建水县', '532524'); -INSERT INTO `cardcodes` VALUES (4647, '云南省', '红河哈尼族彝族自治州', '石屏县', '532525'); -INSERT INTO `cardcodes` VALUES (4648, '云南省', '红河哈尼族彝族自治州', '弥勒县', '532526'); -INSERT INTO `cardcodes` VALUES (4649, '云南省', '红河哈尼族彝族自治州', '泸西县', '532527'); -INSERT INTO `cardcodes` VALUES (4650, '云南省', '红河哈尼族彝族自治州', '元阳县', '532528'); -INSERT INTO `cardcodes` VALUES (4651, '云南省', '红河哈尼族彝族自治州', '红河县', '532529'); -INSERT INTO `cardcodes` VALUES (4652, '云南省', '红河哈尼族彝族自治州', '金平苗族瑶族傣族自治县', '532530'); -INSERT INTO `cardcodes` VALUES (4653, '云南省', '红河哈尼族彝族自治州', '绿春县', '532531'); -INSERT INTO `cardcodes` VALUES (4654, '云南省', '红河哈尼族彝族自治州', '河口瑶族自治县', '532532'); -INSERT INTO `cardcodes` VALUES (4655, '云南省', '文山壮族苗族自治州', '文山县', '532621'); -INSERT INTO `cardcodes` VALUES (4656, '云南省', '文山壮族苗族自治州', '砚山县', '532622'); -INSERT INTO `cardcodes` VALUES (4657, '云南省', '文山壮族苗族自治州', '西畴县', '532623'); -INSERT INTO `cardcodes` VALUES (4658, '云南省', '文山壮族苗族自治州', '麻栗坡县', '532624'); -INSERT INTO `cardcodes` VALUES (4659, '云南省', '文山壮族苗族自治州', '马关县', '532625'); -INSERT INTO `cardcodes` VALUES (4660, '云南省', '文山壮族苗族自治州', '丘北县', '532626'); -INSERT INTO `cardcodes` VALUES (4661, '云南省', '文山壮族苗族自治州', '广南县', '532627'); -INSERT INTO `cardcodes` VALUES (4662, '云南省', '文山壮族苗族自治州', '富宁县', '532628'); -INSERT INTO `cardcodes` VALUES (4663, '云南省', '思茅地区', '思茅市', '532701'); -INSERT INTO `cardcodes` VALUES (4664, '云南省', '思茅地区', '普洱哈尼族彝族自治县', '532722'); -INSERT INTO `cardcodes` VALUES (4665, '云南省', '思茅地区', '墨江哈尼族自治县', '532723'); -INSERT INTO `cardcodes` VALUES (4666, '云南省', '思茅地区', '景东彝族自治县', '532724'); -INSERT INTO `cardcodes` VALUES (4667, '云南省', '思茅地区', '景谷傣族彝族自治县', '532725'); -INSERT INTO `cardcodes` VALUES (4668, '云南省', '思茅地区', '镇沅彝族哈尼族拉祜族自治县', '532726'); -INSERT INTO `cardcodes` VALUES (4669, '云南省', '思茅地区', '江城哈尼族彝族自治县', '532727'); -INSERT INTO `cardcodes` VALUES (4670, '云南省', '思茅地区', '孟连傣族拉祜族佤族自治县', '532728'); -INSERT INTO `cardcodes` VALUES (4671, '云南省', '思茅地区', '澜沧拉祜族自治县', '532729'); -INSERT INTO `cardcodes` VALUES (4672, '云南省', '思茅地区', '西盟佤族自治县', '532730'); -INSERT INTO `cardcodes` VALUES (4673, '云南省', '西双版纳傣族自治州', '景洪市', '532801'); -INSERT INTO `cardcodes` VALUES (4674, '云南省', '西双版纳傣族自治州', '勐海县', '532822'); -INSERT INTO `cardcodes` VALUES (4675, '云南省', '西双版纳傣族自治州', '勐腊县', '532823'); -INSERT INTO `cardcodes` VALUES (4676, '云南省', '大理白族自治州', '大理市', '532901'); -INSERT INTO `cardcodes` VALUES (4677, '云南省', '大理白族自治州', '漾濞彝族自治县', '532922'); -INSERT INTO `cardcodes` VALUES (4678, '云南省', '大理白族自治州', '祥云县', '532923'); -INSERT INTO `cardcodes` VALUES (4679, '云南省', '大理白族自治州', '宾川县', '532924'); -INSERT INTO `cardcodes` VALUES (4680, '云南省', '大理白族自治州', '弥渡县', '532925'); -INSERT INTO `cardcodes` VALUES (4681, '云南省', '大理白族自治州', '南涧彝族自治县', '532926'); -INSERT INTO `cardcodes` VALUES (4682, '云南省', '大理白族自治州', '巍山彝族回族自治县', '532927'); -INSERT INTO `cardcodes` VALUES (4683, '云南省', '大理白族自治州', '永平县', '532928'); -INSERT INTO `cardcodes` VALUES (4684, '云南省', '大理白族自治州', '云龙县', '532929'); -INSERT INTO `cardcodes` VALUES (4685, '云南省', '大理白族自治州', '洱源县', '532930'); -INSERT INTO `cardcodes` VALUES (4686, '云南省', '大理白族自治州', '剑川县', '532931'); -INSERT INTO `cardcodes` VALUES (4687, '云南省', '大理白族自治州', '鹤庆县', '532932'); -INSERT INTO `cardcodes` VALUES (4688, '云南省', '迪庆藏族自治州', '香格里拉县', '533421'); -INSERT INTO `cardcodes` VALUES (4689, '云南省', '迪庆藏族自治州', '德钦县', '533422'); -INSERT INTO `cardcodes` VALUES (4690, '云南省', '迪庆藏族自治州', '维西傈僳族自治县', '533423'); -INSERT INTO `cardcodes` VALUES (4691, '云南省', '临沧地区', '临沧县', '533521'); -INSERT INTO `cardcodes` VALUES (4692, '云南省', '临沧地区', '凤庆县', '533522'); -INSERT INTO `cardcodes` VALUES (4693, '云南省', '临沧地区', '云县', '533523'); -INSERT INTO `cardcodes` VALUES (4694, '云南省', '临沧地区', '永德县', '533524'); -INSERT INTO `cardcodes` VALUES (4695, '云南省', '临沧地区', '彭水苗族土家族自治县', '533525'); -INSERT INTO `cardcodes` VALUES (4696, '云南省', '临沧地区', '双江拉祜族佤族布朗族傣族自治县', '533526'); -INSERT INTO `cardcodes` VALUES (4697, '云南省', '临沧地区', '耿马傣族佤族自治县', '533527'); -INSERT INTO `cardcodes` VALUES (4698, '云南省', '临沧地区', '沧源佤族自治县', '533528'); -INSERT INTO `cardcodes` VALUES (4699, '西藏自治区', '山南地区', '乃东县', '542221'); -INSERT INTO `cardcodes` VALUES (4700, '西藏自治区', '山南地区', '扎囊县', '542222'); -INSERT INTO `cardcodes` VALUES (4701, '西藏自治区', '山南地区', '贡嘎县', '542223'); -INSERT INTO `cardcodes` VALUES (4702, '西藏自治区', '山南地区', '桑日县', '542224'); -INSERT INTO `cardcodes` VALUES (4703, '西藏自治区', '山南地区', '琼结县', '542225'); -INSERT INTO `cardcodes` VALUES (4704, '西藏自治区', '山南地区', '曲松县', '542226'); -INSERT INTO `cardcodes` VALUES (4705, '西藏自治区', '山南地区', '措美县', '542227'); -INSERT INTO `cardcodes` VALUES (4706, '西藏自治区', '山南地区', '洛扎县', '542228'); -INSERT INTO `cardcodes` VALUES (4707, '西藏自治区', '山南地区', '加查县', '542229'); -INSERT INTO `cardcodes` VALUES (4708, '西藏自治区', '山南地区', '朗县', '542230'); -INSERT INTO `cardcodes` VALUES (4709, '西藏自治区', '山南地区', '隆子县', '542231'); -INSERT INTO `cardcodes` VALUES (4710, '西藏自治区', '山南地区', '错那县', '542232'); -INSERT INTO `cardcodes` VALUES (4711, '西藏自治区', '山南地区', '浪卡子县', '542233'); -INSERT INTO `cardcodes` VALUES (4712, '西藏自治区', '日喀则地区', '日喀则市', '542301'); -INSERT INTO `cardcodes` VALUES (4713, '西藏自治区', '日喀则地区', '日喀则县', '542321'); -INSERT INTO `cardcodes` VALUES (4714, '西藏自治区', '日喀则地区', '南木林县', '542322'); -INSERT INTO `cardcodes` VALUES (4715, '西藏自治区', '日喀则地区', '江孜县', '542323'); -INSERT INTO `cardcodes` VALUES (4716, '西藏自治区', '日喀则地区', '定日县', '542324'); -INSERT INTO `cardcodes` VALUES (4717, '西藏自治区', '日喀则地区', '萨迦县', '542325'); -INSERT INTO `cardcodes` VALUES (4718, '西藏自治区', '日喀则地区', '拉孜县', '542326'); -INSERT INTO `cardcodes` VALUES (4719, '西藏自治区', '日喀则地区', '昂仁县', '542327'); -INSERT INTO `cardcodes` VALUES (4720, '西藏自治区', '日喀则地区', '谢通门县', '542328'); -INSERT INTO `cardcodes` VALUES (4721, '西藏自治区', '日喀则地区', '白朗县', '542329'); -INSERT INTO `cardcodes` VALUES (4722, '西藏自治区', '日喀则地区', '仁布县', '542330'); -INSERT INTO `cardcodes` VALUES (4723, '西藏自治区', '日喀则地区', '康马县', '542331'); -INSERT INTO `cardcodes` VALUES (4724, '西藏自治区', '日喀则地区', '定结县', '542332'); -INSERT INTO `cardcodes` VALUES (4725, '西藏自治区', '日喀则地区', '仲巴县', '542333'); -INSERT INTO `cardcodes` VALUES (4726, '西藏自治区', '日喀则地区', '亚东县', '542334'); -INSERT INTO `cardcodes` VALUES (4727, '西藏自治区', '日喀则地区', '吉隆县', '542335'); -INSERT INTO `cardcodes` VALUES (4728, '西藏自治区', '日喀则地区', '聂拉木县', '542336'); -INSERT INTO `cardcodes` VALUES (4729, '西藏自治区', '日喀则地区', '萨嘎县', '542337'); -INSERT INTO `cardcodes` VALUES (4730, '西藏自治区', '日喀则地区', '岗巴县', '542338'); -INSERT INTO `cardcodes` VALUES (4731, '西藏自治区', '那曲地区', '那曲县', '542421'); -INSERT INTO `cardcodes` VALUES (4732, '西藏自治区', '那曲地区', '嘉黎县', '542422'); -INSERT INTO `cardcodes` VALUES (4733, '西藏自治区', '那曲地区', '比如县', '542423'); -INSERT INTO `cardcodes` VALUES (4734, '西藏自治区', '那曲地区', '聂荣县', '542424'); -INSERT INTO `cardcodes` VALUES (4735, '西藏自治区', '那曲地区', '安多县', '542425'); -INSERT INTO `cardcodes` VALUES (4736, '西藏自治区', '那曲地区', '申扎县', '542426'); -INSERT INTO `cardcodes` VALUES (4737, '西藏自治区', '那曲地区', '索县', '542427'); -INSERT INTO `cardcodes` VALUES (4738, '西藏自治区', '那曲地区', '班戈县', '542428'); -INSERT INTO `cardcodes` VALUES (4739, '西藏自治区', '那曲地区', '巴青县', '542429'); -INSERT INTO `cardcodes` VALUES (4740, '西藏自治区', '那曲地区', '尼玛县', '542430'); -INSERT INTO `cardcodes` VALUES (4741, '西藏自治区', '拉萨市', '市辖区', '540101'); -INSERT INTO `cardcodes` VALUES (4742, '西藏自治区', '拉萨市', '城关区', '540102'); -INSERT INTO `cardcodes` VALUES (4743, '西藏自治区', '拉萨市', '市区', '540120'); -INSERT INTO `cardcodes` VALUES (4744, '西藏自治区', '拉萨市', '林周县', '540121'); -INSERT INTO `cardcodes` VALUES (4745, '西藏自治区', '拉萨市', '当雄县', '540122'); -INSERT INTO `cardcodes` VALUES (4746, '西藏自治区', '拉萨市', '尼木县', '540123'); -INSERT INTO `cardcodes` VALUES (4747, '西藏自治区', '拉萨市', '曲水县', '540124'); -INSERT INTO `cardcodes` VALUES (4748, '西藏自治区', '拉萨市', '堆龙德庆县', '540125'); -INSERT INTO `cardcodes` VALUES (4749, '西藏自治区', '拉萨市', '达孜县', '540126'); -INSERT INTO `cardcodes` VALUES (4750, '西藏自治区', '拉萨市', '墨竹工卡县', '540127'); -INSERT INTO `cardcodes` VALUES (4751, '西藏自治区', '拉萨市', '工布江达县', '540128'); -INSERT INTO `cardcodes` VALUES (4752, '西藏自治区', '拉萨市', '林芝县', '540129'); -INSERT INTO `cardcodes` VALUES (4753, '西藏自治区', '拉萨市', '米林县', '540130'); -INSERT INTO `cardcodes` VALUES (4754, '西藏自治区', '拉萨市', '墨脱县', '540131'); -INSERT INTO `cardcodes` VALUES (4755, '西藏自治区', '昌都地区', '昌都县', '542121'); -INSERT INTO `cardcodes` VALUES (4756, '西藏自治区', '昌都地区', '江达县', '542122'); -INSERT INTO `cardcodes` VALUES (4757, '西藏自治区', '昌都地区', '贡觉县', '542123'); -INSERT INTO `cardcodes` VALUES (4758, '西藏自治区', '昌都地区', '类乌齐县', '542124'); -INSERT INTO `cardcodes` VALUES (4759, '西藏自治区', '昌都地区', '丁青县', '542125'); -INSERT INTO `cardcodes` VALUES (4760, '西藏自治区', '昌都地区', '察雅县', '542126'); -INSERT INTO `cardcodes` VALUES (4761, '西藏自治区', '昌都地区', '八宿县', '542127'); -INSERT INTO `cardcodes` VALUES (4762, '西藏自治区', '昌都地区', '左贡县', '542128'); -INSERT INTO `cardcodes` VALUES (4763, '西藏自治区', '昌都地区', '芒康县', '542129'); -INSERT INTO `cardcodes` VALUES (4764, '西藏自治区', '昌都地区', '洛隆县', '542132'); -INSERT INTO `cardcodes` VALUES (4765, '西藏自治区', '昌都地区', '边坝县', '542133'); -INSERT INTO `cardcodes` VALUES (4766, '西藏自治区', '昌都地区', '盐井县', '542134'); -INSERT INTO `cardcodes` VALUES (4767, '西藏自治区', '昌都地区', '碧土县', '542135'); -INSERT INTO `cardcodes` VALUES (4768, '西藏自治区', '昌都地区', '妥坝县', '542136'); -INSERT INTO `cardcodes` VALUES (4769, '西藏自治区', '昌都地区', '生达县', '542137'); -INSERT INTO `cardcodes` VALUES (4770, '西藏自治区', '阿里地区', '普兰县', '542521'); -INSERT INTO `cardcodes` VALUES (4771, '西藏自治区', '阿里地区', '札达县', '542522'); -INSERT INTO `cardcodes` VALUES (4772, '西藏自治区', '阿里地区', '噶尔县', '542523'); -INSERT INTO `cardcodes` VALUES (4773, '西藏自治区', '阿里地区', '日土县', '542524'); -INSERT INTO `cardcodes` VALUES (4774, '西藏自治区', '阿里地区', '革吉县', '542525'); -INSERT INTO `cardcodes` VALUES (4775, '西藏自治区', '阿里地区', '改则县', '542526'); -INSERT INTO `cardcodes` VALUES (4776, '西藏自治区', '阿里地区', '措勤县', '542527'); -INSERT INTO `cardcodes` VALUES (4777, '西藏自治区', '阿里地区', '隆格尔县', '542528'); -INSERT INTO `cardcodes` VALUES (4778, '西藏自治区', '林芝地区', '林芝县', '542621'); -INSERT INTO `cardcodes` VALUES (4779, '西藏自治区', '林芝地区', '工布江达县', '542622'); -INSERT INTO `cardcodes` VALUES (4780, '西藏自治区', '林芝地区', '米林县', '542623'); -INSERT INTO `cardcodes` VALUES (4781, '西藏自治区', '林芝地区', '墨脱县', '542624'); -INSERT INTO `cardcodes` VALUES (4782, '西藏自治区', '林芝地区', '波密县', '542625'); -INSERT INTO `cardcodes` VALUES (4783, '西藏自治区', '林芝地区', '察隅县', '542626'); -INSERT INTO `cardcodes` VALUES (4784, '西藏自治区', '林芝地区', '朗县', '542627'); -INSERT INTO `cardcodes` VALUES (4785, '西藏自治区', '江孜地区', '江孜县', '542721'); -INSERT INTO `cardcodes` VALUES (4786, '西藏自治区', '江孜地区', '浪卡子县', '542722'); -INSERT INTO `cardcodes` VALUES (4787, '西藏自治区', '江孜地区', '白朗县', '542723'); -INSERT INTO `cardcodes` VALUES (4788, '西藏自治区', '江孜地区', '仁布县', '542724'); -INSERT INTO `cardcodes` VALUES (4789, '西藏自治区', '江孜地区', '康马县', '542725'); -INSERT INTO `cardcodes` VALUES (4790, '西藏自治区', '江孜地区', '亚东县', '542726'); -INSERT INTO `cardcodes` VALUES (4791, '西藏自治区', '江孜地区', '岗巴县', '542727'); -INSERT INTO `cardcodes` VALUES (4792, '陕西省', '西安市', '市辖区', '610101'); -INSERT INTO `cardcodes` VALUES (4793, '陕西省', '西安市', '新城区', '610102'); -INSERT INTO `cardcodes` VALUES (4794, '陕西省', '西安市', '碑林区', '610103'); -INSERT INTO `cardcodes` VALUES (4795, '陕西省', '西安市', '莲湖区', '610104'); -INSERT INTO `cardcodes` VALUES (4796, '陕西省', '西安市', '经济开发区', '610106'); -INSERT INTO `cardcodes` VALUES (4797, '陕西省', '西安市', '灞桥区', '610111'); -INSERT INTO `cardcodes` VALUES (4798, '陕西省', '西安市', '未央区', '610112'); -INSERT INTO `cardcodes` VALUES (4799, '陕西省', '西安市', '雁塔区', '610113'); -INSERT INTO `cardcodes` VALUES (4800, '陕西省', '西安市', '阎良区', '610114'); -INSERT INTO `cardcodes` VALUES (4801, '陕西省', '西安市', '临潼区', '610115'); -INSERT INTO `cardcodes` VALUES (4802, '陕西省', '西安市', '长安区', '610116'); -INSERT INTO `cardcodes` VALUES (4803, '陕西省', '西安市', '长安县', '610121'); -INSERT INTO `cardcodes` VALUES (4804, '陕西省', '西安市', '蓝田县', '610122'); -INSERT INTO `cardcodes` VALUES (4805, '陕西省', '西安市', '临潼县', '610123'); -INSERT INTO `cardcodes` VALUES (4806, '陕西省', '西安市', '周至县', '610124'); -INSERT INTO `cardcodes` VALUES (4807, '陕西省', '西安市', '户县', '610125'); -INSERT INTO `cardcodes` VALUES (4808, '陕西省', '西安市', '高陵县', '610126'); -INSERT INTO `cardcodes` VALUES (4809, '陕西省', '安康市', '镇坪县', '610927'); -INSERT INTO `cardcodes` VALUES (4810, '陕西省', '安康市', '旬阳县', '610928'); -INSERT INTO `cardcodes` VALUES (4811, '陕西省', '安康市', '白河县', '610929'); -INSERT INTO `cardcodes` VALUES (4812, '陕西省', '安康市', '市辖区', '610901'); -INSERT INTO `cardcodes` VALUES (4813, '陕西省', '安康市', '汉滨区', '610902'); -INSERT INTO `cardcodes` VALUES (4814, '陕西省', '安康市', '汉阴县', '610921'); -INSERT INTO `cardcodes` VALUES (4815, '陕西省', '安康市', '石泉县', '610922'); -INSERT INTO `cardcodes` VALUES (4816, '陕西省', '安康市', '宁陕县', '610923'); -INSERT INTO `cardcodes` VALUES (4817, '陕西省', '安康市', '紫阳县', '610924'); -INSERT INTO `cardcodes` VALUES (4818, '陕西省', '安康市', '岚皋县', '610925'); -INSERT INTO `cardcodes` VALUES (4819, '陕西省', '安康市', '平利县', '610926'); -INSERT INTO `cardcodes` VALUES (4820, '陕西省', '商洛市', '市辖区', '611001'); -INSERT INTO `cardcodes` VALUES (4821, '陕西省', '商洛市', '商州区', '611002'); -INSERT INTO `cardcodes` VALUES (4822, '陕西省', '商洛市', '洛南县', '611021'); -INSERT INTO `cardcodes` VALUES (4823, '陕西省', '商洛市', '丹凤县', '611022'); -INSERT INTO `cardcodes` VALUES (4824, '陕西省', '商洛市', '商南县', '611023'); -INSERT INTO `cardcodes` VALUES (4825, '陕西省', '商洛市', '山阳县', '611024'); -INSERT INTO `cardcodes` VALUES (4826, '陕西省', '商洛市', '镇安县', '611025'); -INSERT INTO `cardcodes` VALUES (4827, '陕西省', '商洛市', '柞水县', '611026'); -INSERT INTO `cardcodes` VALUES (4828, '陕西省', '渭南地区', '渭南市', '612101'); -INSERT INTO `cardcodes` VALUES (4829, '陕西省', '渭南地区', '韩城市', '612102'); -INSERT INTO `cardcodes` VALUES (4830, '陕西省', '渭南地区', '华阴市', '612103'); -INSERT INTO `cardcodes` VALUES (4831, '陕西省', '渭南地区', '蓝田县', '612121'); -INSERT INTO `cardcodes` VALUES (4832, '陕西省', '渭南地区', '临潼县', '612122'); -INSERT INTO `cardcodes` VALUES (4833, '陕西省', '渭南地区', '渭南县', '612123'); -INSERT INTO `cardcodes` VALUES (4834, '陕西省', '渭南地区', '华县', '612124'); -INSERT INTO `cardcodes` VALUES (4835, '陕西省', '渭南地区', '华阴县', '612125'); -INSERT INTO `cardcodes` VALUES (4836, '陕西省', '渭南地区', '潼关县', '612126'); -INSERT INTO `cardcodes` VALUES (4837, '陕西省', '渭南地区', '大荔县', '612127'); -INSERT INTO `cardcodes` VALUES (4838, '陕西省', '渭南地区', '蒲城县', '612128'); -INSERT INTO `cardcodes` VALUES (4839, '陕西省', '渭南地区', '澄城县', '612129'); -INSERT INTO `cardcodes` VALUES (4840, '陕西省', '渭南地区', '白水县', '612130'); -INSERT INTO `cardcodes` VALUES (4841, '陕西省', '渭南地区', '韩城县', '612131'); -INSERT INTO `cardcodes` VALUES (4842, '陕西省', '渭南地区', '合阳县', '612132'); -INSERT INTO `cardcodes` VALUES (4843, '陕西省', '渭南地区', '富平县', '612133'); -INSERT INTO `cardcodes` VALUES (4844, '陕西省', '咸阳地区', '咸阳市', '612201'); -INSERT INTO `cardcodes` VALUES (4845, '陕西省', '咸阳地区', '兴平县', '612221'); -INSERT INTO `cardcodes` VALUES (4846, '陕西省', '咸阳地区', '周至县', '612222'); -INSERT INTO `cardcodes` VALUES (4847, '陕西省', '咸阳地区', '户县', '612223'); -INSERT INTO `cardcodes` VALUES (4848, '陕西省', '咸阳地区', '三原县', '612224'); -INSERT INTO `cardcodes` VALUES (4849, '陕西省', '咸阳地区', '泾阳县', '612225'); -INSERT INTO `cardcodes` VALUES (4850, '陕西省', '咸阳地区', '高陵县', '612226'); -INSERT INTO `cardcodes` VALUES (4851, '陕西省', '咸阳地区', '乾县', '612227'); -INSERT INTO `cardcodes` VALUES (4852, '陕西省', '咸阳地区', '礼泉县', '612228'); -INSERT INTO `cardcodes` VALUES (4853, '陕西省', '咸阳地区', '永寿县', '612229'); -INSERT INTO `cardcodes` VALUES (4854, '陕西省', '咸阳地区', '彬县', '612230'); -INSERT INTO `cardcodes` VALUES (4855, '陕西省', '咸阳地区', '长武县', '612231'); -INSERT INTO `cardcodes` VALUES (4856, '陕西省', '咸阳地区', '旬邑县', '612232'); -INSERT INTO `cardcodes` VALUES (4857, '陕西省', '咸阳地区', '淳化县', '612233'); -INSERT INTO `cardcodes` VALUES (4858, '陕西省', '汉中地区', '汉中市', '612301'); -INSERT INTO `cardcodes` VALUES (4859, '陕西省', '汉中地区', '南郑县', '612321'); -INSERT INTO `cardcodes` VALUES (4860, '陕西省', '汉中地区', '城固县', '612322'); -INSERT INTO `cardcodes` VALUES (4861, '陕西省', '汉中地区', '洋县', '612323'); -INSERT INTO `cardcodes` VALUES (4862, '陕西省', '汉中地区', '西乡县', '612324'); -INSERT INTO `cardcodes` VALUES (4863, '陕西省', '汉中地区', '勉县', '612325'); -INSERT INTO `cardcodes` VALUES (4864, '陕西省', '汉中地区', '宁强县', '612326'); -INSERT INTO `cardcodes` VALUES (4865, '陕西省', '汉中地区', '略阳县', '612327'); -INSERT INTO `cardcodes` VALUES (4866, '陕西省', '汉中地区', '镇巴县', '612328'); -INSERT INTO `cardcodes` VALUES (4867, '陕西省', '汉中地区', '留坝县', '612329'); -INSERT INTO `cardcodes` VALUES (4868, '陕西省', '汉中地区', '佛坪县', '612330'); -INSERT INTO `cardcodes` VALUES (4869, '陕西省', '安康地区', '安康市', '612401'); -INSERT INTO `cardcodes` VALUES (4870, '陕西省', '安康地区', '安康县', '612421'); -INSERT INTO `cardcodes` VALUES (4871, '陕西省', '安康地区', '汉阴县', '612422'); -INSERT INTO `cardcodes` VALUES (4872, '陕西省', '安康地区', '石泉县', '612423'); -INSERT INTO `cardcodes` VALUES (4873, '陕西省', '安康地区', '宁陕县', '612424'); -INSERT INTO `cardcodes` VALUES (4874, '陕西省', '安康地区', '紫阳县', '612425'); -INSERT INTO `cardcodes` VALUES (4875, '陕西省', '安康地区', '岚皋县', '612426'); -INSERT INTO `cardcodes` VALUES (4876, '陕西省', '安康地区', '平利县', '612427'); -INSERT INTO `cardcodes` VALUES (4877, '陕西省', '安康地区', '镇坪县', '612428'); -INSERT INTO `cardcodes` VALUES (4878, '陕西省', '安康地区', '旬阳县', '612429'); -INSERT INTO `cardcodes` VALUES (4879, '陕西省', '安康地区', '白河县', '612430'); -INSERT INTO `cardcodes` VALUES (4880, '陕西省', '铜川市', '市辖区', '610201'); -INSERT INTO `cardcodes` VALUES (4881, '陕西省', '铜川市', '城区', '610202'); -INSERT INTO `cardcodes` VALUES (4882, '陕西省', '铜川市', '郊区', '610203'); -INSERT INTO `cardcodes` VALUES (4883, '陕西省', '铜川市', '耀州区', '610204'); -INSERT INTO `cardcodes` VALUES (4884, '陕西省', '铜川市', '市区', '610220'); -INSERT INTO `cardcodes` VALUES (4885, '陕西省', '铜川市', '耀县', '610221'); -INSERT INTO `cardcodes` VALUES (4886, '陕西省', '铜川市', '宜君县', '610222'); -INSERT INTO `cardcodes` VALUES (4887, '陕西省', '宝鸡市', '市辖区', '610301'); -INSERT INTO `cardcodes` VALUES (4888, '陕西省', '宝鸡市', '渭滨区', '610302'); -INSERT INTO `cardcodes` VALUES (4889, '陕西省', '宝鸡市', '金台区', '610303'); -INSERT INTO `cardcodes` VALUES (4890, '陕西省', '宝鸡市', '陈仓区', '610304'); -INSERT INTO `cardcodes` VALUES (4891, '陕西省', '宝鸡市', '市区', '610320'); -INSERT INTO `cardcodes` VALUES (4892, '陕西省', '宝鸡市', '宝鸡县', '610321'); -INSERT INTO `cardcodes` VALUES (4893, '陕西省', '宝鸡市', '凤翔县', '610322'); -INSERT INTO `cardcodes` VALUES (4894, '陕西省', '宝鸡市', '岐山县', '610323'); -INSERT INTO `cardcodes` VALUES (4895, '陕西省', '宝鸡市', '扶风县', '610324'); -INSERT INTO `cardcodes` VALUES (4896, '陕西省', '宝鸡市', '武功县', '610325'); -INSERT INTO `cardcodes` VALUES (4897, '陕西省', '宝鸡市', '眉县', '610326'); -INSERT INTO `cardcodes` VALUES (4898, '陕西省', '宝鸡市', '陇县', '610327'); -INSERT INTO `cardcodes` VALUES (4899, '陕西省', '宝鸡市', '千阳县', '610328'); -INSERT INTO `cardcodes` VALUES (4900, '陕西省', '宝鸡市', '麟游县', '610329'); -INSERT INTO `cardcodes` VALUES (4901, '陕西省', '宝鸡市', '凤县', '610330'); -INSERT INTO `cardcodes` VALUES (4902, '陕西省', '宝鸡市', '太白县', '610331'); -INSERT INTO `cardcodes` VALUES (4903, '陕西省', '咸阳市', '市辖区', '610401'); -INSERT INTO `cardcodes` VALUES (4904, '陕西省', '咸阳市', '秦都区', '610402'); -INSERT INTO `cardcodes` VALUES (4905, '陕西省', '咸阳市', '杨陵区', '610403'); -INSERT INTO `cardcodes` VALUES (4906, '陕西省', '咸阳市', '渭城区', '610404'); -INSERT INTO `cardcodes` VALUES (4907, '陕西省', '咸阳市', '兴平县', '610421'); -INSERT INTO `cardcodes` VALUES (4908, '陕西省', '咸阳市', '三原县', '610422'); -INSERT INTO `cardcodes` VALUES (4909, '陕西省', '咸阳市', '泾阳县', '610423'); -INSERT INTO `cardcodes` VALUES (4910, '陕西省', '咸阳市', '乾县', '610424'); -INSERT INTO `cardcodes` VALUES (4911, '陕西省', '咸阳市', '礼泉县', '610425'); -INSERT INTO `cardcodes` VALUES (4912, '陕西省', '咸阳市', '永寿县', '610426'); -INSERT INTO `cardcodes` VALUES (4913, '陕西省', '咸阳市', '彬县', '610427'); -INSERT INTO `cardcodes` VALUES (4914, '陕西省', '咸阳市', '长武县', '610428'); -INSERT INTO `cardcodes` VALUES (4915, '陕西省', '咸阳市', '旬邑县', '610429'); -INSERT INTO `cardcodes` VALUES (4916, '陕西省', '咸阳市', '淳化县', '610430'); -INSERT INTO `cardcodes` VALUES (4917, '陕西省', '咸阳市', '武功县', '610431'); -INSERT INTO `cardcodes` VALUES (4918, '陕西省', '咸阳市', '兴平市', '610481'); -INSERT INTO `cardcodes` VALUES (4919, '陕西省', '渭南市', '市辖区', '610501'); -INSERT INTO `cardcodes` VALUES (4920, '陕西省', '渭南市', '临渭区', '610502'); -INSERT INTO `cardcodes` VALUES (4921, '陕西省', '渭南市', '华县', '610521'); -INSERT INTO `cardcodes` VALUES (4922, '陕西省', '渭南市', '潼关县', '610522'); -INSERT INTO `cardcodes` VALUES (4923, '陕西省', '渭南市', '大荔县', '610523'); -INSERT INTO `cardcodes` VALUES (4924, '陕西省', '渭南市', '合阳县', '610524'); -INSERT INTO `cardcodes` VALUES (4925, '陕西省', '渭南市', '澄城县', '610525'); -INSERT INTO `cardcodes` VALUES (4926, '陕西省', '渭南市', '蒲城县', '610526'); -INSERT INTO `cardcodes` VALUES (4927, '陕西省', '渭南市', '白水县', '610527'); -INSERT INTO `cardcodes` VALUES (4928, '陕西省', '渭南市', '富平县', '610528'); -INSERT INTO `cardcodes` VALUES (4929, '陕西省', '渭南市', '韩城市', '610581'); -INSERT INTO `cardcodes` VALUES (4930, '陕西省', '渭南市', '华阴市', '610582'); -INSERT INTO `cardcodes` VALUES (4931, '陕西省', '延安市', '市辖区', '610601'); -INSERT INTO `cardcodes` VALUES (4932, '陕西省', '延安市', '宝塔区', '610602'); -INSERT INTO `cardcodes` VALUES (4933, '陕西省', '延安市', '延长县', '610621'); -INSERT INTO `cardcodes` VALUES (4934, '陕西省', '延安市', '延川县', '610622'); -INSERT INTO `cardcodes` VALUES (4935, '陕西省', '延安市', '子长县', '610623'); -INSERT INTO `cardcodes` VALUES (4936, '陕西省', '延安市', '安塞县', '610624'); -INSERT INTO `cardcodes` VALUES (4937, '陕西省', '延安市', '志丹县', '610625'); -INSERT INTO `cardcodes` VALUES (4938, '陕西省', '延安市', '吴起县', '610626'); -INSERT INTO `cardcodes` VALUES (4939, '陕西省', '延安市', '甘泉县', '610627'); -INSERT INTO `cardcodes` VALUES (4940, '陕西省', '延安市', '富县', '610628'); -INSERT INTO `cardcodes` VALUES (4941, '陕西省', '延安市', '洛川县', '610629'); -INSERT INTO `cardcodes` VALUES (4942, '陕西省', '延安市', '宜川县', '610630'); -INSERT INTO `cardcodes` VALUES (4943, '陕西省', '延安市', '黄龙县', '610631'); -INSERT INTO `cardcodes` VALUES (4944, '陕西省', '延安市', '黄陵县', '610632'); -INSERT INTO `cardcodes` VALUES (4945, '陕西省', '汉中市', '市辖区', '610701'); -INSERT INTO `cardcodes` VALUES (4946, '陕西省', '汉中市', '汉台区', '610702'); -INSERT INTO `cardcodes` VALUES (4947, '陕西省', '汉中市', '南郑县', '610721'); -INSERT INTO `cardcodes` VALUES (4948, '陕西省', '汉中市', '城固县', '610722'); -INSERT INTO `cardcodes` VALUES (4949, '陕西省', '汉中市', '洋县', '610723'); -INSERT INTO `cardcodes` VALUES (4950, '陕西省', '汉中市', '西乡县', '610724'); -INSERT INTO `cardcodes` VALUES (4951, '陕西省', '汉中市', '勉县', '610725'); -INSERT INTO `cardcodes` VALUES (4952, '陕西省', '汉中市', '宁强县', '610726'); -INSERT INTO `cardcodes` VALUES (4953, '陕西省', '汉中市', '略阳县', '610727'); -INSERT INTO `cardcodes` VALUES (4954, '陕西省', '汉中市', '镇巴县', '610728'); -INSERT INTO `cardcodes` VALUES (4955, '陕西省', '汉中市', '留坝县', '610729'); -INSERT INTO `cardcodes` VALUES (4956, '陕西省', '汉中市', '佛坪县', '610730'); -INSERT INTO `cardcodes` VALUES (4957, '陕西省', '榆林市', '市辖区', '610801'); -INSERT INTO `cardcodes` VALUES (4958, '陕西省', '榆林市', '榆阳区', '610802'); -INSERT INTO `cardcodes` VALUES (4959, '陕西省', '榆林市', '神木县', '610821'); -INSERT INTO `cardcodes` VALUES (4960, '陕西省', '榆林市', '府谷县', '610822'); -INSERT INTO `cardcodes` VALUES (4961, '陕西省', '榆林市', '横山县', '610823'); -INSERT INTO `cardcodes` VALUES (4962, '陕西省', '榆林市', '靖边县', '610824'); -INSERT INTO `cardcodes` VALUES (4963, '陕西省', '榆林市', '定边县', '610825'); -INSERT INTO `cardcodes` VALUES (4964, '陕西省', '榆林市', '绥德县', '610826'); -INSERT INTO `cardcodes` VALUES (4965, '陕西省', '榆林市', '米脂县', '610827'); -INSERT INTO `cardcodes` VALUES (4966, '陕西省', '榆林市', '佳县', '610828'); -INSERT INTO `cardcodes` VALUES (4967, '陕西省', '榆林市', '吴堡县', '610829'); -INSERT INTO `cardcodes` VALUES (4968, '陕西省', '榆林市', '清涧县', '610830'); -INSERT INTO `cardcodes` VALUES (4969, '陕西省', '榆林市', '子洲县', '610831'); -INSERT INTO `cardcodes` VALUES (4970, '陕西省', '商洛地区', '商州市', '612501'); -INSERT INTO `cardcodes` VALUES (4971, '陕西省', '商洛地区', '洛南县', '612522'); -INSERT INTO `cardcodes` VALUES (4972, '陕西省', '商洛地区', '丹凤县', '612523'); -INSERT INTO `cardcodes` VALUES (4973, '陕西省', '商洛地区', '商南县', '612524'); -INSERT INTO `cardcodes` VALUES (4974, '陕西省', '商洛地区', '山阳县', '612525'); -INSERT INTO `cardcodes` VALUES (4975, '陕西省', '商洛地区', '镇安县', '612526'); -INSERT INTO `cardcodes` VALUES (4976, '陕西省', '商洛地区', '柞水县', '612527'); -INSERT INTO `cardcodes` VALUES (4977, '陕西省', '延安地区', '延安市', '612601'); -INSERT INTO `cardcodes` VALUES (4978, '陕西省', '延安地区', '延长县', '612621'); -INSERT INTO `cardcodes` VALUES (4979, '陕西省', '延安地区', '延川县', '612622'); -INSERT INTO `cardcodes` VALUES (4980, '陕西省', '延安地区', '子长县', '612623'); -INSERT INTO `cardcodes` VALUES (4981, '陕西省', '延安地区', '安塞县', '612624'); -INSERT INTO `cardcodes` VALUES (4982, '陕西省', '延安地区', '志丹县', '612625'); -INSERT INTO `cardcodes` VALUES (4983, '陕西省', '延安地区', '吴旗县', '612626'); -INSERT INTO `cardcodes` VALUES (4984, '陕西省', '延安地区', '甘泉县', '612627'); -INSERT INTO `cardcodes` VALUES (4985, '陕西省', '延安地区', '富县', '612628'); -INSERT INTO `cardcodes` VALUES (4986, '陕西省', '延安地区', '洛川县', '612629'); -INSERT INTO `cardcodes` VALUES (4987, '陕西省', '延安地区', '宜川县', '612630'); -INSERT INTO `cardcodes` VALUES (4988, '陕西省', '延安地区', '黄龙县', '612631'); -INSERT INTO `cardcodes` VALUES (4989, '陕西省', '延安地区', '黄陵县', '612632'); -INSERT INTO `cardcodes` VALUES (4990, '陕西省', '延安地区', '宜君县', '612633'); -INSERT INTO `cardcodes` VALUES (4991, '陕西省', '榆林地区', '榆林市', '612701'); -INSERT INTO `cardcodes` VALUES (4992, '陕西省', '榆林地区', '榆林县', '612721'); -INSERT INTO `cardcodes` VALUES (4993, '陕西省', '榆林地区', '神木县', '612722'); -INSERT INTO `cardcodes` VALUES (4994, '陕西省', '榆林地区', '府谷县', '612723'); -INSERT INTO `cardcodes` VALUES (4995, '陕西省', '榆林地区', '横山县', '612724'); -INSERT INTO `cardcodes` VALUES (4996, '陕西省', '榆林地区', '靖边县', '612725'); -INSERT INTO `cardcodes` VALUES (4997, '陕西省', '榆林地区', '定边县', '612726'); -INSERT INTO `cardcodes` VALUES (4998, '陕西省', '榆林地区', '绥德县', '612727'); -INSERT INTO `cardcodes` VALUES (4999, '陕西省', '榆林地区', '米脂县', '612728'); -INSERT INTO `cardcodes` VALUES (5000, '陕西省', '榆林地区', '佳县', '612729'); -INSERT INTO `cardcodes` VALUES (5001, '陕西省', '榆林地区', '吴堡县', '612730'); -INSERT INTO `cardcodes` VALUES (5002, '陕西省', '榆林地区', '清涧县', '612731'); -INSERT INTO `cardcodes` VALUES (5003, '陕西省', '榆林地区', '子洲县', '612732'); -INSERT INTO `cardcodes` VALUES (5004, '甘肃省', '平凉市', '庄浪县', '620825'); -INSERT INTO `cardcodes` VALUES (5005, '甘肃省', '平凉市', '静宁县', '620826'); -INSERT INTO `cardcodes` VALUES (5006, '甘肃省', '平凉市', '市辖区', '620801'); -INSERT INTO `cardcodes` VALUES (5007, '甘肃省', '平凉市', '崆峒区', '620802'); -INSERT INTO `cardcodes` VALUES (5008, '甘肃省', '平凉市', '泾川县', '620821'); -INSERT INTO `cardcodes` VALUES (5009, '甘肃省', '平凉市', '灵台县', '620822'); -INSERT INTO `cardcodes` VALUES (5010, '甘肃省', '平凉市', '崇信县', '620823'); -INSERT INTO `cardcodes` VALUES (5011, '甘肃省', '平凉市', '华亭县', '620824'); -INSERT INTO `cardcodes` VALUES (5012, '甘肃省', '酒泉市', '市辖区', '620901'); -INSERT INTO `cardcodes` VALUES (5013, '甘肃省', '酒泉市', '肃州区', '620902'); -INSERT INTO `cardcodes` VALUES (5014, '甘肃省', '酒泉市', '金塔县', '620921'); -INSERT INTO `cardcodes` VALUES (5015, '甘肃省', '酒泉市', '瓜州县', '620922'); -INSERT INTO `cardcodes` VALUES (5016, '甘肃省', '酒泉市', '肃北蒙古族自治县', '620923'); -INSERT INTO `cardcodes` VALUES (5017, '甘肃省', '酒泉市', '阿克塞哈萨克族自治县', '620924'); -INSERT INTO `cardcodes` VALUES (5018, '甘肃省', '酒泉市', '玉门市', '620981'); -INSERT INTO `cardcodes` VALUES (5019, '甘肃省', '酒泉市', '敦煌市', '620982'); -INSERT INTO `cardcodes` VALUES (5020, '甘肃省', '庆阳市', '市辖区', '621001'); -INSERT INTO `cardcodes` VALUES (5021, '甘肃省', '庆阳市', '西峰区', '621002'); -INSERT INTO `cardcodes` VALUES (5022, '甘肃省', '庆阳市', '庆城县', '621021'); -INSERT INTO `cardcodes` VALUES (5023, '甘肃省', '庆阳市', '环县', '621022'); -INSERT INTO `cardcodes` VALUES (5024, '甘肃省', '庆阳市', '华池县', '621023'); -INSERT INTO `cardcodes` VALUES (5025, '甘肃省', '庆阳市', '合水县', '621024'); -INSERT INTO `cardcodes` VALUES (5026, '甘肃省', '庆阳市', '正宁县', '621025'); -INSERT INTO `cardcodes` VALUES (5027, '甘肃省', '庆阳市', '宁县', '621026'); -INSERT INTO `cardcodes` VALUES (5028, '甘肃省', '庆阳市', '镇原县', '621027'); -INSERT INTO `cardcodes` VALUES (5029, '甘肃省', '定西市', '市辖区', '621101'); -INSERT INTO `cardcodes` VALUES (5030, '甘肃省', '定西市', '安定区', '621102'); -INSERT INTO `cardcodes` VALUES (5031, '甘肃省', '定西市', '通渭县', '621121'); -INSERT INTO `cardcodes` VALUES (5032, '甘肃省', '定西市', '陇西县', '621122'); -INSERT INTO `cardcodes` VALUES (5033, '甘肃省', '定西市', '渭源县', '621123'); -INSERT INTO `cardcodes` VALUES (5034, '甘肃省', '定西市', '临洮县', '621124'); -INSERT INTO `cardcodes` VALUES (5035, '甘肃省', '定西市', '漳县', '621125'); -INSERT INTO `cardcodes` VALUES (5036, '甘肃省', '定西市', '岷县', '621126'); -INSERT INTO `cardcodes` VALUES (5037, '甘肃省', '陇南市', '市辖区', '621201'); -INSERT INTO `cardcodes` VALUES (5038, '甘肃省', '陇南市', '武都区', '621202'); -INSERT INTO `cardcodes` VALUES (5039, '甘肃省', '陇南市', '成县', '621221'); -INSERT INTO `cardcodes` VALUES (5040, '甘肃省', '陇南市', '文县', '621222'); -INSERT INTO `cardcodes` VALUES (5041, '甘肃省', '陇南市', '宕昌县', '621223'); -INSERT INTO `cardcodes` VALUES (5042, '甘肃省', '陇南市', '康县', '621224'); -INSERT INTO `cardcodes` VALUES (5043, '甘肃省', '陇南市', '西和县', '621225'); -INSERT INTO `cardcodes` VALUES (5044, '甘肃省', '陇南市', '礼县', '621226'); -INSERT INTO `cardcodes` VALUES (5045, '甘肃省', '陇南市', '徽县', '621227'); -INSERT INTO `cardcodes` VALUES (5046, '甘肃省', '陇南市', '两当县', '621228'); -INSERT INTO `cardcodes` VALUES (5047, '甘肃省', '酒泉地区', '玉门市', '622101'); -INSERT INTO `cardcodes` VALUES (5048, '甘肃省', '酒泉地区', '酒泉市', '622102'); -INSERT INTO `cardcodes` VALUES (5049, '甘肃省', '酒泉地区', '敦煌市', '622103'); -INSERT INTO `cardcodes` VALUES (5050, '甘肃省', '酒泉地区', '金塔县', '622123'); -INSERT INTO `cardcodes` VALUES (5051, '甘肃省', '酒泉地区', '肃北蒙古族自治县', '622124'); -INSERT INTO `cardcodes` VALUES (5052, '甘肃省', '酒泉地区', '阿克塞哈萨克族自治县', '622125'); -INSERT INTO `cardcodes` VALUES (5053, '甘肃省', '酒泉地区', '安西县', '622126'); -INSERT INTO `cardcodes` VALUES (5054, '甘肃省', '张掖地区', '张掖市', '622201'); -INSERT INTO `cardcodes` VALUES (5055, '甘肃省', '张掖地区', '肃南裕固族自治县', '622222'); -INSERT INTO `cardcodes` VALUES (5056, '甘肃省', '张掖地区', '民乐县', '622223'); -INSERT INTO `cardcodes` VALUES (5057, '甘肃省', '张掖地区', '临泽县', '622224'); -INSERT INTO `cardcodes` VALUES (5058, '甘肃省', '张掖地区', '高台县', '622225'); -INSERT INTO `cardcodes` VALUES (5059, '甘肃省', '张掖地区', '山丹县', '622226'); -INSERT INTO `cardcodes` VALUES (5060, '甘肃省', '武威地区', '武威市', '622301'); -INSERT INTO `cardcodes` VALUES (5061, '甘肃省', '武威地区', '民勤县', '622322'); -INSERT INTO `cardcodes` VALUES (5062, '甘肃省', '武威地区', '古浪县', '622323'); -INSERT INTO `cardcodes` VALUES (5063, '甘肃省', '武威地区', '天祝藏族自治县', '622326'); -INSERT INTO `cardcodes` VALUES (5064, '甘肃省', '武威地区', '连古城国家级自然保护区管理局', '622327'); -INSERT INTO `cardcodes` VALUES (5065, '甘肃省', '武威地区', '石羊河林业总场', '622328'); -INSERT INTO `cardcodes` VALUES (5066, '甘肃省', '武威地区', '苏武山林场', '622329'); -INSERT INTO `cardcodes` VALUES (5067, '甘肃省', '定西地区', '定西县', '622421'); -INSERT INTO `cardcodes` VALUES (5068, '甘肃省', '定西地区', '通渭县', '622424'); -INSERT INTO `cardcodes` VALUES (5069, '甘肃省', '定西地区', '陇西县', '622425'); -INSERT INTO `cardcodes` VALUES (5070, '甘肃省', '定西地区', '渭源县', '622426'); -INSERT INTO `cardcodes` VALUES (5071, '甘肃省', '定西地区', '临洮县', '622427'); -INSERT INTO `cardcodes` VALUES (5072, '甘肃省', '定西地区', '漳县', '622428'); -INSERT INTO `cardcodes` VALUES (5073, '甘肃省', '定西地区', '岷县', '622429'); -INSERT INTO `cardcodes` VALUES (5074, '甘肃省', '陇南地区', '武都县', '622621'); -INSERT INTO `cardcodes` VALUES (5075, '甘肃省', '陇南地区', '宕昌县', '622623'); -INSERT INTO `cardcodes` VALUES (5076, '甘肃省', '陇南地区', '成县', '622624'); -INSERT INTO `cardcodes` VALUES (5077, '甘肃省', '陇南地区', '康县', '622625'); -INSERT INTO `cardcodes` VALUES (5078, '甘肃省', '陇南地区', '文县', '622626'); -INSERT INTO `cardcodes` VALUES (5079, '甘肃省', '陇南地区', '西和县', '622627'); -INSERT INTO `cardcodes` VALUES (5080, '甘肃省', '陇南地区', '礼县', '622628'); -INSERT INTO `cardcodes` VALUES (5081, '甘肃省', '陇南地区', '两当县', '622629'); -INSERT INTO `cardcodes` VALUES (5082, '甘肃省', '陇南地区', '徽县', '622630'); -INSERT INTO `cardcodes` VALUES (5083, '甘肃省', '平凉地区', '平凉市', '622701'); -INSERT INTO `cardcodes` VALUES (5084, '甘肃省', '平凉地区', '泾川县', '622722'); -INSERT INTO `cardcodes` VALUES (5085, '甘肃省', '平凉地区', '灵台县', '622723'); -INSERT INTO `cardcodes` VALUES (5086, '甘肃省', '平凉地区', '崇信县', '622724'); -INSERT INTO `cardcodes` VALUES (5087, '甘肃省', '平凉地区', '华亭县', '622725'); -INSERT INTO `cardcodes` VALUES (5088, '甘肃省', '平凉地区', '庄浪县', '622726'); -INSERT INTO `cardcodes` VALUES (5089, '甘肃省', '平凉地区', '静宁县', '622727'); -INSERT INTO `cardcodes` VALUES (5090, '甘肃省', '庆阳地区', '西峰市', '622801'); -INSERT INTO `cardcodes` VALUES (5091, '甘肃省', '庆阳地区', '庆阳县', '622821'); -INSERT INTO `cardcodes` VALUES (5092, '甘肃省', '庆阳地区', '环县', '622822'); -INSERT INTO `cardcodes` VALUES (5093, '甘肃省', '庆阳地区', '华池县', '622823'); -INSERT INTO `cardcodes` VALUES (5094, '甘肃省', '庆阳地区', '合水县', '622824'); -INSERT INTO `cardcodes` VALUES (5095, '甘肃省', '庆阳地区', '正宁县', '622825'); -INSERT INTO `cardcodes` VALUES (5096, '甘肃省', '庆阳地区', '宁县', '622826'); -INSERT INTO `cardcodes` VALUES (5097, '甘肃省', '庆阳地区', '镇原县', '622827'); -INSERT INTO `cardcodes` VALUES (5098, '甘肃省', '临夏回族自治州', '临夏市', '622901'); -INSERT INTO `cardcodes` VALUES (5099, '甘肃省', '临夏回族自治州', '临夏县', '622921'); -INSERT INTO `cardcodes` VALUES (5100, '甘肃省', '临夏回族自治州', '康乐县', '622922'); -INSERT INTO `cardcodes` VALUES (5101, '甘肃省', '临夏回族自治州', '永靖县', '622923'); -INSERT INTO `cardcodes` VALUES (5102, '甘肃省', '临夏回族自治州', '广河县', '622924'); -INSERT INTO `cardcodes` VALUES (5103, '甘肃省', '临夏回族自治州', '和政县', '622925'); -INSERT INTO `cardcodes` VALUES (5104, '甘肃省', '临夏回族自治州', '东乡族自治县', '622926'); -INSERT INTO `cardcodes` VALUES (5105, '甘肃省', '临夏回族自治州', '积石山保安族东乡族撒拉族自治县', '622927'); -INSERT INTO `cardcodes` VALUES (5106, '甘肃省', '甘南藏族自治州', '合作市', '623001'); -INSERT INTO `cardcodes` VALUES (5107, '甘肃省', '甘南藏族自治州', '临潭县', '623021'); -INSERT INTO `cardcodes` VALUES (5108, '甘肃省', '甘南藏族自治州', '卓尼县', '623022'); -INSERT INTO `cardcodes` VALUES (5109, '甘肃省', '甘南藏族自治州', '舟曲县', '623023'); -INSERT INTO `cardcodes` VALUES (5110, '甘肃省', '甘南藏族自治州', '迭部县', '623024'); -INSERT INTO `cardcodes` VALUES (5111, '甘肃省', '甘南藏族自治州', '玛曲县', '623025'); -INSERT INTO `cardcodes` VALUES (5112, '甘肃省', '甘南藏族自治州', '碌曲县', '623026'); -INSERT INTO `cardcodes` VALUES (5113, '甘肃省', '甘南藏族自治州', '夏河县', '623027'); -INSERT INTO `cardcodes` VALUES (5114, '甘肃省', '兰州市', '市辖区', '620101'); -INSERT INTO `cardcodes` VALUES (5115, '甘肃省', '兰州市', '城关区', '620102'); -INSERT INTO `cardcodes` VALUES (5116, '甘肃省', '兰州市', '七里河区', '620103'); -INSERT INTO `cardcodes` VALUES (5117, '甘肃省', '兰州市', '西固区', '620104'); -INSERT INTO `cardcodes` VALUES (5118, '甘肃省', '兰州市', '安宁区', '620105'); -INSERT INTO `cardcodes` VALUES (5119, '甘肃省', '兰州市', '红古区', '620111'); -INSERT INTO `cardcodes` VALUES (5120, '甘肃省', '兰州市', '永登县', '620121'); -INSERT INTO `cardcodes` VALUES (5121, '甘肃省', '兰州市', '皋兰县', '620122'); -INSERT INTO `cardcodes` VALUES (5122, '甘肃省', '兰州市', '榆中县', '620123'); -INSERT INTO `cardcodes` VALUES (5123, '甘肃省', '嘉峪关市', '市辖区', '620201'); -INSERT INTO `cardcodes` VALUES (5124, '甘肃省', '嘉峪关市', '嘉峪关区', '620202'); -INSERT INTO `cardcodes` VALUES (5125, '甘肃省', '金昌市', '市辖区', '620301'); -INSERT INTO `cardcodes` VALUES (5126, '甘肃省', '金昌市', '金川区', '620302'); -INSERT INTO `cardcodes` VALUES (5127, '甘肃省', '金昌市', '永昌县', '620321'); -INSERT INTO `cardcodes` VALUES (5128, '甘肃省', '白银市', '市辖区', '620401'); -INSERT INTO `cardcodes` VALUES (5129, '甘肃省', '白银市', '白银区', '620402'); -INSERT INTO `cardcodes` VALUES (5130, '甘肃省', '白银市', '平川区', '620403'); -INSERT INTO `cardcodes` VALUES (5131, '甘肃省', '白银市', '靖远县', '620421'); -INSERT INTO `cardcodes` VALUES (5132, '甘肃省', '白银市', '会宁县', '620422'); -INSERT INTO `cardcodes` VALUES (5133, '甘肃省', '白银市', '景泰县', '620423'); -INSERT INTO `cardcodes` VALUES (5134, '甘肃省', '天水市', '市辖区', '620501'); -INSERT INTO `cardcodes` VALUES (5135, '甘肃省', '天水市', '秦州区', '620502'); -INSERT INTO `cardcodes` VALUES (5136, '甘肃省', '天水市', '麦积区', '620503'); -INSERT INTO `cardcodes` VALUES (5137, '甘肃省', '天水市', '清水县', '620521'); -INSERT INTO `cardcodes` VALUES (5138, '甘肃省', '天水市', '秦安县', '620522'); -INSERT INTO `cardcodes` VALUES (5139, '甘肃省', '天水市', '甘谷县', '620523'); -INSERT INTO `cardcodes` VALUES (5140, '甘肃省', '天水市', '武山县', '620524'); -INSERT INTO `cardcodes` VALUES (5141, '甘肃省', '天水市', '张家川回族自治县', '620525'); -INSERT INTO `cardcodes` VALUES (5142, '甘肃省', '武威市', '市辖区', '620601'); -INSERT INTO `cardcodes` VALUES (5143, '甘肃省', '武威市', '凉州区', '620602'); -INSERT INTO `cardcodes` VALUES (5144, '甘肃省', '武威市', '民勤县', '620621'); -INSERT INTO `cardcodes` VALUES (5145, '甘肃省', '武威市', '古浪县', '620622'); -INSERT INTO `cardcodes` VALUES (5146, '甘肃省', '武威市', '天祝藏族自治县', '620623'); -INSERT INTO `cardcodes` VALUES (5147, '甘肃省', '张掖市', '市辖区', '620701'); -INSERT INTO `cardcodes` VALUES (5148, '甘肃省', '张掖市', '甘州区', '620702'); -INSERT INTO `cardcodes` VALUES (5149, '甘肃省', '张掖市', '肃南裕固族自治县', '620721'); -INSERT INTO `cardcodes` VALUES (5150, '甘肃省', '张掖市', '民乐县', '620722'); -INSERT INTO `cardcodes` VALUES (5151, '甘肃省', '张掖市', '临泽县', '620723'); -INSERT INTO `cardcodes` VALUES (5152, '甘肃省', '张掖市', '高台县', '620724'); -INSERT INTO `cardcodes` VALUES (5153, '甘肃省', '张掖市', '山丹县', '620725'); -INSERT INTO `cardcodes` VALUES (5154, '青海省', '西宁市', '市辖区', '630101'); -INSERT INTO `cardcodes` VALUES (5155, '青海省', '西宁市', '城东区', '630102'); -INSERT INTO `cardcodes` VALUES (5156, '青海省', '西宁市', '城中区', '630103'); -INSERT INTO `cardcodes` VALUES (5157, '青海省', '西宁市', '城西区', '630104'); -INSERT INTO `cardcodes` VALUES (5158, '青海省', '西宁市', '城北区', '630105'); -INSERT INTO `cardcodes` VALUES (5159, '青海省', '西宁市', '大通回族土族自治县', '630121'); -INSERT INTO `cardcodes` VALUES (5160, '青海省', '西宁市', '湟中县', '630122'); -INSERT INTO `cardcodes` VALUES (5161, '青海省', '西宁市', '湟源县', '630123'); -INSERT INTO `cardcodes` VALUES (5162, '青海省', '海南藏族自治州', '共和县', '632521'); -INSERT INTO `cardcodes` VALUES (5163, '青海省', '海南藏族自治州', '同德县', '632522'); -INSERT INTO `cardcodes` VALUES (5164, '青海省', '海南藏族自治州', '贵德县', '632523'); -INSERT INTO `cardcodes` VALUES (5165, '青海省', '海南藏族自治州', '兴海县', '632524'); -INSERT INTO `cardcodes` VALUES (5166, '青海省', '海南藏族自治州', '贵南县', '632525'); -INSERT INTO `cardcodes` VALUES (5167, '青海省', '果洛藏族自治州', '玛沁县', '632621'); -INSERT INTO `cardcodes` VALUES (5168, '青海省', '果洛藏族自治州', '班玛县', '632622'); -INSERT INTO `cardcodes` VALUES (5169, '青海省', '果洛藏族自治州', '甘德县', '632623'); -INSERT INTO `cardcodes` VALUES (5170, '青海省', '果洛藏族自治州', '达日县', '632624'); -INSERT INTO `cardcodes` VALUES (5171, '青海省', '果洛藏族自治州', '久治县', '632625'); -INSERT INTO `cardcodes` VALUES (5172, '青海省', '果洛藏族自治州', '玛多县', '632626'); -INSERT INTO `cardcodes` VALUES (5173, '青海省', '果洛藏族自治州', '班玛县', '632632'); -INSERT INTO `cardcodes` VALUES (5174, '青海省', '玉树藏族自治州', '玉树县', '632721'); -INSERT INTO `cardcodes` VALUES (5175, '青海省', '玉树藏族自治州', '杂多县', '632722'); -INSERT INTO `cardcodes` VALUES (5176, '青海省', '玉树藏族自治州', '称多县', '632723'); -INSERT INTO `cardcodes` VALUES (5177, '青海省', '玉树藏族自治州', '治多县', '632724'); -INSERT INTO `cardcodes` VALUES (5178, '青海省', '玉树藏族自治州', '囊谦县', '632725'); -INSERT INTO `cardcodes` VALUES (5179, '青海省', '玉树藏族自治州', '曲麻莱县', '632726'); -INSERT INTO `cardcodes` VALUES (5180, '青海省', '海西蒙古族藏族自治州', '格尔木市', '632801'); -INSERT INTO `cardcodes` VALUES (5181, '青海省', '海西蒙古族藏族自治州', '德令哈市', '632802'); -INSERT INTO `cardcodes` VALUES (5182, '青海省', '海西蒙古族藏族自治州', '乌兰县', '632821'); -INSERT INTO `cardcodes` VALUES (5183, '青海省', '海西蒙古族藏族自治州', '都兰县', '632822'); -INSERT INTO `cardcodes` VALUES (5184, '青海省', '海西蒙古族藏族自治州', '天峻县', '632823'); -INSERT INTO `cardcodes` VALUES (5185, '青海省', '海西蒙古族藏族自治州', '大柴旦行委', '632824'); -INSERT INTO `cardcodes` VALUES (5186, '青海省', '海西蒙古族藏族自治州', '冷湖行委', '632825'); -INSERT INTO `cardcodes` VALUES (5187, '青海省', '海西蒙古族藏族自治州', '茫崖行委', '632826'); -INSERT INTO `cardcodes` VALUES (5188, '青海省', '海东地区', '平安县', '632121'); -INSERT INTO `cardcodes` VALUES (5189, '青海省', '海东地区', '民和回族土族自治县', '632122'); -INSERT INTO `cardcodes` VALUES (5190, '青海省', '海东地区', '乐都县', '632123'); -INSERT INTO `cardcodes` VALUES (5191, '青海省', '海东地区', '湟中县', '632124'); -INSERT INTO `cardcodes` VALUES (5192, '青海省', '海东地区', '湟源县', '632125'); -INSERT INTO `cardcodes` VALUES (5193, '青海省', '海东地区', '互助土族自治县', '632126'); -INSERT INTO `cardcodes` VALUES (5194, '青海省', '海东地区', '化隆回族自治县', '632127'); -INSERT INTO `cardcodes` VALUES (5195, '青海省', '海东地区', '循化撒拉族自治县', '632128'); -INSERT INTO `cardcodes` VALUES (5196, '青海省', '海北藏族自治州', '门源回族自治县', '632221'); -INSERT INTO `cardcodes` VALUES (5197, '青海省', '海北藏族自治州', '祁连县', '632222'); -INSERT INTO `cardcodes` VALUES (5198, '青海省', '海北藏族自治州', '海晏县', '632223'); -INSERT INTO `cardcodes` VALUES (5199, '青海省', '海北藏族自治州', '刚察县', '632224'); -INSERT INTO `cardcodes` VALUES (5200, '青海省', '黄南藏族自治州', '同仁县', '632321'); -INSERT INTO `cardcodes` VALUES (5201, '青海省', '黄南藏族自治州', '尖扎县', '632322'); -INSERT INTO `cardcodes` VALUES (5202, '青海省', '黄南藏族自治州', '泽库县', '632323'); -INSERT INTO `cardcodes` VALUES (5203, '青海省', '黄南藏族自治州', '河南蒙古族自治县', '632324'); -INSERT INTO `cardcodes` VALUES (5204, '宁夏回族自治区', '银川市', '市辖区', '640101'); -INSERT INTO `cardcodes` VALUES (5205, '宁夏回族自治区', '银川市', '城区', '640102'); -INSERT INTO `cardcodes` VALUES (5206, '宁夏回族自治区', '银川市', '新城区', '640103'); -INSERT INTO `cardcodes` VALUES (5207, '宁夏回族自治区', '银川市', '兴庆区', '640104'); -INSERT INTO `cardcodes` VALUES (5208, '宁夏回族自治区', '银川市', '西夏区', '640105'); -INSERT INTO `cardcodes` VALUES (5209, '宁夏回族自治区', '银川市', '金凤区', '640106'); -INSERT INTO `cardcodes` VALUES (5210, '宁夏回族自治区', '银川市', '郊区', '640111'); -INSERT INTO `cardcodes` VALUES (5211, '宁夏回族自治区', '银川市', '永宁县', '640121'); -INSERT INTO `cardcodes` VALUES (5212, '宁夏回族自治区', '银川市', '贺兰县', '640122'); -INSERT INTO `cardcodes` VALUES (5213, '宁夏回族自治区', '银川市', '灵武市', '640181'); -INSERT INTO `cardcodes` VALUES (5214, '宁夏回族自治区', '石嘴山市', '市辖区', '640201'); -INSERT INTO `cardcodes` VALUES (5215, '宁夏回族自治区', '石嘴山市', '大武口区', '640202'); -INSERT INTO `cardcodes` VALUES (5216, '宁夏回族自治区', '石嘴山市', '石嘴山区', '640203'); -INSERT INTO `cardcodes` VALUES (5217, '宁夏回族自治区', '石嘴山市', '石炭井区', '640204'); -INSERT INTO `cardcodes` VALUES (5218, '宁夏回族自治区', '石嘴山市', '惠农区', '640205'); -INSERT INTO `cardcodes` VALUES (5219, '宁夏回族自治区', '石嘴山市', '郊区', '640211'); -INSERT INTO `cardcodes` VALUES (5220, '宁夏回族自治区', '石嘴山市', '市区', '640220'); -INSERT INTO `cardcodes` VALUES (5221, '宁夏回族自治区', '石嘴山市', '平罗县', '640221'); -INSERT INTO `cardcodes` VALUES (5222, '宁夏回族自治区', '石嘴山市', '陶乐县', '640222'); -INSERT INTO `cardcodes` VALUES (5223, '宁夏回族自治区', '石嘴山市', '惠农县', '640223'); -INSERT INTO `cardcodes` VALUES (5224, '宁夏回族自治区', '吴忠市', '市辖区', '640301'); -INSERT INTO `cardcodes` VALUES (5225, '宁夏回族自治区', '吴忠市', '利通区', '640302'); -INSERT INTO `cardcodes` VALUES (5226, '宁夏回族自治区', '吴忠市', '中卫县', '640321'); -INSERT INTO `cardcodes` VALUES (5227, '宁夏回族自治区', '吴忠市', '中宁县', '640322'); -INSERT INTO `cardcodes` VALUES (5228, '宁夏回族自治区', '吴忠市', '盐池县', '640323'); -INSERT INTO `cardcodes` VALUES (5229, '宁夏回族自治区', '吴忠市', '同心县', '640324'); -INSERT INTO `cardcodes` VALUES (5230, '宁夏回族自治区', '吴忠市', '青铜峡市', '640381'); -INSERT INTO `cardcodes` VALUES (5231, '宁夏回族自治区', '吴忠市', '灵武市', '640382'); -INSERT INTO `cardcodes` VALUES (5232, '宁夏回族自治区', '固原市', '市辖区', '640401'); -INSERT INTO `cardcodes` VALUES (5233, '宁夏回族自治区', '固原市', '原州区', '640402'); -INSERT INTO `cardcodes` VALUES (5234, '宁夏回族自治区', '固原市', '海原县', '640421'); -INSERT INTO `cardcodes` VALUES (5235, '宁夏回族自治区', '固原市', '西吉县', '640422'); -INSERT INTO `cardcodes` VALUES (5236, '宁夏回族自治区', '固原市', '隆德县', '640423'); -INSERT INTO `cardcodes` VALUES (5237, '宁夏回族自治区', '固原市', '泾源县', '640424'); -INSERT INTO `cardcodes` VALUES (5238, '宁夏回族自治区', '固原市', '彭阳县', '640425'); -INSERT INTO `cardcodes` VALUES (5239, '宁夏回族自治区', '中卫市', '市辖区', '640501'); -INSERT INTO `cardcodes` VALUES (5240, '宁夏回族自治区', '中卫市', '沙坡头区', '640502'); -INSERT INTO `cardcodes` VALUES (5241, '宁夏回族自治区', '中卫市', '中宁县', '640521'); -INSERT INTO `cardcodes` VALUES (5242, '宁夏回族自治区', '中卫市', '海原县', '640522'); -INSERT INTO `cardcodes` VALUES (5243, '宁夏回族自治区', '吴忠市', '吴忠市', '642101'); -INSERT INTO `cardcodes` VALUES (5244, '宁夏回族自治区', '吴忠市', '利通区', '642102'); -INSERT INTO `cardcodes` VALUES (5245, '宁夏回族自治区', '吴忠市', '灵武市', '642103'); -INSERT INTO `cardcodes` VALUES (5246, '宁夏回族自治区', '吴忠市', '吴忠县', '642121'); -INSERT INTO `cardcodes` VALUES (5247, '宁夏回族自治区', '吴忠市', '青铜峡县', '642122'); -INSERT INTO `cardcodes` VALUES (5248, '宁夏回族自治区', '吴忠市', '中卫县', '642123'); -INSERT INTO `cardcodes` VALUES (5249, '宁夏回族自治区', '吴忠市', '中宁县', '642124'); -INSERT INTO `cardcodes` VALUES (5250, '宁夏回族自治区', '吴忠市', '灵武县', '642125'); -INSERT INTO `cardcodes` VALUES (5251, '宁夏回族自治区', '吴忠市', '盐池县', '642126'); -INSERT INTO `cardcodes` VALUES (5252, '宁夏回族自治区', '吴忠市', '同心县', '642127'); -INSERT INTO `cardcodes` VALUES (5253, '宁夏回族自治区', '固原地区', '固原县', '642221'); -INSERT INTO `cardcodes` VALUES (5254, '宁夏回族自治区', '固原地区', '海原县', '642222'); -INSERT INTO `cardcodes` VALUES (5255, '宁夏回族自治区', '固原地区', '西吉县', '642223'); -INSERT INTO `cardcodes` VALUES (5256, '宁夏回族自治区', '固原地区', '隆德县', '642224'); -INSERT INTO `cardcodes` VALUES (5257, '宁夏回族自治区', '固原地区', '泾源县', '642225'); -INSERT INTO `cardcodes` VALUES (5258, '宁夏回族自治区', '固原地区', '彭阳县', '642226'); -INSERT INTO `cardcodes` VALUES (5259, '新疆维吾尔自治区', '乌鲁木齐市', '市辖区', '650101'); -INSERT INTO `cardcodes` VALUES (5260, '新疆维吾尔自治区', '乌鲁木齐市', '天山区', '650102'); -INSERT INTO `cardcodes` VALUES (5261, '新疆维吾尔自治区', '乌鲁木齐市', '沙依巴克区', '650103'); -INSERT INTO `cardcodes` VALUES (5262, '新疆维吾尔自治区', '乌鲁木齐市', '新市区', '650104'); -INSERT INTO `cardcodes` VALUES (5263, '新疆维吾尔自治区', '乌鲁木齐市', '水磨沟区', '650105'); -INSERT INTO `cardcodes` VALUES (5264, '新疆维吾尔自治区', '乌鲁木齐市', '头屯河区', '650106'); -INSERT INTO `cardcodes` VALUES (5265, '新疆维吾尔自治区', '乌鲁木齐市', '南山矿区', '650107'); -INSERT INTO `cardcodes` VALUES (5266, '新疆维吾尔自治区', '乌鲁木齐市', '东山区', '650108'); -INSERT INTO `cardcodes` VALUES (5267, '新疆维吾尔自治区', '乌鲁木齐市', '乌鲁木齐县', '650121'); -INSERT INTO `cardcodes` VALUES (5268, '新疆维吾尔自治区', '克拉玛依市', '市辖区', '650201'); -INSERT INTO `cardcodes` VALUES (5269, '新疆维吾尔自治区', '克拉玛依市', '独山子区', '650202'); -INSERT INTO `cardcodes` VALUES (5270, '新疆维吾尔自治区', '克拉玛依市', '克拉玛依区', '650203'); -INSERT INTO `cardcodes` VALUES (5271, '新疆维吾尔自治区', '克拉玛依市', '白碱滩区', '650204'); -INSERT INTO `cardcodes` VALUES (5272, '新疆维吾尔自治区', '克拉玛依市', '乌尔禾区', '650205'); -INSERT INTO `cardcodes` VALUES (5273, '新疆维吾尔自治区', '吐鲁番地区', '吐鲁番市', '652101'); -INSERT INTO `cardcodes` VALUES (5274, '新疆维吾尔自治区', '吐鲁番地区', '鄯善县', '652122'); -INSERT INTO `cardcodes` VALUES (5275, '新疆维吾尔自治区', '吐鲁番地区', '托克逊县', '652123'); -INSERT INTO `cardcodes` VALUES (5276, '新疆维吾尔自治区', '哈密地区', '哈密市', '652201'); -INSERT INTO `cardcodes` VALUES (5277, '新疆维吾尔自治区', '哈密地区', '巴里坤哈萨克自治县', '652222'); -INSERT INTO `cardcodes` VALUES (5278, '新疆维吾尔自治区', '哈密地区', '伊吾县', '652223'); -INSERT INTO `cardcodes` VALUES (5279, '新疆维吾尔自治区', '昌吉回族自治州', '昌吉市', '652301'); -INSERT INTO `cardcodes` VALUES (5280, '新疆维吾尔自治区', '昌吉回族自治州', '阜康市', '652302'); -INSERT INTO `cardcodes` VALUES (5281, '新疆维吾尔自治区', '昌吉回族自治州', '米泉市', '652303'); -INSERT INTO `cardcodes` VALUES (5282, '新疆维吾尔自治区', '昌吉回族自治州', '米泉市', '652322'); -INSERT INTO `cardcodes` VALUES (5283, '新疆维吾尔自治区', '昌吉回族自治州', '呼图壁县', '652323'); -INSERT INTO `cardcodes` VALUES (5284, '新疆维吾尔自治区', '昌吉回族自治州', '玛纳斯县', '652324'); -INSERT INTO `cardcodes` VALUES (5285, '新疆维吾尔自治区', '昌吉回族自治州', '奇台县', '652325'); -INSERT INTO `cardcodes` VALUES (5286, '新疆维吾尔自治区', '昌吉回族自治州', '阜康市', '652326'); -INSERT INTO `cardcodes` VALUES (5287, '新疆维吾尔自治区', '昌吉回族自治州', '吉木萨尔县', '652327'); -INSERT INTO `cardcodes` VALUES (5288, '新疆维吾尔自治区', '昌吉回族自治州', '木垒哈萨克自治县', '652328'); -INSERT INTO `cardcodes` VALUES (5289, '新疆维吾尔自治区', '伊犁哈萨克自治州', '伊宁市', '652401'); -INSERT INTO `cardcodes` VALUES (5290, '新疆维吾尔自治区', '伊犁哈萨克自治州', '奎屯市', '652402'); -INSERT INTO `cardcodes` VALUES (5291, '新疆维吾尔自治区', '伊犁哈萨克自治州', '伊宁县', '652421'); -INSERT INTO `cardcodes` VALUES (5292, '新疆维吾尔自治区', '伊犁哈萨克自治州', '察布查尔锡伯自治县', '652422'); -INSERT INTO `cardcodes` VALUES (5293, '新疆维吾尔自治区', '伊犁哈萨克自治州', '霍城县', '652423'); -INSERT INTO `cardcodes` VALUES (5294, '新疆维吾尔自治区', '伊犁哈萨克自治州', '巩留县', '652424'); -INSERT INTO `cardcodes` VALUES (5295, '新疆维吾尔自治区', '伊犁哈萨克自治州', '新源县', '652425'); -INSERT INTO `cardcodes` VALUES (5296, '新疆维吾尔自治区', '伊犁哈萨克自治州', '昭苏县', '652426'); -INSERT INTO `cardcodes` VALUES (5297, '新疆维吾尔自治区', '伊犁哈萨克自治州', '特克斯县', '652427'); -INSERT INTO `cardcodes` VALUES (5298, '新疆维吾尔自治区', '伊犁哈萨克自治州', '尼勒克县', '652428'); -INSERT INTO `cardcodes` VALUES (5299, '新疆维吾尔自治区', '塔城地区', '塔城县', '652521'); -INSERT INTO `cardcodes` VALUES (5300, '新疆维吾尔自治区', '塔城地区', '额敏县', '652522'); -INSERT INTO `cardcodes` VALUES (5301, '新疆维吾尔自治区', '塔城地区', '乌苏市', '652523'); -INSERT INTO `cardcodes` VALUES (5302, '新疆维吾尔自治区', '塔城地区', '沙湾县', '652524'); -INSERT INTO `cardcodes` VALUES (5303, '新疆维吾尔自治区', '塔城地区', '托里县', '652525'); -INSERT INTO `cardcodes` VALUES (5304, '新疆维吾尔自治区', '塔城地区', '裕民县', '652526'); -INSERT INTO `cardcodes` VALUES (5305, '新疆维吾尔自治区', '塔城地区', '和布克赛尔蒙古自治县', '652527'); -INSERT INTO `cardcodes` VALUES (5306, '新疆维吾尔自治区', '阿勒泰地区', '阿勒泰县', '652601'); -INSERT INTO `cardcodes` VALUES (5307, '新疆维吾尔自治区', '阿勒泰地区', '布尔津县', '652622'); -INSERT INTO `cardcodes` VALUES (5308, '新疆维吾尔自治区', '阿勒泰地区', '富蕴县', '652623'); -INSERT INTO `cardcodes` VALUES (5309, '新疆维吾尔自治区', '阿勒泰地区', '福海县', '652624'); -INSERT INTO `cardcodes` VALUES (5310, '新疆维吾尔自治区', '阿勒泰地区', '哈巴河县', '652625'); -INSERT INTO `cardcodes` VALUES (5311, '新疆维吾尔自治区', '阿勒泰地区', '青河县', '652626'); -INSERT INTO `cardcodes` VALUES (5312, '新疆维吾尔自治区', '阿勒泰地区', '吉木乃县', '652627'); -INSERT INTO `cardcodes` VALUES (5313, '新疆维吾尔自治区', '阿勒泰地区', '富蕴县', '654322'); -INSERT INTO `cardcodes` VALUES (5314, '新疆维吾尔自治区', '阿勒泰地区', '福海县', '654323'); -INSERT INTO `cardcodes` VALUES (5315, '新疆维吾尔自治区', '阿勒泰地区', '哈巴河县', '654324'); -INSERT INTO `cardcodes` VALUES (5316, '新疆维吾尔自治区', '阿勒泰地区', '青河县', '654325'); -INSERT INTO `cardcodes` VALUES (5317, '新疆维吾尔自治区', '阿勒泰地区', '吉木乃县', '654326'); -INSERT INTO `cardcodes` VALUES (5318, '新疆维吾尔自治区', '阿勒泰地区', '阿勒泰市', '654301'); -INSERT INTO `cardcodes` VALUES (5319, '新疆维吾尔自治区', '阿勒泰地区', '布尔津县', '654321'); -INSERT INTO `cardcodes` VALUES (5320, '新疆维吾尔自治区', '省直辖行政单位', '石河子市', '659001'); -INSERT INTO `cardcodes` VALUES (5321, '新疆维吾尔自治区', '省直辖行政单位', '阿拉尔市', '659002'); -INSERT INTO `cardcodes` VALUES (5322, '新疆维吾尔自治区', '省直辖行政单位', '图木舒克市', '659003'); -INSERT INTO `cardcodes` VALUES (5323, '新疆维吾尔自治区', '省直辖行政单位', '五家渠市', '659004'); -INSERT INTO `cardcodes` VALUES (5324, '新疆维吾尔自治区', '博尔塔拉蒙古自治州', '博乐市', '652701'); -INSERT INTO `cardcodes` VALUES (5325, '新疆维吾尔自治区', '博尔塔拉蒙古自治州', '博乐县', '652721'); -INSERT INTO `cardcodes` VALUES (5326, '新疆维吾尔自治区', '博尔塔拉蒙古自治州', '精河县', '652722'); -INSERT INTO `cardcodes` VALUES (5327, '新疆维吾尔自治区', '博尔塔拉蒙古自治州', '温泉县', '652723'); -INSERT INTO `cardcodes` VALUES (5328, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '库尔勒市', '652801'); -INSERT INTO `cardcodes` VALUES (5329, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '库尔勒县', '652821'); -INSERT INTO `cardcodes` VALUES (5330, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '轮台县', '652822'); -INSERT INTO `cardcodes` VALUES (5331, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '尉犁县', '652823'); -INSERT INTO `cardcodes` VALUES (5332, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '若羌县', '652824'); -INSERT INTO `cardcodes` VALUES (5333, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '且末县', '652825'); -INSERT INTO `cardcodes` VALUES (5334, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '焉耆回族自治县', '652826'); -INSERT INTO `cardcodes` VALUES (5335, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '和静县', '652827'); -INSERT INTO `cardcodes` VALUES (5336, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '和硕县', '652828'); -INSERT INTO `cardcodes` VALUES (5337, '新疆维吾尔自治区', '巴音郭楞蒙古自治州', '博湖县', '652829'); -INSERT INTO `cardcodes` VALUES (5338, '新疆维吾尔自治区', '阿克苏地区', '阿克苏市', '652901'); -INSERT INTO `cardcodes` VALUES (5339, '新疆维吾尔自治区', '阿克苏地区', '阿克苏县', '652921'); -INSERT INTO `cardcodes` VALUES (5340, '新疆维吾尔自治区', '阿克苏地区', '温宿县', '652922'); -INSERT INTO `cardcodes` VALUES (5341, '新疆维吾尔自治区', '阿克苏地区', '库车县', '652923'); -INSERT INTO `cardcodes` VALUES (5342, '新疆维吾尔自治区', '阿克苏地区', '沙雅县', '652924'); -INSERT INTO `cardcodes` VALUES (5343, '新疆维吾尔自治区', '阿克苏地区', '新和县', '652925'); -INSERT INTO `cardcodes` VALUES (5344, '新疆维吾尔自治区', '阿克苏地区', '拜城县', '652926'); -INSERT INTO `cardcodes` VALUES (5345, '新疆维吾尔自治区', '阿克苏地区', '乌什县', '652927'); -INSERT INTO `cardcodes` VALUES (5346, '新疆维吾尔自治区', '阿克苏地区', '阿瓦提县', '652928'); -INSERT INTO `cardcodes` VALUES (5347, '新疆维吾尔自治区', '阿克苏地区', '柯坪县', '652929'); -INSERT INTO `cardcodes` VALUES (5348, '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '阿图什市', '653001'); -INSERT INTO `cardcodes` VALUES (5349, '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '阿图什县', '653021'); -INSERT INTO `cardcodes` VALUES (5350, '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '阿克陶县', '653022'); -INSERT INTO `cardcodes` VALUES (5351, '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '阿合奇县', '653023'); -INSERT INTO `cardcodes` VALUES (5352, '新疆维吾尔自治区', '克孜勒苏柯尔克孜自治州', '乌恰县', '653024'); -INSERT INTO `cardcodes` VALUES (5353, '新疆维吾尔自治区', '喀什地区', '喀什市', '653101'); -INSERT INTO `cardcodes` VALUES (5354, '新疆维吾尔自治区', '喀什地区', '疏附县', '653121'); -INSERT INTO `cardcodes` VALUES (5355, '新疆维吾尔自治区', '喀什地区', '疏勒县', '653122'); -INSERT INTO `cardcodes` VALUES (5356, '新疆维吾尔自治区', '喀什地区', '英吉沙县', '653123'); -INSERT INTO `cardcodes` VALUES (5357, '新疆维吾尔自治区', '喀什地区', '泽普县', '653124'); -INSERT INTO `cardcodes` VALUES (5358, '新疆维吾尔自治区', '喀什地区', '莎车县', '653125'); -INSERT INTO `cardcodes` VALUES (5359, '新疆维吾尔自治区', '喀什地区', '叶城县', '653126'); -INSERT INTO `cardcodes` VALUES (5360, '新疆维吾尔自治区', '喀什地区', '麦盖提县', '653127'); -INSERT INTO `cardcodes` VALUES (5361, '新疆维吾尔自治区', '喀什地区', '岳普湖县', '653128'); -INSERT INTO `cardcodes` VALUES (5362, '新疆维吾尔自治区', '喀什地区', '伽师县', '653129'); -INSERT INTO `cardcodes` VALUES (5363, '新疆维吾尔自治区', '喀什地区', '巴楚县', '653130'); -INSERT INTO `cardcodes` VALUES (5364, '新疆维吾尔自治区', '喀什地区', '塔什库尔干塔吉克自治县', '653131'); -INSERT INTO `cardcodes` VALUES (5365, '新疆维吾尔自治区', '和田地区', '和田市', '653201'); -INSERT INTO `cardcodes` VALUES (5366, '新疆维吾尔自治区', '和田地区', '和田县', '653221'); -INSERT INTO `cardcodes` VALUES (5367, '新疆维吾尔自治区', '和田地区', '墨玉县', '653222'); -INSERT INTO `cardcodes` VALUES (5368, '新疆维吾尔自治区', '和田地区', '皮山县', '653223'); -INSERT INTO `cardcodes` VALUES (5369, '新疆维吾尔自治区', '和田地区', '洛浦县', '653224'); -INSERT INTO `cardcodes` VALUES (5370, '新疆维吾尔自治区', '和田地区', '策勒县', '653225'); -INSERT INTO `cardcodes` VALUES (5371, '新疆维吾尔自治区', '和田地区', '于田县', '653226'); -INSERT INTO `cardcodes` VALUES (5372, '新疆维吾尔自治区', '和田地区', '民丰县', '653227'); -INSERT INTO `cardcodes` VALUES (5373, '新疆维吾尔自治区', '伊犁哈萨克自治州', '奎屯市', '654001'); -INSERT INTO `cardcodes` VALUES (5374, '新疆维吾尔自治区', '伊犁哈萨克自治州', '伊宁市', '654002'); -INSERT INTO `cardcodes` VALUES (5375, '新疆维吾尔自治区', '伊犁哈萨克自治州', '奎屯市', '654003'); -INSERT INTO `cardcodes` VALUES (5376, '新疆维吾尔自治区', '伊犁哈萨克自治州', '伊宁县', '654021'); -INSERT INTO `cardcodes` VALUES (5377, '新疆维吾尔自治区', '伊犁哈萨克自治州', '察布查尔锡伯自治县', '654022'); -INSERT INTO `cardcodes` VALUES (5378, '新疆维吾尔自治区', '伊犁哈萨克自治州', '霍城县', '654023'); -INSERT INTO `cardcodes` VALUES (5379, '新疆维吾尔自治区', '伊犁哈萨克自治州', '巩留县', '654024'); -INSERT INTO `cardcodes` VALUES (5380, '新疆维吾尔自治区', '伊犁哈萨克自治州', '新源县', '654025'); -INSERT INTO `cardcodes` VALUES (5381, '新疆维吾尔自治区', '伊犁哈萨克自治州', '昭苏县', '654026'); -INSERT INTO `cardcodes` VALUES (5382, '新疆维吾尔自治区', '伊犁哈萨克自治州', '特克斯县', '654027'); -INSERT INTO `cardcodes` VALUES (5383, '新疆维吾尔自治区', '伊犁哈萨克自治州', '尼勒克县', '654028'); -INSERT INTO `cardcodes` VALUES (5384, '新疆维吾尔自治区', '伊犁地区', '伊宁市', '654101'); -INSERT INTO `cardcodes` VALUES (5385, '新疆维吾尔自治区', '伊犁地区', '伊宁县', '654121'); -INSERT INTO `cardcodes` VALUES (5386, '新疆维吾尔自治区', '伊犁地区', '察布查尔锡伯自治县', '654122'); -INSERT INTO `cardcodes` VALUES (5387, '新疆维吾尔自治区', '伊犁地区', '霍城县', '654123'); -INSERT INTO `cardcodes` VALUES (5388, '新疆维吾尔自治区', '伊犁地区', '巩留县', '654124'); -INSERT INTO `cardcodes` VALUES (5389, '新疆维吾尔自治区', '伊犁地区', '新源县', '654125'); -INSERT INTO `cardcodes` VALUES (5390, '新疆维吾尔自治区', '伊犁地区', '昭苏县', '654126'); -INSERT INTO `cardcodes` VALUES (5391, '新疆维吾尔自治区', '伊犁地区', '特克斯县', '654127'); -INSERT INTO `cardcodes` VALUES (5392, '新疆维吾尔自治区', '伊犁地区', '尼勒克县', '654128'); -INSERT INTO `cardcodes` VALUES (5393, '新疆维吾尔自治区', '塔城地区', '塔城市', '654201'); -INSERT INTO `cardcodes` VALUES (5394, '新疆维吾尔自治区', '塔城地区', '乌苏市', '654202'); -INSERT INTO `cardcodes` VALUES (5395, '新疆维吾尔自治区', '塔城地区', '额敏县', '654221'); -INSERT INTO `cardcodes` VALUES (5396, '新疆维吾尔自治区', '塔城地区', '乌苏市', '654222'); -INSERT INTO `cardcodes` VALUES (5397, '新疆维吾尔自治区', '塔城地区', '沙湾县', '654223'); -INSERT INTO `cardcodes` VALUES (5398, '新疆维吾尔自治区', '塔城地区', '托里县', '654224'); -INSERT INTO `cardcodes` VALUES (5399, '新疆维吾尔自治区', '塔城地区', '裕民县', '654225'); -INSERT INTO `cardcodes` VALUES (5400, '新疆维吾尔自治区', '塔城地区', '和布克赛尔蒙古自治县', '654226'); -INSERT INTO `cardcodes` VALUES (5401, '台湾省(886)', NULL, NULL, '710000'); -INSERT INTO `cardcodes` VALUES (5402, '香港特别行政区(852)', NULL, NULL, '810000'); -INSERT INTO `cardcodes` VALUES (5403, '澳门特别行政区(853)', NULL, NULL, '820000'); -INSERT INTO `cardcodes` VALUES (193, '河北省', '承德市', '兴隆县', '130822'); -INSERT INTO `cardcodes` VALUES (194, '河北省', '承德市', '平泉县', '130823'); -INSERT INTO `cardcodes` VALUES (195, '河北省', '承德市', '滦平县', '130824'); -INSERT INTO `cardcodes` VALUES (196, '河北省', '承德市', '隆化县', '130825'); -INSERT INTO `cardcodes` VALUES (197, '河北省', '承德市', '丰宁满族自治县', '130826'); -INSERT INTO `cardcodes` VALUES (198, '河北省', '承德市', '宽城满族自治县', '130827'); -INSERT INTO `cardcodes` VALUES (199, '河北省', '承德市', '围场满族蒙古族自治县', '130828'); -INSERT INTO `cardcodes` VALUES (200, '河北省', '沧州市', '市辖区', '130901'); -INSERT INTO `cardcodes` VALUES (201, '河北省', '沧州市', '新华区', '130902'); -INSERT INTO `cardcodes` VALUES (202, '河北省', '沧州市', '运河区', '130903'); -INSERT INTO `cardcodes` VALUES (203, '河北省', '沧州市', '郊区', '130904'); -INSERT INTO `cardcodes` VALUES (204, '河北省', '沧州市', '沧县', '130921'); -INSERT INTO `cardcodes` VALUES (205, '河北省', '沧州市', '青县', '130922'); -INSERT INTO `cardcodes` VALUES (206, '河北省', '沧州市', '东光县', '130923'); -INSERT INTO `cardcodes` VALUES (207, '河北省', '沧州市', '海兴县', '130924'); -INSERT INTO `cardcodes` VALUES (208, '河北省', '沧州市', '盐山县', '130925'); -INSERT INTO `cardcodes` VALUES (209, '河北省', '沧州市', '肃宁县', '130926'); -INSERT INTO `cardcodes` VALUES (210, '河北省', '沧州市', '南皮县', '130927'); -INSERT INTO `cardcodes` VALUES (211, '河北省', '沧州市', '吴桥县', '130928'); -INSERT INTO `cardcodes` VALUES (212, '河北省', '沧州市', '献县', '130929'); -INSERT INTO `cardcodes` VALUES (213, '河北省', '沧州市', '孟村回族自治县', '130930'); -INSERT INTO `cardcodes` VALUES (214, '河北省', '沧州市', '泊头市', '130981'); -INSERT INTO `cardcodes` VALUES (215, '河北省', '沧州市', '任丘市', '130982'); -INSERT INTO `cardcodes` VALUES (216, '河北省', '沧州市', '黄骅市', '130983'); -INSERT INTO `cardcodes` VALUES (217, '河北省', '沧州市', '河间市', '130984'); -INSERT INTO `cardcodes` VALUES (218, '河北省', '廊坊市', '市辖区', '131001'); -INSERT INTO `cardcodes` VALUES (219, '河北省', '廊坊市', '安次区', '131002'); -INSERT INTO `cardcodes` VALUES (220, '河北省', '廊坊市', '广阳区', '131003'); -INSERT INTO `cardcodes` VALUES (221, '河北省', '廊坊市', '三河县', '131021'); -INSERT INTO `cardcodes` VALUES (222, '河北省', '廊坊市', '固安县', '131022'); -INSERT INTO `cardcodes` VALUES (223, '河北省', '廊坊市', '永清县', '131023'); -INSERT INTO `cardcodes` VALUES (224, '河北省', '廊坊市', '香河县', '131024'); -INSERT INTO `cardcodes` VALUES (225, '河北省', '廊坊市', '大城县', '131025'); -INSERT INTO `cardcodes` VALUES (226, '河北省', '廊坊市', '文安县', '131026'); -INSERT INTO `cardcodes` VALUES (227, '河北省', '廊坊市', '霸县', '131027'); -INSERT INTO `cardcodes` VALUES (228, '河北省', '廊坊市', '大厂回族自治县', '131028'); -INSERT INTO `cardcodes` VALUES (229, '河北省', '廊坊市', '霸州市', '131081'); -INSERT INTO `cardcodes` VALUES (230, '河北省', '廊坊市', '三河市', '131082'); -INSERT INTO `cardcodes` VALUES (231, '河北省', '衡水市', '市辖区', '131101'); -INSERT INTO `cardcodes` VALUES (232, '河北省', '衡水市', '桃城区', '131102'); -INSERT INTO `cardcodes` VALUES (233, '河北省', '衡水市', '枣强县', '131121'); -INSERT INTO `cardcodes` VALUES (234, '河北省', '衡水市', '武邑县', '131122'); -INSERT INTO `cardcodes` VALUES (235, '河北省', '衡水市', '武强县', '131123'); -INSERT INTO `cardcodes` VALUES (236, '河北省', '衡水市', '饶阳县', '131124'); -INSERT INTO `cardcodes` VALUES (237, '河北省', '衡水市', '安平县', '131125'); -INSERT INTO `cardcodes` VALUES (238, '河北省', '衡水市', '故城县', '131126'); -INSERT INTO `cardcodes` VALUES (239, '河北省', '衡水市', '景县', '131127'); -INSERT INTO `cardcodes` VALUES (240, '河北省', '衡水市', '阜城县', '131128'); -INSERT INTO `cardcodes` VALUES (241, '河北省', '衡水市', '冀州市', '131181'); -INSERT INTO `cardcodes` VALUES (242, '河北省', '衡水市', '深州市', '131182'); -INSERT INTO `cardcodes` VALUES (243, '河北省', '邯郸地区', '邯郸市', '132101'); -INSERT INTO `cardcodes` VALUES (244, '河北省', '邯郸地区', '大名县', '132121'); -INSERT INTO `cardcodes` VALUES (245, '河北省', '邯郸地区', '魏县', '132122'); -INSERT INTO `cardcodes` VALUES (246, '河北省', '邯郸地区', '曲周县', '132123'); -INSERT INTO `cardcodes` VALUES (247, '河北省', '邯郸地区', '丘县', '132124'); -INSERT INTO `cardcodes` VALUES (248, '河北省', '邯郸地区', '鸡泽县', '132125'); -INSERT INTO `cardcodes` VALUES (249, '河北省', '邯郸地区', '肥乡县', '132126'); -INSERT INTO `cardcodes` VALUES (250, '河北省', '邯郸地区', '广平县', '132127'); -INSERT INTO `cardcodes` VALUES (251, '河北省', '邯郸地区', '成安县', '132128'); -INSERT INTO `cardcodes` VALUES (252, '河北省', '邯郸地区', '临漳县', '132129'); -INSERT INTO `cardcodes` VALUES (253, '河北省', '邯郸地区', '磁县', '132130'); -INSERT INTO `cardcodes` VALUES (254, '河北省', '邯郸地区', '武安县', '132131'); -INSERT INTO `cardcodes` VALUES (255, '河北省', '邯郸地区', '涉县', '132132'); -INSERT INTO `cardcodes` VALUES (256, '河北省', '邯郸地区', '永年县', '132133'); -INSERT INTO `cardcodes` VALUES (257, '河北省', '邯郸地区', '邯郸县', '132134'); -INSERT INTO `cardcodes` VALUES (258, '河北省', '邯郸地区', '馆陶县', '132135'); -INSERT INTO `cardcodes` VALUES (259, '河北省', '邢台地区', '南宫市', '132201'); -INSERT INTO `cardcodes` VALUES (260, '河北省', '邢台地区', '沙河市', '132202'); -INSERT INTO `cardcodes` VALUES (261, '河北省', '邢台地区', '邢台县', '132221'); -INSERT INTO `cardcodes` VALUES (262, '河北省', '邢台地区', '沙河县', '132222'); -INSERT INTO `cardcodes` VALUES (263, '河北省', '邢台地区', '临城县', '132223'); -INSERT INTO `cardcodes` VALUES (264, '河北省', '邢台地区', '内丘县', '132224'); -INSERT INTO `cardcodes` VALUES (265, '河北省', '邢台地区', '柏乡县', '132225'); -INSERT INTO `cardcodes` VALUES (266, '河北省', '邢台地区', '隆尧县', '132226'); -INSERT INTO `cardcodes` VALUES (267, '河北省', '邢台地区', '任县', '132227'); -INSERT INTO `cardcodes` VALUES (268, '河北省', '邢台地区', '南和县', '132228'); -INSERT INTO `cardcodes` VALUES (269, '河北省', '邢台地区', '宁晋县', '132229'); -INSERT INTO `cardcodes` VALUES (270, '河北省', '邢台地区', '南宫县', '132230'); -INSERT INTO `cardcodes` VALUES (271, '河北省', '邢台地区', '巨鹿县', '132231'); -INSERT INTO `cardcodes` VALUES (272, '河北省', '邢台地区', '新河县', '132232'); -INSERT INTO `cardcodes` VALUES (273, '河北省', '邢台地区', '广宗县', '132233'); -INSERT INTO `cardcodes` VALUES (274, '河北省', '邢台地区', '平乡县', '132234'); -INSERT INTO `cardcodes` VALUES (275, '河北省', '邢台地区', '威县', '132235'); -INSERT INTO `cardcodes` VALUES (276, '河北省', '邢台地区', '清河县', '132236'); -INSERT INTO `cardcodes` VALUES (277, '河北省', '邢台地区', '临西县', '132237'); -INSERT INTO `cardcodes` VALUES (278, '河北省', '石家庄市', '辛集市', '132301'); -INSERT INTO `cardcodes` VALUES (279, '河北省', '石家庄市', '藁城市', '132302'); -INSERT INTO `cardcodes` VALUES (280, '河北省', '石家庄市', '束鹿县', '132321'); -INSERT INTO `cardcodes` VALUES (281, '河北省', '石家庄市', '晋县', '132322'); -INSERT INTO `cardcodes` VALUES (282, '河北省', '石家庄市', '深泽县', '132323'); -INSERT INTO `cardcodes` VALUES (283, '河北省', '石家庄市', '无极县', '132324'); -INSERT INTO `cardcodes` VALUES (284, '河北省', '石家庄市', '藁城县', '132325'); -INSERT INTO `cardcodes` VALUES (285, '河北省', '石家庄市', '赵县', '132326'); -INSERT INTO `cardcodes` VALUES (286, '河北省', '石家庄市', '栾城县', '132327'); -INSERT INTO `cardcodes` VALUES (287, '河北省', '石家庄市', '正定县', '132328'); -INSERT INTO `cardcodes` VALUES (288, '河北省', '石家庄市', '新乐县', '132329'); -INSERT INTO `cardcodes` VALUES (289, '河北省', '石家庄市', '高邑县', '132330'); -INSERT INTO `cardcodes` VALUES (290, '河北省', '石家庄市', '元氏县', '132331'); -INSERT INTO `cardcodes` VALUES (291, '河北省', '石家庄市', '赞皇县', '132332'); -INSERT INTO `cardcodes` VALUES (292, '河北省', '石家庄市', '井陉县', '132333'); -INSERT INTO `cardcodes` VALUES (293, '河北省', '石家庄市', '获鹿县', '132334'); -INSERT INTO `cardcodes` VALUES (294, '河北省', '石家庄市', '平山县', '132335'); -INSERT INTO `cardcodes` VALUES (295, '河北省', '石家庄市', '灵寿县', '132336'); -INSERT INTO `cardcodes` VALUES (296, '河北省', '石家庄市', '行唐县', '132337'); -INSERT INTO `cardcodes` VALUES (297, '河北省', '保定地区', '定州市', '132401'); -INSERT INTO `cardcodes` VALUES (298, '河北省', '保定地区', '涿州市', '132402'); -INSERT INTO `cardcodes` VALUES (299, '河北省', '保定地区', '安国市', '132403'); - --- ---------------------------- --- Table structure for cardinfo --- ---------------------------- -DROP TABLE IF EXISTS `cardinfo`; -CREATE TABLE `cardinfo` ( - `CardID` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CardName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CustoNo` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of cardinfo --- ---------------------------- -INSERT INTO `cardinfo` VALUES ('NC00103003', '年卡', 'TS1816'); -INSERT INTO `cardinfo` VALUES ('NC00103004', '年卡', 'TS6666'); -INSERT INTO `cardinfo` VALUES ('YC00204001', '月卡', 'TS1002'); - --- ---------------------------- --- Table structure for cashinfo --- ---------------------------- -DROP TABLE IF EXISTS `cashinfo`; -CREATE TABLE `cashinfo` ( - `CashNo` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CashName` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CashPrice` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CashClub` varchar(800) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CashTime` datetime(0) NOT NULL, - `CashSource` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CashPerson` varchar(800) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of cashinfo --- ---------------------------- -INSERT INTO `cashinfo` VALUES ('', '纪念品', '500', '餐饮部', '2020-08-22 15:22:44', '赠予', '杨俊杰'); -INSERT INTO `cashinfo` VALUES ('CN001', '购入18台PC', '15万', '酒店部', '2018-12-03 15:49:16', '联想电脑', '谭国平'); -INSERT INTO `cashinfo` VALUES ('CN002', '购入150平方的瓷砖', '80万', '酒店部', '2018-12-03 15:49:16', '京瓷', '李杰峰'); -INSERT INTO `cashinfo` VALUES ('CN003', '与KaMiFood达成合作', '87万', '经理部', '2018-12-04 00:00:00', '神之食餐饮', '杨俊杰'); -INSERT INTO `cashinfo` VALUES ('CN004', '购入40台高配笔记本', '90万', '财务部', '2018-12-05 00:00:00', '戴尔电脑', '财务部'); -INSERT INTO `cashinfo` VALUES ('CN005', '与闪修达成合作', '60万', '经理部', '2018-12-05 00:00:00', '闪修公司', '杨俊杰'); -INSERT INTO `cashinfo` VALUES ('CN006', '顶级床单3000张', '90万', '酒店部', '2018-12-15 00:00:00', '席梦思', '酒店部'); -INSERT INTO `cashinfo` VALUES ('CN007', '办公椅300张', '5万', '财务部', '2018-12-05 00:00:00', 'XX公司', '财务部'); -INSERT INTO `cashinfo` VALUES ('CN008', '办公桌300张', '8万', '经理部', '2018-12-05 00:00:00', 'XX公司', '杨俊杰'); -INSERT INTO `cashinfo` VALUES ('CN009', '测试数据', '20万', '商品部', '2018-12-05 00:00:00', 'XX公司', '杨俊杰'); -INSERT INTO `cashinfo` VALUES ('CN010', '测试数据', '30万', 'XX部', '2018-12-06 00:00:00', 'XX公司', 'XXX'); -INSERT INTO `cashinfo` VALUES ('CN011', '测试数据', '40万', 'XX部', '2018-12-07 00:00:00', 'XX公司', 'XXX'); -INSERT INTO `cashinfo` VALUES ('CN012', '测试数据', '50万', 'XX部', '2018-12-08 00:00:00', 'XX公司', 'XXX'); -INSERT INTO `cashinfo` VALUES ('CN013', '测试数据', '60万', 'XX部', '2018-12-09 00:00:00', 'XX公司', 'XXX'); -INSERT INTO `cashinfo` VALUES ('CN014', '测试数据', '70万', 'XX部', '2018-12-23 00:00:00', 'XX公司', 'XXX'); -INSERT INTO `cashinfo` VALUES ('CN015', '测试数据', '80万', 'XX部', '2018-12-23 00:00:00', 'XX公司', 'XXX'); -INSERT INTO `cashinfo` VALUES ('CN016', '测试数据', '90万', 'XX部', '2018-12-24 00:00:00', 'XX公司', 'XXX'); -INSERT INTO `cashinfo` VALUES ('CN1262', '古董', '10000000', '酒店部', '2020-08-22 15:22:44', '赠送', '杨俊杰'); -INSERT INTO `cashinfo` VALUES ('CN1631', 'aaa', '1000', '楼面部', '2020-08-22 15:38:29', '', '杨俊杰'); -INSERT INTO `cashinfo` VALUES ('CN4610', '购入20套办公桌', '50000', '行政部', '2020-04-16 23:25:22', '志远办公', '杨俊杰'); -INSERT INTO `cashinfo` VALUES ('CN4665', '购入10套办公桌椅', '50000', '行政部', '2020-04-16 23:26:57', '志远办公', '杨俊杰'); -INSERT INTO `cashinfo` VALUES ('CN6816', 'test', '20000', '酒店部', '2020-04-16 23:42:08', 'adasd', '杨俊杰'); -INSERT INTO `cashinfo` VALUES ('CN8051', 'cccccc', 'wccc', '酒店部', '2020-08-14 14:33:21', 'ccccccc', '杨俊杰'); -INSERT INTO `cashinfo` VALUES ('RG001', '唯秒合作入股', '77万', '经理部', '2018-12-05 00:00:00', '唯秒', '牛战士'); - --- ---------------------------- --- Table structure for checkinfo --- ---------------------------- -DROP TABLE IF EXISTS `checkinfo`; -CREATE TABLE `checkinfo` ( - `CheckNo` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CheckClub` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CheckProgres` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CheckCash` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CheckScore` int NOT NULL, - `CheckPerson` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CheckAdvice` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of checkinfo --- ---------------------------- -INSERT INTO `checkinfo` VALUES ('CI001', '后勤部', '有人偷懒', '(^-^)', 4, '罗良建', '合理分配时间'); -INSERT INTO `checkinfo` VALUES ('CI002', '餐饮部', '有人偷懒', 'QAQ', 4, '罗良建', '合理分配时间'); -INSERT INTO `checkinfo` VALUES ('CI003', '酒店部', '有人偷懒', '(-_-)', 4, '罗良建', '合理分配时间'); - --- ---------------------------- --- Table structure for custospend --- ---------------------------- -DROP TABLE IF EXISTS `custospend`; -CREATE TABLE `custospend` ( - `RoomNo` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CustoNo` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `SpendName` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `SpendAmount` int NOT NULL, - `SpendPrice` decimal(10, 2) NOT NULL, - `SpendMoney` decimal(10, 2) NOT NULL, - `SpendTime` datetime(0) NOT NULL, - `MoneyState` varchar(9) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '_utf8mb4\\\'未结算\\\'' -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of custospend --- ---------------------------- -INSERT INTO `custospend` VALUES ('BS005', 'TS1081', '乐事薯片(原味)', 27, 20.00, 540.00, '2020-04-07 14:36:32', '已结算'); -INSERT INTO `custospend` VALUES ('BS001', 'TS1571', '片(原味)', 1, 0.00, 0.00, '2020-08-21 14:37:32', '未结算'); -INSERT INTO `custospend` VALUES ('BD001', 'TS1862', '特级DLS', 2, 40.00, 80.00, '2018-12-20 20:31:46', '已结算'); -INSERT INTO `custospend` VALUES ('BD001', 'TS1239', '三只松鼠夏威夷坚果', 2, 40.00, 80.00, '2020-05-07 15:18:50', '已结算'); -INSERT INTO `custospend` VALUES ('BS005', 'TS1081', '特级杜蕾斯', 27, 40.00, 1080.00, '2020-04-07 14:36:37', '已结算'); -INSERT INTO `custospend` VALUES ('BD002', 'TS1816', '雪碧', 1, 2.50, 2.50, '2018-12-21 07:38:57', '已结算'); -INSERT INTO `custospend` VALUES ('BD002', 'TS1816', '特级DLS', 1, 40.00, 40.00, '2018-12-21 07:39:01', '已结算'); -INSERT INTO `custospend` VALUES ('BS005', 'TS1081', '青岛啤酒', 27, 15.00, 405.00, '2020-04-07 14:36:41', '已结算'); -INSERT INTO `custospend` VALUES ('BS005', 'TS1081', '可口可乐', 31, 10.00, 310.00, '2020-04-07 14:36:56', '已结算'); -INSERT INTO `custospend` VALUES ('HD006', 'TS1364', '居住HD0057天', 7, 4375.00, 4375.00, '2020-04-14 19:39:08', '已结算'); -INSERT INTO `custospend` VALUES ('ZT002', 'TS1364', '居住HD0067天', 7, 4375.00, 4375.00, '2020-04-14 19:40:26', '已结算'); -INSERT INTO `custospend` VALUES ('ZT002', 'TS1364', '可口可乐', 5, 2.50, 12.50, '2020-04-14 19:41:32', '已结算'); -INSERT INTO `custospend` VALUES ('HD003', 'TS1001', '居住BD0050天', 0, 0.00, 0.00, '2020-04-26 14:06:06', '已结算'); -INSERT INTO `custospend` VALUES ('BD004', 'TS1480', '火腿肠', 3, 10.00, 30.00, '2020-04-29 12:40:44', '已结算'); -INSERT INTO `custospend` VALUES ('BD004', 'TS1480', '雪碧', 3, 2.50, 7.50, '2020-04-29 12:40:58', '已结算'); -INSERT INTO `custospend` VALUES ('BD004', 'TS1480', '92拉菲', 2, 10800.00, 21600.00, '2020-04-29 12:41:12', '已结算'); -INSERT INTO `custospend` VALUES ('HD001', 'TS1862', '康师傅方便面', 10, 10.00, 100.00, '2018-12-26 14:00:05', '已结算'); -INSERT INTO `custospend` VALUES ('BD007', 'TS1002', '居住BS00865天', 65, 27625.00, 27625.00, '2020-07-05 13:56:10', '未结算'); -INSERT INTO `custospend` VALUES ('BS007', 'TS1003', '居住BS00965天', 65, 27625.00, 27625.00, '2020-07-05 14:01:29', '未结算'); -INSERT INTO `custospend` VALUES ('ZT005', 'TS1005', '居住HD00168天', 68, 42500.00, 42500.00, '2020-05-10 21:34:32', '已结算'); -INSERT INTO `custospend` VALUES ('ZT005', 'TS1005', '特级杜蕾斯', 10, 40.00, 400.00, '2020-05-13 17:40:20', '已结算'); -INSERT INTO `custospend` VALUES ('BS003', 'TS1084', '特级杜蕾斯', 20, 40.00, 800.00, '2018-12-26 20:21:26', '已结算'); -INSERT INTO `custospend` VALUES ('BS007', 'TS1003', '特级杜蕾斯', 1, 40.00, 40.00, '2020-05-22 10:41:49', '已结算'); -INSERT INTO `custospend` VALUES ('HS003', 'TS1194', '拉菲', 2, 10000.00, 20000.00, '2018-12-27 10:23:50', '已结算'); -INSERT INTO `custospend` VALUES ('HS003', 'TS1194', '扑克牌', 2, 5.00, 10.00, '2018-12-27 10:24:02', '已结算'); -INSERT INTO `custospend` VALUES ('HS003', 'TS1194', '火腿肠', 1, 10.00, 10.00, '2018-12-27 10:24:17', '已结算'); -INSERT INTO `custospend` VALUES ('BD001', 'TS1365', '居住HD00247天', 47, 29375.00, 29375.00, '2020-07-19 01:49:25', '已结算'); -INSERT INTO `custospend` VALUES ('BD001', 'TS1365', '香皂', 2, 25.00, 50.00, '2020-07-28 09:51:30', '已结算'); -INSERT INTO `custospend` VALUES ('BD001', 'TS1365', '香皂', 2, 25.00, 50.00, '2020-07-28 09:51:37', '已结算'); -INSERT INTO `custospend` VALUES ('BD001', 'TS1365', '青岛啤酒', 2, 15.00, 30.00, '2020-07-28 09:51:52', '已结算'); -INSERT INTO `custospend` VALUES ('BS001', 'TS1571', 'WAHAHA', 2, 5.00, 10.00, '2020-08-21 14:40:16', '未结算'); -INSERT INTO `custospend` VALUES ('BD002', 'TS1001', '三只松鼠夏威夷坚果', 12, 40.00, 480.00, '2019-10-07 13:32:18', '已结算'); -INSERT INTO `custospend` VALUES ('BD005', 'TS1005', 'aaa', 1, 10.00, 10.00, '2020-08-22 14:43:44', '未结算'); -INSERT INTO `custospend` VALUES ('ZT001', 'TS1457', '拉菲', 30, 10000.00, 300000.00, '2019-10-28 21:14:08', '已结算'); -INSERT INTO `custospend` VALUES ('BD002', 'TS1001', '康师傅方便面', 1, 10.00, 10.00, '2020-03-17 19:41:50', '已结算'); -INSERT INTO `custospend` VALUES ('BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 19:42:07', '已结算'); -INSERT INTO `custospend` VALUES ('BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 19:42:12', '已结算'); -INSERT INTO `custospend` VALUES ('BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 19:42:38', '已结算'); -INSERT INTO `custospend` VALUES ('BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 19:43:57', '已结算'); -INSERT INTO `custospend` VALUES ('BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 19:44:01', '已结算'); -INSERT INTO `custospend` VALUES ('BD002', 'TS1001', '康师傅方便面', 2, 10.00, 20.00, '2020-03-17 19:44:06', '已结算'); -INSERT INTO `custospend` VALUES ('BD002', 'TS1001', '三只松鼠夏威夷坚果', 2, 40.00, 80.00, '2020-03-17 19:44:52', '已结算'); -INSERT INTO `custospend` VALUES ('BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-18 09:55:19', '已结算'); -INSERT INTO `custospend` VALUES ('BD002', 'TS1001', '乐事薯片(原味)', 2, 20.00, 40.00, '2020-03-25 12:04:59', '已结算'); -INSERT INTO `custospend` VALUES ('BS006', 'TS1998', '三只松鼠零食大礼包', 2, 299.00, 598.00, '2020-09-17 09:49:54', '未结算'); -INSERT INTO `custospend` VALUES ('BD001', 'TS1862', '青岛啤酒', 2, 15.00, 30.00, '2018-12-20 20:31:50', '已结算'); -INSERT INTO `custospend` VALUES ('HD001', 'TS1862', '雪碧', 5, 10.00, 50.00, '2018-12-26 14:00:19', '已结算'); -INSERT INTO `custospend` VALUES ('HD001', 'TS1862', 'TS纪念品', 2, 10.00, 20.00, '2018-12-26 14:00:35', '已结算'); - --- ---------------------------- --- Table structure for fonts --- ---------------------------- -DROP TABLE IF EXISTS `fonts`; -CREATE TABLE `fonts` ( - `FontsId` int NOT NULL AUTO_INCREMENT, - `FontsMess` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - PRIMARY KEY (`FontsId`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of fonts --- ---------------------------- -INSERT INTO `fonts` VALUES (1, '本酒店即日起与闪修平台联合推出“多修多折”活动,详情请咨询前台!'); -INSERT INTO `fonts` VALUES (2, '本酒店即日起与神之食餐厅联合推出“吃多折多”活动,详情请咨询前台!'); -INSERT INTO `fonts` VALUES (3, '本酒店即日起与Second网吧联合推出“免费体验酒店式网吧”活动,详情请咨询前台!'); - --- ---------------------------- --- Table structure for gbtype --- ---------------------------- -DROP TABLE IF EXISTS `gbtype`; -CREATE TABLE `gbtype` ( - `GBType` int NULL DEFAULT NULL, - `GBName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of gbtype --- ---------------------------- -INSERT INTO `gbtype` VALUES (0, '奖励'); -INSERT INTO `gbtype` VALUES (1, '惩罚'); - --- ---------------------------- --- Table structure for moneyinfo --- ---------------------------- -DROP TABLE IF EXISTS `moneyinfo`; -CREATE TABLE `moneyinfo` ( - `MoneyNo` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `MoneyType` int NOT NULL, - `MoneyIn` decimal(10, 2) NOT NULL, - `MoneyOut` decimal(10, 2) NOT NULL, - `MoneyCheck` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `MoneyPerson` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `Remarks` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of moneyinfo --- ---------------------------- -INSERT INTO `moneyinfo` VALUES ('MI001', 1, 10000.00, 1000.00, '是', '李杰峰', NULL); -INSERT INTO `moneyinfo` VALUES ('MI002', 2, 5000.00, 2000.00, '是', '李杰峰', NULL); - --- ---------------------------- --- Table structure for operationlog --- ---------------------------- -DROP TABLE IF EXISTS `operationlog`; -CREATE TABLE `operationlog` ( - `OperationTime` datetime(0) NOT NULL, - `OperationLog` varchar(8000) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `OperationAccount` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of operationlog --- ---------------------------- -INSERT INTO `operationlog` VALUES ('2020-04-21 17:21:22', 'WK010于2020-04-21 17:21:22登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-21 19:25:45', 'WK010于2020/4/21 19:25:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-21 19:27:21', 'WK010于2020/4/21 19:27:21登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-21 19:27:50', 'WK010于2020/4/21 19:27:50登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-21 20:28:59', 'WK010于2020/4/21 20:28:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-21 20:29:04', '杨俊杰【经理部总经理】于2020/4/21 20:29:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-21 20:31:44', 'WK010于2020/4/21 20:31:44登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-21 20:31:51', '杨俊杰【经理部总经理】于2020/4/21 20:31:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-21 20:33:39', 'WK010于2020/4/21 20:33:39登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-21 20:33:46', '杨俊杰【经理部总经理】于2020/4/21 20:33:46尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-21 20:34:28', 'WK010于2020/4/21 20:34:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-21 20:34:33', '杨俊杰【经理部总经理】于2020/4/21 20:34:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-21 21:01:54', 'WK010于2020/4/21 21:01:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-21 21:02:01', '杨俊杰【经理部总经理】于2020/4/21 21:02:01尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-21 21:02:50', '杨俊杰总经理于2020/4/21 21:02:50对员工:林淑仪进行了奖罚情况录入!', '杨俊杰总经理'); -INSERT INTO `operationlog` VALUES ('2020-04-22 09:22:38', 'WK010于2020-04-22 09:22:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-22 09:23:39', 'WK010于2020-04-22 09:23:39登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-22 09:24:04', '杨俊杰【经理部总经理】于2020-04-22 09:24:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-22 13:00:25', 'WK010于2020/4/22 13:00:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-22 13:01:17', 'WK010于2020/4/22 13:01:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-22 13:02:38', '杨俊杰【经理部总经理】于2020/4/22 13:02:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-22 13:04:13', '杨俊杰总经理于2020/4/22 13:04:13将员工:阿力晋升为财务部职员', '杨俊杰总经理'); -INSERT INTO `operationlog` VALUES ('2020-04-22 18:04:45', 'WK010于2020/4/22 18:04:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 11:18:29', 'WK010于2020-04-23 11:18:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 11:33:09', 'WK010于2020-04-23 11:33:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 15:12:50', 'WK010于2020-04-23 15:12:50登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 15:12:56', '杨俊杰【经理部总经理】于2020-04-23 15:12:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 15:34:23', 'WK010于2020/4/23 15:34:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 15:46:06', '杨俊杰【经理部总经理】于2020/4/23 15:46:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 15:46:14', '杨俊杰【经理部总经理】于2020/4/23 15:46:14尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 15:52:45', '经理部总经理杨俊杰于2020/4/23 15:52:45查看了TS1194的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-23 15:52:49', '经理部总经理杨俊杰于2020/4/23 15:52:49查看了TS1194的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-23 15:58:04', 'WK010于2020-04-23 15:58:04登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:00:16', '杨俊杰【经理部总经理】于2020-04-23 16:00:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:07:08', 'WK010于2020-04-23 16:07:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:19:03', 'WK010于2020-04-23 16:19:03登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:30:34', 'WK010于2020-04-23 16:30:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:36:17', '经理部总经理杨俊杰于2020-04-23 16:36:17帮助TS1032进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:44:10', 'WK010于2020-04-23 16:44:10登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 19:00:36', 'WK010于2020/4/23 19:00:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 19:00:48', '杨俊杰【经理部总经理】于2020/4/23 19:00:48尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 19:39:54', 'WK010于2020/4/23 19:39:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 20:49:17', 'WK010于2020-04-23 20:49:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 20:50:30', 'WK010于2020-04-23 20:50:30登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 20:53:48', '经理部总经理杨俊杰于2020-04-23 20:53:48帮助TS1364进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-23 20:56:11', '经理部总经理杨俊杰于2020-04-23 20:56:11帮助877889进行了预订房间操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-24 13:06:45', 'WK010于2020/4/24 13:06:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-24 13:45:48', 'WK010于2020/04/24 13:45:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-24 14:17:09', 'WK010于2020/04/24 14:17:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-24 14:24:30', 'WK010于2020/04/24 14:24:30登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-24 14:27:49', 'WK010于2020/04/24 14:27:49登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-24 16:35:20', 'WK010于2020/4/24 16:35:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-24 16:36:08', '杨俊杰【经理部总经理】于2020/4/24 16:36:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:44:16', 'WK010于2020-04-24 17:44:16登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:44:42', '杨俊杰【经理部总经理】于2020-04-24 17:44:42尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:44:44', '杨俊杰【经理部总经理】于2020-04-24 17:44:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:44:47', '杨俊杰【经理部总经理】于2020-04-24 17:44:47尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:44:49', '杨俊杰【经理部总经理】于2020-04-24 17:44:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:44:50', '杨俊杰【经理部总经理】于2020-04-24 17:44:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:50:05', '杨俊杰【经理部总经理】于2020-04-24 17:50:05尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:50:07', '杨俊杰【经理部总经理】于2020-04-24 17:50:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:50:10', '杨俊杰【经理部总经理】于2020-04-24 17:50:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:50:15', '杨俊杰【经理部总经理】于2020-04-24 17:50:15尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:50:20', '杨俊杰【经理部总经理】于2020-04-24 17:50:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:50:24', '杨俊杰【经理部总经理】于2020-04-24 17:50:24尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:50:29', '杨俊杰【经理部总经理】于2020-04-24 17:50:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:50:31', '杨俊杰【经理部总经理】于2020-04-24 17:50:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 17:50:33', '杨俊杰【经理部总经理】于2020-04-24 17:50:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-24 22:57:08', 'WK010于2020/4/24 22:57:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:30:24', 'WK010于2020/4/7 14:30:24登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:33:43', '经理部总经理杨俊杰于2020/4/7 14:33:43查看了TS1194的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:34:22', '经理部总经理杨俊杰于2020/4/7 14:34:22帮助TS1081进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:36:33', '经理部总经理杨俊杰于2020/4/7 14:36:33帮助TS1081进行了消费商品:乐事薯片(原味)操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:36:38', '经理部总经理杨俊杰于2020/4/7 14:36:38帮助TS1081进行了消费商品:特级杜蕾斯操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:36:42', '经理部总经理杨俊杰于2020/4/7 14:36:42帮助TS1081进行了消费商品:青岛啤酒操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:36:57', '经理部总经理杨俊杰于2020/4/7 14:36:57帮助TS1081进行了消费商品:可口可乐操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:37:31', '经理部总经理杨俊杰于2020/4/7 14:37:31帮助TS1081进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:38:09', '杨俊杰【经理部总经理】于2020/4/7 14:38:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:38:10', '杨俊杰【经理部总经理】于2020/4/7 14:38:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:46:46', 'WK010于2020-04-07 14:46:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:50:05', 'WK010于2020/4/7 14:50:05登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:52:08', 'WK010于2020/4/7 14:52:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:54:11', '杨俊杰【经理部总经理】于2020/4/7 14:54:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:54:23', '杨俊杰【经理部总经理】于2020/4/7 14:54:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-07 15:27:29', 'WK010于07/04/2020 15:27:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-07 15:30:50', 'WK010于07/04/2020 15:30:50登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-07 15:32:06', '经理部总经理杨俊杰于07/04/2020 15:32:06查看了TS1005的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-07 15:42:24', 'WK010于07/04/2020 15:42:24登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-08 12:48:35', 'WK010于2020/4/8 12:48:35登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-08 12:49:20', '经理部总经理杨俊杰于2020/4/8 12:49:20帮助TS6666进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-08 21:42:25', 'WK010于2020/4/8 21:42:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-09 00:10:34', 'WK010于2020/4/9 0:10:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-09 14:37:46', 'WK010于2020/4/9 14:37:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-09 14:40:04', '经理部总经理杨俊杰于2020/4/9 14:40:04帮助TS6666进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-09 15:23:56', 'WK010于2020-04-09 15:23:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-09 16:26:51', 'WK010于2020-04-09 16:26:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-09 18:17:02', 'WK010于2020/4/9 18:17:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-09 18:17:06', '杨俊杰【经理部总经理】于2020/4/9 18:17:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-10 07:27:16', 'WK010于2020/4/10 7:27:16登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 08:10:55', 'WK010于2020/4/10 8:10:55登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 09:04:17', 'WK010于2020/4/10 9:04:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-03-27 18:04:01', 'WK010于2020/3/27 星期五 18:04:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-03-27 18:04:05', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:04:05尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-03-27 18:04:07', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:04:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-03-27 18:04:49', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:04:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-03-27 18:15:02', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-03-27 18:15:09', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-03-27 18:15:15', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:15尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-03-27 18:15:18', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-03-27 18:15:19', '杨俊杰【经理部总经理】于2020/3/27 星期五 18:15:19尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-03-27 19:59:10', 'WK010于2020/3/27 19:59:10登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-03-28 12:15:02', 'WK010于2020/3/28 星期六 12:15:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-03-28 12:19:08', 'WK010于2020/3/28 星期六 12:19:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-03-28 12:20:08', '杨俊杰【经理部总经理】于2020/3/28 星期六 12:20:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-03-28 22:31:38', 'WK010于2020/3/28 22:31:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-03-30 13:11:07', 'WK010于2020/3/30 13:11:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-03-30 13:11:13', '杨俊杰【经理部总经理】于2020/3/30 13:11:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-03-30 13:40:42', 'WK010于2020/3/30 13:40:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-03-30 13:44:36', 'WK010于2020/3/30 13:44:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-03-30 13:45:08', 'WK010于2020/3/30 13:45:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-02 14:58:09', 'WK010于2020/4/2 14:58:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-02 14:59:00', '杨俊杰【经理部总经理】于2020/4/2 14:59:00尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-02 15:53:54', 'WK010于2020/4/2 15:53:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-02 15:54:06', 'WK010于2020/4/2 15:54:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 15:03:59', 'WK010于2020/4/6 15:03:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 15:04:46', 'WK010于2020/4/6 15:04:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 15:09:00', 'WK010于2020/4/6 15:09:00登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 15:13:26', 'WK010于2020/4/6 15:13:26登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 15:55:05', 'WK010于2020/4/6 15:55:05登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 15:56:20', 'WK010于2020/4/6 15:56:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 15:57:48', 'WK010于2020/4/6 15:57:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 15:58:09', '经理部总经理杨俊杰于2020/4/6 15:58:09帮助789798789进行了预订房间操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-06 18:13:48', 'WK010于2020/4/6 18:13:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:01:17', 'WK010于2020/4/6 19:01:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:03:38', 'WK010于2020/4/6 19:03:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:05:23', 'WK010于2020/4/6 19:05:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:07:43', 'WK010于2020/4/6 19:07:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:10:41', 'WK010于2020/4/6 19:10:41登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:13:45', 'WK010于2020/4/6 19:13:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:14:54', 'WK010于2020/4/6 19:14:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:16:01', 'WK010于2020/4/6 19:16:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:16:42', 'WK010于2020/4/6 19:16:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:17:36', 'WK010于2020/4/6 19:17:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:18:32', 'WK010于2020/4/6 19:18:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:21:24', 'WK010于2020/4/6 19:21:24登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:21:58', 'WK010于2020/4/6 19:21:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:23:43', 'WK010于2020/4/6 19:23:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:24:47', 'WK010于2020/4/6 19:24:47登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:27:53', 'WK010于2020/4/6 19:27:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:31:36', 'WK010于2020/4/6 19:31:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:32:46', 'WK010于2020/4/6 19:32:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:34:18', 'WK010于2020/4/6 19:34:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:35:15', 'WK010于2020/4/6 19:35:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:37:15', 'WK010于2020/4/6 19:37:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:38:51', 'WK010于2020/4/6 19:38:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:39:51', 'WK010于2020/4/6 19:39:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:40:29', 'WK010于2020/4/6 19:40:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 22:06:12', 'WK010于2020/4/6 22:06:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 22:07:33', '杨俊杰【经理部总经理】于2020/4/6 22:07:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-07 00:20:02', 'WK010于2020/4/7 0:20:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-07 00:21:47', '经理部总经理杨俊杰于2020/4/7 0:21:47帮助123123123进行了预订房间操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-07 00:24:22', '经理部总经理杨俊杰于2020/4/7 0:24:22帮助进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-07 00:24:31', '杨俊杰【经理部总经理】于2020/4/7 0:24:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-07 00:27:56', '经理部杨俊杰总经理杨俊杰于2020/4/7 0:27:56导出了后台用户信息!', '经理部杨俊杰总经理'); -INSERT INTO `operationlog` VALUES ('2020-04-10 09:05:16', '经理部总经理杨俊杰于2020/4/10 9:05:16查看了TS1003的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-10 09:05:20', '经理部总经理杨俊杰于2020/4/10 9:05:20查看了TS1003的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-10 09:34:56', 'WK010于2020-04-10 09:34:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 09:42:29', 'WK010于2020-04-10 09:42:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 09:44:08', '经理部总经理杨俊杰于2020-04-10 09:44:08帮助TS1001进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-10 10:32:06', 'WK010于2020/4/10 10:32:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 11:11:51', 'WK010于2020/4/10 11:11:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 13:02:54', 'WK010于2020/4/10 13:02:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 13:09:51', '杨俊杰【经理部总经理】于2020/4/10 13:09:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-10 14:09:11', 'WK010于2020/4/10 14:09:11登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 15:15:54', 'WK010于2020/4/10 15:15:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-11 12:54:06', 'WK010于2020/4/11 12:54:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-11 12:55:10', '杨俊杰【经理部总经理】于2020/4/11 12:55:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-11 16:02:28', 'WK010于2020-04-11 16:02:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-12 17:31:38', 'WK010于2020/4/12 17:31:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-13 11:35:32', 'WK010于2020/4/13 11:35:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-13 11:38:41', 'WK010于2020/4/13 11:38:41登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-13 11:53:43', 'WK010于2020/4/13 11:53:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-13 11:54:57', '杨俊杰【经理部总经理】于2020/4/13 11:54:57尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-13 15:31:10', 'WK010于2020/4/13 15:31:10登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-13 16:52:11', 'WK010于2020/4/13 16:52:11登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-13 16:56:13', 'WK010于2020/4/13 16:56:13登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-13 22:00:36', 'WK010于2020/4/13 22:00:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-13 22:04:59', 'WK010于2020/4/13 22:04:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-13 22:05:48', 'WK010于2020/4/13 22:05:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-13 22:06:04', 'WK010于2020/4/13 22:06:04登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-13 22:07:08', 'TS1001于2020/4/13 22:07:08进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-13 22:07:18', 'TS1001于2020/4/13 22:07:18进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-13 22:11:30', '杨俊杰【经理部总经理】于2020/4/13 22:11:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-13 22:11:52', '杨俊杰【经理部总经理】于2020/4/13 22:11:52尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-13 22:17:20', '经理部总经理杨俊杰于2020/4/13 22:17:20查看了TS6128的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-13 22:17:31', '经理部总经理杨俊杰于2020/4/13 22:17:31查看了TS6128的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-13 22:35:33', 'WK010于2020/4/13 22:35:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-13 22:41:32', 'WK010于2020/4/13 22:41:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-13 22:42:40', '杨俊杰【经理部总经理】于2020/4/13 22:42:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-13 23:10:50', 'WK010于2020/4/13 23:10:50登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 08:46:33', 'WK010于2020/4/14 8:46:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 09:55:58', 'WK010于2020-04-14 9:55:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 14:50:22', 'WK010于2020/4/14 14:50:22登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 14:51:27', 'WK010于2020/4/14 14:51:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 14:54:24', 'WK010于2020/4/14 14:54:24登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 14:56:19', 'WK010于2020/4/14 14:56:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 15:17:09', 'WK010于2020/4/14 15:17:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 15:22:12', 'WK010于2020/4/14 15:22:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 15:23:21', '经理部总经理杨俊杰于2020/4/14 15:23:21查看了TS1001的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 15:25:18', 'WK010于2020/4/14 15:25:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 15:28:31', 'WK010于2020/4/14 15:28:31登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:04:16', 'WK010于2020/4/14 16:04:16登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:22:00', 'WK010于2020/4/14 16:22:00登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:22:28', '经理部总经理杨俊杰于2020/4/14 16:22:28帮助TS1251进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:23:22', '经理部总经理杨俊杰于2020/4/14 16:23:22帮助TS1266进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:24:54', 'WK010于2020/4/14 16:24:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:25:32', '经理部总经理杨俊杰于2020/4/14 16:25:32帮助TS1081进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:40:00', 'WK010于2020/4/14 16:40:00登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:41:33', 'WK010于2020/4/14 16:41:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:42:14', 'WK010于2020/4/14 16:42:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:43:27', 'WK010于2020/4/14 16:43:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:43:56', 'WK010于2020/4/14 16:43:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:44:41', 'WK010于2020/4/14 16:44:41登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 15:10:03', 'WK010于2020/4/6 15:10:03登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:45:33', 'WK010于2020/4/14 16:45:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:46:20', '经理部总经理杨俊杰于2020/4/14 16:46:20帮助TS1779进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:47:18', 'WK010于2020/4/14 16:47:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:48:06', 'WK010于2020/4/14 16:48:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:49:16', 'WK010于2020/4/14 16:49:16登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:52:22', 'WK010于2020/4/14 16:52:22登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:53:10', 'WK010于2020/4/14 16:53:10登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:54:32', 'WK010于2020/4/14 16:54:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:55:39', 'WK010于2020/4/14 16:55:39登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:02:46', 'WK010于2020/4/14 17:02:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:10:45', 'WK010于2020/4/14 17:10:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:22:54', 'WK010于2020/4/14 17:22:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:24:55', 'WK010于2020/4/14 17:24:55登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:26:12', 'WK010于2020/4/14 17:26:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:29:28', 'WK010于2020/4/14 17:29:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:30:17', 'WK010于2020/4/14 17:30:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:33:06', 'WK010于2020/4/14 17:33:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:05:06', 'WK010于2020/4/14 18:05:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:06:45', 'WK010于2020/4/14 18:06:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:07:26', 'WK010于2020/4/14 18:07:26登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:12:55', 'WK010于2020/4/14 18:12:55登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:13:19', 'TS1251于2020/4/14 18:13:19进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:22:28', 'WK010于2020/4/14 18:22:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:22:48', 'TS1266于2020/4/14 18:22:48进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:24:23', 'WK010于2020/4/14 18:24:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:24:42', 'TS1081于2020/4/14 18:24:42进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:31:50', 'WK010于2020/4/14 18:31:50登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:33:29', 'WK010于2020/4/14 18:33:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:33:48', 'TS1194于2020/4/14 18:33:48进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:37:45', 'WK010于2020/4/14 18:37:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:38:13', 'TS1364于2020/4/14 18:38:13进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:53:32', 'WK010于2020/4/14 18:53:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 18:57:48', 'WK010于2020/4/14 18:57:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:02:26', 'WK010于2020/4/14 19:02:26登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:06:24', 'WK010于2020/4/14 19:06:24登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:07:43', 'WK010于2020/4/14 19:07:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:09:20', 'WK010于2020/4/14 19:09:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:24:41', 'WK010于2020/4/14 19:24:41登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:25:52', 'WK010于2020/4/14 19:25:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:29:07', 'WK010于2020/4/14 19:29:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:31:12', 'WK010于2020/4/14 19:31:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:32:40', 'WK010于2020/4/14 19:32:40登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:34:14', 'WK010于2020/4/14 19:34:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:35:11', 'WK010于2020/4/14 19:35:11登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:38:53', 'WK010于2020/4/14 19:38:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:39:12', 'TS1364于2020/4/14 19:39:12进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:40:11', 'WK010于2020/4/14 19:40:11登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:40:30', 'TS1364于2020/4/14 19:40:30进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:41:34', '经理部总经理杨俊杰于2020/4/14 19:41:34帮助TS1364进行了消费商品:可口可乐操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:42:31', 'WK010于2020/4/14 19:42:31登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:43:43', 'WK010于2020/4/14 19:43:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:44:51', 'WK010于2020/4/14 19:44:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 19:45:48', '经理部总经理杨俊杰于2020/4/14 19:45:48帮助TS1005进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 20:04:14', 'WK010于2020/4/14 20:04:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 20:17:41', 'WK010于2020/4/14 20:17:41登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 20:18:11', 'WK010于2020/4/14 20:18:11登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 20:24:34', 'WK010于2020/4/14 20:24:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 20:25:41', 'WK010于2020/4/14 20:25:41登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-15 13:09:39', 'WK010于2020/4/15 13:09:39登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-15 13:09:58', '经理部总经理杨俊杰于2020/4/15 13:09:58查看了的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-15 13:10:04', '经理部总经理杨俊杰于2020/4/15 13:10:04查看了的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-15 14:29:24', 'WK010于2020/4/15 14:29:24登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-15 14:37:42', 'WK010于2020/4/15 14:37:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-15 15:12:06', 'WK010于2020/4/15 15:12:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-15 17:06:22', 'WK010于2020/4/15 17:06:22登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 18:32:45', 'WK010于2020/4/16 18:32:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 18:36:51', 'WK010于2020/4/16 18:36:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 18:40:31', 'WK010于2020/4/16 18:40:31登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 19:19:56', 'WK010于2020/4/16 19:19:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 19:26:51', 'WK010于2020/4/16 19:26:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 19:28:20', 'WK010于2020/4/16 19:28:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 19:29:27', 'WK010于2020/4/16 19:29:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 19:29:59', 'WK010于2020/4/16 19:29:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 19:30:53', 'WK010于2020/4/16 19:30:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 19:36:21', 'WK010于2020/4/16 19:36:21登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 20:23:21', 'WK010于2020/4/16 20:23:21登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 20:23:27', '杨俊杰【经理部总经理】于2020/4/16 20:23:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-16 20:24:26', 'WK010于2020/4/16 20:24:26登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 20:24:31', '杨俊杰【经理部总经理】于2020/4/16 20:24:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-16 20:30:26', 'WK010于2020/4/16 20:30:26登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 20:36:26', 'WK010于2020/4/16 20:36:26登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 20:38:56', '于2020/4/16 20:38:56登入了系统!', ''); -INSERT INTO `operationlog` VALUES ('2020-04-16 20:47:00', 'WK010于2020/4/16 20:47:00登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 20:48:25', 'WK010于2020/4/16 20:48:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 20:49:56', 'WK010于2020/4/16 20:49:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 20:50:25', 'WK010于2020/4/16 20:50:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 20:51:23', 'WK010于2020/4/16 20:51:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 20:54:14', 'WK010于2020/4/16 20:54:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 20:59:31', 'WK010于2020-04-16 20:59:31登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 22:20:55', 'WK010于2020/4/16 22:20:55登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 22:38:57', 'WK010于2020/4/16 22:38:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 22:46:38', 'WK010于2020/4/16 22:46:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:20:34', 'WK010于2020/4/16 23:20:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:21:10', '杨俊杰【经理部总经理】于2020/4/16 23:21:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:36:55', 'WK010于2020/4/16 23:36:55登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:37:01', '杨俊杰【经理部总经理】于2020/4/16 23:37:01尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:46:30', 'WK010于2020/4/16 23:46:30登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:46:36', '杨俊杰【经理部总经理】于2020/4/16 23:46:36尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:50:19', 'WK010于2020/4/16 23:50:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:50:24', '杨俊杰【经理部总经理】于2020/4/16 23:50:24尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:52:39', 'WK010于2020/4/16 23:52:39登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:55:02', 'WK010于2020/4/16 23:55:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 00:29:53', 'WK010于2020/4/17 0:29:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 00:30:25', 'WK010于2020/4/17 0:30:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 00:50:57', 'WK010于2020/4/17 0:50:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 13:02:49', 'WK010于2020/4/17 13:02:49登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 13:31:49', 'WK010于2020/4/17 13:31:49登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 09:38:09', 'WK010于2020/4/10 9:38:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-03-27 18:16:10', 'WK010于2020/3/27 18:16:10登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-03-27 18:16:13', '杨俊杰【经理部总经理】于2020/3/27 18:16:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-06 16:02:24', 'WK010于2020/4/6 16:02:24登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 16:05:48', 'WK010于2020/4/6 16:05:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 16:06:13', 'WK010于2020/4/6 16:06:13登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 16:09:26', 'WK010于2020/4/6 16:09:26登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 16:09:56', 'WK010于2020/4/6 16:09:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 16:18:17', 'WK010于2020/4/6 16:18:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 16:19:20', 'WK010于2020/4/6 16:19:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 16:41:33', 'WK010于2020/4/6 16:41:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 16:42:18', 'WK010于2020/4/6 16:42:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 16:44:01', 'WK010于2020/4/6 16:44:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 16:49:22', 'WK010于2020/4/6 16:49:22登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 16:50:36', 'WK010于2020/4/6 16:50:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 17:04:41', 'WK010于2020/4/6 17:04:41登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 17:05:23', 'WK010于2020/4/6 17:05:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 17:08:39', 'WK010于2020/4/6 17:08:39登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 17:18:18', 'WK010于2020/4/6 17:18:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 17:19:02', 'WK010于2020/4/6 17:19:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 17:20:10', 'WK010于2020/4/6 17:20:10登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 17:24:02', 'WK010于2020/4/6 17:24:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 17:24:51', 'WK010于2020/4/6 17:24:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 17:41:29', 'WK010于2020/4/6 17:41:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 17:44:15', 'WK010于2020/4/6 17:44:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 17:45:55', 'WK010于2020/4/6 17:45:55登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 17:59:46', 'WK010于2020/4/6 17:59:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:42:17', 'WK010于2020/4/6 19:42:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:42:57', 'WK010于2020/4/6 19:42:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:44:45', 'WK010于2020/4/6 19:44:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:45:38', 'WK010于2020/4/6 19:45:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:47:57', 'WK010于2020/4/6 19:47:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:49:08', 'WK010于2020/4/6 19:49:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:50:11', 'WK010于2020/4/6 19:50:11登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:51:01', 'WK010于2020/4/6 19:51:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:52:35', 'WK010于2020/4/6 19:52:35登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:53:55', 'WK010于2020/4/6 19:53:55登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:56:53', 'WK010于2020/4/6 19:56:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:57:15', 'WK010于2020/4/6 19:57:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:58:46', 'WK010于2020/4/6 19:58:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:59:20', '经理部总经理杨俊杰于2020/4/6 19:59:20帮助TS1084进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-06 19:59:34', 'WK010于2020/4/6 19:59:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:00:56', 'WK010于2020/4/6 20:00:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:02:33', 'WK010于2020/4/6 20:02:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:03:54', 'WK010于2020/4/6 20:03:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:04:43', 'WK010于2020/4/6 20:04:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:08:48', 'WK010于2020/4/6 20:08:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:09:28', 'WK010于2020/4/6 20:09:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:12:48', 'WK010于2020/4/6 20:12:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:19:53', 'WK010于2020/4/6 20:19:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:21:01', 'WK010于2020/4/6 20:21:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:22:30', 'WK010于2020/4/6 20:22:30登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:23:21', 'WK010于2020/4/6 20:23:21登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:24:20', 'WK010于2020/4/6 20:24:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:24:34', '经理部总经理杨俊杰于2020/4/6 20:24:34帮助TS1074进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:25:00', 'WK010于2020/4/6 20:25:00登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:25:14', '经理部总经理杨俊杰于2020/4/6 20:25:14帮助TS1634进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-06 20:25:30', '经理部总经理杨俊杰于2020/4/6 20:25:30帮助TS1765进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:30:34', 'WK010于2020/4/14 17:30:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:34:45', 'WK010于2020/4/14 17:34:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:41:31', 'WK010于2020/4/16 23:41:31登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:42:05', '杨俊杰【经理部总经理】于2020/4/16 23:42:05尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:42:29', '总经理杨俊杰于2020/4/16 23:42:29进行资产录入,资产编号为:CN6816', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:46:35', 'TS1005于2020/4/16 23:46:35进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:46:52', 'TS1005于2020/4/16 23:46:52进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:47:21', 'TS1005于2020/4/16 23:47:21进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:47:47', 'TS1005于2020/4/16 23:47:47进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-17 00:52:35', 'WK010于2020/4/17 0:52:35登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 00:52:56', '杨俊杰【经理部总经理】于2020/4/17 0:52:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-17 13:36:09', 'WK010于2020/4/17 13:36:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 13:40:44', 'WK010于2020/4/17 13:40:44登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 13:42:57', 'WK010于2020/4/17 13:42:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 13:45:35', 'WK010于2020-04-17 13:45:35登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 13:49:28', 'WK010于2020/4/17 13:49:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 13:54:06', 'WK010于2020/4/17 13:54:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 13:55:27', 'WK010于2020/4/17 13:55:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 14:06:21', 'WK010于2020/4/17 14:06:21登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 14:07:35', 'WK010于2020/4/17 14:07:35登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 14:08:09', '杨俊杰【经理部总经理】于2020/4/17 14:08:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-17 14:09:34', 'WK010于2020/4/17 14:09:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 14:09:38', '杨俊杰【经理部总经理】于2020/4/17 14:09:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-17 14:12:18', 'WK010于2020/4/17 14:12:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 14:12:23', '杨俊杰【经理部总经理】于2020/4/17 14:12:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-17 14:15:55', 'WK010于2020/4/17 14:15:55登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 14:16:03', '杨俊杰【经理部总经理】于2020/4/17 14:16:03尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-17 14:17:57', 'WK010于2020/4/17 14:17:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 14:18:01', '杨俊杰【经理部总经理】于2020/4/17 14:18:01尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-06 18:17:16', 'WK010于2020/4/6 18:17:16登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 18:19:53', 'WK010于2020/4/6 18:19:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 18:23:53', 'WK010于2020/4/6 18:23:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 18:24:34', 'WK010于2020/4/6 18:24:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 18:25:03', 'WK010于2020/4/6 18:25:03登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 18:25:36', 'WK010于2020/4/6 18:25:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 18:26:34', 'WK010于2020/4/6 18:26:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 18:27:00', 'WK010于2020/4/6 18:27:00登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 18:27:35', 'WK010于2020/4/6 18:27:35登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-06 18:28:03', 'WK010于2020/4/6 18:28:03登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:35:27', 'WK010于2020-04-07 14:35:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:40:57', 'WK010于2020/4/7 14:40:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-07 14:47:21', 'WK010于2020/4/7 14:47:21登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-09 15:25:59', 'WK010于2020/4/9 15:25:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 09:47:15', 'WK010于2020-04-10 09:47:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 09:54:07', 'WK010于2020/4/10 9:54:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 10:14:26', 'WK010于2020/4/10 10:14:26登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 10:16:24', 'WK010于2020/4/10 10:16:24登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 10:22:01', 'WK010于2020/4/10 10:22:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-10 10:22:40', '经理部总经理杨俊杰于2020/4/10 10:22:40查看了TS1074的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-10 10:22:47', '经理部总经理杨俊杰于2020/4/10 10:22:47查看了TS1251的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-10 10:24:16', '经理部总经理杨俊杰于2020/4/10 10:24:16查看了TS1387的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 14:57:19', 'WK010于2020/4/14 14:57:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:56:17', 'WK010于2020/4/14 16:56:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:57:09', 'WK010于2020/4/14 16:57:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 16:57:52', 'WK010于2020/4/14 16:57:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:07:51', 'WK010于2020/4/14 17:07:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:10:58', 'WK010于2020/4/14 17:10:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:12:17', 'WK010于2020/4/14 17:12:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:16:33', 'WK010于2020/4/14 17:16:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:17:01', 'WK010于2020/4/14 17:17:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:17:49', '经理部总经理杨俊杰于2020/4/14 17:17:49查看了TS1387的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:22:34', 'WK010于2020/4/14 17:22:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-14 17:24:28', 'WK010于2020/4/14 17:24:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:25:12', 'WK010于2020/4/16 23:25:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:25:18', '杨俊杰【经理部总经理】于2020/4/16 23:25:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:26:47', 'WK010于2020/4/16 23:26:47登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:26:53', '杨俊杰【经理部总经理】于2020/4/16 23:26:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:35:17', 'WK010于2020/4/16 23:35:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:35:35', '杨俊杰【经理部总经理】于2020/4/16 23:35:35尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-16 23:57:51', 'WK010于2020/4/16 23:57:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 15:57:49', 'WK010于2020/4/17 15:57:49登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 17:08:41', 'WK010于2020-04-17 17:08:41登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 17:26:59', 'WK010于2020-04-17 17:26:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 19:54:57', 'WK010于2020/4/17 19:54:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-17 22:11:49', 'WK010于2020/4/17 22:11:49登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-18 00:16:53', 'WK010于2020/4/18 0:16:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-18 00:17:16', '杨俊杰【经理部总经理】于2020/4/18 0:17:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-18 00:46:57', 'WK010于2020/4/18 0:46:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-18 00:47:03', '杨俊杰【经理部总经理】于2020/4/18 0:47:03尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-18 00:48:31', 'WK010于2020/4/18 0:48:31登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-18 00:48:38', '杨俊杰【经理部总经理】于2020/4/18 0:48:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-18 00:50:47', 'WK010于2020/4/18 0:50:47登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-18 00:50:51', '杨俊杰【经理部总经理】于2020/4/18 0:50:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-18 00:51:45', 'WK010于2020/4/18 0:51:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-18 00:51:49', '杨俊杰【经理部总经理】于2020/4/18 0:51:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-18 00:53:56', 'WK010于2020/4/18 0:53:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-18 00:54:44', '杨俊杰【经理部总经理】于2020/4/18 0:54:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-18 01:08:02', 'WK010于2020/4/18 1:08:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-18 01:08:09', '杨俊杰【经理部总经理】于2020/4/18 1:08:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-18 01:11:20', 'WK010于2020/4/18 1:11:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-18 01:11:25', '杨俊杰【经理部总经理】于2020/4/18 1:11:25尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-18 21:38:57', 'WK010于2020/4/18 21:38:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-18 21:39:29', 'WK010于2020/4/18 21:39:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:23:09', 'WK010于2020/4/19 0:23:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:23:18', '杨俊杰【经理部总经理】于2020/4/19 0:23:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:25:07', 'WK010于2020/4/19 0:25:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:25:12', '杨俊杰【经理部总经理】于2020/4/19 0:25:12尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:29:15', 'WK010于2020/4/19 0:29:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:29:23', '杨俊杰【经理部总经理】于2020/4/19 0:29:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:30:57', 'WK010于2020/4/19 0:30:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:31:03', '杨俊杰【经理部总经理】于2020/4/19 0:31:03尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:34:19', 'WK010于2020/4/19 0:34:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:34:43', '杨俊杰【经理部总经理】于2020/4/19 0:34:43尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:39:58', 'WK010于2020/4/19 0:39:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:40:04', '杨俊杰【经理部总经理】于2020/4/19 0:40:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:42:23', 'WK010于2020/4/19 0:42:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:42:29', '杨俊杰【经理部总经理】于2020/4/19 0:42:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:46:44', 'WK010于2020/4/19 0:46:44登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:46:57', '杨俊杰【经理部总经理】于2020/4/19 0:46:57尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:47:17', '杨俊杰总经理于2020/4/19 0:47:17进行了添加员工操作,员工编号为:WK6800!', '杨俊杰总经理'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:50:08', 'WK010于2020/4/19 0:50:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:50:13', '杨俊杰【经理部总经理】于2020/4/19 0:50:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:50:31', '杨俊杰总经理于2020/4/19 0:50:31进行了添加员工操作,员工编号为:WK2751!', '杨俊杰总经理'); -INSERT INTO `operationlog` VALUES ('2020-04-19 01:01:45', 'WK010于2020/4/19 1:01:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 01:01:50', '杨俊杰【经理部总经理】于2020/4/19 1:01:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 01:08:04', 'WK010于2020/4/19 1:08:04登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 11:06:52', 'WK010于2020/4/19 11:06:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 11:08:09', '杨俊杰【经理部总经理】于2020/4/19 11:08:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 11:13:05', 'WK010于2020/4/19 11:13:05登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 11:13:10', '杨俊杰【经理部总经理】于2020/4/19 11:13:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 12:04:01', 'WK010于2020/4/19 12:04:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:10:57', 'WK010于2020/4/19 0:10:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:11:09', '杨俊杰【经理部总经理】于2020/4/19 0:11:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:12:58', 'WK010于2020/4/19 0:12:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 00:13:04', '杨俊杰【经理部总经理】于2020/4/19 0:13:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 11:05:25', 'WK010于2020/4/19 11:05:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 16:23:04', 'WK010于2020/4/19 16:23:04登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 17:14:48', 'WK010于2020/4/19 17:14:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 18:44:42', 'WK010于2020/4/19 18:44:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 19:10:43', 'WK010于2020/4/19 19:10:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 19:11:21', 'WK010于2020/4/19 19:11:21登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-20 11:08:12', 'WK010于2020/4/20 11:08:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-20 11:09:53', '杨俊杰【经理部总经理】于2020/4/20 11:09:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-20 11:09:55', '杨俊杰【经理部总经理】于2020/4/20 11:09:55尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-20 11:25:40', 'WK010于2020-04-20 11:25:40登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-20 11:25:44', '杨俊杰【经理部总经理】于2020-04-20 11:25:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-20 11:28:58', 'WK010于2020-04-20 11:28:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-20 11:29:06', '杨俊杰【经理部总经理】于2020-04-20 11:29:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-20 12:24:12', 'WK010于2020-04-20 12:24:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-20 12:24:16', '杨俊杰【经理部总经理】于2020-04-20 12:24:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-20 12:33:23', 'WK010于2020/4/20 12:33:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-20 15:47:09', 'WK010于2020/4/20 15:47:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-20 15:48:59', 'WK010于2020/4/20 15:48:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-20 15:56:40', 'WK010于2020-04-20 15:56:40登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-20 15:57:11', '杨俊杰【经理部总经理】于2020-04-20 15:57:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-20 16:10:04', 'WK010于2020-04-20 16:10:04登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-20 16:10:15', '杨俊杰【经理部总经理】于2020-04-20 16:10:15尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-20 16:13:28', 'WK010于2020-04-20 16:13:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-20 16:13:31', '杨俊杰【经理部总经理】于2020-04-20 16:13:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-20 16:21:01', 'WK010于2020-04-20 16:21:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-20 16:21:04', '杨俊杰【经理部总经理】于2020-04-20 16:21:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-20 16:23:13', 'WK010于2020-04-20 16:23:13登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-20 16:23:16', '杨俊杰【经理部总经理】于2020-04-20 16:23:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-20 22:49:34', 'WK010于2020-04-20 22:49:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-20 22:54:13', '经理部总经理杨俊杰于2020-04-20 22:54:13查看了TS6128的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-20 22:55:36', '经理部总经理杨俊杰于2020-04-20 22:55:36帮助TS1032进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-20 22:57:00', 'WK010于2020-04-20 22:57:00登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-24 23:02:27', 'WK010于2020/4/24 23:02:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-24 23:04:02', 'WK010于2020/4/24 23:04:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-24 23:09:54', 'WK010于2020/4/24 23:09:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-25 13:54:51', 'WK010于2020/4/25 星期六 13:54:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-25 16:28:16', 'WK010于2020/4/25 16:28:16登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-25 16:29:15', '经理部总经理杨俊杰于2020/4/25 16:29:15查看了的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-25 16:33:55', '经理部总经理杨俊杰于2020/4/25 16:33:55帮助12354697812进行了预订房间操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-25 18:42:59', 'WK010于2020/4/25 18:42:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-25 19:37:32', 'WK010于2020/4/25 19:37:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-25 19:48:12', 'WK010于2020/4/25 19:48:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-25 19:48:49', 'WK010于2020/4/25 19:48:49登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-25 20:18:56', 'WK010于2020/4/25 20:18:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 10:00:31', 'WK010于2020/4/26 10:00:31登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 10:32:42', 'WK010于2020/4/26 10:32:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 10:36:27', '经理部总经理杨俊杰于2020/4/26 10:36:27帮助TS1001进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-26 10:36:53', '经理部总经理杨俊杰于2020/4/26 10:36:53帮助TS1032进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-26 10:56:36', 'WK010于2020/4/26 10:56:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 13:46:30', 'WK010于2020/4/26 13:46:30登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 13:49:18', '经理部总经理杨俊杰于2020/4/26 13:49:18帮助TS1081进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-26 13:49:40', '杨俊杰【经理部总经理】于2020/4/26 13:49:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-26 13:51:14', 'WK010于2020/4/26 13:51:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 13:52:10', 'WK010于2020/4/26 13:52:10登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 13:52:53', 'WK010于2020/4/26 13:52:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 13:54:04', 'WK010于2020/4/26 13:54:04登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 13:54:38', 'WK010于2020/4/26 13:54:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 13:59:02', 'WK010于2020/4/26 13:59:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 14:03:15', 'WK010于2020/4/26 14:03:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 14:06:09', 'TS1001于2020/4/26 14:06:09进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-26 14:11:18', 'WK010于2020/4/26 14:11:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 14:12:01', 'WK010于2020/4/26 14:12:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 14:14:07', 'WK010于2020/4/26 14:14:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 14:40:07', 'WK010于2020/4/26 14:40:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 15:21:18', 'WK010于2020/4/26 15:21:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 17:35:51', 'WK010于2020/4/26 17:35:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 18:45:27', 'WK010于2020/4/26 18:45:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 19:05:28', 'WK010于2020/4/26 19:05:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 19:06:24', '经理部总经理杨俊杰于2020/4/26 19:06:24帮助TS1336进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-04-26 23:17:46', 'WK010于2020/4/26 23:17:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 23:21:18', 'WK010于2020/4/26 23:21:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-28 10:28:07', 'WK010于2020/4/28 10:28:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-28 10:30:33', 'WK010于2020/4/28 10:30:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-29 00:12:42', 'WK010于2020/4/29 0:12:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-29 00:13:00', '杨俊杰【经理部总经理】于2020/4/29 0:13:00尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-29 00:14:27', '杨俊杰【经理部总经理】于2020/4/29 0:14:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-29 08:25:29', 'WK010于2020-04-29 08:25:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-29 08:35:52', 'WK010于2020-04-29 08:35:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-29 12:36:36', 'WK010于2020/4/29 12:36:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-29 12:37:21', 'WK001于2020/4/29 12:37:21登入了系统!', 'WK001'); -INSERT INTO `operationlog` VALUES ('2020-04-29 12:40:46', '人事部职员谭国平于2020/4/29 12:40:46帮助TS1480进行了消费商品:火腿肠操作!', '人事部职员谭国平'); -INSERT INTO `operationlog` VALUES ('2020-04-29 12:41:00', '人事部职员谭国平于2020/4/29 12:41:00帮助TS1480进行了消费商品:雪碧操作!', '人事部职员谭国平'); -INSERT INTO `operationlog` VALUES ('2020-04-29 12:41:14', '人事部职员谭国平于2020/4/29 12:41:14帮助TS1480进行了消费商品:92拉菲操作!', '人事部职员谭国平'); -INSERT INTO `operationlog` VALUES ('2020-04-29 22:57:10', 'WK010于2020/4/29 22:57:10登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-01 00:24:06', 'WK010于2020/5/1 0:24:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-01 08:47:30', 'WK010于2020/5/1 8:47:30登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-02 10:54:00', 'WK010于2020/5/2 10:54:00登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-03 19:55:35', 'WK010于2020/5/3 19:55:35登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-03 19:55:55', '杨俊杰【经理部总经理】于2020/5/3 19:55:55尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-03 19:59:02', '经理部总经理杨俊杰于2020/5/3 19:59:02帮助TS1002进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-03 19:59:23', '经理部总经理杨俊杰于2020/5/3 19:59:23帮助TS1003进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-03 19:59:46', '经理部总经理杨俊杰于2020/5/3 19:59:46帮助TS1005进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-03 20:05:46', 'WK010于2020/5/3 20:05:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-03 20:11:00', '杨俊杰【经理部总经理】于2020/5/3 20:11:00尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 17:10:57', 'WK010于2020/4/19 17:10:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 17:13:36', 'WK010于2020/4/19 17:13:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 17:14:05', 'WK010于2020/4/19 17:14:05登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 17:14:24', 'WK010于2020/4/19 17:14:24登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 17:14:43', 'WK010于2020/4/19 17:14:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 18:40:57', 'WK010于2020/4/19 18:40:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 19:19:00', 'WK010于2020/4/19 19:19:00登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 19:21:43', 'WK010于2020/4/19 19:21:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 19:23:07', 'WK010于2020/4/19 19:23:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 19:25:08', 'WK010于2020/4/19 19:25:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 19:25:58', 'WK010于2020/4/19 19:25:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 19:26:52', 'WK010于2020/4/19 19:26:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 20:18:19', 'WK010于2020/4/19 20:18:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 20:18:45', '杨俊杰【经理部总经理】于2020/4/19 20:18:45尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 20:21:17', 'WK010于2020/4/19 20:21:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 20:21:23', '杨俊杰【经理部总经理】于2020/4/19 20:21:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 20:23:40', 'WK010于2020/4/19 20:23:40登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 20:23:47', '杨俊杰【经理部总经理】于2020/4/19 20:23:47尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 20:43:57', 'WK010于2020/4/19 20:43:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 20:44:06', '杨俊杰【经理部总经理】于2020/4/19 20:44:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 20:55:26', 'WK010于2020/4/19 20:55:26登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 20:55:30', '杨俊杰【经理部总经理】于2020/4/19 20:55:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 21:16:41', 'WK010于2020/4/19 21:16:41登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 21:16:53', '杨俊杰【经理部总经理】于2020/4/19 21:16:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 21:18:27', 'WK010于2020/4/19 21:18:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 21:18:30', '杨俊杰【经理部总经理】于2020/4/19 21:18:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 21:20:06', 'WK010于2020/4/19 21:20:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-19 21:20:18', '杨俊杰【经理部总经理】于2020/4/19 21:20:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-19 23:00:32', 'WK010于2020/4/19 23:00:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 12:51:34', 'WK010于2020/5/4 12:51:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 12:51:54', '杨俊杰【经理部总经理】于2020/5/4 12:51:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 12:56:48', 'WK010于2020/5/4 12:56:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 12:56:57', '杨俊杰【经理部总经理】于2020/5/4 12:56:57尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:00:18', '杨俊杰总经理于2020/5/4 13:00:18进行了添加员工操作,员工编号为:WK775!', '杨俊杰总经理'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:01:48', '杨俊杰总经理于2020/5/4 13:01:48对员工:凌峰进行了奖罚情况录入!', '杨俊杰总经理'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:02:45', '杨俊杰总经理于2020/5/4 13:02:45将员工:老铁晋升为人事部职员', '杨俊杰总经理'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:04:49', '经理部总经理杨俊杰于2020/5/4 13:04:49帮助TS1480进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:05:02', '杨俊杰【经理部总经理】于2020/5/4 13:05:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:07:13', 'WK010于2020/5/4 13:07:13登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:07:57', '经理部总经理杨俊杰于2020/5/4 13:07:57帮助TS1032进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:11:18', 'WK010于2020/5/4 13:11:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:12:40', '经理部总经理杨俊杰于2020/5/4 13:12:40帮助TS1074进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:36:39', 'WK010于2020/5/4 13:36:39登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:41:26', '杨俊杰【经理部总经理】于2020/5/4 13:41:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:43:22', 'WK010于2020/5/4 13:43:22登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:43:30', '杨俊杰【经理部总经理】于2020/5/4 13:43:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:43:51', '杨俊杰【经理部总经理】于2020/5/4 13:43:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:45:21', 'WK010于2020/5/4 13:45:21登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:45:32', '杨俊杰【经理部总经理】于2020/5/4 13:45:32尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:45:49', '杨俊杰【经理部总经理】于2020/5/4 13:45:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:47:07', 'WK010于2020/5/4 13:47:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:47:12', '杨俊杰【经理部总经理】于2020/5/4 13:47:12尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:48:41', 'WK010于2020/5/4 13:48:41登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:48:50', '杨俊杰【经理部总经理】于2020/5/4 13:48:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:49:04', '杨俊杰【经理部总经理】于2020/5/4 13:49:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:58:21', 'WK010于2020/5/4 13:58:21登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 13:58:28', '杨俊杰【经理部总经理】于2020/5/4 13:58:28尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 14:18:52', 'WK010于2020/5/4 14:18:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 14:19:02', '杨俊杰【经理部总经理】于2020/5/4 14:19:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 14:20:01', 'WK010于2020/5/4 14:20:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 15:47:32', 'WK010于2020/5/4 15:47:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 15:47:41', '杨俊杰【经理部总经理】于2020/5/4 15:47:41尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 15:57:19', 'WK010于2020/5/4 15:57:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 15:57:27', '杨俊杰【经理部总经理】于2020/5/4 15:57:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 16:05:09', 'WK010于2020/5/4 16:05:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 16:05:25', '杨俊杰【经理部总经理】于2020/5/4 16:05:25尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 16:10:03', 'WK010于2020/5/4 16:10:03登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 16:10:13', '杨俊杰【经理部总经理】于2020/5/4 16:10:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 16:19:52', 'WK010于2020/5/4 16:19:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-04 16:21:54', '杨俊杰【经理部总经理】于2020/5/4 16:21:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-04 17:03:47', 'WK010于2020/5/4 17:03:47登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-06 14:22:14', 'WK010于2020/5/6 14:22:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-06 20:00:35', 'WK010于2020/5/6 20:00:35登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-07 13:18:04', 'WK010于7.5.2020 13:18:04登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-07 13:18:16', '杨俊杰【经理部总经理】于7.5.2020 13:18:16尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-07 13:56:11', 'TS1002于7.5.2020 13:56:11进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-07 14:01:30', 'TS1003于7.5.2020 14:01:30进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-07 14:03:48', '经理部总经理杨俊杰于7.5.2020 14:03:48查看了TS1043的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-07 14:03:53', '经理部总经理杨俊杰于7.5.2020 14:03:53查看了TS1043的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-07 14:05:07', '经理部总经理杨俊杰于7.5.2020 14:05:07帮助TS1043进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-07 15:13:42', 'WK010于2020/5/7 15:13:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-07 15:16:07', '经理部总经理杨俊杰于2020/5/7 15:16:07查看了TS1239的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-07 15:16:57', '经理部总经理杨俊杰于2020/5/7 15:16:57帮助TS1239进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-07 15:18:51', '经理部总经理杨俊杰于2020/5/7 15:18:51帮助TS1862进行了消费商品:三只松鼠夏威夷坚果操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-07 18:12:04', 'WK010于2020/5/7 18:12:04登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-07 18:13:25', '经理部总经理杨俊杰于2020/5/7 18:13:25查看了TS1571的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-07 18:13:37', '经理部总经理杨俊杰于2020/5/7 18:13:37查看了TS1634的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-08 14:32:56', 'WK010于2020/5/8 14:32:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-08 14:35:17', 'WK010于2020/5/8 14:35:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-08 15:07:47', 'WK010于2020/5/8 15:07:47登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:07:51', 'WK010于2020-04-23 16:07:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:09:39', '杨俊杰【经理部总经理】于2020-04-23 16:09:39尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:12:28', '杨俊杰【经理部总经理】于2020-04-23 16:12:28尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:12:29', '杨俊杰【经理部总经理】于2020-04-23 16:12:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:12:31', '杨俊杰【经理部总经理】于2020-04-23 16:12:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:12:33', '杨俊杰【经理部总经理】于2020-04-23 16:12:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:13:33', '杨俊杰【经理部总经理】于2020-04-23 16:13:33尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:13:42', '杨俊杰【经理部总经理】于2020-04-23 16:13:42尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:13:44', '杨俊杰【经理部总经理】于2020-04-23 16:13:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:13:49', '杨俊杰【经理部总经理】于2020-04-23 16:13:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:13:51', '杨俊杰【经理部总经理】于2020-04-23 16:13:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:13:53', '杨俊杰【经理部总经理】于2020-04-23 16:13:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:13:54', '杨俊杰【经理部总经理】于2020-04-23 16:13:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:13:55', '杨俊杰【经理部总经理】于2020-04-23 16:13:55尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-23 16:14:02', '杨俊杰【经理部总经理】于2020-04-23 16:14:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-04-25 16:26:53', 'WK010于2020/4/25 16:26:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 14:14:16', 'WK010于2020/4/26 14:14:16登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-04-26 14:34:35', 'WK010于2020/4/26 14:34:35登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-03 20:37:52', 'WK010于2020/5/3 20:37:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-03 20:46:21', 'WK010于2020/5/3 20:46:21登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-03 20:53:40', 'WK010于2020/5/3 20:53:40登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-03 21:34:27', 'WK010于2020/5/3 21:34:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-08 16:45:40', 'WK010于2020-05-08 16:45:40登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-08 16:56:14', 'WK010于2020-05-08 16:56:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-08 17:00:35', 'WK010于2020-05-08 17:00:35登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-08 20:21:50', 'WK010于2020/5/8 20:21:50登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-08 22:05:32', 'WK010于2020/5/8 22:05:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-08 23:11:23', 'WK010于2020/5/8 23:11:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-09 10:44:13', 'WK010于2020/5/9 10:44:13登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-09 10:51:31', '杨俊杰【经理部总经理】于2020/5/9 10:51:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-09 10:57:45', 'WK010于2020/5/9 10:57:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-09 10:57:52', '杨俊杰【经理部总经理】于2020/5/9 10:57:52尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-09 10:57:54', '杨俊杰【经理部总经理】于2020/5/9 10:57:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-09 23:13:06', 'WK010于2020/5/9 23:13:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-09 23:16:57', '经理部总经理杨俊杰于2020/5/9 23:16:57查看了TS1457的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-09 23:17:01', '经理部总经理杨俊杰于2020/5/9 23:17:01查看了TS1457的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-09 23:17:53', '经理部总经理杨俊杰于2020/5/9 23:17:53查看了TS1457的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-09 23:18:01', '经理部总经理杨俊杰于2020/5/9 23:18:01查看了TS1001的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-10 09:25:51', 'WK010于2020/5/10 9:25:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-10 15:32:52', 'WK010于2020/5/10 15:32:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-10 21:24:41', 'WK010于2020-05-10 21:24:41登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-10 21:30:45', 'WK010于2020/5/10 21:30:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-10 21:31:17', '经理部总经理杨俊杰于2020/5/10 21:31:17查看了TS1001的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-10 21:34:35', 'TS1005于2020/5/10 21:34:35进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-11 13:46:08', 'WK010于2020/5/11 13:46:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-11 14:41:36', 'WK010于2020/05/11 14:41:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-11 20:14:23', 'WK010于2020/5/11 20:14:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-11 20:16:43', '杨俊杰【经理部总经理】于2020/5/11 20:16:43尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-11 20:33:13', 'WK010于2020/5/11 20:33:13登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-12 14:50:27', 'WK010于2020/5/12 14:50:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-12 20:48:57', 'WK010于2020/5/12 20:48:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-12 20:58:00', 'WK010于2020/5/12 20:58:00登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-12 22:07:42', 'WK010于2020/5/12 22:07:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-12 22:08:10', '杨俊杰【经理部总经理】于2020/5/12 22:08:10尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-12 22:11:17', 'WK010于2020/5/12 22:11:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-12 22:15:31', 'WK010于2020/5/12 22:15:31登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-12 22:16:45', 'WK010于2020/5/12 22:16:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-12 22:17:33', 'WK010于2020/5/12 22:17:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-12 22:19:18', 'WK010于2020/5/12 22:19:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-12 22:25:01', 'WK010于2020/5/12 22:25:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-12 22:28:57', 'WK010于2020/5/12 22:28:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-12 22:34:36', 'WK010于2020/5/12 22:34:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-12 22:35:20', 'WK010于2020/5/12 22:35:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-13 17:37:42', 'WK010于2020/5/13 17:37:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-13 17:39:32', 'WK010于2020/5/13 17:39:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-13 17:40:21', '经理部总经理杨俊杰于2020/5/13 17:40:21帮助TS1005进行了消费商品:特级杜蕾斯操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-14 17:26:59', 'WK010于2020/5/14 下午 05:26:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-14 17:31:25', 'WK010于2020/5/14 下午 05:31:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-14 19:25:14', 'WK010于2020/5/14 下午 07:25:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-14 22:13:58', 'WK010于2020/5/14 22:13:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-15 14:10:56', 'WK010于2020/5/15 14:10:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-15 15:25:29', 'WK010于2020-05-15 15:25:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-15 17:06:22', 'WK010于2020/5/15 17:06:22登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-15 17:07:03', '经理部总经理杨俊杰于2020/5/15 17:07:03查看了TS1002的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-15 17:07:11', '经理部总经理杨俊杰于2020/5/15 17:07:11查看了TS1615的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-15 17:07:16', '经理部总经理杨俊杰于2020/5/15 17:07:16查看了TS1003的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-16 14:36:13', 'WK010于2020-05-16 14:36:13登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-16 14:36:33', 'WK010于2020-05-16 14:36:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-16 14:52:26', 'WK010于2020-05-16 14:52:26登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-16 15:09:22', 'WK010于2020-05-16 15:09:22登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-16 15:10:38', 'WK010于2020-05-16 15:10:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-16 15:13:20', 'WK010于2020-05-16 15:13:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-16 15:27:42', 'WK010于2020-05-16 15:27:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-17 22:38:52', 'WK010于2020/5/17 22:38:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-18 22:26:31', 'WK010于2020/5/18 22:26:31登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-18 23:05:11', 'WK010于2020/5/18 23:05:11登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-19 10:47:38', 'WK010于2020/5/19 10:47:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-19 10:49:52', '杨俊杰【经理部总经理】于2020/5/19 10:49:52尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-19 10:49:54', '杨俊杰【经理部总经理】于2020/5/19 10:49:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-19 21:31:52', 'WK010于2020/5/19 21:31:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-20 08:40:36', 'WK010于2020/5/20 8:40:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-20 16:18:03', 'WK010于2020/5/20 16:18:03登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-20 23:14:54', 'WK010于2020-05-20 23:14:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-20 23:20:36', 'WK010于2020-05-20 23:20:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-20 23:20:41', '杨俊杰【经理部总经理】于2020-05-20 23:20:41尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-20 23:21:53', '杨俊杰【经理部总经理】于2020-05-20 23:21:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-20 23:22:50', '杨俊杰【经理部总经理】于2020-05-20 23:22:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-21 14:35:22', 'WK010于2020/5/21 14:35:22登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-21 14:38:28', '杨俊杰【经理部总经理】于2020/5/21 14:38:28尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-22 10:37:44', 'WK010于2020/5/22 10:37:44登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-22 10:39:52', '经理部总经理杨俊杰于2020/5/22 10:39:52查看了TS1968的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-22 10:41:50', '经理部总经理杨俊杰于2020/5/22 10:41:50帮助TS1003进行了消费商品:特级杜蕾斯操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-22 10:42:57', 'WK010于2020/5/22 10:42:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-22 11:09:20', 'WK010于2020/5/22 11:09:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-22 11:11:27', 'WK010于2020/5/22 11:11:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-22 11:15:59', 'WK010于2020/5/22 11:15:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-22 19:48:22', 'WK010于2020/5/22 19:48:22登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-22 19:48:35', '杨俊杰【经理部总经理】于2020/5/22 19:48:35尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-23 20:31:12', 'WK010于2020-05-23 20:31:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-23 20:31:23', '杨俊杰【经理部总经理】于2020-05-23 20:31:23尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-23 20:32:46', 'WK010于2020-05-23 20:32:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-24 18:35:50', 'WK010于2020/5/24 18:35:50登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-25 09:38:30', 'WK010于2020/5/25 9:38:30登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-25 12:40:18', 'WK010于2020-05-25 12:40:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-25 12:40:36', '杨俊杰【经理部总经理】于2020-05-25 12:40:36尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-25 12:58:37', 'WK010于2020/5/25 星期一 12:58:37登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-25 12:59:06', '经理部总经理杨俊杰于2020/5/25 星期一 12:59:06查看了TS1539的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-25 21:43:02', 'WK010于2020/5/25 星期一 21:43:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-25 21:43:41', '经理部总经理杨俊杰于2020/5/25 星期一 21:43:41查看了的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-26 15:21:18', 'WK010于2020-05-26 15:21:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-26 15:22:26', '经理部总经理杨俊杰于2020-05-26 15:22:26查看了TS1003的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-26 15:22:30', '经理部总经理杨俊杰于2020-05-26 15:22:30查看了TS1003的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-26 15:25:29', '经理部总经理杨俊杰于2020-05-26 15:25:29帮助进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-26 15:26:44', '杨俊杰【经理部总经理】于2020-05-26 15:26:44尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-26 15:26:53', '杨俊杰【经理部总经理】于2020-05-26 15:26:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-26 15:28:34', 'WK010于2020-05-26 15:28:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-26 15:31:19', '经理部总经理杨俊杰于2020-05-26 15:31:19查看了TS1002的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-26 15:32:56', '杨俊杰【经理部总经理】于2020-05-26 15:32:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-26 15:33:23', 'WK010于2020-05-26 15:33:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-26 16:16:48', 'WK010于2020-05-26 16:16:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-26 16:17:01', '杨俊杰【经理部总经理】于2020-05-26 16:17:01尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-26 16:18:44', '杨俊杰【经理部总经理】于2020-05-26 16:18:45尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-26 16:20:01', 'WK010于2020-05-26 16:20:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-26 16:20:08', '杨俊杰【经理部总经理】于2020-05-26 16:20:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-26 16:23:25', 'WK010于2020-05-26 16:23:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-26 16:23:30', '杨俊杰【经理部总经理】于2020-05-26 16:23:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-26 16:24:03', 'WK010于2020-05-26 16:24:03登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-26 16:24:06', '杨俊杰【经理部总经理】于2020-05-26 16:24:06尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-26 16:30:10', '经理部杨俊杰总经理杨俊杰于2020-05-26 16:30:10导出了后台用户信息!', '经理部杨俊杰总经理'); -INSERT INTO `operationlog` VALUES ('2020-05-26 16:31:43', '杨俊杰【经理部总经理】于2020-05-26 16:31:43尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-26 16:40:44', 'WK010于2020-05-26 16:40:44登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-26 20:34:36', 'WK010于2020/5/26 20:34:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-26 20:36:08', '经理部总经理杨俊杰于2020/5/26 20:36:08帮助17663721822进行了预订房间操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-26 20:37:02', 'WK010于2020/5/26 20:37:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-26 20:38:19', 'WK010于2020/5/26 20:38:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-26 20:40:43', 'WK010于2020/5/26 20:40:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 08:24:28', 'WK010于2020-05-27 8:24:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 08:25:03', '杨俊杰【经理部总经理】于2020-05-27 8:25:03尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-27 08:26:09', 'WK010于2020-05-27 8:26:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 08:26:14', '杨俊杰【经理部总经理】于2020-05-27 8:26:14尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-27 08:28:59', 'WK010于2020-05-27 8:28:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 08:29:07', '杨俊杰【经理部总经理】于2020-05-27 8:29:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-27 08:31:28', '经理部总经理杨俊杰于2020-05-27 8:31:28帮助TS1001进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-27 08:31:41', '经理部总经理杨俊杰于2020-05-27 8:31:41帮助TS1074进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-27 08:32:01', '经理部总经理杨俊杰于2020-05-27 8:32:01帮助TS1005进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-27 08:32:09', '经理部总经理杨俊杰于2020-05-27 8:32:09帮助TS1003进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-27 08:32:17', '经理部总经理杨俊杰于2020-05-27 8:32:17帮助TS1002进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-27 08:44:38', 'WK010于2020-05-27 8:44:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 08:48:31', '杨俊杰【经理部总经理】于2020-05-27 8:48:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-27 09:04:14', 'WK010于2020-05-27 9:04:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 09:04:19', '杨俊杰【经理部总经理】于2020-05-27 9:04:19尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-27 09:22:30', 'WK010于2020-05-27 9:22:30登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 09:23:23', 'WK010于2020-05-27 9:23:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 09:35:15', 'WK010于2020-05-27 9:35:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 09:35:40', '杨俊杰【经理部总经理】于2020-05-27 9:35:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-27 09:48:21', '经理部总经理杨俊杰于2020-05-27 9:48:21查看了TS1005的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-27 09:48:33', '经理部总经理杨俊杰于2020-05-27 9:48:33查看了TS6128的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-27 09:58:56', 'WK010于2020-05-27 9:58:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 10:00:32', '经理部总经理杨俊杰于2020-05-27 10:00:32查看了TS1387的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-27 10:00:42', '杨俊杰【经理部总经理】于2020-05-27 10:00:42尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-27 10:02:25', 'WK010于2020-05-27 10:02:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 10:02:49', '杨俊杰【经理部总经理】于2020-05-27 10:02:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-27 10:12:14', 'WK010于2020-05-27 10:12:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 10:15:58', 'WK010于2020-05-27 10:15:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 10:16:07', '杨俊杰【经理部总经理】于2020-05-27 10:16:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-27 11:14:46', 'WK010于2020-05-27 11:14:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 11:20:05', '经理部总经理杨俊杰于2020-05-27 11:20:05帮助TS1310进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-27 12:44:43', 'WK010于2020-05-27 12:44:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 12:51:39', '杨俊杰【经理部总经理】于2020-05-27 12:51:39尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-27 15:38:14', 'WK010于2020-05-27 15:38:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 15:38:18', '杨俊杰【经理部总经理】于2020-05-27 15:38:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-27 16:01:25', 'WK010于2020-05-27 16:01:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-28 00:04:20', 'WK010于2020/5/28 0:04:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-22 19:48:48', 'WK010于2020/5/22 19:48:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-25 14:28:11', 'WK010于2020/5/25 14:28:11登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-25 15:25:22', 'WK010于2020/5/25 15:25:22登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-25 15:29:51', '经理部总经理杨俊杰于2020/5/25 15:29:51帮助进行了退房结算操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-25 16:41:59', 'WK010于2020/5/25 16:41:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 23:48:12', 'WK010于2020/5/27 23:48:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-27 23:50:51', '杨俊杰【经理部总经理】于2020/5/27 23:50:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-28 09:40:17', 'WK010于2020-05-28 9:40:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-28 09:40:22', '杨俊杰【经理部总经理】于2020-05-28 9:40:22尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-28 11:25:08', 'WK010于2020-05-28 11:25:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-28 13:39:59', 'WK010于2020-05-28 13:39:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-28 17:23:29', 'WK010于2020/5/28 17:23:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-28 22:32:52', 'WK010于2020/5/28 22:32:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-28 22:33:30', '杨俊杰【经理部总经理】于2020/5/28 22:33:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-29 10:23:33', 'WK010于2020-05-29 10:23:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-29 10:23:43', '杨俊杰【经理部总经理】于2020-05-29 10:23:43尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-29 10:29:53', '杨俊杰【经理部总经理】于2020-05-29 10:29:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-29 10:33:05', '经理部总经理杨俊杰于2020-05-29 10:33:05查看了TS1005的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-29 11:54:32', 'WK010于2020/5/29 11:54:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-29 12:36:46', 'WK010于2020-05-29 12:36:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-29 12:37:11', '杨俊杰【经理部总经理】于2020-05-29 12:37:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-05-31 01:32:29', 'WK010于2020/5/31 1:32:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-05-31 01:33:32', '经理部总经理杨俊杰于2020/5/31 1:33:32帮助进行了预订房间操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-05-31 01:34:08', '经理部总经理杨俊杰于2020/5/31 1:34:08帮助进行了预订房间操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-06-02 11:31:55', 'WK010于2020/6/2 11:31:55登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-02 11:34:03', '经理部总经理杨俊杰于2020/6/2 11:34:03帮助TS1001进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-06-02 15:50:49', 'WK010于2020/6/2 15:50:49登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-02 21:18:47', 'WK010于2020/6/2 21:18:47登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-02 22:38:27', '【】于2020/6/2 22:38:27尝试或成功登入了后台系统!', '【】'); -INSERT INTO `operationlog` VALUES ('2020-06-03 23:13:42', 'WK010于2020/6/3 23:13:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-04 15:48:23', 'WK010于2020/6/4 15:48:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-04 15:50:42', 'WK010于2020/6/4 15:50:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-04 15:51:19', '经理部总经理杨俊杰于2020/6/4 15:51:19查看了TS1043的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-06-04 15:51:26', '经理部总经理杨俊杰于2020/6/4 15:51:26查看了TS1043的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-06-05 11:41:32', 'WK010于2020-06-05 11:41:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-06 20:24:38', 'WK010于2020/6/6 20:24:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-07 01:11:20', 'WK010于2020/6/7 1:11:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-07 22:35:20', 'WK010于2020/6/7 22:35:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-07 22:36:13', '杨俊杰【经理部总经理】于2020/6/7 22:36:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-06-08 15:42:15', 'WK010于2020/06/08 15:42:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-08 22:30:38', 'WK010于2020/6/8 22:30:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-08 22:47:53', 'WK010于2020/6/8 22:47:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-09 08:48:43', 'WK010于2020-6-9 8:48:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-09 09:07:51', 'WK010于2020-6-9 9:07:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-09 10:37:51', 'WK010于2020/6/9 10:37:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-09 14:09:13', 'WK010于2020-6-9 14:09:13登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-09 14:11:32', 'WK010于2020-6-9 14:11:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-09 14:14:08', 'WK010于2020-6-9 14:14:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-09 20:09:23', 'WK010于2020-06-09 20:09:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-10 21:05:07', 'WK010于2020/6/10 21:05:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-10 22:48:10', 'WK010于2020/6/10 22:48:10登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-11 14:34:57', 'WK010于2020/6/11 14:34:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-12 14:41:21', 'WK010于2020/6/12 14:41:21登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-12 21:49:27', 'WK010于2020/6/12 21:49:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-12 22:05:01', 'WK010于2020/6/12 22:05:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-12 22:07:52', 'WK010于2020/6/12 22:07:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-12 22:27:15', 'WK010于2020/6/12 22:27:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-12 22:46:46', 'WK010于2020-06-12 22:46:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-13 17:52:31', 'WK010于2020/6/13 17:52:31登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-13 23:44:19', 'WK010于2020/6/13 23:44:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-14 02:38:42', 'WK010于2020/6/14 上午 02:38:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-14 02:48:37', 'WK010于2020/6/14 上午 02:48:37登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-17 00:02:59', 'WK010于2020/6/17 0:02:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-17 09:46:16', 'WK010于2020/6/17 9:46:16登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-17 09:49:40', '经理部总经理杨俊杰于2020/6/17 9:49:40查看了TS1002的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-06-17 10:48:58', 'WK010于2020/6/17 星期三 10:48:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-18 09:08:04', 'WK010于2020-06-18 09:08:04登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-18 09:58:33', 'WK010于2020-06-18 09:58:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-18 10:02:20', 'WK010于2020/6/18 10:02:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-19 11:58:10', 'WK010于2020/6/19 11:58:10登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-19 12:41:57', 'WK010于2020/6/19 12:41:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-19 12:44:07', 'WK010于2020/6/19 12:44:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-19 13:06:20', 'WK010于2020/6/19 13:06:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-21 22:00:58', 'WK010于2020/6/21 22:00:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-24 15:21:45', 'WK010于2020/6/24 15:21:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-24 15:22:54', '经理部总经理杨俊杰于2020/6/24 15:22:54查看了TS1001的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-06-24 15:27:46', '杨俊杰【经理部总经理】于2020/6/24 15:27:46尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-06-24 15:27:48', '杨俊杰【经理部总经理】于2020/6/24 15:27:48尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-06-24 15:35:41', '经理部总经理杨俊杰于2020/6/24 15:35:41帮助1478452762进行了预订房间操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-06-24 17:33:16', 'WK010于2020/6/24 17:33:16登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-24 17:36:58', '杨俊杰【经理部总经理】于2020/6/24 17:36:58尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-06-24 19:54:11', 'WK010于2020/6/24 19:54:11登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-25 21:13:44', 'WK010于2020/6/25 21:13:44登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-25 21:22:11', 'WK010于2020/6/25 21:22:11登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-25 21:26:35', '经理部总经理杨俊杰于2020/6/25 21:26:35查看了TS1001的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-06-28 08:26:48', 'WK010于2020/6/28 8:26:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-28 09:30:24', 'WK010于2020/6/28 9:30:24登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-28 09:39:51', 'WK010于2020/6/28 9:39:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-28 09:40:25', '经理部总经理杨俊杰于2020/6/28 9:40:25查看了TS1005的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-06-28 09:41:49', '经理部总经理杨俊杰于2020/6/28 9:41:49查看了的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-06-29 15:28:17', 'WK010于2020/6/29 15:28:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-29 15:38:01', 'WK010于2020/6/29 15:38:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-29 15:39:14', '经理部总经理杨俊杰于2020/6/29 15:39:14查看了TS1210的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-06-29 16:06:38', 'WK010于2020/6/29 16:06:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-29 16:34:09', 'WK010于2020/6/29 16:34:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-29 16:34:45', '杨俊杰【经理部总经理】于2020/6/29 16:34:45尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-06-29 16:34:55', '杨俊杰【经理部总经理】于2020/6/29 16:34:55尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-06-29 16:34:56', '杨俊杰【经理部总经理】于2020/6/29 16:34:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-06-29 16:35:05', '杨俊杰【经理部总经理】于2020/6/29 16:35:05尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-06-29 16:36:15', 'WK010于2020/6/29 16:36:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-29 16:36:37', 'WK010于2020/6/29 16:36:37登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-29 16:37:56', '杨俊杰【经理部总经理】于2020/6/29 16:37:59尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-06-29 16:39:51', '杨俊杰【经理部总经理】于2020/6/29 16:39:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-06-29 16:40:19', '杨俊杰【经理部总经理】于2020/6/29 16:40:19尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-06-29 16:42:14', 'WK010于2020/6/29 16:42:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-06-29 16:42:17', '杨俊杰【经理部总经理】于2020/6/29 16:42:17尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-06-30 11:07:05', 'WK010于2020/6/30 11:07:05登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-01 02:51:42', 'WK010于2020/7/1 上午 02:51:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-01 16:30:47', 'WK010于2020/7/1 16:30:47登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-01 16:33:30', '经理部总经理杨俊杰于2020/7/1 16:33:30查看了TS1295的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-07-01 16:33:52', '杨俊杰【经理部总经理】于2020/7/1 16:33:52尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-01 16:35:07', '经理部总经理杨俊杰于2020/7/1 16:35:07查看了TS1005的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-07-02 22:20:47', 'WK010于2020/7/2 22:20:47登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-03 14:01:30', 'WK010于2020/7/3 14:01:30登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-04 13:16:04', 'WK010于2020-7-4 13:16:04登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-06 10:01:25', 'WK010于2020/7/6 10:01:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-06 14:37:01', 'WK010于2020/7/6 14:37:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-06 22:25:34', 'WK010于2020/7/6 22:25:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-07 09:20:48', 'WK010于2020/7/7 9:20:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-07 15:58:30', 'WK010于2020/7/7 星期二 15:58:30登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-08 09:22:37', 'WK010于2020/7/8 9:22:37登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-08 09:23:24', '经理部总经理杨俊杰于2020/7/8 9:23:24查看了TS1997的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-07-09 13:58:40', 'WK010于2020/7/9 13:58:40登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-10 20:44:54', 'WK010于2020/7/10 星期五 20:44:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-10 20:46:39', 'WK010于2020/7/10 星期五 20:46:39登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-11 14:08:56', 'WK010于2020/7/11 14:08:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-12 14:40:49', 'WK010于2020/7/12 14:40:49登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-13 08:29:57', 'WK010于2020/7/13 星期一 8:29:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-13 11:12:20', 'WK010于2020/7/13 星期一 11:12:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-13 11:13:04', 'WK010于2020/7/13 星期一 11:13:04登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-13 14:01:56', 'WK010于2020/7/13 14:01:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-13 20:26:28', 'WK010于2020/7/13 星期一 20:26:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-13 20:38:53', 'WK010于2020/7/13 星期一 20:38:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-13 20:45:06', 'WK010于2020/7/13 星期一 20:45:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-13 21:40:06', 'WK010于2020/7/13 21:40:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-13 21:44:09', 'WK010于2020/7/13 21:44:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-13 22:06:42', 'WK010于2020/7/13 星期一 22:06:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-16 14:37:26', 'WK010于2020-07-16 14:37:26登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-16 15:46:34', '经理部总经理杨俊杰于2020-07-16 15:46:34查看了的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-07-16 20:59:28', 'WK010于2020/7/16 20:59:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-16 21:01:11', 'WK010于2020/7/16 21:01:11登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-16 21:01:29', 'WK010于2020/7/16 21:01:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-16 21:05:42', 'WK010于2020/7/16 21:05:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-16 21:07:03', 'WK010于2020/7/16 21:07:03登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-16 21:07:08', '杨俊杰【经理部总经理】于2020/7/16 21:07:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-16 21:07:26', '杨俊杰【经理部总经理】于2020/7/16 21:07:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-16 21:07:51', '杨俊杰【经理部总经理】于2020/7/16 21:07:51尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-16 21:13:41', '杨俊杰总经理于2020/7/16 21:13:41进行了添加员工操作,员工编号为:WK261!', '杨俊杰总经理'); -INSERT INTO `operationlog` VALUES ('2020-07-16 21:13:48', '杨俊杰总经理于2020/7/16 21:13:48进行了添加员工操作,员工编号为:WK100!', '杨俊杰总经理'); -INSERT INTO `operationlog` VALUES ('2020-07-16 21:14:21', '杨俊杰总经理于2020/7/16 21:14:21进行了上传公告操作!', '杨俊杰总经理'); -INSERT INTO `operationlog` VALUES ('2020-07-16 21:15:17', 'WK010于2020/7/16 21:15:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-16 21:15:27', '杨俊杰【经理部总经理】于2020/7/16 21:15:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-16 21:15:29', '杨俊杰【经理部总经理】于2020/7/16 21:15:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-17 17:12:17', 'WK010于2020/7/17 17:12:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-18 00:09:28', 'WK010于2020/7/18 0:09:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-18 11:22:13', 'WK010于2020/7/18 11:22:13登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-18 14:00:44', '经理部总经理杨俊杰于2020/7/18 14:00:44查看了的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-07-18 19:57:33', 'WK010于2020/7/18 19:57:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-18 20:46:53', 'WK010于2020/7/18 20:46:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-19 01:12:32', 'WK010于2020/7/19 1:12:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-19 01:49:27', 'TS1365于2020/7/19 1:49:27进行了换房,请记得到后台修改消费价格!', '杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-07-19 01:52:50', 'WK010于2020/7/19 1:52:50登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-19 12:48:02', 'WK010于2020/7/19 12:48:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-19 12:48:07', '杨俊杰【经理部总经理】于2020/7/19 12:48:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-19 12:48:11', '杨俊杰【经理部总经理】于2020/7/19 12:48:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-19 13:12:14', 'WK010于2020/7/19 13:12:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-19 13:12:29', '杨俊杰【经理部总经理】于2020/7/19 13:12:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-20 10:12:11', 'WK010于2020-7-20 10:12:11登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-23 20:53:12', 'WK010于2020-07-23 ?? 8:53:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-24 11:29:12', 'WK010于2020-07-24 11:29:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-24 11:53:01', 'WK010于2020-07-24 11:53:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-24 11:53:31', '杨俊杰【经理部总经理】于2020-07-24 11:53:31尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-24 11:53:32', '杨俊杰【经理部总经理】于2020-07-24 11:53:32尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-24 11:53:40', '杨俊杰【经理部总经理】于2020-07-24 11:53:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-24 15:18:21', 'WK010于2020/7/24 15:18:21登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-24 17:06:40', 'WK010于2020-07-24 17:06:40登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-24 17:36:10', 'WK010于2020-7-24 17:36:10登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-24 21:42:19', 'WK010于2020-7-24 21:42:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-25 11:07:58', 'WK010于2020/07/25 11:07:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-26 05:09:52', 'WK010于2020/7/26 5:09:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-26 05:11:02', '经理部总经理杨俊杰于2020/7/26 5:11:02查看了TS1256的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-07-26 05:11:06', '经理部总经理杨俊杰于2020/7/26 5:11:06查看了TS1266的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-07-26 05:11:16', '经理部总经理杨俊杰于2020/7/26 5:11:16查看了TS1239的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-07-26 13:58:10', 'WK010于2020/7/26 13:58:10登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 09:12:02', 'WK010于2020-7-27 9:12:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 09:14:27', 'WK010于2020-7-27 9:14:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 09:59:54', 'WK010于2020-7-27 9:59:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 10:02:48', 'WK010于2020-7-27 10:02:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 10:33:24', 'WK010于2020-07-27 10:33:24登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 11:00:36', 'WK010于2020-7-27 11:00:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 11:10:13', 'WK010于2020-7-27 11:10:13登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 11:11:54', 'WK010于2020-7-27 11:11:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 11:17:18', 'WK010于2020-7-27 11:17:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 11:17:27', 'WK010于2020-7-27 11:17:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 11:57:09', 'WK010于2020-7-27 11:57:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 12:50:55', 'WK010于2020-7-27 12:50:55登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 12:56:30', 'WK010于2020-7-27 12:56:30登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 12:58:41', 'WK010于2020-7-27 12:58:41登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 12:59:46', 'WK010于2020-7-27 12:59:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 13:00:42', 'WK010于2020-7-27 13:00:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-13 14:05:45', 'WK010于2020/7/13 14:05:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-13 14:10:10', 'WK010于2020/7/13 14:10:10登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-13 14:16:18', 'WK010于2020/7/13 14:16:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-17 17:13:57', 'WK010于2020/7/17 17:13:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 13:01:33', 'WK010于2020-7-27 13:01:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 13:03:21', 'WK010于2020-7-27 13:03:21登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 13:04:25', 'WK010于2020-7-27 13:04:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 13:06:38', 'WK010于2020-7-27 13:06:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 13:08:12', 'WK010于2020-7-27 13:08:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 13:14:52', 'WK010于2020-7-27 13:14:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 13:33:30', 'WK010于2020-7-27 13:33:30登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 13:35:33', 'WK010于2020-7-27 13:35:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 13:42:08', 'WK010于2020-7-27 13:42:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 13:42:56', 'WK010于2020-7-27 13:42:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 13:44:06', 'WK010于2020-7-27 13:44:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 13:45:25', 'WK010于2020-7-27 13:45:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 14:45:43', 'WK010于2020-7-27 14:45:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 14:47:15', 'WK010于2020-7-27 14:47:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 14:47:49', 'WK010于2020-7-27 14:47:49登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 15:22:43', 'WK010于2020-7-27 15:22:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 17:05:28', 'WK010于2020-7-27 17:05:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-27 17:44:56', 'WK010于2020-7-27 17:44:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-28 09:50:34', 'WK010于2020/07/28 9:50:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-28 09:51:32', '经理部总经理杨俊杰于2020/07/28 9:51:32帮助TS1862进行了消费商品:香皂操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-07-28 09:51:39', '经理部总经理杨俊杰于2020/07/28 9:51:39帮助TS1862进行了消费商品:香皂操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-07-28 09:51:54', '经理部总经理杨俊杰于2020/07/28 9:51:54帮助TS1862进行了消费商品:青岛啤酒操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-07-28 10:53:19', 'WK010于2020/7/28 10:53:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-29 14:34:01', 'WK010于2020-7-29 14:34:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-29 14:39:59', 'WK010于2020-7-29 14:39:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-29 14:53:12', 'WK010于2020-7-29 14:53:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-29 20:55:15', 'WK010于2020-7-29 20:55:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-29 20:55:29', '杨俊杰【经理部总经理】于2020-7-29 20:55:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-29 20:56:07', '杨俊杰【经理部总经理】于2020-7-29 20:56:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-29 20:59:01', 'WK010于2020-7-29 20:59:01登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-07-29 20:59:20', '杨俊杰【经理部总经理】于2020-7-29 20:59:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-30 17:29:24', 'WK010于2020-7-30 17:29:24登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-02 14:18:07', 'WK010于2020/8/2 14:18:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-03 15:34:07', 'WK010于2020/8/3 15:34:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-03 15:59:45', 'WK010于2020/8/3 15:59:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-04 10:26:19', 'WK010于2020/8/4 10:26:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-04 10:27:19', 'WK010于2020/8/4 10:27:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-04 10:29:25', 'WK010于2020/8/4 10:29:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-04 11:39:25', 'WK010于2020/8/4 11:39:25登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-04 11:41:38', '经理部总经理杨俊杰于2020/8/4 11:41:38查看了TS1084的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-04 11:45:11', '经理部总经理杨俊杰于2020/8/4 11:45:11帮助ts1389进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-04 11:45:39', '经理部总经理杨俊杰于2020/8/4 11:45:39帮助TS1043进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-05 16:48:48', 'WK010于2020/8/5 16:48:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-05 16:50:24', '经理部总经理杨俊杰于2020/8/5 16:50:24帮助进行了预订房间操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-05 17:01:38', 'WK010于2020-8-5 17:01:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-05 17:33:48', 'WK010于2020/8/5 17:33:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-05 17:40:32', 'WK010于2020/8/5 17:40:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-06 16:51:02', 'WK010于2020/8/6 16:51:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-06 19:46:18', 'WK010于2020/8/6 19:46:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-07 14:58:29', 'WK010于2020/8/7 14:58:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-07 15:34:55', 'WK010于2020/8/7 15:35:26登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-07 15:45:15', 'WK010于2020/8/7 15:45:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-07 17:19:12', 'WK010于2020/8/7 17:19:12登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-07 17:31:59', 'WK010于2020/8/7 17:31:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-08 14:15:34', 'WK010于2020/8/8 14:15:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-08 15:58:13', 'WK010于2020/8/8 15:58:13登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-10 11:45:09', 'WK010于2020/8/10 11:45:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-11 11:40:06', 'WK010于2020/8/11 11:40:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-11 15:18:40', 'WK010于2020/8/11 15:18:40登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-11 15:56:19', 'WK010于2020/8/11 15:56:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-11 17:28:45', 'WK010于2020-08-11 17:28:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-13 12:58:22', 'WK010于2020-08-13 12:58:22登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-13 12:59:51', '经理部总经理杨俊杰于2020-08-13 12:59:51查看了TS1914的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-13 18:04:42', 'WK010于2020/8/13 星期四 18:04:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-14 11:48:37', 'WK010于2020/8/14 11:48:37登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-14 11:52:45', 'WK010于2020/8/14 11:52:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:02:23', 'WK010于2020/8/14 12:02:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:04:37', 'WK010于2020/8/14 12:04:37登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:05:00', '杨俊杰【经理部总经理】于2020/8/14 12:05:00尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:05:09', '杨俊杰【经理部总经理】于2020/8/14 12:05:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:31:13', 'WK010于2020/8/14 12:31:13登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:31:26', '杨俊杰【经理部总经理】于2020/8/14 12:31:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:31:32', '杨俊杰【经理部总经理】于2020/8/14 12:31:32尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:33:20', '杨俊杰【经理部总经理】于2020/8/14 12:33:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 15:04:42', 'WK010于2020/8/14 15:04:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-14 15:06:08', '杨俊杰【经理部总经理】于2020/8/14 15:06:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 15:30:07', '杨俊杰【经理部总经理】于2020/8/14 15:30:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 15:30:27', '杨俊杰【经理部总经理】于2020/8/14 15:30:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 15:30:30', '杨俊杰【经理部总经理】于2020/8/14 15:30:30尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-15 12:01:06', 'WK010于2020/8/15 12:01:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-15 12:18:11', '经理部总经理杨俊杰于2020/8/15 12:18:11帮助TS1005进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-15 12:21:19', 'WK010于2020/8/15 12:21:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-15 12:22:28', '经理部总经理杨俊杰于2020/8/15 12:22:28帮助TS1571进行了入住操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-15 14:24:59', 'WK010于2020/8/15 14:24:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-15 14:58:49', 'WK010于2020/8/15 14:58:49登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-15 15:13:34', '经理部总经理杨俊杰于2020/8/15 15:13:34查看了的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-15 15:26:35', '经理部总经理杨俊杰于2020/8/15 15:26:35帮助123进行了预订房间操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-15 15:46:43', 'WK010于2020/8/15 15:46:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-15 17:36:07', '经理部总经理杨俊杰于2020/8/15 17:36:07查看了TS1081的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-15 23:05:42', 'WK010于2020/8/15 23:05:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-17 15:37:38', 'WK010于2020/8/17 15:37:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:13:59', 'WK010于2020/8/18 16:13:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:16:37', '经理部总经理杨俊杰于2020/8/18 16:16:37查看了TS1003的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:23:39', '杨俊杰【经理部总经理】于2020/8/18 16:23:39尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:24:02', '杨俊杰【经理部总经理】于2020/8/18 16:24:02尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:24:34', '杨俊杰【经理部总经理】于2020/8/18 16:24:34尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-07-27 14:13:30', 'WK010于2020-7-27 14:13:30登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-14 11:27:15', 'WK010于2020/8/14 11:27:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-18 09:27:26', 'WK010于2020/8/18 9:27:26登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-18 09:31:18', '杨俊杰【经理部总经理】于2020/8/18 9:31:18尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 17:00:36', 'WK010于2020-08-18 17:00:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 15:54:56', 'WK010于2020/8/19 15:54:56登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 15:56:03', 'WK010于2020/8/19 15:56:03登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 17:14:03', 'WK010于2020/8/19 17:14:03登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 17:15:36', '经理部总经理杨俊杰于2020/8/19 17:15:36帮助15810825328进行了预订房间操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-19 17:16:34', 'WK010于2020/8/19 17:16:34登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 17:25:54', 'WK010于2020/8/19 17:25:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-29 16:55:22', 'WK010于2020-8-29 16:55:22登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-29 16:57:18', '经理部总经理杨俊杰于2020-8-29 16:57:18查看了TS1914的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-18 12:35:44', 'WK010于2020/9/18 12:35:44登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-19 17:34:36', 'WK010于2020/9/19 17:34:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-20 13:48:11', 'WK010于2020-09-20 13:48:11登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-22 08:11:32', 'WK010于2020/9/22 8:11:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-22 08:11:58', '杨俊杰【经理部总经理】于2020/9/22 8:11:58尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-09-22 08:12:08', '杨俊杰【经理部总经理】于2020/9/22 8:12:08尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 11:58:27', 'WK010于2020/8/14 11:58:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:03:11', '杨俊杰【经理部总经理】于2020/8/14 12:03:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:03:20', '杨俊杰【经理部总经理】于2020/8/14 12:03:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:12:45', 'WK010于2020/8/14 12:12:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:13:09', '杨俊杰【经理部总经理】于2020/8/14 12:13:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:31:50', '杨俊杰【经理部总经理】于2020/8/14 12:31:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:31:56', '杨俊杰【经理部总经理】于2020/8/14 12:31:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 12:32:04', '杨俊杰【经理部总经理】于2020/8/14 12:32:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 14:17:44', 'WK010于2020/8/14 14:17:44登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-14 14:19:49', '杨俊杰【经理部总经理】于2020/8/14 14:19:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-14 14:37:06', '总经理杨俊杰于2020/8/14 14:37:06进行资产录入,资产编号为:CN8051', '总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-18 14:53:19', 'WK010于2020/8/18 14:53:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-18 14:53:38', '杨俊杰【经理部总经理】于2020/8/18 14:53:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 17:01:40', 'WK010于2020/8/18 17:01:40登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-18 17:40:56', '杨俊杰【经理部总经理】于2020/8/18 17:40:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 17:42:38', '杨俊杰【经理部总经理】于2020/8/18 17:42:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:31:35', '杨俊杰【经理部总经理】于2020/8/18 16:31:35尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:35:53', 'wk010于2020/8/18 16:35:53登入了系统!', 'wk010'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:36:29', '杨俊杰【经理部总经理】于2020/8/18 16:36:29尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:36:40', '杨俊杰【经理部总经理】于2020/8/18 16:36:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:36:40', '杨俊杰【经理部总经理】于2020/8/18 16:36:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:36:54', '杨俊杰【经理部总经理】于2020/8/18 16:36:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:38:33', 'WK011于2020/8/18 16:38:33登入了系统!', 'WK011'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:39:11', '六月【酒店部职员】于2020/8/18 16:39:11尝试或成功登入了后台系统!', '六月【酒店部职员】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:40:31', '六月【酒店部职员】于2020/8/18 16:40:31尝试或成功登入了后台系统!', '六月【酒店部职员】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:47:06', '六月【酒店部职员】于2020/8/18 16:47:06尝试或成功登入了后台系统!', '六月【酒店部职员】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:48:44', '六月【酒店部职员】于2020/8/18 16:48:44尝试或成功登入了后台系统!', '六月【酒店部职员】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 16:54:53', '六月【酒店部职员】于2020/8/18 16:54:53尝试或成功登入了后台系统!', '六月【酒店部职员】'); -INSERT INTO `operationlog` VALUES ('2020-08-18 17:31:27', '酒店部职员六月于2020/8/18 17:31:27帮助TS1365进行了退房结算操作!', '酒店部职员六月'); -INSERT INTO `operationlog` VALUES ('2020-08-18 23:40:23', 'WK010于2020/8/18 23:40:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 09:37:05', 'WK010于2020/8/19 9:37:05登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 09:47:55', '经理部总经理杨俊杰于2020/8/19 9:47:55帮助18757523769进行了预订房间操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-19 10:05:49', '杨俊杰【经理部总经理】于2020/8/19 10:05:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-19 10:07:54', 'WK010于2020/8/19 10:07:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 10:08:11', '杨俊杰【经理部总经理】于2020/8/19 10:08:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-19 10:15:56', '杨俊杰【经理部总经理】于2020/8/19 10:15:56尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-19 10:22:07', '杨俊杰【经理部总经理】于2020/8/19 10:22:07尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-19 10:36:04', 'shenyou于2020/8/19 10:36:04登入了系统!', 'shenyou'); -INSERT INTO `operationlog` VALUES ('2020-08-19 10:36:16', '申酉【经理部总经理】于2020/8/19 10:36:16尝试或成功登入了后台系统!', '申酉【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-19 10:52:28', 'WK010于2020/8/19 10:52:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 11:01:43', 'WK010于2020/8/19 11:01:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 11:38:29', 'WK010于2020/8/19 11:38:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 11:44:51', '经理部总经理杨俊杰于2020/8/19 11:44:51查看了TS1008的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-19 15:29:19', 'WK010于2020/8/19 15:29:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 15:38:13', 'WK010于2020/8/19 15:38:13登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 15:38:49', '杨俊杰【经理部总经理】于2020/8/19 15:38:49尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-19 15:43:27', '杨俊杰【经理部总经理】于2020/8/19 15:43:27尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-19 15:47:09', '杨俊杰【经理部总经理】于2020/8/19 15:47:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-19 16:01:01', '经理部杨俊杰总经理杨俊杰于2020/8/19 16:01:01导出了后台用户信息!', '经理部杨俊杰总经理'); -INSERT INTO `operationlog` VALUES ('2020-08-19 16:01:47', 'WK011于2020/8/19 16:01:47登入了系统!', 'WK011'); -INSERT INTO `operationlog` VALUES ('2020-08-19 16:02:17', '六月【酒店部职员】于2020/8/19 16:02:17尝试或成功登入了后台系统!', '六月【酒店部职员】'); -INSERT INTO `operationlog` VALUES ('2020-08-19 16:03:54', '酒店部六月职员六月于2020/8/19 16:03:54导出了后台用户信息!', '酒店部六月职员'); -INSERT INTO `operationlog` VALUES ('2020-08-19 16:09:18', '六月【酒店部职员】于2020/8/19 16:09:18尝试或成功登入了后台系统!', '六月【酒店部职员】'); -INSERT INTO `operationlog` VALUES ('2020-08-19 16:13:33', '六月【酒店部职员】于2020/8/19 16:13:33尝试或成功登入了后台系统!', '六月【酒店部职员】'); -INSERT INTO `operationlog` VALUES ('2020-08-19 16:51:33', '六月【酒店部职员】于2020/8/19 16:51:33尝试或成功登入了后台系统!', '六月【酒店部职员】'); -INSERT INTO `operationlog` VALUES ('2020-08-19 16:57:43', '六月【酒店部职员】于2020/8/19 16:57:43尝试或成功登入了后台系统!', '六月【酒店部职员】'); -INSERT INTO `operationlog` VALUES ('2020-08-19 18:32:41', 'WK010于2020/8/19 18:32:41登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 18:47:35', 'WK011于2020/8/19 18:47:35登入了系统!', 'WK011'); -INSERT INTO `operationlog` VALUES ('2020-08-19 18:48:44', 'lien于2020/8/19 18:48:44登入了系统!', 'lien'); -INSERT INTO `operationlog` VALUES ('2020-08-19 23:15:27', 'WK010于2020/8/19 23:15:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-19 23:15:48', '杨俊杰【经理部总经理】于2020/8/19 23:15:48尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-19 23:40:21', 'WK010于2020/8/19 23:40:21登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-20 09:05:38', 'WK010于2020/8/20 9:05:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-20 09:05:45', '杨俊杰【经理部总经理】于2020/8/20 9:05:45尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-20 09:13:13', '杨俊杰【经理部总经理】于2020/8/20 9:13:13尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-20 09:36:36', '杨俊杰总经理于2020/8/20 9:36:36进行了添加员工操作,员工编号为:WK388!', '杨俊杰总经理'); -INSERT INTO `operationlog` VALUES ('2020-08-20 09:38:49', 'WK010于2020/8/20 9:38:49登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-20 09:38:57', '杨俊杰【经理部总经理】于2020/8/20 9:38:57尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-20 10:28:24', '杨俊杰【经理部总经理】于2020/8/20 10:28:24尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-20 10:29:42', 'WK010于2020/8/20 10:29:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-20 10:30:20', '杨俊杰【经理部总经理】于2020/8/20 10:30:20尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-20 10:53:26', '杨俊杰【经理部总经理】于2020/8/20 10:53:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-20 11:51:23', 'WK010于2020/8/20 11:51:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-20 11:51:36', '杨俊杰【经理部总经理】于2020/8/20 11:51:36尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-20 16:14:58', 'WK010于2020/8/20 16:14:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-20 16:21:20', 'WK010于2020/8/20 16:21:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-20 16:33:58', 'WK010于2020/8/20 16:33:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-20 16:35:33', 'WK011于2020/8/20 16:35:33登入了系统!', 'WK011'); -INSERT INTO `operationlog` VALUES ('2020-08-20 16:39:02', 'WK011于2020/8/20 16:39:02登入了系统!', 'WK011'); -INSERT INTO `operationlog` VALUES ('2020-08-21 10:33:02', 'WK010于2020/8/21 10:33:02登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-21 14:26:32', 'WK010于2020/8/21 14:26:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-21 14:30:30', '经理部总经理杨俊杰于2020/8/21 14:30:30帮助TS1571进行了消费商品:毛巾操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-21 14:31:34', '经理部总经理杨俊杰于2020/8/21 14:31:34帮助TS1571进行了消费商品:毛巾操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-21 14:37:35', '经理部总经理杨俊杰于2020/8/21 14:37:35帮助TS1571进行了消费商品:片(原味)操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-21 14:40:18', '经理部总经理杨俊杰于2020/8/21 14:40:18帮助TS1571进行了消费商品:WAHAHA操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-21 15:19:10', 'WK010于2020/8/21 15:19:10登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-21 17:02:54', 'WK010于2020/8/21 星期五 17:02:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-22 09:50:51', 'WK010于2020/8/22 9:50:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-22 12:02:59', 'WK010于2020/8/22 12:02:59登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-22 12:16:17', 'WK010于2020/8/22 12:16:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-22 12:24:52', 'WK010于2020/8/22 12:24:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-22 14:27:49', 'WK010于2020/8/22 14:27:49登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-22 14:44:39', '经理部总经理杨俊杰于2020/8/22 14:44:39帮助TS1005进行了消费商品:aaa操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-22 15:22:24', 'WK010于2020/8/22 15:22:24登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-22 15:22:40', '杨俊杰【经理部总经理】于2020/8/22 15:22:40尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-22 15:26:14', '总经理杨俊杰于2020/8/22 15:26:14进行资产录入,资产编号为:CN1262', '总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-22 15:27:25', '总经理杨俊杰于2020/8/22 15:27:25进行资产录入,资产编号为:', '总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-22 15:46:41', '总经理杨俊杰于2020/8/22 15:46:41进行资产录入,资产编号为:CN1631', '总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-08-23 17:01:18', 'WK010于2020/8/23 17:01:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-23 17:03:28', '杨俊杰【经理部总经理】于2020/8/23 17:03:28尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-23 17:03:54', 'WK010于2020/8/23 17:03:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-23 17:04:18', 'WK010于2020/8/23 17:04:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-23 17:04:26', '杨俊杰【经理部总经理】于2020/8/23 17:04:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-23 17:06:08', 'WK010于2020/8/23 17:06:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-23 17:06:47', '杨俊杰【经理部总经理】于2020/8/23 17:06:47尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-24 09:23:18', 'WK010于2020/8/24 9:23:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-24 09:23:26', '杨俊杰【经理部总经理】于2020/8/24 9:23:26尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-24 10:04:37', 'WK010于2020/8/24 10:04:37登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-24 10:04:50', '杨俊杰【经理部总经理】于2020/8/24 10:04:50尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-24 10:35:33', 'WK010于2020/8/24 10:35:33登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-24 11:08:28', 'WK010于2020/8/24 11:08:28登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-24 11:12:16', 'WK010于2020/8/24 11:12:16登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-24 16:40:41', 'WK010于2020/8/24 16:40:41登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-25 11:33:24', 'WK010于2020/8/25 11:33:24登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-27 12:08:42', 'WK010于2020/8/27 12:08:42登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-27 12:12:08', 'WK010于2020/8/27 12:12:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-27 22:50:17', 'WK010于2020-08-27 22:50:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-08-27 22:51:22', '杨俊杰【经理部总经理】于2020-08-27 22:51:22尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-27 22:51:24', '杨俊杰【经理部总经理】于2020-08-27 22:51:24尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-08-28 16:08:23', 'WK010于2020-08-28 16:08:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-01 11:07:00', 'WK010于2020-09-01 11:07:00登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-01 11:12:16', 'WK010于2020-09-01 11:12:16登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-01 11:13:14', 'WK010于2020-09-01 11:13:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-01 11:17:19', 'WK010于2020-09-01 11:17:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-01 11:22:38', 'WK010于2020-09-01 11:22:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-01 15:52:08', 'WK010于2020-09-01 15:52:08登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-02 13:03:29', 'WK010于2020/9/2 13:03:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-02 13:04:37', '经理部总经理杨俊杰于2020/9/2 13:04:37查看了TS1002的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-02 13:06:31', '经理部总经理杨俊杰于2020/9/2 13:06:31查看了TS1001的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-02 13:06:46', '经理部总经理杨俊杰于2020/9/2 13:06:46查看了TS1002的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-02 13:07:39', '经理部总经理杨俊杰于2020/9/2 13:07:39查看了TS1002的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-02 13:07:51', '经理部总经理杨俊杰于2020/9/2 13:07:51查看了TS1001的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-02 13:08:38', '经理部总经理杨俊杰于2020/9/2 13:08:38查看了TS1002的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-02 13:08:45', '经理部总经理杨俊杰于2020/9/2 13:08:45查看了TS1001的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-02 13:08:52', '经理部总经理杨俊杰于2020/9/2 13:08:52查看了TS1003的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-02 13:10:15', 'WK010于2020/9/2 13:10:15登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-03 10:48:52', 'WK010于2020/9/3 10:48:52登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-05 16:13:00', 'WK010于2020/09/05 16:13:00登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-06 14:04:53', 'WK010于2020/9/6 14:04:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-07 08:20:00', 'WK010于2020/9/7 8:20:00登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-07 08:20:53', '杨俊杰【经理部总经理】于2020/9/7 8:20:53尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-09-07 10:12:09', 'WK010于2020/9/7 10:12:09登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-07 10:17:00', 'WK010于2020/9/7 10:17:00登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-07 10:17:04', '杨俊杰【经理部总经理】于2020/9/7 10:17:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-09-07 10:21:33', '经理部总经理杨俊杰于2020/9/7 10:21:33查看了的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-09 11:56:53', 'WK010于2020-9-9 11:56:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-10 08:48:19', 'WK010于2020/9/10 8:48:19登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-12 17:10:23', 'WK010于2020/9/12 17:10:23登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-14 10:01:54', 'WK010于2020-09-14 10:01:54登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-14 14:07:17', 'WK010于2020-09-14 14:07:17登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-14 14:10:41', '杨俊杰【经理部总经理】于2020-09-14 14:10:41尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-09-14 14:31:27', 'WK010于2020-09-14 14:31:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-14 14:31:54', '杨俊杰【经理部总经理】于2020-09-14 14:31:54尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-09-14 14:45:16', 'WK010于2020-09-14 14:45:16登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-16 11:37:06', 'WK010于2020/9/16 11:37:06登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-16 11:39:46', '杨俊杰【经理部总经理】于2020/9/16 11:39:46尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-09-16 11:47:07', 'WK010于2020/9/16 11:47:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-16 11:48:11', '经理部总经理杨俊杰于2020/9/16 11:48:11查看了的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-16 11:49:09', '杨俊杰【经理部总经理】于2020/9/16 11:49:09尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-09-16 13:00:14', 'WK010于2020/9/16 13:00:14登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-16 13:00:38', '杨俊杰【经理部总经理】于2020/9/16 13:00:38尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-09-16 13:01:53', 'WK010于2020/9/16 13:01:53登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-16 13:02:47', '杨俊杰【经理部总经理】于2020/9/16 13:02:47尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-09-16 13:03:38', 'WK010于2020/9/16 13:03:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-16 13:04:14', '杨俊杰【经理部总经理】于2020/9/16 13:04:14尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-09-16 13:11:48', 'WK010于2020/9/16 13:11:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-16 13:12:11', '杨俊杰【经理部总经理】于2020/9/16 13:12:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-09-16 13:16:58', '经理部总经理杨俊杰于2020/9/16 13:16:58帮助123进行了预订房间操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-16 13:49:37', 'WK010于2020/9/16 13:49:37登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-16 13:50:04', '杨俊杰【经理部总经理】于2020/9/16 13:50:04尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-09-16 13:52:32', '经理部总经理杨俊杰于2020/9/16 13:52:32查看了的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-16 18:46:07', 'WK010于2020/9/16 18:46:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-17 09:42:18', 'WK010于2020/9/17 9:42:18登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-17 09:45:05', '经理部总经理杨俊杰于2020/9/17 9:45:05查看了TS1002的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-17 09:45:30', '经理部总经理杨俊杰于2020/9/17 9:45:30查看了TS1005的证件号码!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-17 09:49:55', '经理部总经理杨俊杰于2020/9/17 9:49:55帮助TS1998进行了消费商品:三只松鼠零食大礼包操作!', '经理部总经理杨俊杰'); -INSERT INTO `operationlog` VALUES ('2020-09-17 11:59:45', 'WK010于2020-09-17 11:59:45登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-17 12:04:32', 'WK010于2020-09-17 12:04:32登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-17 16:06:22', 'WK010于2020-09-17 16:06:22登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-09-23 13:43:38', 'WK010于2020/9/23 13:43:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 14:42:49', 'WK010于2020/11/11 14:42:49登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 14:44:11', '杨俊杰【经理部总经理】于2020/11/11 14:44:11尝试或成功登入了后台系统!', '杨俊杰【经理部总经理】'); -INSERT INTO `operationlog` VALUES ('2020-11-11 14:54:20', 'WK010于2020/11/11 14:54:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 14:54:55', 'WK010于2020/11/11 14:54:55登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 16:24:29', 'WK010于2020/11/11 16:24:29登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 17:48:55', 'WK010于2020/11/11 17:48:55登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 17:49:46', 'WK010于2020/11/11 17:49:46登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 18:00:20', 'WK010于2020/11/11 18:00:20登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 18:13:58', 'WK010于2020/11/11 18:13:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 18:25:04', 'WK010于2020/11/11 18:25:04登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 18:41:58', 'WK010于2020/11/11 18:41:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 20:50:58', 'WK010于2020/11/11 20:50:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 20:55:36', 'WK010于2020/11/11 20:55:36登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 20:56:04', 'WK010于2020/11/11 20:56:04登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 20:56:48', 'WK010于2020/11/11 20:56:48登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 20:57:57', 'WK010于2020/11/11 20:57:57登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 20:58:58', 'WK010于2020/11/11 20:58:58登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 20:59:43', 'WK010于2020/11/11 20:59:43登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 21:03:07', 'WK010于2020/11/11 21:03:07登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 21:09:51', 'WK010于2020/11/11 21:09:51登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-11 23:13:27', 'WK010于2020/11/11 23:13:27登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-12 07:29:31', 'WK010于2020-11-12 07:29:31登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-12 09:33:38', 'WK010于2020-11-12 09:33:38登入了系统!', 'WK010'); -INSERT INTO `operationlog` VALUES ('2020-11-12 09:43:15', 'WK010于2020-11-12 9:43:15登入了系统!', 'WK010'); - --- ---------------------------- --- Table structure for passporttype --- ---------------------------- -DROP TABLE IF EXISTS `passporttype`; -CREATE TABLE `passporttype` ( - `PassportId` int NOT NULL, - `PassportName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of passporttype --- ---------------------------- -INSERT INTO `passporttype` VALUES (0, '中国居民身份证'); -INSERT INTO `passporttype` VALUES (1, '港澳通行证'); -INSERT INTO `passporttype` VALUES (2, '台胞证'); -INSERT INTO `passporttype` VALUES (3, '军官证'); -INSERT INTO `passporttype` VALUES (4, '外国护照'); - --- ---------------------------- --- Table structure for reser --- ---------------------------- -DROP TABLE IF EXISTS `reser`; -CREATE TABLE `reser` ( - `ReserId` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, - `CustoName` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, - `CustoTel` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, - `ReserWay` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, - `ReserRoom` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, - `ReserDate` date NULL DEFAULT NULL, - `ReserEndDate` date NULL DEFAULT NULL, - `ReserRemark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of reser --- ---------------------------- -INSERT INTO `reser` VALUES ('R2726', '杨', '1478452762', '前台', 'BD001', '2020-06-24', '2020-06-24', ''); -INSERT INTO `reser` VALUES ('R7275', '', '', '前台', 'ZT006', '2020-05-31', '2020-05-31', ''); -INSERT INTO `reser` VALUES ('R6583', '123', '123', '前台', 'ZT006', '2020-09-16', '2020-09-16', ''); -INSERT INTO `reser` VALUES ('R8700', 'lili', '123', '前台', 'BS008', '2020-08-15', '2020-08-15', '无'); -INSERT INTO `reser` VALUES ('R6761', '边云飞', '15810825328', '前台', 'HD008', '2020-08-19', '2020-08-22', '测试'); - --- ---------------------------- --- Table structure for room --- ---------------------------- -DROP TABLE IF EXISTS `room`; -CREATE TABLE `room` ( - `RoomNo` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `RoomType` int NOT NULL DEFAULT 1, - `CustoNo` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, - `CheckTime` datetime(0) NULL DEFAULT NULL, - `CheckOutTime` datetime(0) NULL DEFAULT NULL, - `RoomStateId` int NOT NULL DEFAULT 0, - `RoomMoney` decimal(10, 2) NULL DEFAULT 300.00, - `PersonNum` varchar(3) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, - `RoomPosition` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of room --- ---------------------------- -INSERT INTO `room` VALUES ('BD001', 0, NULL, NULL, '2020-08-18 17:31:22', 3, 300.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('BD002', 0, 'TS1008', '2020-08-19 09:44:18', NULL, 1, 300.00, '1', 'A层'); -INSERT INTO `room` VALUES ('BD003', 0, NULL, NULL, '2020-08-15 16:58:32', 3, 300.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('BD004', 0, NULL, NULL, '2020-05-04 13:04:48', 0, 300.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('BD005', 0, 'TS1005', '2020-08-15 12:17:56', NULL, 1, 300.00, '1', 'A层'); -INSERT INTO `room` VALUES ('BD006', 0, NULL, NULL, '2020-05-04 13:07:56', 0, 300.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('BD007', 0, NULL, NULL, '2020-05-27 08:32:18', 0, 300.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('BD008', 0, NULL, NULL, NULL, 0, 300.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('BD009', 0, NULL, NULL, '2020-06-02 11:35:07', 0, 300.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('BD010', 0, NULL, NULL, '2020-05-26 15:25:29', 0, 300.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('BS001', 1, 'TS1571', '2020-08-15 12:22:24', NULL, 1, 425.00, '10', 'A层'); -INSERT INTO `room` VALUES ('BS002', 1, NULL, NULL, '2020-04-06 20:24:33', 0, 425.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('BS003', 1, NULL, NULL, '2020-04-06 19:59:19', 0, 425.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('BS004', 1, NULL, NULL, '2018-12-26 20:11:26', 0, 425.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('BS005', 1, NULL, NULL, '2020-04-07 14:37:32', 2, 425.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('BS006', 1, 'TS1998', '2020-08-21 15:21:02', NULL, 1, 425.00, '1', 'A层'); -INSERT INTO `room` VALUES ('BS007', 1, NULL, NULL, '2020-05-27 08:32:10', 0, 425.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('BS008', 1, NULL, NULL, NULL, 4, 425.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('BS009', 1, NULL, NULL, NULL, 0, 425.00, NULL, 'A层'); -INSERT INTO `room` VALUES ('HD001', 2, NULL, NULL, NULL, 0, 625.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HD002', 2, NULL, NULL, NULL, 0, 625.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HD003', 2, NULL, NULL, '2020-05-27 08:31:28', 0, 625.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HD004', 2, NULL, NULL, NULL, 0, 625.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HD005', 2, NULL, NULL, NULL, 0, 625.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HD006', 2, NULL, NULL, NULL, 0, 625.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HD007', 2, NULL, NULL, NULL, 0, 625.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HD008', 2, NULL, NULL, NULL, 4, 625.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HD009', 2, NULL, NULL, NULL, 0, 625.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HS001', 3, NULL, NULL, '2020-04-07 14:48:41', 0, 600.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HS002', 3, NULL, NULL, NULL, 0, 660.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HS003', 3, NULL, NULL, NULL, 0, 660.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HS004', 3, NULL, NULL, NULL, 0, 660.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HS005', 3, NULL, NULL, '2018-12-25 08:44:07', 0, 660.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HS006', 3, NULL, NULL, NULL, 0, 660.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HS007', 3, NULL, NULL, NULL, 0, 660.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('HS008', 3, NULL, NULL, NULL, 0, 660.00, NULL, 'B层'); -INSERT INTO `room` VALUES ('QL001', 4, NULL, NULL, '2018-12-26 09:51:40', 0, 845.00, NULL, 'C层'); -INSERT INTO `room` VALUES ('QL002', 4, NULL, NULL, NULL, 0, 845.00, NULL, 'C层'); -INSERT INTO `room` VALUES ('QL003', 4, 'TS1043', '2020-08-04 11:45:36', NULL, 1, 845.00, '2', 'C层'); -INSERT INTO `room` VALUES ('QL004', 4, NULL, NULL, NULL, 0, 845.00, NULL, 'C层'); -INSERT INTO `room` VALUES ('QL005', 4, NULL, NULL, NULL, 3, 845.00, NULL, 'C层'); -INSERT INTO `room` VALUES ('QL006', 4, NULL, NULL, NULL, 0, 845.00, NULL, 'C层'); -INSERT INTO `room` VALUES ('ZT001', 5, NULL, NULL, NULL, 0, 1080.00, NULL, 'D层'); -INSERT INTO `room` VALUES ('ZT002', 5, NULL, NULL, '2020-04-23 20:53:47', 0, 1080.00, NULL, 'D层'); -INSERT INTO `room` VALUES ('ZT003', 5, NULL, NULL, NULL, 0, 1080.00, NULL, 'D层'); -INSERT INTO `room` VALUES ('ZT004', 5, NULL, NULL, NULL, 0, 1080.00, NULL, 'D层'); -INSERT INTO `room` VALUES ('ZT005', 5, NULL, NULL, '2020-05-27 08:32:01', 0, 1080.00, NULL, 'D层'); -INSERT INTO `room` VALUES ('ZT006', 5, NULL, NULL, '2020-05-27 08:31:42', 4, 1080.00, NULL, 'D层'); - --- ---------------------------- --- Table structure for roomstate --- ---------------------------- -DROP TABLE IF EXISTS `roomstate`; -CREATE TABLE `roomstate` ( - `RoomStateId` int NOT NULL DEFAULT 0, - `RoomState` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of roomstate --- ---------------------------- -INSERT INTO `roomstate` VALUES (0, '空房'); -INSERT INTO `roomstate` VALUES (1, '已住'); -INSERT INTO `roomstate` VALUES (2, '维修中'); -INSERT INTO `roomstate` VALUES (3, '脏房'); -INSERT INTO `roomstate` VALUES (4, '已预约'); - --- ---------------------------- --- Table structure for roomtype --- ---------------------------- -DROP TABLE IF EXISTS `roomtype`; -CREATE TABLE `roomtype` ( - `RoomType` int NOT NULL, - `RoomName` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of roomtype --- ---------------------------- -INSERT INTO `roomtype` VALUES (0, '标准单人间'); -INSERT INTO `roomtype` VALUES (1, '标准双人间'); -INSERT INTO `roomtype` VALUES (2, '豪华单人间'); -INSERT INTO `roomtype` VALUES (3, '豪华双人间'); -INSERT INTO `roomtype` VALUES (4, '情侣套房'); -INSERT INTO `roomtype` VALUES (5, '总统套房'); - --- ---------------------------- --- Table structure for sellthing --- ---------------------------- -DROP TABLE IF EXISTS `sellthing`; -CREATE TABLE `sellthing` ( - `SellNo` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `SellName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `SellPrice` decimal(10, 2) NOT NULL, - `format` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, - `Stock` int NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of sellthing --- ---------------------------- -INSERT INTO `sellthing` VALUES ('ST003', '可口可乐', 10.00, '/瓶(1.5L)', 969); -INSERT INTO `sellthing` VALUES ('ST005', '乐事薯片(原味)', 20.00, '/包(145g)', 971); -INSERT INTO `sellthing` VALUES ('ST007', '雪碧', 2.50, '/罐', 996); -INSERT INTO `sellthing` VALUES ('ST008', '特级杜蕾斯', 40.00, '/盒', 184); -INSERT INTO `sellthing` VALUES ('ST009', '三只松鼠夏威夷坚果', 40.00, '/袋(160g)', 1484); -INSERT INTO `sellthing` VALUES ('ST010', '蟹味瓜子仁', 30.00, '/袋', 1000); -INSERT INTO `sellthing` VALUES ('ST011', '青岛啤酒', 15.00, '/瓶', 967); -INSERT INTO `sellthing` VALUES ('ST012', '火腿肠', 10.00, '/包(40g)', 996); -INSERT INTO `sellthing` VALUES ('ST013', '毛巾', 10.00, '/条', 1000); -INSERT INTO `sellthing` VALUES ('ST014', '澡巾', 12.50, '/条', 1000); -INSERT INTO `sellthing` VALUES ('ST015', '香皂', 25.00, '/个(145g)', 996); -INSERT INTO `sellthing` VALUES ('ST016', '牙刷', 10.00, '/个', 1000); -INSERT INTO `sellthing` VALUES ('ST017', '红枣', 25.00, '/包', 1000); -INSERT INTO `sellthing` VALUES ('ST019', '扑克牌', 5.00, '/副', 248); -INSERT INTO `sellthing` VALUES ('ST020', 'TS纪念品', 10.00, '/个', 998); -INSERT INTO `sellthing` VALUES ('ST021', '三只松鼠零食大礼包', 299.00, '/礼包', 2998); -INSERT INTO `sellthing` VALUES ('ST022', '芬达', 10.00, '/瓶(1.5L)', 900); -INSERT INTO `sellthing` VALUES ('ST398', '拉菲', 1080.00, '/支', 999); -INSERT INTO `sellthing` VALUES ('ST677', '92拉菲', 10800.00, '/瓶', 1154); -INSERT INTO `sellthing` VALUES ('ST851', 'T仔', 90.00, '/个', 30000); -INSERT INTO `sellthing` VALUES ('ST983', '日清方便面', 5.50, '/桶', 3000); - --- ---------------------------- --- Table structure for spend --- ---------------------------- -DROP TABLE IF EXISTS `spend`; -CREATE TABLE `spend` ( - `CustoNo` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `SpendDate` datetime(0) NOT NULL, - `SpendMoney` decimal(6, 2) NOT NULL, - `SpendType` int NOT NULL, - `SpendMess` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `Lender` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT '_utf8mb4\\\'admin\\\'', - `Reamrks` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of spend --- ---------------------------- -INSERT INTO `spend` VALUES ('TS1001', '2018-10-05 00:00:00', 300.00, 1, '吃喝睡', '陈洪汉', NULL); -INSERT INTO `spend` VALUES ('TS1395', '2018-10-22 00:00:00', 1200.00, 2, '吸收了两只万年魂兽', '戴沐白', '魂兽真香'); - --- ---------------------------- --- Table structure for spendtype --- ---------------------------- -DROP TABLE IF EXISTS `spendtype`; -CREATE TABLE `spendtype` ( - `SpendType` int NOT NULL, - `TypeName` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of spendtype --- ---------------------------- -INSERT INTO `spendtype` VALUES (0, '房费'); -INSERT INTO `spendtype` VALUES (1, '娱乐'); -INSERT INTO `spendtype` VALUES (2, '饮食'); - --- ---------------------------- --- Table structure for uploadinfo --- ---------------------------- -DROP TABLE IF EXISTS `uploadinfo`; -CREATE TABLE `uploadinfo` ( - `NoticeNo` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `Noticetheme` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `NoticeTime` datetime(0) NOT NULL, - `NoticeContent` varchar(800) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `NoticeClub` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `NoticePerson` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of uploadinfo --- ---------------------------- -INSERT INTO `uploadinfo` VALUES ('', '', '2020-07-16 00:00:00', '', '人力资源管理部', 'Admin'); -INSERT INTO `uploadinfo` VALUES ('UP001', '人员调动', '2018-12-03 15:48:58', '现将临时工李顺调为正式工,并担任经理部秘书!即日起生效', '人事部', '罗良建'); -INSERT INTO `uploadinfo` VALUES ('UP002', 'XXXX', '2018-12-11 00:00:00', '即日起关于XXX的调任公告...', '人力资源管理部', 'Admin'); -INSERT INTO `uploadinfo` VALUES ('UP003', 'asdasdsa', '2018-12-11 00:00:00', 'asdasdasd', '人力资源管理部', 'Admin'); -INSERT INTO `uploadinfo` VALUES ('UP004', 'XXXX', '2018-12-11 00:00:00', '即日起关于XXX的调任公告...', '人力资源管理部', 'Admin'); -INSERT INTO `uploadinfo` VALUES ('UP012', 'sdadasdas', '2018-12-11 00:00:00', 'asdsdasaffff', '人力资源管理部', 'Admin'); - --- ---------------------------- --- Table structure for userinfo --- ---------------------------- -DROP TABLE IF EXISTS `userinfo`; -CREATE TABLE `userinfo` ( - `CustoNo` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CustoName` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CustoSex` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CustoTel` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `PassportType` int NOT NULL, - `CustoID` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CustoAdress` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, - `CustoBirth` datetime(0) NOT NULL, - `CustoType` int NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of userinfo --- ---------------------------- -INSERT INTO `userinfo` VALUES ('', '', '男', '', -1, '', '', '1900-01-01 13:12:00', 3); -INSERT INTO `userinfo` VALUES ('TS1001', '杨俊', '男', '12345678901', 0, '440921199907205764', '', '1900-01-01 00:00:00', 0); -INSERT INTO `userinfo` VALUES ('TS1002', '熊越明', '男', '12345678901', 0, '9999-8888-7777-6666', '', '1900-01-01 00:00:00', 1); -INSERT INTO `userinfo` VALUES ('TS1003', '宾华安', '男', '13075612081', 0, '440982200007035911', '', '1900-01-01 00:00:00', 1); -INSERT INTO `userinfo` VALUES ('TS1005', 'Billy Hank', '男', '1231231213', 4, '003-12312312222222', 'American SHENGDIYAGE', '1900-01-01 18:19:00', 3); -INSERT INTO `userinfo` VALUES ('TS1008', 'lili ', '女', '18775663774', 0, '450221199806181568', '广西壮族自治区柳州市柳江县', '1998-06-18 00:00:00', 0); -INSERT INTO `userinfo` VALUES ('TS1032', '汪十', '男', '12345678911', 0, '123123213231', '', '1900-01-01 19:07:00', 3); -INSERT INTO `userinfo` VALUES ('TS1043', '理查德', '男', '', 0, '', '', '2020-07-05 14:03:11', 0); -INSERT INTO `userinfo` VALUES ('TS1074', '李四', '男', '13411152323', 0, '899100090902323', NULL, '1870-08-23 21:35:47', 3); -INSERT INTO `userinfo` VALUES ('TS1081', '杨俊杰', '男', '12345678901', 0, '440921199907205754', '', '1900-01-01 00:00:00', 2); -INSERT INTO `userinfo` VALUES ('TS1084', '景晨', '男', '13902992233', 1, '363939877421', '', '1998-02-17 15:40:04', 0); -INSERT INTO `userinfo` VALUES ('TS1140', '王五', '男', '', 0, '430621199806271759', '湖南省岳阳市岳阳县', '1998-06-27 00:00:00', 0); -INSERT INTO `userinfo` VALUES ('TS1194', '繁星洛', '男', '13411541604', 0, '440921199907205754', '珠海', '1989-12-25 11:40:27', 0); -INSERT INTO `userinfo` VALUES ('TS1239', '222', '男', '11111', 0, '130302197707163442', '河北省秦皇岛市海港区', '1977-07-16 00:00:00', 0); -INSERT INTO `userinfo` VALUES ('TS1251', '良辰', '男', '12345678987', 0, '232342342', '', '2001-12-03 16:22:52', 0); -INSERT INTO `userinfo` VALUES ('TS1256', 'Billy Hank', '男', '1231231213', 4, '003-12312312222222', 'American SHENGDIYAGE', '1900-01-01 18:19:00', 3); -INSERT INTO `userinfo` VALUES ('TS1260', 'XYZ', '男', '12312313123', 0, '2312312312312', '', '1900-01-01 19:55:00', 0); -INSERT INTO `userinfo` VALUES ('TS1266', '小舞', '女', '2222222', 0, '2222222222222', '', '1998-12-03 11:49:45', 0); -INSERT INTO `userinfo` VALUES ('TS1290', '景晨', '男', '13902992233', 1, '363939877421', '', '1998-02-17 15:40:04', 0); -INSERT INTO `userinfo` VALUES ('TS1310', 'abc', '女', '17663721822', -1, '', '', '2020-05-27 11:19:07', 0); -INSERT INTO `userinfo` VALUES ('TS1336', 'ojh', '女', '877889', 0, '431990199812148787', '', '1998-12-14 00:00:00', 0); -INSERT INTO `userinfo` VALUES ('TS1364', 'MR.A', '女', '123123123', 0, '221021199612169889', '', '1996-12-16 00:00:00', 0); -INSERT INTO `userinfo` VALUES ('TS1365', '卢本伟', '男', '999', 0, '440922019931213879', '广东省茂名市高州县', '2020-06-02 21:19:11', 0); -INSERT INTO `userinfo` VALUES ('TS1387', '尚志强', '男', '', 0, '130123432918423456', '河北省石家庄市正定县', '2018-03-21 10:23:05', 0); -INSERT INTO `userinfo` VALUES ('TS1389', '彤彤', '女', '', 0, '42028819450827801x', '', '1945-08-27 00:00:00', 0); -INSERT INTO `userinfo` VALUES ('TS1395', '唐三', '男', '14566554434', 0, '990021123321233', NULL, '1990-09-12 16:26:24', 1); -INSERT INTO `userinfo` VALUES ('TS1457', '罗良健', '男', '', 0, '440921199907205754', '', '1999-10-28 21:08:35', 1); -INSERT INTO `userinfo` VALUES ('TS1472', '王五', '男', '', 0, '430521199806271639', '湖南省邵阳市邵东县', '1998-06-27 00:00:00', 3); -INSERT INTO `userinfo` VALUES ('TS1480', '申', '男', '12354697812', 0, '339021199812147878', '', '1998-12-14 00:00:00', 0); -INSERT INTO `userinfo` VALUES ('TS1537', 'June', '女', '001-0221002', 4, '00291129111221', '', '1900-02-10 19:53:57', 0); -INSERT INTO `userinfo` VALUES ('TS1571', '测试1', '男', '12344442222', 0, '4344321519920222', '', '1992-02-22 10:28:53', 0); -INSERT INTO `userinfo` VALUES ('TS1634', '杨俊杰', '男', '12345678901', 0, '440921199907205254', '', '1900-01-01 00:00:00', 2); -INSERT INTO `userinfo` VALUES ('TS1757', '付金鑫1', '男', '312312313', 0, '123123123', '市区', '1900-01-01 00:00:00', 1); -INSERT INTO `userinfo` VALUES ('TS1765', 'pdd', '男', '123123123', 1, '12312412412', '', '1900-01-01 19:59:00', 0); -INSERT INTO `userinfo` VALUES ('TS1779', 'MR.S', '男', '789798789', 0, '440921199312145757', '广东省茂名市信宜县', '1993-12-14 00:00:00', 0); -INSERT INTO `userinfo` VALUES ('TS1812', '杨俊杰', '男', '12345678901', 0, '440921199907205764', '', '1900-01-01 00:00:00', 2); -INSERT INTO `userinfo` VALUES ('TS1816', '李顺', '男', '15217186471', 0, '123456789012345678', '天堂度假村', '1900-01-01 20:14:00', 1); -INSERT INTO `userinfo` VALUES ('TS1828', '里', '男', '12335467698', 0, '450421199706221658', '二夫人都是否定的否定', '1997-06-22 00:00:00', 0); -INSERT INTO `userinfo` VALUES ('TS1862', '杨三三', '女', '15672234544', 0, '44023119801122343X', NULL, '1980-11-22 21:39:49', 1); -INSERT INTO `userinfo` VALUES ('TS1897', '汪十', '男', '12345678911', 0, '123123213231', '', '1900-01-01 19:07:00', 3); -INSERT INTO `userinfo` VALUES ('TS1903', '赵六', '男', '11011011', 0, '110110110110', NULL, '1890-02-13 19:01:32', 3); -INSERT INTO `userinfo` VALUES ('TS1914', '杨高兴', '男', '17845712478', 0, '362330178405217890', '江西省上饶地区波阳县', '1900-01-01 00:00:00', 1); -INSERT INTO `userinfo` VALUES ('TS1926', '路英才', '男', '1232312', 3, 'KJ00101231', '', '1900-12-09 20:24:15', 3); -INSERT INTO `userinfo` VALUES ('TS1968', 'dsad', '男', '123123', 0, '23123123', '', '2018-12-10 20:00:20', 0); -INSERT INTO `userinfo` VALUES ('TS1997', '汪十', '男', '12345678911', 0, '123123213231', '', '1900-01-01 19:07:00', 3); -INSERT INTO `userinfo` VALUES ('TS1998', '丽丽 ', '女', '18757523769', 0, '450621199806272589', '广西壮族自治区防城港市上思县', '1998-06-27 00:00:00', 0); -INSERT INTO `userinfo` VALUES ('TS6128', 'Susan', '女', '001-1222222', 4, '099900121212', '美利坚共和国纽约', '1997-02-23 19:24:28', 3); -INSERT INTO `userinfo` VALUES ('TS6666', '付金鑫', '男', '312312313', 0, '123123123', '市区', '1900-01-01 00:00:00', 1); -INSERT INTO `userinfo` VALUES ('TS8888', 'Yang', '男', '123123', 0, '12312312312', 'sdads', '2018-01-01 00:00:00', 3); - --- ---------------------------- --- Table structure for usertype --- ---------------------------- -DROP TABLE IF EXISTS `usertype`; -CREATE TABLE `usertype` ( - `UserType` int NOT NULL, - `TypeName` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of usertype --- ---------------------------- -INSERT INTO `usertype` VALUES (0, '普通用户'); -INSERT INTO `usertype` VALUES (1, '钻石会员'); -INSERT INTO `usertype` VALUES (2, '白金会员'); -INSERT INTO `usertype` VALUES (3, '黄金会员'); - --- ---------------------------- --- Table structure for workercheck --- ---------------------------- -DROP TABLE IF EXISTS `workercheck`; -CREATE TABLE `workercheck` ( - `WorkerNo` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, - `CheckTime` datetime(0) NULL DEFAULT NULL, - `CheckWay` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, - `CheckState` int NULL DEFAULT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of workercheck --- ---------------------------- -INSERT INTO `workercheck` VALUES ('WK010', '2020-04-19 19:23:13', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-04-21 19:25:55', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-04-22 13:01:26', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-04-23 15:46:18', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-04-25 18:44:03', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-04-26 10:33:41', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-04-29 00:12:50', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK001', '2020-04-29 12:38:12', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-01 00:24:14', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-02 10:54:07', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-03 19:55:47', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-04 12:51:47', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-07 15:20:18', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-08 22:06:14', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-09 10:46:01', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-10 21:30:52', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-11 20:16:32', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-12 20:58:07', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-14 22:14:03', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-15 17:07:43', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-18 22:26:40', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-19 10:49:38', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-20 08:40:40', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-21 14:38:13', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-22 19:48:30', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-24 18:35:58', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-25 14:28:22', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-27 23:50:39', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-05-28 17:23:55', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-06-02 21:20:57', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-06-04 15:53:00', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-06-07 22:36:06', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-06-08 22:31:55', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-06-12 14:41:33', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-06-19 12:42:27', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-06-24 17:37:10', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-06-28 09:31:41', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-07-01 16:31:36', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-07-02 22:25:34', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-07-13 14:16:26', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-07-16 15:02:03', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-07-24 11:29:44', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-08-04 11:39:43', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-08-05 16:49:44', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-08-06 16:52:38', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-08-07 15:35:51', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-08-19 15:56:18', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-08-23 17:06:06', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-09-14 14:09:25', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-09-16 13:02:07', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-09-17 09:44:26', '系统界面', 0); -INSERT INTO `workercheck` VALUES ('WK010', '2020-11-11 14:54:59', '系统界面', 0); - --- ---------------------------- --- Table structure for workerhistory --- ---------------------------- -DROP TABLE IF EXISTS `workerhistory`; -CREATE TABLE `workerhistory` ( - `WorkerId` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `StartDate` datetime(0) NOT NULL, - `EndDate` datetime(0) NOT NULL, - `Position` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `Company` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of workerhistory --- ---------------------------- -INSERT INTO `workerhistory` VALUES ('WK010', '2005-03-05 00:00:00', '2008-03-05 00:00:00', '部门经理', '海湾大酒店'); -INSERT INTO `workerhistory` VALUES ('WK010', '2009-06-23 00:00:00', '2010-02-02 00:00:00', '总经理', '非凡大酒店'); -INSERT INTO `workerhistory` VALUES ('WK775', '2015-07-17 12:57:15', '2018-05-04 12:57:15', '财务会计', '非凡会计所'); -INSERT INTO `workerhistory` VALUES ('WK261', '2020-07-16 21:13:33', '2020-07-16 21:13:33', '', ''); -INSERT INTO `workerhistory` VALUES ('WK100', '2020-07-16 21:13:42', '2020-07-16 21:13:42', '', ''); -INSERT INTO `workerhistory` VALUES ('WK388', '2020-08-20 09:33:45', '2020-08-20 09:33:45', '', ''); - --- ---------------------------- --- Table structure for workerinfo --- ---------------------------- -DROP TABLE IF EXISTS `workerinfo`; -CREATE TABLE `workerinfo` ( - `WorkerId` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `WorkerName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `WorkerBirthday` datetime(0) NOT NULL, - `WorkerSex` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `WorkerTel` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `WorkerClub` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `WorkerAddress` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `WorkerPosition` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CardID` varchar(18) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `WorkerPwd` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `WorkerTime` datetime(0) NOT NULL, - `WorkerFace` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `WorkerEducation` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of workerinfo --- ---------------------------- -INSERT INTO `workerinfo` VALUES ('Duyen', '阿娟', '1969-10-11 00:00:00', '女', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2020-07-05 02:20:31', '党员', '高中'); -INSERT INTO `workerinfo` VALUES ('Hien', '阿賢', '1969-10-11 00:00:00', '女', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2020-07-05 02:19:53', '党员', '本科'); -INSERT INTO `workerinfo` VALUES ('Huong', '阿香', '1969-10-11 00:00:00', '女', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2020-07-05 02:17:25', '党员', '高中'); -INSERT INTO `workerinfo` VALUES ('Lam', '阿隆', '1969-10-11 00:00:00', '女', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2020-07-05 02:21:52', '党员', '高中'); -INSERT INTO `workerinfo` VALUES ('Lien', '阿蓮', '1969-10-11 00:00:00', '女', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2020-07-05 02:16:44', '党员', '高中'); -INSERT INTO `workerinfo` VALUES ('Shenyou', '申酉', '1999-07-20 00:00:00', '男', '15019927415', '经理部', '金湾', '总经理', '123121313132X3', '123456', '2020-07-05 02:18:19', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK001', '谭国平', '1999-12-05 00:00:00', '男', '15693857612', '人事部', '红旗', '职员', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK002', '李杰峰', '1999-10-15 00:00:00', '男', '15632343232', '财务部', '市区', '经理', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK003', '陈伟瀚', '1999-11-20 00:00:00', '男', '13036456756', '后勤部', '斗门', '经理', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK004', '杨旭东', '1999-02-15 00:00:00', '男', '15693857612', '商品部', '井岸', '职员', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK005', '付金鑫', '1999-06-05 00:00:00', '男', '15693857612', '酒店部', '市区', '经理', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK006', '陈洪汉', '1999-10-05 00:00:00', '男', '15693857612', '人事部', '南屏', '经理', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK007', '罗良建', '2000-12-05 00:00:00', '男', '15693857612', '人事部', '市区', '职员', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK008', '林淑仪', '1999-12-05 00:00:00', '女', '15693857612', '人事部', '市区', '总经理', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK009', '老铁', '1989-12-05 00:00:00', '男', '15693857612', '人事部', '市区', '职员', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK010', '杨俊杰', '1999-07-20 00:00:00', '男', '15019927415', '经理部', '金湾', '总经理', '123121313132X3', 'admin', '2011-04-20 00:00:00', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK011', '六月', '1899-10-11 00:00:00', '男', '13433221223', '酒店部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', '本科'); -INSERT INTO `workerinfo` VALUES ('WK012', '七月', '1989-10-11 00:00:00', '男', '13433221223', '酒店部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', '本科'); -INSERT INTO `workerinfo` VALUES ('WK013', '八月', '1979-10-11 00:00:00', '男', '13433221223', '人事部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', '本科'); -INSERT INTO `workerinfo` VALUES ('WK014', '九月', '1969-10-11 00:00:00', '男', '13433221223', '人事部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', '本科'); -INSERT INTO `workerinfo` VALUES ('WK015', '十元', '1959-10-11 00:00:00', '男', '13433221223', '人事部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', '本科'); -INSERT INTO `workerinfo` VALUES ('WK016', '十月', '1949-10-11 00:00:00', '女', '13433221223', '人事部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', '本科'); -INSERT INTO `workerinfo` VALUES ('WK017', '十一月', '1939-10-11 00:00:00', '女', '13433221223', '人事部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', '本科'); -INSERT INTO `workerinfo` VALUES ('WK018', '十二月', '1929-10-11 00:00:00', '女', '13433221223', '商品部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', '本科'); -INSERT INTO `workerinfo` VALUES ('WK019', '十四年', '1911-10-11 00:00:00', '女', '13433221223', '商品部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', '本科'); -INSERT INTO `workerinfo` VALUES ('WK020', '十五年', '1992-10-11 00:00:00', '女', '13433221223', '商品部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', '本科'); -INSERT INTO `workerinfo` VALUES ('WK021', '一楠', '1993-10-11 00:00:00', '女', '13433221223', '商品部', '斗门', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK022', '二南', '1994-10-11 00:00:00', '男', '13433221223', '商品部', '斗门', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK023', '三男', '1995-10-11 00:00:00', '男', '13433221223', '商品部', '斗门', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK024', '四北', '1996-10-11 00:00:00', '男', '13433221223', '财务部', '斗门', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK025', '花呗', '1997-10-11 00:00:00', '女', '13433221223', '财务部', '斗门', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK026', '蚂蚁', '1998-10-11 00:00:00', '男', '13433221223', '财务部', '斗门', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK027', '余额宝', '1919-10-11 00:00:00', '男', '13433221223', '财务部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', '本科'); -INSERT INTO `workerinfo` VALUES ('WK028', '支付宝', '1929-10-11 00:00:00', '男', '13433221223', '财务部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', '本科'); -INSERT INTO `workerinfo` VALUES ('WK029', '阿里', '1939-10-11 00:00:00', '女', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK030', '阿狸', '1949-10-11 00:00:00', '男', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK031', '阿力', '1959-10-11 00:00:00', '男', '13433221223', '财务部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK032', '瞎小', '1969-10-11 00:00:00', '女', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK033', '沙宣', '1979-10-11 00:00:00', '男', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK034', '沙县', '1989-10-11 00:00:00', '男', '13433221223', '后勤部', '市区', '职员', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', '本科'); -INSERT INTO `workerinfo` VALUES ('WK100', '', '2020-07-16 21:13:42', '男', '', '酒店部', '', '职员', '', '937742888', '2020-07-16 21:13:42', '群众', '小学'); -INSERT INTO `workerinfo` VALUES ('WK261', '', '2020-07-16 21:13:33', '男', '', '酒店部', '', '职员', '', '462039223', '2020-07-16 21:13:33', '群众', '小学'); -INSERT INTO `workerinfo` VALUES ('WK388', '张三', '1998-06-27 00:00:00', '男', '18756497655', '酒店部', '广西壮族自治区防城港市上思县', '职员', '450621199806271679', '585402554', '2020-08-20 09:33:45', '群众', '小学'); -INSERT INTO `workerinfo` VALUES ('WK775', '凌峰', '1995-07-14 00:00:00', '男', '13328993360', '财务部', '广东省茂名市信宜县', '职员', '440921199507149395', '123456', '2020-05-04 12:57:15', '党员', '本科'); -INSERT INTO `workerinfo` VALUES ('Xingxue', '興學', '1999-07-20 00:00:00', '男', '15019927415', '经理部', '金湾', '总经理', '123121313132X3', '123456', '2020-07-05 02:18:53', '团员', '專科'); - --- ---------------------------- --- Table structure for workerodbad --- ---------------------------- -DROP TABLE IF EXISTS `workerodbad`; -CREATE TABLE `workerodbad` ( - `WorkNo` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, - `GBInfo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, - `GBType` int NULL DEFAULT NULL, - `GBOperation` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, - `GBTime` datetime(0) NULL DEFAULT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of workerodbad --- ---------------------------- -INSERT INTO `workerodbad` VALUES ('WK008', '牛逼就完事了!', 0, '杨俊杰', '2020-04-21 21:02:30'); -INSERT INTO `workerodbad` VALUES ('WK775', '被评为优秀的“五四”行业青年', 0, '杨俊杰', '2020-05-04 13:01:17'); - --- ---------------------------- --- Table structure for wtinfo --- ---------------------------- -DROP TABLE IF EXISTS `wtinfo`; -CREATE TABLE `wtinfo` ( - `RoomNo` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `UseDate` datetime(0) NOT NULL, - `EndDate` datetime(0) NULL DEFAULT NULL, - `WaterUse` decimal(6, 2) NOT NULL, - `PowerUse` decimal(6, 2) NOT NULL, - `Record` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `CustoNo` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of wtinfo --- ---------------------------- -INSERT INTO `wtinfo` VALUES ('BD001', '2018-12-11 09:48:00', '2018-12-11 10:08:29', 3.00, 3.00, 'admin', 'TS8888'); -INSERT INTO `wtinfo` VALUES ('ZT005', '2018-12-27 11:43:15', '2018-12-27 11:43:15', 5.00, 10.00, 'admin', 'TS1816'); -INSERT INTO `wtinfo` VALUES ('ZT006', '2018-12-27 11:44:01', '2018-12-27 11:44:01', 0.16, 3.00, 'admin', 'TS8888'); -INSERT INTO `wtinfo` VALUES ('BD003', '2018-12-06 00:00:00', '2018-12-11 07:27:57', 0.80, 15.00, 'admin', 'TS6666'); -INSERT INTO `wtinfo` VALUES ('HD002', '2018-11-29 00:00:00', '2018-12-11 07:40:07', 1.92, 36.00, 'admin', 'TS1003'); -INSERT INTO `wtinfo` VALUES ('BD005', '2018-12-06 00:00:00', '2018-12-11 07:43:28', 0.80, 15.00, 'admin', 'TS1002'); -INSERT INTO `wtinfo` VALUES ('HS005', '2018-11-29 00:00:00', '2018-12-11 07:45:00', 1.92, 36.00, 'admin', 'TS1032'); -INSERT INTO `wtinfo` VALUES ('BD001', '2018-12-20 19:59:10', '2018-12-21 00:31:00', 0.16, 3.00, 'admin', 'TS1862'); -INSERT INTO `wtinfo` VALUES ('BS001', '2018-12-27 20:46:42', '2018-12-27 20:46:42', 0.00, 0.00, 'admin', 'TS1003'); -INSERT INTO `wtinfo` VALUES ('HD001', '2018-12-26 09:55:37', '2020-02-28 17:08:35', 68.64, 1287.00, 'admin', 'TS1862'); -INSERT INTO `wtinfo` VALUES ('ZT001', '2019-10-28 21:13:40', '2020-03-14 23:20:57', 22.08, 414.00, 'admin', 'TS1457'); -INSERT INTO `wtinfo` VALUES ('QL001', '2018-12-26 09:51:10', '2018-12-26 09:51:10', 0.16, 3.00, 'admin', 'TS1395'); -INSERT INTO `wtinfo` VALUES ('BS004', '2018-12-26 20:11:18', '2018-12-26 20:11:18', 0.00, 0.00, 'admin', 'TS1251'); -INSERT INTO `wtinfo` VALUES ('BS003', '2018-12-26 18:52:53', '2020-04-06 19:58:52', 74.72, 1401.00, 'admin', 'TS1084'); -INSERT INTO `wtinfo` VALUES ('BS002', '2018-12-26 18:52:37', '2020-04-06 20:24:26', 74.70, 1401.00, 'admin', 'TS1074'); -INSERT INTO `wtinfo` VALUES ('HD002', '2018-12-27 17:32:26', '2020-04-06 20:25:04', 74.56, 1398.00, 'admin', 'TS1634'); -INSERT INTO `wtinfo` VALUES ('HD003', '2018-12-26 20:06:12', '2020-04-06 20:25:22', 74.72, 1401.00, 'admin', 'TS1765'); -INSERT INTO `wtinfo` VALUES ('BD002', '2018-12-27 20:26:49', '2020-04-07 00:23:43', 74.72, 1401.00, 'admin', 'TS1001'); -INSERT INTO `wtinfo` VALUES ('BS005', '2020-04-07 14:34:21', '2020-04-07 14:37:17', 0.00, 0.00, 'admin', 'TS1081'); -INSERT INTO `wtinfo` VALUES ('BS009', '2020-04-08 12:49:19', '2020-04-09 14:39:53', 0.16, 3.00, 'admin', 'TS6666'); -INSERT INTO `wtinfo` VALUES ('BD003', '2020-04-06 18:14:17', '2020-04-14 16:46:08', 1.28, 24.00, 'admin', 'TS1779'); -INSERT INTO `wtinfo` VALUES ('BD001', '2020-04-23 16:35:48', '2020-04-23 16:35:48', 0.48, 9.00, 'admin', 'TS1032'); -INSERT INTO `wtinfo` VALUES ('ZT002', '2020-04-23 20:53:29', '2020-04-23 20:53:29', 2.56, 48.00, 'admin', 'TS1364'); -INSERT INTO `wtinfo` VALUES ('BD001', '2020-04-25 20:19:57', '2020-04-26 19:06:06', 0.16, 3.00, 'admin', 'TS1336'); -INSERT INTO `wtinfo` VALUES ('BD004', '2020-04-29 12:39:21', '2020-05-04 13:04:09', 0.80, 15.00, 'admin', 'TS1480'); -INSERT INTO `wtinfo` VALUES ('BD006', '2020-04-26 10:36:51', '2020-05-04 13:07:25', 1.28, 24.00, 'admin', 'TS1032'); -INSERT INTO `wtinfo` VALUES ('BD001', '2020-05-07 15:16:55', '2020-05-25 15:29:10', 2.88, 54.00, 'admin', 'TS1239'); -INSERT INTO `wtinfo` VALUES ('BD010', '2020-05-04 13:12:36', '2020-05-26 15:24:43', -6.40, -120.00, 'admin', 'TS1043'); -INSERT INTO `wtinfo` VALUES ('HD003', '2020-04-26 10:36:24', '2020-05-27 08:31:14', 4.96, 93.00, 'admin', 'TS1001'); -INSERT INTO `wtinfo` VALUES ('ZT006', '2020-05-04 13:12:36', '2020-05-27 08:31:36', 3.68, 69.00, 'admin', 'TS1074'); -INSERT INTO `wtinfo` VALUES ('ZT005', '2020-03-03 19:59:44', '2020-05-27 08:31:56', 13.60, 255.00, 'admin', 'TS1005'); -INSERT INTO `wtinfo` VALUES ('BS007', '2020-04-05 13:12:36', '2020-05-27 08:32:04', 8.32, 156.00, 'admin', 'TS1003'); -INSERT INTO `wtinfo` VALUES ('BD007', '2020-04-05 13:12:36', '2020-05-27 08:32:13', 8.32, 156.00, 'admin', 'TS1002'); -INSERT INTO `wtinfo` VALUES ('BD003', '2020-05-27 11:19:21', '2020-05-27 11:20:00', 0.00, 0.00, 'admin', 'TS1310'); -INSERT INTO `wtinfo` VALUES ('BD001', '2020-08-04 11:45:36', '2020-08-18 17:31:12', 12.32, 231.00, 'admin', 'TS1365'); - -SET FOREIGN_KEY_CHECKS = 1; diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/Table.sql" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/Table.sql" deleted file mode 100644 index 4a9655496c8c4cf49760fd080f88c75487009269..0000000000000000000000000000000000000000 --- "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/Table.sql" +++ /dev/null @@ -1,482 +0,0 @@ -ALTER TABLE [dbo].[SPEND] DROP CONSTRAINT [FK__SPEND__CustoNo__00DF2177] -GO -ALTER TABLE [dbo].[WTINFO] DROP CONSTRAINT [FK__WTINFO__RoomNo__078C1F06] -GO -ALTER TABLE [dbo].[WTINFO] DROP CONSTRAINT [FK__WTINFO__CustoNo__0880433F] -GO - -ALTER TABLE [dbo].[USERTYPE] DROP CONSTRAINT [UQ__USERTYPE__D4E7DFA80D7A0286] -GO - -ALTER TABLE [dbo].[CUSTOSPEND] DROP CONSTRAINT [CK_CUSTOSPEND_MoneyState] -GO -ALTER TABLE [dbo].[USERINFO] DROP CONSTRAINT [CK__UESRINFO__CustoS__09A971A2] -GO -ALTER TABLE [dbo].[USERINFO] DROP CONSTRAINT [CK__UESRINFO__CustoI__0A9D95DB] -GO -ALTER TABLE [dbo].[USERINFO] DROP CONSTRAINT [CK_USERINFO_CustoType] -GO -ALTER TABLE [dbo].[WORKERINFO] DROP CONSTRAINT [CK__WORKERINF__Worke__27F8EE98] -GO -ALTER TABLE [dbo].[WORKERINFO] DROP CONSTRAINT [CK__WORKERINF__Worke__28ED12D1] -GO - -ALTER TABLE [dbo].[BACKINFO] DROP CONSTRAINT [PK__BACKINFO__5E59BC880B5CAFEA] -GO -ALTER TABLE [dbo].[CASHINFO] DROP CONSTRAINT [PK__CASHINFO__6B80D1413552E9B6] -GO -ALTER TABLE [dbo].[CHECKINFO] DROP CONSTRAINT [PK__CHECKINF__86812FD516CE6296] -GO -ALTER TABLE [dbo].[MONEYINFO] DROP CONSTRAINT [PK__MONEYINF__C5FC882D12FDD1B2] -GO -ALTER TABLE [dbo].[ROOM] DROP CONSTRAINT [PK__ROOM__328651AA395884C4] -GO -ALTER TABLE [dbo].[SELLTHING] DROP CONSTRAINT [PK__SELLTHIN__B3509E74731B1205] -GO -ALTER TABLE [dbo].[UPLOADINFO] DROP CONSTRAINT [PK__UPLOADIN__CE83E30A318258D2] -GO -ALTER TABLE [dbo].[USERINFO] DROP CONSTRAINT [PK__UESRINFO__7FA8BFA507C12930] -GO -ALTER TABLE [dbo].[WORKERINFO] DROP CONSTRAINT [PK__WORKERIN__077F569D2610A626] -GO - -DROP TABLE [dbo].[ADMININFO] -GO -DROP TABLE [dbo].[BACKINFO] -GO -DROP TABLE [dbo].[baseversion] -GO -DROP TABLE [dbo].[CARDCODES] -GO -DROP TABLE [dbo].[CARDINFO] -GO -DROP TABLE [dbo].[CASHINFO] -GO -DROP TABLE [dbo].[CHECKINFO] -GO -DROP TABLE [dbo].[CUSTOSPEND] -GO -DROP TABLE [dbo].[Fonts] -GO -DROP TABLE [dbo].[GBType] -GO -DROP TABLE [dbo].[MONEYINFO] -GO -DROP TABLE [dbo].[OperationLog] -GO -DROP TABLE [dbo].[PASSPORTTYPE] -GO -DROP TABLE [dbo].[RESER] -GO -DROP TABLE [dbo].[ROOM] -GO -DROP TABLE [dbo].[ROOMSTATE] -GO -DROP TABLE [dbo].[ROOMTYPE] -GO -DROP TABLE [dbo].[SELLTHING] -GO -DROP TABLE [dbo].[SPEND] -GO -DROP TABLE [dbo].[SPENDTYPE] -GO -DROP TABLE [dbo].[UPLOADINFO] -GO -DROP TABLE [dbo].[USERINFO] -GO -DROP TABLE [dbo].[USERTYPE] -GO -DROP TABLE [dbo].[WORKERCHECK] -GO -DROP TABLE [dbo].[WorkerGoodBad] -GO -DROP TABLE [dbo].[WORKERHISTORY] -GO -DROP TABLE [dbo].[WORKERINFO] -GO -DROP TABLE [dbo].[WTINFO] -GO - -CREATE TABLE [dbo].[ADMININFO] ( - [AdminPassword] varchar(12) NOT NULL, - [AdminType] varchar(15) NOT NULL, - [AdminName] varchar(50) NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[ADMININFO] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[BACKINFO] ( - [BackNo] varchar(20) NOT NULL, - [BackName] varchar(20) NOT NULL, - [BackSource] varchar(18) NOT NULL, - [BackCash] decimal(6,2) NOT NULL, - [BackType] int NOT NULL, - [BackPerson] varchar(8) NOT NULL, - [ControlClub] varchar(12) NOT NULL, - [BackClub] varchar(12) NOT NULL, - CONSTRAINT [PK__BACKINFO__5E59BC880B5CAFEA] PRIMARY KEY CLUSTERED ([BackNo]) -WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) -ON [PRIMARY] -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[BACKINFO] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[baseversion] ( - [base_version] varchar(50) NOT NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[baseversion] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[CARDCODES] ( - [id] bigint NULL, - [Province] nvarchar(255) NULL, - [City] nvarchar(255) NULL, - [District] nvarchar(255) NULL, - [bm] nvarchar(255) NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[CARDCODES] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[CARDINFO] ( - [CardID] varchar(11) NOT NULL, - [CardName] varchar(20) NOT NULL, - [CustoNo] varchar(10) NOT NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[CARDINFO] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[CASHINFO] ( - [CashNo] varchar(12) NOT NULL, - [CashName] varchar(300) NOT NULL, - [CashPrice] varchar(400) NOT NULL, - [CashClub] varchar(800) NOT NULL, - [CashTime] datetime NOT NULL, - [CashSource] varchar(200) NOT NULL, - [CashPerson] varchar(800) NOT NULL, - CONSTRAINT [PK__CASHINFO__6B80D1413552E9B6] PRIMARY KEY CLUSTERED ([CashNo]) -WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) -ON [PRIMARY] -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[CASHINFO] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[CHECKINFO] ( - [CheckNo] varchar(10) NOT NULL, - [CheckClub] varchar(12) NOT NULL, - [CheckProgres] varchar(250) NOT NULL, - [CheckCash] varchar(250) NOT NULL, - [CheckScore] int NOT NULL, - [CheckPerson] varchar(8) NOT NULL, - [CheckAdvice] varchar(45) NOT NULL, - CONSTRAINT [PK__CHECKINF__86812FD516CE6296] PRIMARY KEY CLUSTERED ([CheckNo]) -WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) -ON [PRIMARY] -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[CHECKINFO] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[CUSTOSPEND] ( - [RoomNo] varchar(8) NOT NULL, - [CustoNo] varchar(15) NOT NULL, - [SpendName] varchar(25) NOT NULL, - [SpendAmount] int NOT NULL, - [SpendPrice] decimal(10,2) NOT NULL, - [SpendMoney] decimal(10,2) NOT NULL, - [SpendTime] datetime NOT NULL, - [MoneyState] varchar(9) DEFAULT ('未结算') NOT NULL, - CONSTRAINT [CK_CUSTOSPEND_MoneyState] CHECK ([MoneyState]='已结算' OR [MoneyState]='未结算') -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[CUSTOSPEND] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[Fonts] ( - [FontsId] int IDENTITY(1,1) NOT NULL, - [FontsMess] varchar(250) NOT NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[Fonts] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[GBType] ( - [GBType] int NULL, - [GBName] varchar(255) NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[GBType] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[MONEYINFO] ( - [MoneyNo] varchar(10) NOT NULL, - [MoneyType] int NOT NULL, - [MoneyIn] decimal(10,2) NOT NULL, - [MoneyOut] decimal(10,2) NOT NULL, - [MoneyCheck] varchar(8) NOT NULL, - [MoneyPerson] varchar(8) NOT NULL, - [Remarks] varchar(255) NULL, - CONSTRAINT [PK__MONEYINF__C5FC882D12FDD1B2] PRIMARY KEY CLUSTERED ([MoneyNo]) -WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) -ON [PRIMARY] -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[MONEYINFO] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[OperationLog] ( - [OperationTime] datetime NOT NULL, - [OperationLog] varchar(8000) NOT NULL, - [OperationAccount] varchar(300) NOT NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[OperationLog] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[PASSPORTTYPE] ( - [PassportId] int NOT NULL, - [PassportName] varchar(20) NOT NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[PASSPORTTYPE] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[RESER] ( - [ReserId] varchar(16) NULL, - [CustoName] varchar(8) NULL, - [CustoTel] varchar(11) NULL, - [ReserWay] varchar(10) NULL, - [ReserRoom] varchar(255) NULL, - [ReserDate] date NULL, - [ReserEndDate] date NULL, - [ReserRemark] varchar(255) NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[RESER] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[ROOM] ( - [RoomNo] varchar(8) NOT NULL, - [RoomType] int DEFAULT ((1)) NOT NULL, - [CustoNo] varchar(15) NULL, - [CheckTime] datetime NULL, - [CheckOutTime] datetime NULL, - [RoomStateId] int DEFAULT ((0)) NOT NULL, - [RoomMoney] decimal(10,2) DEFAULT ((300.00)) NULL, - [PersonNum] varchar(3) NULL, - [RoomPosition] varchar(6) NOT NULL, - CONSTRAINT [PK__ROOM__328651AA395884C4] PRIMARY KEY CLUSTERED ([RoomNo]) -WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) -ON [PRIMARY] -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[ROOM] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[ROOMSTATE] ( - [RoomStateId] int DEFAULT ((0)) NOT NULL, - [RoomState] varchar(8) NOT NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[ROOMSTATE] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[ROOMTYPE] ( - [RoomType] int NOT NULL, - [RoomName] varchar(10) NOT NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[ROOMTYPE] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[SELLTHING] ( - [SellNo] varchar(10) NOT NULL, - [SellName] varchar(20) NOT NULL, - [SellPrice] decimal(10,2) NOT NULL, - [format] varchar(20) NULL, - [Stock] int NOT NULL, - CONSTRAINT [PK__SELLTHIN__B3509E74731B1205] PRIMARY KEY CLUSTERED ([SellNo]) -WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) -ON [PRIMARY] -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[SELLTHING] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[SPEND] ( - [CustoNo] varchar(15) NOT NULL, - [SpendDate] datetime NOT NULL, - [SpendMoney] decimal(6,2) NOT NULL, - [SpendType] int NOT NULL, - [SpendMess] varchar(255) NOT NULL, - [Lender] varchar(12) DEFAULT ('admin') NULL, - [Reamrks] varchar(255) NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[SPEND] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[SPENDTYPE] ( - [SpendType] int NOT NULL, - [TypeName] varchar(10) NOT NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[SPENDTYPE] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[UPLOADINFO] ( - [NoticeNo] varchar(8) NOT NULL, - [Noticetheme] varchar(15) NOT NULL, - [NoticeTime] datetime NOT NULL, - [NoticeContent] varchar(800) NOT NULL, - [NoticeClub] varchar(25) NOT NULL, - [NoticePerson] varchar(20) NOT NULL, - CONSTRAINT [PK__UPLOADIN__CE83E30A318258D2] PRIMARY KEY CLUSTERED ([NoticeNo]) -WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) -ON [PRIMARY] -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[UPLOADINFO] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[USERINFO] ( - [CustoNo] varchar(15) NOT NULL, - [CustoName] varchar(15) NOT NULL, - [CustoSex] varchar(4) NOT NULL, - [CustoTel] varchar(11) NOT NULL, - [PassportType] int NOT NULL, - [CustoID] varchar(19) NOT NULL, - [CustoAdress] varchar(30) NULL, - [CustoBirth] datetime NOT NULL, - [CustoType] int NOT NULL, - CONSTRAINT [PK__UESRINFO__7FA8BFA507C12930] PRIMARY KEY CLUSTERED ([CustoNo]) -WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) -ON [PRIMARY], - CONSTRAINT [CK__UESRINFO__CustoS__09A971A2] CHECK ([CustoSex]='男' OR [CustoSex]='女'), - CONSTRAINT [CK__UESRINFO__CustoI__0A9D95DB] CHECK (datalength([CustoID])<=(19)), - CONSTRAINT [CK_USERINFO_CustoType] CHECK ([CustoType]=(0) OR [CustoType]=(1) OR [CustoType]=(2) OR [CustoType]=(3)) -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[USERINFO] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[USERTYPE] ( - [UserType] int NOT NULL, - [TypeName] varchar(10) NOT NULL, - CONSTRAINT [UQ__USERTYPE__D4E7DFA80D7A0286] UNIQUE NONCLUSTERED ([TypeName] 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 -ALTER TABLE [dbo].[USERTYPE] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[WORKERCHECK] ( - [WorkerNo] varchar(20) NULL, - [CheckTime] datetime NULL, - [CheckWay] varchar(80) NULL, - [CheckState] int NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[WORKERCHECK] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[WorkerGoodBad] ( - [WorkNo] varchar(50) NULL, - [GBInfo] varchar(255) NULL, - [GBType] int NULL, - [GBOperation] varchar(200) NULL, - [GBTime] datetime NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[WorkerGoodBad] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[WORKERHISTORY] ( - [WorkerId] varchar(12) NOT NULL, - [StartDate] datetime NOT NULL, - [EndDate] datetime NOT NULL, - [Position] varchar(255) NOT NULL, - [Company] varchar(255) NOT NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[WORKERHISTORY] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[WORKERINFO] ( - [WorkerId] varchar(12) NOT NULL, - [WorkerName] varchar(50) NOT NULL, - [WorkerBirthday] datetime NOT NULL, - [WorkerSex] varchar(4) NOT NULL, - [WorkerTel] varchar(11) NOT NULL, - [WorkerClub] varchar(8) NOT NULL, - [WorkerAddress] varchar(45) NOT NULL, - [WorkerPosition] varchar(8) NOT NULL, - [CardID] varchar(18) NOT NULL, - [WorkerPwd] varchar(10) NOT NULL, - [WorkerTime] datetime NOT NULL, - [WorkerFace] varchar(4) NOT NULL, - [WorkerEducation] varchar(255) NOT NULL, - CONSTRAINT [PK__WORKERIN__077F569D2610A626] PRIMARY KEY CLUSTERED ([WorkerId]) -WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) -ON [PRIMARY], - CONSTRAINT [CK__WORKERINF__Worke__27F8EE98] CHECK ([WorkerSex]='男' OR [WorkerSex]='女'), - CONSTRAINT [CK__WORKERINF__Worke__28ED12D1] CHECK (datalength([CardID])<=(19)) -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[WORKERINFO] SET (LOCK_ESCALATION = TABLE) -GO - -CREATE TABLE [dbo].[WTINFO] ( - [RoomNo] varchar(8) NOT NULL, - [UseDate] datetime NOT NULL, - [EndDate] datetime NULL, - [WaterUse] decimal(6,2) NOT NULL, - [PowerUse] decimal(6,2) NOT NULL, - [Record] varchar(8) NOT NULL, - [CustoNo] varchar(15) NULL -) -ON [PRIMARY] -GO -ALTER TABLE [dbo].[WTINFO] SET (LOCK_ESCALATION = TABLE) -GO - -ALTER TABLE [dbo].[SPEND] ADD CONSTRAINT [FK__SPEND__CustoNo__00DF2177] FOREIGN KEY ([CustoNo]) REFERENCES [dbo].[USERINFO] ([CustoNo]) ON DELETE NO ACTION ON UPDATE NO ACTION -GO -ALTER TABLE [dbo].[WTINFO] ADD CONSTRAINT [FK__WTINFO__RoomNo__078C1F06] FOREIGN KEY ([RoomNo]) REFERENCES [dbo].[ROOM] ([RoomNo]) ON DELETE NO ACTION ON UPDATE NO ACTION -GO -ALTER TABLE [dbo].[WTINFO] ADD CONSTRAINT [FK__WTINFO__CustoNo__0880433F] FOREIGN KEY ([CustoNo]) REFERENCES [dbo].[USERINFO] ([CustoNo]) ON DELETE NO ACTION ON UPDATE NO ACTION -GO - diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/.keep" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/.keep" deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220623.jpg" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220623.jpg" deleted file mode 100644 index aa44b0b77306d36a3e8959fe591130f65c3da136..0000000000000000000000000000000000000000 Binary files "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220623.jpg" and /dev/null differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220721.jpg" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220721.jpg" deleted file mode 100644 index 0b4a3fbb2e8edae5a1c563a0b681f2bb7e3c4918..0000000000000000000000000000000000000000 Binary files "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220721.jpg" and /dev/null differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220729.jpg" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220729.jpg" deleted file mode 100644 index 65706c79a8f97ce8548832f5cc1a00f8ef7d8abb..0000000000000000000000000000000000000000 Binary files "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220729.jpg" and /dev/null differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220755.jpg" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220755.jpg" deleted file mode 100644 index 5e295a5c9ff8533f7eb43656239e6899a7cc258b..0000000000000000000000000000000000000000 Binary files "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220755.jpg" and /dev/null differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220812.jpg" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220812.jpg" deleted file mode 100644 index 7f1cc7592d1bd60bfc575d6a83f52433f20afd01..0000000000000000000000000000000000000000 Binary files "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220812.jpg" and /dev/null differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220830.jpg" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220830.jpg" deleted file mode 100644 index 29c410a6be657385d541bc221034fb3a8ceb411b..0000000000000000000000000000000000000000 Binary files "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/QQ\346\210\252\345\233\27620200406220830.jpg" and /dev/null differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\344\270\273\351\241\265.png" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\344\270\273\351\241\265.png" new file mode 100644 index 0000000000000000000000000000000000000000..f4305393befa2c55d2f60869f4aaf44179b94cfa Binary files /dev/null and "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\344\270\273\351\241\265.png" differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\344\272\272\344\272\213\347\256\241\347\220\206.png" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\344\272\272\344\272\213\347\256\241\347\220\206.png" new file mode 100644 index 0000000000000000000000000000000000000000..a0e00c41b17cd747ec736b63bf35f671c84a73bc Binary files /dev/null and "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\344\272\272\344\272\213\347\256\241\347\220\206.png" differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\205\245\344\275\217\346\210\277\351\227\264.png" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\205\245\344\275\217\346\210\277\351\227\264.png" new file mode 100644 index 0000000000000000000000000000000000000000..24239a187f677fc628dad66b29e97977b521407a Binary files /dev/null and "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\205\245\344\275\217\346\210\277\351\227\264.png" differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\205\254\345\221\212\346\227\245\345\277\227\351\241\265\351\235\242.png" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\205\254\345\221\212\346\227\245\345\277\227\351\241\265\351\235\242.png" new file mode 100644 index 0000000000000000000000000000000000000000..b44737c6882eb19730e9c11adc16f871718a2e36 Binary files /dev/null and "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\205\254\345\221\212\346\227\245\345\277\227\351\241\265\351\235\242.png" differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\211\215\345\217\260\345\225\206\345\223\201\347\256\241\347\220\206\351\241\265\351\235\242.png" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\211\215\345\217\260\345\225\206\345\223\201\347\256\241\347\220\206\351\241\265\351\235\242.png" new file mode 100644 index 0000000000000000000000000000000000000000..5fd6f5e4f55bb57ae5ee72aab49759e7464e6926 Binary files /dev/null and "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\211\215\345\217\260\345\225\206\345\223\201\347\256\241\347\220\206\351\241\265\351\235\242.png" differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\220\216\345\217\260\347\256\241\347\220\206\344\270\273\351\241\265.png" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\220\216\345\217\260\347\256\241\347\220\206\344\270\273\351\241\265.png" new file mode 100644 index 0000000000000000000000000000000000000000..9e59901df5fff2835caff15795ca674d0d2a7786 Binary files /dev/null and "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\220\216\345\217\260\347\256\241\347\220\206\344\270\273\351\241\265.png" differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\220\216\345\217\260\347\256\241\347\220\206\351\241\265\351\235\242.png" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\220\216\345\217\260\347\256\241\347\220\206\351\241\265\351\235\242.png" new file mode 100644 index 0000000000000000000000000000000000000000..3f8c35569c390be1f6de94d1671cc2c4f73d6576 Binary files /dev/null and "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\220\216\345\217\260\347\256\241\347\220\206\351\241\265\351\235\242.png" differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\256\236\346\227\266\346\210\277\346\200\201\345\233\276.png" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\256\236\346\227\266\346\210\277\346\200\201\345\233\276.png" new file mode 100644 index 0000000000000000000000000000000000000000..831b000c1ae38e19757eb181b12462e4d1fc5435 Binary files /dev/null and "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\345\256\236\346\227\266\346\210\277\346\200\201\345\233\276.png" differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\347\273\223\347\256\227\347\225\214\351\235\242.png" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\347\273\223\347\256\227\347\225\214\351\235\242.png" new file mode 100644 index 0000000000000000000000000000000000000000..1d8974a73f0f49abd173287e011977114e6a2cba Binary files /dev/null and "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\347\273\223\347\256\227\347\225\214\351\235\242.png" differ diff --git "a/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\351\205\222\345\272\227\347\233\210\345\210\251\346\203\205\345\206\265\346\212\245\350\241\250.png" "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\351\205\222\345\272\227\347\233\210\345\210\251\346\203\205\345\206\265\346\212\245\350\241\250.png" new file mode 100644 index 0000000000000000000000000000000000000000..57a8aeea9f1f1d4eb43a670c16418d5598a31538 Binary files /dev/null and "b/\351\241\271\347\233\256\346\225\210\346\236\234\345\233\276/\351\205\222\345\272\227\347\233\210\345\210\251\346\203\205\345\206\265\346\212\245\350\241\250.png" differ