奥壹oelove婚恋交友v10.0_10.1情感导师插件_商城插件SQL数据库导入升级方法

大家注意哈奥壹oelove的系统默认是不含情感导师插件和商城系统的,这两个插件需要再官方独立购买,有幸公司付钱购买了系统及两套商业插件,可以看我昵称找我注明CSDN我已经把数据库及模板文件提取出来了,先说下数据库把,升级系统无非就是覆盖部分模板文件和升级sql数据库,执行后就添加了对应的情感导师模块了。

CREATE TABLE IF NOT EXISTS `oelv_pre_course` (
  `courseid` int(10) unsigned NOT NULL,
  `unionid` int(10) unsigned DEFAULT '0',
  `catid` smallint(6) unsigned DEFAULT '0',
  `title` varchar(255) DEFAULT '',
  `thumbimg` varchar(100) DEFAULT '',
  `drawimg` varchar(100) DEFAULT '',
  `intro` varchar(500) DEFAULT '',
  `content` text,
  `addtime` int(10) unsigned DEFAULT '0',
  `uptime` int(10) unsigned DEFAULT '0',
  `flag` tinyint(2) unsigned DEFAULT '0',
  `onflag` tinyint(1) unsigned DEFAULT '0',
  `elite` tinyint(1) unsigned DEFAULT '0',
  `istop` tinyint(1) unsigned DEFAULT '0',
  `hits` int(10) unsigned DEFAULT '0',
  `price` decimal(10,2) unsigned DEFAULT '0.00',
  `liprice` decimal(10,2) unsigned DEFAULT '0.00',
  `score` decimal(10,2) unsigned DEFAULT '0.00',
  `goodrate` varchar(10) DEFAULT '',
  `comm_nums` smallint(6) DEFAULT '0',
  `orders` int(10) unsigned DEFAULT '0',
  `opuid` int(10) unsigned DEFAULT '0',
  `opuser` varchar(30) DEFAULT '',
  `optype` varchar(30) DEFAULT '',
  `study_times` int(10) unsigned DEFAULT '0',
  `last_study` int(10) unsigned DEFAULT '0',
  `buy_times` int(10) unsigned DEFAULT '0',
  `last_buy` int(10) unsigned DEFAULT '0',
  `buy_limit_days` int(10) unsigned DEFAULT '0',
  `remark` varchar(255) DEFAULT '',
  `chapter_nums` smallint(6) unsigned DEFAULT '0',
  `class_nums` smallint(6) unsigned DEFAULT '0'
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

--
-- 转存表中的数据 `oelv_pre_course`
--

INSERT INTO `oelv_pre_course` (`courseid`, `unionid`, `catid`, `title`, `thumbimg`, `drawimg`, `intro`, `content`, `addtime`, `uptime`, `flag`, `onflag`, `elite`, `istop`, `hits`, `price`, `liprice`, `score`, `goodrate`, `comm_nums`, `orders`, `opuid`, `opuser`, `optype`, `study_times`, `last_study`, `buy_times`, `last_buy`, `buy_limit_days`, `remark`, `chapter_nums`, `class_nums`) VALUES
(1, 0, 4, '恋爱课程1', '', '', '恋爱课程', '恋爱课程', 1654743005, 0, 1, 1, 0, 0, 0, '99.00', '199.00', '0.00', '', 0, 0, 688, '20220222', 'admin', 0, 0, 0, 0, 90, '', 1, 1);

-- --------------------------------------------------------

--
-- 表的结构 `oelv_pre_course_buy`
--

CREATE TABLE IF NOT EXISTS `oelv_pre_course_buy` (
  `buyid` int(10) unsigned NOT NULL,
  `courseid` int(10) unsigned DEFAULT '0',
  `userid` int(10) unsigned DEFAULT '0',
  `price` decimal(10,2) unsigned DEFAULT '0.00',
  `orderno` varchar(50) DEFAULT '',
  `addtime` int(10) unsigned DEFAULT '0',
  `valid_time` int(10) unsigned DEFAULT '0',
  `is_del` tinyint(1) unsigned DEFAULT '0',
  `deltime` int(10) unsigned DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- 表的结构 `oelv_pre_course_cat`
--

CREATE TABLE IF NOT EXISTS `oelv_pre_course_cat` (
  `catid` smallint(6) unsigned NOT NULL,
  `catname` varchar(255) DEFAULT '',
  `catimg` varchar(100) DEFAULT '',
  `orders` smallint(6) unsigned DEFAULT '0',
  `flag` tinyint(1) unsigned DEFAULT '0',
  `addtime` int(10) unsigned DEFAULT '0',
  `parentid` smallint(6) unsigned DEFAULT '0',
  `elite` tinyint(1) unsigned DEFAULT '0',
  `intro` varchar(500) DEFAULT ''
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;

--
-- 转存表中的数据 `oelv_pre_course_cat`
--

INSERT INTO `oelv_pre_course_cat` (`catid`, `catname`, `catimg`, `orders`, `flag`, `addtime`, `parentid`, `elite`, `intro`) VALUES
(1, '挽回爱情', '', 1, 1, 1629687956, 0, 1, ''),
(2, '脱单恋爱', '', 2, 1, 1629687998, 0, 1, ''),
(3, '经营婚姻', '', 3, 1, 1629688019, 0, 1, ''),
(4, '分手挽回', '', 2, 1, 1629688160, 1, 0, ''),
(5, '挽回男友', '', 3, 1, 1629688186, 1, 0, ''),
(6, '挽回老公', '', 4, 1, 1629688192, 1, 0, ''),
(7, '恋爱宝典', '', 1, 1, 1629688221, 2, 0, ''),
(8, '相亲秘籍', '', 2, 1, 1629688247, 2, 0, ''),
(9, '约会技巧', '', 3, 1, 1629688264, 2, 0, ''),
(10, '脱单秘籍', '', 4, 1, 1629688281, 2, 0, ''),
(11, '婆媳关系', '', 1, 1, 1629688302, 3, 0, ''),
(12, '情感维系', '', 2, 1, 1629688313, 3, 0, ''),
(13, '家庭暴力', '', 3, 1, 1629688363, 3, 0, '');

-- --------------------------------------------------------

--
-- 表的结构 `oelv_pre_course_chapter`
--

CREATE TABLE IF NOT EXISTS `oelv_pre_course_chapter` (
  `chapid` int(10) unsigned NOT NULL,
  `courseid` int(10) unsigned DEFAULT '0',
  `chapname` varchar(255) DEFAULT '',
  `orders` int(10) unsigned DEFAULT '0',
  `intro` varchar(500) DEFAULT '',
  `addtime` int(10) unsigned DEFAULT '0',
  `uptime` int(10) unsigned DEFAULT '0',
  `onflag` tinyint(1) unsigned DEFAULT '0',
  `opuid` int(10) unsigned DEFAULT '0',
  `opuser` varchar(30) DEFAULT '',
  `optype` varchar(30) DEFAULT '',
  `class_nums` int(10) unsigned DEFAULT '0'
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

--
-- 转存表中的数据 `oelv_pre_course_chapter`
--

INSERT INTO `oelv_pre_course_chapter` (`chapid`, `courseid`, `chapname`, `orders`, `intro`, `addtime`, `uptime`, `onflag`, `opuid`, `opuser`, `optype`, `class_nums`) VALUES
(1, 1, '第一节', 1, '第一节', 1654743028, 0, 1, 688, '20220222', 'admin', 1);

-- --------------------------------------------------------

--
-- 表的结构 `oelv_pre_course_class`
--

CREATE TABLE IF NOT EXISTS `oelv_pre_course_class` (
  `classid` int(10) unsigned NOT NULL,
  `courseid` int(10) unsigned DEFAULT '0',
  `chapid` int(10) unsigned DEFAULT '0',
  `classname` varchar(255) DEFAULT '',
  `thumbimg` varchar(100) DEFAULT '',
  `drawimg` varchar(100) DEFAULT '',
  `orders` int(10) unsigned DEFAULT '0',
  `intro` varchar(1000) DEFAULT '',
  `mediaid` int(10) unsigned DEFAULT '0',
  `type` tinyint(2) unsigned DEFAULT '0',
  `duration` int(10) unsigned DEFAULT '0',
  `addtime` int(10) unsigned DEFAULT '0',
  `uptime` int(10) unsigned DEFAULT '0',
  `flag` tinyint(1) unsigned DEFAULT '0',
  `elite` tinyint(1) unsigned DEFAULT '0',
  `onflag` tinyint(1) unsigned DEFAULT '0',
  `hits` int(10) unsigned DEFAULT '0',
  `opuid` int(10) unsigned DEFAULT '0',
  `opuser` varchar(30) DEFAULT '',
  `optype` varchar(30) DEFAULT '',
  `istry` tinyint(1) unsigned DEFAULT '0',
  `try_time` int(10) unsigned DEFAULT '0',
  `remark` varchar(255) DEFAULT ''
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

--
-- 转存表中的数据 `oelv_pre_course_class`
--

INSERT INTO `oelv_pre_course_class` (`classid`, `courseid`, `chapid`, `classname`, `thumbimg`, `drawimg`, `orders`, `intro`, `mediaid`, `type`, `duration`, `addtime`, `uptime`, `flag`, `elite`, `onflag`, `hits`, `opuid`, `opuser`, `optype`, `istry`, `try_time`, `remark`) VALUES
(1, 1, 1, '第一学时', '', '', 1, '第一学时2', 0, 2, 300, 1654743083, 1655443769, 1, 0, 1, 0, 688, '20220222', 'admin', 0, 0, '');

-- --------------------------------------------------------

--
-- 表的结构 `oelv_pre_course_collect`
--

CREATE TABLE IF NOT EXISTS `oelv_pre_course_collect` (
  `collid` bigint(20) unsigned NOT NULL,
  `courseid` int(10) unsigned DEFAULT '0',
  `userid` int(10) unsigned DEFAULT '0',
  `addtime` int(10) unsigned DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/434746.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

基于Mindspore,通过Resnet50迁移学习实现猫十二分类

使用平台介绍 使用平台:启智AI协作平台 使用数据集:百度猫十二分类 数据集介绍 有cat_12_train和cat_12_test和train_list.txt train_list.txt内有每张图片所对应的标签 Minspore部分操作科普 数据集加载 Mindspore加载图片数据集就直接调整成这种…

uniapp H5 $el.querySelectorAll is not a function

在监听是否在可视区域遇到问题&#xff08;网页端&#xff09; 解决方案 <view class"container"> ...省略 业务代码... </view>参考 &#xff1a; https://blog.csdn.net/qq_18841969/article/details/134620559

狼人杀 (狼人) 个人理解玩法

今天 我们来说说 狼人杀游戏 每个板子都有的一个角色 狼人 因为 动物园板子 平民被换成了 羊驼 所以 狼人也是唯一一个所有板子都有的角色 狼人的技能非常简单 每天晚上 可以袭击一名玩家 如果没有特殊情况 被袭击的玩家天亮时会直接出局 特殊情况包括 比较典型的有 守卫的盾…

Matter 笔记1-环境准备,编译

不要远程登录Ubuntu输入以下命令&#xff0c;原因&#xff1a;ubuntu/linux上的http代理设置 1. 准备 1.1 工具 Ubuntu 22.04 LTSClash 里General的端口设置到ubuntu 的网络设置里 1.2 代码 这里使用芯科整理过的代码 git clone https://github.com/SiliconLabs/matter.…

Redis线程模型解析

引言 Redis是一个高性能的键值对&#xff08;key-value&#xff09;内存数据库&#xff0c;以其卓越的读写速度和灵活的数据类型而广受欢迎。在Redis 6.0之前的版本中&#xff0c;它采用的是一种独特的单线程模型来处理客户端的请求。尽管单线程在概念上似乎限制了其扩展性和并…

实验笔记之——Gaussian Splatting SLAM配置与测试

之前博客对基于3DGS的SLAM进行了调研 学习笔记之——3D Gaussian Splatting及其在SLAM与自动驾驶上的应用调研_3d gaussian splatting slam-CSDN博客文章浏览阅读3.2k次&#xff0c;点赞40次&#xff0c;收藏58次。论文主页3D Gaussian Splatting是最近NeRF方面的突破性工作&a…

腾讯云服务器运行yum检测超级慢问题

公司使用腾讯云服务器。最近买的几台服务器使用yum命令安装或 更新软件特别慢。如下图&#xff1a; 从图中看出网络速度极慢。 大约要等5-10分钟检测和更新配置完毕&#xff0c;进入到软件下载界面下载软件速度就快了。 琢磨了一下&#xff0c;连接慢并不是连接不上。查看yum…

第 125 场 LeetCode 双周赛题解

A 超过阈值的最少操作数 I 排序然后查找第一个大于等于 k 的元素所在的位置 class Solution { public:int minOperations(vector<int> &nums, int k) {sort(nums.begin(), nums.end());return lower_bound(nums.begin(), nums.end(), k) - nums.begin();} };B 超过阈…

后台组件-语言包

<groupId>org.qlm</groupId><artifactId>qlm-language</artifactId><version>1.0-SNAPSHOT</version> 平台提供多语言支持&#xff0c;以上为语言包&#xff0c;提供后台多语言支持。首批实现&#xff1a; public class LanguageConstan…

《操作系统真相还原》读书笔记二:环境搭建 xshell连接virtualbox

修改 sshd_config 使用 vi /etc/ssh/sshd_config命令进入sshd服务配置&#xff0c;键盘输入i进行编辑&#xff0c;将监听端口、监听地址前的 # 号去除&#xff0c;开启允许远程登录&#xff0c;开启使用用户名密码来作为连接验证。修改完成&#xff0c;按一下Esc&#xff0c;输…

【Godot4自学手册】第二十节增加游戏的打击感,镜头震颤、冻结帧和死亡特效

这节我主要学习增加游戏的打击感。我们通过镜头震颤、冻结帧、增加攻击点特效&#xff0c;增加死亡。开始了。 一、添加攻击点特效 增加攻击点特效就是&#xff0c;在攻击敌人时&#xff0c;会在敌人受击点显示一个受击动画。 1.添加动画。 第一步先做个受击点动画。切换到…

【数据结构】堆的TopK问题

大家好&#xff0c;我是苏貝&#xff0c;本篇博客带大家了解堆的TopK问题&#xff0c;如果你觉得我写的还不错的话&#xff0c;可以给我一个赞&#x1f44d;吗&#xff0c;感谢❤️ 目录 一. 前言二. TopK三. 代码 一. 前言 TOP-K问题&#xff1a;即求数据结合中前K个最大的元…

鸿蒙Harmony应用开发—ArkTS声明式开发(通用属性:背景设置)

设置组件的背景样式。 说明&#xff1a; 从API Version 7开始支持。后续版本如有新增内容&#xff0c;则采用上角标单独标记该内容的起始版本。 background10 background(builder: CustomBuilder, options?: { align?: Alignment }) 设置组件背景。 系统能力&#xff1a; …

外包干了2年,技术退步明显

先说一下自己的情况&#xff0c;研究生&#xff0c;19年进入广州某软件公司&#xff0c;干了接近4年的功能测试&#xff0c;今年年初&#xff0c;感觉自己不能够在这样下去了&#xff0c;长时间呆在一个舒适的环境会让一个人堕落!而我已经在一个企业干了四年的功能测试&#xf…

CCF CSP 202006-4 1246 (100分详细题解,矩阵乘法+快速幂)

202006-4 1246 &#xff08;100分详细题解&#xff0c;矩阵乘法快速幂&#xff09; 可以先看下csp官方的思路讲解&#xff0c;大思路是状态转移&#xff0c;先看下面s<2的情况 1 -> 2 2 -> 4 4 -> 16 6 -> 6 64 4 16 -> 26&#xff08;不考虑2&#xff0c;6…

“计算机界三大神书”之一 ——SICP【赠书活动】

目录 前言一、SICP简介二、改编本SCIP JS福利总结 前言 《计算机程序的构造和解释》&#xff08;Structure and Interpretation of Computer Programs&#xff0c;简记为SICP&#xff09;是MIT的基础课教材&#xff0c;出版后引起计算机教育界的广泛关注&#xff0c;对推动全世…

Java开发必须掌握,java高级工程师面试类的加载

前言 这些算法&#xff0c;都是小编一点一点看的大佬们的方法&#xff0c;自己积累的. 如果有什么描述的不对 点击领取2024完整开源项目《一线大厂Java面试题解析后端开发学习笔记最新架构讲解视频实战项目源码讲义》 的地方还望大佬赐教 多交流才能进步&#xff0c;加油&#…

Apache POI 解析和处理Excel

摘要&#xff1a;由于开发需要批量导入Excel中的数据&#xff0c;使用了Apache POI库&#xff0c;记录下使用过程 1. 背景 Java 中操作 Excel 文件的库常用的有Apache POI 和阿里巴巴的 EasyExcel 。Apache POI 是一个功能比较全面的 Java 库&#xff0c;适合处理复杂的 Offi…

errno 和 strerror函数

今天写了一个很简单的代码&#xff0c;编译时没啥错误和警告&#xff08;主要编译选项没开启警告&#xff09;&#xff0c;然后运行时居然 segmentation fault&#xff0c;把我给看傻了&#xff0c;代码如下&#xff1a; #include <stdio.h> #include <stdlib.h> …

2024护网面试题精选(一)

0x00.基础漏洞篇 00-TOP10漏洞 1.SQL注入 2.失效的身份认证和会话管理 3.跨站脚本攻击XSS 4.直接引用不安全的对象 5.安全配置错误 6.敏感信息泄露 7.缺少功能级的访问控制 8.跨站请求伪造CSRF 9.实验含有已知漏洞的组件 10.未验证的重定向和转发 01-SQL注入漏洞 …