123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968 |
- -- MySQL dump 10.16 Distrib 10.1.32-MariaDB, for Linux (x86_64)
- --
- -- Host: 0.0.0.0 Database: wonderful
- -- ------------------------------------------------------
- -- Server version 10.1.32-MariaDB
- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
- /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
- /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
- /*!40101 SET NAMES utf8 */;
- /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
- /*!40103 SET TIME_ZONE='+00:00' */;
- /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
- /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
- /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
- /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
- --
- -- Table structure for table `wonderful_act_comment`
- --
- DROP TABLE IF EXISTS `wonderful_act_comment`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_act_comment` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
- `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '评论类别',
- `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
- `num_up` int(11) NOT NULL DEFAULT '0' COMMENT '点赞数',
- `content` text COMMENT '内容',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '评论时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_act_invite`
- --
- DROP TABLE IF EXISTS `wonderful_act_invite`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_act_invite` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `source_uid` int(11) NOT NULL DEFAULT '0' COMMENT '邀请者',
- `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '邀请类型',
- `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '被邀请者',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_act_invite`
- --
- LOCK TABLES `wonderful_act_invite` WRITE;
- /*!40000 ALTER TABLE `wonderful_act_invite` DISABLE KEYS */;
- /*!40000 ALTER TABLE `wonderful_act_invite` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_act_like`
- --
- DROP TABLE IF EXISTS `wonderful_act_like`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_act_like` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
- `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '喜欢类别',
- `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_act_live_comment`
- --
- DROP TABLE IF EXISTS `wonderful_act_live_comment`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_act_live_comment` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
- `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '评论类别',
- `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
- `content` text COMMENT '内容',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '评论时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_act_live_comment`
- --
- LOCK TABLES `wonderful_act_live_comment` WRITE;
- /*!40000 ALTER TABLE `wonderful_act_live_comment` DISABLE KEYS */;
- /*!40000 ALTER TABLE `wonderful_act_live_comment` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_act_live_note`
- --
- DROP TABLE IF EXISTS `wonderful_act_live_note`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_act_live_note` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
- `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否发送状态提醒-1未发送,2已发送',
- `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
- `formid` varchar(200) DEFAULT NULL COMMENT 'FORMID',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '提醒时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_act_live_note`
- --
- LOCK TABLES `wonderful_act_live_note` WRITE;
- /*!40000 ALTER TABLE `wonderful_act_live_note` DISABLE KEYS */;
- /*!40000 ALTER TABLE `wonderful_act_live_note` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_act_score`
- --
- DROP TABLE IF EXISTS `wonderful_act_score`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_act_score` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
- `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '订阅类别',
- `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
- `user_log_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户积分日志ID',
- `score` varchar(80) DEFAULT NULL COMMENT '积分',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_act_share`
- --
- DROP TABLE IF EXISTS `wonderful_act_share`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_act_share` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
- `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '分享类别',
- `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
- `content` text COMMENT '内容',
- `num` int(11) NOT NULL DEFAULT '0' COMMENT '分享次数',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '分享时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_act_share`
- --
- LOCK TABLES `wonderful_act_share` WRITE;
- /*!40000 ALTER TABLE `wonderful_act_share` DISABLE KEYS */;
- /*!40000 ALTER TABLE `wonderful_act_share` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_act_share_reflux`
- --
- DROP TABLE IF EXISTS `wonderful_act_share_reflux`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_act_share_reflux` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `source_uid` int(11) NOT NULL DEFAULT '0' COMMENT '分享者',
- `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '分享类别',
- `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '回流用户',
- `user_type` tinyint(1) NOT NULL DEFAULT '3' COMMENT '是否新用户',
- `gid` varchar(80) DEFAULT NULL COMMENT '群组ID',
- `share_id` int(11) NOT NULL DEFAULT '0' COMMENT '分享ID',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_act_share_reflux`
- --
- LOCK TABLES `wonderful_act_share_reflux` WRITE;
- /*!40000 ALTER TABLE `wonderful_act_share_reflux` DISABLE KEYS */;
- /*!40000 ALTER TABLE `wonderful_act_share_reflux` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_act_subscribe`
- --
- DROP TABLE IF EXISTS `wonderful_act_subscribe`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_act_subscribe` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
- `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '订阅类别',
- `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
- `source` tinyint(1) NOT NULL DEFAULT '0' COMMENT '来源',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_act_watch`
- --
- DROP TABLE IF EXISTS `wonderful_act_watch`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_act_watch` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
- `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '类别',
- `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_audit_data`
- --
- DROP TABLE IF EXISTS `wonderful_audit_data`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_audit_data` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `type` int(11) NOT NULL DEFAULT '1' COMMENT '类型',
- `data_id` varchar(80) DEFAULT NULL COMMENT '数据ID',
- `name` varchar(80) DEFAULT NULL COMMENT '标题',
- `audit` int(11) NOT NULL DEFAULT '1' COMMENT '审核状态',
- `pdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- `status` int(11) NOT NULL DEFAULT '1' COMMENT '上线状态',
- `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属栏目',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_code_config`
- --
- DROP TABLE IF EXISTS `wonderful_code_config`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_code_config` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '系统ID',
- `product_id` int(11) NOT NULL DEFAULT '0' COMMENT '选择小刊',
- `num` varchar(32) DEFAULT NULL COMMENT '兑换码数量',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- `product_num` varchar(32) NOT NULL DEFAULT '1' COMMENT '兑换本数',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_code_info`
- --
- DROP TABLE IF EXISTS `wonderful_code_info`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_code_info` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `product_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊',
- `code` varchar(32) DEFAULT NULL COMMENT '兑换码',
- `type` int(11) NOT NULL DEFAULT '1' COMMENT '使用状态',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户信息',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `ldate` int(11) NOT NULL DEFAULT '0' COMMENT '领取时间',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间',
- `product_num` int(11) NOT NULL DEFAULT '1' COMMENT '兑换本数',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_content_article`
- --
- DROP TABLE IF EXISTS `wonderful_content_article`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_content_article` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(80) DEFAULT NULL COMMENT '标题',
- `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属栏目',
- `author_id` int(11) NOT NULL DEFAULT '1' COMMENT '作者',
- `tag` text COMMENT '标签',
- `pic_cover` varchar(150) DEFAULT NULL COMMENT '封面图-4:3比例的图片',
- `num_add_view` int(11) NOT NULL DEFAULT '0' COMMENT '浏览量基数',
- `num_view` int(11) NOT NULL DEFAULT '0' COMMENT '浏览量PV',
- `num_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢数',
- `num_comment` int(11) NOT NULL DEFAULT '0' COMMENT '评论数',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `admin_founder` int(11) NOT NULL DEFAULT '1' COMMENT '创建人',
- `admin_editor` int(11) NOT NULL DEFAULT '1' COMMENT '操作人',
- `pdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
- `share` text COMMENT '分享海报-选择海报库中的海报',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `udate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
- `content` text COMMENT '内容',
- `audit` int(11) NOT NULL DEFAULT '1' COMMENT '审核状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- `num_add_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢基数',
- `function` varchar(100) NOT NULL DEFAULT '1' COMMENT '功能选择',
- `share_yes` int(11) NOT NULL DEFAULT '1' COMMENT '是否显示分享按钮',
- `share_title` varchar(100) NOT NULL COMMENT '分享标题',
- `share_pic` varchar(150) NOT NULL COMMENT '分享图片',
- `share_content` varchar(200) NOT NULL COMMENT '分享内容',
- `status` int(11) NOT NULL DEFAULT '1' COMMENT '发布状态',
- `wechat` int(11) NOT NULL DEFAULT '1' COMMENT '是否公众号文章',
- `wechat_data_id` int(11) NOT NULL DEFAULT '1' COMMENT '微信数据ID',
- `pic_cover_169` varchar(150) NOT NULL COMMENT '16:9封面图-请上传16:9比例的封面图',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_content_author`
- --
- DROP TABLE IF EXISTS `wonderful_content_author`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_content_author` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(32) DEFAULT NULL COMMENT '作者名称',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_content_cate`
- --
- DROP TABLE IF EXISTS `wonderful_content_cate`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_content_cate` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(32) DEFAULT NULL COMMENT '栏目名称',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_content_cate`
- --
- LOCK TABLES `wonderful_content_cate` WRITE;
- /*!40000 ALTER TABLE `wonderful_content_cate` DISABLE KEYS */;
- INSERT INTO `wonderful_content_cate` VALUES (1,'精美',6,1,1542000944),(2,'视频',5,1,1542002379),(3,'时尚',4,1,1542447602),(4,'美妆',3,1,1542447612),(5,'娱乐',2,1,1542447636),(6,'音乐',1,1,1542447653),(7,'生活',0,1,1542447678),(8,'test',1,2,1542447688);
- /*!40000 ALTER TABLE `wonderful_content_cate` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_journal_active`
- --
- DROP TABLE IF EXISTS `wonderful_journal_active`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_journal_active` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `info_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊',
- `status` int(11) NOT NULL DEFAULT '1' COMMENT '活动状态',
- `name` varchar(80) DEFAULT NULL COMMENT '活动标题',
- `start` int(11) NOT NULL DEFAULT '0' COMMENT '活动开始时间',
- `end` int(11) NOT NULL DEFAULT '0' COMMENT '活动结束时间',
- `desc` varchar(800) DEFAULT NULL COMMENT '活动描述',
- `invite_num` int(11) NOT NULL DEFAULT '10' COMMENT '邀请多少个好友开启免费阅读',
- `invite_score` int(11) NOT NULL DEFAULT '2' COMMENT '每邀请一个好友获得积分',
- `invite_title` varchar(80) DEFAULT NULL COMMENT '邀请好友标题',
- `invite_desc` varchar(800) DEFAULT NULL COMMENT '邀请好友标题介绍',
- `content` text COMMENT '活动规则说明',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_journal_buy`
- --
- DROP TABLE IF EXISTS `wonderful_journal_buy`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_journal_buy` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `info_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊',
- `buy_score` int(11) NOT NULL DEFAULT '20' COMMENT '每购买一本刊获得多少积分',
- `buy_title` varchar(80) DEFAULT NULL COMMENT '购买小刊标题',
- `buy_desc` varchar(800) DEFAULT NULL COMMENT '购买小刊介绍',
- `buy_content` text COMMENT '购买说明',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_journal_buy_num`
- --
- DROP TABLE IF EXISTS `wonderful_journal_buy_num`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_journal_buy_num` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `info_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊',
- `name` varchar(80) DEFAULT NULL COMMENT '购买名称-一般为“购买N本”,如购买1本',
- `price` varchar(50) DEFAULT NULL COMMENT '购买时的标价',
- `cash` varchar(50) DEFAULT NULL COMMENT '支付价格-实际支付价格,单位元,直接填写数字即可',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间',
- `score` varchar(80) NOT NULL COMMENT '增加积分数-直接填写购买当前本数设置,用户能获得的积分',
- `num` int(11) NOT NULL DEFAULT '1' COMMENT '购买本数-直接填写购买的小刊本数数字即可',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_journal_cate`
- --
- DROP TABLE IF EXISTS `wonderful_journal_cate`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_journal_cate` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(32) DEFAULT NULL COMMENT '分类名称',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- `title` varchar(32) NOT NULL COMMENT '页面TITLE-公众号支付中的页面标题',
- `cover` varchar(150) NOT NULL COMMENT '封面图-公众号支付中的封面图,图片尺寸460*759PX或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
- `logo` varchar(150) NOT NULL COMMENT 'LOGO图-公众号支付中的LOGO图,图片尺寸100*100PX或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
- `desc` text NOT NULL COMMENT '简介',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_journal_cate`
- --
- LOCK TABLES `wonderful_journal_cate` WRITE;
- /*!40000 ALTER TABLE `wonderful_journal_cate` DISABLE KEYS */;
- INSERT INTO `wonderful_journal_cate` VALUES (1,'Jstyle精美',1,1,1543592709,'默认','{uploadRes}1/2018/12/01/724f243ea0aa1a5da006c822b4131109.jpg','{uploadRes}1/2018/12/01/cac3f768ba3edd90b4fb64e35d6337c9.jpg','我的时尚生活');
- /*!40000 ALTER TABLE `wonderful_journal_cate` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_journal_content`
- --
- DROP TABLE IF EXISTS `wonderful_journal_content`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_journal_content` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `info_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊',
- `type` int(11) NOT NULL DEFAULT '3' COMMENT '类型',
- `name` varchar(80) DEFAULT NULL COMMENT '标题',
- `focus` text COMMENT '焦点图',
- `author_id` int(11) NOT NULL DEFAULT '1' COMMENT '作者',
- `content` text COMMENT '内容',
- `pic` varchar(150) DEFAULT NULL COMMENT '图片',
- `is_button` int(11) NOT NULL DEFAULT '1' COMMENT '是否显示保存按钮',
- `article_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联图文',
- `vod_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联视频',
- `live_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联直播',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '页号',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
- `button_name` varchar(80) NOT NULL DEFAULT '保存图片' COMMENT '保存按钮文字内容',
- `button_color` varchar(10) NOT NULL DEFAULT '#000000' COMMENT '保存按钮文字颜色',
- `text` text NOT NULL COMMENT '文字设置',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_journal_content_text`
- --
- DROP TABLE IF EXISTS `wonderful_journal_content_text`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_journal_content_text` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `info_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊',
- `content_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊内页',
- `name` varchar(800) DEFAULT NULL COMMENT '文字内容',
- `location` int(11) NOT NULL DEFAULT '1' COMMENT '文字显示位置',
- `color` varchar(10) DEFAULT NULL COMMENT '文字颜色',
- `bgcolor` varchar(10) DEFAULT NULL COMMENT '背景颜色',
- `size` int(11) NOT NULL DEFAULT '16' COMMENT '文字大小-直接输入像素数字',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_journal_info`
- --
- DROP TABLE IF EXISTS `wonderful_journal_info`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_journal_info` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(180) DEFAULT NULL COMMENT '杂志标题',
- `subname` varchar(80) DEFAULT NULL COMMENT '子标题-一般为杂志的期数,如第1期',
- `pic_cover` varchar(150) DEFAULT NULL COMMENT '列表页封面图-4:3比例的图片',
- `pic_view_cover` varchar(150) DEFAULT NULL COMMENT '封面图-1:1比例的图片',
- `pic_view_bg` text COMMENT '全屏背景图-进入小刊阅读页之前的全屏背景图,可以多张切换,尽量保持在5张之内',
- `num_add_ding` int(11) NOT NULL DEFAULT '0' COMMENT '订阅数基数',
- `num_ding` int(11) NOT NULL DEFAULT '0' COMMENT '订阅数',
- `num_add_view` int(11) NOT NULL DEFAULT '0' COMMENT '阅读数基数',
- `num_view` int(11) NOT NULL DEFAULT '0' COMMENT '阅读数',
- `num_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢数',
- `num_comment` int(11) NOT NULL DEFAULT '0' COMMENT '评论数',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `audit` int(11) NOT NULL DEFAULT '1' COMMENT '上线状态',
- `admin_founder` int(11) NOT NULL DEFAULT '1' COMMENT '创建人',
- `admin_editor` int(11) NOT NULL DEFAULT '1' COMMENT '操作人',
- `pdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
- `share` text COMMENT '分享海报-选择海报库中的海报',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `udate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- `num_add_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢基数',
- `status` int(11) NOT NULL DEFAULT '1' COMMENT '上线状态',
- `buy` int(11) NOT NULL DEFAULT '1' COMMENT '小刊是否收费',
- `share_yes` int(11) NOT NULL DEFAULT '1' COMMENT '是否显示分享按钮',
- `share_title` varchar(100) NOT NULL COMMENT '分享标题',
- `share_pic` varchar(150) NOT NULL COMMENT '分享图片',
- `share_content` varchar(200) NOT NULL COMMENT '分享内容',
- `pic_gd` varchar(150) NOT NULL COMMENT '小刊推广图-上传图片比例为750X1128PX',
- `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '小刊分类',
- `cash` varchar(50) NOT NULL COMMENT '单本支付价格-实际的小刊单本支付价格,单位元,直接填写数字即可',
- `score` varchar(80) NOT NULL DEFAULT '20' COMMENT '购买增加积分数-直接填写购买单本小刊的积分数,设置之后,积分规则里的设置将失效,如果设置为0,则按照积分规则进行增加积分',
- `dh_score` varchar(80) NOT NULL DEFAULT '20' COMMENT '兑换增加积分数-直接填写兑换单本小刊的积分数,设置之后,积分规则里的设置将失效,如果设置为0,则按照积分规则进行增加积分',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_journal_order`
- --
- DROP TABLE IF EXISTS `wonderful_journal_order`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_journal_order` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `order_id` varchar(100) DEFAULT NULL COMMENT '订单ID',
- `name` varchar(80) DEFAULT NULL COMMENT '订单名称',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户ID',
- `product_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊',
- `type` int(11) NOT NULL DEFAULT '1' COMMENT '支付方式',
- `notice` int(11) NOT NULL DEFAULT '0' COMMENT '模板消息提醒次数',
- `cash` varchar(50) DEFAULT NULL COMMENT '支付金额',
- `code` varchar(50) DEFAULT NULL COMMENT '使用的兑换码',
- `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '订单状态',
- `tk_time` int(11) NOT NULL DEFAULT '0' COMMENT '退款时间',
- `tk_admin` int(11) NOT NULL DEFAULT '1' COMMENT '退款审核人',
- `tk_desc` varchar(300) DEFAULT NULL COMMENT '退款备注',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '下单时间',
- `info` varchar(300) DEFAULT NULL COMMENT '备注',
- `mobile` varchar(300) DEFAULT NULL COMMENT '手机号',
- `source_uid` int(11) NOT NULL COMMENT '邀请人',
- `buy_id` int(11) NOT NULL COMMENT '购买本数',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_live_active`
- --
- DROP TABLE IF EXISTS `wonderful_live_active`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_live_active` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(300) DEFAULT NULL COMMENT '活动名称',
- `live_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属直播云',
- `status` int(11) NOT NULL DEFAULT '2' COMMENT '上线状态',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_live_info`
- --
- DROP TABLE IF EXISTS `wonderful_live_info`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_live_info` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(300) DEFAULT NULL COMMENT '配置名称',
- `type` int(11) NOT NULL DEFAULT '1' COMMENT '所属云',
- `space` varchar(300) DEFAULT NULL COMMENT '云空间名-请提前建好云空间,后续会迭代优化,增加云空间的创建和更新,本版本暂时使用已经创建好的云空间',
- `appkey` varchar(80) DEFAULT NULL COMMENT 'APPKEY',
- `appsecret` varchar(200) DEFAULT NULL COMMENT 'APPSECRET',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
- `domain_publish` varchar(200) NOT NULL COMMENT '推流域名',
- `domain_live_rtmp` varchar(200) NOT NULL COMMENT '高清直播域名',
- `domain_live_hls` varchar(200) NOT NULL COMMENT '标清直播域名',
- `domain_live_hdl` varchar(200) NOT NULL COMMENT '普清直播域名',
- `domain_live_pic` varchar(200) NOT NULL COMMENT '直播截图域名',
- `host` varchar(800) NOT NULL COMMENT '存储空间域名',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_live_info`
- --
- LOCK TABLES `wonderful_live_info` WRITE;
- /*!40000 ALTER TABLE `wonderful_live_info` DISABLE KEYS */;
- INSERT INTO `wonderful_live_info` VALUES (1,'七牛云',1,'jstylezhibo','GYeUlvzvJdJ5qZKg6gP_bdgV6eXEiRqFQDB6x6pI','oAkB8PBEwephCigdApKSM3sPvXvEPLYcuioXh09Z',1,1542001040,'pili-publish.jstyle.cn','pili-live-rtmp.jstyle.cn','pili-live-hls.jstyle.cn','pili-live-hdl.jstyle.cn','pili-live-snapshot.jstyle.cn','http://7.jstyle.cn/');
- /*!40000 ALTER TABLE `wonderful_live_info` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_live_stream`
- --
- DROP TABLE IF EXISTS `wonderful_live_stream`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_live_stream` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `live_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属直播云',
- `active_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属活动',
- `name` varchar(300) DEFAULT NULL COMMENT '流名称',
- `key` varchar(300) DEFAULT NULL COMMENT '流标识-流标识在直播空间中唯一,可包含 字母、数字、中划线、下划线;1 ~ 200 个字符长,对应云上的流名称。\r\n',
- `times` varchar(30) DEFAULT NULL COMMENT '直播时长-直接输入小时数,默认为100天',
- `status` int(11) NOT NULL DEFAULT '1' COMMENT '流状态',
- `live_date` int(11) NOT NULL DEFAULT '0' COMMENT '上次获取推流地址的时间',
- `live` varchar(800) DEFAULT NULL COMMENT '推流地址',
- `url_rtmp` varchar(800) DEFAULT NULL COMMENT '高清地址',
- `url_hls` varchar(800) DEFAULT NULL COMMENT '标清地址',
- `url_hdl` varchar(800) DEFAULT NULL COMMENT '普清地址',
- `url_pic` varchar(800) DEFAULT NULL COMMENT '直播截图地址',
- `info` text COMMENT '直播信息',
- `disabled` int(11) NOT NULL DEFAULT '1' COMMENT '禁播流',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_live_stream_ios_log`
- --
- DROP TABLE IF EXISTS `wonderful_live_stream_ios_log`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_live_stream_ios_log` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `live_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属直播云',
- `active_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属活动',
- `stream_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属直播流',
- `sdate` int(11) NOT NULL DEFAULT '0' COMMENT '开始时间',
- `edate` int(11) NOT NULL DEFAULT '0' COMMENT '结束时间',
- `url_m3u8` varchar(800) DEFAULT NULL COMMENT '直播回放地址',
- `url_mp4` varchar(800) DEFAULT NULL COMMENT '直播回放地址',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_live_stream_log`
- --
- DROP TABLE IF EXISTS `wonderful_live_stream_log`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_live_stream_log` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `live_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属直播云',
- `active_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属活动',
- `stream_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属直播流',
- `sdate` int(11) NOT NULL DEFAULT '0' COMMENT '开始时间',
- `edate` int(11) NOT NULL DEFAULT '0' COMMENT '结束时间',
- `url_m3u8` varchar(800) DEFAULT NULL COMMENT '直播回放地址',
- `url_mp4` varchar(800) DEFAULT NULL COMMENT '直播回放地址',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_main_config`
- --
- DROP TABLE IF EXISTS `wonderful_main_config`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_main_config` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '系统ID',
- `name` varchar(32) DEFAULT NULL COMMENT '系统名称',
- `info` text COMMENT '系统介绍',
- `logo` varchar(150) DEFAULT NULL COMMENT 'LOGO图片',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- `article_share_name` varchar(100) NOT NULL DEFAULT '喜欢就邀请好友一起阅读' COMMENT '图文详情页分享文字设置',
- `vod_share_name` varchar(100) NOT NULL DEFAULT '喜欢就邀请好友一起阅读' COMMENT '视频详情页分享文字设置',
- `live_share_name` varchar(100) NOT NULL DEFAULT '喜欢就邀请好友一起阅读' COMMENT '直播详情页分享文字设置',
- `ios_pay` int(11) NOT NULL DEFAULT '1' COMMENT 'IOS支付设置',
- `ios_pay_pic` varchar(150) NOT NULL COMMENT 'IOS支付引导图-IOS支付引导图',
- `service_name` varchar(100) NOT NULL COMMENT '公众号名称',
- `service_text` varchar(100) NOT NULL DEFAULT 'JSTYLE精美电子刊' COMMENT '公众号支付成功时的小程序名称',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_main_config`
- --
- LOCK TABLES `wonderful_main_config` WRITE;
- /*!40000 ALTER TABLE `wonderful_main_config` DISABLE KEYS */;
- INSERT INTO `wonderful_main_config` VALUES (1,'Jstyle精美','风格,灵感,态度,JSTYLE 精美——我的时尚指南','',1542006576,'喜欢就邀请好友一起阅读','喜欢就邀请好友一起看','喜欢就邀请好友一起看',2,'{uploadRes}1/2018/12/01/7488e6a0f2a822cdbe0a2f6058121cbe.jpg','jstylecn','JSTYLE精美');
- /*!40000 ALTER TABLE `wonderful_main_config` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_manage_admin`
- --
- DROP TABLE IF EXISTS `wonderful_manage_admin`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_manage_admin` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '管理员ID',
- `username` varchar(24) DEFAULT NULL COMMENT '管理员名',
- `email` varchar(150) DEFAULT NULL COMMENT '邮箱-可用于登录,请准确填写,不允许重复',
- `mobile` varchar(32) DEFAULT NULL COMMENT '手机号',
- `password` varchar(64) DEFAULT NULL COMMENT '管理员密码',
- `config` int(11) NOT NULL DEFAULT '1' COMMENT '后台配置',
- `role` varchar(100) DEFAULT NULL COMMENT '角色',
- `group` int(11) NOT NULL DEFAULT '1' COMMENT '分组',
- `top` text COMMENT '头部菜单-这里的头部菜单如果设置,则会覆盖角色中的头部菜单',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
- `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_manage_admin`
- --
- LOCK TABLES `wonderful_manage_admin` WRITE;
- /*!40000 ALTER TABLE `wonderful_manage_admin` DISABLE KEYS */;
- INSERT INTO `wonderful_manage_admin` VALUES (1,'admin@admin.com','admin@admin.com',NULL,'8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92',1,'1',1,NULL,1,1,1542000852),(2,'孟','mengyu@meixiaokan.com','18712331230','8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92',1,'3',1,NULL,1,2,1542459209);
- /*!40000 ALTER TABLE `wonderful_manage_admin` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_manage_admin_role`
- --
- DROP TABLE IF EXISTS `wonderful_manage_admin_role`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_manage_admin_role` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `admin_id` int(11) NOT NULL DEFAULT '0' COMMENT '管理员ID',
- `role_id` int(11) NOT NULL DEFAULT '0' COMMENT '角色ID',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_manage_admin_role`
- --
- LOCK TABLES `wonderful_manage_admin_role` WRITE;
- /*!40000 ALTER TABLE `wonderful_manage_admin_role` DISABLE KEYS */;
- /*!40000 ALTER TABLE `wonderful_manage_admin_role` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_manage_auth`
- --
- DROP TABLE IF EXISTS `wonderful_manage_auth`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_manage_auth` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `project` varchar(50) DEFAULT NULL COMMENT '项目KEY',
- `project_name` varchar(50) DEFAULT NULL COMMENT '项目名',
- `name` varchar(50) DEFAULT NULL COMMENT '权限名',
- `auth_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级权限',
- `key` varchar(100) DEFAULT NULL COMMENT '权限KEY',
- `value` varchar(30) DEFAULT NULL COMMENT '对应的值',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_manage_auth`
- --
- LOCK TABLES `wonderful_manage_auth` WRITE;
- /*!40000 ALTER TABLE `wonderful_manage_auth` DISABLE KEYS */;
- /*!40000 ALTER TABLE `wonderful_manage_auth` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_manage_config`
- --
- DROP TABLE IF EXISTS `wonderful_manage_config`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_manage_config` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '配置ID',
- `name` varchar(32) DEFAULT NULL COMMENT '配置名',
- `template` int(1) NOT NULL DEFAULT '1' COMMENT '后台模板',
- `title` varchar(32) DEFAULT NULL COMMENT '后台TITLE',
- `info` varchar(40) DEFAULT NULL COMMENT '控制台欢迎标题',
- `content` text COMMENT '控制台欢迎内容',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_manage_config`
- --
- LOCK TABLES `wonderful_manage_config` WRITE;
- /*!40000 ALTER TABLE `wonderful_manage_config` DISABLE KEYS */;
- INSERT INTO `wonderful_manage_config` VALUES (1,'默认配置',1,'精美时尚','','',1,1542000853);
- /*!40000 ALTER TABLE `wonderful_manage_config` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_manage_cron`
- --
- DROP TABLE IF EXISTS `wonderful_manage_cron`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_manage_cron` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(32) DEFAULT NULL COMMENT '任务名',
- `project` varchar(30) DEFAULT NULL COMMENT '项目',
- `interface` varchar(100) DEFAULT NULL COMMENT '接口(命令行)',
- `ldate` int(11) NOT NULL DEFAULT '0' COMMENT '执行时间',
- `time` int(11) NOT NULL DEFAULT '0' COMMENT '时间间隔(为0则执行一次)',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_manage_cron`
- --
- LOCK TABLES `wonderful_manage_cron` WRITE;
- /*!40000 ALTER TABLE `wonderful_manage_cron` DISABLE KEYS */;
- INSERT INTO `wonderful_manage_cron` VALUES (1,'定时获取直播流状态','live','lib/cron.getStream',1543889941,3000,1,1542106471),(2,'定时获取公众号数据','spider','lib/get.wechat',1543890237,1000,1,1542592606),(3,'获取回放地址','live','lib/cron.getUrl',1543890104,800,1,1542698116);
- /*!40000 ALTER TABLE `wonderful_manage_cron` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_manage_group`
- --
- DROP TABLE IF EXISTS `wonderful_manage_group`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_manage_group` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '组ID',
- `name` varchar(50) DEFAULT NULL COMMENT '组名称',
- `area` varchar(255) DEFAULT NULL COMMENT '区域',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_manage_group`
- --
- LOCK TABLES `wonderful_manage_group` WRITE;
- /*!40000 ALTER TABLE `wonderful_manage_group` DISABLE KEYS */;
- INSERT INTO `wonderful_manage_group` VALUES (1,'平台运营部',NULL,1,1542000853),(2,'内容制作部',NULL,1,1542459460),(3,'产品技术部',NULL,1,1542592716),(4,'市场部',NULL,1,1542592725),(5,'销售部',NULL,1,1542702771),(6,'人行财法部',NULL,1,1542702821),(7,'管理部',NULL,1,1542702863),(8,'产品技术',NULL,2,1542702877);
- /*!40000 ALTER TABLE `wonderful_manage_group` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_manage_log`
- --
- DROP TABLE IF EXISTS `wonderful_manage_log`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_manage_log` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `project` varchar(32) DEFAULT NULL COMMENT '项目名',
- `table` varchar(32) DEFAULT NULL COMMENT '项目下的表名',
- `info` longtext COMMENT '日志记录',
- `admin` int(11) NOT NULL DEFAULT '0' COMMENT '操作人',
- `tid` int(11) NOT NULL DEFAULT '0' COMMENT '来源表ID',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '操作时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_manage_menu`
- --
- DROP TABLE IF EXISTS `wonderful_manage_menu`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_manage_menu` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '菜单ID',
- `name` varchar(50) DEFAULT NULL COMMENT '菜单名称',
- `menu_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级菜单',
- `key` varchar(100) DEFAULT NULL COMMENT '菜单唯一KEY',
- `link` varchar(150) DEFAULT NULL COMMENT '链接(或路径)',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序',
- `type` tinyint(1) NOT NULL DEFAULT '2' COMMENT '开启子菜单',
- `icon` varchar(100) DEFAULT NULL COMMENT '图标代码-请<A HREF="HTTPS://WWW.LAYUI.COM/DOC/ELEMENT/ICON.HTML" TARGET="_BLANK">点此</A>查看图标代码',
- `fast` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否快捷菜单',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_manage_menu`
- --
- LOCK TABLES `wonderful_manage_menu` WRITE;
- /*!40000 ALTER TABLE `wonderful_manage_menu` DISABLE KEYS */;
- INSERT INTO `wonderful_manage_menu` VALUES (1,'主页',-1,'console','console:主页',10000,2,'layui-icon-home',2,1,1542000853),(2,'控制台',1,'console.index','http://www.huoxingkandiqiu.com/wonderful/manage/?l=console',10,2,'glyphicon glyphicon-folder-close',2,1,1542000853),(3,'后台设置',-1,'manage','/share/lib/php/dever_package/manage/:后台设置',-100,2,'glyphicon glyphicon-wrench layui-icon-set-sm',2,1,1542000853),(4,'管理账户设置',3,'manage.admin','project/database/list?project=manage&table=admin&menu=manage&search_option_state=1',9,2,'glyphicon glyphicon-folder-close',2,1,1542000853),(5,'后台个性化',3,'manage.config','project/database/list?project=manage&table=config&menu=manage&search_option_state=1',10,2,'glyphicon glyphicon-folder-close',2,1,1542000853),(6,'计划任务',3,'manage.cron','project/database/list?project=manage&table=cron&menu=manage&search_option_state=1',1,2,'glyphicon glyphicon-folder-close',2,1,1542000853),(7,'管理组设置',3,'manage.group','project/database/list?project=manage&table=group&menu=manage&search_option_state=1',8,2,'glyphicon glyphicon-folder-close',2,1,1542000853),(8,'管理操作日志',3,'manage.log','project/database/list?project=manage&table=log&menu=manage&search_option_state=1',1,2,'glyphicon glyphicon-folder-close',2,1,1542000853),(9,'管理菜单设置',3,'manage.menu','project/database/list?project=manage&table=menu&menu=manage&search_option_state=1',2,2,'glyphicon glyphicon-folder-close',2,1,1542000853),(10,'后台公告管理',3,'manage.notice','project/database/list?project=manage&table=notice&menu=manage&search_option_state=1',7,2,'glyphicon glyphicon-folder-close',2,1,1542000853),(11,'字段记录表',3,'manage.opt','project/database/list?project=manage&table=opt&menu=manage&search_option_state=1',1,2,'glyphicon glyphicon-folder-close',2,1,1542000853),(12,'管理角色设置',3,'manage.role','project/database/list?project=manage&table=role&menu=manage&search_option_state=1',8,2,'glyphicon glyphicon-folder-close',2,1,1542000853),(13,'内容管理',-1,'content','/www/wonderful/content/:内容管理',200,2,'glyphicon glyphicon-tower layui-icon-tabs',2,1,1542000873),(14,'图文管理',13,'content.article','project/database/list?project=content&table=article&menu=content&search_option_state=1',100,2,'glyphicon glyphicon-folder-close',2,1,1542000873),(15,'作者管理',13,'content.author','project/database/list?project=content&table=author&menu=content&search_option_state=1',8,2,'glyphicon glyphicon-folder-close',2,1,1542000873),(16,'栏目设置',13,'content.cate','project/database/list?project=content&table=cate&menu=content&search_option_state=1',9,2,'glyphicon glyphicon-folder-close',2,1,1542000873),(17,'管理推荐位',-1,'push','/www/wonderful/push/:管理推荐位',199,2,'glyphicon glyphicon-tower layui-icon-template-1',2,1,1542000876),(18,'推送数据管理',17,'push.data','project/database/list?project=push&table=data&menu=push&search_option_state=1&search_option_info_id=1',20,2,'glyphicon glyphicon-folder-close',2,1,1542000876),(19,'推荐位置管理',17,'push.info','project/database/list?project=push&table=info&menu=push&search_option_state=1',10,2,'glyphicon glyphicon-folder-close',2,1,1542000876),(20,'小刊',-1,'journal','/www/wonderful/journal/:小刊',190,2,'glyphicon glyphicon-tower layui-icon-cellphone-fine',2,1,1542000878),(21,'小刊管理',20,'journal.info','project/database/list?project=journal&table=info&menu=journal&search_option_state=1',100,2,'glyphicon glyphicon-folder-close',2,1,1542000878),(22,'订单管理',20,'journal.order','project/database/list?project=journal&table=order&menu=journal&search_option_state=1',1,2,'glyphicon glyphicon-folder-close',2,1,1542000878),(23,'互动管理',-1,'act','/www/wonderful/act/:互动管理',199,2,'glyphicon glyphicon-tower layui-icon-theme',2,1,1542000888),(24,'评论管理',23,'act.comment','project/database/list?project=act&table=comment&menu=act&search_option_state=1',80,2,'glyphicon glyphicon-folder-close',2,1,1542000888),(25,'喜欢日志',23,'act.like','project/database/list?project=act&table=like&menu=act&search_option_state=1',79,2,'glyphicon glyphicon-folder-close',2,1,1542000888),(26,'直播留言管理',23,'act.live_comment','project/database/list?project=act&table=live_comment&menu=act&search_option_state=1',70,2,'glyphicon glyphicon-folder-close',2,1,1542000888),(27,'分享日志',23,'act.share','project/database/list?project=act&table=share&menu=act&search_option_state=1',78,2,'glyphicon glyphicon-folder-close',2,1,1542000888),(28,'审核管理',13,'content.audit.data','project/database/list?project=audit&table=data&menu=content&search_option_state=1',7,2,'glyphicon glyphicon-folder-close',2,1,1542000890),(29,'直播管理',-1,'live','/www/wonderful/live/:直播管理',194,2,'glyphicon glyphicon-tower layui-icon-camera',2,2,1542000907),(30,'直播云配置',32,'live.info','project/database/list?project=live&table=info&menu=live&search_option_state=1',9,2,'glyphicon glyphicon-folder-close',2,1,1542000907),(31,'直播流管理',32,'live.stream','project/database/list?project=live&table=stream&menu=live&search_option_state=1',2,2,'glyphicon glyphicon-folder-close',2,1,1542000907),(32,'视频与直播',-1,'video','/www/wonderful/video/:视频与直播',195,2,'glyphicon glyphicon-tower layui-icon-video',2,1,1542000909),(33,'直播视频管理',32,'video.live','project/database/list?project=video&table=live&menu=video&search_option_state=1',99,2,'glyphicon glyphicon-folder-close',2,1,1542000909),(34,'点播视频管理',32,'video.vod','project/database/list?project=video&table=vod&menu=video&search_option_state=1',100,2,'glyphicon glyphicon-folder-close',2,1,1542000909),(35,'标签管理',-1,'tag','/www/wonderful/tag/:标签管理',199,2,'glyphicon glyphicon-tower layui-icon-rate-solid',2,2,1542000914),(36,'标签分类设置',13,'tag.cate','project/database/list?project=tag&table=cate&menu=tag&search_option_state=1',49,2,'glyphicon glyphicon-folder-close',2,1,1542000914),(37,'标签管理',13,'tag.info','project/database/list?project=tag&table=info&menu=tag&search_option_state=1',50,2,'glyphicon glyphicon-folder-close',2,1,1542000914),(38,'基础设置',-1,'main','/www/wonderful/main/:基础设置',98,2,'glyphicon glyphicon-tower layui-icon-component',2,2,1542000926),(39,'基本配置',3,'main.config','project/database/list?project=main&table=config&menu=main&search_option_state=1',1,2,'glyphicon glyphicon-folder-close',2,1,1542000926),(40,'直播活动',32,'live.active','project/database/list?project=live&table=active&menu=live&search_option_state=1',20,2,'glyphicon glyphicon-folder-close',2,1,1542080323),(41,'兑换码列表',20,'journal.code.info','project/database/list?project=code&table=info&menu=journal&search_option_state=1',1,2,'glyphicon glyphicon-folder-close',2,1,1542090288),(42,'用户管理',-1,'passport','/share/lib/php/dever_package/passport/:用户管理',-10,2,'glyphicon glyphicon-user layui-icon-username',2,1,1542102504),(43,'等级设置',42,'passport.level','project/database/list?project=passport&table=level&menu=passport&search_option_state=1',8,2,'glyphicon glyphicon-folder-close',2,2,1542102504),(44,'用户管理',42,'passport.user','project/database/list?project=passport&table=user&menu=passport&search_option_state=1',10,2,'glyphicon glyphicon-folder-close',2,1,1542102504),(45,'直播提醒用户',23,'act.live_note','project/database/list?project=act&table=live_note&menu=act&search_option_state=1',69,2,'glyphicon glyphicon-folder-close',2,1,1542592490),(46,'合作内容入库',-1,'spider','/www/wonderful/spider/:合作内容入库',100,2,'glyphicon glyphicon-tower layui-icon-tree',2,1,1542592490),(47,'文章列表',46,'spider.data','project/database/list?project=spider&table=data&menu=spider&search_option_state=1',100,2,'glyphicon glyphicon-folder-close',2,1,1542592490),(48,'公众号管理',46,'spider.wechat','project/database/list?project=spider&table=wechat&menu=spider&search_option_state=1',10,2,'glyphicon glyphicon-folder-close',2,1,1542592490),(49,'订阅日志',23,'act.subscribe','project/database/list?project=act&table=subscribe&menu=act&search_option_state=1',68,2,'glyphicon glyphicon-folder-close',2,1,1542722821),(50,'消息系统',-1,'message','/share/lib/php/dever_package/message/:消息系统',-6,2,'glyphicon glyphicon-dashboard layui-icon-senior',2,2,1542722821),(51,'收件箱',50,'message.inbox','project/database/list?project=message&table=inbox&menu=message&search_option_state=1',18,2,'glyphicon glyphicon-folder-close',2,1,1542722821),(52,'发件箱',50,'message.outbox','project/database/list?project=message&table=outbox&menu=message&search_option_state=1',19,2,'glyphicon glyphicon-folder-close',2,1,1542722821),(53,'消息类型',50,'message.type','project/database/list?project=message&table=type&menu=message&search_option_state=1',20,2,'glyphicon glyphicon-folder-close',2,1,1542722821),(54,'用户积分列表',42,'passport.score.user','project/database/list?project=score&table=user&menu=passport&search_option_state=1',100,2,'glyphicon glyphicon-folder-close',2,1,1543106717),(55,'用户积分等级',42,'passport.score.user_level','project/database/list?project=score&table=user_level&menu=passport&search_option_state=1',99,2,'glyphicon glyphicon-folder-close',2,1,1543106717),(56,'平台运营设置',-1,'score','/www/wonderful/score/:平台运营设置',1,2,'glyphicon glyphicon-credit-card layui-icon-chat',2,1,1543106717),(57,'用户行为配置',56,'score.action','project/database/list?project=score&table=action&menu=score&search_option_state=1',10,2,'glyphicon glyphicon-folder-close',2,1,1543106717),(58,'积分名称设置',56,'score.config','project/database/list?project=score&table=config&menu=score&search_option_state=1',1,2,'glyphicon glyphicon-folder-close',2,1,1543106717),(59,'积分等级设置',56,'score.level','project/database/list?project=score&table=level&menu=score&search_option_state=1',8,2,'glyphicon glyphicon-folder-close',2,1,1543106717),(60,'资源库',-1,'upload','/share/lib/php/dever_package/upload/:资源库',-90,2,'glyphicon glyphicon-upload layui-icon-picture',2,2,1543226512),(61,'资源分类',60,'upload.cate','project/database/list?project=upload&table=cate&menu=upload&search_option_state=1',99,2,'glyphicon glyphicon-folder-close',2,1,1543226512),(62,'资源列表',60,'upload.file','project/database/list?project=upload&table=file&menu=upload&search_option_state=1',9,2,'glyphicon glyphicon-folder-close',2,1,1543226512),(63,'资源配置',60,'upload.upload','project/database/list?project=upload&table=upload&menu=upload&search_option_state=1',100,2,'glyphicon glyphicon-folder-close',2,1,1543226512),(64,'云端配置',60,'upload.yun','project/database/list?project=upload&table=yun&menu=upload&search_option_state=1',1,2,'glyphicon glyphicon-folder-close',2,1,1543226512),(65,'海报管理',-1,'poster','/share/lib/php/dever_package/poster/:海报管理',-2,2,'glyphicon glyphicon-warning-sign layui-icon-template',2,2,1543226512),(66,'海报模板设置',56,'poster.template','project/database/list?project=poster&table=template&menu=poster&search_option_state=1',20,2,'glyphicon glyphicon-folder-close',2,2,1543226512),(67,'小刊分类设置',20,'journal.cate','project/database/list?project=journal&table=cate&menu=journal&search_option_state=1',9,2,'glyphicon glyphicon-folder-close',2,1,1543714155),(68,'第三方登录',-1,'oauth','/share/lib/php/dever_package/oauth/:第三方登录',1,2,'glyphicon glyphicon-filter layui-icon-group',2,2,1543753702),(69,'第三方管理',68,'oauth.account','project/database/list?project=oauth&table=account&menu=oauth&search_option_state=1',10,2,'glyphicon glyphicon-folder-close',2,1,1543753702),(70,'短信管理',-1,'sms','/share/lib/php/dever_package/sms/:短信管理',-10,2,'glyphicon glyphicon-list-alt layui-icon-note',2,1,1543889040),(71,'基本配置',70,'sms.config','project/database/list?project=sms&table=config&menu=sms&search_option_state=1',20,2,'glyphicon glyphicon-folder-close',2,1,1543889040);
- /*!40000 ALTER TABLE `wonderful_manage_menu` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_manage_notice`
- --
- DROP TABLE IF EXISTS `wonderful_manage_notice`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_manage_notice` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '公告ID',
- `name` varchar(32) DEFAULT NULL COMMENT '公告标题',
- `config` int(11) NOT NULL DEFAULT '1' COMMENT '后台配置',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `content` text COMMENT '内容',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_manage_notice`
- --
- LOCK TABLES `wonderful_manage_notice` WRITE;
- /*!40000 ALTER TABLE `wonderful_manage_notice` DISABLE KEYS */;
- /*!40000 ALTER TABLE `wonderful_manage_notice` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_manage_opt`
- --
- DROP TABLE IF EXISTS `wonderful_manage_opt`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_manage_opt` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `project` varchar(30) DEFAULT NULL COMMENT '项目',
- `table` varchar(30) DEFAULT NULL COMMENT '数据表-请输入表的英文名',
- `method` varchar(32) DEFAULT NULL COMMENT '所属方法名',
- `col` varchar(500) DEFAULT NULL COMMENT '使用的字段',
- `col_index` varchar(500) DEFAULT NULL COMMENT '建立索引的字段',
- `version` int(11) NOT NULL DEFAULT '0' COMMENT '版本号',
- `num` int(11) NOT NULL DEFAULT '0' COMMENT '执行次数',
- `time` varchar(30) DEFAULT NULL COMMENT '执行时间',
- `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否建立索引',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据是否存在',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_manage_opt`
- --
- LOCK TABLES `wonderful_manage_opt` WRITE;
- /*!40000 ALTER TABLE `wonderful_manage_opt` DISABLE KEYS */;
- /*!40000 ALTER TABLE `wonderful_manage_opt` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_manage_role`
- --
- DROP TABLE IF EXISTS `wonderful_manage_role`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_manage_role` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '角色ID',
- `name` varchar(24) DEFAULT NULL COMMENT '角色名',
- `role_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级角色',
- `self` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否只能管理自己发布的内容-请在需要此项权限的表中增加[数据查询时影响的字段]',
- `col_select` varchar(30) DEFAULT NULL COMMENT '数据查询时影响的字段-该项影响数据查询,如果在表中增加该字段,则后台在查询数据时自动查询当前管理员的ID下的数据,多个用逗号隔开,与[是否只能管理自己发布的内容]相关',
- `col_insert` varchar(30) DEFAULT NULL COMMENT '数据插入时影响的字段-该项影响数据插入,如果在表中增加该字段,则后台操作时自动为该字段赋值为当前管理员的ID,多个用逗号隔开',
- `col_update` varchar(30) DEFAULT NULL COMMENT '数据更新时影响的字段-该项影响数据更新,如果在表中增加该字段,则后台操作时自动为该字段赋值为当前管理员的ID,多个用逗号隔开',
- `oper` varchar(24) DEFAULT NULL COMMENT '操作权限',
- `auth` text COMMENT '左侧菜单',
- `top` text COMMENT '右侧头部菜单',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_manage_role`
- --
- LOCK TABLES `wonderful_manage_role` WRITE;
- /*!40000 ALTER TABLE `wonderful_manage_role` DISABLE KEYS */;
- INSERT INTO `wonderful_manage_role` VALUES (1,'系统管理员',-1,2,'admin_founder','admin_founder','admin_editor','1,2,3,4,5','all',NULL,1,1,1,1542000853),(2,'人事行政',-1,2,'admin_founder','admin_founder','admin_editor','1,2,3,4','console.index,manage.admin,manage.group',NULL,1,1,1,1542000853),(3,'内容管理组',-1,1,'admin_founder','admin_founder','admin_editor','1,2,3,4,5','console.index,content.article,tag.info,tag.cate,content.cate,content.author,content.audit.data,video.vod,video.live,live.active,live.stream,journal.info,journal.code.info,0',NULL,1,1,1,1542459368),(4,'平台运营管理',-1,2,'admin_founder','admin_founder','admin_editor','1,2,3,4,5','console.index,content.article,tag.info,tag.cate,content.cate,content.author,content.audit.data,act.comment,act.like,act.share,act.live_comment,act.live_note,push.data,push.info,video.vod,video.live,live.active,live.stream,journal.info,journal.code.info,journal.order,spider.data,spider.wechat,passport.user,passport.level,manage.admin,manage.role,manage.group,manage.notice,main.config',NULL,1,1,1,1542698749),(5,'产品管理员',-1,2,'admin_founder','admin_founder','admin_editor','1,2,3,4,5','console.index,content.article,tag.info,tag.cate,content.cate,content.author,content.audit.data,act.comment,act.like,act.share,act.live_comment,act.live_note,push.data,push.info,video.vod,video.live,live.active,live.stream,journal.info,journal.code.info,journal.order,spider.data,spider.wechat,passport.user,passport.level,manage.admin,manage.role,manage.group,manage.notice',NULL,1,1,1,1542703580);
- /*!40000 ALTER TABLE `wonderful_manage_role` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_manage_top`
- --
- DROP TABLE IF EXISTS `wonderful_manage_top`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_manage_top` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(50) DEFAULT NULL COMMENT '权限名',
- `top_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级权限',
- `key` varchar(100) DEFAULT NULL COMMENT '权限KEY',
- `value` varchar(30) DEFAULT NULL COMMENT '对应的值',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_manage_top`
- --
- LOCK TABLES `wonderful_manage_top` WRITE;
- /*!40000 ALTER TABLE `wonderful_manage_top` DISABLE KEYS */;
- /*!40000 ALTER TABLE `wonderful_manage_top` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_message_inbox`
- --
- DROP TABLE IF EXISTS `wonderful_message_inbox`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_message_inbox` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `oid` int(11) NOT NULL DEFAULT '0' COMMENT '收件ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '收件人',
- `from_uid` int(11) NOT NULL DEFAULT '0' COMMENT '发件人',
- `name` varchar(30) DEFAULT NULL COMMENT '发件标题',
- `content` text COMMENT '发件内容',
- `type` int(11) NOT NULL DEFAULT '1' COMMENT '消息类型',
- `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '已读状态',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_message_outbox`
- --
- DROP TABLE IF EXISTS `wonderful_message_outbox`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_message_outbox` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '-1' COMMENT '发件人',
- `name` varchar(30) DEFAULT NULL COMMENT '发件标题',
- `content` text COMMENT '发件内容',
- `type` int(11) NOT NULL DEFAULT '1' COMMENT '消息类型',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_message_type`
- --
- DROP TABLE IF EXISTS `wonderful_message_type`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_message_type` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(30) DEFAULT NULL COMMENT '类型名称-类型ID值为10以下则为系统消息',
- `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '同时推送-暂未实现,实现后将可以同步发送微信、短信、客户端消息等',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_message_type`
- --
- LOCK TABLES `wonderful_message_type` WRITE;
- /*!40000 ALTER TABLE `wonderful_message_type` DISABLE KEYS */;
- INSERT INTO `wonderful_message_type` VALUES (1,'系统消息',1,1,1542722855),(2,'系统通知',1,1,1542722855),(11,'用户通知',1,1,1542722855);
- /*!40000 ALTER TABLE `wonderful_message_type` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_oauth_account`
- --
- DROP TABLE IF EXISTS `wonderful_oauth_account`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_oauth_account` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(60) DEFAULT NULL COMMENT '账户名称',
- `type` varchar(30) DEFAULT NULL COMMENT '账户类型',
- `appid` varchar(150) DEFAULT NULL COMMENT 'APPID',
- `appsecret` varchar(300) DEFAULT NULL COMMENT 'APPSECRET',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_oauth_account`
- --
- LOCK TABLES `wonderful_oauth_account` WRITE;
- /*!40000 ALTER TABLE `wonderful_oauth_account` DISABLE KEYS */;
- INSERT INTO `wonderful_oauth_account` VALUES (1,'精美服务号','wechat','wx6f1ed9ba7eba0361','961b90a6e4ebfe5d13462e17530be9b5',1,1543753734);
- /*!40000 ALTER TABLE `wonderful_oauth_account` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_passport_app`
- --
- DROP TABLE IF EXISTS `wonderful_passport_app`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_passport_app` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户',
- `source_type` int(11) NOT NULL DEFAULT '1' COMMENT '用户来源',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_passport_code`
- --
- DROP TABLE IF EXISTS `wonderful_passport_code`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_passport_code` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `mobile` varchar(32) DEFAULT NULL COMMENT '手机号',
- `code` varchar(32) DEFAULT NULL COMMENT '验证码',
- `day` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_passport_user`
- --
- DROP TABLE IF EXISTS `wonderful_passport_user`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_passport_user` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户ID',
- `username` varchar(50) DEFAULT NULL COMMENT '用户名',
- `mobile` varchar(32) DEFAULT NULL COMMENT '手机号',
- `source_type` varchar(100) DEFAULT NULL COMMENT '用户来源',
- `email` varchar(150) DEFAULT NULL COMMENT '邮箱',
- `password` varchar(50) DEFAULT NULL COMMENT '密码',
- `avatar` varchar(150) DEFAULT NULL COMMENT '头像',
- `country` varchar(100) DEFAULT NULL COMMENT '国家',
- `province` varchar(100) DEFAULT NULL COMMENT '省份',
- `city` varchar(100) DEFAULT NULL COMMENT '城市',
- `area` varchar(800) DEFAULT NULL COMMENT '地区',
- `info` varchar(255) DEFAULT NULL COMMENT '介绍-选填,如果想清空该介绍,请输入NULL。',
- `score` varchar(50) DEFAULT NULL COMMENT '积分',
- `sex` tinyint(1) NOT NULL DEFAULT '3' COMMENT '用户性别',
- `level` tinyint(1) NOT NULL DEFAULT '1' COMMENT '用户等级',
- `temp` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否临时用户',
- `login_date` int(11) NOT NULL DEFAULT '0' COMMENT '最近登录',
- `bind` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否绑定手机',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '注册时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_passport_user`
- --
- LOCK TABLES `wonderful_passport_user` WRITE;
- /*!40000 ALTER TABLE `wonderful_passport_user` DISABLE KEYS */;
- /*!40000 ALTER TABLE `wonderful_passport_user` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_passport_wechat`
- --
- DROP TABLE IF EXISTS `wonderful_passport_wechat`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_passport_wechat` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户',
- `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '类型',
- `openid` varchar(50) DEFAULT NULL COMMENT 'OPENID-微信的唯一用户ID',
- `unionid` varchar(50) DEFAULT NULL COMMENT 'UNIONID-微信的唯一用户ID',
- `session_key` varchar(50) DEFAULT NULL COMMENT 'SESSION_KEY',
- `access_token` varchar(200) DEFAULT NULL COMMENT 'ACCESS_TOKEN',
- `refresh_token` varchar(200) DEFAULT NULL COMMENT 'REFRESH_TOKEN',
- `expires_in` varchar(100) DEFAULT NULL COMMENT 'EXPIRES_IN',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_poster_model`
- --
- DROP TABLE IF EXISTS `wonderful_poster_model`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_poster_model` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `template_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属模板',
- `name` varchar(32) DEFAULT NULL COMMENT '模块名称',
- `key` varchar(32) DEFAULT NULL COMMENT '模块标识-设置模块时,使用该标识来设置模块信息',
- `type` int(11) NOT NULL DEFAULT '1' COMMENT '模块类型',
- `value` varchar(500) DEFAULT NULL COMMENT '模块默认值',
- `position_type` int(11) NOT NULL DEFAULT '8' COMMENT '模块位置',
- `position` varchar(32) DEFAULT NULL COMMENT '模块定位-位置为LEFT,TOP,如100,200',
- `offset` varchar(32) DEFAULT NULL COMMENT '偏移量-偏移位置为LEFT,TOP,如-10,-20',
- `text_width` varchar(11) DEFAULT NULL COMMENT '文字宽度',
- `width` varchar(11) DEFAULT NULL COMMENT '图片宽度',
- `height` varchar(11) DEFAULT NULL COMMENT '图片高度',
- `color` varchar(10) DEFAULT NULL COMMENT '文字颜色',
- `fonts` int(11) NOT NULL DEFAULT '1' COMMENT '字体',
- `size` int(11) NOT NULL DEFAULT '16' COMMENT '文字大小-直接输入像素数字',
- `angle` int(11) NOT NULL DEFAULT '0' COMMENT '角度-直接输入数字',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_poster_model`
- --
- LOCK TABLES `wonderful_poster_model` WRITE;
- /*!40000 ALTER TABLE `wonderful_poster_model` DISABLE KEYS */;
- INSERT INTO `wonderful_poster_model` VALUES (1,1,'标题','name',2,'',5,'0,0','10,110','530','550','200','#000000',2,16,0,1,1543226606),(2,1,'图片','pic',1,'',1,'0,0','0,0','','570','570','#000000',1,16,0,1,1543226637),(3,1,'用户名','username',2,'',8,'60,790','0,0','280','200','200','#000000',1,16,0,1,1543226681),(4,1,'logo','logo',1,'',8,'320,700','0,0','','200','200','#000000',1,16,0,1,1543226699);
- /*!40000 ALTER TABLE `wonderful_poster_model` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_poster_template`
- --
- DROP TABLE IF EXISTS `wonderful_poster_template`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_poster_template` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(32) DEFAULT NULL COMMENT '模板名称',
- `key` varchar(32) DEFAULT NULL COMMENT '模板标识-调用模板时,使用该标识来获取模板信息,相同的模板标识,将随机抽取一条',
- `type` varchar(32) DEFAULT NULL COMMENT '使用的图形库',
- `update` tinyint(1) NOT NULL DEFAULT '2' COMMENT '生成规则',
- `background` varchar(150) DEFAULT NULL COMMENT '模板背景图',
- `pic` varchar(150) DEFAULT NULL COMMENT '模板样例图',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_poster_template`
- --
- LOCK TABLES `wonderful_poster_template` WRITE;
- /*!40000 ALTER TABLE `wonderful_poster_template` DISABLE KEYS */;
- INSERT INTO `wonderful_poster_template` VALUES (1,'分享模板','share','gd',2,'{uploadRes}1/2018/12/03/647ae4f317dbe5e7e363fefd6f3d56b0.png','{uploadRes}1/2018/12/03/647ae4f317dbe5e7e363fefd6f3d56b0.png',1,1543226568);
- /*!40000 ALTER TABLE `wonderful_poster_template` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_push_data`
- --
- DROP TABLE IF EXISTS `wonderful_push_data`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_push_data` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `info_id` int(11) NOT NULL DEFAULT '1' COMMENT '推送位',
- `type` int(11) NOT NULL DEFAULT '1' COMMENT '类型',
- `article_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联图文',
- `vod_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联视频',
- `live_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联直播',
- `journal_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联小刊',
- `olink` varchar(400) DEFAULT NULL COMMENT '链接',
- `name` varchar(60) DEFAULT NULL COMMENT '标题-手动干扰项,如想在当前推送位的标题请在此修改',
- `link` varchar(200) DEFAULT NULL COMMENT '链接-手动干扰项,如想在当前推送位的链接请在此修改',
- `pic` varchar(200) DEFAULT NULL COMMENT '图片-手动干扰项,请上传,100X100大小的图片',
- `content` text COMMENT '描述-手动干扰项,字数请不要超过30个汉字,前台展示时会自动过滤',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_push_info`
- --
- DROP TABLE IF EXISTS `wonderful_push_info`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_push_info` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '推送位ID',
- `name` varchar(60) DEFAULT NULL COMMENT '推送位标题',
- `key` varchar(60) DEFAULT NULL COMMENT '推送位标识',
- `num` int(11) NOT NULL DEFAULT '5' COMMENT '数据总条数-为空或小于0则不限制,只对前台有效',
- `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '推送位类型',
- `col` varchar(30) DEFAULT NULL COMMENT '启用的字段',
- `col_pic` varchar(20) DEFAULT NULL COMMENT '图片尺寸提醒-请直接输入提醒的文字即可,如100X100',
- `col_content` int(11) NOT NULL DEFAULT '30' COMMENT '内容长度限制-必须是数字',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- `function` varchar(30) NOT NULL DEFAULT '1,2,3,4,10' COMMENT '启用的功能',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_push_info`
- --
- LOCK TABLES `wonderful_push_info` WRITE;
- /*!40000 ALTER TABLE `wonderful_push_info` DISABLE KEYS */;
- INSERT INTO `wonderful_push_info` VALUES (1,'小刊精选推荐','jingxuan',4,1,'1,3','100X100',30,1,1,1542006490,'4'),(2,'头部导航','menu',10,1,'1,3','100X100',30,1,2,1542088052,'1,2,3,4,10'),(3,'精选焦点图','focus',10,1,'1,3','750*380px或等比尺寸',30,1,1,1542088052,'1,2,3,4,10'),(4,'精选分类','link',10,1,'1,3','46*46px',30,1,1,1542088052,'1,2,3,4,10'),(5,'精选广告位','ad',10,1,'1,3','695*120px或等比尺寸',30,1,1,1542088052,'1,2,3,4,10'),(6,'精选推荐','up',10,1,'1,3','100X100',30,1,1,1542088052,'1,2,3,4,10'),(7,'精选弹窗广告位','open_ad',10,1,'1,3','500*630px或等比尺寸',30,1,1,1542459926,'1,2,3,4,10');
- /*!40000 ALTER TABLE `wonderful_push_info` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_score_action`
- --
- DROP TABLE IF EXISTS `wonderful_score_action`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_score_action` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(80) DEFAULT NULL COMMENT '行为名称',
- `key` varchar(80) DEFAULT NULL COMMENT '行为标识-用于程序中统计积分总数',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_score_action`
- --
- LOCK TABLES `wonderful_score_action` WRITE;
- /*!40000 ALTER TABLE `wonderful_score_action` DISABLE KEYS */;
- INSERT INTO `wonderful_score_action` VALUES (1,'浏览图文','view_article',1,1543106833),(2,'浏览视频','view_vod',1,1543106852),(3,'浏览直播','view_live',1,1543106864),(4,'浏览小刊首页','view_journal',1,1543106917),(5,'发表评论','submit_commit',1,1543107084),(6,'喜欢','submit_like',1,1543107090),(7,'邀请好友','share_friend',1,1543107129),(8,'通过小刊邀请到新用户','share_journal_new_reflux',1,1543107197),(9,'通过小刊邀请到老用户','share_journal_reflux',1,1543107211),(10,'手机号注册','mobile_reg',1,1543107357),(11,'用户微信授权','bind_wechat',1,1543107377),(12,'绑定手机号','bind_mobile',1,1543107389),(13,'购买小刊','buy_journal',1,1543107469),(14,'阅读小刊','read_journal',1,1543107508),(15,'通过图文邀请到新用户','share_article_new_reflux',1,1543107700),(16,'通过视频邀请到新用户','share_vod_new_reflux',1,1543107721),(17,'通过直播邀请到新用户','share_live_new_reflux',1,1543107735),(18,'通过图文邀请到老用户','share_article_reflux',1,1543107753),(19,'通过视频邀请到老用户','share_vod_reflux',1,1543107766),(20,'通过直播邀请到老用户','share_live_reflux',1,1543107781),(21,'兑换小刊','dh_journal',1,1543634470),(22,'观看直播','submit_watch',1,1543746021);
- /*!40000 ALTER TABLE `wonderful_score_action` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_score_action_log`
- --
- DROP TABLE IF EXISTS `wonderful_score_action_log`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_score_action_log` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
- `action_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属行为',
- `score_type` int(11) NOT NULL DEFAULT '1' COMMENT '是否增加积分',
- `score` varchar(30) DEFAULT NULL COMMENT '增加积分数',
- `callback` varchar(800) DEFAULT NULL COMMENT '行为回调方法',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- `num` varchar(30) NOT NULL DEFAULT '0' COMMENT '手动增加积分数',
- `mscore` varchar(30) NOT NULL DEFAULT '0' COMMENT '手动增加积分数',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_score_config`
- --
- DROP TABLE IF EXISTS `wonderful_score_config`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_score_config` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(32) DEFAULT NULL COMMENT '积分名称',
- `type` int(11) NOT NULL DEFAULT '2' COMMENT '是否主积分-只能有一个主积分,主积分将作为用户主要积分显示在用户信息中',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_score_config`
- --
- LOCK TABLES `wonderful_score_config` WRITE;
- /*!40000 ALTER TABLE `wonderful_score_config` DISABLE KEYS */;
- INSERT INTO `wonderful_score_config` VALUES (1,'精美通用积分',1,1,1,1543106731);
- /*!40000 ALTER TABLE `wonderful_score_config` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_score_level`
- --
- DROP TABLE IF EXISTS `wonderful_score_level`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_score_level` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(32) DEFAULT NULL COMMENT '等级名称',
- `score` text COMMENT '积分设置',
- `level` int(11) NOT NULL DEFAULT '1' COMMENT '等级数字-请直接输入等级数字,每次升级按照该数字进行匹配,如果设置为1,则为LV1,不允许重复,用户升级',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_score_level`
- --
- LOCK TABLES `wonderful_score_level` WRITE;
- /*!40000 ALTER TABLE `wonderful_score_level` DISABLE KEYS */;
- INSERT INTO `wonderful_score_level` VALUES (1,'精美小兵','W3sib3JkZXIiOiIxIiwiY29uZmlnIjoiMSIsIm51bSI6IjEifV0=',1,1,1543106788),(2,'精美大咖','W3sib3JkZXIiOiIxIiwiY29uZmlnIjoiMSIsIm51bSI6IjMwIn1d',2,1,1543106799),(3,'精美咖咖','W3sib3JkZXIiOiIyIiwiY29uZmlnIjoiMSIsIm51bSI6IjUwIn1d',3,1,1543311115),(4,'Jstyle大神','W3sib3JkZXIiOiI1IiwiY29uZmlnIjoiMSIsIm51bSI6IjIwMCJ9XQ==',4,1,1543634179);
- /*!40000 ALTER TABLE `wonderful_score_level` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_score_rule`
- --
- DROP TABLE IF EXISTS `wonderful_score_rule`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_score_rule` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `config_id` int(11) NOT NULL DEFAULT '1' COMMENT '积分名称',
- `action_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属行为',
- `num` varchar(80) DEFAULT NULL COMMENT '增加积分数-如果为负数,则是减少积分',
- `upper` int(11) NOT NULL DEFAULT '1' COMMENT '是否有上限限制',
- `upper_type` int(11) NOT NULL DEFAULT '1' COMMENT '上限限制类型',
- `upper_time` int(11) NOT NULL DEFAULT '12' COMMENT '间隔小时数',
- `upper_limit` int(11) NOT NULL DEFAULT '2' COMMENT '上限限制次数-小于1则不限制',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_score_rule`
- --
- LOCK TABLES `wonderful_score_rule` WRITE;
- /*!40000 ALTER TABLE `wonderful_score_rule` DISABLE KEYS */;
- INSERT INTO `wonderful_score_rule` VALUES (1,1,1,'1',2,1,12,3,2,1543107531),(2,1,2,'1',2,1,12,3,2,1543107540),(3,1,3,'1',2,1,12,3,2,1543107557),(4,1,11,'5',2,3,12,1,1,1543107583),(5,1,12,'5',2,3,12,1,1,1543107595),(6,1,6,'1',2,1,12,3,1,1543107624),(7,1,5,'1',2,1,12,3,1,1543107633),(8,1,7,'1',2,1,12,3,1,1543107649),(9,1,8,'2',1,1,12,2,1,1543107663),(10,1,21,'20',1,1,12,2,1,1543710990),(11,1,13,'20',1,1,12,2,1,1543711008);
- /*!40000 ALTER TABLE `wonderful_score_rule` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_score_user`
- --
- DROP TABLE IF EXISTS `wonderful_score_user`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_score_user` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
- `config_id` int(11) NOT NULL DEFAULT '1' COMMENT '积分名称',
- `score` varchar(80) DEFAULT NULL COMMENT '可用数量',
- `no_score` varchar(80) DEFAULT NULL COMMENT '冻结数量',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_score_user_level`
- --
- DROP TABLE IF EXISTS `wonderful_score_user_level`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_score_user_level` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
- `level_id` int(11) NOT NULL DEFAULT '1' COMMENT '等级名称',
- `type` int(11) NOT NULL DEFAULT '1' COMMENT '升级方式',
- `info` varchar(300) DEFAULT NULL COMMENT '备注',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_score_user_log`
- --
- DROP TABLE IF EXISTS `wonderful_score_user_log`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_score_user_log` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
- `config_id` int(11) NOT NULL DEFAULT '1' COMMENT '积分名称',
- `action_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属行为',
- `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '收入支出状态',
- `num` varchar(80) DEFAULT NULL COMMENT '增加积分数-如果为负数,则是减少积分',
- `total` varchar(80) DEFAULT NULL COMMENT '总积分数',
- `desc` varchar(300) DEFAULT NULL COMMENT '描述',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_sms_config`
- --
- DROP TABLE IF EXISTS `wonderful_sms_config`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_sms_config` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(32) DEFAULT NULL COMMENT '配置名称',
- `key` varchar(32) DEFAULT NULL COMMENT '短信标识-发送短信时,使用该标识来读取短信基本配置',
- `sign` varchar(60) DEFAULT NULL COMMENT '短信签名',
- `sdk` varchar(32) DEFAULT NULL COMMENT '是否调取SDK',
- `appid` varchar(50) DEFAULT NULL COMMENT 'APPID',
- `appsecret` varchar(80) DEFAULT NULL COMMENT 'APPSECRET',
- `url` varchar(300) DEFAULT NULL COMMENT '接口地址',
- `method` varchar(32) DEFAULT NULL COMMENT '请求方式',
- `json` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否进行JSON编码',
- `header` varchar(500) DEFAULT NULL COMMENT 'HEADER信息-如AUTHORIZATION:APPCODE E7183E44BA8E4CCAA3D690510923D3FA',
- `body` varchar(500) DEFAULT NULL COMMENT 'BODY信息-如PARAM={CODE}&PHONE={MOBILE}&SIGN={SIGN}&SKIN={SKIN}',
- `code_timeout` int(11) NOT NULL DEFAULT '600' COMMENT '验证码有效期-以秒为单位',
- `code_length` int(11) NOT NULL DEFAULT '4' COMMENT '验证码长度',
- `code_type` int(11) NOT NULL DEFAULT '4' COMMENT '验证码类型',
- `code_total` int(11) NOT NULL DEFAULT '10' COMMENT '一天之内的最大发送次数',
- `code_time` int(11) NOT NULL DEFAULT '60' COMMENT '不允许多久之内重复发送-以秒为单位',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_sms_config`
- --
- LOCK TABLES `wonderful_sms_config` WRITE;
- /*!40000 ALTER TABLE `wonderful_sms_config` DISABLE KEYS */;
- INSERT INTO `wonderful_sms_config` VALUES (1,'发送短信','sms','Jstyle精美','url','','','http://smssh1.253.com/msg/send/json','get',1,'','account=N6414704&password=zie9Wpg8ND2d4a&phone={mobile}&msg={skin}',600,4,4,10,60,1,1543889081);
- /*!40000 ALTER TABLE `wonderful_sms_config` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_sms_skin`
- --
- DROP TABLE IF EXISTS `wonderful_sms_skin`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_sms_skin` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `config_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属配置',
- `name` varchar(32) DEFAULT NULL COMMENT '模板名称',
- `key` varchar(32) DEFAULT NULL COMMENT '模板标识',
- `content` varchar(800) DEFAULT NULL COMMENT '模板内容-如果短信接口已提供模板,请在此输入模板ID',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_sms_skin`
- --
- LOCK TABLES `wonderful_sms_skin` WRITE;
- /*!40000 ALTER TABLE `wonderful_sms_skin` DISABLE KEYS */;
- INSERT INTO `wonderful_sms_skin` VALUES (1,1,'购买提醒','buy_journal','【{sign}】购买成功,您获得了{name}的阅读资格!',1,1543889221),(2,1,'直播提醒','note_live','【{sign}】{name}直播即将开始,马上观看!',1,1543889233),(3,1,'活动提醒','share_journal','【{sign}】邀请人数已达{num}人,您获得了{name} 的阅读资格!',1,1543889249);
- /*!40000 ALTER TABLE `wonderful_sms_skin` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_spider_data`
- --
- DROP TABLE IF EXISTS `wonderful_spider_data`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_spider_data` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `wechat_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属公众号',
- `name` varchar(180) DEFAULT NULL COMMENT '标题',
- `copyright` int(11) NOT NULL DEFAULT '1' COMMENT '原创',
- `cover` varchar(150) DEFAULT NULL COMMENT '封面图',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `content` text COMMENT '内容',
- `pdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
- `audit` int(11) NOT NULL DEFAULT '1' COMMENT '审核状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_spider_wechat`
- --
- DROP TABLE IF EXISTS `wonderful_spider_wechat`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_spider_wechat` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(100) DEFAULT NULL COMMENT '名称-直接输入公众号名称即可,系统会自动抓取该公众号的前10篇文章,每天抓取一次',
- `wechat` varchar(200) DEFAULT NULL COMMENT '微信号',
- `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属栏目',
- `author_id` int(11) NOT NULL DEFAULT '1' COMMENT '作者',
- `zdate` int(11) NOT NULL DEFAULT '0' COMMENT '下次执行时间',
- `pdate` int(11) NOT NULL DEFAULT '12' COMMENT '抓取时间间隔-每个公众号发布的文章时间不同,请设置抓取时间间隔,单位为小时,尽量保证每次抓取都有新数据,也请不要设置间隔时间太短,抓取太频繁会导致抓取失败',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_tag_cate`
- --
- DROP TABLE IF EXISTS `wonderful_tag_cate`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_tag_cate` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(32) DEFAULT NULL COMMENT '分类名称',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_tag_cate`
- --
- LOCK TABLES `wonderful_tag_cate` WRITE;
- /*!40000 ALTER TABLE `wonderful_tag_cate` DISABLE KEYS */;
- INSERT INTO `wonderful_tag_cate` VALUES (1,'默认分类',1,1,1542006421),(2,'文章',3,1,1542010060),(3,'视频',4,1,1542447805),(4,'直播',5,1,1542447816);
- /*!40000 ALTER TABLE `wonderful_tag_cate` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_tag_data`
- --
- DROP TABLE IF EXISTS `wonderful_tag_data`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_tag_data` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `tag_id` int(11) NOT NULL DEFAULT '0' COMMENT '标签ID',
- `source_table` varchar(30) DEFAULT NULL COMMENT '来源的表名',
- `source_id` int(11) NOT NULL DEFAULT '0' COMMENT '数据ID',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_tag_info`
- --
- DROP TABLE IF EXISTS `wonderful_tag_info`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_tag_info` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(80) DEFAULT NULL COMMENT '标签名',
- `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属分类',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `wonderful_tag_info`
- --
- LOCK TABLES `wonderful_tag_info` WRITE;
- /*!40000 ALTER TABLE `wonderful_tag_info` DISABLE KEYS */;
- INSERT INTO `wonderful_tag_info` VALUES (1,'娱乐',3,1,1,1542005780),(2,'明星',2,1,1,1542010082),(3,'聚会',2,1,1,1542447925),(4,'精美',1,1,1,1542447942),(5,'穿搭',2,1,1,1542447960),(6,'时装',4,1,1,1542447970),(7,'',1,1,2,1542459987),(8,'',1,1,2,1542515536),(9,'',1,1,2,1542516468),(10,'',1,1,2,1542516527),(11,'',1,1,2,1542683971),(12,'',1,1,2,1542694100);
- /*!40000 ALTER TABLE `wonderful_tag_info` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `wonderful_video_live`
- --
- DROP TABLE IF EXISTS `wonderful_video_live`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_video_live` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(80) DEFAULT NULL COMMENT '标题',
- `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属栏目',
- `pic_cover` varchar(150) DEFAULT NULL COMMENT '封面图-4:3比例的图片',
- `stream_id` int(11) NOT NULL DEFAULT '0' COMMENT '直播流选择',
- `sdate` int(11) NOT NULL DEFAULT '0' COMMENT '开始时间',
- `num_add_user` int(11) NOT NULL DEFAULT '0' COMMENT '手动增加在线人数',
- `num_user` int(11) NOT NULL DEFAULT '0' COMMENT '在线人数',
- `num_add_view` int(11) NOT NULL DEFAULT '0' COMMENT '手动增加浏览量PV数',
- `num_view` int(11) NOT NULL DEFAULT '0' COMMENT '浏览量PV',
- `num_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢数',
- `num_comment` int(11) NOT NULL DEFAULT '0' COMMENT '评论数',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `admin_founder` int(11) NOT NULL DEFAULT '1' COMMENT '创建人',
- `admin_editor` int(11) NOT NULL DEFAULT '1' COMMENT '操作人',
- `pdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
- `share` text COMMENT '分享海报-选择海报库中的海报',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `udate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
- `content` text COMMENT '内容',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- `tag` text NOT NULL COMMENT '标签',
- `num_add_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢基数',
- `function` varchar(100) NOT NULL DEFAULT '1' COMMENT '功能选择',
- `share_yes` int(11) NOT NULL DEFAULT '1' COMMENT '是否显示分享按钮',
- `share_title` varchar(100) NOT NULL COMMENT '分享标题',
- `share_pic` varchar(150) NOT NULL COMMENT '分享图片',
- `share_content` varchar(200) NOT NULL COMMENT '分享内容',
- `audit` int(11) NOT NULL DEFAULT '1' COMMENT '审核状态',
- `status` int(11) NOT NULL DEFAULT '1' COMMENT '发布状态',
- `edate` int(11) NOT NULL COMMENT '结束时间-选择结束时间,能够得到当前时间段完整的直播回放地址',
- `url_m3u8` varchar(800) NOT NULL COMMENT '直播回放地址',
- `url_mp4` varchar(800) NOT NULL COMMENT '直播回放地址',
- `author_id` int(11) NOT NULL DEFAULT '1' COMMENT '作者',
- `pic_cover_169` varchar(150) NOT NULL COMMENT '16:9封面图-请上传16:9比例的封面图',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `wonderful_video_vod`
- --
- DROP TABLE IF EXISTS `wonderful_video_vod`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `wonderful_video_vod` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
- `name` varchar(80) DEFAULT NULL COMMENT '标题',
- `link` varchar(800) DEFAULT NULL COMMENT '点播地址',
- `video` varchar(800) DEFAULT NULL COMMENT '上传视频',
- `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属栏目',
- `author_id` int(11) NOT NULL DEFAULT '1' COMMENT '作者',
- `pic_cover` varchar(150) DEFAULT NULL COMMENT '封面图-4:3比例的图片',
- `num_add_view` int(11) NOT NULL DEFAULT '0' COMMENT '手动增加浏览量PV数',
- `num_view` int(11) NOT NULL DEFAULT '0' COMMENT '浏览量PV',
- `num_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢数',
- `num_comment` int(11) NOT NULL DEFAULT '0' COMMENT '评论数',
- `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
- `admin_founder` int(11) NOT NULL DEFAULT '1' COMMENT '创建人',
- `admin_editor` int(11) NOT NULL DEFAULT '1' COMMENT '操作人',
- `pdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
- `share` text COMMENT '分享海报-选择海报库中的海报',
- `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
- `udate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
- `content` text COMMENT '内容',
- `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
- `tag` text NOT NULL COMMENT '标签',
- `num_add_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢基数',
- `function` varchar(100) NOT NULL DEFAULT '1' COMMENT '功能选择',
- `share_yes` int(11) NOT NULL DEFAULT '1' COMMENT '是否显示分享按钮',
- `share_title` varchar(100) NOT NULL COMMENT '分享标题',
- `share_pic` varchar(150) NOT NULL COMMENT '分享图片',
- `share_content` varchar(200) NOT NULL COMMENT '分享内容',
- `audit` int(11) NOT NULL DEFAULT '1' COMMENT '审核状态',
- `status` int(11) NOT NULL DEFAULT '1' COMMENT '发布状态',
- `pic_cover_169` varchar(150) NOT NULL COMMENT '16:9封面图-请上传16:9比例的封面图',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
- /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
- /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
- /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
- /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
- /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
- /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
- /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
- -- Dump completed on 2018-12-04 10:18:11
|