2454 lines
124 KiB
SQL
2454 lines
124 KiB
SQL
/*
|
||
Navicat MySQL Data Transfer
|
||
|
||
Source Server : 测试开发
|
||
Source Server Version : 50644
|
||
Source Host : 118.190.133.206:3306
|
||
Source Database : bkycms_com
|
||
|
||
Target Server Type : MYSQL
|
||
Target Server Version : 50644
|
||
File Encoding : 65001
|
||
|
||
Date: 2021-07-01 15:20:32
|
||
*/
|
||
|
||
SET FOREIGN_KEY_CHECKS=0;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_apply
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_apply`;
|
||
CREATE TABLE `ims_ybo2ov2_apply` (
|
||
`id` int(10) NOT NULL AUTO_INCREMENT,
|
||
`sort` varchar(10) DEFAULT NULL COMMENT '排序',
|
||
`apply_name` varchar(100) NOT NULL COMMENT '平台名称',
|
||
`apply_image` varchar(255) DEFAULT NULL COMMENT '平台展示图片',
|
||
`apply_qr_code` varchar(255) DEFAULT NULL COMMENT '平台二维码',
|
||
`apply_type` tinyint(1) NOT NULL COMMENT '平台版本1 连锁版2 O2O版3单店版',
|
||
`create_shop_count` int(10) DEFAULT NULL COMMENT '可创建门店数量',
|
||
`start_time` datetime NOT NULL,
|
||
`end_time` datetime NOT NULL COMMENT '到期时间',
|
||
`status` tinyint(1) DEFAULT '1' COMMENT '状态码1.正常2回收站3.删除',
|
||
`dt_operdate` datetime DEFAULT NULL,
|
||
`plug_str` varchar(50) DEFAULT NULL COMMENT '可用插件组成的拼接字符串',
|
||
`channel_str` varchar(50) DEFAULT NULL COMMENT '可用渠道组成的拼接字符串',
|
||
`up_operdate` datetime DEFAULT NULL COMMENT '修改时间',
|
||
`time_type` tinyint(1) NOT NULL COMMENT '到期时间类型1指定时间2永久时间',
|
||
`user_bind` tinyint(1) DEFAULT '0' COMMENT '用户绑定状态',
|
||
`use_str` varchar(50) DEFAULT NULL,
|
||
`userId` int(11) DEFAULT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8 COMMENT='平台账户表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_attribute
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_attribute`;
|
||
CREATE TABLE `ims_ybo2ov2_attribute` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(30) NOT NULL,
|
||
`display` int(11) NOT NULL DEFAULT '1',
|
||
`createdAt` int(11) NOT NULL DEFAULT '0',
|
||
`deleteAt` int(11) NOT NULL DEFAULT '0',
|
||
`uniacid` int(11) NOT NULL DEFAULT '0',
|
||
`sort` int(11) NOT NULL DEFAULT '0',
|
||
`storeId` int(11) NOT NULL DEFAULT '0',
|
||
`attr_str` varchar(255) DEFAULT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COMMENT='商品属性表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_bill
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_bill`;
|
||
CREATE TABLE `ims_ybo2ov2_bill` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序Id',
|
||
`userId` int(11) DEFAULT NULL COMMENT '用户ID',
|
||
`orderId` int(11) DEFAULT NULL COMMENT '订单Id',
|
||
`money` decimal(10,2) DEFAULT NULL COMMENT '金额',
|
||
`refundMoney` decimal(10,2) DEFAULT NULL COMMENT '退款金额',
|
||
`refundAt` int(11) DEFAULT NULL COMMENT '退款时间',
|
||
`origin` tinyint(4) DEFAULT '1' COMMENT '金额来源,1外卖订单2充值3积分商城4.券包5收银6快餐7店内',
|
||
`outTradeNo` varchar(32) DEFAULT NULL COMMENT '订单号',
|
||
`storeId` int(11) DEFAULT NULL COMMENT '门店ID',
|
||
`item` tinyint(4) DEFAULT NULL COMMENT '1加,2减',
|
||
`type` tinyint(4) DEFAULT '1' COMMENT '1冻结,2正常',
|
||
`storeActualMoney` decimal(10,2) DEFAULT NULL COMMENT '商家总所得金额',
|
||
`storeDeliveryMoney` decimal(10,2) DEFAULT NULL COMMENT '商家配送费所得',
|
||
`storeBoxMoney` decimal(10,2) DEFAULT NULL COMMENT '商家配送费所得',
|
||
`storeGoodsMoney` decimal(10,2) DEFAULT NULL COMMENT '商家商品所得',
|
||
`zoneActualMoney` decimal(10,2) DEFAULT NULL COMMENT '区域总所得',
|
||
`zoneDeliveryMoney` decimal(10,2) DEFAULT NULL COMMENT '区域配送费所得',
|
||
`zoneBoxMoney` decimal(10,2) DEFAULT NULL COMMENT '区域配送费所得',
|
||
`zoneGoodsMoney` decimal(10,2) DEFAULT NULL COMMENT '区域商品所得',
|
||
`payMode` tinyint(4) DEFAULT '1' COMMENT '付款方式 1微信支付5余额支付',
|
||
`payType` tinyint(4) DEFAULT '1' COMMENT '1普通模式,2服务商模式',
|
||
`refundType` int(11) DEFAULT NULL COMMENT '1.用户退款2商户退款',
|
||
`payPort` int(11) DEFAULT '1' COMMENT '1.商户服务商支付2平台服务商支付',
|
||
`profitSharingState` int(11) DEFAULT '2' COMMENT '1已经分账2未分账',
|
||
`changeAt` int(11) DEFAULT NULL COMMENT '修改时间',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`createdAt` int(11) DEFAULT NULL COMMENT '创建时间',
|
||
`statisticsAt` int(11) DEFAULT NULL COMMENT '统计时间',
|
||
`entryAt` int(11) DEFAULT NULL COMMENT '入账时间',
|
||
`subsidy` decimal(10,2) DEFAULT '0.00' COMMENT '平台补贴',
|
||
`note` varchar(255) DEFAULT NULL COMMENT '备注',
|
||
`currentMoney` decimal(15,2) NOT NULL COMMENT '当前余额',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `userId` (`userId`) USING BTREE,
|
||
KEY `storeId` (`storeId`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='系统账单表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_birthday
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_birthday`;
|
||
CREATE TABLE `ims_ybo2ov2_birthday` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) DEFAULT NULL COMMENT '活动标题',
|
||
`startTime` int(11) DEFAULT NULL COMMENT '开始时间',
|
||
`endTime` int(11) DEFAULT NULL COMMENT '结束时间',
|
||
`people` int(11) DEFAULT '1' COMMENT '1全部2新用户3会员4.指定等级会员5.指定标签会员',
|
||
`userLabel` varchar(255) DEFAULT NULL COMMENT '标签id',
|
||
`rankId` int(11) DEFAULT NULL COMMENT '等级id',
|
||
`day` int(11) DEFAULT '0' COMMENT '几天前',
|
||
`smsOpen` int(11) DEFAULT '2' COMMENT '1开启2关闭',
|
||
`isBalance` int(11) DEFAULT '2' COMMENT '赠送余额1开启2关闭',
|
||
`balance` decimal(10,2) DEFAULT '0.00',
|
||
`isIntegral` int(11) DEFAULT '2' COMMENT '赠送积分1开启2关闭',
|
||
`integral` int(11) DEFAULT '0',
|
||
`isGrowth` int(11) DEFAULT '2' COMMENT '赠送成长值1开启2关闭',
|
||
`growth` int(11) DEFAULT '0',
|
||
`isCoupon` int(11) DEFAULT '2' COMMENT '赠送优惠券1开启2关闭',
|
||
`coupon` varchar(225) DEFAULT NULL COMMENT '优惠券',
|
||
`display` int(11) DEFAULT '1' COMMENT '1开启2关闭',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`createdAt` int(11) DEFAULT '0' COMMENT '创建时间',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序id',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_bonus_withdrawal
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_bonus_withdrawal`;
|
||
CREATE TABLE `ims_ybo2ov2_bonus_withdrawal` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`outTradeNo` varchar(50) DEFAULT NULL,
|
||
`item` int(11) DEFAULT '1' COMMENT '1.老带新2.分销商',
|
||
`type` int(11) DEFAULT '1' COMMENT '提现方式,1微信,2支付宝3银联,4.余额',
|
||
`userId` int(11) DEFAULT '0',
|
||
`account` varchar(500) DEFAULT NULL COMMENT '账户信息',
|
||
`money` decimal(10,2) DEFAULT NULL,
|
||
`actualMoney` decimal(10,2) DEFAULT '0.00' COMMENT '实际金额',
|
||
`charge` decimal(10,2) DEFAULT '0.00' COMMENT '手续费',
|
||
`state` int(11) DEFAULT '1' COMMENT '1申请中,2已通过,3已拒绝',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_change_pay
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_change_pay`;
|
||
CREATE TABLE `ims_ybo2ov2_change_pay` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) DEFAULT NULL,
|
||
`startTime` int(11) DEFAULT '0',
|
||
`endTime` int(11) DEFAULT '0',
|
||
`money` decimal(10,2) DEFAULT '0.00' COMMENT '换购价',
|
||
`stock` varchar(255) DEFAULT NULL,
|
||
`storeType` int(11) DEFAULT '1' COMMENT '1.本店2全店3指定',
|
||
`storeArr` varchar(500) DEFAULT NULL COMMENT '门店数组',
|
||
`limitType` int(11) DEFAULT '1' COMMENT '1不限次数2每天换购',
|
||
`num` int(11) DEFAULT '1' COMMENT '每天换购多少次',
|
||
`goodsArr` text COMMENT '商品数组',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`display` int(11) DEFAULT '1' COMMENT '1显示2隐藏',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`storeId` int(11) DEFAULT '0',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='换购';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_collection_courtesy
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_collection_courtesy`;
|
||
CREATE TABLE `ims_ybo2ov2_collection_courtesy` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) DEFAULT NULL,
|
||
`media` varchar(255) DEFAULT NULL,
|
||
`state` int(11) DEFAULT '1' COMMENT '1待审核2已通过3已拒绝',
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`changeAt` int(11) DEFAULT NULL,
|
||
`uniacid` int(11) DEFAULT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `userId` (`userId`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_core_ad
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_core_ad`;
|
||
CREATE TABLE `ims_ybo2ov2_core_ad` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`item` tinyint(4) NOT NULL DEFAULT '0' COMMENT '跳转类型',
|
||
`link` text COMMENT '跳转数据',
|
||
`name` varchar(50) NOT NULL COMMENT '广告标题',
|
||
`icon` varchar(255) NOT NULL COMMENT '图片',
|
||
`type` tinyint(4) DEFAULT '1' COMMENT '1幻灯片,2中部广告位',
|
||
`display` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1显示,2隐藏',
|
||
`location` tinyint(4) NOT NULL COMMENT '1.积分商城',
|
||
`createdAt` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
||
`deleteAt` int(11) NOT NULL DEFAULT '0' COMMENT '删除时间',
|
||
`uniacid` int(11) NOT NULL COMMENT '小程序ID',
|
||
`typeId` int(11) DEFAULT '0',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='广告表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_core_category
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_core_category`;
|
||
CREATE TABLE `ims_ybo2ov2_core_category` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '分类名称',
|
||
`icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '图标',
|
||
`createdAt` int(11) DEFAULT '0' COMMENT '创建时间',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`uniacid` int(11) DEFAULT '0' COMMENT '小程序ID',
|
||
`item` tinyint(4) DEFAULT '1' COMMENT '1外卖商家分类2店内商家分类3店铺服务4图片分类5商家区域6外卖商品分类7店内商品分类8平台外卖商品9平台店内分类10商家套餐11商品标签12商家打印标签13用户标签14商户标签,(15会员权益)',
|
||
`sort` int(11) DEFAULT '0' COMMENT '排序',
|
||
`service` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '类型',
|
||
`pid` int(11) DEFAULT '0' COMMENT '父级Id',
|
||
`level` tinyint(4) DEFAULT '1' COMMENT '1父级,2子级',
|
||
`storeId` int(11) DEFAULT '0',
|
||
`platform` tinyint(4) DEFAULT '1' COMMENT '1平台,2商户',
|
||
`media` text CHARACTER SET utf8mb4 COMMENT '分类幻灯片',
|
||
`display` int(11) DEFAULT '1' COMMENT '1 显示,2隐藏',
|
||
`isRequire` tinyint(1) DEFAULT '2' COMMENT '1必选2不是必选',
|
||
`timeType` tinyint(1) DEFAULT '1',
|
||
`weekStr` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '周一到周日拼接的字符串',
|
||
`startTime` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '时间段开始时间',
|
||
`endTime` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '时间段结束时间',
|
||
`data` text COLLATE utf8mb4_unicode_ci COMMENT '服务费json串',
|
||
`describe` text COLLATE utf8mb4_unicode_ci COMMENT '描述',
|
||
`customName` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '自定义属性名称(必选 畅销 热销)',
|
||
`color` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '颜色',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `storeId` (`storeId`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=163 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='系统分类表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_core_district
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_core_district`;
|
||
CREATE TABLE `ims_ybo2ov2_core_district` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(50) DEFAULT NULL,
|
||
`level` int(11) DEFAULT NULL,
|
||
`upid` int(11) DEFAULT NULL,
|
||
`state` int(11) DEFAULT NULL,
|
||
`sort` int(11) DEFAULT NULL,
|
||
`pinyin` varchar(30) DEFAULT NULL,
|
||
`latitude` varchar(20) DEFAULT NULL,
|
||
`longitude` varchar(20) DEFAULT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `upid` (`upid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=5111 DEFAULT CHARSET=utf8 COMMENT='省市区表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_core_file
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_core_file`;
|
||
CREATE TABLE `ims_ybo2ov2_core_file` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`storeId` int(11) DEFAULT '0' COMMENT '商户ID',
|
||
`categoryId` int(11) DEFAULT '0' COMMENT '分类ID',
|
||
`url` varchar(255) DEFAULT NULL COMMENT '路径',
|
||
`createdAt` int(11) DEFAULT NULL COMMENT '创建时间',
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`name` varchar(255) DEFAULT NULL COMMENT '图片名称',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `storeId` (`storeId`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=300 DEFAULT CHARSET=utf8 COMMENT='文件表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_core_goods
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_core_goods`;
|
||
CREATE TABLE `ims_ybo2ov2_core_goods` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`sort` int(11) DEFAULT NULL COMMENT '排序',
|
||
`typePid` int(11) DEFAULT NULL,
|
||
`typeId` int(11) DEFAULT NULL COMMENT '分类id',
|
||
`name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '商品名称',
|
||
`body` text COLLATE utf8mb4_unicode_ci COMMENT '详细介绍',
|
||
`icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '商品主图',
|
||
`minNum` int(11) DEFAULT '0' COMMENT '起始值',
|
||
`unit` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '商品单位',
|
||
`price` decimal(10,2) DEFAULT NULL,
|
||
`boxMoney` decimal(10,2) DEFAULT NULL COMMENT '餐盒费',
|
||
`stock` int(11) DEFAULT NULL,
|
||
`fillType` tinyint(1) DEFAULT '0' COMMENT '次日置满',
|
||
`crossedPrice` decimal(10,2) DEFAULT NULL COMMENT '划线价格',
|
||
`costPrice` decimal(10,2) DEFAULT NULL COMMENT '成本价格',
|
||
`goodCode` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
`salesType` tinyint(1) DEFAULT NULL COMMENT '售卖时间类型1全时段售卖2自定义售卖时间',
|
||
`startTime` int(11) DEFAULT NULL,
|
||
`endTime` int(11) DEFAULT NULL,
|
||
`weekDay` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '星期一到星期日的集合',
|
||
`hotsaleType` tinyint(1) DEFAULT '1' COMMENT '是否参与热销排行',
|
||
`aloneType` tinyint(1) DEFAULT '2' COMMENT '单点时不配送',
|
||
`details` text COLLATE utf8mb4_unicode_ci COMMENT '详情',
|
||
`isMember` tinyint(4) DEFAULT '2' COMMENT '1支持会员折扣,2否',
|
||
`maxNum` int(11) DEFAULT '0',
|
||
`salesNum` int(11) DEFAULT '0' COMMENT '销量',
|
||
`goodLabel` int(11) DEFAULT NULL,
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序ID',
|
||
`createdAt` int(11) DEFAULT NULL COMMENT '创建时间',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`isRecommend` tinyint(4) DEFAULT '2' COMMENT '推荐 1是,2否',
|
||
`display` tinyint(41) DEFAULT '1' COMMENT '1 显示,2隐藏 3待上架',
|
||
`required` tinyint(4) DEFAULT '2' COMMENT '必选品 1是,2否',
|
||
`storeId` int(11) DEFAULT '0' COMMENT '门店Id',
|
||
`weekSalesType` tinyint(1) DEFAULT NULL COMMENT '设置星期后1全时段售卖2自定义时间售卖',
|
||
`maxPrice` decimal(10,2) DEFAULT NULL,
|
||
`isSpecs` tinyint(1) DEFAULT '2' COMMENT '1多规格 2为单规格',
|
||
`sourceType` tinyint(1) DEFAULT '1' COMMENT '1系统录入2excel导入',
|
||
`pid` int(11) DEFAULT '0' COMMENT '主商户门店商品的自增id',
|
||
`num` int(11) DEFAULT '0',
|
||
`printLabel` int(11) DEFAULT NULL COMMENT '打印标签ID',
|
||
`isAttr` tinyint(1) DEFAULT '2' COMMENT '是否有属性 2无属性 1有属性',
|
||
`isMaterial` tinyint(1) DEFAULT '2' COMMENT '2无加料 1有加料',
|
||
`media` text COLLATE utf8mb4_unicode_ci COMMENT '商品多图片',
|
||
`goodsPid` int(11) DEFAULT NULL COMMENT '主门店商品Id',
|
||
`virtualSales` int(11) DEFAULT '0' COMMENT '虚拟销量',
|
||
`goodsType` tinyint(1) DEFAULT '1' COMMENT '1外卖2店内',
|
||
`discountArr` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '折扣数组',
|
||
`discountOpen` int(11) DEFAULT '2' COMMENT '折扣1开启2关闭',
|
||
`data` text COLLATE utf8mb4_unicode_ci,
|
||
`attrData` text COLLATE utf8mb4_unicode_ci,
|
||
`hoursData` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
`platTypeId` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '商户分类',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `pindex` (`typePid`) USING BTREE,
|
||
KEY `tindex` (`typeId`) USING BTREE
|
||
) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='商品/菜品表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_core_label
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_core_label`;
|
||
CREATE TABLE `ims_ybo2ov2_core_label` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) DEFAULT NULL,
|
||
`type` int(11) DEFAULT '1' COMMENT '1.商品标签',
|
||
`display` tinyint(1) DEFAULT '1' COMMENT '1显示2隐藏',
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序id',
|
||
`storeId` int(11) DEFAULT NULL COMMENT '商家id',
|
||
`sort` int(11) DEFAULT '1' COMMENT '排序',
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`color` varchar(20) DEFAULT NULL COMMENT '颜色',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品标签表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_core_system
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_core_system`;
|
||
CREATE TABLE `ims_ybo2ov2_core_system` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`data` text COLLATE utf8mb4_unicode_ci COMMENT '设置(json串)',
|
||
`changeAt` int(11) DEFAULT NULL COMMENT '改变时间',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序ID',
|
||
`ident` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '标识',
|
||
`createdAt` int(11) DEFAULT NULL COMMENT '创建时间',
|
||
`name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='系统设置表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_coupon
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_coupon`;
|
||
CREATE TABLE `ims_ybo2ov2_coupon` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) NOT NULL COMMENT '活动名称',
|
||
`type` int(11) DEFAULT '1' COMMENT '1.优惠券2折扣券',
|
||
`money` decimal(10,2) DEFAULT NULL COMMENT '减多少',
|
||
`fullMoney` decimal(10,2) DEFAULT NULL COMMENT '满多少',
|
||
`discount` decimal(10,1) DEFAULT NULL COMMENT '折扣',
|
||
`useStartTime` int(11) DEFAULT '0' COMMENT '使用开始时间',
|
||
`useEndTime` int(11) DEFAULT '0' COMMENT '使用结束时间',
|
||
`timeType` int(11) DEFAULT '1' COMMENT '1.日期范围2领取后多少天',
|
||
`day` int(11) DEFAULT '0' COMMENT '领取后多少天',
|
||
`useType` varchar(50) NOT NULL COMMENT '使用类型1.外卖2自提3.堂食4快餐',
|
||
`startTime` int(11) DEFAULT NULL COMMENT '活动开始时间',
|
||
`endTime` int(11) DEFAULT NULL COMMENT '活动结束时间',
|
||
`details` varchar(255) NOT NULL COMMENT '详情',
|
||
`stock` int(11) DEFAULT '0' COMMENT '库存',
|
||
`maxNum` int(11) DEFAULT '0' COMMENT '限领',
|
||
`storeType` int(11) DEFAULT '1' COMMENT '1.本店2.全部门店3指定,4指定商户分类ID',
|
||
`storeArr` varchar(255) NOT NULL COMMENT '门店id数组',
|
||
`goodsType` int(11) DEFAULT '1' COMMENT '1.全部商品2指定商品3.指定不可用4.指定分类商品,',
|
||
`goodsArr` varchar(255) NOT NULL COMMENT '商品或分类id数组',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`color` varchar(20) NOT NULL DEFAULT '#EE472B' COMMENT '颜色',
|
||
`memberType` int(11) DEFAULT '1' COMMENT '1所有人2会员3指定标签用户',
|
||
`isNextDay` int(11) DEFAULT '2' COMMENT '1.此日起',
|
||
`shareImg` varchar(255) NOT NULL COMMENT '分享图片',
|
||
`shareTitle` varchar(255) NOT NULL COMMENT '分享标题',
|
||
`display` int(11) DEFAULT '1' COMMENT '1显示2隐藏',
|
||
`storeId` int(11) DEFAULT '0' COMMENT '商家id',
|
||
`memberLabel` varchar(255) NOT NULL COMMENT '会员标签数组',
|
||
`sort` int(11) DEFAULT '1' COMMENT '排序',
|
||
`isFull` int(11) DEFAULT '1' COMMENT '1无门槛2有门槛',
|
||
`isMax` int(11) DEFAULT '1' COMMENT '1.不限领2.限领',
|
||
`subsidy` decimal(10,2) DEFAULT '0.00' COMMENT '平台补贴',
|
||
`isVip` int(11) DEFAULT '2' COMMENT '1.会员优惠券2普通优惠券',
|
||
`undertake` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '商户承担',
|
||
`storeTypeId` varchar(255) DEFAULT NULL,
|
||
`couponType` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1平台红包,2商户代金券',
|
||
PRIMARY KEY (`id`),
|
||
KEY `storeId` (`storeId`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='优惠券';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_crontab
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_crontab`;
|
||
CREATE TABLE `ims_ybo2ov2_crontab` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(50) DEFAULT NULL COMMENT '定时任务名称',
|
||
`route` varchar(50) DEFAULT NULL COMMENT '任务路由',
|
||
`switch` tinyint(1) DEFAULT '0' COMMENT '任务开关 0关闭 1开启',
|
||
`crontab_str` varchar(50) DEFAULT NULL COMMENT 'crontab格式',
|
||
`status` tinyint(1) DEFAULT '0' COMMENT '任务运行状态 0正常 1任务报错',
|
||
`last_rundate` datetime DEFAULT NULL COMMENT '任务上次运行时间',
|
||
`next_rundate` datetime DEFAULT NULL COMMENT '任务下次运行时间',
|
||
`execmemory` decimal(9,2) DEFAULT '0.00' COMMENT '任务执行消耗内存(单位/byte)',
|
||
`exectime` decimal(9,2) DEFAULT '0.00' COMMENT '任务执行消耗时间',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='定时任务表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_delivery_preferential
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_delivery_preferential`;
|
||
CREATE TABLE `ims_ybo2ov2_delivery_preferential` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) DEFAULT NULL COMMENT '活动名称',
|
||
`startTime` int(11) DEFAULT '0',
|
||
`endTime` int(11) DEFAULT '0',
|
||
`reductionArr` varchar(500) DEFAULT NULL COMMENT '满减数组',
|
||
`money` decimal(10,2) DEFAULT NULL COMMENT '立减多少',
|
||
`type` int(11) DEFAULT '1' COMMENT '优惠形式1.立减2.满减',
|
||
`week` varchar(255) DEFAULT NULL COMMENT '循环周期',
|
||
`useType` int(11) DEFAULT '1' COMMENT '1.本店使用2全店通用3.指定门店',
|
||
`useStore` varchar(255) DEFAULT NULL COMMENT '可用门店',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`storeId` int(11) DEFAULT '0',
|
||
`display` int(11) DEFAULT '1' COMMENT '1.显示2隐藏',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='满减配送费';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_distribution
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_distribution`;
|
||
CREATE TABLE `ims_ybo2ov2_distribution` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) DEFAULT '0',
|
||
`name` varchar(20) DEFAULT NULL COMMENT '分销商名称',
|
||
`tel` varchar(20) DEFAULT NULL COMMENT '电话',
|
||
`state` int(11) DEFAULT '1' COMMENT '1待审核2已通过3已拒绝',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`examineAt` int(11) DEFAULT '0' COMMENT '成为分销商时间',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='分销商表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_distribution_bind
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_distribution_bind`;
|
||
CREATE TABLE `ims_ybo2ov2_distribution_bind` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) DEFAULT '0' COMMENT '邀请人id',
|
||
`bindId` int(11) DEFAULT '0' COMMENT '绑定人id',
|
||
`createdAt` int(11) DEFAULT '0' COMMENT '绑定时间',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`twoId` int(11) DEFAULT '0' COMMENT '上级的上级id',
|
||
PRIMARY KEY (`id`),
|
||
KEY `userId` (`userId`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_distribution_order
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_distribution_order`;
|
||
CREATE TABLE `ims_ybo2ov2_distribution_order` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) DEFAULT '0' COMMENT '下级id',
|
||
`distributionId` int(11) DEFAULT '0' COMMENT '分销商用户id',
|
||
`outTradeNo` varchar(50) DEFAULT NULL COMMENT '订单b编号',
|
||
`item` int(11) DEFAULT '1' COMMENT '1.外卖2店内3快餐4收银',
|
||
`type` int(11) DEFAULT '2' COMMENT '1冻结,2正常',
|
||
`money` decimal(10,2) DEFAULT '0.00' COMMENT '佣金',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`entryAt` int(11) DEFAULT '0' COMMENT '入账时间',
|
||
`level` int(11) DEFAULT '1' COMMENT '1.一级2二级',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
PRIMARY KEY (`id`),
|
||
KEY `userId` (`userId`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `item` (`item`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='分销商订单表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_dividend
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_dividend`;
|
||
CREATE TABLE `ims_ybo2ov2_dividend` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(100) NOT NULL COMMENT '活动名称',
|
||
`money` decimal(10,2) NOT NULL COMMENT '红包金额',
|
||
`num` int(11) NOT NULL COMMENT '红包个数',
|
||
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1随机金额,2平均金额',
|
||
`startAt` int(11) NOT NULL COMMENT '开始时间',
|
||
`endAt` int(11) NOT NULL COMMENT '结束时间',
|
||
`payMoney` decimal(10,2) NOT NULL COMMENT '触发金额',
|
||
`createdAt` int(11) NOT NULL COMMENT '创建时间',
|
||
`deleteAt` int(11) NOT NULL COMMENT '删除时间',
|
||
`uniacid` int(11) NOT NULL COMMENT '小程序Id',
|
||
`couponIds` varchar(255) NOT NULL COMMENT '优惠券Id json 串',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='瓜分红包';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_dividend_join
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_dividend_join`;
|
||
CREATE TABLE `ims_ybo2ov2_dividend_join` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`divideId` int(11) DEFAULT NULL COMMENT '瓜分红包活动ID',
|
||
`divideName` varchar(50) DEFAULT NULL COMMENT '瓜分红包活动名称',
|
||
`orderId` int(11) DEFAULT '0' COMMENT '订单id',
|
||
`userId` int(11) DEFAULT NULL,
|
||
`couponIds` varchar(255) DEFAULT NULL COMMENT '优惠券Id',
|
||
`totalNum` int(11) DEFAULT NULL COMMENT '红包总个数',
|
||
`surplusNum` int(11) unsigned DEFAULT NULL COMMENT '剩余个数',
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序ID',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='瓜分红包';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_dividend_receive
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_dividend_receive`;
|
||
CREATE TABLE `ims_ybo2ov2_dividend_receive` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`joinId` int(11) DEFAULT NULL COMMENT '红包参与Id',
|
||
`userId` int(11) DEFAULT NULL COMMENT '领取人ID',
|
||
`couponId` int(11) DEFAULT NULL COMMENT '优惠券ID',
|
||
`createdAt` int(11) DEFAULT NULL COMMENT '创建时间',
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序ID',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='瓜分红包';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_drag
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_drag`;
|
||
CREATE TABLE `ims_ybo2ov2_drag` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`display` tinyint(4) DEFAULT '1' COMMENT '1 显示,2隐藏',
|
||
`name` varchar(30) DEFAULT NULL COMMENT '名称',
|
||
`createdAt` int(11) DEFAULT '0' COMMENT '创建时间',
|
||
`status` tinyint(4) DEFAULT NULL,
|
||
`page` varchar(30) DEFAULT NULL COMMENT '所属页面1首页2个人中心3自定义',
|
||
`body` longtext,
|
||
`client` tinyint(4) DEFAULT '1' COMMENT '1微信小程序,2公众号',
|
||
`uniacid` int(11) DEFAULT '0' COMMENT '小程序ID',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`storeId` int(11) DEFAULT '0' COMMENT '商户ID',
|
||
`sort` int(11) DEFAULT '1' COMMENT '排序',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COMMENT='拖拽数据表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_exchange_code
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_exchange_code`;
|
||
CREATE TABLE `ims_ybo2ov2_exchange_code` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) DEFAULT NULL,
|
||
`startTime` int(11) DEFAULT NULL,
|
||
`endTime` int(11) DEFAULT NULL,
|
||
`stock` int(11) DEFAULT '0',
|
||
`limitType` int(11) DEFAULT '1' COMMENT '1不限制2限制',
|
||
`maxNum` int(11) DEFAULT '0' COMMENT '限制多少',
|
||
`coupon` varchar(255) DEFAULT NULL,
|
||
`code` varchar(20) DEFAULT NULL,
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`display` int(11) DEFAULT '1',
|
||
`isCoupon` int(11) DEFAULT '2' COMMENT '赠送优惠券1开启2关闭',
|
||
`storeId` int(11) DEFAULT '0',
|
||
`salesNum` int(11) DEFAULT '0',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_exchange_code_info
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_exchange_code_info`;
|
||
CREATE TABLE `ims_ybo2ov2_exchange_code_info` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`code` varchar(100) DEFAULT NULL,
|
||
`codeId` int(11) DEFAULT '0',
|
||
`state` int(11) DEFAULT '2' COMMENT '1.核销2未核销',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0' COMMENT '核销时间',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_exchange_code_record
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_exchange_code_record`;
|
||
CREATE TABLE `ims_ybo2ov2_exchange_code_record` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) DEFAULT NULL,
|
||
`codeId` int(11) DEFAULT NULL COMMENT '兑换码id',
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`uniacid` int(11) DEFAULT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_give
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_give`;
|
||
CREATE TABLE `ims_ybo2ov2_give` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) NOT NULL,
|
||
`startTime` int(11) NOT NULL,
|
||
`endTime` int(11) NOT NULL,
|
||
`moneyArr` text NOT NULL COMMENT '优惠数组',
|
||
`item` varchar(50) NOT NULL COMMENT '支持数组 1外卖',
|
||
`week` varchar(255) NOT NULL,
|
||
`storeType` int(11) NOT NULL DEFAULT '1' COMMENT '1.门店可用2.全店通用3.指定门店可用',
|
||
`storeArr` varchar(255) NOT NULL COMMENT '门店数组',
|
||
`timeType` int(11) NOT NULL DEFAULT '1' COMMENT '1.全天',
|
||
`storeId` int(11) NOT NULL DEFAULT '0',
|
||
`createdAt` int(11) NOT NULL DEFAULT '0',
|
||
`changeAt` int(11) NOT NULL DEFAULT '0',
|
||
`deleteAt` int(11) NOT NULL DEFAULT '0',
|
||
`uniacid` int(11) NOT NULL DEFAULT '0',
|
||
`display` int(11) NOT NULL DEFAULT '1',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='满赠活动表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_good_activity
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_good_activity`;
|
||
CREATE TABLE `ims_ybo2ov2_good_activity` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`goodsId` int(11) DEFAULT '0' COMMENT '商品id',
|
||
`type` int(11) DEFAULT '1' COMMENT '1特价2折扣3立减4第二件打折5.买一送一',
|
||
`storeType` int(11) DEFAULT '1' COMMENT '1本店2全店3指定门店',
|
||
`storeArr` varchar(255) DEFAULT NULL COMMENT '指定门店数组',
|
||
`limitType` int(11) DEFAULT '1' COMMENT '1.不限次数2自定义/1.每单2每日',
|
||
`limitNum` int(11) DEFAULT '1' COMMENT '自定义份数',
|
||
`startTime` int(11) DEFAULT '0',
|
||
`endTime` int(11) DEFAULT '0',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`display` int(11) DEFAULT '1',
|
||
`storeId` int(11) DEFAULT '0' COMMENT '商家id',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`activityType` int(11) DEFAULT '1' COMMENT '1商品活动2第二件半价',
|
||
`goodsMoney` decimal(10,2) DEFAULT '0.00' COMMENT '商品特价/折扣/立减',
|
||
`stock` int(11) DEFAULT '0' COMMENT '每日库存',
|
||
`sales` int(11) DEFAULT '0' COMMENT '销量',
|
||
`abolishAt` int(11) DEFAULT '0' COMMENT '废除时间',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `goodsId` (`goodsId`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_good_materia
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_good_materia`;
|
||
CREATE TABLE `ims_ybo2ov2_good_materia` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`materialName` varchar(50) DEFAULT NULL,
|
||
`SalesPrice` decimal(10,2) DEFAULT NULL,
|
||
`SalesStock` int(11) DEFAULT NULL,
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`deleteAt` int(11) DEFAULT NULL,
|
||
`fillType` tinyint(1) DEFAULT '2' COMMENT '是否次日置满',
|
||
`uniacid` int(11) DEFAULT NULL,
|
||
`storeId` int(11) DEFAULT NULL,
|
||
`goodId` int(11) DEFAULT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `metergood` (`goodId`) USING BTREE
|
||
) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8 COMMENT='商品加料关联表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_good_specs
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_good_specs`;
|
||
CREATE TABLE `ims_ybo2ov2_good_specs` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`goodId` int(11) DEFAULT NULL,
|
||
`specsName` varchar(50) DEFAULT NULL,
|
||
`SalesPrice` decimal(10,2) DEFAULT NULL,
|
||
`SalesStock` int(11) DEFAULT NULL,
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`status` tinyint(1) DEFAULT '1',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`fillType` tinyint(1) DEFAULT '2' COMMENT '是否次日置满',
|
||
`crossedPrice` decimal(10,2) DEFAULT NULL COMMENT '划线价格',
|
||
`goodCode` varchar(255) DEFAULT NULL COMMENT '商品编号',
|
||
`costPrice` decimal(10,2) DEFAULT NULL COMMENT '成本价格',
|
||
`uniacid` int(11) DEFAULT NULL,
|
||
`storeId` int(11) DEFAULT NULL,
|
||
`boxMoney` int(11) DEFAULT NULL,
|
||
`goodsType` tinyint(1) DEFAULT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `specsgood` (`goodId`) USING BTREE
|
||
) ENGINE=InnoDB AUTO_INCREMENT=226 DEFAULT CHARSET=utf8 COMMENT='商品规格关联表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_goods_visit
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_goods_visit`;
|
||
CREATE TABLE `ims_ybo2ov2_goods_visit` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`uniacid` int(11) DEFAULT NULL,
|
||
`storeId` int(11) DEFAULT NULL,
|
||
`goodsId` int(11) DEFAULT NULL,
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`ip` varchar(30) DEFAULT NULL,
|
||
`type` tinyint(1) DEFAULT NULL,
|
||
`openId` varchar(50) DEFAULT NULL,
|
||
`userId` int(11) DEFAULT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=308 DEFAULT CHARSET=utf8 COMMENT='商品访问记录表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_group_goods
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_group_goods`;
|
||
CREATE TABLE `ims_ybo2ov2_group_goods` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`sort` int(11) NOT NULL COMMENT '排序',
|
||
`typePid` int(11) DEFAULT NULL,
|
||
`typeId` int(11) DEFAULT NULL COMMENT '分类id',
|
||
`name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '商品名称',
|
||
`body` text COLLATE utf8mb4_unicode_ci COMMENT '详细介绍',
|
||
`icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '商品主图',
|
||
`minNum` int(11) DEFAULT '0' COMMENT '起始值',
|
||
`unit` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '商品单位',
|
||
`price` decimal(10,2) DEFAULT NULL,
|
||
`boxMoney` decimal(10,2) DEFAULT NULL COMMENT '餐盒费',
|
||
`stock` int(11) DEFAULT NULL,
|
||
`fillType` tinyint(1) DEFAULT '0' COMMENT '次日置满',
|
||
`crossedPrice` decimal(10,2) DEFAULT NULL COMMENT '划线价格',
|
||
`costPrice` decimal(10,2) DEFAULT NULL COMMENT '成本价格',
|
||
`goodCode` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
`salesType` tinyint(1) DEFAULT NULL COMMENT '售卖时间类型1全时段售卖2自定义售卖时间',
|
||
`startTime` int(11) DEFAULT NULL,
|
||
`endTime` int(11) DEFAULT NULL,
|
||
`weekDay` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '星期一到星期日的集合',
|
||
`hotsaleType` tinyint(1) DEFAULT '1' COMMENT '是否参与热销排行',
|
||
`aloneType` tinyint(1) DEFAULT '2' COMMENT '单点时不配送',
|
||
`details` text COLLATE utf8mb4_unicode_ci COMMENT '详情',
|
||
`isMember` tinyint(4) DEFAULT '2' COMMENT '1支持会员折扣,2否',
|
||
`maxNum` int(11) DEFAULT '0',
|
||
`salesNum` int(11) DEFAULT '0' COMMENT '销量',
|
||
`goodLabel` int(11) DEFAULT NULL,
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序ID',
|
||
`createdAt` int(11) DEFAULT NULL COMMENT '创建时间',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`isRecommend` tinyint(4) DEFAULT '2' COMMENT '推荐 1是,2否',
|
||
`display` tinyint(41) DEFAULT '1' COMMENT '1 显示,2隐藏 3待上架',
|
||
`required` tinyint(4) DEFAULT '2' COMMENT '必选品 1是,2否',
|
||
`storeId` int(11) DEFAULT '0' COMMENT '门店Id',
|
||
`weekSalesType` tinyint(1) DEFAULT NULL COMMENT '设置星期后1全时段售卖2自定义时间售卖',
|
||
`maxPrice` decimal(10,2) DEFAULT NULL,
|
||
`isSpecs` tinyint(1) DEFAULT '2' COMMENT '1多规格 2为单规格',
|
||
`sourceType` tinyint(1) DEFAULT '1' COMMENT '1系统录入2excel导入',
|
||
`num` int(11) DEFAULT '0',
|
||
`printLabel` int(11) DEFAULT NULL COMMENT '打印标签ID',
|
||
`isAttr` tinyint(1) DEFAULT '2' COMMENT '是否有属性 2无属性 1有属性',
|
||
`isMaterial` tinyint(1) DEFAULT '2' COMMENT '2无加料 1有加料',
|
||
`media` text COLLATE utf8mb4_unicode_ci COMMENT '商品多图片',
|
||
`virtualSales` int(11) DEFAULT '0' COMMENT '虚拟销量',
|
||
`goodsType` tinyint(1) DEFAULT '1' COMMENT '1外卖2店内',
|
||
`discountArr` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '折扣数组',
|
||
`discountOpen` int(11) DEFAULT '2' COMMENT '折扣1开启2关闭',
|
||
`data` text COLLATE utf8mb4_unicode_ci,
|
||
`attrData` text COLLATE utf8mb4_unicode_ci,
|
||
`hoursData` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `pindex` (`typePid`) USING BTREE,
|
||
KEY `tindex` (`typeId`) USING BTREE
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='商品库';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_helps
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_helps`;
|
||
CREATE TABLE `ims_ybo2ov2_helps` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`sort` int(11) DEFAULT NULL,
|
||
`title` varchar(100) DEFAULT NULL,
|
||
`body` text,
|
||
`uniacid` int(11) DEFAULT NULL,
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`changeAt` varchar(255) DEFAULT NULL,
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`display` tinyint(1) DEFAULT '1',
|
||
`otherType` tinyint(1) DEFAULT '1' COMMENT '1帮助中心前台2帮助中心后台3商户动态前台4商户动态后台',
|
||
`item` int(11) DEFAULT '1' COMMENT '1帮助中心2商户动态',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='帮助表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_information
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_information`;
|
||
CREATE TABLE `ims_ybo2ov2_information` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`sort` int(11) DEFAULT NULL,
|
||
`title` varchar(100) DEFAULT NULL,
|
||
`body` text,
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`display` tinyint(1) DEFAULT '1',
|
||
`uniacid` int(11) DEFAULT NULL,
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`introduction` text,
|
||
`type` tinyint(1) DEFAULT '2',
|
||
`views` int(11) DEFAULT '0' COMMENT '浏览量',
|
||
`storeId` int(11) DEFAULT '0',
|
||
`icon` varchar(255) DEFAULT NULL COMMENT '缩略图',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='资讯表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_integral_goods
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_integral_goods`;
|
||
CREATE TABLE `ims_ybo2ov2_integral_goods` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1实物,2虚拟',
|
||
`name` varchar(100) NOT NULL COMMENT '商品名称',
|
||
`stock` int(11) NOT NULL DEFAULT '0' COMMENT '库存',
|
||
`score` int(11) NOT NULL DEFAULT '0' COMMENT '所需积分',
|
||
`money` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '所需余额',
|
||
`isLimit` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1限制,2不限制',
|
||
`num` int(11) NOT NULL DEFAULT '1' COMMENT '限制兑换次数',
|
||
`notice` text NOT NULL COMMENT '兑换须知',
|
||
`createdAt` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
||
`deleteAt` int(11) NOT NULL DEFAULT '0' COMMENT '删除时间',
|
||
`uniacid` int(11) NOT NULL DEFAULT '0' COMMENT '小程序Id',
|
||
`display` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1 显示,2隐藏',
|
||
`convertNum` int(11) NOT NULL DEFAULT '0' COMMENT '兑换数量',
|
||
`balance` decimal(10,2) DEFAULT '0.00' COMMENT '红包金额',
|
||
`icon` varchar(255) NOT NULL COMMENT '商品图片',
|
||
`sort` int(11) NOT NULL DEFAULT '1',
|
||
`typeId` int(11) NOT NULL DEFAULT '0' COMMENT '分类id',
|
||
`price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '市场价',
|
||
`deliveryMoney` decimal(10,2) DEFAULT '0.00' COMMENT '配送费',
|
||
`isHot` int(11) NOT NULL DEFAULT '2' COMMENT '1热门,2否',
|
||
`deliveryMode` varchar(255) DEFAULT NULL COMMENT '配送支持1快递2自提',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='积分商品表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_integral_order
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_integral_order`;
|
||
CREATE TABLE `ims_ybo2ov2_integral_order` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) NOT NULL COMMENT '用户ID',
|
||
`goodsId` int(11) NOT NULL COMMENT '商品ID',
|
||
`receiveName` varchar(30) NOT NULL COMMENT '收货人姓名',
|
||
`receiveTel` varchar(20) NOT NULL COMMENT '收货电话',
|
||
`receiveAddress` varchar(100) NOT NULL COMMENT '收货地址',
|
||
`goodsIcon` varchar(255) DEFAULT NULL COMMENT '商品图片',
|
||
`goodsName` varchar(50) NOT NULL COMMENT '商品名称',
|
||
`goodsType` tinyint(4) NOT NULL DEFAULT '1' COMMENT '商品类型1.实物2红包',
|
||
`convertNum` int(11) NOT NULL DEFAULT '1' COMMENT '兑换数量',
|
||
`score` int(11) NOT NULL DEFAULT '0' COMMENT '支付积分',
|
||
`money` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '支付金额',
|
||
`state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1未付款,2已付款,3已发货,4已完成',
|
||
`logisticsName` varchar(30) NOT NULL COMMENT '物流名称',
|
||
`logisticsCode` varchar(50) NOT NULL COMMENT '物流单号',
|
||
`outTradeNo` varchar(50) NOT NULL COMMENT '订单号',
|
||
`createdAt` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
||
`userDeleteAt` int(11) DEFAULT '0' COMMENT '用户删除时间',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`uniacid` int(11) NOT NULL DEFAULT '0' COMMENT '小程序ID',
|
||
`deliverAt` int(11) NOT NULL DEFAULT '0' COMMENT '发货时间',
|
||
`deliveryMode` int(11) NOT NULL DEFAULT '1' COMMENT '1快递2自提',
|
||
`payAt` int(11) NOT NULL DEFAULT '0',
|
||
`goodsMoney` decimal(10,2) DEFAULT NULL COMMENT '红包金额',
|
||
`payMode` int(11) NOT NULL DEFAULT '1' COMMENT '付款方式 1微信支付2支付宝支付3.百度支付4.公众号支付5.余额支付',
|
||
`selfId` int(11) NOT NULL DEFAULT '0',
|
||
`deliveryMoney` decimal(10,2) DEFAULT NULL COMMENT '配送费',
|
||
`price` decimal(10,2) DEFAULT NULL COMMENT '市场价',
|
||
`selfCode` varchar(20) DEFAULT NULL COMMENT '自提码',
|
||
`note` varchar(100) DEFAULT NULL COMMENT '备注',
|
||
`transaction_id` varchar(100) NOT NULL,
|
||
`subMchId` varchar(50) DEFAULT NULL,
|
||
`completeAt` int(11) DEFAULT '0' COMMENT '完成时间',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='积分订单表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_issue_coupons
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_issue_coupons`;
|
||
CREATE TABLE `ims_ybo2ov2_issue_coupons` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) DEFAULT NULL,
|
||
`startTime` int(11) DEFAULT NULL,
|
||
`endTime` int(11) DEFAULT NULL,
|
||
`bgImg` varchar(255) DEFAULT NULL COMMENT '背景图片',
|
||
`numType` int(11) DEFAULT '1' COMMENT '1.一次2.每月一次3.每周一次',
|
||
`people` int(11) DEFAULT '1' COMMENT '1全部2新用户3会员4指定等级5标签6指定用户',
|
||
`userLabel` varchar(500) DEFAULT NULL,
|
||
`coupon` varchar(500) DEFAULT NULL,
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`display` int(11) DEFAULT '1',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`type` int(11) DEFAULT '1',
|
||
`userArr` text COMMENT '指定用户',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_label
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_label`;
|
||
CREATE TABLE `ims_ybo2ov2_label` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) DEFAULT NULL,
|
||
`type` int(11) DEFAULT '1' COMMENT '1.商品标签',
|
||
`display` tinyint(1) DEFAULT '1' COMMENT '1显示2隐藏',
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序id',
|
||
`storeId` int(11) DEFAULT NULL COMMENT '商家id',
|
||
`sort` int(11) DEFAULT '1' COMMENT '排序',
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`color` varchar(20) DEFAULT NULL COMMENT '颜色',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品标签表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_live
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_live`;
|
||
CREATE TABLE `ims_ybo2ov2_live` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`anchor_name` varchar(100) NOT NULL,
|
||
`cover_img` varchar(255) NOT NULL,
|
||
`end_time` varchar(20) NOT NULL,
|
||
`goods` varchar(255) NOT NULL,
|
||
`live_status` int(11) NOT NULL,
|
||
`name` varchar(100) NOT NULL,
|
||
`roomid` int(11) NOT NULL,
|
||
`share_img` varchar(255) NOT NULL,
|
||
`start_time` varchar(20) NOT NULL,
|
||
`uniacid` int(11) NOT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COMMENT='直播表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_live_goods
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_live_goods`;
|
||
CREATE TABLE `ims_ybo2ov2_live_goods` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`goodsId` int(11) NOT NULL,
|
||
`goodsIdStr` varchar(100) NOT NULL,
|
||
`name` varchar(100) NOT NULL,
|
||
`onShelves` int(11) NOT NULL,
|
||
`price` varchar(10) NOT NULL,
|
||
`price2` varchar(10) NOT NULL,
|
||
`priceType` int(11) NOT NULL,
|
||
`smallStoreGoodSoure` varchar(10) NOT NULL,
|
||
`thirdPartyAppid` varchar(32) NOT NULL,
|
||
`thirdPartyTag` varchar(10) NOT NULL,
|
||
`url` varchar(255) NOT NULL,
|
||
`vendorGoodsKey` varchar(255) NOT NULL,
|
||
`coverImgUrl` varchar(255) NOT NULL,
|
||
`status` int(11) NOT NULL,
|
||
`uniacid` int(11) NOT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='直播商品表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_marketing
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_marketing`;
|
||
CREATE TABLE `ims_ybo2ov2_marketing` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`storeId` int(11) DEFAULT '0',
|
||
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '活动类型,1新客立减',
|
||
`data` text NOT NULL,
|
||
`useType` varchar(255) DEFAULT NULL COMMENT '适用场景',
|
||
`name` varchar(255) DEFAULT NULL,
|
||
`storeType` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1.本店2.全部门店3指定,4指定商户分类ID',
|
||
`storeArr` varchar(255) DEFAULT NULL COMMENT '门店id数组',
|
||
`storeTypeId` varchar(255) DEFAULT NULL COMMENT '门店分类数组',
|
||
`display` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1显示',
|
||
`item` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1平台创建,2商户创建',
|
||
`createdAt` int(11) NOT NULL,
|
||
`startTime` int(11) NOT NULL DEFAULT '0' COMMENT '开始时间',
|
||
`endTime` int(11) NOT NULL DEFAULT '0' COMMENT '结束时间',
|
||
`abolishAt` int(11) NOT NULL DEFAULT '0' COMMENT '废除时间',
|
||
`deleteAt` int(11) NOT NULL DEFAULT '0' COMMENT '删除时间戳',
|
||
`uniacid` int(11) NOT NULL,
|
||
`isEnroll` tinyint(4) NOT NULL DEFAULT '2' COMMENT '报名1是,2否',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `storeId` (`storeId`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='活动营销表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_material
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_material`;
|
||
CREATE TABLE `ims_ybo2ov2_material` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '物料名称',
|
||
`createdAt` int(11) DEFAULT NULL COMMENT '创建时间',
|
||
`changeAt` int(11) DEFAULT NULL COMMENT '修改时间',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`display` tinyint(1) DEFAULT '1' COMMENT '1显示,2隐藏',
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序ID',
|
||
`storeId` int(11) NOT NULL DEFAULT '0',
|
||
`sort` int(11) NOT NULL DEFAULT '1' COMMENT '排序',
|
||
`price` decimal(10,2) DEFAULT NULL,
|
||
`stock` int(10) DEFAULT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='加料表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_member
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_member`;
|
||
CREATE TABLE `ims_ybo2ov2_member` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`openId` varchar(100) NOT NULL,
|
||
`userName` varchar(30) DEFAULT NULL COMMENT '昵称',
|
||
`userTel` varchar(20) DEFAULT NULL COMMENT '手机号',
|
||
`portrait` varchar(255) DEFAULT NULL COMMENT '头像',
|
||
`createdAt` int(11) DEFAULT '0' COMMENT '创建时间',
|
||
`changeAt` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
||
`bindType` tinyint(4) DEFAULT NULL COMMENT '1微信小程序2微信公众号3支付宝小程序4百度小程序',
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序ID',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`isBlack` tinyint(4) DEFAULT '2' COMMENT '1拉黑,2否',
|
||
`realName` varchar(30) DEFAULT NULL COMMENT '真实姓名',
|
||
`birthday` varchar(20) DEFAULT NULL COMMENT '生日',
|
||
`sex` varchar(10) DEFAULT NULL,
|
||
`WeChatCard` int(11) DEFAULT '2' COMMENT '微信卡包 1激活2未激活',
|
||
`WeChatCardCode` varchar(255) DEFAULT NULL COMMENT '微信会员卡卡号',
|
||
`WeChatCardId` varchar(255) DEFAULT NULL COMMENT '微信会员卡id',
|
||
`wechatOpenId` varchar(50) DEFAULT NULL COMMENT '公众号openId',
|
||
`wechatUniacid` int(11) DEFAULT NULL,
|
||
`vipEndTime` int(11) DEFAULT '0' COMMENT '会员到期时间',
|
||
`vipCode` varchar(50) DEFAULT NULL COMMENT '会员卡号',
|
||
`balance` decimal(10,2) DEFAULT '0.00',
|
||
`integral` int(11) DEFAULT '0',
|
||
`growth` int(11) DEFAULT '0' COMMENT '成长值',
|
||
`browseStoreId` int(11) DEFAULT '0' COMMENT '上次浏览的店铺',
|
||
`labelId` int(11) DEFAULT '0' COMMENT '标签id',
|
||
`vipLabel` int(11) DEFAULT NULL,
|
||
`commission` decimal(10,2) NOT NULL COMMENT '佣金',
|
||
`bonus` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '奖励金',
|
||
PRIMARY KEY (`id`),
|
||
UNIQUE KEY `openid` (`openId`) USING BTREE,
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='用户表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_member_bind
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_member_bind`;
|
||
CREATE TABLE `ims_ybo2ov2_member_bind` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) DEFAULT NULL,
|
||
`storeId` int(11) DEFAULT NULL,
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`openId` varchar(50) DEFAULT NULL,
|
||
`uniacid` int(11) DEFAULT NULL,
|
||
`bindType` tinyint(1) DEFAULT '1' COMMENT '用户来源 1 小程序',
|
||
`balance` decimal(10,2) DEFAULT NULL,
|
||
`integral` int(11) DEFAULT NULL,
|
||
`isBlack` tinyint(1) DEFAULT '2' COMMENT '1拉黑,2否',
|
||
`display` tinyint(1) DEFAULT '1',
|
||
`userTel` varchar(20) DEFAULT NULL,
|
||
`vipLabel` int(11) DEFAULT NULL,
|
||
`sourceType` tinyint(1) DEFAULT '1' COMMENT '2为会员导入',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=119 DEFAULT CHARSET=utf8 COMMENT='用户门店绑定表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_member_label
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_member_label`;
|
||
CREATE TABLE `ims_ybo2ov2_member_label` (
|
||
`id` int(10) NOT NULL AUTO_INCREMENT,
|
||
`labelName` varchar(50) DEFAULT NULL COMMENT '会员标签名称',
|
||
`status` tinyint(1) DEFAULT '1' COMMENT '会员状态1正常2删除',
|
||
`display` tinyint(1) DEFAULT NULL,
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT NULL,
|
||
`sort` int(11) DEFAULT NULL,
|
||
`storeId` int(11) DEFAULT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='会员标签表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_mention_point
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_mention_point`;
|
||
CREATE TABLE `ims_ybo2ov2_mention_point` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(50) DEFAULT NULL,
|
||
`address` varchar(255) DEFAULT NULL,
|
||
`lat` varchar(255) DEFAULT NULL,
|
||
`lng` varchar(255) DEFAULT NULL,
|
||
`display` int(11) DEFAULT '1' COMMENT '1显示2隐藏',
|
||
`createdAt` int(11) DEFAULT '0' COMMENT '添加时间',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`tel` varchar(25) DEFAULT NULL COMMENT '联系电话',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`linkMan` varchar(20) DEFAULT NULL COMMENT '联系人',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='自提点';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_merchant_member
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_merchant_member`;
|
||
CREATE TABLE `ims_ybo2ov2_merchant_member` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`openId` varchar(100) NOT NULL,
|
||
`userName` varchar(30) DEFAULT NULL COMMENT '昵称',
|
||
`userTel` varchar(20) DEFAULT NULL COMMENT '手机号',
|
||
`level` tinyint(1) DEFAULT NULL,
|
||
`portrait` varchar(255) DEFAULT NULL COMMENT '头像',
|
||
`createdAt` int(11) DEFAULT NULL COMMENT '创建时间',
|
||
`changeAt` int(11) NOT NULL COMMENT '修改时间',
|
||
`bindType` tinyint(4) DEFAULT NULL COMMENT '1微信小程序2微信公众号3支付宝小程序4百度小程序',
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序ID',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`isBlack` tinyint(4) DEFAULT '2' COMMENT '1拉黑,2否',
|
||
`rankId` int(11) DEFAULT '0' COMMENT '等级Id',
|
||
`vipEndTime` int(11) DEFAULT '0' COMMENT '会员到期时间',
|
||
`realName` varchar(30) DEFAULT NULL COMMENT '真实姓名',
|
||
`birthday` varchar(20) DEFAULT NULL COMMENT '生日',
|
||
`sex` varchar(10) DEFAULT NULL,
|
||
`WeChatCard` int(11) DEFAULT '2' COMMENT '微信卡包 1激活2未激活',
|
||
`WeChatCardCode` varchar(255) DEFAULT NULL COMMENT '微信会员卡卡号',
|
||
`WeChatCardId` varchar(255) DEFAULT NULL COMMENT '微信会员卡id',
|
||
`wechatOpenId` varchar(50) DEFAULT NULL COMMENT '公众号openId',
|
||
`wechatUniacid` int(11) DEFAULT NULL,
|
||
`status` tinyint(1) DEFAULT '1' COMMENT '1正常 2删除',
|
||
`sourceType` tinyint(1) DEFAULT '1' COMMENT '2excel文件导入的客户',
|
||
`vipCode` varchar(50) DEFAULT NULL COMMENT '会员卡号',
|
||
`balance` decimal(10,2) DEFAULT NULL,
|
||
`integral` int(11) DEFAULT NULL,
|
||
`growth` int(11) DEFAULT '0' COMMENT '成长值',
|
||
`vipLabel` int(11) NOT NULL,
|
||
`userType` tinyint(1) DEFAULT '1' COMMENT '用户来源1微信小程序',
|
||
`browseStoreId` int(11) DEFAULT '0' COMMENT '上次浏览的店铺',
|
||
`login_token` varchar(255) DEFAULT NULL COMMENT '登录票据',
|
||
`bonus` decimal(10,2) DEFAULT '0.00' COMMENT '奖励金',
|
||
`commission` decimal(10,2) DEFAULT '0.00' COMMENT '佣金',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='用户表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_message
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_message`;
|
||
CREATE TABLE `ims_ybo2ov2_message` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`tel` varchar(20) NOT NULL COMMENT '电话',
|
||
`note` varchar(20) DEFAULT NULL COMMENT '备注',
|
||
`storeId` int(11) NOT NULL COMMENT '商家id',
|
||
`uniacid` int(11) NOT NULL,
|
||
`changeAt` int(11) NOT NULL COMMENT '修改时间',
|
||
`createdAt` int(11) NOT NULL COMMENT '创建时间',
|
||
`deleteAt` int(11) NOT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='短信';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_nav
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_nav`;
|
||
CREATE TABLE `ims_ybo2ov2_nav` (
|
||
`id` int(10) NOT NULL AUTO_INCREMENT,
|
||
`c_name` varchar(50) DEFAULT NULL,
|
||
`a_name` varchar(50) DEFAULT NULL,
|
||
`nav_name` varchar(50) DEFAULT NULL,
|
||
`pid` tinyint(1) DEFAULT NULL,
|
||
`status` tinyint(1) DEFAULT NULL,
|
||
`dt_operdate` datetime DEFAULT NULL,
|
||
`item` tinyint(1) DEFAULT NULL COMMENT '二三级菜单标识',
|
||
`icon` varchar(255) DEFAULT NULL,
|
||
`hot` varchar(255) DEFAULT '0',
|
||
`sort` int(11) DEFAULT NULL COMMENT '排序',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8 COMMENT='权限菜单表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_new
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_new`;
|
||
CREATE TABLE `ims_ybo2ov2_new` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) DEFAULT NULL COMMENT '活动名称',
|
||
`startTime` int(11) DEFAULT NULL,
|
||
`endTime` int(11) DEFAULT NULL,
|
||
`people` int(11) DEFAULT '1' COMMENT '1全部',
|
||
`isBalance` int(11) DEFAULT '2' COMMENT '赠送余额1开启2关闭',
|
||
`balance` decimal(10,2) DEFAULT '0.00' COMMENT '余额',
|
||
`isIntegral` int(11) DEFAULT '2' COMMENT '赠送积分1开启2关闭',
|
||
`integral` int(11) DEFAULT '0' COMMENT '赠送积分',
|
||
`isGrowth` int(11) DEFAULT '2' COMMENT '赠送成长值 1开启2关闭',
|
||
`growth` int(11) DEFAULT '0',
|
||
`isCoupon` int(11) DEFAULT '2' COMMENT '赠送优惠券1开启2关闭',
|
||
`coupon` varchar(255) DEFAULT NULL COMMENT '优惠券',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`display` int(11) DEFAULT '1',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`icon` varchar(255) DEFAULT NULL COMMENT '背景图片',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='新客专享';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_new_reduction
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_new_reduction`;
|
||
CREATE TABLE `ims_ybo2ov2_new_reduction` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) NOT NULL COMMENT '活动名称',
|
||
`startTime` int(11) NOT NULL COMMENT '开始时间',
|
||
`endTime` int(11) NOT NULL COMMENT '结束时间',
|
||
`money` decimal(10,2) NOT NULL COMMENT '立减金额',
|
||
`useType` varchar(50) DEFAULT NULL COMMENT '1外卖',
|
||
`useStore` varchar(255) NOT NULL COMMENT '指定门店数组',
|
||
`createdAt` int(11) NOT NULL,
|
||
`changeAt` int(11) NOT NULL,
|
||
`deleteAt` int(11) NOT NULL,
|
||
`storeId` int(11) NOT NULL COMMENT '门店id',
|
||
`uniacid` int(11) NOT NULL,
|
||
`display` int(11) NOT NULL DEFAULT '1' COMMENT '1.显示2隐藏',
|
||
`item` varchar(50) DEFAULT NULL COMMENT '1外',
|
||
`undertake` decimal(10,2) DEFAULT '0.00' COMMENT '商户承担',
|
||
`subsidy` decimal(10,2) DEFAULT '0.00' COMMENT '平台承担',
|
||
`storeType` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1全部商户,2指定商户,3指定分类',
|
||
`storeTypeId` varchar(255) DEFAULT NULL COMMENT '指定商户分类Id',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='新客立减';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_notice
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_notice`;
|
||
CREATE TABLE `ims_ybo2ov2_notice` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`title` varchar(255) DEFAULT NULL,
|
||
`body` text,
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`display` tinyint(1) DEFAULT '1',
|
||
`noticeType` tinyint(1) unsigned zerofill DEFAULT '1' COMMENT '1前台公告公告2后台公告',
|
||
`uniacid` int(11) DEFAULT NULL,
|
||
`sort` int(11) DEFAULT NULL,
|
||
`changeAt` int(11) DEFAULT NULL,
|
||
`introduction` text,
|
||
`storeId` int(11) DEFAULT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='后台公告帮助表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_old_with_new
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_old_with_new`;
|
||
CREATE TABLE `ims_ybo2ov2_old_with_new` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) DEFAULT NULL COMMENT '活动名称',
|
||
`startTime` int(11) DEFAULT '0',
|
||
`endTime` int(11) DEFAULT '0',
|
||
`type` int(11) DEFAULT '1' COMMENT '1.无门槛2下单次数3消费金额',
|
||
`rewardArr` varchar(500) DEFAULT NULL COMMENT '奖励数组',
|
||
`money` decimal(10,2) DEFAULT '0.00',
|
||
`num` int(11) DEFAULT '0',
|
||
`shareTitle` varchar(50) DEFAULT NULL COMMENT '分享标题',
|
||
`shareIcon` varchar(255) DEFAULT NULL COMMENT '分享图标',
|
||
`shareRule` text COMMENT '分享规则',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`display` int(11) DEFAULT '1' COMMENT '1显示2隐藏',
|
||
`isCoupon` int(11) DEFAULT '2' COMMENT '赠送优惠券1开启2关闭',
|
||
`couponId` varchar(100) DEFAULT NULL COMMENT '优惠券数组',
|
||
`isBalance` int(11) DEFAULT '2' COMMENT '赠送余额1.开启2关闭',
|
||
`balance` decimal(10,2) DEFAULT '0.00' COMMENT '余额',
|
||
`isIntegral` int(11) DEFAULT '2' COMMENT '赠送积分1开启2关闭',
|
||
`integral` int(11) DEFAULT '0' COMMENT '赠送积分',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='老带新活动';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_old_with_new_bind
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_old_with_new_bind`;
|
||
CREATE TABLE `ims_ybo2ov2_old_with_new_bind` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) DEFAULT '0' COMMENT '邀请人id',
|
||
`bindId` int(11) DEFAULT '0' COMMENT '绑定人id',
|
||
`createdAt` int(11) DEFAULT '0' COMMENT '绑定时间',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`state` int(11) DEFAULT '2' COMMENT '1.已完成2未完成',
|
||
`completeAt` int(11) DEFAULT '0' COMMENT '完成时间',
|
||
`actId` int(11) DEFAULT '0' COMMENT '活动id',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='老带新绑定';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_old_with_new_detailed
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_old_with_new_detailed`;
|
||
CREATE TABLE `ims_ybo2ov2_old_with_new_detailed` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) DEFAULT '0',
|
||
`actId` int(11) DEFAULT '0' COMMENT '活动id',
|
||
`money` decimal(10,2) DEFAULT '0.00' COMMENT '奖励金额',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`people` int(11) DEFAULT '0' COMMENT '人数',
|
||
`integral` int(11) DEFAULT '0' COMMENT '积分',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='奖励记录';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_openId
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_openId`;
|
||
CREATE TABLE `ims_ybo2ov2_openId` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`storeId` int(11) DEFAULT NULL,
|
||
`openId` varchar(50) DEFAULT NULL,
|
||
`userName` varchar(30) DEFAULT NULL,
|
||
`portrait` varchar(255) DEFAULT NULL,
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`uniacid` int(11) DEFAULT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='公众号openId';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_order_goods
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_order_goods`;
|
||
CREATE TABLE `ims_ybo2ov2_order_goods` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`orderId` int(11) DEFAULT NULL COMMENT '订单ID',
|
||
`goodsId` int(11) DEFAULT NULL COMMENT '商品ID',
|
||
`name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '菜品名称',
|
||
`money` decimal(10,2) DEFAULT NULL COMMENT '菜品单价',
|
||
`num` int(11) DEFAULT NULL COMMENT '菜品数量',
|
||
`data` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '规格数据',
|
||
`icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '菜品主图',
|
||
`storeId` int(11) DEFAULT NULL COMMENT '门店ID',
|
||
`createdAt` int(11) DEFAULT NULL COMMENT '创建时间',
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序ID',
|
||
`groupId` int(11) NOT NULL COMMENT '组合ID',
|
||
`material` text COLLATE utf8mb4_unicode_ci COMMENT '加料字符串',
|
||
`attribute` text COLLATE utf8mb4_unicode_ci COMMENT '属性字符串',
|
||
`boxMoney` decimal(10,2) NOT NULL COMMENT '单个商品包装费',
|
||
`isChange` int(11) DEFAULT '2' COMMENT '换购 1.是2不是',
|
||
`item` int(11) DEFAULT '1' COMMENT '1外卖2店内3快餐',
|
||
`addType` int(11) DEFAULT '2' COMMENT '1.加菜2普通',
|
||
`addNum` int(11) DEFAULT '0' COMMENT '加菜次数',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `orderId` (`orderId`),
|
||
KEY `goodsId` (`goodsId`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='订单商品表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_order_grant_coupon
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_order_grant_coupon`;
|
||
CREATE TABLE `ims_ybo2ov2_order_grant_coupon` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) DEFAULT NULL COMMENT '活动名称',
|
||
`startTime` int(11) DEFAULT NULL,
|
||
`endTime` int(11) DEFAULT NULL,
|
||
`money` decimal(10,2) DEFAULT NULL,
|
||
`fullMoney` decimal(10,2) DEFAULT NULL,
|
||
`timeType` int(11) DEFAULT '1' COMMENT '1.固定日期2领券后几日有效',
|
||
`isNextDay` int(11) DEFAULT '2' COMMENT '1次日起',
|
||
`day` int(11) DEFAULT '1' COMMENT '几日有效',
|
||
`useEndTime` int(11) DEFAULT NULL COMMENT '使用结束时间',
|
||
`useStartTime` int(11) DEFAULT '0' COMMENT '使用开始时间',
|
||
`storeType` int(11) DEFAULT '1' COMMENT '1.本店可用2全店通用3.指定门店',
|
||
`storeArr` varchar(255) DEFAULT NULL COMMENT '指定门店数组',
|
||
`people` int(11) DEFAULT '1' COMMENT '1.全部2会员3标签',
|
||
`userLabel` varchar(255) DEFAULT NULL COMMENT '标签数组',
|
||
`limitType` int(11) DEFAULT '1' COMMENT '1不限次数2每天限领',
|
||
`maxNum` int(11) DEFAULT '1' COMMENT '每日限领',
|
||
`grantNum` int(11) DEFAULT '1' COMMENT '发放数量',
|
||
`orderMoney` decimal(10,2) DEFAULT '0.00' COMMENT '订单满多少可领',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`display` int(11) DEFAULT '1',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`storeId` int(11) DEFAULT '0',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_print
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_print`;
|
||
CREATE TABLE `ims_ybo2ov2_print` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`storeId` int(11) DEFAULT NULL COMMENT '门店ID',
|
||
`name` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
`type` int(11) NOT NULL COMMENT '1.易联云2.飞蛾',
|
||
`printMode` tinyint(4) DEFAULT NULL COMMENT '打印方式 1整单,2按分组打印,3一菜一单',
|
||
`pattern` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '打印模式数组',
|
||
`data` text COLLATE utf8mb4_unicode_ci COMMENT '打印机配置信息(json,机型+设备配置)',
|
||
`categoryIds` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '分类Ids',
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序ID',
|
||
`display` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1 显示,2隐藏',
|
||
`createdAt` int(11) DEFAULT NULL COMMENT '创建时间\n',
|
||
`changeAt` int(11) DEFAULT NULL COMMENT '修改时间',
|
||
`deleteAt` int(11) NOT NULL DEFAULT '0',
|
||
`label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '商品打印标签',
|
||
`support` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1外卖,2堂食,3快餐,4收银',
|
||
PRIMARY KEY (`id`),
|
||
KEY `storeId` (`storeId`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='打印机';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_region
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_region`;
|
||
CREATE TABLE `ims_ybo2ov2_region` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(255) DEFAULT NULL COMMENT '区域名称',
|
||
`userName` varchar(255) DEFAULT NULL COMMENT '真实姓名',
|
||
`userTel` varchar(50) DEFAULT NULL COMMENT '手机号',
|
||
`passWord` varchar(255) DEFAULT NULL COMMENT '登录密码',
|
||
`lat` varchar(50) DEFAULT NULL,
|
||
`lng` varchar(50) DEFAULT NULL,
|
||
`display` tinyint(1) DEFAULT '1' COMMENT '是否启用',
|
||
`data` text,
|
||
`createAt` int(11) DEFAULT NULL,
|
||
`sort` int(11) DEFAULT NULL,
|
||
`changeAt` int(11) DEFAULT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_reminder
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_reminder`;
|
||
CREATE TABLE `ims_ybo2ov2_reminder` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) NOT NULL,
|
||
`orderId` int(11) NOT NULL,
|
||
`createdAt` int(11) NOT NULL COMMENT '催单时间',
|
||
`uniacid` int(11) NOT NULL,
|
||
`reply` varchar(50) DEFAULT NULL COMMENT '商家回复',
|
||
`storeId` int(11) NOT NULL COMMENT '商家id',
|
||
`state` int(11) NOT NULL DEFAULT '2' COMMENT '1.已回复2未回复',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COMMENT='催单列表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_roll_bag
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_roll_bag`;
|
||
CREATE TABLE `ims_ybo2ov2_roll_bag` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(50) DEFAULT NULL,
|
||
`startTime` int(11) DEFAULT '0',
|
||
`endTime` int(11) DEFAULT '0',
|
||
`coupon` text COMMENT '代金券数组',
|
||
`icon` varchar(255) DEFAULT NULL COMMENT '封面图',
|
||
`media` text COMMENT '详情图片',
|
||
`price` decimal(10,2) DEFAULT '0.00' COMMENT '原价',
|
||
`money` decimal(10,2) DEFAULT '0.00',
|
||
`stock` int(11) DEFAULT '0' COMMENT '库存',
|
||
`dayNum` int(11) DEFAULT '0' COMMENT '每人每日购买',
|
||
`days` int(11) DEFAULT '0' COMMENT '购买后多少天有效',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`storeId` int(11) DEFAULT '0',
|
||
`display` int(11) DEFAULT '1' COMMENT '1.显示2隐藏',
|
||
`type` int(11) DEFAULT '1' COMMENT '1代金券',
|
||
`salesNum` int(11) DEFAULT '0' COMMENT '销量',
|
||
`couponNum` int(11) DEFAULT '0' COMMENT '优惠券数量',
|
||
`details` text,
|
||
PRIMARY KEY (`id`),
|
||
KEY `storeId` (`storeId`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='券包';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_roll_bag_order
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_roll_bag_order`;
|
||
CREATE TABLE `ims_ybo2ov2_roll_bag_order` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`bagId` int(11) DEFAULT NULL,
|
||
`userId` int(11) DEFAULT NULL,
|
||
`storeId` int(11) DEFAULT NULL,
|
||
`coupon` text,
|
||
`money` decimal(10,2) DEFAULT '0.00',
|
||
`outTradeNo` varchar(50) DEFAULT NULL COMMENT '订单号',
|
||
`state` int(11) DEFAULT '1' COMMENT '1未支付2已支付',
|
||
`days` int(11) DEFAULT '0' COMMENT '购买后多少天有效',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`transaction_id` varchar(100) DEFAULT NULL,
|
||
`subMchId` varchar(50) DEFAULT NULL,
|
||
`payType` int(11) DEFAULT '1' COMMENT '付款模式 1普通模式,2服务商模式',
|
||
`payMode` int(11) DEFAULT '1' COMMENT '付款方式 1微信支付5余额支付',
|
||
`payAt` int(11) DEFAULT '0',
|
||
`num` int(11) DEFAULT '1' COMMENT '购买数量',
|
||
`bagIcon` varchar(255) DEFAULT NULL COMMENT '券包封面图',
|
||
`bagName` varchar(20) DEFAULT NULL COMMENT '券包活动名称',
|
||
PRIMARY KEY (`id`),
|
||
KEY `userId` (`userId`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `storeId` (`storeId`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='券包订单';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_shop_car
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_shop_car`;
|
||
CREATE TABLE `ims_ybo2ov2_shop_car` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) DEFAULT NULL COMMENT '发起人用户id',
|
||
`sonId` int(11) DEFAULT NULL COMMENT '多人点餐子用户id',
|
||
`storeId` int(11) DEFAULT NULL COMMENT '商家id',
|
||
`tableId` int(11) DEFAULT '0' COMMENT '桌子id',
|
||
`goodsId` int(11) DEFAULT NULL COMMENT '商品id',
|
||
`groupId` int(11) DEFAULT NULL COMMENT '规格组合id',
|
||
`name` varchar(20) DEFAULT NULL COMMENT '商品名称',
|
||
`icon` varchar(500) DEFAULT NULL COMMENT '商品图片',
|
||
`num` int(11) DEFAULT NULL COMMENT '数量',
|
||
`material` varchar(255) DEFAULT NULL,
|
||
`boxMoney` decimal(10,2) DEFAULT NULL,
|
||
`money` decimal(10,2) DEFAULT NULL COMMENT '金额',
|
||
`item` int(11) DEFAULT NULL COMMENT '1.外卖2店内3快餐',
|
||
`materialIds` varchar(20) DEFAULT NULL,
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`groupName` varchar(50) DEFAULT NULL COMMENT '规格字符串',
|
||
`materialName` varchar(50) DEFAULT NULL COMMENT '加料字符串',
|
||
`uniacid` int(11) DEFAULT NULL,
|
||
`originalMoney` decimal(10,2) DEFAULT NULL COMMENT '原始价格',
|
||
`attribute` text COMMENT '属性字符串',
|
||
`materialMoney` decimal(10,2) DEFAULT NULL,
|
||
`discountType` int(1) DEFAULT '0' COMMENT '1.特价2折扣3立减4第二件折扣5买一送一',
|
||
PRIMARY KEY (`id`),
|
||
KEY `user_index` (`userId`) USING BTREE,
|
||
KEY `uni_index` (`uniacid`) USING BTREE,
|
||
KEY `store_index` (`storeId`) USING BTREE
|
||
) ENGINE=InnoDB AUTO_INCREMENT=1025 DEFAULT CHARSET=utf8 COMMENT='购物车表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_site_set
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_site_set`;
|
||
CREATE TABLE `ims_ybo2ov2_site_set` (
|
||
`id` int(10) NOT NULL AUTO_INCREMENT,
|
||
`status` tinyint(1) DEFAULT NULL COMMENT '站点状态',
|
||
`site_title` varchar(100) DEFAULT NULL COMMENT '站点标题',
|
||
`site_keyword` varchar(255) DEFAULT NULL COMMENT '站点关键词',
|
||
`site_description` varchar(255) DEFAULT NULL COMMENT '站点简介',
|
||
`site_image` varchar(255) DEFAULT NULL COMMENT '站点图片',
|
||
`site_backgroundpicture` varchar(255) DEFAULT NULL COMMENT '站点背景图片',
|
||
`dt_operdate` datetime DEFAULT NULL COMMENT '写入时间',
|
||
`up_operdate` datetime DEFAULT NULL COMMENT '更新时间',
|
||
`phone` varchar(255) DEFAULT NULL COMMENT '站点绑定手机号',
|
||
`site_type` varchar(255) DEFAULT NULL COMMENT '服务类型1商业版',
|
||
`authorization_type` varchar(255) DEFAULT '0' COMMENT '授权状态',
|
||
`domain_url` varchar(100) DEFAULT NULL COMMENT '站点域名',
|
||
`domain_ip` varchar(30) DEFAULT NULL COMMENT '站点IP',
|
||
`domain_key` varchar(50) DEFAULT NULL COMMENT '通讯密钥',
|
||
`domain_endtime` datetime DEFAULT NULL COMMENT '到期时间',
|
||
`copyright` varchar(255) DEFAULT NULL COMMENT '版权信息',
|
||
`copyright_str` varchar(255) DEFAULT NULL COMMENT '附加的版权信息',
|
||
`record_number` varchar(50) DEFAULT NULL COMMENT '备案号',
|
||
`test` varchar(255) DEFAULT NULL,
|
||
`site_logo` varchar(255) DEFAULT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='独立版本管理后台系统设置表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_spec
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_spec`;
|
||
CREATE TABLE `ims_ybo2ov2_spec` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '规格名称',
|
||
`display` tinyint(4) DEFAULT '1' COMMENT '1 显示,2隐藏',
|
||
`createdAt` int(11) DEFAULT NULL COMMENT '创建时间',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序ID',
|
||
`sort` int(11) DEFAULT NULL COMMENT '排序',
|
||
`storeId` int(11) DEFAULT '0',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `store_index` (`storeId`) USING BTREE
|
||
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='规格表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_store
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_store`;
|
||
CREATE TABLE `ims_ybo2ov2_store` (
|
||
`id` int(10) NOT NULL AUTO_INCREMENT,
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序id',
|
||
`name` varchar(20) DEFAULT NULL COMMENT '门店名称',
|
||
`sort` int(11) NOT NULL DEFAULT '1' COMMENT '排序',
|
||
`icon` varchar(255) DEFAULT NULL COMMENT '门店logo',
|
||
`media` text COMMENT '门店图片',
|
||
`license` text COMMENT '营业执照',
|
||
`cityId` int(11) NOT NULL DEFAULT '0' COMMENT '城市id',
|
||
`provinceId` int(11) NOT NULL DEFAULT '0' COMMENT '省id',
|
||
`zoneId` int(11) NOT NULL DEFAULT '0' COMMENT '区域id',
|
||
`lat` varchar(20) DEFAULT NULL,
|
||
`lng` varchar(20) DEFAULT NULL,
|
||
`areaId` int(11) NOT NULL DEFAULT '0' COMMENT '区域id',
|
||
`linkMan` varchar(20) DEFAULT NULL COMMENT '联系人',
|
||
`storeTel` varchar(20) DEFAULT NULL COMMENT '电话',
|
||
`storeLinkMan` varchar(20) NOT NULL,
|
||
`storeOpen` int(11) NOT NULL DEFAULT '1' COMMENT '1营业2休息',
|
||
`isMain` int(11) NOT NULL DEFAULT '2' COMMENT '1.主门店2.附门店3普通门店',
|
||
`address` varchar(255) DEFAULT NULL COMMENT '地址',
|
||
`display` int(11) NOT NULL DEFAULT '1' COMMENT '1显示2隐藏',
|
||
`bindTel` varchar(20) DEFAULT NULL,
|
||
`foodRecords` text COMMENT '食品安全档案',
|
||
`timeArr` varchar(255) DEFAULT NULL COMMENT '营业时间',
|
||
`timeType` int(11) NOT NULL DEFAULT '1' COMMENT '1.24小时2.自定义时间',
|
||
`mainDishes` varchar(20) DEFAULT NULL COMMENT '主营菜品',
|
||
`perCapita` decimal(10,2) DEFAULT NULL COMMENT '人均',
|
||
`introduction` varchar(255) DEFAULT NULL COMMENT '简介',
|
||
`createdAt` int(11) NOT NULL COMMENT '创建时间',
|
||
`deleteAt` int(11) NOT NULL COMMENT '删除时间',
|
||
`changeAt` int(11) NOT NULL COMMENT '修改时间',
|
||
`type` int(11) NOT NULL DEFAULT '1' COMMENT '1直营店2加盟店',
|
||
`service` text COMMENT '商家服务',
|
||
`environment` text COMMENT '商家环境',
|
||
`label` varchar(100) DEFAULT NULL COMMENT '店铺标签',
|
||
`judgeOpen` tinyint(1) DEFAULT '1' COMMENT '门店营业状态1营业中2非营业时间',
|
||
`receiveStatus` tinyint(255) DEFAULT '1' COMMENT '自动接单1开启2关闭',
|
||
`outSales` int(11) NOT NULL DEFAULT '0' COMMENT '外卖销量',
|
||
`inSales` int(11) DEFAULT '0' COMMENT '店内销量',
|
||
`storeNumber` varchar(20) DEFAULT NULL COMMENT '门店编号',
|
||
`eleStoreId` int(11) DEFAULT '0' COMMENT '饿了么商家id',
|
||
`pid` int(11) DEFAULT '0' COMMENT '上级门店id',
|
||
`endTime` int(11) DEFAULT '0' COMMENT '到期时间',
|
||
`mealId` int(11) DEFAULT '0' COMMENT '商家套餐id',
|
||
`item` int(11) DEFAULT '1' COMMENT '1外卖2酒店',
|
||
`power` varchar(255) DEFAULT NULL COMMENT '1外卖2堂食',
|
||
`orderTypePid` int(11) DEFAULT '0' COMMENT '外卖一级分类',
|
||
`orderTypeId` int(11) DEFAULT '0' COMMENT '外卖二级分类',
|
||
`inStoreTypePid` int(11) DEFAULT '0' COMMENT '堂食一级分类',
|
||
`inStoreTypeId` int(11) DEFAULT '0' COMMENT '堂食二级分类',
|
||
`state` int(11) DEFAULT '2' COMMENT '1.待审核2已通过3已拒绝',
|
||
`regionId` int(11) DEFAULT NULL COMMENT '区域ID',
|
||
`headerIcon` varchar(255) DEFAULT NULL COMMENT '门头图',
|
||
`goodsModel` tinyint(1) DEFAULT '1' COMMENT '门店商品同步模式',
|
||
`isTop` tinyint(1) DEFAULT '2' COMMENT '置顶1是2否',
|
||
`isRecommend` tinyint(1) DEFAULT '2' COMMENT '推荐 1是,2否',
|
||
`isReduce` tinyint(1) DEFAULT '2' COMMENT '满额立减 1是 2否',
|
||
`isNewReduction` tinyint(1) DEFAULT '2' COMMENT '支持新客立减 1是 2否',
|
||
`isGrantCounpon` tinyint(1) DEFAULT '2' COMMENT '下单返红包',
|
||
`isCarry` tinyint(1) DEFAULT '2' COMMENT '支持自提 1是 2否',
|
||
PRIMARY KEY (`id`),
|
||
UNIQUE KEY `shopNumber` (`storeNumber`) USING BTREE,
|
||
KEY `shopId` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8 COMMENT='门店';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_store_bill
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_store_bill`;
|
||
CREATE TABLE `ims_ybo2ov2_store_bill` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`storeId` int(11) NOT NULL COMMENT '商户ID',
|
||
`origin` int(11) NOT NULL COMMENT '订单来源1外卖订单,10,申请提现',
|
||
`item` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1加,2减',
|
||
`outTradeNo` varchar(32) NOT NULL,
|
||
`money` decimal(15,2) NOT NULL COMMENT '金额',
|
||
`currentMoney` decimal(15,2) NOT NULL COMMENT '当前余额',
|
||
`uniacid` int(11) NOT NULL,
|
||
`createdAt` int(11) NOT NULL,
|
||
`note` varchar(255) DEFAULT NULL COMMENT '备注',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COMMENT='商户账单记录表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_store_finance
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_store_finance`;
|
||
CREATE TABLE `ims_ybo2ov2_store_finance` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`storeId` int(11) NOT NULL COMMENT '门店Id',
|
||
`outTradeNo` varchar(32) NOT NULL COMMENT '订单号',
|
||
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '提现方式,1微信,2银联,3支付宝',
|
||
`account` varchar(255) NOT NULL COMMENT '账号信息',
|
||
`money` decimal(10,2) NOT NULL COMMENT '提现金额',
|
||
`charge` decimal(10,2) NOT NULL COMMENT '手续费',
|
||
`actualMoney` decimal(10,2) NOT NULL COMMENT '实际金额',
|
||
`state` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1申请中,2已通过,3已拒绝',
|
||
`uniacid` int(11) NOT NULL COMMENT '小程序Id',
|
||
`createdAt` int(11) NOT NULL COMMENT '创建时间',
|
||
`changeAt` int(11) NOT NULL DEFAULT '0',
|
||
`deleteAt` int(11) NOT NULL COMMENT '删除时间戳',
|
||
`note` varchar(255) DEFAULT NULL COMMENT '备注',
|
||
PRIMARY KEY (`id`),
|
||
KEY `storeId` (`storeId`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商户提现表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_store_reduce
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_store_reduce`;
|
||
CREATE TABLE `ims_ybo2ov2_store_reduce` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) NOT NULL COMMENT '活动名称',
|
||
`startTime` int(11) NOT NULL,
|
||
`endTime` int(11) NOT NULL,
|
||
`type` int(11) NOT NULL DEFAULT '1' COMMENT '1每满减优惠2.多级满减',
|
||
`moneyArr` varchar(500) NOT NULL COMMENT '满减数组',
|
||
`people` int(11) NOT NULL DEFAULT '1' COMMENT '1全部2新客3会员',
|
||
`item` varchar(50) NOT NULL COMMENT '1外卖,2自提,3堂食,4快餐',
|
||
`useType` int(11) NOT NULL DEFAULT '1' COMMENT '1.本店可用2全店通用3.指定门店',
|
||
`week` varchar(100) NOT NULL COMMENT '星期数组',
|
||
`timeType` int(11) NOT NULL DEFAULT '1' COMMENT '1.全天',
|
||
`storeId` int(11) NOT NULL,
|
||
`useStore` varchar(255) NOT NULL COMMENT '可用商家',
|
||
`display` int(11) NOT NULL DEFAULT '1' COMMENT '1显示2隐藏',
|
||
`deleteAt` int(11) NOT NULL DEFAULT '0',
|
||
`createdAt` int(11) NOT NULL DEFAULT '0',
|
||
`changeAt` int(11) NOT NULL DEFAULT '0',
|
||
`uniacid` int(11) NOT NULL DEFAULT '0',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `storeId` (`storeId`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='满减';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_store_set
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_store_set`;
|
||
CREATE TABLE `ims_ybo2ov2_store_set` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`data` text NOT NULL COMMENT '数据',
|
||
`ident` varchar(20) DEFAULT NULL COMMENT '标识',
|
||
`createdAt` int(11) NOT NULL COMMENT '创建时间',
|
||
`changeAt` int(11) DEFAULT NULL COMMENT '修改时间',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`uniacid` int(11) NOT NULL,
|
||
`storeId` int(11) NOT NULL,
|
||
`name` varchar(50) NOT NULL COMMENT '中文标识',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8 COMMENT='门店设置表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_takeout_order
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_takeout_order`;
|
||
CREATE TABLE `ims_ybo2ov2_takeout_order` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`outTradeNo` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '订单流水号',
|
||
`origin` tinyint(4) DEFAULT '1' COMMENT '订单来源,1微信小程序,2微信公众号3支付宝,4百度5.h5 6.pc 7.头条',
|
||
`state` tinyint(4) DEFAULT NULL COMMENT '订单状态 1未付款,2已付款,3已接单,4配送中/待取货,5已收货,6已评价,7已取消,8.拒单,9申请退款,10已退款,11退款拒绝',
|
||
`deliveryMode` tinyint(4) DEFAULT NULL COMMENT '1.商户2达达3点我达4码科5顺丰6蜂鸟7闪送,8uu跑腿,10自提',
|
||
`storeId` int(11) DEFAULT NULL COMMENT '门店ID',
|
||
`takeNo` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '取单号',
|
||
`money` decimal(10,2) DEFAULT NULL COMMENT '订单支付金额',
|
||
`boxMoney` decimal(10,2) DEFAULT NULL COMMENT '餐盒费',
|
||
`refundMoney` decimal(10,2) DEFAULT NULL COMMENT '订单退款金额',
|
||
`preferentialMoney` decimal(10,2) DEFAULT NULL COMMENT '满减金额',
|
||
`deliveryMoney` decimal(10,2) DEFAULT '0.00' COMMENT '配送费',
|
||
`originMoney` decimal(10,2) DEFAULT NULL COMMENT '订单原始金额(商品总金额)',
|
||
`newMoney` decimal(10,2) DEFAULT '0.00' COMMENT '新客立减',
|
||
`vipDiscount` decimal(10,2) DEFAULT NULL COMMENT '会员折扣',
|
||
`deliveryPreferential` decimal(10,2) DEFAULT '0.00' COMMENT '配送费优惠',
|
||
`platformCouponPreferential` decimal(10,2) DEFAULT NULL COMMENT '平台卡券优惠',
|
||
`couponPreferential` decimal(10,2) DEFAULT '0.00' COMMENT '优惠券优惠',
|
||
`couponId` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '优惠券id',
|
||
`receivedName` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '收货人',
|
||
`receivedAddress` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '收货地址',
|
||
`receivedTel` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '收货电话',
|
||
`payMode` tinyint(4) DEFAULT NULL COMMENT '付款方式 1微信支付5余额支付',
|
||
`payAt` int(11) DEFAULT NULL COMMENT '付款时间',
|
||
`createdAt` int(11) DEFAULT NULL COMMENT '创建时间',
|
||
`changeAt` int(11) DEFAULT NULL COMMENT '修改时间',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`userNote` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '用户订单备注',
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序ID',
|
||
`num` int(11) DEFAULT NULL COMMENT '购买商品数量',
|
||
`storeNote` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '商户备注',
|
||
`userId` int(11) DEFAULT NULL COMMENT '下单人ID',
|
||
`refundNo` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '退款单号',
|
||
`applyAt` int(11) DEFAULT NULL COMMENT '退款申请时间',
|
||
`refundAdoptAt` int(11) DEFAULT '0' COMMENT '退款时间',
|
||
`material` text COLLATE utf8mb4_unicode_ci COMMENT '加料信息json串',
|
||
`receiptAt` int(11) DEFAULT NULL COMMENT '接单时间',
|
||
`preferentialId` int(11) DEFAULT NULL COMMENT '满减优惠id',
|
||
`payType` tinyint(11) DEFAULT '1' COMMENT '付款模式 1普通模式,2服务商模式',
|
||
`lng` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
`lat` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
`otherInfo` text COLLATE utf8mb4_unicode_ci COMMENT '第三方配送放回信息',
|
||
`completeAt` int(11) DEFAULT NULL COMMENT '订单完成时间',
|
||
`otherFee` decimal(10,2) DEFAULT NULL COMMENT '第三方配送费',
|
||
`serviceAt` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '送达时间',
|
||
`sex` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
`appointment` int(11) DEFAULT '2' COMMENT '1预约2普通',
|
||
`appointmentState` int(11) DEFAULT '2' COMMENT '预订单提醒 1.收到提醒2待收提醒',
|
||
`payOrderId` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '支付平台订单号(百度专用)',
|
||
`area` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '城市名称',
|
||
`payUserId` int(11) DEFAULT NULL COMMENT '支付用户id(百度专用)',
|
||
`serviceTime` int(11) DEFAULT NULL COMMENT '预约时间',
|
||
`makeOrder` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
`selfCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '自提码',
|
||
`deliveryAt` int(11) DEFAULT NULL COMMENT '发货时间',
|
||
`deliveryPreferentialType` int(11) DEFAULT '1' COMMENT '配送费优惠类型 1.满减配送费 2.会员减免配送费',
|
||
`isOut` int(11) DEFAULT '2' COMMENT '1店内就餐2打包带走',
|
||
`userDeleteAt` int(11) DEFAULT NULL COMMENT '用户删除时间',
|
||
`cancelReason` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '取消/退款原因',
|
||
`refuseReason` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '取消/拒绝原因',
|
||
`originalUniacid` int(11) DEFAULT NULL COMMENT '原始小程序id',
|
||
`transaction_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '微信订单号',
|
||
`subMchId` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '支付的子商户号',
|
||
`payPort` int(11) DEFAULT '1' COMMENT '服务商支付判断1.商家服务商支付 2.平台服务商支付 ',
|
||
`profitSharing` int(11) DEFAULT '2' COMMENT '1是分账2不分账',
|
||
`profitSharingState` int(11) DEFAULT '2' COMMENT '1已分账2未分账3完结分账 ',
|
||
`fnptOrder` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '蜂鸟跑腿订单号',
|
||
`sftcOrder` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '顺丰单号',
|
||
`sanOrder` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '闪送订单号',
|
||
`beforeRefundState` int(11) DEFAULT '2' COMMENT '退款前订单状态',
|
||
`mealOutState` int(11) DEFAULT '2' COMMENT '出餐状态1.已出餐2未出餐',
|
||
`mealOutTime` int(11) DEFAULT NULL COMMENT '出餐时间',
|
||
`giveName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '赠品',
|
||
`grantCouponId` int(11) DEFAULT '0' COMMENT '下单返红包活动id',
|
||
`grantCouponName` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '下单返红包名称',
|
||
`changeId` int(11) DEFAULT '0' COMMENT '换购活动id',
|
||
`isRemind` int(11) DEFAULT '1' COMMENT '1.提醒了2未提醒 取餐提醒',
|
||
`refundType` int(11) DEFAULT '1' COMMENT '1.商家拒单2用户申请退款3用户取消订单退款4商家未接单自动退款',
|
||
`subsidy` decimal(10,2) DEFAULT '0.00' COMMENT '平台补贴',
|
||
`receiveCode` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '收货码',
|
||
`pickCode` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '取件码',
|
||
`psType` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1平台配送,2商户选择配送',
|
||
`undertake` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '商户承担',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `userId` (`userId`),
|
||
KEY `storeId` (`storeId`),
|
||
KEY `state` (`state`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='外卖订单';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_unit
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_unit`;
|
||
CREATE TABLE `ims_ybo2ov2_unit` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(30) DEFAULT NULL,
|
||
`display` int(11) DEFAULT '1' COMMENT '1显示,2隐藏',
|
||
`body` varchar(255) DEFAULT NULL COMMENT '说明',
|
||
`uniacid` int(11) DEFAULT NULL COMMENT '小程序ID',
|
||
`createdAt` int(11) DEFAULT NULL COMMENT '创建时间',
|
||
`deleteAt` int(11) DEFAULT '0' COMMENT '删除时间',
|
||
`isDefauit` tinyint(4) DEFAULT '2' COMMENT '1默认,2否',
|
||
`sort` int(11) DEFAULT '1' COMMENT '排序',
|
||
`storeId` int(11) DEFAULT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COMMENT='单位表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_user_address
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_user_address`;
|
||
CREATE TABLE `ims_ybo2ov2_user_address` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) NOT NULL COMMENT '用户id',
|
||
`userName` varchar(20) NOT NULL COMMENT '联系人',
|
||
`userTel` varchar(20) NOT NULL COMMENT '联系电话',
|
||
`address` varchar(100) NOT NULL COMMENT '地址',
|
||
`details` varchar(100) NOT NULL COMMENT '详细地址',
|
||
`label` varchar(20) NOT NULL COMMENT '标签',
|
||
`lat` varchar(50) NOT NULL,
|
||
`lng` varchar(50) NOT NULL,
|
||
`uniacid` int(11) NOT NULL,
|
||
`isDefault` int(11) NOT NULL DEFAULT '1' COMMENT '1默认1不默认',
|
||
`createdAt` int(11) NOT NULL COMMENT '添加时间',
|
||
`changeAt` int(11) NOT NULL COMMENT '更新时间',
|
||
`sex` varchar(20) NOT NULL,
|
||
`area` varchar(30) NOT NULL COMMENT '城市名称',
|
||
`deleteAt` int(11) NOT NULL COMMENT '删除时间',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `userId` (`userId`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8 COMMENT='用户联系方式地址表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_user_balance
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_user_balance`;
|
||
CREATE TABLE `ims_ybo2ov2_user_balance` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) NOT NULL COMMENT '用户ID',
|
||
`money` decimal(10,2) NOT NULL COMMENT '金额',
|
||
`createdAt` int(11) NOT NULL COMMENT '时间',
|
||
`uniacid` int(11) NOT NULL COMMENT '小程序ID',
|
||
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1加,2减',
|
||
`origin` tinyint(4) NOT NULL COMMENT '来源,1平台,2用户',
|
||
`note` varchar(30) NOT NULL COMMENT '备注',
|
||
`accountId` int(11) NOT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `userId` (`userId`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=432 DEFAULT CHARSET=utf8 COMMENT='余额明细表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_user_balance_order
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_user_balance_order`;
|
||
CREATE TABLE `ims_ybo2ov2_user_balance_order` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) NOT NULL COMMENT '用户ID',
|
||
`money` decimal(10,2) NOT NULL COMMENT '充值金额',
|
||
`createdAt` int(11) NOT NULL COMMENT '充值时间',
|
||
`giveMoney` decimal(10,2) NOT NULL COMMENT '赠送金额',
|
||
`giveScore` int(11) NOT NULL DEFAULT '0' COMMENT '赠送积分',
|
||
`outTradeNo` varchar(100) DEFAULT NULL COMMENT '订单号',
|
||
`payMode` int(11) DEFAULT '1' COMMENT '付款方式 1微信支付2支付宝支付3.百度支付4.公众号支付',
|
||
`payAt` int(11) DEFAULT '0',
|
||
`state` int(11) DEFAULT '1' COMMENT '1未付款2已支付',
|
||
`uniacid` int(11) NOT NULL DEFAULT '0' COMMENT '小程序ID',
|
||
`giveId` int(11) DEFAULT '0' COMMENT '充值规则id',
|
||
`gradeId` int(11) DEFAULT '0' COMMENT '赠送会员等级',
|
||
`transaction_id` varchar(50) DEFAULT NULL COMMENT '微信商户号',
|
||
`subMchId` varchar(50) DEFAULT NULL COMMENT '支付的商户号',
|
||
`profitSharing` int(11) DEFAULT '2' COMMENT '1是分账2不分账',
|
||
`profitSharingState` int(11) DEFAULT '2' COMMENT '1已分账2未分账3完结分账',
|
||
`payType` int(11) DEFAULT '1' COMMENT '1普通支付2服务商支付',
|
||
`couponId` varchar(255) DEFAULT NULL COMMENT '优惠券ID',
|
||
`num` int(11) NOT NULL DEFAULT '1' COMMENT '优惠券赠送张数',
|
||
`giveGrow` int(11) DEFAULT '0' COMMENT '赠送成长值',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='充值订单表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_user_bonus
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_user_bonus`;
|
||
CREATE TABLE `ims_ybo2ov2_user_bonus` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) NOT NULL COMMENT '用户ID',
|
||
`money` decimal(10,2) NOT NULL COMMENT '金额',
|
||
`createdAt` int(11) NOT NULL COMMENT '时间',
|
||
`uniacid` int(11) NOT NULL COMMENT '小程序ID',
|
||
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1加,2减',
|
||
`origin` tinyint(4) NOT NULL COMMENT '来源,1平台,2用户',
|
||
`note` varchar(30) NOT NULL COMMENT '备注',
|
||
`accountId` int(11) NOT NULL,
|
||
`item` int(11) DEFAULT '1' COMMENT '1.老带新2分销商',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `userId` (`userId`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='奖励金明细表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_user_card
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_user_card`;
|
||
CREATE TABLE `ims_ybo2ov2_user_card` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) DEFAULT NULL,
|
||
`bgType` int(11) DEFAULT '1' COMMENT '1.背景色2背景图',
|
||
`color` varchar(20) DEFAULT NULL COMMENT '颜色',
|
||
`bgImg` varchar(255) DEFAULT NULL COMMENT '背景图',
|
||
`condition` int(11) DEFAULT '0' COMMENT '成长值条件',
|
||
`level` int(11) DEFAULT '1' COMMENT '等级',
|
||
`rights` varchar(255) DEFAULT NULL COMMENT '权益',
|
||
`isCoupon` int(11) DEFAULT '2' COMMENT '赠送优惠券1赠送2不赠送',
|
||
`coupon` varchar(255) DEFAULT NULL COMMENT '优惠券数组',
|
||
`isBalance` int(11) DEFAULT '2' COMMENT '赠送余额1赠送2不赠送',
|
||
`balance` decimal(10,2) DEFAULT '0.00' COMMENT '赠送余额',
|
||
`isIntegral` int(11) DEFAULT '2',
|
||
`integral` int(11) DEFAULT '0',
|
||
`isGrowth` int(11) DEFAULT '2',
|
||
`growth` int(11) DEFAULT '0',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_user_collection
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_user_collection`;
|
||
CREATE TABLE `ims_ybo2ov2_user_collection` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) DEFAULT NULL,
|
||
`collectionId` int(11) DEFAULT '0' COMMENT '收藏信息id',
|
||
`type` int(11) DEFAULT '1' COMMENT '1商家',
|
||
`state` int(11) DEFAULT '1' COMMENT '1已收藏2未收藏',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_user_coupon
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_user_coupon`;
|
||
CREATE TABLE `ims_ybo2ov2_user_coupon` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) NOT NULL COMMENT '用户id',
|
||
`couponId` int(11) NOT NULL,
|
||
`type` int(11) NOT NULL DEFAULT '1' COMMENT '1.优惠券2折扣券',
|
||
`couponName` varchar(20) NOT NULL COMMENT '券名称',
|
||
`couponDetails` varchar(255) NOT NULL COMMENT '券详情',
|
||
`money` decimal(10,2) NOT NULL,
|
||
`fullMoney` decimal(10,2) NOT NULL,
|
||
`discount` decimal(10,1) DEFAULT NULL,
|
||
`useStartTime` int(11) NOT NULL COMMENT '使用开始时间',
|
||
`useEndTime` int(11) NOT NULL COMMENT '使用结束时间',
|
||
`useType` varchar(20) NOT NULL COMMENT '使用类型数组1外卖2自提',
|
||
`storeType` int(11) NOT NULL COMMENT '1.本店2.全部门店3指定',
|
||
`storeArr` varchar(255) NOT NULL COMMENT '门店数组',
|
||
`goodsType` int(11) NOT NULL COMMENT '1.全部商品2指定商品3.指定不可用4.指定分类商品',
|
||
`goodsArr` varchar(255) NOT NULL COMMENT '商品或商品分类id数组',
|
||
`state` int(11) NOT NULL DEFAULT '2' COMMENT '1.已使用2未使用',
|
||
`useTime` int(11) NOT NULL COMMENT '使用时间',
|
||
`uniacid` int(11) NOT NULL,
|
||
`createdAt` int(11) NOT NULL COMMENT '领取时间',
|
||
`receiveType` int(11) DEFAULT '1' COMMENT '1.领取2签到3新客专享4.下单返红包5支付有礼6发券宝7.弹窗优惠券8生日有礼9券包10兑换码11收藏有礼12会员卡13付费会员卡',
|
||
`storeId` int(11) DEFAULT '0' COMMENT '商家id',
|
||
`subsidy` decimal(10,2) DEFAULT '0.00' COMMENT '平台补贴',
|
||
`memberType` int(11) DEFAULT '1' COMMENT '1所有人2会员3指定标签用户',
|
||
`memberLabel` varchar(255) DEFAULT NULL,
|
||
`couponType` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1平台红包,2商户代金券',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='用户领取的优惠券';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_user_growth
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_user_growth`;
|
||
CREATE TABLE `ims_ybo2ov2_user_growth` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) NOT NULL COMMENT '用户ID',
|
||
`growth` decimal(10,2) NOT NULL COMMENT '成长值',
|
||
`createdAt` int(11) NOT NULL COMMENT '时间',
|
||
`uniacid` int(11) NOT NULL COMMENT '小程序ID',
|
||
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1加,2减',
|
||
`origin` tinyint(4) NOT NULL COMMENT '来源,1平台,2用户',
|
||
`note` varchar(30) NOT NULL COMMENT '备注',
|
||
`accountId` int(11) NOT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `userId` (`userId`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='成长值明细表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_user_integral
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_user_integral`;
|
||
CREATE TABLE `ims_ybo2ov2_user_integral` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) NOT NULL COMMENT '用户ID',
|
||
`origin` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1平台2用户3签到',
|
||
`integral` int(11) NOT NULL DEFAULT '0' COMMENT '积分',
|
||
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1加,2减',
|
||
`note` varchar(30) NOT NULL COMMENT '备注',
|
||
`createdAt` int(11) NOT NULL COMMENT '创建时间',
|
||
`uniacid` int(11) NOT NULL COMMENT '小程序ID',
|
||
`signTime` varchar(20) DEFAULT '' COMMENT '签到时间',
|
||
`accountId` int(11) DEFAULT '0',
|
||
`newUser` int(11) DEFAULT '0' COMMENT '新增用户,是新增的就是1,不是就是0',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `userId` (`userId`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=275 DEFAULT CHARSET=utf8 COMMENT='用户积分明细';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_user_vip_coupon
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_user_vip_coupon`;
|
||
CREATE TABLE `ims_ybo2ov2_user_vip_coupon` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) DEFAULT NULL,
|
||
`couponId` varchar(255) DEFAULT NULL COMMENT '优惠券id',
|
||
`releaseAt` int(11) DEFAULT '0' COMMENT '下次发放时间',
|
||
`state` int(11) DEFAULT '2' COMMENT '1.已发放2待发放',
|
||
`uniacid` int(11) DEFAULT NULL,
|
||
`createdAt` int(11) DEFAULT '0' COMMENT '创建时间',
|
||
PRIMARY KEY (`id`),
|
||
KEY `userId` (`userId`),
|
||
KEY `uniacid` (`uniacid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_user_vip_order
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_user_vip_order`;
|
||
CREATE TABLE `ims_ybo2ov2_user_vip_order` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`userId` int(11) DEFAULT NULL,
|
||
`outTradeNo` varchar(50) DEFAULT NULL,
|
||
`day` int(11) DEFAULT '0' COMMENT '天数',
|
||
`money` decimal(10,2) DEFAULT '0.00' COMMENT '金额',
|
||
`state` int(11) DEFAULT '1' COMMENT '1待支付2已支付',
|
||
`transaction_id` varchar(100) DEFAULT NULL,
|
||
`first` int(11) DEFAULT '1' COMMENT '1.首次2续费',
|
||
`endTime` int(11) DEFAULT '0' COMMENT '到期时间',
|
||
`payMode` int(11) DEFAULT '1' COMMENT '付款方式 1微信支付5余额支付',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`payAt` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `userId` (`userId`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_user_wallet
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_user_wallet`;
|
||
CREATE TABLE `ims_ybo2ov2_user_wallet` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`sort` int(11) DEFAULT '1',
|
||
`name` varchar(20) DEFAULT NULL COMMENT '储值规则',
|
||
`money` decimal(10,2) DEFAULT '0.00' COMMENT '充值金额',
|
||
`giveMoney` decimal(10,2) DEFAULT '0.00' COMMENT '赠送金额',
|
||
`giveGrow` int(11) DEFAULT '0' COMMENT '赠送成长值',
|
||
`integral` int(11) DEFAULT '0' COMMENT '赠送积分',
|
||
`couponId` varchar(255) DEFAULT NULL COMMENT '赠送优惠券',
|
||
`number` int(11) DEFAULT '0' COMMENT '储值次数',
|
||
`moneyOpen` int(11) DEFAULT '2' COMMENT '赠送余额 1开启2关闭',
|
||
`integralOpen` int(11) DEFAULT '2' COMMENT '赠送积分 1开启2关闭',
|
||
`couponOpen` int(11) DEFAULT '2' COMMENT '赠送优惠券 1开启2关闭',
|
||
`growOpen` int(11) DEFAULT '2' COMMENT '赠送成长值 1开启2关闭',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`display` int(11) NOT NULL DEFAULT '1',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='用户储值记录表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_users
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_users`;
|
||
CREATE TABLE `ims_ybo2ov2_users` (
|
||
`id` int(10) NOT NULL AUTO_INCREMENT,
|
||
`phone` varchar(30) DEFAULT NULL,
|
||
`uniacid` int(10) DEFAULT NULL COMMENT '最后一次操作的公众号ID',
|
||
`storeId` int(11) DEFAULT NULL,
|
||
`userName` varchar(30) DEFAULT NULL COMMENT '用户名',
|
||
`passWord` varchar(255) DEFAULT NULL COMMENT '密码',
|
||
`portrait` varchar(255) DEFAULT NULL,
|
||
`salt` varchar(10) DEFAULT NULL COMMENT '加密盐',
|
||
`status` tinyint(4) DEFAULT '1' COMMENT '1、注册审核;2、正常;3、逻辑删除(禁用)',
|
||
`joindate` datetime DEFAULT NULL COMMENT '注册时间',
|
||
`joinip` varchar(15) DEFAULT NULL COMMENT '注册IP',
|
||
`lastvisit` int(10) DEFAULT NULL COMMENT '最后访问时间',
|
||
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
|
||
`starttime` datetime DEFAULT NULL COMMENT '帐号开始时间',
|
||
`endtime` datetime DEFAULT NULL COMMENT '帐号结束时间',
|
||
`register_type` tinyint(3) DEFAULT NULL COMMENT '用户来源类型:0网站注册,1qq, 2微信',
|
||
`openid` varchar(50) DEFAULT NULL COMMENT '第三方的openid',
|
||
`is_bind` tinyint(255) DEFAULT NULL COMMENT 'QQ和微信登录后是否绑定',
|
||
`notice_setting` varchar(255) DEFAULT NULL COMMENT '消息提醒设置',
|
||
`system_type` tinyint(1) DEFAULT NULL COMMENT '1.连锁版2.O2O版 3单店版',
|
||
`domain_url` varchar(255) DEFAULT NULL COMMENT '总管理员绑定的域名',
|
||
`role_id` int(10) DEFAULT NULL COMMENT '角色表自增id',
|
||
`sort` int(11) DEFAULT NULL,
|
||
`display` tinyint(1) DEFAULT '1',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`createdAt` int(11) DEFAULT NULL,
|
||
`userTel` varchar(30) DEFAULT NULL,
|
||
`type` tinyint(1) DEFAULT '2' COMMENT '0超级管理员1平台管理员2普通管理员3门店管理员',
|
||
`trueName` varchar(50) DEFAULT NULL COMMENT '真实姓名',
|
||
`appNum` int(11) DEFAULT '1' COMMENT '手机号对应的可创建平台数量',
|
||
`registrationId` varchar(50) DEFAULT NULL COMMENT '激光推送registrationId',
|
||
`userId` int(11) DEFAULT NULL,
|
||
PRIMARY KEY (`id`),
|
||
UNIQUE KEY `userName_index` (`userName`) USING BTREE,
|
||
UNIQUE KEY `userphone_index` (`phone`,`userName`) USING BTREE
|
||
) ENGINE=InnoDB AUTO_INCREMENT=168 DEFAULT CHARSET=utf8 COMMENT='独立管理后台登陆表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_version_log
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_version_log`;
|
||
CREATE TABLE `ims_ybo2ov2_version_log` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`old_version` varchar(50) DEFAULT NULL,
|
||
`old_release` varchar(50) DEFAULT NULL,
|
||
`new_version` varchar(50) DEFAULT NULL,
|
||
`new_release` varchar(50) DEFAULT NULL,
|
||
`dt_operdate` datetime DEFAULT NULL,
|
||
`type` tinyint(1) DEFAULT '1' COMMENT '1管理后台升级2连锁版应用升级',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_visit_list
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_visit_list`;
|
||
CREATE TABLE `ims_ybo2ov2_visit_list` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '网站访问记录表',
|
||
`uniacid` varchar(50) DEFAULT NULL COMMENT '所属帐号uniacid',
|
||
`model` varchar(30) DEFAULT NULL COMMENT '访问的模块',
|
||
`modelname` varchar(30) DEFAULT NULL COMMENT '1首页 2点单页面 3个人中心',
|
||
`type` varchar(10) DEFAULT '1' COMMENT '访问类型:1:微信小程序;2:其他',
|
||
`createdAt` int(11) DEFAULT NULL COMMENT '访问日期',
|
||
`ip` varchar(30) DEFAULT NULL COMMENT '访问ip',
|
||
`request_type` varchar(10) DEFAULT NULL,
|
||
`par_str` varchar(255) DEFAULT NULL,
|
||
`storeId` int(11) DEFAULT NULL,
|
||
`userId` int(11) NOT NULL,
|
||
`openId` varchar(50) DEFAULT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `ip_index` (`ip`) USING BTREE
|
||
) ENGINE=InnoDB AUTO_INCREMENT=687 DEFAULT CHARSET=utf8 COMMENT='业务后台浏览记录表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_voice_notice
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_voice_notice`;
|
||
CREATE TABLE `ims_ybo2ov2_voice_notice` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`storeId` int(11) NOT NULL,
|
||
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1点单',
|
||
`message` longtext NOT NULL COMMENT '通知内容',
|
||
`display` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1显示,2隐藏',
|
||
`createdAt` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
||
`deleteAt` int(11) NOT NULL DEFAULT '0',
|
||
`uniacid` int(11) NOT NULL DEFAULT '0' COMMENT '小程序ID',
|
||
PRIMARY KEY (`id`),
|
||
KEY `uniacid` (`uniacid`),
|
||
KEY `storeId` (`storeId`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='语音通知表';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_window_coupon
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_window_coupon`;
|
||
CREATE TABLE `ims_ybo2ov2_window_coupon` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(20) DEFAULT NULL,
|
||
`startTime` int(11) DEFAULT NULL,
|
||
`endTime` int(11) DEFAULT NULL,
|
||
`location` int(11) DEFAULT '1' COMMENT '1外卖点单页2堂食点单页',
|
||
`coupon` text COMMENT '优惠券数组',
|
||
`icon` varchar(255) DEFAULT NULL COMMENT '背景图片',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
`changeAt` int(11) DEFAULT '0',
|
||
`deleteAt` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`display` int(11) DEFAULT '1' COMMENT '1显示2隐藏',
|
||
`storeId` int(11) DEFAULT '0',
|
||
`people` int(11) DEFAULT '1' COMMENT '1.全部2新用户3老用户',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='弹窗优惠券';
|
||
|
||
-- ----------------------------
|
||
-- Table structure for ims_ybo2ov2_window_coupon_receive
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `ims_ybo2ov2_window_coupon_receive`;
|
||
CREATE TABLE `ims_ybo2ov2_window_coupon_receive` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`windowId` int(11) DEFAULT '0',
|
||
`userId` int(11) DEFAULT '0',
|
||
`uniacid` int(11) DEFAULT '0',
|
||
`createdAt` int(11) DEFAULT '0',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='弹窗优惠券领取表';
|
||
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('1', '/', null, '概况', '0', '1', '2021-03-12 16:49:37', '1', 'el-icon-data-line', '0', '1');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('2', 'takeaway', null, '订单', '0', '1', '2021-03-12 16:49:37', '1', 'el-icon-tickets', '0', '2');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('3', 'takeaway', null, '外卖订单', '2', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('4', 'takeaway', null, '外卖概况', '3', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('5', 'orderprocessing', null, '订单处理', '3', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('6', 'orderinquiry', null, '订单查询', '3', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('7', 'selforder', null, '自提订单', '3', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('8', 'storesummary', null, '商户', '0', '1', '2021-03-12 16:49:37', '1', 'el-icon-school', '0', '3');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('9', 'storesummary', null, '商户管理', '8', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('10', 'storesummary', null, '商户概况', '9', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('11', 'storelist', null, '商户列表', '9', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('12', 'storeexpirelist', null, '到期商户', '9', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('13', 'storemeal', null, '入驻管理', '8', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('14', 'storemeal', null, '入驻套餐', '13', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('15', 'storetype', null, '业务', '0', '1', '2021-03-12 16:49:37', '1', 'el-icon-money', '0', '4');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('16', 'storetype', null, '外卖管理', '15', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('17', 'storetype', null, '商户分类', '16', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('18', 'goodtype', null, '商品分类', '16', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('19', 'ptgoodlist', null, '商品管理', '16', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('20', 'outset', null, '外卖设置', '16', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('21', 'citydistribution', null, '配送设置', '16', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('22', 'usersurvey', null, '用户', '0', '1', '2021-03-12 16:49:37', '1', 'el-icon-user', '0', '5');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('23', 'usersurvey', null, '用户管理', '22', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('24', 'usersurvey', null, '用户概况', '23', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('25', 'userquery', null, '用户查询', '23', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('26', 'userlabel', null, '标签管理', '23', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('27', 'regional', null, '区域', '0', '1', '2021-03-12 16:49:37', '1', 'el-icon-coin', '0', '7');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('28', 'regional', null, '区域列表', '27', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('29', 'regional', null, '区域列表', '28', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('30', 'regionalset', null, '区域设置', '27', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('31', 'regionalset', null, '基础设置', '30', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('32', 'balance', null, '资产', '0', '1', '2021-03-12 16:49:37', '1', 'el-icon-money', '0', '8');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('33', 'balance', null, '余额明细', '32', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('34', 'balance', null, '余额流水', '33', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('35', 'integralflow', null, '积分明细', '32', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('36', 'integralflow', null, '积分流水', '35', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('37', 'application', null, '应用', '0', '1', '2021-03-12 16:49:37', '1', 'el-icon-shopping-bag-1', '0', '9');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('38', 'application', null, '应用列表', '37', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('39', 'application', null, '应用列表', '38', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('40', 'renovationindex', null, '装修管理', '37', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('41', 'renovationindex', null, '装修列表', '40', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('42', 'storestyle', null, '全店风格', '40', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('43', 'storetemment', null, '点单风格', '40', '0', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('44', 'materialmange', null, '其他', '37', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('45', 'materialmange', null, '素材管理', '44', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('46', 'baseset', null, '设置', '0', '1', '2021-03-12 16:49:37', '1', 'el-icon-mobile', '0', '10');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('47', 'baseset', null, '基础设置', '46', '1', '2021-03-12 16:49:37', '2', null, '0', '1');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('48', 'orderremind', null, '订单提醒', '46', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('49', 'orderremind', null, '短信设置', '48', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('50', 'ptmsg', null, '模板消息', '48', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('51', 'ptprentset', null, '打印设置', '48', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('52', 'ptautiomsg', null, '语音提醒', '48', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('53', 'paymentset', null, '支付设置', '46', '1', '2021-03-12 16:49:37', '2', null, '0', '2');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('54', 'distributionset', null, '配送设置', '46', '0', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('55', 'otherset', null, '其他设置', '46', '1', '2021-03-12 16:49:37', '2', null, '0', '4');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('56', 'otherset', null, '帮助中心', '55', '1', '2021-03-12 16:49:37', '3', null, '0', '3');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('57', 'noticeset', null, '公告管理', '55', '1', '2021-03-12 16:49:37', '3', null, '0', '1');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('58', 'enclosure', null, '远程附件', '55', '0', '2021-03-12 16:49:37', '3', null, '0', '5');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('59', 'pagetitle', null, '页面标题', '55', '1', '2021-03-12 16:49:37', '3', null, '0', '4');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('60', 'changelog', null, '权限', '0', '1', '2021-03-12 16:49:37', '1', 'el-icon-set-up', '0', '11');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('61', 'changelog', null, '网站授权', '60', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('62', 'changelog', null, '更新记录', '61', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('63', 'empower', null, '授权详情', '61', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('64', 'appletlist', null, '小程序列表', '60', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('65', 'founder', null, '超级权限', '60', '1', '2021-03-12 16:49:37', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('66', 'founder', null, '超级权限', '65', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('67', 'cacheset', null, '缓存设置', '65', '1', '2021-03-12 16:49:37', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('68', 'withdrawallmanage', null, '提现管理', '8', '1', '2021-03-27 10:42:29', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('69', 'businessaccount', null, '商家账户', '68', '1', '2021-03-27 10:43:16', '3', null, '0', '2');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('70', 'financelist', null, '提现列表', '68', '1', '2021-03-27 10:43:19', '3', null, '0', '3');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('71', 'financeset', null, '提现设置', '68', '1', '2021-03-27 10:43:21', '3', '', '0', '4');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('72', 'marketingsurvey', null, '营销', '0', '1', '2021-03-27 10:50:21', '1', 'el-icon-discount', '0', '6');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('73', 'marketingsurvey', null, '营销概况', '72', '1', '2021-03-27 10:50:22', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('74', 'activitycenter', null, '活动中心', '72', '1', '2021-03-27 10:56:57', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('75', 'activitymanagement', null, '活动管理', '72', '1', '2021-03-27 10:56:59', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('76', 'couponsmanage', null, '券管理', '72', '1', '2021-03-27 10:57:01', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('77', 'activityset', null, '活动设置', '72', '1', '2021-03-27 10:57:03', '2', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('78', 'servicerate', null, '服务费率', '68', '1', '2021-03-27 14:35:16', '3', null, '0', '1');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('79', 'storebadge', null, '商户标签', '9', '1', '2021-04-09 11:41:06', '3', null, '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('80', 'orderset', null, '通用设置', '46', '1', '2021-04-10 11:31:06', '2', null, '0', '3');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('81', 'merchantnews', null, '商户动态', '55', '1', '2021-04-10 11:34:30', '2', null, '0', '2');
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('82', 'merchantset', '', '商户端设置', '61', '1', '2021-03-12 16:49:37', '3', '', '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('83', 'storeset', '', '商户设置', '9', '1', '2021-06-17 11:41:06', '3', '', '0', null);
|
||
INSERT INTO `ims_ybo2ov2_nav` VALUES ('84', 'instoreset', '', '店内设置', '16', '1', '2021-03-12 16:49:37', '3', '', '0', null);
|