70
CREATE TABLE `assdect70` (
`flowId` int(11) NOT NULL COMMENT '自增ID',
`flowName` varchar(100) NOT NULL COMMENT '流程名称',
`isShow` tinyint(4) DEFAULT '1' COMMENT '是否显示 0隐藏 1显示',
`sort` tinyint(4) DEFAULT '0' COMMENT '显示排序',
`isDelete` tinyint(4) DEFAULT NULL COMMENT '是否可以删除 0否 1是',
`createTime` datetime NOT NULL COMMENT '创建时间',
`dataFlag` tinyint(4) NOT NULL COMMENT '有效状态 1有效 -1删除',
PRIMARY KEY (`flowId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
71
CREATE TABLE `schooldb`.`Untitled` (
`id` int(11) NOT NULL COMMENT '自增ID',
`shopExpressId` int(11) NOT NULL COMMENT '快递ID',
`tempName` varchar(100) NOT NULL COMMENT '模块名称',
`tempType` tinyint(4) NOT NULL DEFAULT 1 COMMENT '模板范围',
`provinceIds` text NULL COMMENT '省份ID数组',
`cityIds` text NULL COMMENT '城市ID数组',
`buyNumStart` int(4) NULL DEFAULT 0 COMMENT '首件',
`buyNumStrartPrice` decimal(11, 2) NULL COMMENT '收件运费',
`buyNumContinue` int(4) NULL DEFAULT 0 COMMENT '续件',
`buyNumContinuePrice` decimal(11, 2) NULL COMMENT '续件费用',
`weightStart` decimal(11, 2) NULL COMMENT '首重',
`weightStartPrice` decimal(11, 2) NULL COMMENT '首重价格',
`weightContinue` decimal(11, 2) NULL COMMENT '续重',
`weightContinuePrice` decimal(11, 2) NULL COMMENT '续重价格',
`volumeStart` decimal(11, 2) NULL COMMENT '首体积量',
`volumeStartPrice` decimal(11, 2) NULL COMMENT '首体积运费',
`volumeContinue` decimal(11, 2) NULL COMMENT '续体积量',
`volumeContinuePrice` decimal(11, 2) UNSIGNED NULL COMMENT '续体积运费',
`dataFlag` tinyint(4) NOT NULL DEFAULT 1 COMMENT '删除标记',
`shopId` int(11) NULL DEFAULT 0 COMMENT '店铺ID',
`createTime` datetime NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
);
72
CREATE TABLE `schooldb`.`Untitled` (
`id` int(11) NOT NULL COMMENT '自增ID',
`msgDataId` int(11) NULL DEFAULT 0 COMMENT '消息标识ID',
`msgType` tinyint(4) NULL DEFAULT 0 COMMENT '消息类型',
`msgCode` varchar(100) NULL COMMENT '消息代码',
PRIMARY KEY (`id`)
);
73
CREATE TABLE `schooldb`.`Untitled` (
`id` int(11) NOT NULL COMMENT '自增ID',
`shopId` int(11) NULL DEFAULT 0 COMMENT '店铺ID',
`roleName` varchar(100) NULL COMMENT '角色名称',
`privilegeMsgs` text NULL COMMENT '权限',
`privilegeUrls` text NULL COMMENT '权限url路径',
`rreateTime` datetime NULL COMMENT '创建时间',
`dataFlag` tinyint(4) NULL COMMENT '有效标识',
PRIMARY KEY (`id`)
);
74
CREATE TABLE `schooldb`.`Untitled` (
`scoreId` int(11) NOT NULL COMMENT '自增ID',
`shopId` int(11) NOT NULL COMMENT '门店ID',
`totalScore` int(11) NOT NULL DEFAULT 0 COMMENT '总评分',
`totalUsers` int(11) NOT NULL DEFAULT 0 COMMENT '总评评分用户数',
`goodsScore` int(11) NOT NULL DEFAULT 0 COMMENT '商品评分',
`goodsUsers` int(11) NOT NULL DEFAULT 0 COMMENT '商品评分用户数',
`serviceScore` int(11) NOT NULL COMMENT '服务评分',
`serviceUsers` int(11) NOT NULL DEFAULT 0 COMMENT '服务评分用户数',
`timeScore` int(11) NOT NULL DEFAULT 0 COMMENT '时效评分',
`timeUsers` int(11) NOT NULL DEFAULT 0 COMMENT '时效评分用户数',
PRIMARY KEY (`scoreId`)
);
75
CREATE TABLE `accreds75` (
`shopId` int(11) NOT NULL COMMENT '所对应的店铺ID',
`createTime` datetime DEFAULT NULL COMMENT '创建时间',
`dataFlag` tinyint(4) DEFAULT '1' COMMENT '有效状态 1有效-1删除',
`serviceId` varchar(50) NOT NULL COMMENT '店铺客服ID',
PRIMARY KEY (`shopId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
76
CREATE TABLE `schooldb`.`Untitled` (
`id` int(11) NOT NULL COMMENT '自增ID',
`styleSys` varchar(255) NULL COMMENT '风格适应的系统',
`styleName` varchar(255) NULL COMMENT '风格名称',
`styleCat` tinyint(4) UNSIGNED NULL DEFAULT 0 COMMENT '风格所属分类',
`stylePath` varchar(255) NULL COMMENT '风格目录',
`screenshot` varchar(255) NULL COMMENT '缩略图路径',
`isShow` tinyint(4) NULL DEFAULT 1 COMMENT '是否显示',
PRIMARY KEY (`id`)
);
77
CREATE TABLE `schooldb`.`Untitled` (
`id` int(11) NOT NULL COMMENT '自增ID',
`shopId` int(11) NOT NULL DEFAULT 0 COMMENT '店铺ID',
`userId` int(11) NOT NULL DEFAULT 0 COMMENT '用户ID',
`roleId` int(11) NOT NULL DEFAULT 0 COMMENT '角色ID',
`dataFlag` tinyint(4) NOT NULL DEFAULT 1 COMMENT '有效标识',
`serviceId` varchar(50) NOT NULL COMMENT '客服ID',
`privilegeMsgTypes` varchar(50) NULL COMMENT '接受信息',
`privilegeMsgs` varchar(200) NULL COMMENT '接受信息权限',
`privilegePhoneMsgs` varchar(200) NULL COMMENT '接受短信权限',
PRIMARY KEY (`id`)
);