PHP算命源码_最新测算塔罗源码_可以运营

news/2024/5/17 17:31:31

众筹商城源码 众筹商品平台 商城加共识元富之路 网上商城众筹 前端是编译后的,后端PHP,带商城

运行截图

源码贡献

https://githubs.xyz/boot?app=39

部分数据库表

CREATE TABLE `ti_shopro_store` (`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',`name` varchar(50) NOT NULL COMMENT '门店名称',`images` varchar(2500) NOT NULL COMMENT '门店图片',`realname` varchar(50) NOT NULL COMMENT '联系人',`phone` varchar(20) NOT NULL COMMENT '联系电话',`province_name` varchar(50) NOT NULL COMMENT '省',`city_name` varchar(50) NOT NULL COMMENT '市',`area_name` varchar(50) NOT NULL COMMENT '区',`province_id` int(11) NOT NULL COMMENT '省ID',`city_id` int(11) NOT NULL COMMENT '市ID',`area_id` int(11) NOT NULL COMMENT '区ID',`address` varchar(255) NOT NULL COMMENT '详细地址',`latitude` decimal(10,6) DEFAULT NULL COMMENT '纬度',`longitude` decimal(10,6) DEFAULT NULL COMMENT '经度',`store` enum('0','1') NOT NULL DEFAULT '0' COMMENT '支持配送:0=否,1=是',`selfetch` enum('0','1') NOT NULL DEFAULT '0' COMMENT '支持自提:0=否,1=是',`service_type` varchar(20) NOT NULL COMMENT '服务范围',`service_radius` int(11) NOT NULL DEFAULT '0' COMMENT '服务半径',`service_province_ids` varchar(1200) DEFAULT NULL COMMENT '服务行政省',`service_city_ids` varchar(1200) DEFAULT NULL COMMENT '服务行政市',`service_area_ids` varchar(1200) DEFAULT NULL COMMENT '服务行政区',`openhours` varchar(20) NOT NULL COMMENT '营业时间',`openweeks` set('1','2','3','4','5','6','7') NOT NULL DEFAULT '1,2,3,4,5,6,7' COMMENT '营业天数',`status` enum('0','1') NOT NULL DEFAULT '1' COMMENT '门店状态:0=禁用,1=启用',`createtime` int(11) NOT NULL COMMENT '创建时间',`updatetime` int(11) NOT NULL COMMENT '更新时间',`deletetime` int(11) DEFAULT NULL COMMENT '删除时间',PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='门店';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_store`
--LOCK TABLES `ti_shopro_store` WRITE;
/*!40000 ALTER TABLE `ti_shopro_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `ti_shopro_store` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_store_apply`
--DROP TABLE IF EXISTS `ti_shopro_store_apply`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_store_apply` (`id` int(11) NOT NULL AUTO_INCREMENT,`user_id` int(11) NOT NULL COMMENT '用户',`name` varchar(50) NOT NULL COMMENT '门店名称',`images` varchar(2500) NOT NULL COMMENT '门店图片',`realname` varchar(50) NOT NULL COMMENT '联系人',`phone` varchar(20) NOT NULL COMMENT '联系电话',`province_name` varchar(50) NOT NULL COMMENT '省',`city_name` varchar(50) NOT NULL COMMENT '市',`area_name` varchar(50) NOT NULL COMMENT '区',`province_id` int(11) NOT NULL COMMENT '省ID',`city_id` int(11) NOT NULL COMMENT '市ID',`area_id` int(11) NOT NULL COMMENT '区ID',`address` varchar(255) NOT NULL COMMENT '详细地址',`latitude` decimal(10,6) NOT NULL DEFAULT '0.000000' COMMENT '纬度',`longitude` decimal(10,6) NOT NULL DEFAULT '0.000000' COMMENT '经度',`openhours` varchar(20) NOT NULL COMMENT '营业时间',`openweeks` set('1','2','3','4','5','6','7') NOT NULL DEFAULT '1,2,3,4,5,6,7' COMMENT '营业天数',`apply_num` int(10) NOT NULL DEFAULT '0' COMMENT '申请次数',`status` enum('-1','0','1') NOT NULL DEFAULT '0' COMMENT '审核状态:-1驳回,0=未审核,1=已通过',`status_msg` varchar(255) DEFAULT NULL COMMENT '驳回原因',`createtime` int(11) NOT NULL COMMENT '创建时间',`updatetime` int(11) NOT NULL COMMENT '更新时间',PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='门店入驻';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_store_apply`
--LOCK TABLES `ti_shopro_store_apply` WRITE;
/*!40000 ALTER TABLE `ti_shopro_store_apply` DISABLE KEYS */;
/*!40000 ALTER TABLE `ti_shopro_store_apply` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_user_address`
--DROP TABLE IF EXISTS `ti_shopro_user_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_user_address` (`id` int(11) NOT NULL AUTO_INCREMENT,`is_default` enum('0','1') DEFAULT '0' COMMENT '默认',`user_id` int(11) DEFAULT NULL COMMENT '用户',`consignee` varchar(20) DEFAULT NULL COMMENT '收货人',`phone` varchar(20) DEFAULT NULL COMMENT '联系电话',`province_name` varchar(20) DEFAULT NULL COMMENT '省',`city_name` varchar(20) DEFAULT NULL COMMENT '市',`area_name` varchar(20) DEFAULT NULL COMMENT '区',`address` varchar(255) DEFAULT NULL COMMENT '详细地址',`province_id` int(11) DEFAULT NULL,`city_id` int(11) DEFAULT NULL,`area_id` int(11) DEFAULT NULL,`latitude` decimal(10,6) DEFAULT NULL COMMENT '纬度',`longitude` decimal(10,6) DEFAULT NULL COMMENT '经度',`createtime` int(11) DEFAULT NULL,`updatetime` int(11) DEFAULT NULL,`deletetime` int(11) DEFAULT NULL,PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户地址';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_user_address`
--LOCK TABLES `ti_shopro_user_address` WRITE;
/*!40000 ALTER TABLE `ti_shopro_user_address` DISABLE KEYS */;
/*!40000 ALTER TABLE `ti_shopro_user_address` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_user_bank`
--DROP TABLE IF EXISTS `ti_shopro_user_bank`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_user_bank` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`user_id` int(11) NOT NULL COMMENT '用户id',`type` enum('bank','alipay') DEFAULT NULL COMMENT '账户类型:bank=银行卡,alipay=支付宝账户',`real_name` varchar(191) DEFAULT NULL COMMENT '真实姓名',`bank_name` varchar(191) DEFAULT NULL COMMENT '银行名',`card_no` varchar(191) DEFAULT NULL COMMENT '卡号',`is_default` tinyint(1) unsigned DEFAULT '0' COMMENT '是否默认',`createtime` int(11) DEFAULT NULL COMMENT '创建时间',`updatetime` int(11) DEFAULT NULL COMMENT '更新时间',`deletetime` int(11) DEFAULT NULL COMMENT '删除时间',PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='提现银行卡';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_user_bank`
--LOCK TABLES `ti_shopro_user_bank` WRITE;
/*!40000 ALTER TABLE `ti_shopro_user_bank` DISABLE KEYS */;
INSERT INTO `ti_shopro_user_bank` VALUES (1,33,'bank','你不','ffghh','568999',0,1652075864,1652075864,NULL);
/*!40000 ALTER TABLE `ti_shopro_user_bank` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_user_coupons`
--DROP TABLE IF EXISTS `ti_shopro_user_coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_user_coupons` (`id` int(11) NOT NULL AUTO_INCREMENT,`user_id` int(11) DEFAULT NULL COMMENT '用户',`coupons_id` int(11) DEFAULT NULL COMMENT '优惠券',`use_order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单 id',`usetime` int(11) DEFAULT NULL COMMENT '使用时间',`createtime` int(11) DEFAULT NULL COMMENT '领取时间',PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户优惠券';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_user_coupons`
--LOCK TABLES `ti_shopro_user_coupons` WRITE;
/*!40000 ALTER TABLE `ti_shopro_user_coupons` DISABLE KEYS */;
/*!40000 ALTER TABLE `ti_shopro_user_coupons` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_user_fake`
--DROP TABLE IF EXISTS `ti_shopro_user_fake`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_user_fake` (`id` int(11) NOT NULL AUTO_INCREMENT,`nickname` varchar(20) NOT NULL COMMENT '昵称',`avatar` varchar(255) NOT NULL COMMENT '头像',PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='虚拟用户';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_user_fake`
--LOCK TABLES `ti_shopro_user_fake` WRITE;
/*!40000 ALTER TABLE `ti_shopro_user_fake` DISABLE KEYS */;
/*!40000 ALTER TABLE `ti_shopro_user_fake` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_user_favorite`
--DROP TABLE IF EXISTS `ti_shopro_user_favorite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_user_favorite` (`id` int(11) NOT NULL AUTO_INCREMENT,`user_id` int(11) DEFAULT NULL COMMENT '用户',`goods_id` int(11) DEFAULT NULL COMMENT '商品',`createtime` int(11) DEFAULT NULL,`updatetime` int(11) DEFAULT NULL,`deletetime` int(11) DEFAULT NULL,PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户收藏';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_user_favorite`
--LOCK TABLES `ti_shopro_user_favorite` WRITE;
/*!40000 ALTER TABLE `ti_shopro_user_favorite` DISABLE KEYS */;
/*!40000 ALTER TABLE `ti_shopro_user_favorite` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_user_oauth`
--DROP TABLE IF EXISTS `ti_shopro_user_oauth`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_user_oauth` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`user_id` int(10) unsigned DEFAULT '0' COMMENT '用户',`provider` varchar(50) NOT NULL COMMENT '厂商',`platform` varchar(50) NOT NULL COMMENT '平台',`unionid` varchar(50) DEFAULT NULL COMMENT '厂商ID',`openid` varchar(50) NOT NULL COMMENT '平台ID',`nickname` varchar(255) DEFAULT '' COMMENT '昵称',`sex` tinyint(1) DEFAULT '0' COMMENT '性别',`country` varchar(50) DEFAULT NULL COMMENT '国家',`province` varchar(50) DEFAULT NULL COMMENT '省',`city` varchar(50) DEFAULT NULL COMMENT '市',`headimgurl` varchar(500) DEFAULT '' COMMENT '头像',`logintime` int(11) DEFAULT NULL COMMENT '登录时间',`logincount` int(11) DEFAULT '0' COMMENT '累计登陆',`expire_in` int(11) DEFAULT NULL COMMENT '过期周期(s)',`expiretime` int(11) DEFAULT NULL COMMENT '过期时间',`session_key` varchar(45) DEFAULT '' COMMENT 'session_key',`refresh_token` varchar(110) DEFAULT NULL COMMENT 'refresh_token',`access_token` varchar(110) DEFAULT NULL COMMENT 'access_token',`createtime` int(10) DEFAULT '0' COMMENT '创建时间',`updatetime` int(10) DEFAULT '0' COMMENT '更新时间',PRIMARY KEY (`id`) USING BTREE,KEY `openid` (`openid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='第三方授权';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_user_oauth`
--LOCK TABLES `ti_shopro_user_oauth` WRITE;
/*!40000 ALTER TABLE `ti_shopro_user_oauth` DISABLE KEYS */;
/*!40000 ALTER TABLE `ti_shopro_user_oauth` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_user_sign`
--DROP TABLE IF EXISTS `ti_shopro_user_sign`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_user_sign` (`id` int(11) NOT NULL AUTO_INCREMENT,`user_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户',`date` varchar(30) DEFAULT NULL COMMENT '签到日期',`score` int(11) NOT NULL DEFAULT '0' COMMENT '所得积分',`is_replenish` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否补签:0=正常,1=补签',`createtime` int(11) DEFAULT NULL COMMENT '创建时间',`updatetime` int(11) DEFAULT NULL COMMENT '更新时间',PRIMARY KEY (`id`) USING BTREE,KEY `date` (`date`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户签到';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_user_sign`
--LOCK TABLES `ti_shopro_user_sign` WRITE;
/*!40000 ALTER TABLE `ti_shopro_user_sign` DISABLE KEYS */;
/*!40000 ALTER TABLE `ti_shopro_user_sign` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_user_store`
--DROP TABLE IF EXISTS `ti_shopro_user_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_user_store` (`id` int(11) NOT NULL AUTO_INCREMENT,`user_id` int(11) NOT NULL COMMENT '用户',`store_id` int(11) NOT NULL COMMENT '门店',PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='门店管理员';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_user_store`
--LOCK TABLES `ti_shopro_user_store` WRITE;
/*!40000 ALTER TABLE `ti_shopro_user_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `ti_shopro_user_store` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_user_view`
--DROP TABLE IF EXISTS `ti_shopro_user_view`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_user_view` (`id` int(11) NOT NULL AUTO_INCREMENT,`user_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户',`goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品',`createtime` int(11) DEFAULT NULL COMMENT '添加时间',`updatetime` int(11) DEFAULT NULL COMMENT '更新时间',`deletetime` int(11) DEFAULT NULL COMMENT '删除时间',PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='用户浏览记录';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_user_view`
--LOCK TABLES `ti_shopro_user_view` WRITE;
/*!40000 ALTER TABLE `ti_shopro_user_view` DISABLE KEYS */;
INSERT INTO `ti_shopro_user_view` VALUES (1,23,3,1648550453,1648550453,NULL);
/*!40000 ALTER TABLE `ti_shopro_user_view` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_user_wallet_apply`
--DROP TABLE IF EXISTS `ti_shopro_user_wallet_apply`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_user_wallet_apply` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`user_id` int(11) NOT NULL COMMENT '提现用户',`apply_sn` varchar(60) DEFAULT NULL COMMENT '提现单号',`apply_type` enum('bank','wechat','alipay') DEFAULT NULL COMMENT '收款类型:bank=银行卡,wechat=微信零钱,alipay=支付宝',`money` decimal(10,2) NOT NULL COMMENT '提现金额',`actual_money` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '实际到账',`charge_money` decimal(10,2) NOT NULL COMMENT '手续费',`service_fee` decimal(10,3) DEFAULT NULL COMMENT '手续费率',`apply_info` varchar(255) DEFAULT NULL COMMENT '打款信息',`status` tinyint(1) DEFAULT '0' COMMENT '提现状态:-1=已拒绝,0=待审核,1=处理中,2=已处理',`platform` varchar(20) DEFAULT NULL COMMENT '平台',`payment_json` varchar(2500) DEFAULT NULL COMMENT '交易原始数据',`createtime` int(11) DEFAULT NULL COMMENT '申请时间',`updatetime` int(11) DEFAULT NULL COMMENT '操作时间',`log` text COMMENT '操作日志',PRIMARY KEY (`id`) USING BTREE,UNIQUE KEY `apply_sn` (`apply_sn`) USING BTREE COMMENT '提现单号'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户提现';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_user_wallet_apply`
--LOCK TABLES `ti_shopro_user_wallet_apply` WRITE;
/*!40000 ALTER TABLE `ti_shopro_user_wallet_apply` DISABLE KEYS */;
/*!40000 ALTER TABLE `ti_shopro_user_wallet_apply` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_user_wallet_log`
--DROP TABLE IF EXISTS `ti_shopro_user_wallet_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_user_wallet_log` (`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '日志 id',`user_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户',`wallet` decimal(10,2) NOT NULL COMMENT '变动金额',`wallet_type` enum('money','score') NOT NULL COMMENT '日志类型:money=余额,score=积分',`type` varchar(30) NOT NULL COMMENT '变动类型',`before` decimal(10,2) NOT NULL COMMENT '变动前',`after` decimal(10,2) NOT NULL COMMENT '变动后',`item_id` varchar(60) DEFAULT NULL COMMENT '项目 id',`memo` varchar(255) DEFAULT '' COMMENT '备注',`ext` varchar(512) DEFAULT NULL COMMENT '附加字段',`oper_type` enum('user','store','admin','system') NOT NULL DEFAULT 'user' COMMENT '操作人类型',`oper_id` int(11) NOT NULL DEFAULT '0' COMMENT '操作人',`createtime` int(11) DEFAULT NULL COMMENT '创建时间',`updatetime` int(11) DEFAULT NULL COMMENT '更新时间',PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='钱包日志';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_user_wallet_log`
--LOCK TABLES `ti_shopro_user_wallet_log` WRITE;
/*!40000 ALTER TABLE `ti_shopro_user_wallet_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `ti_shopro_user_wallet_log` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_verify`
--DROP TABLE IF EXISTS `ti_shopro_verify`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_verify` (`id` int(11) NOT NULL AUTO_INCREMENT,`user_id` int(11) NOT NULL COMMENT '用户',`type` varchar(30) DEFAULT 'verify' COMMENT '类型:verify=核销券',`code` varchar(20) NOT NULL COMMENT '核销码',`order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单',`order_item_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单商品',`usetime` int(11) DEFAULT NULL COMMENT '使用时间',`expiretime` int(11) DEFAULT NULL COMMENT '过期时间',`oper_type` enum('user','store','admin','system') DEFAULT NULL COMMENT '操作人类型',`oper_id` int(11) NOT NULL DEFAULT '0' COMMENT '操作人',`createtime` int(11) DEFAULT NULL COMMENT '添加时间',`updatetime` int(11) DEFAULT NULL COMMENT '更新时间',PRIMARY KEY (`id`) USING BTREE,UNIQUE KEY `code` (`code`) USING BTREE COMMENT '核销码'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='二维码';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_verify`
--LOCK TABLES `ti_shopro_verify` WRITE;
/*!40000 ALTER TABLE `ti_shopro_verify` DISABLE KEYS */;
/*!40000 ALTER TABLE `ti_shopro_verify` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_wechat`
--DROP TABLE IF EXISTS `ti_shopro_wechat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_wechat` (`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',`type` varchar(50) NOT NULL COMMENT '配置类型',`name` varchar(50) NOT NULL COMMENT '名称',`rules` varchar(255) DEFAULT NULL COMMENT '规则',`content` text NOT NULL COMMENT '内容',`createtime` int(11) NOT NULL COMMENT '创建时间',`updatetime` int(11) NOT NULL COMMENT '更新时间',PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='微信管理';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_wechat`
--LOCK TABLES `ti_shopro_wechat` WRITE;
/*!40000 ALTER TABLE `ti_shopro_wechat` DISABLE KEYS */;
/*!40000 ALTER TABLE `ti_shopro_wechat` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_shopro_wechat_fans`
--DROP TABLE IF EXISTS `ti_shopro_wechat_fans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_shopro_wechat_fans` (`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',`nickname` varchar(50) DEFAULT NULL COMMENT '粉丝昵称',`headimgurl` varchar(255) DEFAULT NULL COMMENT '粉丝头像',`openid` varchar(30) DEFAULT NULL COMMENT 'openid',`sex` int(11) DEFAULT '0' COMMENT '性别',`country` varchar(50) DEFAULT NULL COMMENT '国家',`province` varchar(50) DEFAULT NULL COMMENT '省',`city` varchar(50) DEFAULT NULL COMMENT '市',`subscribe` enum('0','1') DEFAULT NULL COMMENT '关注状态:0=取消关注,1=已关注',`subscribe_time` int(11) DEFAULT NULL COMMENT '关注时间',`createtime` int(11) DEFAULT NULL COMMENT '创建时间',`updatetime` int(11) DEFAULT NULL COMMENT '更新时间',PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='粉丝管理';
/*!40101 SET character_set_client = @saved_cs_client */;--
-- Dumping data for table `ti_shopro_wechat_fans`
--LOCK TABLES `ti_shopro_wechat_fans` WRITE;
/*!40000 ALTER TABLE `ti_shopro_wechat_fans` DISABLE KEYS */;
/*!40000 ALTER TABLE `ti_shopro_wechat_fans` ENABLE KEYS */;
UNLOCK TABLES;--
-- Table structure for table `ti_sms`
--DROP TABLE IF EXISTS `ti_sms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ti_sms` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',`event` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '事件',`mobile` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '手机号',`code` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '验证码',`times` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '验证次数',`ip` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT 'IP',`createtime` int(10) unsigned DEFAULT '0' COMMENT '创建时间',PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='短信验证码表';

http://www.mrgr.cn/p/64044056

相关文章

02 spring-boot+mybatis+elementui 的登录,文件上传,增删改查的入门级项目

前言 主要是来自于 朋友的需求 项目概况 就是一个 学生信息的增删改查 然后 具体到业务这边 使用 mybatis xml 来配置的增删改查 后端这边 springboot mybatis mysql fastjson hutool 的一个基础的增删改查的学习项目, 简单容易上手 前端这边 node14 vue element…

字典及GitHub字典爬取工具

红队API接口Fuzz字典可以用于WEB安全,渗透测试,SRC等场景 完整文件已上传知识星球,需要的朋友可加入查看。

闲话 ASP.NET Core 数据校验(二):FluentValidation 基本用法

前言 除了使用 ASP.NET Core 内置框架来校验数据,事实上,通过很多第三方框架校验数据,更具优势。 比如 FluentValidation,FluentValidation 是第三方的数据校验框架,具有许多优势,是开发人员首选的数据校验…

打印机-STM32版本 硬件部分

最终PCB EDA工程: 一、确定芯片型号 根据项目需求,梳理需要用到的功能, 电量检测:ADC 按键:IO input外部中断 LED:IO output 温度检测:ADC 电机控制:IO output 打印通讯:SPI …

分布式与一致性协议之Paxos算法(三)

Paxos算法 兰伯特关于Multi-Paxos的思考 领导者 我们可以通过引入领导者(Leader)节点来解决第一个问题。也就是说将领导者节点作为唯一提议者,如图所示。这样就不存在多个提议者同时提交提案的情况,也就不存在提案冲突的情况了。这里补充一点:在论文中…

springboot整合knfi4j

1.pom文件添加依赖 <dependency><groupId>com.github.xiaoymin</groupId><artifactId>knife4j-spring-boot-starter</artifactId><version>3.0.3</version></dependency>2.配置knfi4j @Configuration @EnableSwagger2 @Enable…

mac M2 配置item2 rzsz

背景 apple m 系列处理器安装的 homebrew 跟 intel 处理器略有不同&#xff0c;其中安装目录的区别&#xff1a; m 系列处理器安装目录为 /usr/local/bin/homebrew intel 处理器安装目录为 /opt/homebrew 问题1: 卡住 产生原因&#xff1a; m 系列使用 brew install lrzs…

Delta模拟器:iOS上的复古游戏天堂

Delta模拟器&#xff1a;iOS上的复古游戏天堂 在数字时代&#xff0c;我们有时会怀念起那些早期的电子游戏&#xff0c;它们简单、纯粹&#xff0c;带给我们无尽的乐趣。虽然现在的游戏在画质和玩法上都有了巨大的提升&#xff0c;但那种复古的感觉却始终无法替代。幸运的是&a…

06_电子设计教程基础篇(学习视频推荐)

文章目录 前言一、基础视频1、电路原理3、模电4、高频电子线路5、电力电子技术6、数学物理方法7、电磁场与电磁波8、信号系统9、自动控制原理10、通信原理11、单片机原理 二、科普视频1、工科男孙老师2、达尔闻3、爱上半导体4、华秋商城5、JT硬件乐趣6、洋桃电子 三、教学视频1…

github在开启双因素认证后无法push

github在开启了双因素认证后,无法push代码 解决办法 1.打开github,点击右上角头像,点击setting2.选择左边菜单最右下角的Developer Settings3.点击 Person access tokens,选择第二个,Tokens(classic)4.创建一个token,可以选择过期时间和权限,如果是个人使用,直接选择不过期,勾上…

向量的旋转矩阵

我们都知道&#xff0c;矩阵的乘法可以表示旋转。那么&#xff0c;这一理论的数学机理是什么呢&#xff1f;以及&#xff0c;这个旋转角度该怎么用矩阵表示呢&#xff1f; 本文用二维向量旋转来推导旋转矩阵的公式。假设&#xff0c;我们有一个向量P(x, y)&#xff0c;准备通过…

C语言-调试技巧

目录 一、调试介绍1.1 Debug和Release的介绍1.2 Windows环境调试介绍1.2.1 学会快捷键1.2.2 查看临时变量的值1.2.3 查看内存信息1.2.4 查看调用堆栈1.2.4 查看汇编信息1.2.5 查看寄存器信息 二、编程常见的错误2.1 编译型错误2.2 链接型错误2.3 运行时错误 三、易于调试的代码…

PEI是聚醚酰亚胺(Polyetherimide)主要作用是什么?

PEI是聚醚酰亚胺&#xff08;Polyetherimide&#xff09;主要作用是什么&#xff1f; 聚醚酰亚胺&#xff08;Polyetherimide&#xff0c;PEI&#xff09;作为一种高性能的工程塑料&#xff0c;具有多种优异的性能&#xff0c;因此在不同领域中有广泛的应用。其主要作用包括&…

Visual Studio安装MFC开发组件

MFC由于比较古老了&#xff0c;Visual Studio默认没有这个开发组件。最近由于一些原因&#xff0c;需要使用这个库&#xff0c;这就需要另外安装。 参考了网上的一些资料&#xff0c;根据实际使用&#xff0c;其实很多步骤不是必须的。 https://zhuanlan.zhihu.com/p/68117276…

【Scala---01】Scala『 Scala简介 | 函数式编程简介 | Scala VS Java | 安装与部署』

文章目录 1. Scala简介2. 函数式编程简介3. Scala VS Java4. 安装与部署 1. Scala简介 Scala是由于Spark的流行而兴起的。Scala是高级语言&#xff0c;Scala底层使用的是Java&#xff0c;可以看做是对Java的进一步封装&#xff0c;更加简洁&#xff0c;代码量是Java的一半。 因…

mysql刷题题后感

刷题的时候会将一些题目收藏,也会收藏错题,做完了整合一下,会有一些补充知识点。函数篇(和长篇大论的查询有交集) Q1: 查询语句select stuff(lo ina,3, 1, ve ch)结果为?love love china china love china答:stuff,删除并加入字符,STUFF(原字符, 开始位置, 删除长度,…

软件设计师:UML

UML基本概念UML(Unified Modeling Language,统一建模语言) UML词汇表包含3种构造块:事物、关系、图 事物结构事物:静态部分,如类、接口、用例等 行为事物:动态部分,如交互、状态机、活动 分组事物:包Package 注释事物:注释关系 UML中有4种关系:依赖、关联、泛化、实现…

【Mac】Photoshop 2024 for mac最新安装教程

软件介绍 Photoshop 2024是Adobe公司推出的一款图像处理软件&#xff0c;它支持Windows和Mac OS系统。Adobe Photoshop是业界领先的图像编辑和处理软件之一&#xff0c;广泛用于设计、摄影、数字绘画等领域。 Photoshop 2024的功能包括&#xff1a; 1.图像编辑&#xff1a;提…

react核心知识

1. 对 React 的理解、特性 React 是靠数据驱动视图改变的一种框架&#xff0c;它的核心驱动方法就是用其提供的 setState 方法设置 state 中的数据从而驱动存放在内存中的虚拟 DOM 树的更新 更新方法就是通过 React 的 Diff 算法比较旧虚拟 DOM 树和新虚拟 DOM 树之间的 Chan…

ElasticSearch教程入门到精通——第四部分(基于ELK技术栈elasticsearch 7.x新特性)

ElasticSearch教程入门到精通——第四部分&#xff08;基于ELK技术栈elasticsearch 7.x新特性&#xff09; 1. Elasticsearch进阶1.1 核心概念1.1.1 索引Index1.1.1.1 索引创建原则1.1.1.2 Inverted Index 1.1.2 类型Type1.1.3 文档Document1.1.4 字段Field1.1.5 映射Mapping1.…