From cd281085179a56de155600920f8698cab1fdf7d2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E4=B8=81=E7=91=9E=E8=B6=85?= <281809423@qq.com>
Date: Wed, 21 Oct 2020 09:21:15 +0800
Subject: [PATCH 1/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=80=E4=BA=9B?=
=?UTF-8?q?=E6=96=87=E5=AD=97=E4=BF=A1=E6=81=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
ruoyi-admin/src/main/resources/templates/index.html | 2 +-
ruoyi-admin/src/main/resources/templates/login.html | 10 +++++-----
ruoyi-admin/src/main/resources/templates/register.html | 2 +-
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/ruoyi-admin/src/main/resources/templates/index.html b/ruoyi-admin/src/main/resources/templates/index.html
index d9d1b7040..6c14832ab 100644
--- a/ruoyi-admin/src/main/resources/templates/index.html
+++ b/ruoyi-admin/src/main/resources/templates/index.html
@@ -4,7 +4,7 @@
-
若依系统首页
+ 企业法律服务平台系统首页
diff --git a/ruoyi-admin/src/main/resources/templates/login.html b/ruoyi-admin/src/main/resources/templates/login.html
index a34a53cea..e28442dae 100644
--- a/ruoyi-admin/src/main/resources/templates/login.html
+++ b/ruoyi-admin/src/main/resources/templates/login.html
@@ -3,8 +3,8 @@
- 登录若依系统
-
+ 企业法律服务平台管理系统
+
@@ -29,7 +29,7 @@
![[ 若依 ]](../static/ruoyi.png)
- 欢迎使用 若依 后台管理系统
+ 欢迎使用 企业法律服务平台管理系统
- SpringBoot
- Mybatis
@@ -43,7 +43,7 @@
diff --git a/ruoyi-admin/src/main/resources/templates/register.html b/ruoyi-admin/src/main/resources/templates/register.html
index a272d8153..32743d4ac 100644
--- a/ruoyi-admin/src/main/resources/templates/register.html
+++ b/ruoyi-admin/src/main/resources/templates/register.html
@@ -64,7 +64,7 @@
From 4b0bd47b310c0b5c3d1f253600738f05eafe80b8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E4=B8=81=E7=91=9E=E8=B6=85?= <281809423@qq.com>
Date: Wed, 21 Oct 2020 17:42:35 +0800
Subject: [PATCH 2/2] =?UTF-8?q?sql=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
sql/business_20201010.sql | 28 +---------------------------
1 file changed, 1 insertion(+), 27 deletions(-)
diff --git a/sql/business_20201010.sql b/sql/business_20201010.sql
index 74e0d49eb..79c31fd6f 100644
--- a/sql/business_20201010.sql
+++ b/sql/business_20201010.sql
@@ -1,6 +1,4 @@
-------------------------------
-- 1、服务组织表
-------------------------------
drop table if exists service_organization;
create table service_organization (
id bigint(20) not null auto_increment comment 'ID',
@@ -12,7 +10,7 @@ create table service_organization (
introduction text not null comment '简介',
content text not null comment '机构详情内容',
hits int (6) default 0 comment '点击量',
- status char(1) default '0' comment '状态(0:待审核,1:审核不通过,2:审核通过)',
+ audit_status char(1) default '0' comment '状态(0:待审核,1:审核不通过,2:审核通过)',
picture_url varchar(500) not null comment '图片地址(多个地址用,分隔)',
status char(1) default '0' comment '状态(0正常 1停用)',
del_flag char(1) default '0' comment '删除标志(0代表存在 2代表删除)',
@@ -26,9 +24,7 @@ create table service_organization (
primary key (id)
) engine=innodb auto_increment=10 comment = '服务组织表';
--- ----------------------------
-- 2、 合同分类表
--- ----------------------------
drop table if exists contract_type;
create table contract_type (
id bigint(20) not null auto_increment comment 'ID',
@@ -43,9 +39,7 @@ create table contract_type (
primary key (id)
) engine=innodb auto_increment=10 comment = '合同分类表';
-------------------------------
-- 3、 合同模板表
-------------------------------
drop table if exists contract_template;
create table contract_template (
id bigint(20) not null auto_increment comment 'ID',
@@ -66,9 +60,7 @@ create table contract_template (
) engine=innodb auto_increment=10 comment = '合同模板表';
--- ----------------------------
-- 4、 典型案例表
--- ----------------------------
drop table if exists classsic_cases;
create table classsic_cases (
id bigint(20) not null auto_increment comment 'ID',
@@ -88,9 +80,7 @@ create table classsic_cases (
) engine=innodb auto_increment=10 comment = '典型案例表';
-------------------------------
-- 5、 线上课程代表
-------------------------------
drop table if exists online_courses;
create table online_courses (
id bigint(20) not null auto_increment comment 'ID',
@@ -112,9 +102,7 @@ create table online_courses (
) engine=innodb auto_increment=10 comment = '线上课程表';
--- ----------------------------
-- 6、 线上课程评价表
--- ----------------------------
drop table if exists online_courses_evaluate;
create table online_courses_evaluate (
id bigint(20) not null auto_increment comment 'ID',
@@ -129,9 +117,7 @@ create table online_courses_evaluate (
primary key (id)
) engine=innodb auto_increment=10 comment = '线上课程评价表';
--- ----------------------------
-- 7、 新闻动态表
--- ----------------------------
drop table if exists news_information;
create table news_information (
id bigint(20) not null auto_increment comment 'ID',
@@ -149,9 +135,7 @@ create table news_information (
) engine=innodb auto_increment=10 comment = '新闻动态表';
--- ----------------------------
-- 8、在线留言表
--- ----------------------------
drop table if exists online_message;
create table online_message (
id bigint(20) not null auto_increment comment 'ID',
@@ -167,9 +151,7 @@ create table online_message (
primary key (id)
) engine=innodb auto_increment=10 comment = '在线留言表';
--- ----------------------------
-- 9、联系方式表
--- ----------------------------
drop table if exists contact_information;
create table contact_information (
id bigint(20) not null auto_increment comment 'ID',
@@ -189,9 +171,7 @@ create table contact_information (
) engine=innodb auto_increment=10 comment = '联系方式表';
--- ----------------------------
-- 10、法律服务表
--- ----------------------------
drop table if exists legal_services;
create table legal_services (
id bigint(20) not null auto_increment comment 'ID',
@@ -205,9 +185,7 @@ create table legal_services (
primary key (id)
) engine=innodb auto_increment=10 comment = '法律服务表';
--- ----------------------------
-- 11、 常见问题表
--- ----------------------------
drop table if exists common_problem;
create table common_problem (
id bigint(20) not null auto_increment comment 'ID',
@@ -223,9 +201,7 @@ create table common_problem (
) engine=innodb auto_increment=10 comment = '常见问题表';
--- ----------------------------
-- 12、 活动招募表
--- ----------------------------
drop table if exists event_recruitment;
create table event_recruitment (
id bigint(20) not null auto_increment comment 'ID',
@@ -243,9 +219,7 @@ create table event_recruitment (
primary key (id)
) engine=innodb auto_increment=10 comment = '活动招募表';
--- ----------------------------
-- 13、首页轮播图表
--- ----------------------------
drop table if exists home_page_carousel;
create table home_page_carousel (
id bigint(20) not null auto_increment comment 'ID',