24
sql
CREATE TABLE `goods_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`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅------goods_appraises';
25
sql
CREATE TABLE `goods_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`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅------goods_attributes';
26
sql
CREATE TABLE `goods_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`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅------goods_cats';
27
sql
CREATE TABLE `goods_consult` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`goodsId` int(10) unsigned NOT NULL COMMENT '商品ID',
`useId` 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`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅------goods_consult';
28
sql
CREATE TABLE `goods_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`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅------goods_scores';
29
sql
CREATE TABLE `goods_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`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅------goods_specs';
30
sql
CREATE TABLE `goods_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`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='马文雅------goods_virtuals';
31
sql
CREATE TABLE `home_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=MyISAM DEFAULT CHARSET=utf8 COMMENT='马文雅------home_menus';
32
sql
CREATE TABLE `hooks` (
`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=MyISAM DEFAULT CHARSET=utf8 COMMENT='马文雅------hooks';
33
sql
CREATE TABLE `informs` (
`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=MyISAM DEFAULT CHARSET=utf8 COMMENT='马文雅------informs';
34
sql
CREATE TABLE `invoices` (
`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`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='马文雅------invoices';
35
sql
CREATE TABLE `log_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`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='马文雅------log_moneys';
36
sql
CREATE TABLE `log_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=MyISAM DEFAULT CHARSET=utf8 COMMENT='马文雅------log_operates\r\n';