Browse Source

v2.2.0版本

master
huangww 7 years ago
parent
commit
9b5e21ac35
8 changed files with 88902 additions and 48208 deletions
  1. 9600
      35数据库设计/1hjz.cdm
  2. 3764
      35数据库设计/v2.1.0/1hjz.cdm
  3. 14488
      35数据库设计/v2.1.0/1hjz.pdm
  4. 10
      35数据库设计/v2.1.0/1hjz_v2.1.0.sql
  5. 34800
      35数据库设计/v2.2.0/1hjz.cdm
  6. 72914
      35数据库设计/v2.2.0/1hjz.pdm
  7. 1472
      35数据库设计/v2.2.0/1hjz.sql
  8. 62
      35数据库设计/v2.2.0/1hjz_v2.2.0.sql

9600
35数据库设计/1hjz.cdm
File diff suppressed because it is too large
View File

3764
35数据库设计/v2.1.0/1hjz.cdm
File diff suppressed because it is too large
View File

14488
35数据库设计/v2.1.0/1hjz.pdm
File diff suppressed because it is too large
View File

10
35数据库设计/v2.1.0/1hjz_v2.1.0.sql

@ -12,7 +12,7 @@ create table cleaner_blacklists
create_by varchar(32) comment '创建人',
update_at bigint comment '更新时间',
update_by varchar(32) comment '更新人',
status tinyint(2) default 0 comment '状态:0-正常,1-解除',
status tinyint(1) default 0 comment '状态:0-正常,1-解除',
remark varchar(100) comment '备注',
del_flag tinyint DEFAULT 0 comment '删除标识:0-未删除,1-已删除',
primary key (id)
@ -30,7 +30,7 @@ add column default_cleaner_name varchar(50) comment '默认保洁师名称';
/* Table: cleaner_info */
/*==============================================================*/
alter table cleaner_info
add column departure_at bigint comment '离职时间,默认0,大于0为已离职',
add column departure_at bigint default 0 comment '离职时间,默认0,大于0为已离职',
add column amap_lng decimal(10,6) default 0.000000 comment '高德经度',
add column amap_lat decimal(10,6) default 0.000000 comment '高德纬度';
@ -48,3 +48,9 @@ add column amap_lat decimal(10,6) default 0.000000 comment '高德纬度';
alter table book_detail
add column amap_lng decimal(10,6) default 0.000000 comment '高德经度',
add column amap_lat decimal(10,6) default 0.000000 comment '高德纬度';
/*==============================================================*/
/* Table: cleaner_pool */
/*==============================================================*/
alter table cleaner_pool
add column del_flag tinyint DEFAULT 0 comment '删除标识:0-未删除,1-已删除';

34800
35数据库设计/v2.2.0/1hjz.cdm
File diff suppressed because it is too large
View File

35数据库设计/v2.2.0/1hjz.pdm
File diff suppressed because it is too large
View File

1472
35数据库设计/v2.2.0/1hjz.sql
File diff suppressed because it is too large
View File

62
35数据库设计/v2.2.0/1hjz_v2.2.0.sql

@ -0,0 +1,62 @@
/*==============================================================*/
/* DBMS name: MySQL 5.0 */
/* Created on: 2018/7/18 0:23:54 */
/*==============================================================*/
drop table if exists service_evaluation;
/*==============================================================*/
/* Table: service_evaluation */
/*==============================================================*/
create table service_evaluation
(
id int not null,
user_id bigint comment '用户id',
book_id bigint comment '预约id',
book_no varchar(32) comment '预约编号',
evaluation_no bigint comment '评价编号',
time_score int comment '时效评分',
service_score int comment '服务评分',
profession_score int comment '专业评分',
create_at bigint comment '创建时间',
content varchar(255) comment '评价内容',
status tinyint default 0 comment '状态:0-待回访,1-已回访',
feedback_at bigint comment '回访时间',
feedback_content varchar(255) comment '回访内容',
feedback_by varchar(32) comment '回访人',
primary key (id)
);
alter table service_evaluation comment '服务评价表';
/*==============================================================*/
/* Table: consumer_info */
/*==============================================================*/
alter table consumer_info
add column channel_no varchar(32) comment '渠道编号',
add column channel_id bigint comment '渠道id';
/*==============================================================*/
/* Table: book_detail */
/*==============================================================*/
alter table book_detail
add column push_status tinyint default 0 comment '推送标识:0-未推送,1-已推送',
add column push_at dateTime comment '推送时间';
/*==============================================================*/
/* Table: vgoods */
/*==============================================================*/
alter table vgoods
add column sale_type tinyint comment '分销类型:1-实付比例,2-固定金额';
/*==============================================================*/
/* Table: vorder */
/*==============================================================*/
alter table vorder
add column sale_type tinyint comment '分销类型:1-实付比例,2-固定金额';
Loading…
Cancel
Save