PHP源码_众筹商城

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

运行截图

 

format,png

 

format,png

 

format,png

 

format,png

 

format,png

 

format,png

 

format,png

源码贡献

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.mzph.cn/bicheng/7846.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

PXE批量安装

系统装机的三种引导方式 u盘光盘网络装机 光盘: 1.类似于usb模式 2.刻录模式 系统安装过程 加载boot loader Boot Loader 是在操作系统内核运行之前运行的一段小程序。通过这段小程序,我们可以初始化硬件设备、建立内存空间的映射图,从…

静态分析-RIPS-源码解析记录-01

token流扫描重构部分,这一部分主要利用php的token解析api解析出来的token流,对其中的特定token进行删除、替换、对于特定的语法结构进行重构,保持php语法结构上的一致性 解析主要在lib/scanner.php中通过Tokenizer这个类来实现,也就是在main…

linux或ubuntu环境下需要自行安装vivado USB Program下载程序驱动

如果在linux或ubuntu环境下,不安装驱动是无法下载FPGA程序的。在linux或ubuntu环境下安装程序不要自动安装。 johnjohn-wang:~/vitis2021.2/Vivado/2021.2/data/xicom/cable_drivers/lin64/install_script/install_drivers$ sudo ./install_drivers

【C++】从零开始认识多态

送给大家一句话: 一个犹豫不决的灵魂,奋起抗击无穷的忧患,而内心又矛盾重重,真实生活就是如此。 ​​​​ – 詹姆斯・乔伊斯 《尤利西斯》 _φ(* ̄ω ̄)ノ_φ(* ̄ω ̄)&…

Elsevier旗下双1区TOP刊,8.8分影响因子加上超低自引率,各指标领跑计算机类SCI

【SciencePub学术】 今天小编给大家带来了一本计算机类的高分优刊解读,隶属于Elsevier出版社,JCR1区,中科院1区TOP,影响因子高达8.7,领域相符的学者可考虑! APPLIED SOFT COMPUTING 1 期刊概况 【期刊简…

3D渲染是什么?渲染100邀请码1a12

3D渲染是把3D模型转换为2D图像或动画的过程,涉及到多方面知识,这篇文章我们就来了解下。 1、3D渲染的原理 3D渲染的原理是模拟光线在三维空间中的传播和反射,根据物体在空间中的分布,计算出每个像素的颜色和亮度等数值&#xff…

⚡REST 和 SOAP 协议有什么区别?

原文链接:https://document360.com/blog/rest-vs-soap/ API 是应用程序编程接口(Application Programming Interface)的缩写。API 规定了不同的软件组件应如何以编程方式进行交互和通信。 最常见的 API 类型就是 Web API。网络应用&#xff…

笔试强训Day19 数学知识 动态规划 模拟

[编程题]小易的升级之路 题目链接&#xff1a;小易的升级之路__牛客网 思路&#xff1a; 按题目写即可 注意辗转相除法。 AC code&#xff1a; #include<iostream> using namespace std; int gcd(int a, int b) {return b ? gcd(b, a % b) : a; } int main() {int n…

HCIP的学习(13)

第五章&#xff0c;重发布和路由策略 重发布 ​ 在路由协议的边界设备上&#xff0c;将某一种路由协议的路由信息引入到另一种路由协议中&#xff0c;这个操作被称为路由引入或者路由重分发。----技术本质为重发布。 条件 必须存在ASBR设备&#xff08;路由边界设备&#x…

算法提高之树的最长路径

算法提高之树的最长路径 核心思想&#xff1a;树形dp 枚举路径的中间节点用f1[i] 表示i的子树到i的最长距离,f2[i]表示次长距离最终答案就是max(f1[i]f2[i]) #include <iostream>#include <cstring>#include <algorithm>using namespace std;const int N …

matlab

图像配准&#xff1a; %手动选择执行图片(由于程序为分开&#xff0c;此处保存的mat文件为图MRI6的信息&#xff0c;所以请选择图MRI6) [filename,pathname]uigetfile({*.jpg;*.bmp;*.tif;*.png;*.gif,All Image Files;*.*,All Files}); image imread([pathname,filename]); …

