1 Star 0 Fork 7

php—小菜鸟 / thinkphp5demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
thinkphpdemo.sql 1.45 KB
一键复制 编辑 原始数据 按行查看 历史
阿姆国之梦 提交于 2018-03-27 08:42 . (#)项目初始化
/*
Navicat MySQL Data Transfer
Source Server : 本地
Source Server Version : 50714
Source Host : localhost:3306
Source Database : thinkphpdemo
Target Server Type : MYSQL
Target Server Version : 50714
File Encoding : 65001
Date: 2018-03-05 09:27:49
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for jdlx_recharge
-- ----------------------------
DROP TABLE IF EXISTS `jdlx_recharge`;
CREATE TABLE `jdlx_recharge` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`money` decimal(10,2) DEFAULT NULL,
`status` char(1) DEFAULT NULL COMMENT '状态 1:充值中 2:充值成功',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of jdlx_recharge
-- ----------------------------
INSERT INTO `jdlx_recharge` VALUES ('1', '0.01', '1');
INSERT INTO `jdlx_recharge` VALUES ('2', '0.01', '1');
INSERT INTO `jdlx_recharge` VALUES ('3', '0.01', '1');
INSERT INTO `jdlx_recharge` VALUES ('4', '0.01', '1');
INSERT INTO `jdlx_recharge` VALUES ('5', '0.01', '1');
INSERT INTO `jdlx_recharge` VALUES ('6', '0.01', '1');
INSERT INTO `jdlx_recharge` VALUES ('7', '0.01', '1');
INSERT INTO `jdlx_recharge` VALUES ('8', '0.01', '1');
INSERT INTO `jdlx_recharge` VALUES ('9', null, '1');
INSERT INTO `jdlx_recharge` VALUES ('10', null, '1');
INSERT INTO `jdlx_recharge` VALUES ('11', null, '1');
INSERT INTO `jdlx_recharge` VALUES ('12', '0.01', '1');
PHP
1
https://gitee.com/recallg/thinkphp5demo.git
git@gitee.com:recallg/thinkphp5demo.git
recallg
thinkphp5demo
thinkphp5demo
master

搜索帮助