🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
活动表 aid: 活动编号 title: 活动名称 desc: 活动描述 imgurl: 活动图片 starttime:活动开始时间 endtime:活动结束时间 totalpeople:总报名人数 totaltickets:总投票人数 totalaccess:总访问量 votelimit: 每个选手每个活动每天投票次数 选手表 cid: 选手编号(流水号) aid: 活动编号 cname:选手姓名 cdeclaration:宣言 mobile: 手机号码 sex:性别 address: 收获地址 hots: 热度 gifts: 礼物数 tickets:票数 imgurl: 封面图 选手图片表 id: 流水号 cid: 选手编号 imgurl: 图片 投票记录表(微信应用搭载在一个微信服务号) id: 流水号 openid: 登录人的ip cid: 选手编号 aid: 活动编号 votetime: 投票时间 奖品表 pid: 流水号 aid: 活动编号 level: 奖品类别, 一等奖,二等奖,三等奖 pname: 奖品名称 pcount: 奖品数量 pimg: 奖品图片 礼物表 lwid 礼物编号 lwname 礼物名称 lwimg 礼物图片 dianshu 点数(1点=1票) price 钱数 礼物记录表 id: 流水号 openid: 登录人的ip cid: 选手编号 aid: 活动编号 votetime: 买礼物时间 lwid 礼物id lwcount 礼物个数 price: 礼物的单价 获奖表: cid: aid: gid: 建表脚本 ~~~ /* MySQL Data Transfer Source Host: 10.25.42.131 Source Database: vote Target Host: 10.25.42.131 Target Database: vote Date: 2018-4-2 16:25:19 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for activity -- ---------------------------- CREATE TABLE `activity` ( `aid` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `desc` varchar(255) DEFAULT NULL, `imgurl` varchar(255) DEFAULT NULL, `starttime` datetime DEFAULT NULL, `endtime` datetime DEFAULT NULL, `totalpeople` int(11) DEFAULT NULL, `totaltickets` int(11) DEFAULT NULL, `totalaccess` int(11) DEFAULT NULL, `votelimit` int(11) DEFAULT NULL, PRIMARY KEY (`aid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for candidate -- ---------------------------- CREATE TABLE `candidate` ( `cid` int(11) NOT NULL AUTO_INCREMENT, `aid` int(11) DEFAULT NULL, `cname` varchar(255) DEFAULT NULL, `cdeclaration` varchar(255) DEFAULT NULL, `mobile` varchar(255) DEFAULT NULL, `sex` char(2) DEFAULT NULL, `address` varchar(255) DEFAULT NULL, `hots` int(11) DEFAULT NULL, `gifts` int(11) DEFAULT NULL, `tickets` int(11) DEFAULT NULL, `imgurl` varchar(255) DEFAULT NULL, PRIMARY KEY (`cid`) ) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for images -- ---------------------------- CREATE TABLE `images` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) DEFAULT NULL, `imgurl` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for lw -- ---------------------------- CREATE TABLE `lw` ( `lwid` int(11) NOT NULL AUTO_INCREMENT, `lwname` varchar(255) DEFAULT NULL, `lwimg` varchar(255) DEFAULT NULL, `dianshu` int(11) DEFAULT NULL, `price` double DEFAULT NULL, PRIMARY KEY (`lwid`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for lwrecord -- ---------------------------- CREATE TABLE `lwrecord` ( `id` int(11) NOT NULL AUTO_INCREMENT, `openid` varchar(255) DEFAULT NULL, `cid` int(11) DEFAULT NULL, `lwid` int(11) DEFAULT NULL, `lwcount` int(11) DEFAULT NULL, `aid` int(11) DEFAULT NULL, `stime` datetime DEFAULT NULL, `price` double DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for prize -- ---------------------------- CREATE TABLE `prize` ( `pid` int(11) NOT NULL AUTO_INCREMENT, `aid` int(11) DEFAULT NULL, `level` varchar(255) DEFAULT NULL, `pname` varchar(255) DEFAULT NULL, `pcount` int(11) DEFAULT NULL, `pimg` varchar(255) DEFAULT NULL, PRIMARY KEY (`pid`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for voterecord -- ---------------------------- CREATE TABLE `voterecord` ( `id` int(11) NOT NULL AUTO_INCREMENT, `openid` varchar(255) DEFAULT NULL, `cid` int(11) DEFAULT NULL, `aid` int(11) DEFAULT NULL, `votetime` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8481 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records -- ---------------------------- INSERT INTO `activity` VALUES ('1', '最美女神', '最美女神最美女神最美女神', 'a.jpg', '2018-03-25 15:24:47', '2018-04-04 15:24:54', '2', '0', '0', '2'); INSERT INTO `candidate` VALUES ('1', '1', '小美', '我最美', '15940470000', '女', '浑南区', '0', '0', '0', '1.png'); INSERT INTO `candidate` VALUES ('2', '1', '小丽', '我要赢', '15940471111', '女', '大东区', '0', '0', '0', '2.png'); INSERT INTO `images` VALUES ('1', '1', '1.png'); INSERT INTO `images` VALUES ('2', '1', '2.png'); INSERT INTO `images` VALUES ('3', '1', '3.png'); INSERT INTO `images` VALUES ('4', '2', '1.png'); INSERT INTO `images` VALUES ('5', '2', '2.png'); INSERT INTO `lw` VALUES ('1', '气球', '1.png', '10', '1.99'); INSERT INTO `lw` VALUES ('2', '小花', '2.png', '5', '0.99'); INSERT INTO `lw` VALUES ('3', '鱼丸', '3.png', '20', '2.99'); INSERT INTO `lw` VALUES ('4', '飞机', '1.png', '50', '6.99'); INSERT INTO `lw` VALUES ('5', '砖石', 'a.jpg', '100', '10.99'); INSERT INTO `prize` VALUES ('1', '1', '1', 'iphonex', '1', '1.png'); INSERT INTO `prize` VALUES ('2', '1', '2', 'iwatch', '2', '2.png'); INSERT INTO `prize` VALUES ('3', '1', '3', 'bike', '3', '3.png'); ~~~