70店铺入驻流程表
DROP TABLE IF EXISTS `xuge_shop_flows`;
CREATE TABLE `xuge_shop_flows` (`flowId` int(11) NOT NULL AUTO_INCREMENT,`flowName` varchar(100) NOT NULL,`isShow` tinyint(4) DEFAULT '1' COMMENT '0:隐藏 1:显示',`sort` tinyint(4) DEFAULT '0',`isDelete` tinyint(4) DEFAULT '1' COMMENT '0:否 1:是',`createTime` datetime NOT NULL,`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1:有效 -1:删除',PRIMARY KEY (`flowId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='店铺入驻流程表(xuge_shop_flows)';
71店铺运费模板表
DROP TABLE IF EXISTS `xuge_shop_freight_template`;
CREATE TABLE `xuge_shop_freight_template` (`id` int(11) NOT NULL AUTO_INCREMENT,`shopExpressId` int(11) NOT NULL,`tempName` varchar(100) NOT NULL,`tempType` tinyint(4) NOT NULL DEFAULT '1' COMMENT '0:全国 1:指定地区',`provinceIds` text,`cityIds` text,`buyNumStart` int(4) DEFAULT '0',`buyNumStartPrince` decimal(11,2) DEFAULT '0.00',`buyNumContinue` int(4) DEFAULT '0',`buyNumContinuePrice` decimal(11,2) DEFAULT '0.00',`weightStart` decimal(11,2) DEFAULT '0.00',`weightStartPrice` decimal(11,2) DEFAULT '0.00',`weightContinue` decimal(11,2) DEFAULT '0.00',`weightContinuePrice` decimal(11,2) DEFAULT '0.00',`volumeStart` decimal(11,2) DEFAULT '0.00',`volumeStartPrice` decimal(11,2) DEFAULT '0.00',`volumeContinue` decimal(11,2) DEFAULT '0.00',`volumContinuePrice` decimal(11,2) DEFAULT '0.00',`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1:有效 -1:删除',`shopId` int(11) DEFAULT '0',`createTime` datetime DEFAULT NULL,PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='店铺运费模板表(xuge_shop_freight_template)';
72消息类型表
DROP TABLE IF EXISTS `xuge_shop_message_cats`;
CREATE TABLE `xuge_shop_message_cats` (`id` int(11) NOT NULL AUTO_INCREMENT,`msgDateId` int(11) DEFAULT '0' COMMENT '1:商品审核提醒 2:新订单提醒 3:订单投诉提醒 4:订单失效提醒 5:退货退款提醒<br/&gt 6:结算信息提醒 7:订单评价提醒 8:收货提醒 9:商品举报提醒 10:售后消息提醒',`msgType` tinyint(4) DEFAULT '0' COMMENT '1:商场消息 2:手机短信提醒 3:微信模版消息提醒',`msgCode` varchar(100) DEFAULT NULL,PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='消息类型表(xuge_shop_message_cats)';
73店铺角色表
DROP TABLE IF EXISTS `xuge_shop_roles`;
CREATE TABLE `xuge_shop_roles` (`id` int(11) NOT NULL AUTO_INCREMENT,`shopId` int(11) DEFAULT '0',`roleName` varchar(100) DEFAULT NULL,`privilegeMsgs` text,`privilegeUrls` text COMMENT 'N/A',`createTime` datetime DEFAULT NULL,`dateFlag` tinyint(4) DEFAULT '1',PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='店铺角色表(xuge_shop_roles)';
74店铺评分表
DROP TABLE IF EXISTS `xuge_shop_scores`;
CREATE TABLE `xuge_shop_scores` (`scoreId` int(11) NOT NULL AUTO_INCREMENT,`shopId` int(11) NOT NULL,`totalScore` int(11) NOT NULL DEFAULT '0',`totalUsers` int(11) NOT NULL DEFAULT '0',`goodsScore` int(11) NOT NULL DEFAULT '0',`goodsUsers` int(11) NOT NULL DEFAULT '0',`serviceUsers` int(11) NOT NULL DEFAULT '0',`timeScore` int(11) NOT NULL DEFAULT '0',`timeUsers` int(11) NOT NULL DEFAULT '0',PRIMARY KEY (`scoreId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='店铺评分表(xuge_shop_scores)';
75客服系统-设置表
DROP TABLE IF EXISTS `xuge_shop_services`;
CREATE TABLE `xuge_shop_services` (`shopId` int(11) NOT NULL AUTO_INCREMENT,`creat Time` datetime DEFAULT NULL,`dataFlag` tinyint(4) DEFAULT '1' COMMENT '1:有效 -1:删除',`serviceId` varchar(50) NOT NULL,PRIMARY KEY (`shopId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='客服系统-设置表(xuge_shop_services)';
76店铺风格表
DROP TABLE IF EXISTS `xuge_shop_styles`;
CREATE TABLE `xuge_shop_styles` (`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',`styleSys` varchar(255) DEFAULT NULL COMMENT '风格适应的系统 例如电脑端 ,手机端微信端',`styleName` varchar(255) DEFAULT NULL COMMENT '风格名称',`styleCat` tinyint(4) unsigned DEFAULT '0' COMMENT '风格所属类型',`stylePath` varchar(255) DEFAULT NULL COMMENT '风格目录',`screenshot` varchar(255) DEFAULT NULL COMMENT '缩略图路径',`isShow` tinyint(4) DEFAULT '1',PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='店铺风格表(xuge_shop_styles)';
77店铺职员表
DROP TABLE IF EXISTS `xuge_shop_users`;
CREATE TABLE `xuge_shop_users` (`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',`shopId` int(11) NOT NULL DEFAULT '0' COMMENT '店铺ID',`userId` int(11) NOT NULL DEFAULT '0' COMMENT '用户ID',`roleId` int(11) NOT NULL DEFAULT '0' COMMENT '角色ID',`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效标识-1:无效1:有效',`serviceId` varchar(50) NOT NULL COMMENT '客服ID',`privilegeMsg Types` varchar(50) DEFAULT NULL COMMENT '接受信息类型权限',`privilegeMsgs` varchar(200) DEFAULT NULL COMMENT '接受信息权限',`privilegePhoneMsys` varchar(200) DEFAULT NULL COMMENT '接受短信权限',PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='店铺职员表(xuge_shop_users)';
78店铺表
DROP TABLE IF EXISTS `xuge_shops`;
CREATE TABLE `xuge_shops` (`shopId` int(11) NOT NULL 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(N/A)',`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 '店铺图标',`shopTel` 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',`bankNo` varchar(20) NOT NULL COMMENT '银行卡号',`bankUserName` varchar(50) NOT NULL COMMENT '银行卡所有人名称',`isInvoice` tinyint(4) NOT NULL DEFAULT '0' COMMENT '能否开发票(1:能0:不能)',`invoiceRemark` 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:有效)',`createTime` 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 '入驻费用',PRIMARY KEY (`shopId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='店铺表(xuge_shops)';
79商品规格分类表
DROP TABLE IF EXISTS `xuge_spec_cats`;
CREATE TABLE `xuge_spec_cats` (`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 '类型名称',`isAllowing` 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`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品规格分类表(xuge_spec_cats)';