外键er图
88张表
/*
Navicat MySQL Data Transfer
Source Server : MyList
Source Server Version : 50726
Source Host : localhost:3309
Source Database : schooldb
Target Server Type : MYSQL
Target Server Version : 50726
File Encoding : 65001
Date: 2024-04-28 01:22:46
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `1accreds`
-- ----------------------------
DROP TABLE IF EXISTS `1accreds`;
CREATE TABLE `1accreds` (
`accredId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`accredName` varchar(50) DEFAULT NULL COMMENT '名称',
`accredImg` varchar(150) DEFAULT NULL COMMENT '图标',
`dataElag` tinyint(4) DEFAULT NULL COMMENT '删除标志(-1:删除 1:有效)',
`createTime` datetime DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`accredId`) USING BTREE,
CONSTRAINT `21` FOREIGN KEY (`accredId`) REFERENCES `63shop_accreds` (`accredId`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——accreds';
-- ----------------------------
-- Records of 1accreds
-- ----------------------------
-- ----------------------------
-- Table structure for `2addons`
-- ----------------------------
DROP TABLE IF EXISTS `2addons`;
CREATE TABLE `2addons` (
`addonId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`name` varchar(40) NOT NULL COMMENT '插件名称',
`tittle` varchar(20) NOT NULL COMMENT '插件标题',
`description` text COMMENT '插件描述',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '插件状态(0:未安装1:启用2:禁用)',
`config` text COMMENT '插件配置参数json',
`author` varchar(40) DEFAULT NULL COMMENT '插件作者',
`version` varchar(20) DEFAULT NULL COMMENT '插件版本号',
`creataTime` datetime NOT NULL COMMENT '创建时间',
`dataFlag` tinyint(4) DEFAULT '1' COMMENT '有效标识(1:有效-1:删除)',
`isConfig` tinyint(4) DEFAULT '0' COMMENT '是否配置(1:已配置,0:未配置)',
`updateTime` datetime NOT NULL COMMENT '修改时间',
PRIMARY KEY (`addonId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——addons';
-- ----------------------------
-- Records of 2addons
-- ----------------------------
-- ----------------------------
-- Table structure for `3ads`
-- ----------------------------
DROP TABLE IF EXISTS `3ads`;
CREATE TABLE `3ads` (
`adId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`adPositionId` int(11) NOT NULL DEFAULT '0' COMMENT '广告位置ID',
`adFile` varchar(150) NOT NULL COMMENT '广告文件',
`adName` varchar(100) NOT NULL COMMENT '广告名称',
`adURL` varchar(255) NOT NULL COMMENT '广告网址',
`adStartDate` date NOT NULL COMMENT '广告开始日期',
`adEndDate` date NOT NULL COMMENT '广告结束日期',
`adSort` int(11) NOT NULL DEFAULT '0' COMMENT '排序号',
`adClickNum` int(11) NOT NULL DEFAULT '0' COMMENT '广告点击数',
`positionType` tinyint(4) DEFAULT '0' COMMENT '广告类型(1:电脑端2:微信端3:手机端4:app端5:小程序端)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志(-1:删除1:有效)',
`createTime` datetime NOT NULL COMMENT '创建时间',
`subTittle` varchar(255) DEFAULT NULL COMMENT '副标题',
PRIMARY KEY (`adId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——广告表';
-- ----------------------------
-- Records of 3ads
-- ----------------------------
-- ----------------------------
-- Table structure for `4ad_positions`
-- ----------------------------
DROP TABLE IF EXISTS `4ad_positions`;
CREATE TABLE `4ad_positions` (
`positionId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`positionType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '广告类型(1:电脑端2:微信端3:手机端4:app端5:小程序端)',
`positionName` varchar(100) NOT NULL COMMENT '广告位置名称',
`positionWidth` int(11) NOT NULL DEFAULT '0' COMMENT '建议宽度',
`positionHeight` int(11) NOT NULL DEFAULT '0' COMMENT '建议高度',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效-1:无效)',
`positionCode` varchar(20) DEFAULT NULL COMMENT '广告位置代码(N/A)',
`apSort` int(11) NOT NULL COMMENT '排序号',
PRIMARY KEY (`positionId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——广告位置表';
-- ----------------------------
-- Records of 4ad_positions
-- ----------------------------
-- ----------------------------
-- Table structure for `5areas`
-- ----------------------------
DROP TABLE IF EXISTS `5areas`;
CREATE TABLE `5areas` (
`areaId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`parentId` int(11) NOT NULL COMMENT '父ID',
`areaName` varchar(100) NOT NULL COMMENT '地区名称',
`isShow` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示(0“是1:否)',
`areaSort` int(11) NOT NULL DEFAULT '0' COMMENT '排序号',
`areaKey` char(10) NOT NULL COMMENT '地区首字母',
`areaType` tinyint(4) NOT NULL DEFAULT '1' COMMENT '级别标志(1:省2:市3:县区)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志(-1:删除1:有效)',
`createTime` datetime DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`areaId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——区域表';
-- ----------------------------
-- Records of 5areas
-- ----------------------------
-- ----------------------------
-- Table structure for `6articles`
-- ----------------------------
DROP TABLE IF EXISTS `6aeticles`;
CREATE TABLE `6articles` (
`articleId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`catId` int(11) NOT NULL COMMENT '分类ID',
`articleTittle` varchar(200) NOT NULL COMMENT '文章标题',
`isShow` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示(0:隐藏1:显示)',
`articleContent` longblob NOT NULL COMMENT '文章内容',
`articleKey` varchar(200) DEFAULT NULL COMMENT '关键字',
`staffld` int(11) NOT NULL COMMENT '创建者',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效-1:无效)',
`createTime` datetime DEFAULT NULL COMMENT '创建时间',
`solve` int(10) unsigned DEFAULT NULL COMMENT '觉得文章有帮助的次数',
`unsolve` int(10) unsigned DEFAULT NULL COMMENT '觉得文章没帮助的次数',
`covering` varchar(150) DEFAULT NULL COMMENT '文章封面图片',
`visitorNum` int(10) DEFAULT '0' COMMENT '浏览数',
`TypeStatus` int(10) DEFAULT '1' COMMENT '布局类型(1:左图右文2:左文右图3:上文下图4:全文)',
`likeNum` int(10) DEFAULT '0' COMMENT '点赞数',
`catSort` int(11) DEFAULT '0' COMMENT '排序号',
`articleDesc` varchar(600) NOT NULL COMMENT '文章描述',
`isHide` tinyint(4) DEFAULT '0' COMMENT '是否隐藏不可编辑/删除文章(1:是0:否)',
PRIMARY KEY (`articleId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——文章记录表';
-- ----------------------------
-- Records of 6articles
-- ----------------------------
-- ----------------------------
-- Table structure for `7article_cats`
-- ----------------------------
DROP TABLE IF EXISTS `7article_cats`;
CREATE TABLE `7article_cats` (
`catId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`parentId` int(11) NOT NULL DEFAULT '0' COMMENT '父ID',
`catType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '分类类型(0:普通类型1:系统菜单)',
`isShow` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示(0:隐藏1:显示)',
`catNme` varchar(20) NOT NULL COMMENT '分类名称',
`catSort` int(11) NOT NULL DEFAULT '0' COMMENT '排序号',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志',
`createTime` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`catId`),
KEY `catNme` (`catNme`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——文章分类表';
-- ----------------------------
-- Records of 7article_cats
-- ----------------------------
-- ----------------------------
-- Table structure for `8attributes`
-- ----------------------------
DROP TABLE IF EXISTS `8attributes`;
CREATE TABLE `8attributes` (
`attrId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`goodsCatId` int(11) NOT NULL DEFAULT '0' COMMENT '最后一级商品分类ID',
`goodsCatPath` varchar(100) NOT NULL COMMENT '商品分类路径',
`attrName` varchar(100) NOT NULL COMMENT '属性名称',
`attrType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '属性类型(0:输入框 1:多选框 2:下拉框)',
`attrVal` text COMMENT '属性值',
`attrSort` int(11) NOT NULL DEFAULT '0' COMMENT '排序号',
`isShow` tinyint(4) DEFAULT '1' COMMENT '是否显示(1:显示 0:不显示)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效 2:无效)',
`createTime` datetime NOT NULL COMMENT '创建时间',
`shopId` int(11) DEFAULT NULL COMMENT '店铺ID(如果有值则说明是店铺属性)',
PRIMARY KEY (`attrId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——商品属性表';
-- ----------------------------
-- Records of 8attributes
-- ----------------------------
-- ----------------------------
-- Table structure for `9banks`
-- ----------------------------
DROP TABLE IF EXISTS `9banks`;
CREATE TABLE `9banks` (
`bankId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`bankName` varchar(50) NOT NULL COMMENT '银行名称',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效 -1:无效)',
`createTime` datetime NOT NULL COMMENT '创建时间',
`banklmg` varchar(150) DEFAULT NULL COMMENT '银行图标',
`bankCode` varchar(100) DEFAULT NULL COMMENT '银行代码(第三方功能会用到,如用户申请提现,管理员付款到银行卡时会用到)',
`isShow` tinyint(4) DEFAULT '1' COMMENT '使用启用(1:是0:否)',
PRIMARY KEY (`bankId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——银行表';
-- ----------------------------
-- Records of 9banks
-- ----------------------------
-- ----------------------------
-- Table structure for `10brands`
-- ----------------------------
DROP TABLE IF EXISTS `10brands`;
CREATE TABLE `10brands` (
`brandld` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`brandName` varchar(100) NOT NULL COMMENT '品牌名称',
`brandlmg` varchar(150) NOT NULL COMMENT '品牌图标',
`bandDesc` text COMMENT '品牌介绍',
`createTime` datetime NOT NULL COMMENT '建立时间',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志(-1:删除 1:有效)',
`sortNo` int(11) DEFAULT '0' COMMENT '品牌排序号',
PRIMARY KEY (`brandld`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——品牌表';
-- ----------------------------
-- Records of 10brands
-- ----------------------------
-- ----------------------------
-- Table structure for `11carts`
-- ----------------------------
DROP TABLE IF EXISTS `11carts`;
CREATE TABLE `11carts` (
`cartId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`userId` int(11) NOT NULL DEFAULT '0' COMMENT '用户id',
`isCheck` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否选中',
`goodsld` int(11) NOT NULL DEFAULT '0' COMMENT '商品id',
`goodsSpecId` varchar(200) NOT NULL DEFAULT '0' COMMENT '商品-规格ID',
`cartNum` int(11) NOT NULL DEFAULT '0' COMMENT '商品数量',
PRIMARY KEY (`cartId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅—— 购物车表';
-- ----------------------------
-- Records of 11carts
-- ----------------------------
-- ----------------------------
-- Table structure for `12cash_configs`
-- ----------------------------
DROP TABLE IF EXISTS `12cash_configs`;
CREATE TABLE `12cash_configs` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`targetType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '提现对象(0:用户 1:商家)',
`targetId` int(11) NOT NULL COMMENT '提现对象ID',
`acc Type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '提现类型(3:银行卡)',
`acc TargetId` int(11) NOT NULL DEFAULT '0' COMMENT '银行卡ID(-1:支付宝 -2:微信)',
`accAreaId` int(11) DEFAULT NULL COMMENT '开卡地区ID',
`accNo` varchar(100) NOT NULL COMMENT '银行卡号',
`accUser` varchar(100) NOT NULL COMMENT '持卡人',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效时间(1:有效 -1:删除)',
`createTime` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅—— 提现账号配置表';
-- ----------------------------
-- Records of 12cash_configs
-- ----------------------------
-- ----------------------------
-- Table structure for `13cash_draws`
-- ----------------------------
DROP TABLE IF EXISTS `13cash_draws`;
CREATE TABLE `13cash_draws` (
`cashId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`cashNo` varchar(50) NOT NULL COMMENT '提现单号',
`targetType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '提现对象(0:用户 1:商家)',
`targetId` int(11) NOT NULL DEFAULT '0' COMMENT '提现对象ID',
`money` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '金额',
`acc Type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '提现类型',
`acc TargetName` varchar(100) DEFAULT NULL COMMENT '开卡银行名称',
`accAreaName` varchar(100) DEFAULT NULL COMMENT '开卡地区名称',
`accNo` varchar(100) NOT NULL COMMENT '卡号',
`accUser` varchar(100) DEFAULT NULL COMMENT '持卡人',
`cashSatus` tinyint(4) NOT NULL DEFAULT '0' COMMENT '体现状态(-1提现失败 0:待处理 1:体现成功)',
`cashRemarks` varchar(255) DEFAULT NULL COMMENT '提现备注',
`cashConfigId` int(11) NOT NULL COMMENT '提现设置对应的id',
`create Time` datetime NOT NULL COMMENT '创建时间',
`commission` decimal(11,2) DEFAULT '0.00' COMMENT '提现手续费',
`actualMoney` decimal(11,2) DEFAULT '0.00' COMMENT '实际到账金额',
`commossionRate` tinyint(4) DEFAULT NULL COMMENT '提现手续费率',
`sendData` text COMMENT '向微信商户号请求的内容',
`returnDate` text COMMENT '微信商户返回的内容',
`returnMrg` varchar(300) DEFAULT NULL COMMENT '微信商户返回的结果(内容取自returnDate)',
`payTime` datetime DEFAULT NULL COMMENT '付款时间(N/A)',
`payNo` varchar(300) DEFAULT NULL COMMENT '付款流水(商户号返回的)',
`acc TargetId` int(11) DEFAULT '0' COMMENT '银行ID(通过这个可以知道银行代码是什么)',
`payFee` int(11) DEFAULT '0' COMMENT '手续费(微信商户号收)',
`incNo` int(11) DEFAULT '0' COMMENT '自增ID(向银行卡付款失败后,再次请求需要做加1操作,和提现申请单号组合使用)',
`queryDate` text COMMENT '查询银行卡付款状态请求的数据',
`queryRrturnDate` text COMMENT '查询银行卡付款状态返回的数据',
PRIMARY KEY (`cashId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——提现记录表';
-- ----------------------------
-- Records of 13cash_draws
-- ----------------------------
-- ----------------------------
-- Table structure for `14cat_brands`
-- ----------------------------
DROP TABLE IF EXISTS `14cat_brands`;
CREATE TABLE `14cat_brands` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`catId` int(11) DEFAULT NULL COMMENT '分类ID',
`brandId` int(11) DEFAULT NULL COMMENT '品牌ID',
PRIMARY KEY (`id`),
KEY `6` (`brandId`),
KEY `1` (`catId`),
CONSTRAINT `1` FOREIGN KEY (`catId`) REFERENCES `7article_cats` (`catId`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `6` FOREIGN KEY (`brandId`) REFERENCES `10brands` (`brandld`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `75` FOREIGN KEY (`id`) REFERENCES `12cash_configs` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——分类品牌表';
-- ----------------------------
-- Records of 14cat_brands
-- ----------------------------
-- ----------------------------
-- Table structure for `15cat_shops`
-- ----------------------------
DROP TABLE IF EXISTS `15cat_shops`;
CREATE TABLE `15cat_shops` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`shopId` int(11) NOT NULL DEFAULT '0' COMMENT '店铺ID',
`catId` int(11) NOT NULL COMMENT '所属分类ID',
`commissionRate` decimal(11,2) DEFAULT '0.00' COMMENT '商家店铺分类佣金比例',
PRIMARY KEY (`id`),
KEY `catId` (`catId`),
KEY `27` (`shopId`),
CONSTRAINT `2` FOREIGN KEY (`catId`) REFERENCES `7article_cats` (`catId`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `27` FOREIGN KEY (`shopId`) REFERENCES `62shops` (`shopId`),
CONSTRAINT `74` FOREIGN KEY (`id`) REFERENCES `14cat_brands` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT=' 马文雅——店铺经营类目表';
-- ----------------------------
-- Records of 15cat_shops
-- ----------------------------
-- ----------------------------
-- Table structure for `16charge_items`
-- ----------------------------
DROP TABLE IF EXISTS `16charge_items`;
CREATE TABLE `16charge_items` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`chargeMoney` int(11) DEFAULT '0' COMMENT '充值金额',
`giveMoney` decimal(11,1) DEFAULT '0.0' COMMENT '赠送金额',
`itenSort` int(11) DEFAULT '0' COMMENT '排序号',
`dataFlag` tinyint(4) DEFAULT '1' COMMENT '是否有效(1:有效 -1:删除)',
`createTime` datetime DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`),
CONSTRAINT `73` FOREIGN KEY (`id`) REFERENCES `15cat_shops` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT=' 马文雅——充值项表';
-- ----------------------------
-- Records of 16charge_items
-- ----------------------------
-- ----------------------------
-- Table structure for `17dates`
-- ----------------------------
DROP TABLE IF EXISTS `17dates`;
CREATE TABLE `17dates` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`catId` int(11) NOT NULL DEFAULT '0' COMMENT '分类id',
`dataName` varchar(255) NOT NULL COMMENT '数据名称',
`dataVal` varchar(255) NOT NULL COMMENT '数据值',
`dataSort` int(11) NOT NULL COMMENT '排序号',
`dataFlag` tinyint(4) DEFAULT '1' COMMENT '有效标记(1:有效 -1:删除)',
`subCatId` int(11) DEFAULT '0' COMMENT '子分类ID',
`subDataVal` int(11) DEFAULT '0' COMMENT '子分类数据内容',
PRIMARY KEY (`id`),
CONSTRAINT `72` FOREIGN KEY (`id`) REFERENCES `16charge_items` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT=' 马文雅——基础数据表';
-- ----------------------------
-- Records of 17dates
-- ----------------------------
-- ----------------------------
-- Table structure for `18data_cats`
-- ----------------------------
DROP TABLE IF EXISTS `18data_cats`;
CREATE TABLE `18data_cats` (
`catId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`catName` varchar(255) NOT NULL COMMENT '数据分类名称',
`dataFlag` tinyint(4) DEFAULT '1' COMMENT '有效标记(1:有效 -1:删除)',
`catCode` varchar(255) NOT NULL COMMENT '分类表标记字母',
PRIMARY KEY (`catId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT=' 马文雅——基础数据分类表';
-- ----------------------------
-- Records of 18data_cats
-- ----------------------------
-- ----------------------------
-- Table structure for `19express`
-- ----------------------------
DROP TABLE IF EXISTS `19express`;
CREATE TABLE `19express` (
`expressId` int(11) NOT NULL AUTO_INCREMENT,
`expressName` varchar(50) NOT NULL COMMENT '快递名称',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志(1:有效 -1:删除)',
`expressCode` varchar(50) DEFAULT NULL COMMENT '快递代码(主要用于物流插件)',
`isShow` tinyint(4) DEFAULT '1' COMMENT '是否启用(1:是 0:否)',
PRIMARY KEY (`expressId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT=' 马文雅——快递表';
-- ----------------------------
-- Records of 19express
-- ----------------------------
-- ----------------------------
-- Table structure for `20favorites`
-- ----------------------------
DROP TABLE IF EXISTS `20favorites`;
CREATE TABLE `20favorites` (
`favoriteId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`uaerId` int(11) NOT NULL DEFAULT '0' COMMENT '用户ID',
`createTime` datetime NOT NULL COMMENT '创建时间',
`goodsId` int(11) DEFAULT NULL COMMENT '商品ID',
`curShopPrice` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '关注时的价格',
PRIMARY KEY (`favoriteId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——关注商品表';
-- ----------------------------
-- Records of 20favorites
-- ----------------------------
-- ----------------------------
-- Table structure for `21feedbacks`
-- ----------------------------
DROP TABLE IF EXISTS `21feedbacks`;
CREATE TABLE `21feedbacks` (
`feedbackId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`feedbackType` int(4) NOT NULL DEFAULT '0' COMMENT '反馈类型,内容来自原系统基础数据表',
`userId` int(11) DEFAULT NULL COMMENT '反馈者ID',
`create Time` datetime NOT NULL COMMENT '反馈时间',
`feedbackContent` text COMMENT '反馈内容',
`contactinfo` varchar(100) DEFAULT NULL COMMENT '联系方式',
`dataFlag` tinyint(4) DEFAULT '1' COMMENT '删除标志(1:有效-1:删除)',
`feedbackStatus` tinyint(4) DEFAULT '0' COMMENT '反馈记录状态(0:待处理 1:已处理)',
`staffId` int(11) DEFAULT '0' COMMENT '处理者ID',
`handleTime` datetime DEFAULT NULL COMMENT '处理时间',
`handleContent` text COMMENT '处理结果',
PRIMARY KEY (`feedbackId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT=' 马文雅——用户反馈表';
-- ----------------------------
-- Records of 21feedbacks
-- ----------------------------
-- ----------------------------
-- Table structure for `22friendlinks`
-- ----------------------------
DROP TABLE IF EXISTS `22friendlinks`;
CREATE TABLE `22friendlinks` (
`friendlinkId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`friendlinklco` varchar(150) DEFAULT NULL COMMENT '图标',
`friendlinkName` varchar(50) NOT NULL COMMENT '名称',
`friendlinkUrl` varchar(150) NOT NULL COMMENT '网址',
`friendlinkSort` int(11) NOT NULL COMMENT '排序号',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志(-1:删除 1:有效)',
`createTIme` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`friendlinkId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——友情链接表';
-- ----------------------------
-- Records of 22friendlinks
-- ----------------------------
-- ----------------------------
-- Table structure for `23goods`
-- ----------------------------
DROP TABLE IF EXISTS `23goods`;
CREATE TABLE `23goods` (
`goodsId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`goodsSn` varchar(20) NOT NULL COMMENT '商品编号',
`productNo` varchar(20) NOT NULL COMMENT '商品货号',
`goodsName` varchar(200) NOT NULL COMMENT '商品名称',
`goodsImg` varchar(150) NOT NULL COMMENT '商品图片',
`shopId` int(11) NOT NULL COMMENT '店铺ID',
`marketPrice` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '市场价',
`shopPrice` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '店铺价',
`warnStock` int(11) NOT NULL DEFAULT '0' COMMENT '预警库存',
`goodsStock` int(11) NOT NULL DEFAULT '0' COMMENT '商品总库存',
`goodsUnit` char(10) NOT NULL COMMENT '单位',
`goodsTips` text COMMENT '促销信息',
`isSale` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否上架(0:不上架 1:上架)',
`isBest` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否精品(0:否 1:是)',
`isHot` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否热销产品(0:否 1:是)',
`isNew` tinyint(4) NOT NULL COMMENT '是否新品(0:否 1:是)',
`isRecom` tinyint(4) DEFAULT '0' COMMENT '是否推荐(0:否 1:是)',
`goodsCatIdPath` varchar(255) DEFAULT NULL COMMENT '商品分类ID路径(catId1_catId2_catId3)',
`goodsCatId` int(11) NOT NULL COMMENT '最后一级商品分类ID',
`shopCatId1` int(11) NOT NULL COMMENT '门店商品第一级分类ID',
`shopCatId2` int(11) NOT NULL COMMENT '门店商品第二级分类ID',
`brankId` int(11) DEFAULT '0' COMMENT '品牌Id',
`goodsDesc` text NOT NULL COMMENT '商品描述',
`goodsStatus` tinyint(4) NOT NULL DEFAULT '0' COMMENT '商品状态(-1:违规 0:未审核 1:已审核)',
`saleNum` int(11) NOT NULL DEFAULT '0' COMMENT '总销售量',
`saleTime` datetime NOT NULL COMMENT '上架时间',
`visitNum` int(11) DEFAULT '0' COMMENT '访问数',
`appraisaNum` int(11) DEFAULT '0' COMMENT '评价数',
`isSpec` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否有规格(0:没有1:有)',
`gallery` text COMMENT '商品相册',
`goodsSeoKeywords` varchar(200) DEFAULT NULL COMMENT '商品SEO关键字',
`illegalRemarks` varchar(255) DEFAULT NULL COMMENT '状态说明(一般用于说明拒绝原因)',
`dataFlag` tinyint(4) NOT NULL COMMENT '删除标志(-1:删除1:有效)',
`createTime` datetime NOT NULL COMMENT '创建时间',
`goodsType` tinyint(4) NOT NULL COMMENT '商品类型(0:实物商品1:虚拟商品0',
`isDistribut` int(11) NOT NULL COMMENT '是否分销商品(0:否1:是)',
`commission` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '分销佣金',
`isFreeShipping` tinyint(4) NOT NULL COMMENT '是否包邮(0:否1:是)',
`goodsSerachKeywords` text NOT NULL COMMENT '商品关键字搜索(该字段内容由系统生成,取商品名称+属性内容)',
`goodsVideo` varchar(150) NOT NULL COMMENT '商品视频',
`costPrice` decimal(11,0) NOT NULL COMMENT '成本价',
`goodsVideoThumb` varchar(150) NOT NULL COMMENT '视频略缩图,未用',
`goodsSeoDesc` varchar(600) NOT NULL COMMENT '商品SEO描述',
`shippingFeeType` tinyint(4) NOT NULL DEFAULT '1' COMMENT '寄件方式(1:计件2:重量3:体积)',
`goodsWeight` decimal(11,0) NOT NULL DEFAULT '0' COMMENT '商品重量',
`goodsVolume` decimal(11,0) NOT NULL DEFAULT '0' COMMENT '商品体积',
`shopExpressId` int(11) NOT NULL DEFAULT '0' COMMENT '店铺快递公司ID',
`isPifa` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否属于批发商品(1:批发商品0:不是批发商品)',
`collectNum` int(11) NOT NULL DEFAULT '0' COMMENT '收藏改商品的人数',
`canSaleStatus` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否可以批量上架(1:是0:否。一般终于导入或者采集商品才会用到这个字段)',
PRIMARY KEY (`goodsId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT=' 马文雅——商品表';
-- ----------------------------
-- Records of 23goods
-- ----------------------------
-- ----------------------------
-- Table structure for `24goods_appraises`
-- ----------------------------
DROP TABLE IF EXISTS `24goods_appraises`;
CREATE TABLE `24goods_appraises` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID\r\n',
`shopId` int(11) NOT NULL DEFAULT '0' COMMENT '店铺ID',
`orderId` int(11) NOT NULL DEFAULT '0' COMMENT '订单ID',
`goodsId` int(11) NOT NULL DEFAULT '0' COMMENT '评价对象ID',
`goodsSpecId` int(11) NOT NULL DEFAULT '0' COMMENT '商品-规格Id',
`userId` int(11) NOT NULL DEFAULT '0' COMMENT '会员ID',
`goodsScore` int(11) NOT NULL DEFAULT '0' COMMENT '商品评分',
`serviceScore` int(11) NOT NULL DEFAULT '0' COMMENT '服务评分',
`timeScore` int(11) NOT NULL DEFAULT '0' COMMENT '时效评分',
`content` text NOT NULL COMMENT '点评内容',
`shopReply` text COMMENT '店铺回复',
`images` text COMMENT '上传图片',
`isShow` tinyint(4) DEFAULT '1' COMMENT '是否显示 (1:显示 0:隐藏)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态 (1:有效 -1:无效)',
`createTime` datetime NOT NULL COMMENT '创建时间',
`replyTime` date DEFAULT NULL COMMENT '商家回复时间',
`orderGoodsId` int(10) unsigned NOT NULL COMMENT '订单上商品表自增ID',
PRIMARY KEY (`id`),
KEY `9` (`goodsId`),
CONSTRAINT `9` FOREIGN KEY (`goodsId`) REFERENCES `23goods` (`goodsId`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——goods_appraises';
-- ----------------------------
-- Records of 24goods_appraises
-- ----------------------------
-- ----------------------------
-- Table structure for `25goods_attributes`
-- ----------------------------
DROP TABLE IF EXISTS `25goods_attributes`;
CREATE TABLE `25goods_attributes` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`shopId` int(11) NOT NULL COMMENT '店铺ID',
`goodsId` int(11) NOT NULL COMMENT '商品ID',
`attrId` int(11) NOT NULL COMMENT '属性名称',
`attrVal` text NOT NULL COMMENT '属性值',
`createTime` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`id`),
KEY `4` (`attrId`),
KEY `10` (`goodsId`),
CONSTRAINT `10` FOREIGN KEY (`goodsId`) REFERENCES `23goods` (`goodsId`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `4` FOREIGN KEY (`attrId`) REFERENCES `8attributes` (`attrId`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `71` FOREIGN KEY (`id`) REFERENCES `24goods_appraises` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——goods_attributes';
-- ----------------------------
-- Records of 25goods_attributes
-- ----------------------------
-- ----------------------------
-- Table structure for `26goods_cats`
-- ----------------------------
DROP TABLE IF EXISTS `26goods_cats`;
CREATE TABLE `26goods_cats` (
`catId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`parentId` int(11) NOT NULL COMMENT '父ID',
`catName` varchar(20) NOT NULL COMMENT '分类名称',
`isShow` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示(0:隐藏 1:显示)',
`isFloor` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示楼层(0:不显示 1:删除)',
`catSort` int(11) NOT NULL DEFAULT '0' COMMENT '排序号',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志(1:有效 -1:删除)',
`createTime` datetime NOT NULL COMMENT '建立时间',
`commissionRate` decimal(11,2) DEFAULT '-1.00' COMMENT '商品佣金比例',
`catImg` varchar(150) DEFAULT NULL COMMENT '分类图片',
`subTitle` varchar(150) DEFAULT NULL COMMENT '二级标题',
`simpleName` varchar(20) NOT NULL COMMENT '移动端商品简称',
PRIMARY KEY (`catId`),
CONSTRAINT `3` FOREIGN KEY (`catId`) REFERENCES `18data_cats` (`catId`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——goods_cats';
-- ----------------------------
-- Records of 26goods_cats
-- ----------------------------
-- ----------------------------
-- Table structure for `27goods_consult`
-- ----------------------------
DROP TABLE IF EXISTS `27goods_consult`;
CREATE TABLE `27goods_consult` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`goodsId` int(10) unsigned NOT NULL COMMENT '商品ID',
`userId` int(10) unsigned DEFAULT NULL COMMENT '咨询人ID',
`consultType` tinyint(3) unsigned DEFAULT NULL COMMENT '咨询类型',
`consultContent` varchar(500) NOT NULL COMMENT '咨询内容',
`createTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间',
`reply` varchar(255) NOT NULL COMMENT '商家回复内容',
`replyTime` datetime DEFAULT NULL COMMENT '回复时间',
`dataFlag` tinyint(4) DEFAULT '1' COMMENT '有效状态(1:有效 -1:删除)',
`isShow` tinyint(4) DEFAULT '1' COMMENT '是否显示(1:显示 0:不显示)',
PRIMARY KEY (`id`),
KEY `userId` (`userId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——goods_consult';
-- ----------------------------
-- Records of 27goods_consult
-- ----------------------------
-- ----------------------------
-- Table structure for `28goods_scores`
-- ----------------------------
DROP TABLE IF EXISTS `28goods_scores`;
CREATE TABLE `28goods_scores` (
`scoreId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`goodsId` int(11) NOT NULL DEFAULT '0' COMMENT '商品ID',
`shopId` int(11) NOT NULL DEFAULT '0' 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 DEFAULT '0' 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`),
KEY `11` (`goodsId`),
CONSTRAINT `11` FOREIGN KEY (`goodsId`) REFERENCES `23goods` (`goodsId`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——goods_scores';
-- ----------------------------
-- Records of 28goods_scores
-- ----------------------------
-- ----------------------------
-- Table structure for `29goods_specs`
-- ----------------------------
DROP TABLE IF EXISTS `29goods_specs`;
CREATE TABLE `29goods_specs` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`shopId` int(11) NOT NULL DEFAULT '0' COMMENT '店铺ID',
`goodsId` int(11) NOT NULL DEFAULT '0' COMMENT '商品ID',
`productNo` varchar(20) NOT NULL COMMENT '商品货号',
`specIds` varchar(255) NOT NULL COMMENT '规范ID格式 (例如:specId:specId:specId:specId:specId)',
`marketPrice` decimal(11,2) NOT NULL COMMENT '市场价',
`specPrice` decimal(11,2) NOT NULL COMMENT '商品价',
`specStock` int(11) NOT NULL DEFAULT '0' COMMENT '库存',
`warnStock` int(11) NOT NULL DEFAULT '0' COMMENT '预警库存',
`saleNum` int(11) NOT NULL DEFAULT '0' COMMENT '销量',
`isDefault` tinyint(4) DEFAULT '0' COMMENT '默认规格(1:默认规格 0:非默认规格)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效 -1:无效)',
`specWeight` decimal(11,2) DEFAULT NULL COMMENT '商品重量',
`specVolume` decimal(11,2) DEFAULT NULL COMMENT '商品体积',
`costPrice` decimal(11,2) DEFAULT NULL COMMENT '成本价',
PRIMARY KEY (`id`),
KEY `12` (`goodsId`),
CONSTRAINT `12` FOREIGN KEY (`goodsId`) REFERENCES `23goods` (`goodsId`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `70` FOREIGN KEY (`id`) REFERENCES `25goods_attributes` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——goods_specs';
-- ----------------------------
-- Records of 29goods_specs
-- ----------------------------
-- ----------------------------
-- Table structure for `30goods_virtuals`
-- ----------------------------
DROP TABLE IF EXISTS `30goods_virtuals`;
CREATE TABLE `30goods_virtuals` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`shopId` int(11) NOT NULL COMMENT '店铺ID',
`goodsId` int(11) NOT NULL COMMENT '商品ID',
`cardNo` varchar(20) NOT NULL COMMENT '卡卷号',
`cardPwd` varchar(20) NOT NULL DEFAULT '' COMMENT '卡卷密码',
`orderId` int(11) NOT NULL DEFAULT '0' COMMENT '订单ID',
`orderNo` varchar(20) DEFAULT NULL COMMENT '订单号',
`isUse` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否使用 (0:未使用 1:已下单)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(-1:未用 1:已用)',
`createTime` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`id`),
KEY `13` (`goodsId`),
CONSTRAINT `13` FOREIGN KEY (`goodsId`) REFERENCES `23goods` (`goodsId`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `68` FOREIGN KEY (`id`) REFERENCES `29goods_specs` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——goods_virtuals';
-- ----------------------------
-- Records of 30goods_virtuals
-- ----------------------------
-- ----------------------------
-- Table structure for `31home_menus`
-- ----------------------------
DROP TABLE IF EXISTS `31home_menus`;
CREATE TABLE `31home_menus` (
`menuId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`parentId` int(11) NOT NULL DEFAULT '0' COMMENT '父ID',
`menuName` varchar(100) NOT NULL COMMENT '菜单名称',
`menuUrl` varchar(100) NOT NULL COMMENT '菜单Url',
`menuOtherUrl` text COMMENT '关联url',
`menuType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '菜单类型(0:用户中心 1:商家中心)',
`isShow` tinyint(4) DEFAULT '1' COMMENT '是否显示(0:隐藏 1:显示)',
`menuSort` int(11) NOT NULL DEFAULT '0' COMMENT '菜单排序',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效 -1:无效)',
`createTime` datetime DEFAULT NULL COMMENT '创建时间',
`menuMark` varchar(50) DEFAULT NULL COMMENT '菜单所属插件的名称,方便卸载插件时删除菜单',
PRIMARY KEY (`menuId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——home_menus';
-- ----------------------------
-- Records of 31home_menus
-- ----------------------------
-- ----------------------------
-- Table structure for `32hooks`
-- ----------------------------
DROP TABLE IF EXISTS `32hooks`;
CREATE TABLE `32hooks` (
`hookId` int(10) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`name` varchar(40) NOT NULL COMMENT '钩子名称',
`hookRemarks` text NOT NULL COMMENT '钩子描述',
`hookType` tinyint(1) NOT NULL DEFAULT '1' COMMENT '钩子类型(1:插件钩子)',
`updateTime` datetime NOT NULL COMMENT '修改时间',
`addons` text NOT NULL COMMENT '所属插件【有哪些插件用到这个钩子】',
PRIMARY KEY (`hookId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——hooks';
-- ----------------------------
-- Records of 32hooks
-- ----------------------------
-- ----------------------------
-- Table structure for `33informs`
-- ----------------------------
DROP TABLE IF EXISTS `33informs`;
CREATE TABLE `33informs` (
`informId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`informTargetId` int(11) NOT NULL COMMENT '举报人ID',
`goodId` int(11) NOT NULL COMMENT '被举报商品ID',
`shopId` int(11) NOT NULL COMMENT '被举报店铺ID',
`informType` int(11) NOT NULL DEFAULT '1' COMMENT '举报分类Id',
`informContent` text COMMENT '举报内容',
`informAnnex` text NOT NULL COMMENT '图片路径',
`informTime` datetime NOT NULL COMMENT '举报时间',
`informStatus` tinyint(4) NOT NULL COMMENT '举报类型(1:产品质量问题 2:出售禁售品)',
`respondContent` text COMMENT '回应内容',
`finalHandleStaffId` int(11) DEFAULT NULL COMMENT '处理者ID',
`finalHandleTime` datetime DEFAULT NULL COMMENT '处理时间',
`dataFlag` tinyint(4) NOT NULL COMMENT '有效标记(1:有效 -1:删除)',
PRIMARY KEY (`informId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——informs';
-- ----------------------------
-- Records of 33informs
-- ----------------------------
-- ----------------------------
-- Table structure for `34invoices`
-- ----------------------------
DROP TABLE IF EXISTS `34invoices`;
CREATE TABLE `34invoices` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键id',
`invoiceHead` varchar(255) NOT NULL COMMENT '发票抬头',
`incoiceCode` varchar(255) NOT NULL COMMENT '纳税人识别号',
`userId` int(10) unsigned NOT NULL COMMENT '用户id',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '数据有效标记(1:有效 -1:无效)',
`createTime` datetime NOT NULL COMMENT '数据创建时间',
`invoiceType` tinyint(4) DEFAULT '0' COMMENT '发票类型(1:专票 0:普票)',
`invoiceAddr` varchar(300) DEFAULT NULL COMMENT '专票注册地址',
`invoicePhoneNumber` varchar(100) DEFAULT NULL COMMENT '专票注册电话',
`invoiceBankName` varchar(100) DEFAULT NULL COMMENT '专票开户银行',
`invoiceBankNo` varchar(100) DEFAULT NULL COMMENT '专票银行卡号',
PRIMARY KEY (`id`),
KEY `76` (`userId`),
CONSTRAINT `69` FOREIGN KEY (`id`) REFERENCES `27goods_consult` (`id`),
CONSTRAINT `76` FOREIGN KEY (`userId`) REFERENCES `27goods_consult` (`userId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——invoices';
-- ----------------------------
-- Records of 34invoices
-- ----------------------------
-- ----------------------------
-- Table structure for `35log_moneys`
-- ----------------------------
DROP TABLE IF EXISTS `35log_moneys`;
CREATE TABLE `35log_moneys` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`targetType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '用户类型(0:用户 1:商家)',
`targetId` int(11) NOT NULL DEFAULT '0' COMMENT '数据记录ID',
`dataId` int(11) NOT NULL DEFAULT '0' COMMENT '数据记录ID(1:交易订单 2:积分支出)',
`dataSrc` varchar(20) NOT NULL DEFAULT '0' COMMENT '流水来源(1:交易订单 2:订单结算 3:体现申请 4:退款订单)',
`remark` text NOT NULL COMMENT '备注(N/A)',
`moneyType` tinyint(4) NOT NULL DEFAULT '1' COMMENT '流水标志(1:收入 0:支出)',
`money` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '金额',
`tradeNo` varchar(100) DEFAULT NULL COMMENT '外部流水号(例如微信支付,支付宝支付的交易流水号)',
`payType` varchar(20) NOT NULL DEFAULT '0' COMMENT '支付类型(支付来源代码,和支付方式对应代码)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效 -1:删除)',
`createTime` datetime NOT NULL COMMENT '创建时间',
`giveMoney` decimal(11,2) DEFAULT '0.00' COMMENT '记录充值送的金额',
PRIMARY KEY (`id`),
CONSTRAINT `67` FOREIGN KEY (`id`) REFERENCES `30goods_virtuals` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——log_moneys';
-- ----------------------------
-- Records of 35log_moneys
-- ----------------------------
-- ----------------------------
-- Table structure for `36log_operates`
-- ----------------------------
DROP TABLE IF EXISTS `36log_operates`;
CREATE TABLE `36log_operates` (
`operateId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`staffId` int(11) NOT NULL DEFAULT '0' COMMENT '职员ID',
`operateTime` datetime NOT NULL COMMENT '操作时间',
`menuId` int(11) NOT NULL COMMENT '所属菜单ID',
`operateDesc` varchar(255) NOT NULL COMMENT '操作说明',
`operateUrl` varchar(255) NOT NULL COMMENT '操作连接地址',
`content` longtext COMMENT '请求内容',
`operateIP` varchar(20) DEFAULT NULL COMMENT '操作IP',
PRIMARY KEY (`operateId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——log_operates\r\n';
-- ----------------------------
-- Records of 36log_operates
-- ----------------------------
-- ----------------------------
-- Table structure for `37huyaqi_log_order`
-- ----------------------------
DROP TABLE IF EXISTS `37huyaqi_log_order`;
CREATE TABLE `37huyaqi_log_order` (
`logId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`orderId` int(11) NOT NULL DEFAULT '0' COMMENT '订单ID',
`orderStatus` int(11) NOT NULL COMMENT '订单状态(和订单表对应)',
`logContent` varchar(255) NOT NULL COMMENT '操作日志',
`logUserId` int(11) NOT NULL DEFAULT '0' COMMENT '操作者Id',
`logType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '操作者类型(0:顾客/门店,1:商城职员)',
`logTime` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`logId`),
KEY `22` (`orderId`),
CONSTRAINT `22` FOREIGN KEY (`orderId`) REFERENCES `50orders` (`orderId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——订单日志表';
-- ----------------------------
-- Records of 37huyaqi_log_order
-- ----------------------------
-- ----------------------------
-- Table structure for `38huyaqi_log_pays`
-- ----------------------------
DROP TABLE IF EXISTS `38huyaqi_log_pays`;
CREATE TABLE `38huyaqi_log_pays` (
`logId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`userId` int(11) DEFAULT NULL COMMENT '用户ID',
`transId` varchar(50) DEFAULT NULL COMMENT '交易ID',
`createTime` datetime DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`logId`),
CONSTRAINT `18` FOREIGN KEY (`logId`) REFERENCES `37huyaqi_log_order` (`logId`) ON DELETE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——支付日志表(用于微信二维码支付)';
-- ----------------------------
-- Records of 38huyaqi_log_pays
-- ----------------------------
-- ----------------------------
-- Table structure for `39huyaqi_log_pay_params`
-- ----------------------------
DROP TABLE IF EXISTS `39huyaqi_log_pay_params`;
CREATE TABLE `39huyaqi_log_pay_params` (
`logId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`userId` int(11) DEFAULT NULL COMMENT '用户ID',
`transId` varchar(50) DEFAULT NULL COMMENT '交易ID',
`paramsVa` varchar(500) DEFAULT NULL COMMENT '交易订单参数',
`createTime` datetime DEFAULT NULL COMMENT '创建时间',
`payFrom` varchar(20) DEFAULT '0' COMMENT '支付来源',
PRIMARY KEY (`logId`),
CONSTRAINT `19` FOREIGN KEY (`logId`) REFERENCES `37huyaqi_log_order` (`logId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——支付传参表';
-- ----------------------------
-- Records of 39huyaqi_log_pay_params
-- ----------------------------
-- ----------------------------
-- Table structure for `40huyaqi_log_services`
-- ----------------------------
DROP TABLE IF EXISTS `40huyaqi_log_services`;
CREATE TABLE `40huyaqi_log_services` (
`logId` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`orderId` int(10) unsigned NOT NULL COMMENT '订单ID',
`serviceId` int(10) unsigned NOT NULL COMMENT '售后单ID',
`logContent` varchar(255) DEFAULT NULL COMMENT '日志内容',
`logTargetId` int(10) unsigned NOT NULL COMMENT '日志操作对象ID(如果是商家的话记录商家的ID)',
`logType` tinyint(4) unsigned NOT NULL DEFAULT '0' COMMENT '操作者类型(0:用户,1:商家)',
`logTime` datetime DEFAULT NULL,
PRIMARY KEY (`logId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——售后申请日志表';
-- ----------------------------
-- Records of 40huyaqi_log_services
-- ----------------------------
-- ----------------------------
-- Table structure for `41huyaqi_log_sms`
-- ----------------------------
DROP TABLE IF EXISTS `41huyaqi_log_sms`;
CREATE TABLE `41huyaqi_log_sms` (
`smsId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`smsSrc` tinyint(4) NOT NULL DEFAULT '0' COMMENT '消息纇型(0:系统消息,扩展)',
`smsUserId` int(11) NOT NULL DEFAULT '0' COMMENT '发送者ID',
`smsContent` varchar(255) NOT NULL COMMENT '短信内容',
`smsPhoneNumber` varchar(11) NOT NULL COMMENT '短信号码',
`smsReturnCode` varchar(255) NOT NULL COMMENT '短信返回值',
`smsCode` varchar(255) NOT NULL COMMENT '短信中的验证码',
`smsFunc` varchar(50) NOT NULL COMMENT '调用短信的接口',
`smsIP` varchar(16) NOT NULL COMMENT 'IP地址',
`createTime` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`smsId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——短信发送记录表';
-- ----------------------------
-- Records of 41huyaqi_log_sms
-- ----------------------------
-- ----------------------------
-- Table structure for `42huyaqi_log_staff_logins`
-- ----------------------------
DROP TABLE IF EXISTS `42huyaqi_log_staff_logins`;
CREATE TABLE `42huyaqi_log_staff_logins` (
`loginId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`staffId` int(11) NOT NULL DEFAULT '0' COMMENT '职员ID',
`loginTime` datetime NOT NULL COMMENT '登录时间',
`loginIp` varchar(16) NOT NULL COMMENT '登录IP',
PRIMARY KEY (`loginId`),
KEY `39` (`staffId`),
CONSTRAINT `39` FOREIGN KEY (`staffId`) REFERENCES `80staffs` (`staffId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——职员登录记录表';
-- ----------------------------
-- Records of 42huyaqi_log_staff_logins
-- ----------------------------
-- ----------------------------
-- Table structure for `43huyaqi_log_user_logins`
-- ----------------------------
DROP TABLE IF EXISTS `43huyaqi_log_user_logins`;
CREATE TABLE `43huyaqi_log_user_logins` (
`loginId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`userId` int(11) NOT NULL COMMENT '职员ID',
`loginTime` datetime NOT NULL COMMENT '登录时间',
`loginIp` varchar(16) NOT NULL COMMENT '登录IP',
`loginSrc` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '登录来源(电脑端:0,微信端:1,手机端:2,安卓端:3,苹果端:4,小程序端:5)',
`loginRemark` varchar(30) DEFAULT NULL COMMENT '登录备注',
PRIMARY KEY (`loginId`),
KEY `40` (`userId`),
CONSTRAINT `20` FOREIGN KEY (`loginId`) REFERENCES `42huyaqi_log_staff_logins` (`loginId`),
CONSTRAINT `40` FOREIGN KEY (`userId`) REFERENCES `85users` (`userId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——会员登录记录表';
-- ----------------------------
-- Records of 43huyaqi_log_user_logins
-- ----------------------------
-- ----------------------------
-- Table structure for `44huyaqi_menus`
-- ----------------------------
DROP TABLE IF EXISTS `44huyaqi_menus`;
CREATE TABLE `44huyaqi_menus` (
`menuId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
` parentId` int(11) NOT NULL COMMENT '父ID',
`menuName` varchar(100) NOT NULL COMMENT '菜单名称',
`menuSort` int(11) NOT NULL DEFAULT '0' COMMENT '菜单排序',
`dataFlag` tinyint(4) NOT NULL DEFAULT '0' COMMENT '有效状态(1:有效,-1:无效)',
`menuMark` varchar(50) DEFAULT NULL COMMENT '菜单标记(通常用于插件名称标记,方便卸载插件时删除记录)',
`isShow` tinyint(4) DEFAULT '1' COMMENT '是否显示(0:不显示,1:显示)',
`menuIcon` varchar(50) DEFAULT NULL COMMENT '菜单图标(使用fontawesome图标。不必加fa-前缀)',
PRIMARY KEY (`menuId`),
CONSTRAINT `17` FOREIGN KEY (`menuId`) REFERENCES `31home_menus` (`menuId`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——后台菜单表';
-- ----------------------------
-- Records of 44huyaqi_menus
-- ----------------------------
-- ----------------------------
-- Table structure for `45huyaqi_messages`
-- ----------------------------
DROP TABLE IF EXISTS `45huyaqi_messages`;
CREATE TABLE `45huyaqi_messages` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`msgType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '消息纇型(0:后台手工发送的信息,1:系统自动发送的信息)',
`sendUserId` int(11) NOT NULL DEFAULT '0' COMMENT '发送者ID',
`receiveUserId` int(11) NOT NULL DEFAULT '0' COMMENT '接受者ID',
`msgContent` text NOT NULL COMMENT '消息内容',
`msgStatus` tinyint(4) NOT NULL DEFAULT '0' COMMENT '阅读状态(0:未读,1:已读)',
`msgJson` varchar(255) DEFAULT NULL COMMENT '存放json数据(默认{from:1,dataId}from:0:普通消息 1:订单 2:商品 3:订单投诉 4:结算信息 5:提现信息 6:订单评价 dataId:关联的记录id)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效,-1:无效)',
`createTime` datetime NOT NULL COMMENT '发送时间',
PRIMARY KEY (`id`),
CONSTRAINT `65` FOREIGN KEY (`id`) REFERENCES `35log_moneys` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——商城信息表';
-- ----------------------------
-- Records of 45huyaqi_messages
-- ----------------------------
-- ----------------------------
-- Table structure for `46huyaqi_message_queues`
-- ----------------------------
DROP TABLE IF EXISTS `46huyaqi_message_queues`;
CREATE TABLE `46huyaqi_message_queues` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`userId` int(11) DEFAULT NULL COMMENT '用户ID',
`msgType` tinyint(4) DEFAULT '0' COMMENT '消息类型(1:商城消息,2:手机短信提醒,4:微信模版消息提醒)',
`paramJson` text COMMENT '消息参数JSON',
`msgJson` text COMMENT '消息JSON',
`createTime` datetime DEFAULT NULL COMMENT '创建时间',
`sendTime` datetime DEFAULT NULL COMMENT '发送时间(发送时间)',
`sendStatus` tinyint(4) DEFAULT '0' COMMENT '发送状态(状态:0未发送,1已发送)',
`msgCode` varchar(100) DEFAULT NULL COMMENT '消息代码',
PRIMARY KEY (`id`),
CONSTRAINT `64` FOREIGN KEY (`id`) REFERENCES `45huyaqi_messages` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——消息列队表';
-- ----------------------------
-- Records of 46huyaqi_message_queues
-- ----------------------------
-- ----------------------------
-- Table structure for `47huyaqi_mobile_btns`
-- ----------------------------
DROP TABLE IF EXISTS `47huyaqi_mobile_btns`;
CREATE TABLE `47huyaqi_mobile_btns` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`btnName` varchar(255) DEFAULT NULL COMMENT '按钮显示名称',
`btnSrc` tinyint(4) NOT NULL DEFAULT '0' COMMENT '按钮来源(0:手机,1:小程序,3:app)',
`btnUrl` varchar(255) DEFAULT NULL COMMENT '按钮显示URL',
`btnImg` varchar(255) DEFAULT NULL COMMENT '按钮图标',
`addonsName` varchar(255) DEFAULT NULL COMMENT '插件名称',
`btnSort` int(11) DEFAULT '0' COMMENT '按钮排序',
PRIMARY KEY (`id`),
CONSTRAINT `63` FOREIGN KEY (`id`) REFERENCES `46huyaqi_message_queues` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——移动端首页按钮管理表';
-- ----------------------------
-- Records of 47huyaqi_mobile_btns
-- ----------------------------
-- ----------------------------
-- Table structure for `48huyaqi_navs`
-- ----------------------------
DROP TABLE IF EXISTS `48huyaqi_navs`;
CREATE TABLE `48huyaqi_navs` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`navType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '导航类型(0:顶部,1:底部)',
`navTitle` varchar(50) NOT NULL COMMENT '导航标题',
`navUrl` varchar(100) NOT NULL COMMENT '导航网址',
`isShow` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示(0:隐藏,1:显示)',
`isOpen` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否新开窗口(0:页面跳转,1:新开窗口)',
`navSort` int(11) NOT NULL DEFAULT '0' COMMENT '排序号',
`createTime` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`id`),
CONSTRAINT `62` FOREIGN KEY (`id`) REFERENCES `47huyaqi_mobile_btns` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——商城导航表';
-- ----------------------------
-- Records of 48huyaqi_navs
-- ----------------------------
-- ----------------------------
-- Table structure for `49huyaqi_orderids`
-- ----------------------------
DROP TABLE IF EXISTS `49huyaqi_orderids`;
CREATE TABLE `49huyaqi_orderids` (
`id` bigint(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`rnd` float(16,2) NOT NULL COMMENT '毫秒数',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——订单ID表';
-- ----------------------------
-- Records of 49huyaqi_orderids
-- ----------------------------
-- ----------------------------
-- Table structure for `50orders`
-- ----------------------------
DROP TABLE IF EXISTS `50orders`;
CREATE TABLE `50orders` (
`orderId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`orderNo` varchar(20) NOT NULL COMMENT '订单号',
`shopId` int(11) NOT NULL COMMENT '店铺ID',
`userId` int(11) NOT NULL COMMENT '用户ID N/A',
`orderStatus` tinyint(4) NOT NULL DEFAULT '-2' COMMENT '订单状态 -3:用户拒收-2:未付款的订单-1:用户取消0:待发货1:配送中2:用户确认收货',
`goodsMoney` decimal(11,2) NOT NULL COMMENT '商品总金额 商品总价格--未进行任何折扣的总价格',
`deliverType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '收货方式 0:送货上门1:自提',
`deliverMoney` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '运费 运费规则按照每家店的规则算。',
`totalMoney` decimal(11,2) NOT NULL COMMENT '订单总金额 包括运费',
`realTotalMoney` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '实际订单总金额 进行各种折扣之后的金额',
`payType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '支付方式 0:货到付款 1:在线支付',
`payFrom` varchar(20) NOT NULL DEFAULT '0' COMMENT '支付来源代码 支付来源代码,和支付方式对应代码',
`isPay` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否支付 0:未支付1:已支付',
`areaId` int(11) NOT NULL COMMENT '最后一级区域ID N/A',
`areaIdPath` varchar(255) DEFAULT NULL COMMENT '区域ID路径 省级id_市级id_县级ld_例如:110000_110100_110101_',
`userName` varchar(50) NOT NULL COMMENT '收货人名称',
`userAddress` varchar(255) NOT NULL COMMENT '收货人地址',
`userPhone` char(20) DEFAULT NULL COMMENT '收货人手机',
`orderScore` int(11) NOT NULL COMMENT '所得积分',
`isInvoice` tinyint(4) NOT NULL COMMENT '是否需要发展 1:需要0:不需要',
`invoiceClient` varchar(255) DEFAULT NULL COMMENT '发票抬头 N/A',
`orderRemarks` varchar(255) DEFAULT NULL COMMENT '订单备注',
`orderSrc` tinyint(4) NOT NULL COMMENT '订单来源 0:商城 1:微信 2:手机版 3:安卓App 4:苹果App 5:小程序',
`needPay` decimal(11,2) DEFAULT '0.00' COMMENT '需缴费用 ',
`isRefund` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否退款 0:否 1: 是',
`isAppraise` tinyint(4) DEFAULT '0' COMMENT '是否点评 0:未点评 1:已点评',
`cancelReason` int(11) DEFAULT '0' COMMENT '取消原因ID',
`rejectReason` int(11) DEFAULT '0' COMMENT '拒收原因ID',
`rejectOtherReason` varchar(255) DEFAULT NULL COMMENT '拒收原因 ',
`isClosed` tinyint(4) NOT NULL COMMENT '是否订单已完结 0:未完结 1:已完结',
`goodsSearchKeys` text COMMENT '商品搜索关键字',
`orderunique` varchar(50) NOT NULL COMMENT '订单流水号',
`receive Time` datetime DEFAULT NULL COMMENT '收货时间',
`delivey Time` datetime DEFAULT NULL COMMENT '发货时间',
`tradeNo` varchar(100) DEFAULT NULL COMMENT '在线支付交易流水',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '订单有效标志 -1: 删除 1:有效',
`createTime` datetime NOT NULL COMMENT '下单时间',
`settlementId` int(11) DEFAULT '0' COMMENT '是否结算,大于0的话则是结算ID',
`commissionFee` decimal(11,2) DEFAULT '0.00' COMMENT '订单应收佣金',
`payRand` int(11) DEFAULT '1' COMMENT '支付自增ID 和订单号组合用,方便多次修改价格生成新的订单号',
`orderType` int(11) DEFAULT '0' COMMENT '订单类型 0:实物订单 1:非实物订单(非实物订单不享受任何折扣)',
`scoreMoney` decimal(11,2) DEFAULT '0.00' COMMENT '积分抵扣的金额',
`useScore` int(11) DEFAULT '0' COMMENT '用于抵扣的积分',
`orderCode` varchar(20) DEFAULT 'order' COMMENT '0\n订单代码 默认为order。如果是插件产生的订单则这里用于标记是那些插',
`extraJson` text COMMENT '\n扩展 订单备注,用于辅助插件',
`distributType` tinyint(4) DEFAULT '0' COMMENT '\n订单类型 1:按商品设置提取佣金2:按订单比例提取佣金',
`distributOrderRate` int(11) DEFAULT '0' COMMENT '\n分成比例 如:30:20:50',
`distributRate` varchar(20) DEFAULT NULL COMMENT '订单佣金占订单百分比',
`totalCommission` decimal(11,2) DEFAULT '0.00' COMMENT '分成佣金',
`orderCode TargetId` int(11) DEFAULT '0' COMMENT '0\n订单来源表自增ID 和orderCode对应,凡是插件产生的订单,这个地方就记录该插件表,以便回查纪录',
`noticeDeliver` tinyint(3) NOT NULL DEFAULT '0' COMMENT '\n订单来源表自增ID 和 \n提醒发货 0:未提醒 1:已提醒',
`invoiceJson` text COMMENT '发票信息json',
`lockCashMoney` decimal(11,2) DEFAULT '0.00' COMMENT '所使用的充值送金额',
`userCouponId` int(11) DEFAULT '0' COMMENT '所使用的优惠券ID',
`userCouponJson` text,
`payTime` datetime DEFAULT NULL,
`isBatch` tinyint(4) DEFAULT '0',
`totalPayFee` int(11) DEFAULT '0',
`shopUserId` int(11) DEFAULT '0',
`trade Type` int(11) DEFAULT '1',
`balancePay` decimal(11,2) DEFAULT '0.00',
`isMakeInvoice` tinyint(4) DEFAULT '0',
`afterSaleEndTime` datetime DEFAULT NULL,
`getScoreVal` decimal(11,2) NOT NULL DEFAULT '0.00',
`dmoneyIsSettlement` tinyint(4) DEFAULT '0',
`store Type` int(11) DEFAULT '0',
`storeId` int(11) DEFAULT '0',
`verificationCode` varchar(20) DEFAULT '0',
`verification Time` datetime DEFAULT NULL,
`refundedPayMoney` decimal(11,2) NOT NULL DEFAULT '0.00',
`deaIerId` int(11) DEFAULT '0',
`shopRejectReason` int(11) DEFAULT '0',
`shopRejectOtherReason` varchar(255) DEFAULT NULL,
`orderShopRemarks` text,
PRIMARY KEY (`orderId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——orders';
-- ----------------------------
-- Records of 50orders
-- ----------------------------
-- ----------------------------
-- Table structure for `51order_complains`
-- ----------------------------
DROP TABLE IF EXISTS `51order_complains`;
CREATE TABLE `51order_complains` (
`complainId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`orderId` int(11) NOT NULL DEFAULT '0' COMMENT '订单ID',
`complainType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '投诉类型',
`complainTargetId` int(11) NOT NULL DEFAULT '0' COMMENT '投诉人ID',
`respondTargetId` int(11) NOT NULL DEFAULT '0' COMMENT '应诉人Id',
`needRespond` tinyint(4) NOT NULL COMMENT '是否需要支付',
`deliverRespondTime` datetime DEFAULT NULL COMMENT '移交应诉时间',
`complainContent` text NOT NULL COMMENT '投诉内容',
`complainAnnex` varchar(255) DEFAULT NULL COMMENT '投诉附件',
`complainStatus` tinyint(4) NOT NULL COMMENT '投诉状态',
`complainTime` datetime NOT NULL COMMENT '创建时间',
`respondContent` text COMMENT '应诉内容',
`respondAnnex` varchar(255) DEFAULT NULL COMMENT '应诉附件',
`respondTime` datetime DEFAULT NULL COMMENT '应诉时间',
`finalResult` text COMMENT '仲裁结果',
`finalResultTime` datetime DEFAULT NULL COMMENT '仲裁时间',
`finalHandLeStaffid` int(11) DEFAULT '0' COMMENT '仲裁人ID',
PRIMARY KEY (`complainId`) USING BTREE,
KEY `23` (`orderId`),
CONSTRAINT `23` FOREIGN KEY (`orderId`) REFERENCES `50orders` (`orderId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='马文雅——订单投诉表';
-- ----------------------------
-- Records of 51order_complains
-- ----------------------------
-- ----------------------------
-- Table structure for `52order_express`
-- ----------------------------
DROP TABLE IF EXISTS `52order_express`;
CREATE TABLE `52order_express` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`orderId` int(11) NOT NULL COMMENT '订单ID',
`orderGoodsld` varchar(100) NOT NULL COMMENT '订单商品ID列表',
`deliverTime` datetime DEFAULT NULL COMMENT '发货时间',
`isExpress` tinyint(4) DEFAULT NULL COMMENT '发货方式',
`expressId` int(11) DEFAULT NULL COMMENT '快递商ID',
`expressNo` varchar(20) DEFAULT NULL COMMENT '快递号',
`createTime` datetime NOT NULL COMMENT '创建时间',
`dataFlag` tinyint(4) NOT NULL COMMENT '有效标志',
`deliverType` tinyint(4) DEFAULT NULL COMMENT '发货类型标志',
PRIMARY KEY (`id`) USING BTREE,
KEY `8` (`expressId`),
KEY `24` (`orderId`),
CONSTRAINT `24` FOREIGN KEY (`orderId`) REFERENCES `50orders` (`orderId`),
CONSTRAINT `61` FOREIGN KEY (`id`) REFERENCES `48huyaqi_navs` (`id`),
CONSTRAINT `8` FOREIGN KEY (`expressId`) REFERENCES `19express` (`expressId`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='马文雅——订单物流表';
-- ----------------------------
-- Records of 52order_express
-- ----------------------------
-- ----------------------------
-- Table structure for `53order_goods`
-- ----------------------------
DROP TABLE IF EXISTS `53order_goods`;
CREATE TABLE `53order_goods` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`orderId` int(11) NOT NULL COMMENT '订单ID',
`goodsId` int(11) NOT NULL COMMENT '商品ID',
`goodsNum` int(11) NOT NULL COMMENT '商品数量',
`goodsPrice` decimal(11,0) NOT NULL DEFAULT '0' COMMENT '商品价格',
`goodsSpecld` int(11) DEFAULT NULL COMMENT '商品规格ID',
`goodsSpecNames` varchar(500) DEFAULT NULL COMMENT '商品规格值列表',
`goodsNames` varchar(200) NOT NULL COMMENT '商品名称',
`goodsImg` varchar(255) NOT NULL COMMENT '商品图',
`commissionRate` decimal(11,2) DEFAULT NULL COMMENT '商品佣金比例',
`extraJson` text COMMENT '额外信息',
`goodsType` varchar(255) NOT NULL COMMENT '商品类型',
`commission` decimal(11,0) DEFAULT NULL COMMENT '分销佣金',
`goodsCode` varchar(20) DEFAULT NULL COMMENT '商品标记',
`promotionJson` text COMMENT '商品所参与的优惠活动json记录',
`couponVal` decimal(11,0) NOT NULL COMMENT '优惠券减免金额',
`rewardVal` decimal(11,0) NOT NULL COMMENT '满减减免金额',
`useScoreVal` varchar(255) NOT NULL COMMENT '商品使用积分',
`scoreMoney` decimal(11,0) NOT NULL COMMENT '积分抵扣金额',
`getsScoreVal` int(10) unsigned NOT NULL COMMENT '购买该商品所获得积分',
`getScoreMoney` decimal(11,0) NOT NULL COMMENT '获得的积分数可抵扣的金额',
`orderGoodscommission` decimal(11,0) DEFAULT NULL COMMENT '订单商品押金',
PRIMARY KEY (`id`) USING BTREE,
KEY `14` (`goodsId`),
KEY `25` (`orderId`),
CONSTRAINT `14` FOREIGN KEY (`goodsId`) REFERENCES `23goods` (`goodsId`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `25` FOREIGN KEY (`orderId`) REFERENCES `50orders` (`orderId`),
CONSTRAINT `60` FOREIGN KEY (`id`) REFERENCES `52order_express` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='马文雅——订单商品表';
-- ----------------------------
-- Records of 53order_goods
-- ----------------------------
-- ----------------------------
-- Table structure for `54order_refunds`
-- ----------------------------
DROP TABLE IF EXISTS `54order_refunds`;
CREATE TABLE `54order_refunds` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`orderId` int(11) NOT NULL COMMENT '订单ID',
`refundTo` int(11) NOT NULL DEFAULT '0' COMMENT '接受退款用户',
`refundReson` int(11) NOT NULL DEFAULT '0' COMMENT '用户申请退款原因ID',
`refundOtherReson` varchar(255) DEFAULT NULL COMMENT '用户申请退款原因',
`backMoney` decimal(11,2) NOT NULL COMMENT '用户退款金额',
`refundTradeNo` varchar(100) DEFAULT NULL COMMENT '管理员退款流水号',
`refundRemark` varchar(500) NOT NULL COMMENT '退款备注',
`refundTime` datetime NOT NULL COMMENT '退款时间',
`shopRejectReason` varchar(255) DEFAULT NULL COMMENT '店铺不同意拒收原因',
`refundStatus` tinyint(4) NOT NULL DEFAULT '0' COMMENT '退款状态(-1:商家不同意 0:等待商家处理 1:商家同意 2:管理员已处理)',
`createTime` datetime NOT NULL COMMENT '用户申请退款时间',
`serviceId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '售后单ID',
`isServiceRefund` tinyint(4) NOT NULL DEFAULT '0' COMMENT '售后单是否已退款',
PRIMARY KEY (`id`),
KEY `26` (`orderId`),
CONSTRAINT `26` FOREIGN KEY (`orderId`) REFERENCES `50orders` (`orderId`),
CONSTRAINT `59` FOREIGN KEY (`id`) REFERENCES `53order_goods` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——订单退款记录表';
-- ----------------------------
-- Records of 54order_refunds
-- ----------------------------
-- ----------------------------
-- Table structure for `55order_services`
-- ----------------------------
DROP TABLE IF EXISTS `55order_services`;
CREATE TABLE `55order_services` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`orderId` int(10) unsigned NOT NULL COMMENT '订单ID',
`goodsServiceType` tinyint(4) unsigned NOT NULL DEFAULT '0' COMMENT '售后类型(0:退款退货 1:退款 2:换货)',
`serviceType` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '退换货类型(数据由基础数据类型里取)',
`serviceRemark` varchar(600) DEFAULT NULL COMMENT '退换货原因',
`serviceAnnex` text COMMENT '附件',
`refundScore` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '本次申请可退还的积分,由系统计算得出',
`useScoreMoney` decimal(11,2) unsigned NOT NULL COMMENT '使用的积分可抵扣金额',
`getScoreMoney` decimal(11,2) unsigned NOT NULL COMMENT '获得的积分可抵扣金额',
`refundMoney` decimal(11,2) DEFAULT NULL COMMENT '申请退款的金额',
`refundableMoney` decimal(11,2) DEFAULT NULL COMMENT '售后单可退款金额',
`isShopAgree` tinyint(4) DEFAULT '0' COMMENT '店铺是否同意(1:同意 0:不同意)',
`disagreeRemark` varchar(600) DEFAULT NULL COMMENT '店铺不同意原因',
`userAddressId` int(11) unsigned DEFAULT '0' COMMENT '用户收货地址ID',
`areaId` int(11) unsigned DEFAULT '0' COMMENT '地区ID',
`areaIdPath` varchar(255) DEFAULT NULL COMMENT '地区ID值列表',
`userName` varchar(255) DEFAULT NULL COMMENT '用户收货人',
`userAddress` varchar(255) DEFAULT NULL COMMENT '用户详细收货地址',
`userPhone` varchar(255) DEFAULT NULL COMMENT '用户收货电话',
`expressId` int(11) unsigned DEFAULT '0' COMMENT '快递商ID',
`expressNo` varchar(200) DEFAULT NULL COMMENT '快递号',
`isShopAccept` tinyint(4) unsigned DEFAULT '0' COMMENT '商家是否收到货(-1:拒收 0:未收货 1:收货)',
`shopRejectType` int(10) NOT NULL DEFAULT '0' COMMENT '商家拒收类型(数据由基础数据类型里取)',
`shopRejectOther` varchar(600) DEFAULT NULL COMMENT '商家拒收原因,选择“其他”的时候填写文字',
`shopJectImg` varchar(150) DEFAULT NULL COMMENT '商家拒收时的货物图片',
`isShopSend` tinyint(4) unsigned NOT NULL DEFAULT '0' COMMENT '商家是否发货(0:未发货 1:发货)',
`shopExpresstype` tinyint(4) DEFAULT '0' COMMENT '商家是否使用物流(0:无需物流 1:物流)',
`shopExpressId` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商家快递商ID',
`shopExpressNo` varchar(200) DEFAULT NULL COMMENT '商家快递单号',
`isUserAccept` tinyint(4) unsigned NOT NULL DEFAULT '0' COMMENT '用户是否收到货(-1:拒收 0:未收货 1:收货)',
`userRejectType` tinyint(4) unsigned NOT NULL DEFAULT '0' COMMENT '用户拒收类型(数据由基础数据类型里取)',
`userRejectOther` varchar(600) DEFAULT NULL COMMENT '用户拒收原因(选择“其他”的时候填写文字)',
`createTime` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`isClose` tinyint(4) unsigned NOT NULL DEFAULT '0' COMMENT '是否结束0:进行中 1:已结束',
`serviceStatus` tinyint(4) unsigned NOT NULL DEFAULT '0' COMMENT '状态备注(0:待商家审核1:等待用户发货2:等待商家发货3等待商家发货4:等待用户收货5:完成退款/退货6:商家已确认收货7:商家受理,等待管理员退款)',
`shopAcceptExpireTime` datetime DEFAULT NULL COMMENT '商家受理期限',
`userSendExpireTime` datetime DEFAULT NULL COMMENT '用户发货期限',
`shopReceiveExpireTime` datetime DEFAULT NULL COMMENT '商家收货期限',
`userReceiveExpireTime` datetime DEFAULT NULL COMMENT '用户收货期限',
`shopSendExpireTime` datetime DEFAULT NULL COMMENT '商家发货期限',
PRIMARY KEY (`id`),
CONSTRAINT `66` FOREIGN KEY (`id`) REFERENCES `34invoices` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——售后申请表';
-- ----------------------------
-- Records of 55order_services
-- ----------------------------
-- ----------------------------
-- Table structure for `56payments`
-- ----------------------------
DROP TABLE IF EXISTS `56payments`;
CREATE TABLE `56payments` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`payCode` varchar(20) DEFAULT NULL COMMENT '支付code',
`payName` varchar(255) DEFAULT NULL COMMENT '支付方式名称',
`payDesc` text COMMENT '支付方式描述',
`payOrder` int(11) DEFAULT '0' COMMENT '排序号',
`payConfig` text COMMENT '参数配置',
`enabled` tinyint(4) DEFAULT '0' COMMENT '是否启用(0:不启用 1:启用)',
`isOnline` tinyint(4) DEFAULT '0' COMMENT '是否在线支付(0:否 1:在线支付)',
`payFor` varchar(100) DEFAULT NULL COMMENT '支付端标识(1:PC端 2;手机端 3:微信端 4:APP端)',
PRIMARY KEY (`id`),
CONSTRAINT `58` FOREIGN KEY (`id`) REFERENCES `54order_refunds` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——支付方式表';
-- ----------------------------
-- Records of 56payments
-- ----------------------------
-- ----------------------------
-- Table structure for `57privileges`
-- ----------------------------
DROP TABLE IF EXISTS `57privileges`;
CREATE TABLE `57privileges` (
`privilegeId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`menuId` int(11) NOT NULL COMMENT '父ID',
`privilegeCode` varchar(20) NOT NULL COMMENT '权限代码',
`privilegeName` varchar(30) NOT NULL COMMENT '权限名称',
`isMenuPrivilege` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否菜单权限',
`privilegeUrl` varchar(255) DEFAULT NULL COMMENT '主权限Url',
`otherprivilegeUrl` text COMMENT '其他权限Url',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效-1:无效)',
`isEnable` tinyint(4) DEFAULT '1' COMMENT '是否启用(0:未启用1:启用 一般用于插件标记)',
PRIMARY KEY (`privilegeId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——后台权限表';
-- ----------------------------
-- Records of 57privileges
-- ----------------------------
-- ----------------------------
-- Table structure for `58recommends`
-- ----------------------------
DROP TABLE IF EXISTS `58recommends`;
CREATE TABLE `58recommends` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`goodsCatId` int(11) NOT NULL DEFAULT '0' COMMENT '商品分类ID',
`dataType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '数据类型(0:推荐1:热销2:精品3:新品)',
`dataSrc` tinyint(4) DEFAULT '0' COMMENT '数据来源(0:商品1:店铺2:品牌)',
`dataId` int(11) NOT NULL DEFAULT '0' COMMENT '数据在其表中的主键',
`dataSort` int(11) NOT NULL DEFAULT '0' COMMENT '数据排序号',
PRIMARY KEY (`id`),
CONSTRAINT `57` FOREIGN KEY (`id`) REFERENCES `56payments` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——推荐记录表';
-- ----------------------------
-- Records of 58recommends
-- ----------------------------
-- ----------------------------
-- Table structure for `59resources`
-- ----------------------------
DROP TABLE IF EXISTS `59resources`;
CREATE TABLE `59resources` (
`resId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`from Type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '来自哪(0:商家/用户 1:平台管理员)',
`dataId` int(11) NOT NULL DEFAULT '0' COMMENT '对象ID(该图片信息所在表的Id)',
`resPath` varchar(150) NOT NULL COMMENT '资源路径',
`resSize` int(11) NOT NULL DEFAULT '0' COMMENT '资源大小(单位:字节)',
`isUse` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否使用(1:是 0:否)',
`create Time` datetime NOT NULL COMMENT '创建时间',
`ownId` int(11) DEFAULT NULL COMMENT '上传者Id',
`dataFlag` tinyint(4) DEFAULT '1' COMMENT '删除标志(1:有效 -1:删除)',
`from Table` varchar(50) DEFAULT NULL COMMENT '来自哪张表',
`res Type` tinyint(4) DEFAULT '0' COMMENT '资源类型(0:图片 1:视频)',
PRIMARY KEY (`resId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='马文雅——resources';
-- ----------------------------
-- Records of 59resources
-- ----------------------------
-- ----------------------------
-- Table structure for `60roles`
-- ----------------------------
DROP TABLE IF EXISTS `60roles`;
CREATE TABLE `60roles` (
`roleId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`roleName` varchar(30) NOT NULL COMMENT '角色名称',
`roleDesc` varchar(255) DEFAULT NULL COMMENT '角色描述',
`privileges` text COMMENT '权限列表',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(-1:删除 1:有效)',
`create Time` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`roleId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='马文雅——roles';
-- ----------------------------
-- Records of 60roles
-- ----------------------------
-- ----------------------------
-- Table structure for `61settlements`
-- ----------------------------
DROP TABLE IF EXISTS `61settlements`;
CREATE TABLE `61settlements` (
`settlementId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`settlementNo` varchar(20) NOT NULL COMMENT '结算单号',
`settlementType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '结算类型(0:手工结算)',
`shopId` int(11) NOT NULL COMMENT '店铺ID',
`settlementMoney` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '商品总金额',
`commissionFee` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '结算应收的佣金(不含运费)',
`backMoney` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '应返还给商家的金额',
`settlementStatus` tinyint(4) NOT NULL DEFAULT '0' COMMENT '结算状态(0:申请结算 1:已结算)',
`settlementTime` datetime DEFAULT NULL COMMENT '结算处理时间',
`remarks` varchar(255) DEFAULT NULL COMMENT '结算备注(商城填写)',
`create Time` datetime NOT NULL COMMENT '结算单申请时间',
PRIMARY KEY (`settlementId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='马文雅——settlements';
-- ----------------------------
-- Records of 61settlements
-- ----------------------------
-- ----------------------------
-- Table structure for `62shops`
-- ----------------------------
DROP TABLE IF EXISTS `62shops`;
CREATE TABLE `62shops` (
`shopId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`shopSn` varchar(20) NOT NULL COMMENT '店铺编号',
`userId` int(11) NOT NULL COMMENT '店铺所有人ID',
`areaIdPath` varchar(255) NOT NULL COMMENT '区域路径',
`areaId` int(11) NOT NULL DEFAULT '0' COMMENT '最终所属区域ID',
`isSelf` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否自营(1:自营 0:非自营)',
`shopName` varchar(100) NOT NULL COMMENT '店铺名称',
`shopkeeper` varchar(50) NOT NULL COMMENT '店主',
`telephone` varchar(20) NOT NULL COMMENT '店主手机号',
`shopCompany` varchar(255) NOT NULL COMMENT '公司名称',
`shopImg` varchar(150) NOT NULL COMMENT '店铺图标',
`shop Tel` varchar(40) NOT NULL COMMENT '店铺电话',
`shopQQ` varchar(50) DEFAULT NULL COMMENT 'QQ号',
`shopWangWang` varchar(50) DEFAULT NULL COMMENT '旺旺号',
`shopAddress` varchar(255) NOT NULL COMMENT '店铺地址',
`bankId` int(11) NOT NULL DEFAULT '0' COMMENT '银行ID',
`bankUserName` varchar(50) NOT NULL COMMENT '银行卡所有人名称',
`bankNo` varchar(20) NOT NULL COMMENT '银行卡号',
`isInvoice` tinyint(4) NOT NULL DEFAULT '0' COMMENT '能否卡发票(1:能 0:不能)',
`invoiceRemarks` varchar(255) DEFAULT NULL COMMENT '发票说明',
`serviceStartTime` time NOT NULL DEFAULT '08:30:00' COMMENT '开始营业时间',
`serviceEndTime` time NOT NULL DEFAULT '22:30:00' COMMENT '结束营业时间',
`shopAtive` tinyint(4) NOT NULL DEFAULT '1' COMMENT '店铺状态(1:营业中 0:休息中)',
`shopStatus` tinyint(4) NOT NULL DEFAULT '1' COMMENT '店铺状态(-1:拒绝/停用 0:未审核 1:已审核)',
`statusDesc` varchar(255) DEFAULT NULL COMMENT '状态说明(一般用于停止和拒绝说明)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志(-1:删除 1:有效)',
`create Time` date NOT NULL COMMENT '创建时间',
`shopMoney` decimal(11,2) DEFAULT '0.00' COMMENT '商家钱包',
`lockMoney` decimal(11,2) DEFAULT '0.00' COMMENT '冻结金额',
`noSettleOrderNum` int(11) DEFAULT '0' COMMENT '未结算的订单数',
`noSettleOrderFee` decimal(11,2) DEFAULT '0.00' COMMENT '未结算的订单金额',
`paymentMoney` decimal(11,2) DEFAULT '0.00' COMMENT '需缴纳的佣金',
`bankAreaId` int(11) DEFAULT '0' COMMENT '银行账号开卡地区',
`bankAreaIdPath` varchar(100) DEFAULT NULL COMMENT '银行账户开卡地区ID路径',
`applyStatus` tinyint(4) DEFAULT '0' COMMENT '申请状态(-1:申请失败 0:填写中 1:提交申请,等待审核 2:审核通过)',
`applyDesc` varchar(255) DEFAULT NULL COMMENT '申请失败原因',
`applyTime` datetime DEFAULT NULL COMMENT '提交申请时间',
`applyStep` tinyint(4) DEFAULT '1' COMMENT '当前填写步骤',
`shopNotice` varchar(300) DEFAULT NULL COMMENT '店铺公告',
`rechargeMoney` decimal(11,2) DEFAULT '0.00' COMMENT '充值金额',
`longitude` decimal(10,7) DEFAULT NULL COMMENT '经度',
`latitude` decimal(10,7) DEFAULT NULL COMMENT '纬度',
`mapLevel` int(11) DEFAULT '16' COMMENT '地图放大倍数',
`expireDate` date DEFAULT NULL COMMENT '开店截止日期',
`isPay` tinyint(4) DEFAULT '0' COMMENT '是否支付',
`payAnnualFee` decimal(11,2) DEFAULT '0.00' COMMENT '入住费用',
`isRefund` tinyint(4) DEFAULT '0' COMMENT '是否退款',
`tradeId` int(11) DEFAULT '0' COMMENT '所属行业',
`isGuide` tinyint(4) DEFAULT '0' COMMENT '是否关闭操作指引(1:是 0:否 )',
`commission Type` tinyint(4) DEFAULT '0' COMMENT '商家佣金类型(1:商家佣金 0:平台统一佣金)',
PRIMARY KEY (`shopId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='马文雅——shops';
-- ----------------------------
-- Records of 62shops
-- ----------------------------
-- ----------------------------
-- Table structure for `63shop_accreds`
-- ----------------------------
DROP TABLE IF EXISTS `63shop_accreds`;
CREATE TABLE `63shop_accreds` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`accredId` int(11) NOT NULL DEFAULT '0' COMMENT '认证ID',
`shopId` int(11) NOT NULL DEFAULT '0' COMMENT '店铺ID',
PRIMARY KEY (`id`),
KEY `5` (`accredId`),
KEY `28` (`shopId`),
CONSTRAINT `28` FOREIGN KEY (`shopId`) REFERENCES `62shops` (`shopId`),
CONSTRAINT `5` FOREIGN KEY (`accredId`) REFERENCES `1accreds` (`accredId`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `56` FOREIGN KEY (`id`) REFERENCES `58recommends` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='马文雅——shop_accreds';
-- ----------------------------
-- Records of 63shop_accreds
-- ----------------------------
-- ----------------------------
-- Table structure for `64shop_applys`
-- ----------------------------
DROP TABLE IF EXISTS `64shop_applys`;
CREATE TABLE `64shop_applys` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`userId` int(11) NOT NULL COMMENT '申请者ID',
`linkPhone` varchar(20) NOT NULL COMMENT '联系电话',
`linkman` varchar(50) NOT NULL COMMENT '联系人',
`applyIntention` varchar(600) NOT NULL COMMENT '申请店铺范围',
`shopName` varchar(255) DEFAULT NULL COMMENT '店铺名称',
`handleReamrk` varchar(600) DEFAULT NULL COMMENT '处理结果',
`applyStatus` tinyint(4) NOT NULL DEFAULT '0' COMMENT '申请状态(0:待处理 1:申请成功 -1:申请失败)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效 -1:无效)',
`create Time` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`id`),
CONSTRAINT `55` FOREIGN KEY (`id`) REFERENCES `63shop_accreds` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='马文雅——shop_applys';
-- ----------------------------
-- Records of 64shop_applys
-- ----------------------------
-- ----------------------------
-- Table structure for `65shop_bases`
-- ----------------------------
DROP TABLE IF EXISTS `65shop_bases`;
CREATE TABLE `65shop_bases` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`flowId` int(11) DEFAULT '0' COMMENT '流程ID',
`fieldName` varchar(50) DEFAULT NULL COMMENT '表单字段',
`dataType` varchar(10) DEFAULT NULL COMMENT '数据类型',
`fieldTitle` varchar(50) DEFAULT NULL COMMENT '表单标题',
`dataLength` int(11) DEFAULT NULL COMMENT '数据长度',
`fieldSort` tinyint(4) unsigned DEFAULT '0' COMMENT '显示排序',
`isRequire` tinyint(4) unsigned DEFAULT '0' COMMENT '是否必填(0:否 1:是)',
`fieldComment` varchar(255) DEFAULT NULL COMMENT '表单注释',
`fieldType` varchar(10) DEFAULT NULL COMMENT '表单类型',
`fieldAttr` varchar(255) DEFAULT NULL COMMENT '表单属性',
`isRelevance` tinyint(4) unsigned DEFAULT '0' COMMENT '是否联系字段(0:否 1:是)',
`fieldRelevance` varchar(50) DEFAULT NULL COMMENT '关联字段',
`dateRelevance` varchar(100) DEFAULT NULL COMMENT '日期关联字段',
`timeRelevance` tinyint(100) unsigned DEFAULT NULL COMMENT '时间关联字段',
`isShow` tinyint(4) unsigned DEFAULT '1' COMMENT '是否显示地图(0:否 1:是)',
`isMap` tinyint(4) unsigned DEFAULT '0' COMMENT '是否显示地图(0:否 1:是)',
`create Time` datetime NOT NULL COMMENT '创建时间',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效 -1:删除)',
`isDelete` tinyint(4) DEFAULT '1' COMMENT '是否可以删除(0:否 1:是)',
`isShops Table` tinyint(4) DEFAULT '0' COMMENT '是否在crn_shops表(0:不是 1:是)',
`fileNum` tinyint(4) DEFAULT NULL COMMENT '上传图片限制数量',
PRIMARY KEY (`id`),
CONSTRAINT `54` FOREIGN KEY (`id`) REFERENCES `64shop_applys` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='马文雅——shop_bases';
-- ----------------------------
-- Records of 65shop_bases
-- ----------------------------
-- ----------------------------
-- Table structure for `66shop_cats`
-- ----------------------------
DROP TABLE IF EXISTS `66shop_cats`;
CREATE TABLE `66shop_cats` (
`catId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`shopId` int(11) NOT NULL COMMENT '门店ID',
`parentId` int(11) NOT NULL COMMENT '父ID',
`isShow` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示(0:隐藏 1:显示)',
`catName` varchar(100) NOT NULL COMMENT '分类名称',
`catSort` int(11) NOT NULL DEFAULT '0' COMMENT '排序号',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志(1:有效 -1:删除)',
`create Time` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`catId`),
KEY `29` (`shopId`),
CONSTRAINT `29` FOREIGN KEY (`shopId`) REFERENCES `62shops` (`shopId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='马文雅——shop_cats';
-- ----------------------------
-- Records of 66shop_cats
-- ----------------------------
-- ----------------------------
-- Table structure for `67shop_configs`
-- ----------------------------
DROP TABLE IF EXISTS `67shop_configs`;
CREATE TABLE `67shop_configs` (
`configld` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`shopId` int(11) NOT NULL COMMENT '门店ID',
`shop Title` varchar(255) NOT NULL COMMENT '门店标题',
`shopKeywords` varchar(255) NOT NULL COMMENT '门店关键字',
`shopDesc` varchar(500) NOT NULL COMMENT '门店描述',
`shopBanner` varchar(150) NOT NULL COMMENT '门店顶部图片',
`shopAds` text NOT NULL COMMENT '门店广告',
`shopAdsUrl` text NOT NULL COMMENT '门店广告对应的url',
`shopServicer` varchar(100) NOT NULL COMMENT '门店客服',
`shopHotWords` varchar(255) DEFAULT NULL COMMENT '店铺热搜',
`isDistribut` tinyint(4) DEFAULT '0' COMMENT '是否开启分销(1:开启 0:关闭)',
`distributType` tinyint(4) DEFAULT '1' COMMENT '分销模式(1:按商品设置提取佣金 2:按订单比例提取佣金)',
`distributOrderRate` int(11) DEFAULT '0' COMMENT '订单佣金比例',
`userDecoration` tinyint(4) DEFAULT '0' COMMENT '是否开启店铺装修',
`shopMoveBanner` varchar(150) DEFAULT NULL COMMENT '店铺移动端首页顶部背景图',
`shopStreetImg` varchar(150) DEFAULT NULL COMMENT '店铺街街背景图-已作废',
`shopHomeTheme` varchar(200) NOT NULL DEFAULT 'shop_home' COMMENT '电脑端店铺主页模板名',
`mobileShopHomeTheme` varchar(200) NOT NULL DEFAULT 'shop_home' COMMENT '移动端店铺主页模板名',
`wechatShopHomeTheme` varchar(200) NOT NULL DEFAULT 'shop_home' COMMENT '微信端店铺主页模板名',
`weappShopHomeTheme` varchar(200) DEFAULT 'shop_home' COMMENT '小程序端店铺主页模板名',
`appShopHomeTheme` varchar(200) DEFAULT 'shop_home' COMMENT 'APP端店铺主页模板名',
`shopTitleWords` varchar(100) DEFAULT NULL COMMENT '店铺主页SEO标题内容',
PRIMARY KEY (`configld`),
KEY `30` (`shopId`),
CONSTRAINT `30` FOREIGN KEY (`shopId`) REFERENCES `62shops` (`shopId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='马文雅——shop_configs';
-- ----------------------------
-- Records of 67shop_configs
-- ----------------------------
-- ----------------------------
-- Table structure for `68shop_express`
-- ----------------------------
DROP TABLE IF EXISTS `68shop_express`;
CREATE TABLE `68shop_express` (
`id` int(11) NOT NULL COMMENT '自增ID',
`expressId` int(11) NOT NULL COMMENT '快递公司ID',
`isaEnable` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否启用(0:未启用1:启用)',
`isDefault` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否默认(0:否1:是)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效标识(-1:无效1:有效)',
`shopId` int(11) DEFAULT '0' COMMENT '店铺ID',
PRIMARY KEY (`id`),
KEY `7` (`expressId`),
KEY `31` (`shopId`),
CONSTRAINT `31` FOREIGN KEY (`shopId`) REFERENCES `62shops` (`shopId`),
CONSTRAINT `53` FOREIGN KEY (`id`) REFERENCES `65shop_bases` (`id`),
CONSTRAINT `7` FOREIGN KEY (`expressId`) REFERENCES `19express` (`expressId`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——店铺快递公司关联表';
-- ----------------------------
-- Records of 68shop_express
-- ----------------------------
-- ----------------------------
-- Table structure for `69shop_extras`
-- ----------------------------
DROP TABLE IF EXISTS `69shop_extras`;
CREATE TABLE `69shop_extras` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`shopId` int(11) NOT NULL COMMENT '店铺ID',
`businessLicence Type` tinyint(4) DEFAULT '0' COMMENT '执照类型',
`businessLicence` varchar(100) DEFAULT NULL COMMENT '营业执照注册号',
`licenseAddress` varchar(500) DEFAULT NULL COMMENT '营业执照详细地址',
`businessAreaPath` varchar(100) DEFAULT NULL COMMENT '营业执照所在地(以_分隔省市县)',
`legalPersonName` varchar(100) DEFAULT NULL COMMENT '法定代表人姓名',
`establishmentDate` date DEFAULT NULL COMMENT '成立日期',
`businessStartDate` date DEFAULT NULL COMMENT '营业期限-开始日期',
`businessEndDate` date DEFAULT NULL COMMENT '营业期限-结束日期',
`isLongbusinessDate` tinyint(4) DEFAULT '0' COMMENT '是否长期营业期限(1:是 0:否)',
`registeredCapital` decimal(11,0) DEFAULT '0' COMMENT '注册资本',
`empiricalRange` varchar(1000) DEFAULT NULL COMMENT '经营范围',
`legalCertificate Type` tinyint(4) DEFAULT '0' COMMENT '法人代表证件类型',
`legalCertificate` varchar(50) DEFAULT NULL COMMENT '法定代表人证件号',
`legalCertificateStartDate` date DEFAULT NULL COMMENT '法定代表人有效期-开始日期',
`legalCertificateEndDate` date DEFAULT NULL COMMENT '法定代表人有效期-结束日期',
`isLonglegelCertificateDate` tinyint(4) DEFAULT '0' COMMENT '法定代表人有效期是否长期(1:是 0:否)',
`legelCertificateImg` varchar(150) DEFAULT NULL COMMENT '法人证件电子版',
`businessLicenceImg` varchar(150) DEFAULT NULL COMMENT '营业执照电子版',
`bankAccountPermitImg` varchar(150) DEFAULT NULL COMMENT '银行卡户许可证电子版',
`organizationCodeStartDate` date DEFAULT NULL COMMENT '组织机构代码证有效期-开始日期',
`organizationCodeEndDate` date DEFAULT NULL COMMENT '组织机构代码证有效期-结束日期',
`isLongOrganizationCodeDate` tinyint(4) DEFAULT '0' COMMENT '组织机构代码证有效期是否长期(1:是 0:否)',
`organizationCodeImg` varchar(150) DEFAULT NULL COMMENT '组织机构代码证电子版',
`taxRegistrationCertificateImg` varchar(450) DEFAULT NULL COMMENT '税务登记证电子版',
`taxpayerQualificationImg` varchar(150) DEFAULT NULL COMMENT '一般纳税人资格证电子版',
`taxpayer Type` tinyint(4) DEFAULT '0' COMMENT '纳税人类型',
`taxpayerNo` varchar(100) DEFAULT NULL COMMENT '纳税人识别号',
`applyLinkMan` varchar(50) DEFAULT NULL COMMENT '联系人姓名',
`applyLink Tel` varchar(50) DEFAULT NULL COMMENT '联系人手机',
`applyLinkEmail` varchar(50) DEFAULT NULL COMMENT '联系人电子邮箱',
`isInvestment` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否有对接商城招商人员(1:有 0:无)',
`investmentStaff` varchar(50) DEFAULT NULL COMMENT '对接人员名字',
PRIMARY KEY (`id`),
KEY `32` (`shopId`),
CONSTRAINT `32` FOREIGN KEY (`shopId`) REFERENCES `62shops` (`shopId`),
CONSTRAINT `52` FOREIGN KEY (`id`) REFERENCES `68shop_express` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='马文雅——shop_extras';
-- ----------------------------
-- Records of 69shop_extras
-- ----------------------------
-- ----------------------------
-- Table structure for `70shop_flows`
-- ----------------------------
DROP TABLE IF EXISTS `70shop_flows`;
CREATE TABLE `70shop_flows` (
`flowId` int(11) NOT NULL AUTO_INCREMENT 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 '1' COMMENT '是否可以删除(0否,1是)',
`createTime` datetime NOT NULL COMMENT '创建时间',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效 -1:删除)',
PRIMARY KEY (`flowId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——店铺入驻流程表';
-- ----------------------------
-- Records of 70shop_flows
-- ----------------------------
-- ----------------------------
-- Table structure for `71shop_freight_template`
-- ----------------------------
DROP TABLE IF EXISTS `71shop_freight_template`;
CREATE TABLE `71shop_freight_template` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`shopExpressId` int(11) NOT NULL COMMENT '快递ID',
`tempName` varchar(100) NOT NULL COMMENT '模板名称',
`tempType` tinyint(4) NOT NULL DEFAULT '1' COMMENT '模板范围(0:全国 1:指定地区)',
`provinceIds` text COMMENT '省份ID数组',
`cityIds` text COMMENT '城市ID数组',
`buyNumStart` int(4) DEFAULT '0' COMMENT '首件(件)',
`buyNumStartPrice` decimal(11,2) DEFAULT '0.00' COMMENT '首件运费(元)',
`buyNumContinue` decimal(4,0) DEFAULT '0' COMMENT '续件(件)',
`buyNumContinuePrice` decimal(11,2) DEFAULT '0.00' COMMENT '续件运费(元)',
`weightStart` decimal(11,2) DEFAULT '0.00' COMMENT '首重(Kg)',
`weightStartPrice` decimal(11,2) DEFAULT '0.00' COMMENT '首重价格',
`weightContinue` decimal(11,2) DEFAULT '0.00' COMMENT '续重(Kg)',
`weightContinuePrice` decimal(11,2) DEFAULT '0.00' COMMENT '续重价格',
`volumeStart` decimal(11,2) DEFAULT '0.00' COMMENT '首体积量(m³)',
`volumeStartPrice` decimal(11,2) DEFAULT '0.00' COMMENT '首体积运费(元)',
`volumeContinue` decimal(11,2) DEFAULT '0.00' COMMENT '续体积量(m³)',
`volumeContinuePrice` decimal(11,2) DEFAULT '0.00' COMMENT '续体积运费(元)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标记(1:有效 -1:删除)',
`shopId` int(11) DEFAULT '0' COMMENT '店铺ID',
`createTime` datetime DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`),
KEY `33` (`shopId`),
CONSTRAINT `33` FOREIGN KEY (`shopId`) REFERENCES `62shops` (`shopId`),
CONSTRAINT `51` FOREIGN KEY (`id`) REFERENCES `69shop_extras` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——店铺运费模板表';
-- ----------------------------
-- Records of 71shop_freight_template
-- ----------------------------
-- ----------------------------
-- Table structure for `72shop_message_cats`
-- ----------------------------
DROP TABLE IF EXISTS `72shop_message_cats`;
CREATE TABLE `72shop_message_cats` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`msgDataId` int(11) DEFAULT '0' COMMENT '消息标识ID(1:商品审核提醒 2:新订单提醒 3:订单投诉提醒 4:订单失效提醒 5:退货退款提醒<br/> 6:结算消息提醒 7:订单评价提醒 8:收货提醒 9:商品举报提醒 10:售后消息提醒)',
`msgType` tinyint(4) DEFAULT '0' COMMENT '消息类型(1:商城消息 2:手机短信提醒 4:微信模板消息提醒)',
`msgCode` varchar(100) DEFAULT NULL COMMENT '消息代码(对应wst_datas表的dataVal值)',
PRIMARY KEY (`id`),
CONSTRAINT `50` FOREIGN KEY (`id`) REFERENCES `71shop_freight_template` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——消息类型表';
-- ----------------------------
-- Records of 72shop_message_cats
-- ----------------------------
-- ----------------------------
-- Table structure for `73shop_roles`
-- ----------------------------
DROP TABLE IF EXISTS `73shop_roles`;
CREATE TABLE `73shop_roles` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`shopId` int(11) DEFAULT '0' COMMENT '店铺ID',
`roleName` varchar(100) DEFAULT NULL COMMENT '角色名称',
`privilegeMsgs` text COMMENT '权限',
`privilegsUrls` text COMMENT '权限url路径(N/A)',
`createTime` datetime DEFAULT NULL COMMENT '创建时间',
`dataFlag` tinyint(4) DEFAULT '1' COMMENT '有效标识(-1:无效 1:有效)',
PRIMARY KEY (`id`),
KEY `34` (`shopId`),
CONSTRAINT `34` FOREIGN KEY (`shopId`) REFERENCES `62shops` (`shopId`),
CONSTRAINT `49` FOREIGN KEY (`id`) REFERENCES `72shop_message_cats` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——店铺角色表';
-- ----------------------------
-- Records of 73shop_roles
-- ----------------------------
-- ----------------------------
-- Table structure for `74shop_scores`
-- ----------------------------
DROP TABLE IF EXISTS `74shop_scores`;
CREATE TABLE `74shop_scores` (
`scoreId` int(11) NOT NULL AUTO_INCREMENT 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 DEFAULT '0' 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`),
KEY `35` (`shopId`),
CONSTRAINT `15` FOREIGN KEY (`scoreId`) REFERENCES `28goods_scores` (`scoreId`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `35` FOREIGN KEY (`shopId`) REFERENCES `62shops` (`shopId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——店铺评分表';
-- ----------------------------
-- Records of 74shop_scores
-- ----------------------------
-- ----------------------------
-- Table structure for `75shop_services`
-- ----------------------------
DROP TABLE IF EXISTS `75shop_services`;
CREATE TABLE `75shop_services` (
`shopId` int(11) NOT NULL AUTO_INCREMENT COMMENT '所对应的店铺ID',
`createTime` datetime DEFAULT NULL COMMENT '创建时间',
`dataFlag` tinyint(4) DEFAULT '1' COMMENT '有效状态(1:有效 -1:删除)',
`serviceld` varchar(50) NOT NULL COMMENT '店铺ID',
PRIMARY KEY (`shopId`),
CONSTRAINT `36` FOREIGN KEY (`shopId`) REFERENCES `62shops` (`shopId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——客服系统-设置表';
-- ----------------------------
-- Records of 75shop_services
-- ----------------------------
-- ----------------------------
-- Table structure for `76shop_styles`
-- ----------------------------
DROP TABLE IF EXISTS `76shop_styles`;
CREATE TABLE `76shop_styles` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`styleSys` varchar(255) DEFAULT NULL COMMENT '风格适应的系统(例如电脑端,手机端,微信端)',
`styleName` varchar(255) DEFAULT '0' COMMENT '风格名称',
`styleCat` tinyint(4) unsigned DEFAULT NULL COMMENT '风格所属分类',
`stylePath` varchar(255) DEFAULT NULL COMMENT '风格目录',
`screenshot` varchar(255) DEFAULT NULL COMMENT '略缩图路径',
`isShow` varchar(4) DEFAULT '1' COMMENT '是否显示',
PRIMARY KEY (`id`),
CONSTRAINT `48` FOREIGN KEY (`id`) REFERENCES `73shop_roles` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——店铺风格表';
-- ----------------------------
-- Records of 76shop_styles
-- ----------------------------
-- ----------------------------
-- Table structure for `77shop_users`
-- ----------------------------
DROP TABLE IF EXISTS `77shop_users`;
CREATE TABLE `77shop_users` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`shopId` int(11) DEFAULT '0' COMMENT '店铺ID',
`userId` int(11) DEFAULT '0' COMMENT '用户ID',
`roleId` int(11) DEFAULT '0' COMMENT '角色ID',
`dataFlag` tinyint(4) DEFAULT NULL COMMENT '\r\n有效标识(-1:无效 1:有效)',
`serviceId` varchar(50) DEFAULT '1' COMMENT '客服ID',
`privilegeMsgTypes` varchar(50) DEFAULT NULL COMMENT '接受信息类型权限(1:系统信息 2:短信 3:邮件 4:微信消息)',
`privilegeMsgs` varchar(200) DEFAULT NULL COMMENT '接收信息权限',
`privilegephoneMsgs` varchar(200) DEFAULT NULL COMMENT '接收短信权限',
PRIMARY KEY (`id`),
KEY `37` (`shopId`),
KEY `41` (`userId`),
CONSTRAINT `37` FOREIGN KEY (`shopId`) REFERENCES `62shops` (`shopId`),
CONSTRAINT `41` FOREIGN KEY (`userId`) REFERENCES `85users` (`userId`),
CONSTRAINT `47` FOREIGN KEY (`id`) REFERENCES `76shop_styles` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——店铺职员表';
-- ----------------------------
-- Records of 77shop_users
-- ----------------------------
-- ----------------------------
-- Table structure for `78spes_cats78`
-- ----------------------------
DROP TABLE IF EXISTS `78spes_cats78`;
CREATE TABLE `78spes_cats78` (
`catId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`goodsCatId` int(11) NOT NULL DEFAULT '0' COMMENT '最后一级商品分类ID',
`goodsCatPath` varchar(100) NOT NULL COMMENT '商品分类路径',
`catName` varchar(255) NOT NULL COMMENT '类型名称',
`isAllowImg` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否允许上传图片(0:不允许 1:允许)',
`isShow` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示(1:是 0:否)',
`catSort` int(11) DEFAULT '0' COMMENT '排序号',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志(1:有效 -1:无效)',
`createTime` datetime NOT NULL COMMENT '创建时间',
`shopId` int(11) DEFAULT '0' COMMENT '店铺ID(该值大于0说明是店铺新增的规格)',
PRIMARY KEY (`catId`),
CONSTRAINT `ca` FOREIGN KEY (`catId`) REFERENCES `66shop_cats` (`catId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——商品规格分类表';
-- ----------------------------
-- Records of 78spes_cats78
-- ----------------------------
-- ----------------------------
-- Table structure for `79spec_items`
-- ----------------------------
DROP TABLE IF EXISTS `79spec_items`;
CREATE TABLE `79spec_items` (
`itemId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`shopId` int(11) NOT NULL DEFAULT '0' COMMENT '店铺ID',
`catId` int(11) NOT NULL DEFAULT '0' COMMENT '类型ID',
`goodsId` int(11) NOT NULL DEFAULT '0' COMMENT '商品ID',
`itemName` varchar(100) NOT NULL COMMENT '项名称',
`itemDesc` varchar(255) DEFAULT NULL COMMENT '规格描述',
`tiemImg` varchar(150) NOT NULL COMMENT '规格图片',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效 -1:无效)',
`createTime` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`itemId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——商品规格值表';
-- ----------------------------
-- Records of 79spec_items
-- ----------------------------
-- ----------------------------
-- Table structure for `80staffs`
-- ----------------------------
DROP TABLE IF EXISTS `80staffs`;
CREATE TABLE `80staffs` (
`staffId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`loginName` varchar(40) NOT NULL COMMENT '账号',
`loginPwd` varchar(50) NOT NULL COMMENT '密码',
`secretKey` int(32) NOT NULL COMMENT '安全码\n(安全码用于和用户密码混合在一起加密)',
`staffName` varchar(50) NOT NULL COMMENT '职员名称',
`staffNo` varchar(20) DEFAULT NULL COMMENT '职员编号',
`staffPhoto` varchar(150) DEFAULT NULL COMMENT '职员头像',
`staffRoleld` int(11) NOT NULL COMMENT '职员角色ID',
`workStatus` tinyint(4) NOT NULL DEFAULT '1' COMMENT '工作状态(\n0:离职1.在职)',
`staffStatus` tinyint(4) NOT NULL DEFAULT '0' COMMENT '职员状态\n(1:正常0:停用)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志\n(1有效-1,删除)',
`createTime` datetime NOT NULL COMMENT '建立时间',
`last Time` datetime DEFAULT NULL COMMENT '最后登录时间',
`lastIP` char(16) DEFAULT NULL COMMENT '最后登录IP',
`wxOpenId` varchar(100) DEFAULT NULL COMMENT '微信openld',
`staffPhone` char(11) DEFAULT NULL COMMENT '职员手机号码',
PRIMARY KEY (`staffId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——商城职员表';
-- ----------------------------
-- Records of 80staffs
-- ----------------------------
-- ----------------------------
-- Table structure for `81styles`
-- ----------------------------
DROP TABLE IF EXISTS `81styles`;
CREATE TABLE `81styles` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`styleSys` varchar(20) DEFAULT NULL COMMENT '系统类型(home:PC)',
`styleName` varchar(255) NOT NULL COMMENT '风格名称',
`styleAuthor` varchar(255) DEFAULT NULL COMMENT '风格开发者',
`styleShopSite` varchar(11) DEFAULT NULL COMMENT '风格开发者站点',
`styleShopId` int(11) DEFAULT '0' COMMENT '店铺风格Id',
`stylePath` varchar(255) NOT NULL COMMENT '风格目录名称',
`isUse` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否使用中(1:使用中 0:未使用)',
PRIMARY KEY (`id`),
CONSTRAINT `46` FOREIGN KEY (`id`) REFERENCES `77shop_users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='系统风格设置表-孟佳乐';
-- ----------------------------
-- Records of 81styles
-- ----------------------------
-- ----------------------------
-- Table structure for `82switchs`
-- ----------------------------
DROP TABLE IF EXISTS `82switchs`;
CREATE TABLE `82switchs` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`homeURL` varchar(255) DEFAULT NULL COMMENT '电脑端页面',
`mobileURL` varchar(255) DEFAULT NULL COMMENT '手机端页面',
`wechatURL` varchar(255) DEFAULT NULL COMMENT '微信端页面',
`urlMark` varchar(255) DEFAULT NULL COMMENT '插件标志,插件新增的记录会有插件标记',
PRIMARY KEY (`id`),
CONSTRAINT `45` FOREIGN KEY (`id`) REFERENCES `81styles` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——页面切换表';
-- ----------------------------
-- Records of 82switchs
-- ----------------------------
-- ----------------------------
-- Table structure for `83sys_configs`
-- ----------------------------
DROP TABLE IF EXISTS `83sys_configs`;
CREATE TABLE `83sys_configs` (
`configId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`fieldName` varchar(50) DEFAULT NULL COMMENT '字段名称',
`fieldCode` varchar(50) DEFAULT NULL COMMENT '字段代码',
`fieldValue` text COMMENT '字段值',
`fieldType` tinyint(4) DEFAULT '0' COMMENT '字段类型(0:PC版设置 1:微信版设置 2:小程序版设置 4;app版设置)',
PRIMARY KEY (`configId`),
CONSTRAINT `38` FOREIGN KEY (`configId`) REFERENCES `67shop_configs` (`configld`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——商城配置表';
-- ----------------------------
-- Records of 83sys_configs
-- ----------------------------
-- ----------------------------
-- Table structure for `84templte_msgs`
-- ----------------------------
DROP TABLE IF EXISTS `84templte_msgs`;
CREATE TABLE `84templte_msgs` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID\n',
`talType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '模板类型(0:系统消息 1:邮件模板 2:短信模板 3:微信模板)',
`tplCode` varchar(50) NOT NULL COMMENT '模板代码',
`tplExternald` varchar(255) DEFAULT NULL COMMENT '外表模板ID',
`tplContent` text NOT NULL COMMENT '模板内容',
`isEnale` tinyint(4) DEFAULT '1' COMMENT '暂无用处',
`tplDesc` text COMMENT '模板描述',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效标志(1:有效 -1:删除)',
`status` tinyint(4) DEFAULT '1' COMMENT '模板状态(1:启用 0:不启用)',
PRIMARY KEY (`id`),
CONSTRAINT `44` FOREIGN KEY (`id`) REFERENCES `82switchs` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——系统模板表';
-- ----------------------------
-- Records of 84templte_msgs
-- ----------------------------
-- ----------------------------
-- Table structure for `85users`
-- ----------------------------
DROP TABLE IF EXISTS `85users`;
CREATE TABLE `85users` (
`userId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`loginName` varchar(20) NOT NULL COMMENT '账号',
`loginSecret` int(11) NOT NULL COMMENT '安全码',
`loginPwd` varchar(50) NOT NULL COMMENT '密码',
`userType` varchar(4) NOT NULL DEFAULT '0' COMMENT '用户类型(0:普通会员 1:门店用户)',
`userSex` tinyint(4) DEFAULT '0' COMMENT '性别',
`userName` varchar(100) DEFAULT NULL COMMENT '用户名称',
`brithday` date DEFAULT NULL COMMENT '真实姓名',
`userPhoto` varchar(200) DEFAULT NULL COMMENT '会员头像',
`userQQ` varchar(20) DEFAULT NULL COMMENT '用户QQ',
`userphone` char(11) DEFAULT NULL COMMENT '手机',
`userEmail` varchar(20) DEFAULT NULL COMMENT '邮箱',
`userScore` int(11) DEFAULT '0' COMMENT '用户积分',
`userTotalScore` int(11) DEFAULT '0' COMMENT '用户历史消费积分(跟会员等级有关)',
`lastIP` varchar(18) DEFAULT NULL COMMENT '最后登入IP',
`lastTime` datetime DEFAULT NULL COMMENT '最后登入时间',
`userForm` tinyint(4) DEFAULT '0' COMMENT '第三方标识(0:停用 1:启用 -1:注销)',
`userMoney` decimal(11,2) DEFAULT '0.00' COMMENT '用户钱包金额',
`lockMoney` decimal(11,2) DEFAULT '0.00' COMMENT '冻结金额',
`userStatus` tinyint(4) NOT NULL DEFAULT '1' COMMENT '账号状态(0:停用 1:启用 -1:注销)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志(-1:删除 1:有效)',
`createTime` datetime NOT NULL COMMENT '创建时间',
`payPwd` varchar(100) DEFAULT NULL COMMENT '支付密码',
`wxOpenld` char(100) DEFAULT NULL COMMENT '微信用户openld',
`wxUnionld` char(100) DEFAULT NULL COMMENT '微信用户Unionld',
`distributMoney` decimal(11,2) DEFAULT '0.00' COMMENT '分销佣金',
`isBuyer` tinyint(4) DEFAULT '0' COMMENT '是否购买商品标识(1:有 0:无)',
`rechargeMoney` decimal(11,2) DEFAULT '0.00' COMMENT '充值金额',
`isInform` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否允许举报',
`ucUid` int(11) DEFAULT '0' COMMENT 'Ucenter用户ID',
`weOpenld` char(100) DEFAULT NULL COMMENT '小程序openld',
`isDealer` tinyint(4) DEFAULT '0' COMMENT '是否为经销商(1:是 0:否)',
`distributStatus` tinyint(4) DEFAULT '0' COMMENT '分销商状态(1:分销商 0:非分销商)',
`cancelRemarks` varchar(100) DEFAULT NULL COMMENT '注销备注',
`applyCanceTime` datetime DEFAULT NULL COMMENT '申请注销时间',
PRIMARY KEY (`userId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——会员表';
-- ----------------------------
-- Records of 85users
-- ----------------------------
-- ----------------------------
-- Table structure for `86user_address`
-- ----------------------------
DROP TABLE IF EXISTS `86user_address`;
CREATE TABLE `86user_address` (
`addressId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`userId` int(11) DEFAULT NULL COMMENT '会员ID',
`userName` varchar(50) DEFAULT NULL COMMENT '收货人名称',
`userPhone` varchar(20) DEFAULT NULL COMMENT '收货人手机',
`arealdPath` varchar(255) DEFAULT '0' COMMENT '区域id路径(省id-市id-县id 例如:440000-440100-440106-)',
`areald` int(11) DEFAULT '0' COMMENT '最后一级区域id',
`userAddress` varchar(255) DEFAULT NULL COMMENT '详情地址',
`isDefault` tinyint(4) DEFAULT '0' COMMENT '是否默认地址',
`dataFlag` tinyint(4) DEFAULT '1' COMMENT '有效状态(0:否 1:是)',
`createTime` datetime DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`addressId`),
KEY `42` (`userId`),
CONSTRAINT `42` FOREIGN KEY (`userId`) REFERENCES `85users` (`userId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——会员地址表';
-- ----------------------------
-- Records of 86user_address
-- ----------------------------
-- ----------------------------
-- Table structure for `87user_ranks`
-- ----------------------------
DROP TABLE IF EXISTS `87user_ranks`;
CREATE TABLE `87user_ranks` (
`rankId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`rankName` varchar(20) NOT NULL COMMENT '等级名称',
`startScore` int(11) NOT NULL DEFAULT '0' COMMENT '开始积分(大于开始积分)',
`endScore` int(11) NOT NULL DEFAULT '0' COMMENT '结束积分(包含结束积分)',
`userrankImg` varchar(150) DEFAULT NULL COMMENT '等级图标',
`dataFlag` tinyint(4) NOT NULL COMMENT '删除标志(-1:删除 1:有效)',
`createTime` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`rankId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——会员等级表';
-- ----------------------------
-- Records of 87user_ranks
-- ----------------------------
-- ----------------------------
-- Table structure for `88user_scores`
-- ----------------------------
DROP TABLE IF EXISTS `88user_scores`;
CREATE TABLE `88user_scores` (
`scoreId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`userId` int(11) NOT NULL DEFAULT '0' COMMENT '用户ID',
`score` int(11) NOT NULL DEFAULT '0' COMMENT '积分数',
`dataSrc` int(11) NOT NULL DEFAULT '0' COMMENT '来源(1:订单 2:评价 3:订单取消返还 4:拒绝返还)',
`dataId` int(11) NOT NULL DEFAULT '0' COMMENT '来源记录ID(dataId)',
`dataRemarks` text COMMENT '描述(N/A)',
`scoreType` int(11) NOT NULL DEFAULT '0' COMMENT '积分类型(1:收入 2:支出)',
`createTime` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`scoreId`),
KEY `43` (`userId`),
CONSTRAINT `16` FOREIGN KEY (`scoreId`) REFERENCES `28goods_scores` (`scoreId`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `43` FOREIGN KEY (`userId`) REFERENCES `85users` (`userId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅——会员积分表';
-- ----------------------------
-- Records of 88user_scores
-- ----------------------------