本机MySQL数据库服务启动了,但是cmd登录不上10061

注意&#xff1a;不建议安装MySQL8&#xff0c;建议直接使用phpstudy中自带的MySQL5.7 错误信息 ERROR 2003 (HY000): Cant connect to MySQL server on x.x.x.x (10061) 原因 可能是端口号错误。比如修改了my.ini中&#xff0c;或者phpstudy中数据库端口的配置&#xff0c;…

【Linux】Linux线程

一、Linux线程的概念 1.什么是线程 1.一个进程的一个执行线路叫做线程&#xff0c;线程的一个进程内部的控制序列。 2.一个进程至少有一个执行线程 3.线程在进程内部&#xff0c;本质是在进程地址空间内运行 4.操作系统将进程虚拟地址空间的资源分配给每个执行流&#xff0…

【C 数据结构-动态内存管理】3. 伙伴系统管理动态内存

文章目录 【 1. 伙伴系统的结构设计 】【 2. 分配算法 】【 3. 回收算法 】 伙伴系统 本身是一种动态管理内存的方法&#xff0c;和边界标识法的区别是&#xff1a;使用伙伴系统管理的存储空间&#xff0c;无论是空闲块还是占用块&#xff0c;大小都是 2 的 n 次幂&#xff08;…

新火种AI|挑战谷歌,OpenAI要推出搜索引擎?

作者&#xff1a;一号 编辑&#xff1a;美美 在AI革新的浪潮下&#xff0c;谷歌搜索迎来了越来越多的“挑战者”。 最近&#xff0c;据多家外媒的消息&#xff0c;有知情人士透露&#xff0c;OpenAI正计划上线一款基于ChatGPT的大型产品&#xff0c;将提供一个新的搜索引擎&…

[译]Elasticsearch _source Doc_values And Store Performance

原文地址 https://sease.io/2021/02/field-retrieval-performance-in-elasticsearch.html 在这篇博文中&#xff0c;我想从性能的角度探讨 Elasticsearch 为我们存储字段和查询时检索字段提供了哪些可能性。 事实上&#xff0c;Lucene&#xff08;Elasticsearch 和 Solr 构建的…

【WEB前端2024】开源智体世界:乔布斯3D纪念馆-第16课-跳转私信

【WEB前端2024】开源智体世界&#xff1a;乔布斯3D纪念馆-第16课-跳转私信 使用dtns.network德塔世界&#xff08;开源的智体世界引擎&#xff09;&#xff0c;策划和设计《乔布斯超大型的开源3D纪念馆》的系列教程。dtns.network是一款主要由JavaScript编写的智体世界引擎&am…

Map集合的实现类~HashMap

存储结构&#xff1a;哈希表 键重复依据是hashCode和equals方法&#xff08;键不能重复&#xff09; 添加&#xff1a; 先创建Student类&#xff0c;那么往HashSet添加的就是Student对象作为键值&#xff0c;后面的作为值 删除&#xff1a; 判断&#xff1a; 遍历&#xff1a…

就业班 第三阶段(redis) 2401--5.7 day2 redis2 哨兵(前提是做好了主从)+redis集群

1、设置密码&#xff08;redis&#xff09; 先在redis.conf里面找到这个 后面写上要设置的密码即可 2、哨兵模式 监控redis集群中master状态的的工具 在做了主从的前提下 主 从1 从2 作用 1)&#xff1a;Master状态检测 2)&#xff1a;如果Master异常&#xff0c;则会进行…

(四)JSP教程——request内置对象

request对象是将客户端浏览器数据提交给服务器端JSP页面的唯一数据通道&#xff0c;通过该通道JSP页面能够获取浏览器信息、form表单信息、URL参数信息等。 1.from表单向JSP文件传递数据 form表单是浏览器向服务器传递数据的一种基本机制&#xff0c;包含两种方式&#xff1a;…