From ae74fc8d508cf14b2827d0c6f470f8ddcb5d24db Mon Sep 17 00:00:00 2001 From: winter Date: Sat, 18 Mar 2023 22:18:44 +0800 Subject: [PATCH 1/7] fix business --- .../controller/sys/WxBusinessController.java | 16 +- .../db/migration/V20230323000001_business.sql | 1800 +++++++++++++++++ .../com/iformall/domain/po/WxBusiness.java | 4 + .../com/iformall/domain/po/WxMerchant.java | 6 +- .../com/iformall/domain/po/WxSubBusiness.java | 35 - .../mapper/TtGoodsCategoryMapper.java | 1 - .../iformall/mapper/WxSubBusinessMapper.java | 14 - .../service/WxSubBusinessService.java | 44 - .../helper/WxCUserTagsServiceHelper.java | 2 - .../impl/WxSubBusinessServiceImpl.java | 47 - .../resources/mapper/WxBusinessMapper.xml | 12 +- .../resources/mapper/WxSubBusinessMapper.xml | 62 - .../controller/sys/WxBusinessController.java | 13 - 13 files changed, 1827 insertions(+), 229 deletions(-) delete mode 100644 mallinkService/src/main/java/com/iformall/domain/po/WxSubBusiness.java delete mode 100644 mallinkService/src/main/java/com/iformall/mapper/WxSubBusinessMapper.java delete mode 100644 mallinkService/src/main/java/com/iformall/service/WxSubBusinessService.java delete mode 100644 mallinkService/src/main/java/com/iformall/service/impl/WxSubBusinessServiceImpl.java delete mode 100644 mallinkService/src/main/resources/mapper/WxSubBusinessMapper.xml diff --git a/mallinkAdmin/src/main/java/com/iformall/controller/sys/WxBusinessController.java b/mallinkAdmin/src/main/java/com/iformall/controller/sys/WxBusinessController.java index c316a0bc4..05acebf8c 100644 --- a/mallinkAdmin/src/main/java/com/iformall/controller/sys/WxBusinessController.java +++ b/mallinkAdmin/src/main/java/com/iformall/controller/sys/WxBusinessController.java @@ -5,11 +5,10 @@ import com.iformall.common.ResultData; import com.iformall.controller.base.BaseController; import com.iformall.domain.po.base.TenantEntity; import com.iformall.domain.po.WxBusiness; -import com.iformall.domain.po.WxSubBusiness; import com.iformall.domain.vo.WxBusinessDataVo; +import com.iformall.enums.EnumYesOrNo; import com.iformall.service.ExcelService; import com.iformall.service.WxBusinessService; -import com.iformall.service.WxSubBusinessService; import com.iformall.utils.DateUtils; import io.swagger.annotations.Api; import io.swagger.annotations.ApiImplicitParam; @@ -33,8 +32,6 @@ public class WxBusinessController extends BaseController { @Autowired private WxBusinessService wxBusinessService; @Autowired - private WxSubBusinessService wxSubBusinessService; - @Autowired private ExcelService excelService; @@ -49,10 +46,15 @@ public class WxBusinessController extends BaseController { @ApiOperation("子业态表接口") @GetMapping("listSub") - @SystemControllerLog(description = "子业态") - public ResultData listSub(@ModelAttribute WxSubBusiness wxSubBusiness) { + @ApiImplicitParams({ + @ApiImplicitParam(name = "businessId", value = "页数", dataType = "int", paramType = "query", required = true)}) + public ResultData listSub(Integer businessId) { logger.debug("[" + getIpAddr() + "] WxBusinessController::getList"); - final List busList = wxSubBusinessService.findList(wxSubBusiness); + WxBusiness bq = new WxBusiness(); + bq.setFinalTenantId(this.getTenantInfo().getFinalTenantId()); + bq.setIsDel(EnumYesOrNo.NO.getCode()); + bq.setParentId(businessId); + final List busList = wxBusinessService.findList(bq); return new ResultData(busList); } diff --git a/mallinkAdmin/src/main/resources/db/migration/V20230323000001_business.sql b/mallinkAdmin/src/main/resources/db/migration/V20230323000001_business.sql index 8c6d47f47..d7b665e5d 100644 --- a/mallinkAdmin/src/main/resources/db/migration/V20230323000001_business.sql +++ b/mallinkAdmin/src/main/resources/db/migration/V20230323000001_business.sql @@ -6,6 +6,10 @@ alter table wx_business add column final_tenant_id varchar(5) comment ''; alter table wx_business add column is_system int(1) not null default 0 comment '是否系统内置1-是,0-否'; +alter table wx_business add column parent_id int(11) comment '父编码'; + +alter table wx_business add column is_del int(1) not null default 0 comment '是否删除1-是,0-否'; + wx_business 主见改自增 create table wx_business_0 like wx_business; @@ -265,6 +269,34 @@ VALUES (10,'家居',1,'2018-08-10 22:15:17','2019-04-09 19:32:30','1029',0), (11,'数码家电',1,'2019-08-01 16:42:40','2019-08-01 16:42:40','1029',0); +INSERT INTO `wx_business_30` (`id`, `title`, `type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) +VALUES + (1,'餐饮',1,'2018-08-08 17:58:54','2018-08-20 19:07:49','1030',0), + (2,'娱乐',1,'2018-08-10 22:13:38','2018-08-23 15:57:54','1030',0), + (3,'服饰',1,'2018-08-10 22:14:14','2018-08-23 15:57:56','1030',0), + (4,'亲子',1,'2018-08-10 22:15:00','2018-08-23 15:57:57','1030',0), + (5,'超市',1,'2018-08-10 22:15:17','2018-08-23 15:57:58','1030',0), + (6,'其他',1,'2028-08-10 22:15:17','2023-03-17 22:14:21','1030',1), + (7,'美妆',1,'2018-08-10 22:15:17','2019-04-09 19:32:30','1030',0), + (8,'珠宝',1,'2018-08-10 22:15:17','2019-04-09 19:32:30','1030',0), + (9,'服务',1,'2018-08-10 22:15:17','2019-04-09 19:32:30','1030',0), + (10,'家居',1,'2018-08-10 22:15:17','2019-04-09 19:32:30','1030',0), + (11,'数码家电',1,'2019-08-01 16:42:40','2019-08-01 16:42:40','1030',0); + +INSERT INTO `wx_business_31` (`id`, `title`, `type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) +VALUES + (1,'餐饮',1,'2018-08-08 17:58:54','2018-08-20 19:07:49','1031',0), + (2,'娱乐',1,'2018-08-10 22:13:38','2018-08-23 15:57:54','1031',0), + (3,'服饰',1,'2018-08-10 22:14:14','2018-08-23 15:57:56','1031',0), + (4,'亲子',1,'2018-08-10 22:15:00','2018-08-23 15:57:57','1031',0), + (5,'超市',1,'2018-08-10 22:15:17','2018-08-23 15:57:58','1031',0), + (6,'其他',1,'2028-08-10 22:15:17','2023-03-17 22:14:21','1031',1), + (7,'美妆',1,'2018-08-10 22:15:17','2019-04-09 19:32:30','1031',0), + (8,'珠宝',1,'2018-08-10 22:15:17','2019-04-09 19:32:30','1031',0), + (9,'服务',1,'2018-08-10 22:15:17','2019-04-09 19:32:30','1031',0), + (10,'家居',1,'2018-08-10 22:15:17','2019-04-09 19:32:30','1031',0), + (11,'数码家电',1,'2019-08-01 16:42:40','2019-08-01 16:42:40','1031',0); + INSERT INTO `wx_business_37` (`id`, `title`, `type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES (1,'餐饮',1,'2018-08-08 17:58:54','2018-08-20 19:07:49','1037',0), @@ -462,6 +494,1774 @@ VALUES (11,'数码家电',1,'2019-08-01 16:42:40','2019-08-01 16:42:40','1063',0); + +INSERT INTO `wx_business_89`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('789',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','789',0), +(CONCAT('789',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','789',0), +(CONCAT('789',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','789',0), +(CONCAT('789',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','789',0), +(CONCAT('789',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','789',0), +(CONCAT('789',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','789',0), +(CONCAT('789',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','789',0); + +INSERT INTO `wx_business_3`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1003',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1003',0), +(CONCAT('1003',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1003',0), +(CONCAT('1003',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1003',0), +(CONCAT('1003',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1003',0), +(CONCAT('1003',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1003',0), +(CONCAT('1003',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1003',0), +(CONCAT('1003',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1003',0); + +INSERT INTO `wx_business_9`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1009',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1009',0), +(CONCAT('1009',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1009',0), +(CONCAT('1009',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1009',0), +(CONCAT('1009',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1009',0), +(CONCAT('1009',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1009',0), +(CONCAT('1009',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1009',0), +(CONCAT('1009',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1009',0); + +INSERT INTO `wx_business_10`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1010',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1010',0), +(CONCAT('1010',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1010',0), +(CONCAT('1010',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1010',0), +(CONCAT('1010',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1010',0), +(CONCAT('1010',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1010',0), +(CONCAT('1010',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1010',0), +(CONCAT('1010',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1010',0); + +INSERT INTO `wx_business_12`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1012',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1012',0), +(CONCAT('1012',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1012',0), +(CONCAT('1012',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1012',0), +(CONCAT('1012',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1012',0), +(CONCAT('1012',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1012',0), +(CONCAT('1012',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1012',0), +(CONCAT('1012',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1012',0); + +INSERT INTO `wx_business_13`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1013',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1013',0), +(CONCAT('1013',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1013',0), +(CONCAT('1013',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1013',0), +(CONCAT('1013',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1013',0), +(CONCAT('1013',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1013',0), +(CONCAT('1013',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1013',0), +(CONCAT('1013',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1013',0); + +INSERT INTO `wx_business_19`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1019',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1019',0), +(CONCAT('1019',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1019',0), +(CONCAT('1019',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1019',0), +(CONCAT('1019',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1019',0), +(CONCAT('1019',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1019',0), +(CONCAT('1019',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1019',0), +(CONCAT('1019',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1019',0); + +INSERT INTO `wx_business_24`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1024',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1024',0), +(CONCAT('1024',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1024',0), +(CONCAT('1024',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1024',0), +(CONCAT('1024',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1024',0), +(CONCAT('1024',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1024',0), +(CONCAT('1024',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1024',0), +(CONCAT('1024',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1024',0); + +INSERT INTO `wx_business_29`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1029',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1029',0), +(CONCAT('1029',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1029',0), +(CONCAT('1029',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1029',0), +(CONCAT('1029',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1029',0), +(CONCAT('1029',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1029',0), +(CONCAT('1029',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1029',0), +(CONCAT('1029',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1029',0); + +INSERT INTO `wx_business_30`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1030',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1030',0), +(CONCAT('1030',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1030',0), +(CONCAT('1030',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1030',0), +(CONCAT('1030',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1030',0), +(CONCAT('1030',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1030',0), +(CONCAT('1030',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1030',0), +(CONCAT('1030',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1030',0); + +INSERT INTO `wx_business_31`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1031',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1031',0), +(CONCAT('1031',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1031',0), +(CONCAT('1031',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1031',0), +(CONCAT('1031',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1031',0), +(CONCAT('1031',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1031',0), +(CONCAT('1031',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1031',0), +(CONCAT('1031',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1031',0); + +INSERT INTO `wx_business_38`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1038',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1038',0), +(CONCAT('1038',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1038',0), +(CONCAT('1038',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1038',0), +(CONCAT('1038',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1038',0), +(CONCAT('1038',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1038',0), +(CONCAT('1038',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1038',0), +(CONCAT('1038',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1038',0); + +INSERT INTO `wx_business_39`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1039',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1039',0), +(CONCAT('1039',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1039',0), +(CONCAT('1039',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1039',0), +(CONCAT('1039',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1039',0), +(CONCAT('1039',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1039',0), +(CONCAT('1039',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1039',0), +(CONCAT('1039',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1039',0); + +INSERT INTO `wx_business_40`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1040',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1040',0), +(CONCAT('1040',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1040',0), +(CONCAT('1040',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1040',0), +(CONCAT('1040',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1040',0), +(CONCAT('1040',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1040',0), +(CONCAT('1040',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1040',0), +(CONCAT('1040',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1040',0); + +INSERT INTO `wx_business_42`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1042',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1042',0), +(CONCAT('1042',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1042',0), +(CONCAT('1042',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1042',0), +(CONCAT('1042',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1042',0), +(CONCAT('1042',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1042',0), +(CONCAT('1042',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1042',0), +(CONCAT('1042',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1042',0); + +INSERT INTO `wx_business_43`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1043',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1043',0), +(CONCAT('1043',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1043',0), +(CONCAT('1043',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1043',0), +(CONCAT('1043',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1043',0), +(CONCAT('1043',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1043',0), +(CONCAT('1043',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1043',0), +(CONCAT('1043',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1043',0); + +INSERT INTO `wx_business_44`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1044',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1044',0), +(CONCAT('1044',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1044',0), +(CONCAT('1044',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1044',0), +(CONCAT('1044',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1044',0), +(CONCAT('1044',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1044',0), +(CONCAT('1044',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1044',0), +(CONCAT('1044',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1044',0); + +INSERT INTO `wx_business_45`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1045',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1045',0), +(CONCAT('1045',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1045',0), +(CONCAT('1045',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1045',0), +(CONCAT('1045',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1045',0), +(CONCAT('1045',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1045',0), +(CONCAT('1045',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1045',0), +(CONCAT('1045',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1045',0); + +INSERT INTO `wx_business_46`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1046',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1046',0), +(CONCAT('1046',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1046',0), +(CONCAT('1046',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1046',0), +(CONCAT('1046',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1046',0), +(CONCAT('1046',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1046',0), +(CONCAT('1046',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1046',0), +(CONCAT('1046',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1046',0); + +INSERT INTO `wx_business_50`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1050',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1050',0), +(CONCAT('1050',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1050',0), +(CONCAT('1050',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1050',0), +(CONCAT('1050',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1050',0), +(CONCAT('1050',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1050',0), +(CONCAT('1050',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1050',0), +(CONCAT('1050',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1050',0); + +INSERT INTO `wx_business_62`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1062',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1062',0), +(CONCAT('1062',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1062',0), +(CONCAT('1062',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1062',0), +(CONCAT('1062',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1062',0), +(CONCAT('1062',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1062',0), +(CONCAT('1062',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1062',0), +(CONCAT('1062',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1062',0); + +INSERT INTO `wx_business_63`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1063',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1063',0), +(CONCAT('1063',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1063',0), +(CONCAT('1063',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1063',0), +(CONCAT('1063',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1063',0), +(CONCAT('1063',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1063',0), +(CONCAT('1063',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1063',0), +(CONCAT('1063',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1063',0); + +INSERT INTO `wx_business_28`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1028',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1028',0), +(CONCAT('1028',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1028',0), +(CONCAT('1028',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1028',0), +(CONCAT('1028',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1028',0), +(CONCAT('1028',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1028',0), +(CONCAT('1028',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1028',0), +(CONCAT('1028',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1028',0); + +INSERT INTO `wx_business_25`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1025',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1025',0), +(CONCAT('1025',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1025',0), +(CONCAT('1025',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1025',0), +(CONCAT('1025',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1025',0), +(CONCAT('1025',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1025',0), +(CONCAT('1025',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1025',0), +(CONCAT('1025',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1025',0); + +INSERT INTO `wx_business_37`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1037',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1037',0), +(CONCAT('1037',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1037',0), +(CONCAT('1037',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1037',0), +(CONCAT('1037',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1037',0), +(CONCAT('1037',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1037',0), +(CONCAT('1037',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1037',0), +(CONCAT('1037',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1037',0); + +INSERT INTO `wx_business_48`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1048',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1048',0), +(CONCAT('1048',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1048',0), +(CONCAT('1048',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1048',0), +(CONCAT('1048',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1048',0), +(CONCAT('1048',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1048',0), +(CONCAT('1048',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1048',0), +(CONCAT('1048',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1048',0); + +INSERT INTO `wx_business_52`(`id`, `title`, `parent_id`,`type`, `create_date`, `update_date`, `final_tenant_id`, `is_system`) VALUES +(CONCAT('1052',1 ),'西餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',2 ),'日本料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',3 ),'韩国料理',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',4 ),'东南亚菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',5 ),'自助餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',6 ),'火锅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',7 ),'特色菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',8 ),'私房菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',9 ),'素食',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',10),'烧烤',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',11),'小吃快餐',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',12),'川菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',13),'湘菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',14),'鲁菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',15),'粤菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',16),'湖北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',17),'云贵菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',18),'东北菜',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',19),'面包店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',20),'咖啡厅',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',21),'饮品店',1,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',22),'男装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',23),'女装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',24),'童装',3,1,'2019-04-09 17:09:07','2019-04-09 17:09:07','1052',0), +(CONCAT('1052',25),'鞋帽',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',26),'配饰',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',27),'内衣',3,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',28),'亲子摄影',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',29),'亲子游乐',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',30),'幼儿教育',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',31),'孕产护理',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',32),'童车童床',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',33),'玩具',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',34),'喂养用品',4,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',35),'面部护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',36),'香水彩妆',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',37),'男士护肤',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',38),'营养保健',7,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',39),'黄金',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',40),'钻石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',41),'时尚饰品',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',42),'翡翠玉石',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',43),'钟表',8,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',44),'KTV',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',45),'轰趴馆',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',46),'DIY手工',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',47),'文化艺术',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',48),'游艺娱乐',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',49),'桌游',2,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',50),'运动健身',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',51),'婚纱摄影',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',52),'美容美发',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',53),'学习培训',9,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',54),'家具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',55),'家饰',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',56),'家纺',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',57),'生活用品',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',58),'厨具',10,1,'2019-04-09 17:09:08','2019-04-09 17:09:08','1052',0), +(CONCAT('1052',59),'家用电器',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1052',0), +(CONCAT('1052',60),'数码产品',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1052',0), +(CONCAT('1052',61),'手机通信',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1052',0), +(CONCAT('1052',62),'电脑办公',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1052',0), +(CONCAT('1052',63),'影音娱乐',11,1,'2019-08-08 22:11:35','2019-08-08 22:11:35','1052',0); + + + +update wx_merchant set sub_business_id=concat(tenant_id,sub_business_id) where sub_business_id is not null and tenant_id in ('789','1003','1009','1010','1012','1013','1019','1024','1029','1030','1031', +'1038','1039','1040','1042','1043','1044','1045','1046','1050','1062','1063'); + +update wx_merchant set sub_business_id=concat('1028',sub_business_id) where sub_business_id is not null and tenant_id in ('1008','1020'); +update wx_merchant set sub_business_id=concat('1025',sub_business_id) where sub_business_id is not null and tenant_id in ('1026','1027'); +update wx_merchant set sub_business_id=concat('1037',sub_business_id) where sub_business_id is not null and tenant_id in ('1036','1051'); +update wx_merchant set sub_business_id=concat('1048',sub_business_id) where sub_business_id is not null and tenant_id in ('1047'); +update wx_merchant set sub_business_id=concat('1052',sub_business_id) where sub_business_id is not null and tenant_id in ('1049','1053','1054','1055','1056','1057','1058','1059'); + + drop table wx_business; #初始化数据加入id=constatn.default_business的记录 diff --git a/mallinkService/src/main/java/com/iformall/domain/po/WxBusiness.java b/mallinkService/src/main/java/com/iformall/domain/po/WxBusiness.java index b828c6dbb..a6d4271e4 100644 --- a/mallinkService/src/main/java/com/iformall/domain/po/WxBusiness.java +++ b/mallinkService/src/main/java/com/iformall/domain/po/WxBusiness.java @@ -27,6 +27,10 @@ public class WxBusiness extends TenantEntityWithoutFinalTenantId { private Date updateDate; @io.swagger.annotations.ApiModelProperty(value="是否内置EnumYesOrNo",name="isSystem") private Integer isSystem; + @io.swagger.annotations.ApiModelProperty(value="父编码",name="parentId") + private Integer parentId; + @io.swagger.annotations.ApiModelProperty(value="是否删除EnumYesOrNo",name="isDel") + private Integer isDel; @TableField(exist = false) diff --git a/mallinkService/src/main/java/com/iformall/domain/po/WxMerchant.java b/mallinkService/src/main/java/com/iformall/domain/po/WxMerchant.java index f522fe2b1..d4b3cebd1 100644 --- a/mallinkService/src/main/java/com/iformall/domain/po/WxMerchant.java +++ b/mallinkService/src/main/java/com/iformall/domain/po/WxMerchant.java @@ -222,9 +222,9 @@ public class WxMerchant extends TenantEntity { // return EnumBusiness.getEnumMessage(businessId); // } - public String getSubBusinessName() { - return EnumSubBusiness.getEnumMessage(subBusinessId); - } +// public String getSubBusinessName() { +// return EnumSubBusiness.getEnumMessage(subBusinessId); +// } @TableField(exist = false) @io.swagger.annotations.ApiModelProperty(value="单价",name="price") diff --git a/mallinkService/src/main/java/com/iformall/domain/po/WxSubBusiness.java b/mallinkService/src/main/java/com/iformall/domain/po/WxSubBusiness.java deleted file mode 100644 index f94dafef8..000000000 --- a/mallinkService/src/main/java/com/iformall/domain/po/WxSubBusiness.java +++ /dev/null @@ -1,35 +0,0 @@ -package com.iformall.domain.po; - -import com.baomidou.mybatisplus.annotation.TableName; -import com.iformall.domain.po.base.BaseEntity; -import lombok.Data; -import lombok.EqualsAndHashCode; - -import java.util.Date; - -@TableName(value = "wx_sub_business") -@Data -@EqualsAndHashCode(callSuper = true) -public class WxSubBusiness extends BaseEntity { - private static final long serialVersionUID = 1L; - - protected Integer id; - - - @io.swagger.annotations.ApiModelProperty(value="子业态名",name="title") - private String title; - - @io.swagger.annotations.ApiModelProperty(value="业态ID",name="businessId") - private Integer businessId; - - @io.swagger.annotations.ApiModelProperty(value="业态名",name="businessTitle") - private String businessTitle; - - @io.swagger.annotations.ApiModelProperty(value="创建时间",name="createDate") - private Date createDate; - - @io.swagger.annotations.ApiModelProperty(value="更新时间",name="updateDate") - private Date updateDate; - - -} diff --git a/mallinkService/src/main/java/com/iformall/mapper/TtGoodsCategoryMapper.java b/mallinkService/src/main/java/com/iformall/mapper/TtGoodsCategoryMapper.java index 7ab90384b..08cbe72c9 100644 --- a/mallinkService/src/main/java/com/iformall/mapper/TtGoodsCategoryMapper.java +++ b/mallinkService/src/main/java/com/iformall/mapper/TtGoodsCategoryMapper.java @@ -2,7 +2,6 @@ package com.iformall.mapper; import com.iformall.common.CommonMapper; import com.iformall.domain.po.TtGoodsCategory; -import com.iformall.domain.po.WxSubBusiness; import java.util.List; diff --git a/mallinkService/src/main/java/com/iformall/mapper/WxSubBusinessMapper.java b/mallinkService/src/main/java/com/iformall/mapper/WxSubBusinessMapper.java deleted file mode 100644 index 58ddd2cf2..000000000 --- a/mallinkService/src/main/java/com/iformall/mapper/WxSubBusinessMapper.java +++ /dev/null @@ -1,14 +0,0 @@ -package com.iformall.mapper; - -import com.iformall.common.CommonMapper; -import com.iformall.domain.po.WxSubBusiness; - -import java.util.List; - -public interface WxSubBusinessMapper extends CommonMapper { - - List findList(WxSubBusiness wxSubBusiness); - - List findListAll(); - -} diff --git a/mallinkService/src/main/java/com/iformall/service/WxSubBusinessService.java b/mallinkService/src/main/java/com/iformall/service/WxSubBusinessService.java deleted file mode 100644 index 1369f3d5d..000000000 --- a/mallinkService/src/main/java/com/iformall/service/WxSubBusinessService.java +++ /dev/null @@ -1,44 +0,0 @@ -package com.iformall.service; - -import com.github.pagehelper.PageInfo; -import com.iformall.domain.po.WxSubBusiness; - -import java.util.List; - -public interface WxSubBusinessService { - - /** - * 根据实体查询分页列表 - * - * @param record - * @param pageIndex - * @param pageSize - * @return - */ - PageInfo listAsPage(WxSubBusiness record, Integer pageIndex, Integer pageSize); - - /** - * 根据实体查询列表 - * - * @param record - * @return - */ - List findList(WxSubBusiness record); - - /** - * 查询全部列表 - * - * @return - */ - List findListAll(); - - /** - * 根据Id获得实体 - * - * @param id - * @return - */ - WxSubBusiness getById(Integer id); - - -} diff --git a/mallinkService/src/main/java/com/iformall/service/helper/WxCUserTagsServiceHelper.java b/mallinkService/src/main/java/com/iformall/service/helper/WxCUserTagsServiceHelper.java index 61cc883ef..a5d3c94d8 100644 --- a/mallinkService/src/main/java/com/iformall/service/helper/WxCUserTagsServiceHelper.java +++ b/mallinkService/src/main/java/com/iformall/service/helper/WxCUserTagsServiceHelper.java @@ -44,8 +44,6 @@ public class WxCUserTagsServiceHelper{ @Autowired WxCardSpendMapper wxCardSpendMapper; @Autowired - WxSubBusinessMapper wxSubBusinessMapper; - @Autowired WxCUserBasicChildMapper wxCUserBasicChildMapper; @Autowired WxCouponMapper wxCouponMapper; diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxSubBusinessServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxSubBusinessServiceImpl.java deleted file mode 100644 index 671d13bf2..000000000 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxSubBusinessServiceImpl.java +++ /dev/null @@ -1,47 +0,0 @@ -package com.iformall.service.impl; - -import com.github.pagehelper.PageHelper; -import com.github.pagehelper.PageInfo; -import com.iformall.common.ResultData; -import com.iformall.domain.po.WxBusiness; -import com.iformall.domain.po.WxSubBusiness; -import com.iformall.mapper.WxBusinessMapper; -import com.iformall.mapper.WxSubBusinessMapper; -import com.iformall.service.WxBusinessService; -import com.iformall.service.WxSubBusinessService; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; - -import java.util.List; - -@Service -public class WxSubBusinessServiceImpl implements WxSubBusinessService { - private final Logger logger = LoggerFactory.getLogger(this.getClass()); - - @Autowired - WxSubBusinessMapper wxSubBusinessMapper; - - @Override - public PageInfo listAsPage(WxSubBusiness record, Integer pageIndex, Integer pageSize) { - return PageHelper.startPage(pageIndex, pageSize).doSelectPageInfo(() -> wxSubBusinessMapper.findList(record)); - } - - @Override - public List findList(WxSubBusiness record) { - return wxSubBusinessMapper.findList(record); - } - - @Override - public List findListAll() { - return wxSubBusinessMapper.findListAll(); - } - - - @Override - public WxSubBusiness getById(Integer id) { - return wxSubBusinessMapper.selectById(id); - } - -} diff --git a/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml b/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml index 61d38e652..f23aba428 100644 --- a/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml +++ b/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml @@ -9,10 +9,12 @@ + + - `id`,`title`,`type`,`create_date`,`update_date`,`final_tenant_id`,`is_system` + `id`,`title`,`type`,`create_date`,`update_date`,`final_tenant_id`,`is_system`,`parent_id`,`is_del` @@ -45,6 +47,14 @@ and `is_system` = #{isSystem} + + + and `parent_id` = #{parentId} + + + + and `is_del` = #{isDel} + and id in diff --git a/mallinkService/src/main/resources/mapper/WxSubBusinessMapper.xml b/mallinkService/src/main/resources/mapper/WxSubBusinessMapper.xml deleted file mode 100644 index fbcfb05a2..000000000 --- a/mallinkService/src/main/resources/mapper/WxSubBusinessMapper.xml +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - `id`,`title`,`business_id`,`business_title`,`create_date`,`update_date` - - - - where 1 = 1 - - - and `id` = #{id} - - - - and `title` like concat('%', #{title},'%') - - - - and `business_id` = #{businessId} - - - - and `business_title` like concat('%', #{businessTitle},'%') - - - - and `create_date` = #{createDate} - - - - and `update_date` = #{updateDate} - - - and id in - - #{idItem} - - - order by ${sortColumns} - - - - - - - diff --git a/mallinkTTAdmin/src/main/java/com/iformall/controller/sys/WxBusinessController.java b/mallinkTTAdmin/src/main/java/com/iformall/controller/sys/WxBusinessController.java index de9599f5d..4d19e2a5b 100644 --- a/mallinkTTAdmin/src/main/java/com/iformall/controller/sys/WxBusinessController.java +++ b/mallinkTTAdmin/src/main/java/com/iformall/controller/sys/WxBusinessController.java @@ -5,11 +5,9 @@ import com.iformall.common.ResultData; import com.iformall.controller.base.BaseController; import com.iformall.domain.po.base.TenantEntity; import com.iformall.domain.po.WxBusiness; -import com.iformall.domain.po.WxSubBusiness; import com.iformall.domain.vo.WxBusinessDataVo; import com.iformall.service.ExcelService; import com.iformall.service.WxBusinessService; -import com.iformall.service.WxSubBusinessService; import com.iformall.utils.DateUtils; import io.swagger.annotations.Api; import io.swagger.annotations.ApiImplicitParam; @@ -33,8 +31,6 @@ public class WxBusinessController extends BaseController { @Autowired private WxBusinessService wxBusinessService; @Autowired - private WxSubBusinessService wxSubBusinessService; - @Autowired private ExcelService excelService; @@ -47,15 +43,6 @@ public class WxBusinessController extends BaseController { return new ResultData(busList); } - @ApiOperation("子业态表接口") - @GetMapping("listSub") - @SystemControllerLog(description = "子业态") - public ResultData listSub(@ModelAttribute WxSubBusiness wxSubBusiness) { - logger.debug("[" + getIpAddr() + "] WxBusinessController::getList"); - final List busList = wxSubBusinessService.findList(wxSubBusiness); - return new ResultData(busList); - } - @ApiOperation("业态分析接口") @GetMapping("businessDataList") @SystemControllerLog(description = "业态分析接口") From 63118d399c21ccb5fe6536651230e09af5c6ce4d Mon Sep 17 00:00:00 2001 From: winter Date: Sun, 19 Mar 2023 19:31:46 +0800 Subject: [PATCH 2/7] fix business --- .../db/migration/V20230323000001_business.sql | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/mallinkAdmin/src/main/resources/db/migration/V20230323000001_business.sql b/mallinkAdmin/src/main/resources/db/migration/V20230323000001_business.sql index d7b665e5d..8f66aac5a 100644 --- a/mallinkAdmin/src/main/resources/db/migration/V20230323000001_business.sql +++ b/mallinkAdmin/src/main/resources/db/migration/V20230323000001_business.sql @@ -2261,8 +2261,57 @@ update wx_merchant set sub_business_id=concat('1037',sub_business_id) where sub_ update wx_merchant set sub_business_id=concat('1048',sub_business_id) where sub_business_id is not null and tenant_id in ('1047'); update wx_merchant set sub_business_id=concat('1052',sub_business_id) where sub_business_id is not null and tenant_id in ('1049','1053','1054','1055','1056','1057','1058','1059'); +UPDATE wx_coupon_89 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_3 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_9 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_10 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_12 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_13 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_19 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_24 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_29 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_30 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_31 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_38 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_39 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_40 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_42 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_43 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_44 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_45 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_46 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_50 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_62 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_63 SET sub_business=CONCAT(tenant_id,sub_business) WHERE sub_business IS NOT NULL; + +UPDATE wx_coupon_28 SET sub_business=CONCAT('1028',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_8 SET sub_business=CONCAT('1028',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_20 SET sub_business=CONCAT('1028',sub_business) WHERE sub_business IS NOT NULL; + +UPDATE wx_coupon_25 SET sub_business=CONCAT('1025',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_26 SET sub_business=CONCAT('1025',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_27 SET sub_business=CONCAT('1025',sub_business) WHERE sub_business IS NOT NULL; + +UPDATE wx_coupon_37 SET sub_business=CONCAT('1037',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_36 SET sub_business=CONCAT('1037',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_51 SET sub_business=CONCAT('1037',sub_business) WHERE sub_business IS NOT NULL; + +UPDATE wx_coupon_48 SET sub_business=CONCAT('1048',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_47 SET sub_business=CONCAT('1048',sub_business) WHERE sub_business IS NOT NULL; + +UPDATE wx_coupon_52 SET sub_business=CONCAT('1052',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_49 SET sub_business=CONCAT('1052',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_53 SET sub_business=CONCAT('1052',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_54 SET sub_business=CONCAT('1052',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_55 SET sub_business=CONCAT('1052',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_56 SET sub_business=CONCAT('1052',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_57 SET sub_business=CONCAT('1052',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_58 SET sub_business=CONCAT('1052',sub_business) WHERE sub_business IS NOT NULL; +UPDATE wx_coupon_59 SET sub_business=CONCAT('1052',sub_business) WHERE sub_business IS NOT NULL; + drop table wx_business; +drop table wx_sub_business; #初始化数据加入id=constatn.default_business的记录 #由集团版拆分到单广场,需要把wx_business拆分 From 1d1ceb64011ca06da172f082097b3cd7330e61c8 Mon Sep 17 00:00:00 2001 From: winter Date: Sun, 19 Mar 2023 20:48:46 +0800 Subject: [PATCH 3/7] fix press --- .../db/migration/V20230323000001_press.sql | 101 ++++++++++++++++++ .../controller/WxPayOrderController.java | 3 + .../java/com/iformall/domain/po/WxCoupon.java | 3 + .../service/helper/WxOrderServiceHelper.java | 63 +++++++++++ .../service/impl/WxOrderServiceImpl.java | 35 +++--- .../service/impl/WxPayOrderServiceImpl.java | 12 +++ .../main/resources/mapper/WxCouponMapper.xml | 16 ++- 7 files changed, 208 insertions(+), 25 deletions(-) create mode 100644 mallinkAdmin/src/main/resources/db/migration/V20230323000001_press.sql create mode 100644 mallinkService/src/main/java/com/iformall/service/helper/WxOrderServiceHelper.java diff --git a/mallinkAdmin/src/main/resources/db/migration/V20230323000001_press.sql b/mallinkAdmin/src/main/resources/db/migration/V20230323000001_press.sql new file mode 100644 index 000000000..08d57f8fe --- /dev/null +++ b/mallinkAdmin/src/main/resources/db/migration/V20230323000001_press.sql @@ -0,0 +1,101 @@ +alter table wx_coupon_0 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_1 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_2 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_3 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_4 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_5 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_6 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_7 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_8 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_9 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_10 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_11 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_12 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_13 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_14 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_15 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_16 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_17 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_18 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_19 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_20 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_21 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_22 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_23 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_24 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_25 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_26 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_27 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_28 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_29 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_30 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_31 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_32 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_33 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_34 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_35 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_36 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_37 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_38 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_39 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_40 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_41 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_42 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_43 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_44 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_45 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_46 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_47 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_48 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_49 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_50 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_51 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_52 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_53 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_54 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_55 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_56 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_57 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_58 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_59 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_60 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_61 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_62 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_63 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_64 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_65 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_66 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_67 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_68 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_69 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_70 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_71 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_72 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_73 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_74 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_75 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_76 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_77 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_78 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_79 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_80 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_81 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_82 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_83 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_84 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_85 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_86 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_87 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_88 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_89 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_90 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_91 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_92 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_93 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_94 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_95 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_96 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_97 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_98 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; +alter table wx_coupon_99 add column press_pay_reduce_stock int(1) not null default 0 comment '砍价支付扣库存EnumYesOrNo' after press_limit_hours; + diff --git a/mallinkCApi/src/main/java/com/iformall/controller/WxPayOrderController.java b/mallinkCApi/src/main/java/com/iformall/controller/WxPayOrderController.java index 97ff599b0..d5064315d 100644 --- a/mallinkCApi/src/main/java/com/iformall/controller/WxPayOrderController.java +++ b/mallinkCApi/src/main/java/com/iformall/controller/WxPayOrderController.java @@ -123,6 +123,9 @@ public class WxPayOrderController extends BaseController { } catch (NumberFormatException e) { return new ResultData(ErrorCode.SYS_PARAMETER_NOT_NULL.getCode(), "orderId参数不正确"); } + //如果是砍价付款扣库存,则此时扣库存 + + WxPayOrder record = new WxPayOrder(); record.setOrderId(orderId); record.setOpenId(getCUser().getOpenId()); diff --git a/mallinkService/src/main/java/com/iformall/domain/po/WxCoupon.java b/mallinkService/src/main/java/com/iformall/domain/po/WxCoupon.java index 10a618c2b..bbfdef3c7 100644 --- a/mallinkService/src/main/java/com/iformall/domain/po/WxCoupon.java +++ b/mallinkService/src/main/java/com/iformall/domain/po/WxCoupon.java @@ -178,6 +178,9 @@ public class WxCoupon extends TenantEntity { @io.swagger.annotations.ApiModelProperty(value="砍价限制时间",name="pressLimitHours") private Integer pressLimitHours; + + @io.swagger.annotations.ApiModelProperty(value="砍价支付扣库存EnumYesOrNo",name="pressPayReduceStock") + private Integer pressPayReduceStock; @io.swagger.annotations.ApiModelProperty(value="积分售价(适用于类型10,11)",name="creditPrice") private Integer creditPrice; diff --git a/mallinkService/src/main/java/com/iformall/service/helper/WxOrderServiceHelper.java b/mallinkService/src/main/java/com/iformall/service/helper/WxOrderServiceHelper.java new file mode 100644 index 000000000..1a28ed923 --- /dev/null +++ b/mallinkService/src/main/java/com/iformall/service/helper/WxOrderServiceHelper.java @@ -0,0 +1,63 @@ +package com.iformall.service.helper; + +import com.iformall.enums.*; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Lazy; +import org.springframework.stereotype.Service; + +import com.iformall.common.ErrorCode; +import com.iformall.domain.po.WxCoupon; +import com.iformall.domain.po.WxCouponChannel; +import com.iformall.domain.po.base.TenantEntity; +import com.iformall.exception.MallinkException; +import com.iformall.service.WxCouponChannelService; +import com.iformall.service.WxCouponService; +import com.iformall.utils.RedisLock; + +@Service +public class WxOrderServiceHelper { + + private static final Logger logger = LoggerFactory.getLogger(WxOrderServiceHelper.class); + + @Lazy + @Autowired + WxCouponChannelService wxCouponChannelService; + + @Lazy + @Autowired + WxCouponService wxCouponService; + + @Autowired + RedisLock redisLock; + /** + * 微信订单是否可以支付 + */ + public void reduceStock(boolean isChannelStockReduce, WxCoupon coupon,Long couponChannelId,int number) { + if (isChannelStockReduce) { + try { + wxCouponChannelService.reduceChannelStock(coupon,couponChannelId,number); + long stock = redisLock.decrease(EnumCacheKey.COUPON_CHANNEL_STOCK.getMessage()+couponChannelId, number); + if (stock < 0 ) { + throw new MallinkException(ErrorCode.ORDER_IS_FAIL.getCode(),"券["+coupon.getTitle()+"]渠道["+couponChannelId+"]库存已为零!"); + } + } catch (RuntimeException e) { + throw new MallinkException(ErrorCode.ORDER_IS_FAIL.getCode(),"券["+coupon.getTitle()+"]渠道["+couponChannelId+"]库存更新失败!"+e.getMessage()); + } + + }else { + try { + wxCouponService.reduceRemainInventory(coupon,coupon.getId(),number); + long stock = redisLock.decrease(EnumCacheKey.COUPON_STOCK.getMessage()+coupon.getId(), number); + if (stock < 0 ) { + throw new MallinkException(ErrorCode.ORDER_IS_FAIL.getCode(),"券["+coupon.getTitle()+"]库存已为零!"); + } + } catch (RuntimeException e) { + logger.error("此券减库存失败, couponId: " + coupon.getId(),e); + throw new MallinkException(ErrorCode.ORDER_IS_FAIL.getCode(),"券["+coupon.getTitle()+"]库存更新失败!"+e.getMessage()); + } + } + } + +} diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxOrderServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxOrderServiceImpl.java index 2bbb3478e..ff6832fe5 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxOrderServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxOrderServiceImpl.java @@ -28,6 +28,7 @@ import com.iformall.douyin.payv2.result.CreateOrderCallback; import com.iformall.enums.*; import com.iformall.mapper.*; import com.iformall.service.*; +import com.iformall.service.helper.WxOrderServiceHelper; import com.iformall.service.order.OrderAdapterService; import com.iformall.service.order.OrderFactory; import com.iformall.service.order.entity.WxComposeChildOrderPrice; @@ -241,6 +242,10 @@ public class WxOrderServiceImpl implements WxOrderService { @Autowired WxCouponBatchService wxCouponBatchService; + @Lazy + @Autowired + private WxOrderServiceHelper wxOrderServiceHelper; + @Override public PageInfo listAsPage(WxOrder record, Integer pageIndex, Integer pageSize) { @@ -1097,29 +1102,13 @@ public class WxOrderServiceImpl implements WxOrderService { throw new MallinkException(ErrorCode.ORDER_IS_LIMITED.getCode(),"此券[未支付+已支付]购买数量已超限["+coupon.getTitle()+"], couponId: " + coupon.getId()+ ", count: " + paidCount); } - //减库存, - if (isChannelStockReduce) { - try { - wxCouponChannelService.reduceChannelStock(coupon,couponChannel.getId(),number); - long stock = redisLock.decrease(EnumCacheKey.COUPON_CHANNEL_STOCK.getMessage()+couponChannel.getId(), number); - if (stock < 0 ) { - throw new MallinkException(ErrorCode.ORDER_IS_FAIL.getCode(),"券["+coupon.getTitle()+"]渠道["+couponChannel.getId()+"]库存已为零!"); - } - } catch (RuntimeException e) { - throw new MallinkException(ErrorCode.ORDER_IS_FAIL.getCode(),"券["+coupon.getTitle()+"]渠道["+couponChannel.getId()+"]库存更新失败!"+e.getMessage()); - } - - }else { - try { - wxCouponService.reduceRemainInventory(coupon,coupon.getId(),number); - long stock = redisLock.decrease(EnumCacheKey.COUPON_STOCK.getMessage()+coupon.getId(), number); - if (stock < 0 ) { - throw new MallinkException(ErrorCode.ORDER_IS_FAIL.getCode(),"券["+coupon.getTitle()+"]库存已为零!"); - } - } catch (RuntimeException e) { - logger.error("此券减库存失败, couponId: " + coupon.getId(),e); - throw new MallinkException(ErrorCode.ORDER_IS_FAIL.getCode(),"券["+coupon.getTitle()+"]库存更新失败!"+e.getMessage()); - } + boolean isReduceStock = true; + //减库存,砍价需要看券配置 + if (isPressOrder && null != coupon.getPressPayReduceStock() && coupon.getPressPayReduceStock().intValue() == EnumYesOrNo.YES.getCode().intValue()) { + isReduceStock = false; + } + if (isReduceStock) { + wxOrderServiceHelper.reduceStock(isChannelStockReduce,coupon,couponChannel.getId(), number); } reduceResult.setChannelStockReduce(isChannelStockReduce); reduceResult.setCurrentPrice(currentPrice); diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxPayOrderServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxPayOrderServiceImpl.java index e3aa29271..c017558df 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxPayOrderServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxPayOrderServiceImpl.java @@ -19,6 +19,7 @@ import com.iformall.exception.MallinkException; import com.iformall.mapper.*; import com.iformall.pay.*; import com.iformall.service.*; +import com.iformall.service.helper.WxOrderServiceHelper; import com.iformall.service.helper.WxPayOrderServiceHelper; import com.iformall.service.order.OrderAdapterService; import com.iformall.service.order.OrderFactory; @@ -44,6 +45,7 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.aop.framework.AopContext; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Lazy; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Propagation; import org.springframework.transaction.annotation.Transactional; @@ -134,6 +136,10 @@ public class WxPayOrderServiceImpl implements WxPayOrderService { @Autowired OrderFactory orderFactory; + + @Lazy + @Autowired + WxOrderServiceHelper wxOrderServiceHelper; JSONObject errorMapQuery = JSON.parseObject("{" + "\"ORDERNOTEXIST\":{\"detail\":\"此交易订单号不存在\",\"reason\":\"查询系统中不存在此交易订单号\",\"resolution\":\"该API只能查提交支付交易返回成功的订单,请商户检查需要查询的订单号是否正确\"},\n" + @@ -273,6 +279,12 @@ public class WxPayOrderServiceImpl implements WxPayOrderService { for (WxOrder o : orderList) { productNames.add(o.getProductName()); checkSinglePayOrder(o, user, payWay); + //如果是砍价,并且是付款扣库存 + WxCoupon coupon = wxCouponMapper.selectById(o.getProductId(), appInfo.getTenantId()); + if (null != coupon && coupon.getType().intValue() == EnumCouponType.COUPON_PRESS.getCode().intValue() + && null != coupon.getPressPayReduceStock() && coupon.getPressPayReduceStock().intValue() == EnumYesOrNo.YES.getCode().intValue()) { + wxOrderServiceHelper.reduceStock(false,coupon,o.getCouponChannelId(), 1); + } } PayAdapterResult payResult = createPayOrder(appInfo, user, record,composeOrder,orderList,JSON.toJSONString(productNames), payWay, params,isCreatePay); if (payResult.isSuccess()) { diff --git a/mallinkService/src/main/resources/mapper/WxCouponMapper.xml b/mallinkService/src/main/resources/mapper/WxCouponMapper.xml index f9f68b923..c770d0017 100644 --- a/mallinkService/src/main/resources/mapper/WxCouponMapper.xml +++ b/mallinkService/src/main/resources/mapper/WxCouponMapper.xml @@ -44,6 +44,7 @@ + @@ -107,6 +108,7 @@ + @@ -128,7 +130,7 @@ c.`title`,c.`sub_title`,c.`item_group`,c.`sale_price`,c.`freight_price`,c.`use_price`,c.`use_limit_rule`,c.`use_limit_quantity`,c.`send_type`, c.`valid_type`,c.`valid_start_date`,c.`valid_end_date`,c.pick_start_date,c.pick_end_date,c.`valid_days`,c.`detail`,c.`price`,c.tail_price,c.orig_price,c.`unit`,c.`remain_inventory`,c.`inventory`, c.`remark`,c.`status`,c.`create_date`,c.`update_date`,c.`business`,c.`sub_business`,c.`support_transfer`,c.`subsidy_num`,c.`subsidy_type`,c.`is_after_set_price`, - c.`press_limit_num`, c.`press_limit_hours`, c.`auto_refund`,c.`credit_price`,c.`credit_refund`,c.`put_apply_status`,c.`stock_apply_status`,c.`cancle_apply_status`, + c.`press_limit_num`, c.`press_limit_hours`,c.`press_pay_reduce_stock`, c.`auto_refund`,c.`credit_price`,c.`credit_refund`,c.`put_apply_status`,c.`stock_apply_status`,c.`cancle_apply_status`, c.`conditions`,c.approval_type,c.content_type,c.source_type,c.merchant_type,c.password_support,c.gift_list,c.product_type,c.category_id,c.goods_id @@ -273,6 +275,10 @@ and `press_limit_hours` = #{pressLimitHours} + + + and `press_pay_reduce_stock` = #{pressPayReduceStock} + and `auto_refund` = #{autoRefund} @@ -624,6 +630,10 @@ and c.`press_limit_hours` = #{pressLimitHours} + + + and c.`press_pay_reduce_stock` = #{pressPayReduceStock} + and c.`auto_refund` = #{autoRefund} @@ -791,6 +801,7 @@ + @@ -843,6 +854,7 @@ + @@ -1340,7 +1352,7 @@ wc.tenant_id,wc.parent_tenant_id,wc.`type`,wc.`cover_img`,wc.`cover_picture`,wc.`detail_picture`,wc.`title`,wc.`sub_title`,wc.`item_group`,wc.`sale_price`,wc.`freight_price`,wc.`use_price`,wc.`use_limit_rule`,wc.`use_limit_quantity`,wc.`send_type`, wc.`valid_type`,wc.`valid_start_date`,wc.`valid_end_date`,wc.pick_start_date,wc.pick_end_date,wc.`valid_days`,wc.`detail`,wc.`price`,wc.tail_price,wc.orig_price,wc.`unit`,wc.`remain_inventory`,wc.`inventory`, wc.`remark`,wc.`status`,wc.`create_date`,wc.`update_date`,wc.`business`,wc.`sub_business`,wc.`support_transfer`,wc.`subsidy_num`,wc.`subsidy_type`, - wc.`press_limit_num`, wc.`press_limit_hours`, wc.`auto_refund`,wc.`credit_price`,wc.`credit_refund`,wc.`conditions`, + wc.`press_limit_num`, wc.`press_limit_hours`,wc.`press_pay_reduce_stock`, wc.`auto_refund`,wc.`credit_price`,wc.`credit_refund`,wc.`conditions`, wc.title as couponName,wc.`cover_img` as couponPic,wc.`cover_picture` as couponPicture,wc.`detail_picture` as detailPicture,wc.id as couponId from wx_coupon_channel ct left join wx_coupon wc on wc.id = ct.coupon_id From 8700c02969e4cdfe340212fcbfdbb8cffab5d2ce Mon Sep 17 00:00:00 2001 From: lin <642018748@qq.com> Date: Mon, 20 Mar 2023 12:34:47 +0800 Subject: [PATCH 4/7] fix business --- .../main/java/com/iformall/mapper/WxBusinessMapper.java | 4 ++-- .../com/iformall/service/impl/WxBusinessServiceImpl.java | 4 ++-- .../service/invest/impl/InvestBizServiceImpl.java | 2 +- .../src/main/resources/mapper/WxBusinessMapper.xml | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/mallinkService/src/main/java/com/iformall/mapper/WxBusinessMapper.java b/mallinkService/src/main/java/com/iformall/mapper/WxBusinessMapper.java index 8c8619dd9..67ba61d4b 100644 --- a/mallinkService/src/main/java/com/iformall/mapper/WxBusinessMapper.java +++ b/mallinkService/src/main/java/com/iformall/mapper/WxBusinessMapper.java @@ -11,8 +11,8 @@ public interface WxBusinessMapper extends CommonMapper { List findList(WxBusiness wxBusiness); List findListAll(@Param("finalTenantId") String finalTenantId); - List findListForMerchant(@Param("tenantId") String tenantId, @Param("parentTenantId") String parentTenantId); - List findListForCoupon(@Param("tenantId") String tenantId, @Param("parentTenantId") String parentTenantId, @Param("platCode") Integer platCode); + List findListForMerchant(@Param("finalTenantId") String finalTenantId,@Param("tenantId") String tenantId, @Param("parentTenantId") String parentTenantId); + List findListForCoupon(@Param("finalTenantId") String finalTenantId,@Param("tenantId") String tenantId, @Param("parentTenantId") String parentTenantId, @Param("platCode") Integer platCode); List> businessDataList(WxBusiness wxBusiness); diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxBusinessServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxBusinessServiceImpl.java index c584293d6..46b92059f 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxBusinessServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxBusinessServiceImpl.java @@ -57,9 +57,9 @@ public class WxBusinessServiceImpl implements WxBusinessService { }else if (filter.equals(EnumBusinessFilter.FILTER_BY_COUPON.getCode())) { if (paltCode == null) paltCode = EnumAppPlat.WX.getCode(); - return wxBusinessMapper.findListForCoupon(tenantEntity.getTenantId(), tenantEntity.getParentTenantId(), paltCode); + return wxBusinessMapper.findListForCoupon(tenantEntity.getFinalTenantId(),tenantEntity.getTenantId(), tenantEntity.getParentTenantId(), paltCode); }else if (filter.equals(EnumBusinessFilter.FILTER_BY_MERCHANT.getCode())) { - return wxBusinessMapper.findListForMerchant(tenantEntity.getTenantId(), tenantEntity.getParentTenantId()); + return wxBusinessMapper.findListForMerchant(tenantEntity.getFinalTenantId(),tenantEntity.getTenantId(), tenantEntity.getParentTenantId()); }else { return wxBusinessMapper.findListAll(tenantEntity.getFinalTenantId()); } diff --git a/mallinkService/src/main/java/com/iformall/service/invest/impl/InvestBizServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/invest/impl/InvestBizServiceImpl.java index b76176ffa..37f74fc46 100644 --- a/mallinkService/src/main/java/com/iformall/service/invest/impl/InvestBizServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/invest/impl/InvestBizServiceImpl.java @@ -399,7 +399,7 @@ public class InvestBizServiceImpl implements InvestBizService { private Map getBusinessMap(TenantEntity tenantEntity) { WxBusiness bq = new WxBusiness(); bq.setFinalTenantId(tenantEntity.getFinalTenantId()); - List businesses = businessService.listAsPage(null, 1, Integer.MAX_VALUE).getList(); + List businesses = businessService.listAsPage(bq, 1, Integer.MAX_VALUE).getList(); return getMap(businesses, WxBusiness::getTitle); } diff --git a/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml b/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml index f23aba428..e6896876b 100644 --- a/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml +++ b/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml @@ -98,8 +98,8 @@ select - from wx_business b - where + from wx_business b + where b.`final_tenant_id` = #{finalTenantId} and (select count(*) from wx_coupon_channel cc where b.id = cc.business and cc.status = 0 From f91ea07370367a3e08d4efd4f223e3e7052e40d3 Mon Sep 17 00:00:00 2001 From: lin <642018748@qq.com> Date: Mon, 20 Mar 2023 16:26:41 +0800 Subject: [PATCH 5/7] fix business --- .../java/com/iformall/domain/po/WxBusiness.java | 3 +++ .../com/iformall/mapper/WxBusinessMapper.java | 6 +++--- .../service/impl/WxBusinessServiceImpl.java | 17 +++++++++++------ .../service/impl/WxMerchantServiceImpl.java | 4 +++- .../main/resources/mapper/WxBusinessMapper.xml | 17 ++++++++++++++--- 5 files changed, 34 insertions(+), 13 deletions(-) diff --git a/mallinkService/src/main/java/com/iformall/domain/po/WxBusiness.java b/mallinkService/src/main/java/com/iformall/domain/po/WxBusiness.java index a6d4271e4..7927696f5 100644 --- a/mallinkService/src/main/java/com/iformall/domain/po/WxBusiness.java +++ b/mallinkService/src/main/java/com/iformall/domain/po/WxBusiness.java @@ -46,4 +46,7 @@ public class WxBusiness extends TenantEntityWithoutFinalTenantId { @TableField(exist = false) private Integer limitEnd; + @TableField(exist = false) + private Integer isRoot; + } diff --git a/mallinkService/src/main/java/com/iformall/mapper/WxBusinessMapper.java b/mallinkService/src/main/java/com/iformall/mapper/WxBusinessMapper.java index 67ba61d4b..dc567363a 100644 --- a/mallinkService/src/main/java/com/iformall/mapper/WxBusinessMapper.java +++ b/mallinkService/src/main/java/com/iformall/mapper/WxBusinessMapper.java @@ -10,9 +10,9 @@ public interface WxBusinessMapper extends CommonMapper { List findList(WxBusiness wxBusiness); - List findListAll(@Param("finalTenantId") String finalTenantId); - List findListForMerchant(@Param("finalTenantId") String finalTenantId,@Param("tenantId") String tenantId, @Param("parentTenantId") String parentTenantId); - List findListForCoupon(@Param("finalTenantId") String finalTenantId,@Param("tenantId") String tenantId, @Param("parentTenantId") String parentTenantId, @Param("platCode") Integer platCode); + List findListAll(WxBusiness wxBusiness); + List findListForMerchant(@Param("wxBusiness")WxBusiness wxBusiness,@Param("tenantId") String tenantId, @Param("parentTenantId") String parentTenantId); + List findListForCoupon(@Param("wxBusiness")WxBusiness wxBusiness,@Param("tenantId") String tenantId, @Param("parentTenantId") String parentTenantId, @Param("platCode") Integer platCode); List> businessDataList(WxBusiness wxBusiness); diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxBusinessServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxBusinessServiceImpl.java index 46b92059f..a4a9cb7fb 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxBusinessServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxBusinessServiceImpl.java @@ -52,16 +52,19 @@ public class WxBusinessServiceImpl implements WxBusinessService { @Override public List findListAll(TenantEntity tenantEntity, Integer filter,Integer paltCode) { - if (filter == null){ - return wxBusinessMapper.findListAll(tenantEntity.getFinalTenantId()); + WxBusiness bq = new WxBusiness(); + bq.setFinalTenantId(tenantEntity.getFinalTenantId()); + bq.setIsRoot(EnumYesOrNo.YES.getCode()); + if (filter == null){ + return wxBusinessMapper.findListAll(bq); }else if (filter.equals(EnumBusinessFilter.FILTER_BY_COUPON.getCode())) { if (paltCode == null) paltCode = EnumAppPlat.WX.getCode(); - return wxBusinessMapper.findListForCoupon(tenantEntity.getFinalTenantId(),tenantEntity.getTenantId(), tenantEntity.getParentTenantId(), paltCode); + return wxBusinessMapper.findListForCoupon(bq,tenantEntity.getTenantId(), tenantEntity.getParentTenantId(), paltCode); }else if (filter.equals(EnumBusinessFilter.FILTER_BY_MERCHANT.getCode())) { - return wxBusinessMapper.findListForMerchant(tenantEntity.getFinalTenantId(),tenantEntity.getTenantId(), tenantEntity.getParentTenantId()); + return wxBusinessMapper.findListForMerchant(bq,tenantEntity.getTenantId(), tenantEntity.getParentTenantId()); }else { - return wxBusinessMapper.findListAll(tenantEntity.getFinalTenantId()); + return wxBusinessMapper.findListAll(bq); } } @@ -210,7 +213,9 @@ public class WxBusinessServiceImpl implements WxBusinessService { @Override public Map findAllMap(TenantEntity tenantEntity) { - List list = wxBusinessMapper.findListAll(tenantEntity.getFinalTenantId()); + WxBusiness bq = new WxBusiness(); + bq.setFinalTenantId(tenantEntity.getFinalTenantId()); + List list = wxBusinessMapper.findListAll(bq); Map map = new HashMap(); if (null != list) { for (int i = 0 ; i < list.size() ; i++) { diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxMerchantServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxMerchantServiceImpl.java index 2f86051d0..3cdef0c75 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxMerchantServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxMerchantServiceImpl.java @@ -215,7 +215,9 @@ public class WxMerchantServiceImpl implements WxMerchantService { if (null == merchantList || merchantList.size() <= 0 ) { return null; } - List bussinessList = wxBusinessMapper.findListAll(tenantEntity.getFinalTenantId()); + WxBusiness bq = new WxBusiness(); + bq.setFinalTenantId(tenantEntity.getFinalTenantId()); + List bussinessList = wxBusinessMapper.findListAll(bq); Map bussinessMap = new HashMap(); if (null != bussinessList) { for (int i = 0 ; i < bussinessList.size() ; i ++) { diff --git a/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml b/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml index e6896876b..7af68d48b 100644 --- a/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml +++ b/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml @@ -88,10 +88,13 @@ - select from wx_business where `final_tenant_id` = #{finalTenantId} + + and `parent_id` is null + order by create_date asc @@ -99,7 +102,11 @@ select from wx_business b - where b.`final_tenant_id` = #{finalTenantId} and + where b.`final_tenant_id` = #{wxBusiness.finalTenantId} + + and b.`parent_id` is null + + and (select count(*) from wx_merchant m where b.id = m.business_id @@ -117,7 +124,11 @@ select from wx_business b - where b.`final_tenant_id` = #{finalTenantId} and + where b.`final_tenant_id` = #{wxBusiness.finalTenantId} + + and b.`parent_id` is null + + and (select count(*) from wx_coupon_channel cc where b.id = cc.business and cc.status = 0 From 12fd10ab5d709426c745cb0a70ba04b59cdbe717 Mon Sep 17 00:00:00 2001 From: lin <642018748@qq.com> Date: Mon, 20 Mar 2023 18:20:06 +0800 Subject: [PATCH 6/7] fix business --- .../main/java/com/iformall/mapper/WxBusinessMapper.java | 4 ++-- .../com/iformall/service/impl/WxBusinessServiceImpl.java | 4 ++-- .../src/main/resources/mapper/WxBusinessMapper.xml | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/mallinkService/src/main/java/com/iformall/mapper/WxBusinessMapper.java b/mallinkService/src/main/java/com/iformall/mapper/WxBusinessMapper.java index dc567363a..252a22553 100644 --- a/mallinkService/src/main/java/com/iformall/mapper/WxBusinessMapper.java +++ b/mallinkService/src/main/java/com/iformall/mapper/WxBusinessMapper.java @@ -11,8 +11,8 @@ public interface WxBusinessMapper extends CommonMapper { List findList(WxBusiness wxBusiness); List findListAll(WxBusiness wxBusiness); - List findListForMerchant(@Param("wxBusiness")WxBusiness wxBusiness,@Param("tenantId") String tenantId, @Param("parentTenantId") String parentTenantId); - List findListForCoupon(@Param("wxBusiness")WxBusiness wxBusiness,@Param("tenantId") String tenantId, @Param("parentTenantId") String parentTenantId, @Param("platCode") Integer platCode); + List findListForMerchant(@Param("finalTenantId")String finalTenantId,@Param("isRoot")Integer isRoot,@Param("tenantId") String tenantId, @Param("parentTenantId") String parentTenantId); + List findListForCoupon(@Param("finalTenantId")String finalTenantId,@Param("isRoot")Integer isRoot,@Param("tenantId") String tenantId, @Param("parentTenantId") String parentTenantId, @Param("platCode") Integer platCode); List> businessDataList(WxBusiness wxBusiness); diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxBusinessServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxBusinessServiceImpl.java index a4a9cb7fb..789924c18 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxBusinessServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxBusinessServiceImpl.java @@ -60,9 +60,9 @@ public class WxBusinessServiceImpl implements WxBusinessService { }else if (filter.equals(EnumBusinessFilter.FILTER_BY_COUPON.getCode())) { if (paltCode == null) paltCode = EnumAppPlat.WX.getCode(); - return wxBusinessMapper.findListForCoupon(bq,tenantEntity.getTenantId(), tenantEntity.getParentTenantId(), paltCode); + return wxBusinessMapper.findListForCoupon(tenantEntity.getFinalTenantId(),EnumYesOrNo.YES.getCode(),tenantEntity.getTenantId(), tenantEntity.getParentTenantId(), paltCode); }else if (filter.equals(EnumBusinessFilter.FILTER_BY_MERCHANT.getCode())) { - return wxBusinessMapper.findListForMerchant(bq,tenantEntity.getTenantId(), tenantEntity.getParentTenantId()); + return wxBusinessMapper.findListForMerchant(tenantEntity.getFinalTenantId(),EnumYesOrNo.YES.getCode(),tenantEntity.getTenantId(), tenantEntity.getParentTenantId()); }else { return wxBusinessMapper.findListAll(bq); } diff --git a/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml b/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml index 7af68d48b..1d075cbc0 100644 --- a/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml +++ b/mallinkService/src/main/resources/mapper/WxBusinessMapper.xml @@ -102,8 +102,8 @@ select from wx_business b - where b.`final_tenant_id` = #{wxBusiness.finalTenantId} - + where b.`final_tenant_id` = #{finalTenantId} + and b.`parent_id` is null and @@ -124,8 +124,8 @@ select from wx_business b - where b.`final_tenant_id` = #{wxBusiness.finalTenantId} - + where b.`final_tenant_id` = #{finalTenantId} + and b.`parent_id` is null and From c0fba3acd731cd7de2133fcdd4ba12195355b84a Mon Sep 17 00:00:00 2001 From: lin <642018748@qq.com> Date: Tue, 21 Mar 2023 13:03:07 +0800 Subject: [PATCH 7/7] fix msg --- .../db/migration/V20230323000001_business.sql | 2 ++ .../db/migration/V20230323000001_msg.sql | 5 +++ .../iformall/schedule/WxMsgModelSchedule.java | 2 +- .../com/iformall/domain/po/WxMsgModel.java | 18 +++++++++- .../com/iformall/domain/po/msg/WxMsg.java | 5 +++ .../com/iformall/mapper/WxMsgModelMapper.java | 6 +--- .../impl/WxCouponInjectServiceImpl.java | 1 + .../service/impl/WxMsgServiceImpl.java | 34 ++++++++++++++++--- .../java/com/iformall/sms/EnumSMSChannel.java | 14 +++++--- .../resources/mapper/WxMsgCallbackMapper.xml | 2 +- .../src/main/resources/mapper/WxMsgMapper.xml | 5 ++- .../resources/mapper/WxMsgModelMapper.xml | 11 +----- 12 files changed, 77 insertions(+), 28 deletions(-) create mode 100644 mallinkAdmin/src/main/resources/db/migration/V20230323000001_msg.sql diff --git a/mallinkAdmin/src/main/resources/db/migration/V20230323000001_business.sql b/mallinkAdmin/src/main/resources/db/migration/V20230323000001_business.sql index 8f66aac5a..cc5765708 100644 --- a/mallinkAdmin/src/main/resources/db/migration/V20230323000001_business.sql +++ b/mallinkAdmin/src/main/resources/db/migration/V20230323000001_business.sql @@ -1,5 +1,7 @@ alter table wx_tags add column is_del int(1) not null default 0 comment '是否已删除,1-是,0-否'; +delete from wx_tags_type where id in (14,17); + update wx_tags set is_del = 1 where type_id in (14,17); alter table wx_business add column final_tenant_id varchar(5) comment ''; diff --git a/mallinkAdmin/src/main/resources/db/migration/V20230323000001_msg.sql b/mallinkAdmin/src/main/resources/db/migration/V20230323000001_msg.sql new file mode 100644 index 000000000..34b90b60b --- /dev/null +++ b/mallinkAdmin/src/main/resources/db/migration/V20230323000001_msg.sql @@ -0,0 +1,5 @@ +alter table wx_msg add column per_count int(3) not null default 1 comment '每条消息发送条数'; +alter table wx_msg add column sms_channel int(3) not null default 11 comment '发送渠道 EnumSMSChannel'; +update wx_msg set sms_channel = 12 where tenant_id in ('1035','1036'); + + diff --git a/mallinkSchedule/src/main/java/com/iformall/schedule/WxMsgModelSchedule.java b/mallinkSchedule/src/main/java/com/iformall/schedule/WxMsgModelSchedule.java index e3484125a..f4fec9ca2 100644 --- a/mallinkSchedule/src/main/java/com/iformall/schedule/WxMsgModelSchedule.java +++ b/mallinkSchedule/src/main/java/com/iformall/schedule/WxMsgModelSchedule.java @@ -50,7 +50,7 @@ public class WxMsgModelSchedule { public void querySmsTemplate() { WxMsgModel msgModel = new WxMsgModel(); msgModel.setStatus(EnumMsgModelStatus.AUDITING.getCode()); - List aliYunList = wxMsgModelMapper.findAliYunList(msgModel); + List aliYunList = wxMsgModelMapper.findList(msgModel); if(!aliYunList.isEmpty()){ Map> collect = aliYunList.stream().collect(groupingBy(WxMsgModel::getTenantId)); for (String tenantId:collect.keySet()) { diff --git a/mallinkService/src/main/java/com/iformall/domain/po/WxMsgModel.java b/mallinkService/src/main/java/com/iformall/domain/po/WxMsgModel.java index 9612262cf..1d1527cbb 100644 --- a/mallinkService/src/main/java/com/iformall/domain/po/WxMsgModel.java +++ b/mallinkService/src/main/java/com/iformall/domain/po/WxMsgModel.java @@ -1,5 +1,6 @@ package com.iformall.domain.po; +import com.aliyun.openservices.shade.org.apache.commons.lang3.StringUtils; import com.baomidou.mybatisplus.annotation.TableName; import com.iformall.domain.po.base.TenantEntity; import lombok.Data; @@ -30,10 +31,25 @@ public class WxMsgModel extends TenantEntity { @io.swagger.annotations.ApiModelProperty(value="reason",name="reason") private String reason; - @io.swagger.annotations.ApiModelProperty(value="templateType",name="templateType") + @io.swagger.annotations.ApiModelProperty(value="EnumMsgModelType",name="templateType") private Integer templateType; @io.swagger.annotations.ApiModelProperty(value="通道模板code",name="modelCode") private String modelCode; + + public Integer calcuteContentSize(int perSize) { + if (StringUtils.isBlank(content) || perSize <= 0 ) { + return 1; + } + if (content.length() <= perSize) { + return 1; + } + int count = content.length() % perSize; + int countSize = count * perSize; + if (countSize < content.length()) { + return count+1; + } + return count; + } } diff --git a/mallinkService/src/main/java/com/iformall/domain/po/msg/WxMsg.java b/mallinkService/src/main/java/com/iformall/domain/po/msg/WxMsg.java index fcfb1ad25..9e2a7db97 100644 --- a/mallinkService/src/main/java/com/iformall/domain/po/msg/WxMsg.java +++ b/mallinkService/src/main/java/com/iformall/domain/po/msg/WxMsg.java @@ -69,6 +69,11 @@ public class WxMsg extends BaseMsg { @io.swagger.annotations.ApiModelProperty(value = "couponInjectId", name = "couponInjectId") private Long couponInjectId; + + @io.swagger.annotations.ApiModelProperty(value = "发送渠道 EnumSMSChannel", name = "smsChannel") + private Integer smsChannel; + @io.swagger.annotations.ApiModelProperty(value = "每条消息发送条数", name = "perCount") + private Integer perCount; @TableField(exist = false) @io.swagger.annotations.ApiModelProperty(value = "模板消息", name = "wxTemplateMsg") diff --git a/mallinkService/src/main/java/com/iformall/mapper/WxMsgModelMapper.java b/mallinkService/src/main/java/com/iformall/mapper/WxMsgModelMapper.java index e55153234..7cab4cad9 100644 --- a/mallinkService/src/main/java/com/iformall/mapper/WxMsgModelMapper.java +++ b/mallinkService/src/main/java/com/iformall/mapper/WxMsgModelMapper.java @@ -8,10 +8,6 @@ public interface WxMsgModelMapper extends CommonMapper { List findList(WxMsgModel wxMsgModel); - List findAliYunList(WxMsgModel msgModel); - - int updateByCode(WxMsgModel wxMsgModel); - - + } diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxCouponInjectServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxCouponInjectServiceImpl.java index 791f6462b..a0eea4143 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxCouponInjectServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxCouponInjectServiceImpl.java @@ -240,6 +240,7 @@ public class WxCouponInjectServiceImpl implements WxCouponInjectService { wxmsg.setErrorNumber(0); //1、标签短信2、精准发券 wxmsg.setWay(EnumSendWay.COUPON.getCode()); + wxmsg.setSmsChannel(wxMsgConfig.getSmsChannel()); wxMsgService.sendMsgFromCouponInject(wxmsg,wxMsgConfig,record); return new ResultData(); } diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxMsgServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxMsgServiceImpl.java index 6801df32c..aca8dc8e3 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxMsgServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxMsgServiceImpl.java @@ -22,6 +22,8 @@ import com.iformall.exception.MallinkException; import com.iformall.mapper.*; import com.iformall.mq.MqBaseProducer; import com.iformall.service.*; +import com.iformall.sms.EnumSMSChannel; +import com.iformall.sms.SMSFactory; import com.iformall.utils.DateUtils; import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; @@ -90,6 +92,10 @@ public class WxMsgServiceImpl implements WxMsgService { @Lazy @Autowired TtCUserService ttCUserService; + + @Lazy + @Autowired + SMSFactory smsFactory; @Override public PageInfo listAsPage(WxMsg record, Integer pageIndex, Integer pageSize) { @@ -103,8 +109,8 @@ public class WxMsgServiceImpl implements WxMsgService { int success = wxMsgCallbackMapper.queryMsgSendTotal(params); params.put("status", "0"); int error = wxMsgCallbackMapper.queryMsgSendTotal(params); - temp.setSuccessNumber(success); - temp.setErrorNumber(error); + temp.setSuccessNumber(success*temp.getPerCount()); + temp.setErrorNumber(error*temp.getPerCount()); } PageInfo pageInfo = new PageInfo<>(templist); @@ -121,8 +127,8 @@ public class WxMsgServiceImpl implements WxMsgService { int success = wxMsgCallbackMapper.queryMsgSendTotal(params); params.put("status", "0"); int error = wxMsgCallbackMapper.queryMsgSendTotal(params); - wxMsg.setSuccessNumber(success); - wxMsg.setErrorNumber(error); + wxMsg.setSuccessNumber(success*wxMsg.getPerCount()); + wxMsg.setErrorNumber(error*wxMsg.getPerCount()); if(null != wxMsg.getModelId() && wxMsg.getWay() == EnumSendWay.APPINFOR.getCode()){ WxTemplateMsg wxTemplateMsg = wxTemplateMsgMapper.selectById(wxMsg.getModelId()); wxMsg.setWxTemplateMsg(wxTemplateMsg); @@ -275,7 +281,6 @@ public class WxMsgServiceImpl implements WxMsgService { } return new ResultData(ErrorCode.MSG_SEND_WAY_CHOOSE_ERROR); } - if (phones.isEmpty()) {//没有手工输入手机号时解析标签,有,继续流转 if(wxMsg.getWay() == EnumSendWay.TAG.getCode()){ List list = @@ -323,6 +328,18 @@ public class WxMsgServiceImpl implements WxMsgService { logger.info("短信数量不足"); return new ResultData(ErrorCode.MSG_SUM_INSUFFICENT); } + + EnumSMSChannel smsChannel = EnumSMSChannel.getEnum(wxMsgConfig.getSmsChannel()); + if (null == smsChannel) { + return new ResultData(ErrorCode.MSG_SERVER_NOT_FIND,"短信配置渠道错误"); + } + wxMsg.setSmsChannel(smsChannel.getCode()); + WxMsgModel wxMsgModel = wxMsgModelMapper.selectById(wxMsg.getModelId()); + if (null == wxMsgModel) { + return new ResultData(ErrorCode.MSG_SERVER_NOT_FIND,"短信模版未查询到"); + } + wxMsg.setPerCount(calcuteMsgCount(wxMsgModel,smsChannel)); + wxMsg.setExpectSendNumber(wxMsg.getExpectSendNumber()*wxMsg.getPerCount()); saveOrUpdate(wxMsg, wxMsgConfig); return new ResultData(); }else if(wxMsg.getWay() == EnumSendWay.APPINFOR.getCode()){ @@ -334,6 +351,12 @@ public class WxMsgServiceImpl implements WxMsgService { } } + private Integer calcuteMsgCount(WxMsgModel wxMsgModel,EnumSMSChannel smsChannel) { + if (null != smsChannel.getPerSize() && smsChannel.getPerSize() > 0 ) { + return wxMsgModel.calcuteContentSize(smsChannel.getPerSize()); + } + return 1; + } @Async @Override @@ -357,6 +380,7 @@ public class WxMsgServiceImpl implements WxMsgService { wxMsg1.setSignature(wxMsg.getSignature()); wxMsg1.setMsg(wxMsg.getMsg()); wxMsg1.setModelId(wxMsg.getModelId()); + wxMsg1.setSmsChannel(wxMsg.getSmsChannel()); if (extra > 0 && i == index) { List phoneList = Arrays.asList(split).subList(i * 1000, length); String phones = StringUtils.join(phoneList, ","); diff --git a/mallinkService/src/main/java/com/iformall/sms/EnumSMSChannel.java b/mallinkService/src/main/java/com/iformall/sms/EnumSMSChannel.java index e49b10ee7..28f98d021 100644 --- a/mallinkService/src/main/java/com/iformall/sms/EnumSMSChannel.java +++ b/mallinkService/src/main/java/com/iformall/sms/EnumSMSChannel.java @@ -6,9 +6,9 @@ package com.iformall.sms; */ public enum EnumSMSChannel { - ALIYUN(11, "ALIYUN"), - ALIYUN_ZDY(12, "ALIYUN_ZDY"), - WIWIDE(0,"WIWIDE"); + ALIYUN(11, "ALIYUN",60), + ALIYUN_ZDY(12, "ALIYUN_ZDY(客户的阿里云短信)",0), + WIWIDE(0,"WIWIDE",0); public static EnumSMSChannel getEnum(Integer code) { for (EnumSMSChannel value : values()) { @@ -21,10 +21,12 @@ public enum EnumSMSChannel { private Integer code; private String message; + private Integer perSize;//每条短信最大字数,0:无限制,都按1条算 - EnumSMSChannel(Integer code, String message) { + EnumSMSChannel(Integer code, String message,Integer perSize) { this.code = code; this.message = message; + this.perSize = perSize; } public Integer getCode() { @@ -34,4 +36,8 @@ public enum EnumSMSChannel { public String getMessage() { return message; } + + public Integer getPerSize() { + return perSize; + } } diff --git a/mallinkService/src/main/resources/mapper/WxMsgCallbackMapper.xml b/mallinkService/src/main/resources/mapper/WxMsgCallbackMapper.xml index c50cf7ef4..4567cb08c 100644 --- a/mallinkService/src/main/resources/mapper/WxMsgCallbackMapper.xml +++ b/mallinkService/src/main/resources/mapper/WxMsgCallbackMapper.xml @@ -105,7 +105,7 @@ diff --git a/mallinkService/src/main/resources/mapper/WxMsgMapper.xml b/mallinkService/src/main/resources/mapper/WxMsgMapper.xml index 3ff95d12c..024974354 100644 --- a/mallinkService/src/main/resources/mapper/WxMsgMapper.xml +++ b/mallinkService/src/main/resources/mapper/WxMsgMapper.xml @@ -24,10 +24,13 @@ + + - `id`,`tenant_id`,`parent_tenant_id`,`model_id`,`msg`,`sendtime`,`createtime`,`expect_send_number`,`success_number`,`error_number`,`return_result`,`phones`,`signature`,`isright`,`name`,`sendstatus`,`excelpath`,`label`,`tags`,`status`,`way`,`coupon_inject_id` + `id`,`tenant_id`,`parent_tenant_id`,`model_id`,`msg`,`sendtime`,`createtime`,`expect_send_number`,`success_number`,`error_number`,`return_result`, + `phones`,`signature`,`isright`,`name`,`sendstatus`,`excelpath`,`label`,`tags`,`status`,`way`,`coupon_inject_id`,`per_count`,`sms_channel` diff --git a/mallinkService/src/main/resources/mapper/WxMsgModelMapper.xml b/mallinkService/src/main/resources/mapper/WxMsgModelMapper.xml index cd7a952c1..7bb15302c 100644 --- a/mallinkService/src/main/resources/mapper/WxMsgModelMapper.xml +++ b/mallinkService/src/main/resources/mapper/WxMsgModelMapper.xml @@ -74,16 +74,7 @@ from wx_msg_model - - - - + update wx_msg_model set status=#{status},reason=#{reason} where `model_code` = #{modelCode}