mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 16:23:26 +08:00
# 2022-03-16
### 1.4.0 开源社区版: 【优化】首页标题默认设置为空,防止数据加载缓慢导致显示空的情况。#I4XM14 ### 0.2.9 专业版: 【升级】升级uniapp前端框架到UView2.0.29版本。修复一些组件的细节bug,详情查询uviewui更新文档。 【优化】首页标题默认设置为空,防止数据加载缓慢导致显示空的情况。#I4XM14 【修复】修复BaseRepository中有SqlWith.NoLock使用Where错误的BUG。#I4XKFW 【修复】修复商品详情轮播图点击无法预览的问题。 【修复】自定义交易组件,在目录审核通过后,极端情况下会出现还需要“商品资质图片”的bug。 【新增】后台页面设计界面,增加常用前端的pages链接地址地址,方便进行复制使用。 【新增】普通商品详情,服务商品详情,拼团商品详情,秒杀商品详情,团购商品详情增加点击客服聊天,发送商品卡片功能,客服能直接接收到客户浏览的详情页面信息。 【新增】后台商城设置里面的“页面设计”功能页面,新增一个自定义页面的url 地址,便于复制引用如小程序中。#I4VZ6D 【修复】修复后台管理,编辑分销用户须知,分销协议,提交到代理方法的问题。#I4W5YL 【升级】升级后端打印组件版本。解决旧版本过低,导致新版本浏览器安装后无法调用的问题。#I4XDKC 【修复】修复mysql数据库有几个表存在主键未设置自增的问题,并发布完成版本。#I4XCT0 【升级】mysql数据库增加日历签到四个表。
This commit is contained in:
14837
数据库/MySql/20220316/coreshop20220316完整数据库.sql
Normal file
14837
数据库/MySql/20220316/coreshop20220316完整数据库.sql
Normal file
File diff suppressed because one or more lines are too long
125
数据库/MySql/20220316/升级脚本.sql
Normal file
125
数据库/MySql/20220316/升级脚本.sql
Normal file
@@ -0,0 +1,125 @@
|
||||
/*
|
||||
SQLyog Ultimate v13.1.1 (64 bit)
|
||||
MySQL - 5.7.32-log : Database - coreshop
|
||||
*********************************************************************
|
||||
*/
|
||||
|
||||
/*!40101 SET NAMES utf8 */;
|
||||
|
||||
/*!40101 SET SQL_MODE=''*/;
|
||||
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
CREATE DATABASE /*!32312 IF NOT EXISTS*/`coreshop` /*!40100 DEFAULT CHARACTER SET utf8 */;
|
||||
|
||||
USE `coreshop`;
|
||||
|
||||
/*Table structure for table `CoreCmsContinuousCheckInRuleDetails` */
|
||||
|
||||
DROP TABLE IF EXISTS `CoreCmsContinuousCheckInRuleDetails`;
|
||||
|
||||
CREATE TABLE `CoreCmsContinuousCheckInRuleDetails` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '序列',
|
||||
`userGradeId` int(11) DEFAULT NULL COMMENT '用户级别',
|
||||
`ruleId` int(11) DEFAULT NULL COMMENT '连续签到规则序列',
|
||||
`num` int(11) DEFAULT NULL COMMENT '数量',
|
||||
`type` int(11) DEFAULT NULL COMMENT '积分1余额2',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=121 DEFAULT CHARSET=utf8;
|
||||
|
||||
/*Data for the table `CoreCmsContinuousCheckInRuleDetails` */
|
||||
|
||||
insert into `CoreCmsContinuousCheckInRuleDetails`(`id`,`userGradeId`,`ruleId`,`num`,`type`) values
|
||||
(109,2,37,1,1),
|
||||
(110,6,37,2,1),
|
||||
(111,1006,37,3,1),
|
||||
(112,2,38,1,1),
|
||||
(113,6,38,2,1),
|
||||
(114,1006,38,3,1),
|
||||
(115,2,39,1,1),
|
||||
(116,6,39,2,1),
|
||||
(117,1006,39,3,1),
|
||||
(118,2,40,1,1),
|
||||
(119,6,40,2,1),
|
||||
(120,1006,40,3,1);
|
||||
|
||||
/*Table structure for table `CoreCmsContinuousCheckInRules` */
|
||||
|
||||
DROP TABLE IF EXISTS `CoreCmsContinuousCheckInRules`;
|
||||
|
||||
CREATE TABLE `CoreCmsContinuousCheckInRules` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '序列',
|
||||
`days` int(11) DEFAULT NULL COMMENT '天数',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8;
|
||||
|
||||
/*Data for the table `CoreCmsContinuousCheckInRules` */
|
||||
|
||||
insert into `CoreCmsContinuousCheckInRules`(`id`,`days`) values
|
||||
(37,1),
|
||||
(38,2),
|
||||
(39,3),
|
||||
(40,4);
|
||||
|
||||
/*Table structure for table `CoreCmsCumulativeCheckInRules` */
|
||||
|
||||
DROP TABLE IF EXISTS `CoreCmsCumulativeCheckInRules`;
|
||||
|
||||
CREATE TABLE `CoreCmsCumulativeCheckInRules` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '序列',
|
||||
`days` int(11) DEFAULT NULL COMMENT '累计天数',
|
||||
`num` int(11) DEFAULT NULL COMMENT '数量',
|
||||
`type` int(11) DEFAULT NULL COMMENT '积分1余额2',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8;
|
||||
|
||||
/*Data for the table `CoreCmsCumulativeCheckInRules` */
|
||||
|
||||
insert into `CoreCmsCumulativeCheckInRules`(`id`,`days`,`num`,`type`) values
|
||||
(58,4,1,1),
|
||||
(59,5,2,1),
|
||||
(60,6,3,1);
|
||||
|
||||
/*Table structure for table `CoreCmsUserCheckIn` */
|
||||
|
||||
DROP TABLE IF EXISTS `CoreCmsUserCheckIn`;
|
||||
|
||||
CREATE TABLE `CoreCmsUserCheckIn` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '序列',
|
||||
`userId` int(11) DEFAULT NULL COMMENT '用户序列',
|
||||
`continuousCheckInCount` int(11) DEFAULT NULL COMMENT '连续签到次数',
|
||||
`cumulativeCheckInCount` int(11) DEFAULT NULL COMMENT '累计签到次数',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;
|
||||
|
||||
/*Data for the table `CoreCmsUserCheckIn` */
|
||||
|
||||
insert into `CoreCmsUserCheckIn`(`id`,`userId`,`continuousCheckInCount`,`cumulativeCheckInCount`) values
|
||||
(17,4467,4,4);
|
||||
|
||||
/*Table structure for table `CoreCmsUserCheckInDetails` */
|
||||
|
||||
DROP TABLE IF EXISTS `CoreCmsUserCheckInDetails`;
|
||||
|
||||
CREATE TABLE `CoreCmsUserCheckInDetails` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '序列',
|
||||
`userId` int(11) DEFAULT NULL COMMENT '用户序列',
|
||||
`checkInData` varchar(10) DEFAULT NULL COMMENT '打卡日期',
|
||||
`createTime` timestamp NULL DEFAULT NULL COMMENT '打卡时间',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8;
|
||||
|
||||
/*Data for the table `CoreCmsUserCheckInDetails` */
|
||||
|
||||
insert into `CoreCmsUserCheckInDetails`(`id`,`userId`,`checkInData`,`createTime`) values
|
||||
(67,4467,'2022-03-01','2022-03-14 00:35:06'),
|
||||
(68,4467,'2022-03-02','2022-03-14 00:35:11'),
|
||||
(69,4467,'2022-03-11','2022-03-14 00:35:12'),
|
||||
(70,4467,'2022-03-12','2022-03-14 00:35:15');
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
12
数据库/MySql/20220316/注意事项.txt
Normal file
12
数据库/MySql/20220316/注意事项.txt
Normal file
@@ -0,0 +1,12 @@
|
||||
以下表主键为INT型,没有设定自动递增;请手动先修复。
|
||||
CoreCmsSolitaireItems
|
||||
CoreCmsSolitaire
|
||||
CoreCmsGoodsImages
|
||||
WeChatTransactionComponentAuditCategory
|
||||
WeChatTransactionComponentAuditCategoryAuditLog
|
||||
WeChatTransactionComponentDeliveryCompany
|
||||
WeChatTransactionComponentGood
|
||||
WeChatTransactionComponentGoodAuditLog
|
||||
WeChatTransactionComponentGoodSKU
|
||||
WeChatTransactionComponentOrder
|
||||
WeChatTransactionComponentThirdCategory
|
||||
@@ -1,3 +1,6 @@
|
||||
2022-03-16
|
||||
【新增】表【CoreCmsContinuousCheckInRuleDetails】【CoreCmsContinuousCheckInRules】【CoreCmsCumulativeCheckInRules】【CoreCmsUserCheckIn】【CoreCmsUserCheckInDetails】实现日历签到功能。
|
||||
|
||||
2022-02-25
|
||||
【新增】表【CoreCmsProducts】增加【赠送积分points】字段
|
||||
|
||||
|
||||
Reference in New Issue
Block a user