From 70f162abe66e74b73b5b5d9d34e16bb84f1b68e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=81=E7=91=9E=E8=B6=85?= <281809423@qq.com> Date: Sat, 10 Oct 2020 17:11:10 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=9C=8D=E5=8A=A1=E6=9C=BA?= =?UTF-8?q?=E6=9E=84=E8=A1=A8sql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/business_20201010.sql | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 sql/business_20201010.sql diff --git a/sql/business_20201010.sql b/sql/business_20201010.sql new file mode 100644 index 000000000..63e7d647a --- /dev/null +++ b/sql/business_20201010.sql @@ -0,0 +1,24 @@ +-- ---------------------------- +-- 1、服务组织代码生成业务表字段 +-- ---------------------------- +drop table if exists service_organization; +create table service_organization ( + id int(4) not null auto_increment comment 'ID', + name int(4) varchar(50) not null comment '企业名称', + contacts int(4) varchar(50) not null comment '联系人', + phone varchar(12) not null comment '联系电话', + license_url varchar(500) not null comment '营业执照图片地址(多个地址用,分隔)', + title varchar(50) not null comment '标题', + introduction text not null comment '简介', + content text not null comment '机构详情内容', + hits int (6) comment '点击量', + status char(1) default '0' comment '状态(0:待审核,1:审核不通过,2:审核通过)', + create_by varchar(64) default '' comment '创建者', + create_time datetime comment '创建时间', + update_by varchar(64) default '' comment '更新者', + update_time datetime comment '更新时间', + check_by varchar(64) default '' comment '审核者', + check_time datetime comment '审核时间', + remark varchar(255) default null comment '备注', + primary key (id) +) engine=innodb auto_increment=10 comment = '服务组织表'; \ No newline at end of file