wonderful.sql 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.8.3
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- 主机: rm-2ze2vvl80xp9t9827.mysql.rds.aliyuncs.com
  6. -- 生成日期: 2018-12-04 10:06:10
  7. -- 服务器版本: 5.7.20-log
  8. -- PHP 版本: 7.1.17
  9. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  10. SET AUTOCOMMIT = 0;
  11. START TRANSACTION;
  12. SET time_zone = "+00:00";
  13. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  14. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  15. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  16. /*!40101 SET NAMES utf8mb4 */;
  17. --
  18. -- 数据库: `wonderful`
  19. --
  20. -- --------------------------------------------------------
  21. --
  22. -- 表的结构 `wonderful_act_comment`
  23. --
  24. CREATE TABLE `wonderful_act_comment` (
  25. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  26. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  27. `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '评论类别',
  28. `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
  29. `num_up` int(11) NOT NULL DEFAULT '0' COMMENT '点赞数',
  30. `content` text COMMENT '内容',
  31. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  32. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '评论时间'
  33. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  34. -- --------------------------------------------------------
  35. --
  36. -- 表的结构 `wonderful_act_invite`
  37. --
  38. CREATE TABLE `wonderful_act_invite` (
  39. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  40. `source_uid` int(11) NOT NULL DEFAULT '0' COMMENT '邀请者',
  41. `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '邀请类型',
  42. `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
  43. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '被邀请者',
  44. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  45. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '时间'
  46. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  47. -- --------------------------------------------------------
  48. --
  49. -- 表的结构 `wonderful_act_like`
  50. --
  51. CREATE TABLE `wonderful_act_like` (
  52. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  53. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  54. `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '喜欢类别',
  55. `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
  56. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  57. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢时间'
  58. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  59. -- --------------------------------------------------------
  60. --
  61. -- 表的结构 `wonderful_act_live_comment`
  62. --
  63. CREATE TABLE `wonderful_act_live_comment` (
  64. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  65. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  66. `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '评论类别',
  67. `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
  68. `content` text COMMENT '内容',
  69. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  70. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '评论时间'
  71. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  72. -- --------------------------------------------------------
  73. --
  74. -- 表的结构 `wonderful_act_live_note`
  75. --
  76. CREATE TABLE `wonderful_act_live_note` (
  77. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  78. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  79. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否发送状态提醒-1未发送,2已发送',
  80. `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
  81. `formid` varchar(200) DEFAULT NULL COMMENT 'FORMID',
  82. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  83. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '提醒时间'
  84. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  85. -- --------------------------------------------------------
  86. --
  87. -- 表的结构 `wonderful_act_score`
  88. --
  89. CREATE TABLE `wonderful_act_score` (
  90. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  91. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  92. `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '订阅类别',
  93. `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
  94. `user_log_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户积分日志ID',
  95. `score` int(80) DEFAULT NULL COMMENT '积分',
  96. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  97. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '时间'
  98. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  99. -- --------------------------------------------------------
  100. --
  101. -- 表的结构 `wonderful_act_share`
  102. --
  103. CREATE TABLE `wonderful_act_share` (
  104. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  105. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  106. `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '分享类别',
  107. `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
  108. `content` text COMMENT '内容',
  109. `num` int(11) NOT NULL DEFAULT '0' COMMENT '分享次数',
  110. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  111. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '分享时间'
  112. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  113. -- --------------------------------------------------------
  114. --
  115. -- 表的结构 `wonderful_act_share_reflux`
  116. --
  117. CREATE TABLE `wonderful_act_share_reflux` (
  118. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  119. `source_uid` int(11) NOT NULL DEFAULT '0' COMMENT '分享者',
  120. `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '分享类别',
  121. `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
  122. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '回流用户',
  123. `user_type` tinyint(1) NOT NULL DEFAULT '3' COMMENT '是否新用户',
  124. `gid` varchar(80) DEFAULT NULL COMMENT '群组ID',
  125. `share_id` int(11) NOT NULL DEFAULT '0' COMMENT '分享ID',
  126. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  127. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  128. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  129. -- --------------------------------------------------------
  130. --
  131. -- 表的结构 `wonderful_act_subscribe`
  132. --
  133. CREATE TABLE `wonderful_act_subscribe` (
  134. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  135. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  136. `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '订阅类别',
  137. `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
  138. `source` tinyint(1) NOT NULL DEFAULT '0' COMMENT '来源',
  139. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  140. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢时间'
  141. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  142. -- --------------------------------------------------------
  143. --
  144. -- 表的结构 `wonderful_act_watch`
  145. --
  146. CREATE TABLE `wonderful_act_watch` (
  147. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  148. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  149. `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '类别',
  150. `data_id` int(11) NOT NULL DEFAULT '0' COMMENT '标题',
  151. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  152. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢时间'
  153. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  154. -- --------------------------------------------------------
  155. --
  156. -- 表的结构 `wonderful_audit_data`
  157. --
  158. CREATE TABLE `wonderful_audit_data` (
  159. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  160. `type` int(11) NOT NULL DEFAULT '1' COMMENT '类型',
  161. `data_id` varchar(80) DEFAULT NULL COMMENT '数据ID',
  162. `name` varchar(80) DEFAULT NULL COMMENT '标题',
  163. `audit` int(11) NOT NULL DEFAULT '1' COMMENT '审核状态',
  164. `pdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
  165. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  166. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  167. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  168. `status` int(11) NOT NULL DEFAULT '1' COMMENT '上线状态',
  169. `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属栏目'
  170. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  171. -- --------------------------------------------------------
  172. --
  173. -- 表的结构 `wonderful_code_config`
  174. --
  175. CREATE TABLE `wonderful_code_config` (
  176. `id` int(11) UNSIGNED NOT NULL COMMENT '系统ID',
  177. `product_id` int(11) NOT NULL DEFAULT '0' COMMENT '选择小刊',
  178. `num` varchar(32) DEFAULT NULL COMMENT '兑换码数量',
  179. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  180. `product_num` varchar(32) NOT NULL DEFAULT '1' COMMENT '兑换本数'
  181. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  182. -- --------------------------------------------------------
  183. --
  184. -- 表的结构 `wonderful_code_info`
  185. --
  186. CREATE TABLE `wonderful_code_info` (
  187. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  188. `product_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊',
  189. `code` varchar(32) DEFAULT NULL COMMENT '兑换码',
  190. `type` int(11) NOT NULL DEFAULT '1' COMMENT '使用状态',
  191. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户信息',
  192. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  193. `ldate` int(11) NOT NULL DEFAULT '0' COMMENT '领取时间',
  194. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间',
  195. `product_num` int(11) NOT NULL DEFAULT '1' COMMENT '兑换本数'
  196. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  197. -- --------------------------------------------------------
  198. --
  199. -- 表的结构 `wonderful_content_article`
  200. --
  201. CREATE TABLE `wonderful_content_article` (
  202. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  203. `name` varchar(80) DEFAULT NULL COMMENT '标题',
  204. `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属栏目',
  205. `author_id` int(11) NOT NULL DEFAULT '1' COMMENT '作者',
  206. `tag` text COMMENT '标签',
  207. `pic_cover` varchar(150) DEFAULT NULL COMMENT '封面图-4:3比例的图片',
  208. `num_add_view` int(11) NOT NULL DEFAULT '0' COMMENT '浏览量基数',
  209. `num_view` int(11) NOT NULL DEFAULT '0' COMMENT '浏览量PV',
  210. `num_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢数',
  211. `num_comment` int(11) NOT NULL DEFAULT '0' COMMENT '评论数',
  212. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  213. `admin_founder` int(11) NOT NULL DEFAULT '1' COMMENT '创建人',
  214. `admin_editor` int(11) NOT NULL DEFAULT '1' COMMENT '操作人',
  215. `pdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
  216. `share` text COMMENT '分享海报-选择海报库中的海报',
  217. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  218. `udate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
  219. `content` text COMMENT '内容',
  220. `audit` int(11) NOT NULL DEFAULT '1' COMMENT '审核状态',
  221. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  222. `num_add_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢基数',
  223. `function` varchar(100) NOT NULL DEFAULT '1' COMMENT '功能选择',
  224. `share_yes` int(11) NOT NULL DEFAULT '1' COMMENT '是否显示分享按钮',
  225. `share_title` varchar(100) NOT NULL COMMENT '分享标题',
  226. `share_pic` varchar(150) NOT NULL COMMENT '分享图片',
  227. `share_content` varchar(200) NOT NULL COMMENT '分享内容',
  228. `status` int(11) NOT NULL DEFAULT '1' COMMENT '发布状态',
  229. `wechat` int(11) NOT NULL DEFAULT '1' COMMENT '是否公众号文章',
  230. `wechat_data_id` int(11) NOT NULL DEFAULT '1' COMMENT '微信数据ID',
  231. `pic_cover_169` varchar(150) NOT NULL COMMENT '16:9封面图-请上传16:9比例的封面图'
  232. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  233. -- --------------------------------------------------------
  234. --
  235. -- 表的结构 `wonderful_content_author`
  236. --
  237. CREATE TABLE `wonderful_content_author` (
  238. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  239. `name` varchar(32) DEFAULT NULL COMMENT '作者名称',
  240. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  241. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  242. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  243. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  244. -- --------------------------------------------------------
  245. --
  246. -- 表的结构 `wonderful_content_cate`
  247. --
  248. CREATE TABLE `wonderful_content_cate` (
  249. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  250. `name` varchar(32) DEFAULT NULL COMMENT '栏目名称',
  251. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  252. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  253. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  254. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  255. --
  256. -- 转存表中的数据 `wonderful_content_cate`
  257. --
  258. INSERT INTO `wonderful_content_cate` (`id`, `name`, `reorder`, `state`, `cdate`) VALUES
  259. (1, '精美', 6, 1, 1542000944),
  260. (2, '视频', 5, 1, 1542002379),
  261. (3, '时尚', 4, 1, 1542447602),
  262. (4, '美妆', 3, 1, 1542447612),
  263. (5, '娱乐', 2, 1, 1542447636),
  264. (6, '音乐', 1, 1, 1542447653),
  265. (7, '生活', 0, 1, 1542447678),
  266. (8, 'test', 1, 2, 1542447688);
  267. -- --------------------------------------------------------
  268. --
  269. -- 表的结构 `wonderful_journal_active`
  270. --
  271. CREATE TABLE `wonderful_journal_active` (
  272. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  273. `info_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊',
  274. `status` int(11) NOT NULL DEFAULT '1' COMMENT '活动状态',
  275. `name` varchar(80) DEFAULT NULL COMMENT '活动标题',
  276. `start` int(11) NOT NULL DEFAULT '0' COMMENT '活动开始时间',
  277. `end` int(11) NOT NULL DEFAULT '0' COMMENT '活动结束时间',
  278. `desc` varchar(800) DEFAULT NULL COMMENT '活动描述',
  279. `invite_num` int(11) NOT NULL DEFAULT '10' COMMENT '邀请多少个好友开启免费阅读',
  280. `invite_score` int(11) NOT NULL DEFAULT '2' COMMENT '每邀请一个好友获得积分',
  281. `invite_title` varchar(80) DEFAULT NULL COMMENT '邀请好友标题',
  282. `invite_desc` varchar(800) DEFAULT NULL COMMENT '邀请好友标题介绍',
  283. `content` text COMMENT '活动规则说明',
  284. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  285. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  286. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  287. -- --------------------------------------------------------
  288. --
  289. -- 表的结构 `wonderful_journal_buy`
  290. --
  291. CREATE TABLE `wonderful_journal_buy` (
  292. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  293. `info_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊',
  294. `buy_score` int(11) NOT NULL DEFAULT '20' COMMENT '每购买一本刊获得多少积分',
  295. `buy_title` varchar(80) DEFAULT NULL COMMENT '购买小刊标题',
  296. `buy_desc` varchar(800) DEFAULT NULL COMMENT '购买小刊介绍',
  297. `buy_content` text COMMENT '购买说明',
  298. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  299. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  300. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  301. -- --------------------------------------------------------
  302. --
  303. -- 表的结构 `wonderful_journal_buy_num`
  304. --
  305. CREATE TABLE `wonderful_journal_buy_num` (
  306. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  307. `info_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊',
  308. `name` varchar(80) DEFAULT NULL COMMENT '购买名称-一般为“购买N本”,如购买1本',
  309. `price` varchar(50) DEFAULT NULL COMMENT '购买时的标价',
  310. `cash` varchar(50) DEFAULT NULL COMMENT '支付价格-实际支付价格,单位元,直接填写数字即可',
  311. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  312. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  313. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间',
  314. `score` varchar(80) NOT NULL COMMENT '增加积分数-直接填写购买当前本数设置,用户能获得的积分',
  315. `num` int(11) NOT NULL DEFAULT '1' COMMENT '购买本数-直接填写购买的小刊本数数字即可'
  316. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  317. -- --------------------------------------------------------
  318. --
  319. -- 表的结构 `wonderful_journal_cate`
  320. --
  321. CREATE TABLE `wonderful_journal_cate` (
  322. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  323. `name` varchar(32) DEFAULT NULL COMMENT '分类名称',
  324. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  325. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  326. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  327. `title` varchar(32) NOT NULL COMMENT '页面TITLE-公众号支付中的页面标题',
  328. `cover` varchar(150) NOT NULL COMMENT '封面图-公众号支付中的封面图,图片尺寸460*759PX或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  329. `logo` varchar(150) NOT NULL COMMENT 'LOGO图-公众号支付中的LOGO图,图片尺寸100*100PX或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  330. `desc` text NOT NULL COMMENT '简介'
  331. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  332. --
  333. -- 转存表中的数据 `wonderful_journal_cate`
  334. --
  335. INSERT INTO `wonderful_journal_cate` (`id`, `name`, `reorder`, `state`, `cdate`, `title`, `cover`, `logo`, `desc`) VALUES
  336. (1, 'Jstyle精美', 1, 1, 1543592709, '默认', '{uploadRes}1/2018/12/01/724f243ea0aa1a5da006c822b4131109.jpg', '{uploadRes}1/2018/12/01/cac3f768ba3edd90b4fb64e35d6337c9.jpg', '我的时尚生活');
  337. -- --------------------------------------------------------
  338. --
  339. -- 表的结构 `wonderful_journal_content`
  340. --
  341. CREATE TABLE `wonderful_journal_content` (
  342. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  343. `info_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊',
  344. `type` int(11) NOT NULL DEFAULT '3' COMMENT '类型',
  345. `name` varchar(80) DEFAULT NULL COMMENT '标题',
  346. `focus` text COMMENT '焦点图',
  347. `author_id` int(11) NOT NULL DEFAULT '1' COMMENT '作者',
  348. `content` text COMMENT '内容',
  349. `pic` varchar(150) DEFAULT NULL COMMENT '图片',
  350. `is_button` int(11) NOT NULL DEFAULT '1' COMMENT '是否显示保存按钮',
  351. `article_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联图文',
  352. `vod_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联视频',
  353. `live_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联直播',
  354. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '页号',
  355. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  356. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
  357. `button_name` varchar(80) NOT NULL DEFAULT '保存图片' COMMENT '保存按钮文字内容',
  358. `button_color` varchar(10) NOT NULL DEFAULT '#000000' COMMENT '保存按钮文字颜色',
  359. `text` text NOT NULL COMMENT '文字设置'
  360. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  361. -- --------------------------------------------------------
  362. --
  363. -- 表的结构 `wonderful_journal_content_text`
  364. --
  365. CREATE TABLE `wonderful_journal_content_text` (
  366. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  367. `info_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊',
  368. `content_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊内页',
  369. `name` varchar(800) DEFAULT NULL COMMENT '文字内容',
  370. `location` int(11) NOT NULL DEFAULT '1' COMMENT '文字显示位置',
  371. `color` varchar(10) DEFAULT NULL COMMENT '文字颜色',
  372. `bgcolor` varchar(10) DEFAULT NULL COMMENT '背景颜色',
  373. `size` int(11) NOT NULL DEFAULT '16' COMMENT '文字大小-直接输入像素数字',
  374. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  375. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  376. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  377. -- --------------------------------------------------------
  378. --
  379. -- 表的结构 `wonderful_journal_info`
  380. --
  381. CREATE TABLE `wonderful_journal_info` (
  382. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  383. `name` varchar(180) DEFAULT NULL COMMENT '杂志标题',
  384. `subname` varchar(80) DEFAULT NULL COMMENT '子标题-一般为杂志的期数,如第1期',
  385. `pic_cover` varchar(150) DEFAULT NULL COMMENT '列表页封面图-4:3比例的图片',
  386. `pic_view_cover` varchar(150) DEFAULT NULL COMMENT '封面图-1:1比例的图片',
  387. `pic_view_bg` text COMMENT '全屏背景图-进入小刊阅读页之前的全屏背景图,可以多张切换,尽量保持在5张之内',
  388. `num_add_ding` int(11) NOT NULL DEFAULT '0' COMMENT '订阅数基数',
  389. `num_ding` int(11) NOT NULL DEFAULT '0' COMMENT '订阅数',
  390. `num_add_view` int(11) NOT NULL DEFAULT '0' COMMENT '阅读数基数',
  391. `num_view` int(11) NOT NULL DEFAULT '0' COMMENT '阅读数',
  392. `num_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢数',
  393. `num_comment` int(11) NOT NULL DEFAULT '0' COMMENT '评论数',
  394. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  395. `audit` int(11) NOT NULL DEFAULT '1' COMMENT '上线状态',
  396. `admin_founder` int(11) NOT NULL DEFAULT '1' COMMENT '创建人',
  397. `admin_editor` int(11) NOT NULL DEFAULT '1' COMMENT '操作人',
  398. `pdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
  399. `share` text COMMENT '分享海报-选择海报库中的海报',
  400. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  401. `udate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
  402. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  403. `num_add_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢基数',
  404. `status` int(11) NOT NULL DEFAULT '1' COMMENT '上线状态',
  405. `buy` int(11) NOT NULL DEFAULT '1' COMMENT '小刊是否收费',
  406. `share_yes` int(11) NOT NULL DEFAULT '1' COMMENT '是否显示分享按钮',
  407. `share_title` varchar(100) NOT NULL COMMENT '分享标题',
  408. `share_pic` varchar(150) NOT NULL COMMENT '分享图片',
  409. `share_content` varchar(200) NOT NULL COMMENT '分享内容',
  410. `pic_gd` varchar(150) NOT NULL COMMENT '小刊推广图-上传图片比例为750X1128PX',
  411. `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '小刊分类',
  412. `cash` varchar(50) NOT NULL COMMENT '单本支付价格-实际的小刊单本支付价格,单位元,直接填写数字即可',
  413. `score` varchar(80) NOT NULL DEFAULT '20' COMMENT '购买增加积分数-直接填写购买单本小刊的积分数,设置之后,积分规则里的设置将失效,如果设置为0,则按照积分规则进行增加积分',
  414. `dh_score` varchar(80) NOT NULL DEFAULT '20' COMMENT '兑换增加积分数-直接填写兑换单本小刊的积分数,设置之后,积分规则里的设置将失效,如果设置为0,则按照积分规则进行增加积分'
  415. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  416. -- --------------------------------------------------------
  417. --
  418. -- 表的结构 `wonderful_journal_order`
  419. --
  420. CREATE TABLE `wonderful_journal_order` (
  421. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  422. `order_id` varchar(100) DEFAULT NULL COMMENT '订单ID',
  423. `name` varchar(80) DEFAULT NULL COMMENT '订单名称',
  424. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户ID',
  425. `product_id` int(11) NOT NULL DEFAULT '0' COMMENT '小刊',
  426. `type` int(11) NOT NULL DEFAULT '1' COMMENT '支付方式',
  427. `notice` int(11) NOT NULL DEFAULT '0' COMMENT '模板消息提醒次数',
  428. `cash` varchar(50) DEFAULT NULL COMMENT '支付金额',
  429. `code` varchar(50) DEFAULT NULL COMMENT '使用的兑换码',
  430. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '订单状态',
  431. `tk_time` int(11) NOT NULL DEFAULT '0' COMMENT '退款时间',
  432. `tk_admin` int(11) NOT NULL DEFAULT '1' COMMENT '退款审核人',
  433. `tk_desc` varchar(300) DEFAULT NULL COMMENT '退款备注',
  434. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  435. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '下单时间',
  436. `info` varchar(300) DEFAULT NULL COMMENT '备注',
  437. `mobile` varchar(300) DEFAULT NULL COMMENT '手机号',
  438. `source_uid` int(11) NOT NULL COMMENT '邀请人',
  439. `buy_id` int(11) NOT NULL COMMENT '购买本数'
  440. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  441. -- --------------------------------------------------------
  442. --
  443. -- 表的结构 `wonderful_live_active`
  444. --
  445. CREATE TABLE `wonderful_live_active` (
  446. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  447. `name` varchar(300) DEFAULT NULL COMMENT '活动名称',
  448. `live_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属直播云',
  449. `status` int(11) NOT NULL DEFAULT '2' COMMENT '上线状态',
  450. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  451. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  452. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  453. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  454. -- --------------------------------------------------------
  455. --
  456. -- 表的结构 `wonderful_live_info`
  457. --
  458. CREATE TABLE `wonderful_live_info` (
  459. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  460. `name` varchar(300) DEFAULT NULL COMMENT '配置名称',
  461. `type` int(11) NOT NULL DEFAULT '1' COMMENT '所属云',
  462. `space` varchar(300) DEFAULT NULL COMMENT '云空间名-请提前建好云空间,后续会迭代优化,增加云空间的创建和更新,本版本暂时使用已经创建好的云空间',
  463. `appkey` varchar(80) DEFAULT NULL COMMENT 'APPKEY',
  464. `appsecret` varchar(200) DEFAULT NULL COMMENT 'APPSECRET',
  465. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  466. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
  467. `domain_publish` varchar(200) NOT NULL COMMENT '推流域名',
  468. `domain_live_rtmp` varchar(200) NOT NULL COMMENT '高清直播域名',
  469. `domain_live_hls` varchar(200) NOT NULL COMMENT '标清直播域名',
  470. `domain_live_hdl` varchar(200) NOT NULL COMMENT '普清直播域名',
  471. `domain_live_pic` varchar(200) NOT NULL COMMENT '直播截图域名',
  472. `host` varchar(800) NOT NULL COMMENT '存储空间域名'
  473. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  474. --
  475. -- 转存表中的数据 `wonderful_live_info`
  476. --
  477. INSERT INTO `wonderful_live_info` (`id`, `name`, `type`, `space`, `appkey`, `appsecret`, `state`, `cdate`, `domain_publish`, `domain_live_rtmp`, `domain_live_hls`, `domain_live_hdl`, `domain_live_pic`, `host`) VALUES
  478. (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/');
  479. -- --------------------------------------------------------
  480. --
  481. -- 表的结构 `wonderful_live_stream`
  482. --
  483. CREATE TABLE `wonderful_live_stream` (
  484. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  485. `live_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属直播云',
  486. `active_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属活动',
  487. `name` varchar(300) DEFAULT NULL COMMENT '流名称',
  488. `key` varchar(300) DEFAULT NULL COMMENT '流标识-流标识在直播空间中唯一,可包含 字母、数字、中划线、下划线;1 ~ 200 个字符长,对应云上的流名称。\r\n',
  489. `times` varchar(30) DEFAULT NULL COMMENT '直播时长-直接输入小时数,默认为100天',
  490. `status` int(11) NOT NULL DEFAULT '1' COMMENT '流状态',
  491. `live_date` int(11) NOT NULL DEFAULT '0' COMMENT '上次获取推流地址的时间',
  492. `live` varchar(800) DEFAULT NULL COMMENT '推流地址',
  493. `url_rtmp` varchar(800) DEFAULT NULL COMMENT '高清地址',
  494. `url_hls` varchar(800) DEFAULT NULL COMMENT '标清地址',
  495. `url_hdl` varchar(800) DEFAULT NULL COMMENT '普清地址',
  496. `url_pic` varchar(800) DEFAULT NULL COMMENT '直播截图地址',
  497. `info` text COMMENT '直播信息',
  498. `disabled` int(11) NOT NULL DEFAULT '1' COMMENT '禁播流',
  499. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  500. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  501. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  502. -- --------------------------------------------------------
  503. --
  504. -- 表的结构 `wonderful_live_stream_ios_log`
  505. --
  506. CREATE TABLE `wonderful_live_stream_ios_log` (
  507. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  508. `live_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属直播云',
  509. `active_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属活动',
  510. `stream_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属直播流',
  511. `sdate` int(11) NOT NULL DEFAULT '0' COMMENT '开始时间',
  512. `edate` int(11) NOT NULL DEFAULT '0' COMMENT '结束时间',
  513. `url_m3u8` varchar(800) DEFAULT NULL COMMENT '直播回放地址',
  514. `url_mp4` varchar(800) DEFAULT NULL COMMENT '直播回放地址',
  515. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  516. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  517. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  518. -- --------------------------------------------------------
  519. --
  520. -- 表的结构 `wonderful_live_stream_log`
  521. --
  522. CREATE TABLE `wonderful_live_stream_log` (
  523. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  524. `live_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属直播云',
  525. `active_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属活动',
  526. `stream_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属直播流',
  527. `sdate` int(11) NOT NULL DEFAULT '0' COMMENT '开始时间',
  528. `edate` int(11) NOT NULL DEFAULT '0' COMMENT '结束时间',
  529. `url_m3u8` varchar(800) DEFAULT NULL COMMENT '直播回放地址',
  530. `url_mp4` varchar(800) DEFAULT NULL COMMENT '直播回放地址',
  531. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  532. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  533. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  534. -- --------------------------------------------------------
  535. --
  536. -- 表的结构 `wonderful_main_config`
  537. --
  538. CREATE TABLE `wonderful_main_config` (
  539. `id` int(11) UNSIGNED NOT NULL COMMENT '系统ID',
  540. `name` varchar(32) DEFAULT NULL COMMENT '系统名称',
  541. `info` text COMMENT '系统介绍',
  542. `logo` varchar(150) DEFAULT NULL COMMENT 'LOGO图片',
  543. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  544. `article_share_name` varchar(100) NOT NULL DEFAULT '喜欢就邀请好友一起阅读' COMMENT '图文详情页分享文字设置',
  545. `vod_share_name` varchar(100) NOT NULL DEFAULT '喜欢就邀请好友一起阅读' COMMENT '视频详情页分享文字设置',
  546. `live_share_name` varchar(100) NOT NULL DEFAULT '喜欢就邀请好友一起阅读' COMMENT '直播详情页分享文字设置',
  547. `ios_pay` int(11) NOT NULL DEFAULT '1' COMMENT 'IOS支付设置',
  548. `ios_pay_pic` varchar(150) NOT NULL COMMENT 'IOS支付引导图-IOS支付引导图',
  549. `service_name` varchar(100) NOT NULL COMMENT '公众号名称',
  550. `service_text` varchar(100) NOT NULL DEFAULT 'JSTYLE精美电子刊' COMMENT '公众号支付成功时的小程序名称'
  551. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  552. --
  553. -- 转存表中的数据 `wonderful_main_config`
  554. --
  555. INSERT INTO `wonderful_main_config` (`id`, `name`, `info`, `logo`, `cdate`, `article_share_name`, `vod_share_name`, `live_share_name`, `ios_pay`, `ios_pay_pic`, `service_name`, `service_text`) VALUES
  556. (1, 'Jstyle精美', '风格,灵感,态度,JSTYLE 精美——我的时尚指南', '', 1542006576, '喜欢就邀请好友一起阅读', '喜欢就邀请好友一起看', '喜欢就邀请好友一起看', 2, '{uploadRes}1/2018/12/01/7488e6a0f2a822cdbe0a2f6058121cbe.jpg', 'jstylecn', 'JSTYLE精美');
  557. -- --------------------------------------------------------
  558. --
  559. -- 表的结构 `wonderful_manage_admin`
  560. --
  561. CREATE TABLE `wonderful_manage_admin` (
  562. `id` int(11) UNSIGNED NOT NULL COMMENT '管理员ID',
  563. `username` varchar(24) DEFAULT NULL COMMENT '管理员名',
  564. `email` varchar(150) DEFAULT NULL COMMENT '邮箱-可用于登录,请准确填写,不允许重复',
  565. `mobile` varchar(32) DEFAULT NULL COMMENT '手机号',
  566. `password` varchar(64) DEFAULT NULL COMMENT '管理员密码',
  567. `config` int(11) NOT NULL DEFAULT '1' COMMENT '后台配置',
  568. `role` varchar(100) DEFAULT NULL COMMENT '角色',
  569. `group` int(11) NOT NULL DEFAULT '1' COMMENT '分组',
  570. `top` text COMMENT '头部菜单-这里的头部菜单如果设置,则会覆盖角色中的头部菜单',
  571. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
  572. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  573. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  574. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  575. --
  576. -- 转存表中的数据 `wonderful_manage_admin`
  577. --
  578. INSERT INTO `wonderful_manage_admin` (`id`, `username`, `email`, `mobile`, `password`, `config`, `role`, `group`, `top`, `state`, `status`, `cdate`) VALUES
  579. (1, 'admin@admin.com', 'admin@admin.com', NULL, '8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92', 1, '1', 1, NULL, 1, 1, 1542000852),
  580. (2, '孟', 'mengyu@meixiaokan.com', '18712331230', '8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92', 1, '3', 1, NULL, 1, 2, 1542459209);
  581. -- --------------------------------------------------------
  582. --
  583. -- 表的结构 `wonderful_manage_admin_role`
  584. --
  585. CREATE TABLE `wonderful_manage_admin_role` (
  586. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  587. `admin_id` int(11) NOT NULL DEFAULT '0' COMMENT '管理员ID',
  588. `role_id` int(11) NOT NULL DEFAULT '0' COMMENT '角色ID',
  589. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  590. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  591. -- --------------------------------------------------------
  592. --
  593. -- 表的结构 `wonderful_manage_auth`
  594. --
  595. CREATE TABLE `wonderful_manage_auth` (
  596. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  597. `project` varchar(50) DEFAULT NULL COMMENT '项目KEY',
  598. `project_name` varchar(50) DEFAULT NULL COMMENT '项目名',
  599. `name` varchar(50) DEFAULT NULL COMMENT '权限名',
  600. `auth_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级权限',
  601. `key` varchar(100) DEFAULT NULL COMMENT '权限KEY',
  602. `value` varchar(30) DEFAULT NULL COMMENT '对应的值',
  603. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  604. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  605. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  606. -- --------------------------------------------------------
  607. --
  608. -- 表的结构 `wonderful_manage_config`
  609. --
  610. CREATE TABLE `wonderful_manage_config` (
  611. `id` int(11) UNSIGNED NOT NULL COMMENT '配置ID',
  612. `name` varchar(32) DEFAULT NULL COMMENT '配置名',
  613. `template` int(1) NOT NULL DEFAULT '1' COMMENT '后台模板',
  614. `title` varchar(32) DEFAULT NULL COMMENT '后台TITLE',
  615. `info` varchar(40) DEFAULT NULL COMMENT '控制台欢迎标题',
  616. `content` text COMMENT '控制台欢迎内容',
  617. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  618. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  619. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  620. --
  621. -- 转存表中的数据 `wonderful_manage_config`
  622. --
  623. INSERT INTO `wonderful_manage_config` (`id`, `name`, `template`, `title`, `info`, `content`, `state`, `cdate`) VALUES
  624. (1, '默认配置', 1, '精美时尚', '', '', 1, 1542000853);
  625. -- --------------------------------------------------------
  626. --
  627. -- 表的结构 `wonderful_manage_cron`
  628. --
  629. CREATE TABLE `wonderful_manage_cron` (
  630. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  631. `name` varchar(32) DEFAULT NULL COMMENT '任务名',
  632. `project` varchar(30) DEFAULT NULL COMMENT '项目',
  633. `interface` varchar(100) DEFAULT NULL COMMENT '接口(命令行)',
  634. `ldate` int(11) NOT NULL DEFAULT '0' COMMENT '执行时间',
  635. `time` int(11) NOT NULL DEFAULT '0' COMMENT '时间间隔(为0则执行一次)',
  636. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  637. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  638. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  639. --
  640. -- 转存表中的数据 `wonderful_manage_cron`
  641. --
  642. INSERT INTO `wonderful_manage_cron` (`id`, `name`, `project`, `interface`, `ldate`, `time`, `state`, `cdate`) VALUES
  643. (1, '定时获取直播流状态', 'live', 'lib/cron.getStream', 1543889941, 3000, 1, 1542106471),
  644. (2, '定时获取公众号数据', 'spider', 'lib/get.wechat', 1543890237, 1000, 1, 1542592606),
  645. (3, '获取回放地址', 'live', 'lib/cron.getUrl', 1543890104, 800, 1, 1542698116);
  646. -- --------------------------------------------------------
  647. --
  648. -- 表的结构 `wonderful_manage_group`
  649. --
  650. CREATE TABLE `wonderful_manage_group` (
  651. `id` int(11) UNSIGNED NOT NULL COMMENT '组ID',
  652. `name` varchar(50) DEFAULT NULL COMMENT '组名称',
  653. `area` varchar(255) DEFAULT NULL COMMENT '区域',
  654. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  655. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  656. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  657. --
  658. -- 转存表中的数据 `wonderful_manage_group`
  659. --
  660. INSERT INTO `wonderful_manage_group` (`id`, `name`, `area`, `state`, `cdate`) VALUES
  661. (1, '平台运营部', NULL, 1, 1542000853),
  662. (2, '内容制作部', NULL, 1, 1542459460),
  663. (3, '产品技术部', NULL, 1, 1542592716),
  664. (4, '市场部', NULL, 1, 1542592725),
  665. (5, '销售部', NULL, 1, 1542702771),
  666. (6, '人行财法部', NULL, 1, 1542702821),
  667. (7, '管理部', NULL, 1, 1542702863),
  668. (8, '产品技术', NULL, 2, 1542702877);
  669. -- --------------------------------------------------------
  670. --
  671. -- 表的结构 `wonderful_manage_log`
  672. --
  673. CREATE TABLE `wonderful_manage_log` (
  674. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  675. `project` varchar(32) DEFAULT NULL COMMENT '项目名',
  676. `table` varchar(32) DEFAULT NULL COMMENT '项目下的表名',
  677. `info` longtext COMMENT '日志记录',
  678. `admin` int(11) NOT NULL DEFAULT '0' COMMENT '操作人',
  679. `tid` int(11) NOT NULL DEFAULT '0' COMMENT '来源表ID',
  680. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  681. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '操作时间'
  682. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  683. -- --------------------------------------------------------
  684. --
  685. -- 表的结构 `wonderful_manage_menu`
  686. --
  687. CREATE TABLE `wonderful_manage_menu` (
  688. `id` int(11) UNSIGNED NOT NULL COMMENT '菜单ID',
  689. `name` varchar(50) DEFAULT NULL COMMENT '菜单名称',
  690. `menu_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级菜单',
  691. `key` varchar(100) DEFAULT NULL COMMENT '菜单唯一KEY',
  692. `link` varchar(150) DEFAULT NULL COMMENT '链接(或路径)',
  693. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序',
  694. `type` tinyint(1) NOT NULL DEFAULT '2' COMMENT '开启子菜单',
  695. `icon` varchar(100) DEFAULT NULL COMMENT '图标代码-请<A HREF="HTTPS://WWW.LAYUI.COM/DOC/ELEMENT/ICON.HTML" TARGET="_BLANK">点此</A>查看图标代码',
  696. `fast` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否快捷菜单',
  697. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  698. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  699. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  700. --
  701. -- 转存表中的数据 `wonderful_manage_menu`
  702. --
  703. INSERT INTO `wonderful_manage_menu` (`id`, `name`, `menu_id`, `key`, `link`, `reorder`, `type`, `icon`, `fast`, `state`, `cdate`) VALUES
  704. (1, '主页', -1, 'console', 'console:主页', 10000, 2, 'layui-icon-home', 2, 1, 1542000853),
  705. (2, '控制台', 1, 'console.index', 'http://www.huoxingkandiqiu.com/wonderful/manage/?l=console', 10, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1542000853),
  706. (3, '后台设置', -1, 'manage', '/share/lib/php/dever_package/manage/:后台设置', -100, 2, 'glyphicon glyphicon-wrench layui-icon-set-sm', 2, 1, 1542000853),
  707. (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),
  708. (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),
  709. (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),
  710. (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),
  711. (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),
  712. (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),
  713. (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),
  714. (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),
  715. (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),
  716. (13, '内容管理', -1, 'content', '/www/wonderful/content/:内容管理', 200, 2, 'glyphicon glyphicon-tower layui-icon-tabs', 2, 1, 1542000873),
  717. (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),
  718. (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),
  719. (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),
  720. (17, '管理推荐位', -1, 'push', '/www/wonderful/push/:管理推荐位', 199, 2, 'glyphicon glyphicon-tower layui-icon-template-1', 2, 1, 1542000876),
  721. (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),
  722. (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),
  723. (20, '小刊', -1, 'journal', '/www/wonderful/journal/:小刊', 190, 2, 'glyphicon glyphicon-tower layui-icon-cellphone-fine', 2, 1, 1542000878),
  724. (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),
  725. (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),
  726. (23, '互动管理', -1, 'act', '/www/wonderful/act/:互动管理', 199, 2, 'glyphicon glyphicon-tower layui-icon-theme', 2, 1, 1542000888),
  727. (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),
  728. (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),
  729. (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),
  730. (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),
  731. (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),
  732. (29, '直播管理', -1, 'live', '/www/wonderful/live/:直播管理', 194, 2, 'glyphicon glyphicon-tower layui-icon-camera', 2, 2, 1542000907),
  733. (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),
  734. (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),
  735. (32, '视频与直播', -1, 'video', '/www/wonderful/video/:视频与直播', 195, 2, 'glyphicon glyphicon-tower layui-icon-video', 2, 1, 1542000909),
  736. (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),
  737. (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),
  738. (35, '标签管理', -1, 'tag', '/www/wonderful/tag/:标签管理', 199, 2, 'glyphicon glyphicon-tower layui-icon-rate-solid', 2, 2, 1542000914),
  739. (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),
  740. (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),
  741. (38, '基础设置', -1, 'main', '/www/wonderful/main/:基础设置', 98, 2, 'glyphicon glyphicon-tower layui-icon-component', 2, 2, 1542000926),
  742. (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),
  743. (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),
  744. (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),
  745. (42, '用户管理', -1, 'passport', '/share/lib/php/dever_package/passport/:用户管理', -10, 2, 'glyphicon glyphicon-user layui-icon-username', 2, 1, 1542102504),
  746. (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),
  747. (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),
  748. (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),
  749. (46, '合作内容入库', -1, 'spider', '/www/wonderful/spider/:合作内容入库', 100, 2, 'glyphicon glyphicon-tower layui-icon-tree', 2, 1, 1542592490),
  750. (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),
  751. (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),
  752. (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),
  753. (50, '消息系统', -1, 'message', '/share/lib/php/dever_package/message/:消息系统', -6, 2, 'glyphicon glyphicon-dashboard layui-icon-senior', 2, 2, 1542722821),
  754. (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),
  755. (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),
  756. (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),
  757. (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),
  758. (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),
  759. (56, '平台运营设置', -1, 'score', '/www/wonderful/score/:平台运营设置', 1, 2, 'glyphicon glyphicon-credit-card layui-icon-chat', 2, 1, 1543106717),
  760. (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),
  761. (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),
  762. (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),
  763. (60, '资源库', -1, 'upload', '/share/lib/php/dever_package/upload/:资源库', -90, 2, 'glyphicon glyphicon-upload layui-icon-picture', 2, 2, 1543226512),
  764. (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),
  765. (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),
  766. (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),
  767. (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),
  768. (65, '海报管理', -1, 'poster', '/share/lib/php/dever_package/poster/:海报管理', -2, 2, 'glyphicon glyphicon-warning-sign layui-icon-template', 2, 2, 1543226512),
  769. (66, '海报模板设置', 56, 'poster.template', 'project/database/list?project=poster&table=template&menu=poster&search_option_state=1', 20, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1543226512),
  770. (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),
  771. (68, '第三方登录', -1, 'oauth', '/share/lib/php/dever_package/oauth/:第三方登录', 1, 2, 'glyphicon glyphicon-filter layui-icon-group', 2, 2, 1543753702),
  772. (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),
  773. (70, '短信管理', -1, 'sms', '/share/lib/php/dever_package/sms/:短信管理', -10, 2, 'glyphicon glyphicon-list-alt layui-icon-note', 2, 1, 1543889040),
  774. (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);
  775. -- --------------------------------------------------------
  776. --
  777. -- 表的结构 `wonderful_manage_notice`
  778. --
  779. CREATE TABLE `wonderful_manage_notice` (
  780. `id` int(11) UNSIGNED NOT NULL COMMENT '公告ID',
  781. `name` varchar(32) DEFAULT NULL COMMENT '公告标题',
  782. `config` int(11) NOT NULL DEFAULT '1' COMMENT '后台配置',
  783. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  784. `content` text COMMENT '内容',
  785. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  786. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  787. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  788. -- --------------------------------------------------------
  789. --
  790. -- 表的结构 `wonderful_manage_opt`
  791. --
  792. CREATE TABLE `wonderful_manage_opt` (
  793. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  794. `project` varchar(30) DEFAULT NULL COMMENT '项目',
  795. `table` varchar(30) DEFAULT NULL COMMENT '数据表-请输入表的英文名',
  796. `method` varchar(32) DEFAULT NULL COMMENT '所属方法名',
  797. `col` varchar(500) DEFAULT NULL COMMENT '使用的字段',
  798. `col_index` varchar(500) DEFAULT NULL COMMENT '建立索引的字段',
  799. `version` int(11) NOT NULL DEFAULT '0' COMMENT '版本号',
  800. `num` int(11) NOT NULL DEFAULT '0' COMMENT '执行次数',
  801. `time` varchar(30) DEFAULT NULL COMMENT '执行时间',
  802. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否建立索引',
  803. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据是否存在',
  804. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  805. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  806. -- --------------------------------------------------------
  807. --
  808. -- 表的结构 `wonderful_manage_role`
  809. --
  810. CREATE TABLE `wonderful_manage_role` (
  811. `id` int(11) UNSIGNED NOT NULL COMMENT '角色ID',
  812. `name` varchar(24) DEFAULT NULL COMMENT '角色名',
  813. `role_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级角色',
  814. `self` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否只能管理自己发布的内容-请在需要此项权限的表中增加[数据查询时影响的字段]',
  815. `col_select` varchar(30) DEFAULT NULL COMMENT '数据查询时影响的字段-该项影响数据查询,如果在表中增加该字段,则后台在查询数据时自动查询当前管理员的ID下的数据,多个用逗号隔开,与[是否只能管理自己发布的内容]相关',
  816. `col_insert` varchar(30) DEFAULT NULL COMMENT '数据插入时影响的字段-该项影响数据插入,如果在表中增加该字段,则后台操作时自动为该字段赋值为当前管理员的ID,多个用逗号隔开',
  817. `col_update` varchar(30) DEFAULT NULL COMMENT '数据更新时影响的字段-该项影响数据更新,如果在表中增加该字段,则后台操作时自动为该字段赋值为当前管理员的ID,多个用逗号隔开',
  818. `oper` varchar(24) DEFAULT NULL COMMENT '操作权限',
  819. `auth` text COMMENT '左侧菜单',
  820. `top` text COMMENT '右侧头部菜单',
  821. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前',
  822. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  823. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  824. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  825. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  826. --
  827. -- 转存表中的数据 `wonderful_manage_role`
  828. --
  829. INSERT INTO `wonderful_manage_role` (`id`, `name`, `role_id`, `self`, `col_select`, `col_insert`, `col_update`, `oper`, `auth`, `top`, `reorder`, `state`, `status`, `cdate`) VALUES
  830. (1, '系统管理员', -1, 2, 'admin_founder', 'admin_founder', 'admin_editor', '1,2,3,4,5', 'all', NULL, 1, 1, 1, 1542000853),
  831. (2, '人事行政', -1, 2, 'admin_founder', 'admin_founder', 'admin_editor', '1,2,3,4', 'console.index,manage.admin,manage.group', NULL, 1, 1, 1, 1542000853),
  832. (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),
  833. (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),
  834. (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);
  835. -- --------------------------------------------------------
  836. --
  837. -- 表的结构 `wonderful_manage_top`
  838. --
  839. CREATE TABLE `wonderful_manage_top` (
  840. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  841. `name` varchar(50) DEFAULT NULL COMMENT '权限名',
  842. `top_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级权限',
  843. `key` varchar(100) DEFAULT NULL COMMENT '权限KEY',
  844. `value` varchar(30) DEFAULT NULL COMMENT '对应的值',
  845. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  846. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  847. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  848. -- --------------------------------------------------------
  849. --
  850. -- 表的结构 `wonderful_message_inbox`
  851. --
  852. CREATE TABLE `wonderful_message_inbox` (
  853. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  854. `oid` int(11) NOT NULL DEFAULT '0' COMMENT '收件ID',
  855. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '收件人',
  856. `from_uid` int(11) NOT NULL DEFAULT '0' COMMENT '发件人',
  857. `name` varchar(30) DEFAULT NULL COMMENT '发件标题',
  858. `content` text COMMENT '发件内容',
  859. `type` int(11) NOT NULL DEFAULT '1' COMMENT '消息类型',
  860. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '已读状态',
  861. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  862. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  863. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  864. -- --------------------------------------------------------
  865. --
  866. -- 表的结构 `wonderful_message_outbox`
  867. --
  868. CREATE TABLE `wonderful_message_outbox` (
  869. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  870. `uid` int(11) NOT NULL DEFAULT '-1' COMMENT '发件人',
  871. `name` varchar(30) DEFAULT NULL COMMENT '发件标题',
  872. `content` text COMMENT '发件内容',
  873. `type` int(11) NOT NULL DEFAULT '1' COMMENT '消息类型',
  874. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  875. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  876. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  877. -- --------------------------------------------------------
  878. --
  879. -- 表的结构 `wonderful_message_type`
  880. --
  881. CREATE TABLE `wonderful_message_type` (
  882. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  883. `name` varchar(30) DEFAULT NULL COMMENT '类型名称-类型ID值为10以下则为系统消息',
  884. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '同时推送-暂未实现,实现后将可以同步发送微信、短信、客户端消息等',
  885. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  886. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  887. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  888. --
  889. -- 转存表中的数据 `wonderful_message_type`
  890. --
  891. INSERT INTO `wonderful_message_type` (`id`, `name`, `type`, `state`, `cdate`) VALUES
  892. (1, '系统消息', 1, 1, 1542722855),
  893. (2, '系统通知', 1, 1, 1542722855),
  894. (11, '用户通知', 1, 1, 1542722855);
  895. -- --------------------------------------------------------
  896. --
  897. -- 表的结构 `wonderful_oauth_account`
  898. --
  899. CREATE TABLE `wonderful_oauth_account` (
  900. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  901. `name` varchar(60) DEFAULT NULL COMMENT '账户名称',
  902. `type` varchar(30) DEFAULT NULL COMMENT '账户类型',
  903. `appid` varchar(150) DEFAULT NULL COMMENT 'APPID',
  904. `appsecret` varchar(300) DEFAULT NULL COMMENT 'APPSECRET',
  905. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  906. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间'
  907. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  908. --
  909. -- 转存表中的数据 `wonderful_oauth_account`
  910. --
  911. INSERT INTO `wonderful_oauth_account` (`id`, `name`, `type`, `appid`, `appsecret`, `state`, `cdate`) VALUES
  912. (1, '精美服务号', 'wechat', 'wx6f1ed9ba7eba0361', '961b90a6e4ebfe5d13462e17530be9b5', 1, 1543753734);
  913. -- --------------------------------------------------------
  914. --
  915. -- 表的结构 `wonderful_passport_app`
  916. --
  917. CREATE TABLE `wonderful_passport_app` (
  918. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  919. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户',
  920. `source_type` int(11) NOT NULL DEFAULT '1' COMMENT '用户来源',
  921. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  922. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  923. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  924. -- --------------------------------------------------------
  925. --
  926. -- 表的结构 `wonderful_passport_code`
  927. --
  928. CREATE TABLE `wonderful_passport_code` (
  929. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  930. `mobile` varchar(32) DEFAULT NULL COMMENT '手机号',
  931. `code` varchar(32) DEFAULT NULL COMMENT '验证码',
  932. `day` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间',
  933. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  934. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间'
  935. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  936. -- --------------------------------------------------------
  937. --
  938. -- 表的结构 `wonderful_passport_user`
  939. --
  940. CREATE TABLE `wonderful_passport_user` (
  941. `id` int(11) UNSIGNED NOT NULL COMMENT '用户ID',
  942. `username` varchar(50) DEFAULT NULL COMMENT '用户名',
  943. `mobile` varchar(32) DEFAULT NULL COMMENT '手机号',
  944. `source_type` varchar(100) DEFAULT NULL COMMENT '用户来源',
  945. `email` varchar(150) DEFAULT NULL COMMENT '邮箱',
  946. `password` varchar(50) DEFAULT NULL COMMENT '密码',
  947. `avatar` varchar(150) DEFAULT NULL COMMENT '头像',
  948. `country` varchar(100) DEFAULT NULL COMMENT '国家',
  949. `province` varchar(100) DEFAULT NULL COMMENT '省份',
  950. `city` varchar(100) DEFAULT NULL COMMENT '城市',
  951. `area` varchar(800) DEFAULT NULL COMMENT '地区',
  952. `info` varchar(255) DEFAULT NULL COMMENT '介绍-选填,如果想清空该介绍,请输入NULL。',
  953. `score` varchar(50) DEFAULT NULL COMMENT '积分',
  954. `sex` tinyint(1) NOT NULL DEFAULT '3' COMMENT '用户性别',
  955. `level` tinyint(1) NOT NULL DEFAULT '1' COMMENT '用户等级',
  956. `temp` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否临时用户',
  957. `login_date` int(11) NOT NULL DEFAULT '0' COMMENT '最近登录',
  958. `bind` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否绑定手机',
  959. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  960. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '注册时间'
  961. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  962. -- --------------------------------------------------------
  963. --
  964. -- 表的结构 `wonderful_passport_wechat`
  965. --
  966. CREATE TABLE `wonderful_passport_wechat` (
  967. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  968. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户',
  969. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '类型',
  970. `openid` varchar(50) DEFAULT NULL COMMENT 'OPENID-微信的唯一用户ID',
  971. `unionid` varchar(50) DEFAULT NULL COMMENT 'UNIONID-微信的唯一用户ID',
  972. `session_key` varchar(50) DEFAULT NULL COMMENT 'SESSION_KEY',
  973. `access_token` varchar(200) DEFAULT NULL COMMENT 'ACCESS_TOKEN',
  974. `refresh_token` varchar(200) DEFAULT NULL COMMENT 'REFRESH_TOKEN',
  975. `expires_in` varchar(100) DEFAULT NULL COMMENT 'EXPIRES_IN',
  976. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  977. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  978. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  979. -- --------------------------------------------------------
  980. --
  981. -- 表的结构 `wonderful_poster_model`
  982. --
  983. CREATE TABLE `wonderful_poster_model` (
  984. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  985. `template_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属模板',
  986. `name` varchar(32) DEFAULT NULL COMMENT '模块名称',
  987. `key` varchar(32) DEFAULT NULL COMMENT '模块标识-设置模块时,使用该标识来设置模块信息',
  988. `type` int(11) NOT NULL DEFAULT '1' COMMENT '模块类型',
  989. `value` varchar(500) DEFAULT NULL COMMENT '模块默认值',
  990. `position_type` int(11) NOT NULL DEFAULT '8' COMMENT '模块位置',
  991. `position` varchar(32) DEFAULT NULL COMMENT '模块定位-位置为LEFT,TOP,如100,200',
  992. `offset` varchar(32) DEFAULT NULL COMMENT '偏移量-偏移位置为LEFT,TOP,如-10,-20',
  993. `text_width` varchar(11) DEFAULT NULL COMMENT '文字宽度',
  994. `width` varchar(11) DEFAULT NULL COMMENT '图片宽度',
  995. `height` varchar(11) DEFAULT NULL COMMENT '图片高度',
  996. `color` varchar(10) DEFAULT NULL COMMENT '文字颜色',
  997. `fonts` int(11) NOT NULL DEFAULT '1' COMMENT '字体',
  998. `size` int(11) NOT NULL DEFAULT '16' COMMENT '文字大小-直接输入像素数字',
  999. `angle` int(11) NOT NULL DEFAULT '0' COMMENT '角度-直接输入数字',
  1000. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1001. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1002. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1003. --
  1004. -- 转存表中的数据 `wonderful_poster_model`
  1005. --
  1006. INSERT INTO `wonderful_poster_model` (`id`, `template_id`, `name`, `key`, `type`, `value`, `position_type`, `position`, `offset`, `text_width`, `width`, `height`, `color`, `fonts`, `size`, `angle`, `state`, `cdate`) VALUES
  1007. (1, 1, '标题', 'name', 2, '', 5, '0,0', '10,110', '530', '550', '200', '#000000', 2, 16, 0, 1, 1543226606),
  1008. (2, 1, '图片', 'pic', 1, '', 1, '0,0', '0,0', '', '570', '570', '#000000', 1, 16, 0, 1, 1543226637),
  1009. (3, 1, '用户名', 'username', 2, '', 8, '60,790', '0,0', '280', '200', '200', '#000000', 1, 16, 0, 1, 1543226681),
  1010. (4, 1, 'logo', 'logo', 1, '', 8, '320,700', '0,0', '', '200', '200', '#000000', 1, 16, 0, 1, 1543226699);
  1011. -- --------------------------------------------------------
  1012. --
  1013. -- 表的结构 `wonderful_poster_template`
  1014. --
  1015. CREATE TABLE `wonderful_poster_template` (
  1016. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1017. `name` varchar(32) DEFAULT NULL COMMENT '模板名称',
  1018. `key` varchar(32) DEFAULT NULL COMMENT '模板标识-调用模板时,使用该标识来获取模板信息,相同的模板标识,将随机抽取一条',
  1019. `type` varchar(32) DEFAULT NULL COMMENT '使用的图形库',
  1020. `update` tinyint(1) NOT NULL DEFAULT '2' COMMENT '生成规则',
  1021. `background` varchar(150) DEFAULT NULL COMMENT '模板背景图',
  1022. `pic` varchar(150) DEFAULT NULL COMMENT '模板样例图',
  1023. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1024. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1025. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1026. --
  1027. -- 转存表中的数据 `wonderful_poster_template`
  1028. --
  1029. INSERT INTO `wonderful_poster_template` (`id`, `name`, `key`, `type`, `update`, `background`, `pic`, `state`, `cdate`) VALUES
  1030. (1, '分享模板', 'share', 'gd', 2, '{uploadRes}1/2018/12/03/647ae4f317dbe5e7e363fefd6f3d56b0.png', '{uploadRes}1/2018/12/03/647ae4f317dbe5e7e363fefd6f3d56b0.png', 1, 1543226568);
  1031. -- --------------------------------------------------------
  1032. --
  1033. -- 表的结构 `wonderful_push_data`
  1034. --
  1035. CREATE TABLE `wonderful_push_data` (
  1036. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1037. `info_id` int(11) NOT NULL DEFAULT '1' COMMENT '推送位',
  1038. `type` int(11) NOT NULL DEFAULT '1' COMMENT '类型',
  1039. `article_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联图文',
  1040. `vod_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联视频',
  1041. `live_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联直播',
  1042. `journal_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联小刊',
  1043. `olink` varchar(400) DEFAULT NULL COMMENT '链接',
  1044. `name` varchar(60) DEFAULT NULL COMMENT '标题-手动干扰项,如想在当前推送位的标题请在此修改',
  1045. `link` varchar(200) DEFAULT NULL COMMENT '链接-手动干扰项,如想在当前推送位的链接请在此修改',
  1046. `pic` varchar(200) DEFAULT NULL COMMENT '图片-手动干扰项,请上传,100X100大小的图片',
  1047. `content` text COMMENT '描述-手动干扰项,字数请不要超过30个汉字,前台展示时会自动过滤',
  1048. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1049. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1050. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1051. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1052. -- --------------------------------------------------------
  1053. --
  1054. -- 表的结构 `wonderful_push_info`
  1055. --
  1056. CREATE TABLE `wonderful_push_info` (
  1057. `id` int(11) UNSIGNED NOT NULL COMMENT '推送位ID',
  1058. `name` varchar(60) DEFAULT NULL COMMENT '推送位标题',
  1059. `key` varchar(60) DEFAULT NULL COMMENT '推送位标识',
  1060. `num` int(11) NOT NULL DEFAULT '5' COMMENT '数据总条数-为空或小于0则不限制,只对前台有效',
  1061. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '推送位类型',
  1062. `col` varchar(30) DEFAULT NULL COMMENT '启用的字段',
  1063. `col_pic` varchar(20) DEFAULT NULL COMMENT '图片尺寸提醒-请直接输入提醒的文字即可,如100X100',
  1064. `col_content` int(11) NOT NULL DEFAULT '30' COMMENT '内容长度限制-必须是数字',
  1065. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1066. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1067. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  1068. `function` varchar(30) NOT NULL DEFAULT '1,2,3,4,10' COMMENT '启用的功能'
  1069. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1070. --
  1071. -- 转存表中的数据 `wonderful_push_info`
  1072. --
  1073. INSERT INTO `wonderful_push_info` (`id`, `name`, `key`, `num`, `type`, `col`, `col_pic`, `col_content`, `reorder`, `state`, `cdate`, `function`) VALUES
  1074. (1, '小刊精选推荐', 'jingxuan', 4, 1, '1,3', '100X100', 30, 1, 1, 1542006490, '4'),
  1075. (2, '头部导航', 'menu', 10, 1, '1,3', '100X100', 30, 1, 2, 1542088052, '1,2,3,4,10'),
  1076. (3, '精选焦点图', 'focus', 10, 1, '1,3', '750*380px或等比尺寸', 30, 1, 1, 1542088052, '1,2,3,4,10'),
  1077. (4, '精选分类', 'link', 10, 1, '1,3', '46*46px', 30, 1, 1, 1542088052, '1,2,3,4,10'),
  1078. (5, '精选广告位', 'ad', 10, 1, '1,3', '695*120px或等比尺寸', 30, 1, 1, 1542088052, '1,2,3,4,10'),
  1079. (6, '精选推荐', 'up', 10, 1, '1,3', '100X100', 30, 1, 1, 1542088052, '1,2,3,4,10'),
  1080. (7, '精选弹窗广告位', 'open_ad', 10, 1, '1,3', '500*630px或等比尺寸', 30, 1, 1, 1542459926, '1,2,3,4,10');
  1081. -- --------------------------------------------------------
  1082. --
  1083. -- 表的结构 `wonderful_score_action`
  1084. --
  1085. CREATE TABLE `wonderful_score_action` (
  1086. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1087. `name` varchar(80) DEFAULT NULL COMMENT '行为名称',
  1088. `key` varchar(80) DEFAULT NULL COMMENT '行为标识-用于程序中统计积分总数',
  1089. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1090. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1091. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1092. --
  1093. -- 转存表中的数据 `wonderful_score_action`
  1094. --
  1095. INSERT INTO `wonderful_score_action` (`id`, `name`, `key`, `state`, `cdate`) VALUES
  1096. (1, '浏览图文', 'view_article', 1, 1543106833),
  1097. (2, '浏览视频', 'view_vod', 1, 1543106852),
  1098. (3, '浏览直播', 'view_live', 1, 1543106864),
  1099. (4, '浏览小刊首页', 'view_journal', 1, 1543106917),
  1100. (5, '发表评论', 'submit_commit', 1, 1543107084),
  1101. (6, '喜欢', 'submit_like', 1, 1543107090),
  1102. (7, '邀请好友', 'share_friend', 1, 1543107129),
  1103. (8, '通过小刊邀请到新用户', 'share_journal_new_reflux', 1, 1543107197),
  1104. (9, '通过小刊邀请到老用户', 'share_journal_reflux', 1, 1543107211),
  1105. (10, '手机号注册', 'mobile_reg', 1, 1543107357),
  1106. (11, '用户微信授权', 'bind_wechat', 1, 1543107377),
  1107. (12, '绑定手机号', 'bind_mobile', 1, 1543107389),
  1108. (13, '购买小刊', 'buy_journal', 1, 1543107469),
  1109. (14, '阅读小刊', 'read_journal', 1, 1543107508),
  1110. (15, '通过图文邀请到新用户', 'share_article_new_reflux', 1, 1543107700),
  1111. (16, '通过视频邀请到新用户', 'share_vod_new_reflux', 1, 1543107721),
  1112. (17, '通过直播邀请到新用户', 'share_live_new_reflux', 1, 1543107735),
  1113. (18, '通过图文邀请到老用户', 'share_article_reflux', 1, 1543107753),
  1114. (19, '通过视频邀请到老用户', 'share_vod_reflux', 1, 1543107766),
  1115. (20, '通过直播邀请到老用户', 'share_live_reflux', 1, 1543107781),
  1116. (21, '兑换小刊', 'dh_journal', 1, 1543634470),
  1117. (22, '观看直播', 'submit_watch', 1, 1543746021);
  1118. -- --------------------------------------------------------
  1119. --
  1120. -- 表的结构 `wonderful_score_action_log`
  1121. --
  1122. CREATE TABLE `wonderful_score_action_log` (
  1123. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1124. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  1125. `action_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属行为',
  1126. `score_type` int(11) NOT NULL DEFAULT '1' COMMENT '是否增加积分',
  1127. `score` varchar(30) DEFAULT NULL COMMENT '增加积分数',
  1128. `callback` varchar(800) DEFAULT NULL COMMENT '行为回调方法',
  1129. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  1130. `num` varchar(30) NOT NULL DEFAULT '0' COMMENT '手动增加积分数',
  1131. `mscore` varchar(30) NOT NULL DEFAULT '0' COMMENT '手动增加积分数'
  1132. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1133. -- --------------------------------------------------------
  1134. --
  1135. -- 表的结构 `wonderful_score_config`
  1136. --
  1137. CREATE TABLE `wonderful_score_config` (
  1138. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1139. `name` varchar(32) DEFAULT NULL COMMENT '积分名称',
  1140. `type` int(11) NOT NULL DEFAULT '2' COMMENT '是否主积分-只能有一个主积分,主积分将作为用户主要积分显示在用户信息中',
  1141. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1142. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1143. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1144. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1145. --
  1146. -- 转存表中的数据 `wonderful_score_config`
  1147. --
  1148. INSERT INTO `wonderful_score_config` (`id`, `name`, `type`, `reorder`, `state`, `cdate`) VALUES
  1149. (1, '精美通用积分', 1, 1, 1, 1543106731);
  1150. -- --------------------------------------------------------
  1151. --
  1152. -- 表的结构 `wonderful_score_level`
  1153. --
  1154. CREATE TABLE `wonderful_score_level` (
  1155. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1156. `name` varchar(32) DEFAULT NULL COMMENT '等级名称',
  1157. `score` text COMMENT '积分设置',
  1158. `level` int(11) NOT NULL DEFAULT '1' COMMENT '等级数字-请直接输入等级数字,每次升级按照该数字进行匹配,如果设置为1,则为LV1,不允许重复,用户升级',
  1159. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1160. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1161. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1162. --
  1163. -- 转存表中的数据 `wonderful_score_level`
  1164. --
  1165. INSERT INTO `wonderful_score_level` (`id`, `name`, `score`, `level`, `state`, `cdate`) VALUES
  1166. (1, '精美小兵', 'W3sib3JkZXIiOiIxIiwiY29uZmlnIjoiMSIsIm51bSI6IjEifV0=', 1, 1, 1543106788),
  1167. (2, '精美大咖', 'W3sib3JkZXIiOiIxIiwiY29uZmlnIjoiMSIsIm51bSI6IjMwIn1d', 2, 1, 1543106799),
  1168. (3, '精美咖咖', 'W3sib3JkZXIiOiIyIiwiY29uZmlnIjoiMSIsIm51bSI6IjUwIn1d', 3, 1, 1543311115),
  1169. (4, 'Jstyle大神', 'W3sib3JkZXIiOiI1IiwiY29uZmlnIjoiMSIsIm51bSI6IjIwMCJ9XQ==', 4, 1, 1543634179);
  1170. -- --------------------------------------------------------
  1171. --
  1172. -- 表的结构 `wonderful_score_rule`
  1173. --
  1174. CREATE TABLE `wonderful_score_rule` (
  1175. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1176. `config_id` int(11) NOT NULL DEFAULT '1' COMMENT '积分名称',
  1177. `action_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属行为',
  1178. `num` varchar(80) DEFAULT NULL COMMENT '增加积分数-如果为负数,则是减少积分',
  1179. `upper` int(11) NOT NULL DEFAULT '1' COMMENT '是否有上限限制',
  1180. `upper_type` int(11) NOT NULL DEFAULT '1' COMMENT '上限限制类型',
  1181. `upper_time` int(11) NOT NULL DEFAULT '12' COMMENT '间隔小时数',
  1182. `upper_limit` int(11) NOT NULL DEFAULT '2' COMMENT '上限限制次数-小于1则不限制',
  1183. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1184. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1185. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1186. --
  1187. -- 转存表中的数据 `wonderful_score_rule`
  1188. --
  1189. INSERT INTO `wonderful_score_rule` (`id`, `config_id`, `action_id`, `num`, `upper`, `upper_type`, `upper_time`, `upper_limit`, `state`, `cdate`) VALUES
  1190. (1, 1, 1, '1', 2, 1, 12, 3, 2, 1543107531),
  1191. (2, 1, 2, '1', 2, 1, 12, 3, 2, 1543107540),
  1192. (3, 1, 3, '1', 2, 1, 12, 3, 2, 1543107557),
  1193. (4, 1, 11, '5', 2, 3, 12, 1, 1, 1543107583),
  1194. (5, 1, 12, '5', 2, 3, 12, 1, 1, 1543107595),
  1195. (6, 1, 6, '1', 2, 1, 12, 3, 1, 1543107624),
  1196. (7, 1, 5, '1', 2, 1, 12, 3, 1, 1543107633),
  1197. (8, 1, 7, '1', 2, 1, 12, 3, 1, 1543107649),
  1198. (9, 1, 8, '2', 1, 1, 12, 2, 1, 1543107663),
  1199. (10, 1, 21, '20', 1, 1, 12, 2, 1, 1543710990),
  1200. (11, 1, 13, '20', 1, 1, 12, 2, 1, 1543711008);
  1201. -- --------------------------------------------------------
  1202. --
  1203. -- 表的结构 `wonderful_score_user`
  1204. --
  1205. CREATE TABLE `wonderful_score_user` (
  1206. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1207. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  1208. `config_id` int(11) NOT NULL DEFAULT '1' COMMENT '积分名称',
  1209. `score` varchar(80) DEFAULT NULL COMMENT '可用数量',
  1210. `no_score` varchar(80) DEFAULT NULL COMMENT '冻结数量',
  1211. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1212. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1213. -- --------------------------------------------------------
  1214. --
  1215. -- 表的结构 `wonderful_score_user_level`
  1216. --
  1217. CREATE TABLE `wonderful_score_user_level` (
  1218. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1219. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  1220. `level_id` int(11) NOT NULL DEFAULT '1' COMMENT '等级名称',
  1221. `type` int(11) NOT NULL DEFAULT '1' COMMENT '升级方式',
  1222. `info` varchar(300) DEFAULT NULL COMMENT '备注',
  1223. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1224. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1225. -- --------------------------------------------------------
  1226. --
  1227. -- 表的结构 `wonderful_score_user_log`
  1228. --
  1229. CREATE TABLE `wonderful_score_user_log` (
  1230. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1231. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  1232. `config_id` int(11) NOT NULL DEFAULT '1' COMMENT '积分名称',
  1233. `action_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属行为',
  1234. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '收入支出状态',
  1235. `num` varchar(80) DEFAULT NULL COMMENT '增加积分数-如果为负数,则是减少积分',
  1236. `total` varchar(80) DEFAULT NULL COMMENT '总积分数',
  1237. `desc` varchar(300) DEFAULT NULL COMMENT '描述',
  1238. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1239. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1240. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1241. -- --------------------------------------------------------
  1242. --
  1243. -- 表的结构 `wonderful_sms_config`
  1244. --
  1245. CREATE TABLE `wonderful_sms_config` (
  1246. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1247. `name` varchar(32) DEFAULT NULL COMMENT '配置名称',
  1248. `key` varchar(32) DEFAULT NULL COMMENT '短信标识-发送短信时,使用该标识来读取短信基本配置',
  1249. `sign` varchar(60) DEFAULT NULL COMMENT '短信签名',
  1250. `sdk` varchar(32) DEFAULT NULL COMMENT '是否调取SDK',
  1251. `appid` varchar(50) DEFAULT NULL COMMENT 'APPID',
  1252. `appsecret` varchar(80) DEFAULT NULL COMMENT 'APPSECRET',
  1253. `url` varchar(300) DEFAULT NULL COMMENT '接口地址',
  1254. `method` varchar(32) DEFAULT NULL COMMENT '请求方式',
  1255. `json` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否进行JSON编码',
  1256. `header` varchar(500) DEFAULT NULL COMMENT 'HEADER信息-如AUTHORIZATION:APPCODE E7183E44BA8E4CCAA3D690510923D3FA',
  1257. `body` varchar(500) DEFAULT NULL COMMENT 'BODY信息-如PARAM={CODE}&PHONE={MOBILE}&SIGN={SIGN}&SKIN={SKIN}',
  1258. `code_timeout` int(11) NOT NULL DEFAULT '600' COMMENT '验证码有效期-以秒为单位',
  1259. `code_length` int(11) NOT NULL DEFAULT '4' COMMENT '验证码长度',
  1260. `code_type` int(11) NOT NULL DEFAULT '4' COMMENT '验证码类型',
  1261. `code_total` int(11) NOT NULL DEFAULT '10' COMMENT '一天之内的最大发送次数',
  1262. `code_time` int(11) NOT NULL DEFAULT '60' COMMENT '不允许多久之内重复发送-以秒为单位',
  1263. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1264. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1265. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1266. --
  1267. -- 转存表中的数据 `wonderful_sms_config`
  1268. --
  1269. INSERT INTO `wonderful_sms_config` (`id`, `name`, `key`, `sign`, `sdk`, `appid`, `appsecret`, `url`, `method`, `json`, `header`, `body`, `code_timeout`, `code_length`, `code_type`, `code_total`, `code_time`, `state`, `cdate`) VALUES
  1270. (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);
  1271. -- --------------------------------------------------------
  1272. --
  1273. -- 表的结构 `wonderful_sms_info`
  1274. --
  1275. CREATE TABLE `wonderful_sms_info` (
  1276. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1277. `mobile` varchar(32) DEFAULT NULL COMMENT '手机号',
  1278. `param` text COMMENT '请求记录',
  1279. `result` text COMMENT '发送记录',
  1280. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1281. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间'
  1282. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1283. -- --------------------------------------------------------
  1284. --
  1285. -- 表的结构 `wonderful_sms_skin`
  1286. --
  1287. CREATE TABLE `wonderful_sms_skin` (
  1288. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1289. `config_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属配置',
  1290. `name` varchar(32) DEFAULT NULL COMMENT '模板名称',
  1291. `key` varchar(32) DEFAULT NULL COMMENT '模板标识',
  1292. `content` varchar(800) DEFAULT NULL COMMENT '模板内容-如果短信接口已提供模板,请在此输入模板ID',
  1293. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1294. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1295. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1296. --
  1297. -- 转存表中的数据 `wonderful_sms_skin`
  1298. --
  1299. INSERT INTO `wonderful_sms_skin` (`id`, `config_id`, `name`, `key`, `content`, `state`, `cdate`) VALUES
  1300. (1, 1, '购买提醒', 'buy_journal', '【{sign}】购买成功,您获得了{name}的阅读资格!', 1, 1543889221),
  1301. (2, 1, '直播提醒', 'note_live', '【{sign}】{name}直播即将开始,马上观看!', 1, 1543889233),
  1302. (3, 1, '活动提醒', 'share_journal', '【{sign}】邀请人数已达{num}人,您获得了{name} 的阅读资格!', 1, 1543889249);
  1303. -- --------------------------------------------------------
  1304. --
  1305. -- 表的结构 `wonderful_spider_data`
  1306. --
  1307. CREATE TABLE `wonderful_spider_data` (
  1308. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1309. `wechat_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属公众号',
  1310. `name` varchar(180) DEFAULT NULL COMMENT '标题',
  1311. `copyright` int(11) NOT NULL DEFAULT '1' COMMENT '原创',
  1312. `cover` varchar(150) DEFAULT NULL COMMENT '封面图',
  1313. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1314. `content` text COMMENT '内容',
  1315. `pdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
  1316. `audit` int(11) NOT NULL DEFAULT '1' COMMENT '审核状态',
  1317. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1318. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1319. -- --------------------------------------------------------
  1320. --
  1321. -- 表的结构 `wonderful_spider_wechat`
  1322. --
  1323. CREATE TABLE `wonderful_spider_wechat` (
  1324. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1325. `name` varchar(100) DEFAULT NULL COMMENT '名称-直接输入公众号名称即可,系统会自动抓取该公众号的前10篇文章,每天抓取一次',
  1326. `wechat` varchar(200) DEFAULT NULL COMMENT '微信号',
  1327. `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属栏目',
  1328. `author_id` int(11) NOT NULL DEFAULT '1' COMMENT '作者',
  1329. `zdate` int(11) NOT NULL DEFAULT '0' COMMENT '下次执行时间',
  1330. `pdate` int(11) NOT NULL DEFAULT '12' COMMENT '抓取时间间隔-每个公众号发布的文章时间不同,请设置抓取时间间隔,单位为小时,尽量保证每次抓取都有新数据,也请不要设置间隔时间太短,抓取太频繁会导致抓取失败',
  1331. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1332. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1333. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1334. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1335. -- --------------------------------------------------------
  1336. --
  1337. -- 表的结构 `wonderful_tag_cate`
  1338. --
  1339. CREATE TABLE `wonderful_tag_cate` (
  1340. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1341. `name` varchar(32) DEFAULT NULL COMMENT '分类名称',
  1342. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1343. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1344. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1345. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1346. --
  1347. -- 转存表中的数据 `wonderful_tag_cate`
  1348. --
  1349. INSERT INTO `wonderful_tag_cate` (`id`, `name`, `reorder`, `state`, `cdate`) VALUES
  1350. (1, '默认分类', 1, 1, 1542006421),
  1351. (2, '文章', 3, 1, 1542010060),
  1352. (3, '视频', 4, 1, 1542447805),
  1353. (4, '直播', 5, 1, 1542447816);
  1354. -- --------------------------------------------------------
  1355. --
  1356. -- 表的结构 `wonderful_tag_data`
  1357. --
  1358. CREATE TABLE `wonderful_tag_data` (
  1359. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1360. `tag_id` int(11) NOT NULL DEFAULT '0' COMMENT '标签ID',
  1361. `source_table` varchar(30) DEFAULT NULL COMMENT '来源的表名',
  1362. `source_id` int(11) NOT NULL DEFAULT '0' COMMENT '数据ID',
  1363. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1364. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1365. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1366. -- --------------------------------------------------------
  1367. --
  1368. -- 表的结构 `wonderful_tag_info`
  1369. --
  1370. CREATE TABLE `wonderful_tag_info` (
  1371. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1372. `name` varchar(80) DEFAULT NULL COMMENT '标签名',
  1373. `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属分类',
  1374. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1375. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1376. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1377. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1378. --
  1379. -- 转存表中的数据 `wonderful_tag_info`
  1380. --
  1381. INSERT INTO `wonderful_tag_info` (`id`, `name`, `cate_id`, `reorder`, `state`, `cdate`) VALUES
  1382. (1, '娱乐', 3, 1, 1, 1542005780),
  1383. (2, '明星', 2, 1, 1, 1542010082),
  1384. (3, '聚会', 2, 1, 1, 1542447925),
  1385. (4, '精美', 1, 1, 1, 1542447942),
  1386. (5, '穿搭', 2, 1, 1, 1542447960),
  1387. (6, '时装', 4, 1, 1, 1542447970),
  1388. (7, '', 1, 1, 2, 1542459987),
  1389. (8, '', 1, 1, 2, 1542515536),
  1390. (9, '', 1, 1, 2, 1542516468),
  1391. (10, '', 1, 1, 2, 1542516527),
  1392. (11, '', 1, 1, 2, 1542683971),
  1393. (12, '', 1, 1, 2, 1542694100);
  1394. -- --------------------------------------------------------
  1395. --
  1396. -- 表的结构 `wonderful_video_live`
  1397. --
  1398. CREATE TABLE `wonderful_video_live` (
  1399. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1400. `name` varchar(80) DEFAULT NULL COMMENT '标题',
  1401. `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属栏目',
  1402. `pic_cover` varchar(150) DEFAULT NULL COMMENT '封面图-4:3比例的图片',
  1403. `stream_id` int(11) NOT NULL DEFAULT '0' COMMENT '直播流选择',
  1404. `sdate` int(11) NOT NULL DEFAULT '0' COMMENT '开始时间',
  1405. `num_add_user` int(11) NOT NULL DEFAULT '0' COMMENT '手动增加在线人数',
  1406. `num_user` int(11) NOT NULL DEFAULT '0' COMMENT '在线人数',
  1407. `num_add_view` int(11) NOT NULL DEFAULT '0' COMMENT '手动增加浏览量PV数',
  1408. `num_view` int(11) NOT NULL DEFAULT '0' COMMENT '浏览量PV',
  1409. `num_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢数',
  1410. `num_comment` int(11) NOT NULL DEFAULT '0' COMMENT '评论数',
  1411. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1412. `admin_founder` int(11) NOT NULL DEFAULT '1' COMMENT '创建人',
  1413. `admin_editor` int(11) NOT NULL DEFAULT '1' COMMENT '操作人',
  1414. `pdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
  1415. `share` text COMMENT '分享海报-选择海报库中的海报',
  1416. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1417. `udate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
  1418. `content` text COMMENT '内容',
  1419. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  1420. `tag` text NOT NULL COMMENT '标签',
  1421. `num_add_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢基数',
  1422. `function` varchar(100) NOT NULL DEFAULT '1' COMMENT '功能选择',
  1423. `share_yes` int(11) NOT NULL DEFAULT '1' COMMENT '是否显示分享按钮',
  1424. `share_title` varchar(100) NOT NULL COMMENT '分享标题',
  1425. `share_pic` varchar(150) NOT NULL COMMENT '分享图片',
  1426. `share_content` varchar(200) NOT NULL COMMENT '分享内容',
  1427. `audit` int(11) NOT NULL DEFAULT '1' COMMENT '审核状态',
  1428. `status` int(11) NOT NULL DEFAULT '1' COMMENT '发布状态',
  1429. `edate` int(11) NOT NULL COMMENT '结束时间-选择结束时间,能够得到当前时间段完整的直播回放地址',
  1430. `url_m3u8` varchar(800) NOT NULL COMMENT '直播回放地址',
  1431. `url_mp4` varchar(800) NOT NULL COMMENT '直播回放地址',
  1432. `author_id` int(11) NOT NULL DEFAULT '1' COMMENT '作者',
  1433. `pic_cover_169` varchar(150) NOT NULL COMMENT '16:9封面图-请上传16:9比例的封面图'
  1434. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1435. -- --------------------------------------------------------
  1436. --
  1437. -- 表的结构 `wonderful_video_vod`
  1438. --
  1439. CREATE TABLE `wonderful_video_vod` (
  1440. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1441. `name` varchar(80) DEFAULT NULL COMMENT '标题',
  1442. `link` varchar(800) DEFAULT NULL COMMENT '点播地址',
  1443. `video` varchar(800) DEFAULT NULL COMMENT '上传视频',
  1444. `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属栏目',
  1445. `author_id` int(11) NOT NULL DEFAULT '1' COMMENT '作者',
  1446. `pic_cover` varchar(150) DEFAULT NULL COMMENT '封面图-4:3比例的图片',
  1447. `num_add_view` int(11) NOT NULL DEFAULT '0' COMMENT '手动增加浏览量PV数',
  1448. `num_view` int(11) NOT NULL DEFAULT '0' COMMENT '浏览量PV',
  1449. `num_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢数',
  1450. `num_comment` int(11) NOT NULL DEFAULT '0' COMMENT '评论数',
  1451. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1452. `admin_founder` int(11) NOT NULL DEFAULT '1' COMMENT '创建人',
  1453. `admin_editor` int(11) NOT NULL DEFAULT '1' COMMENT '操作人',
  1454. `pdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
  1455. `share` text COMMENT '分享海报-选择海报库中的海报',
  1456. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1457. `udate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
  1458. `content` text COMMENT '内容',
  1459. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  1460. `tag` text NOT NULL COMMENT '标签',
  1461. `num_add_up` int(11) NOT NULL DEFAULT '0' COMMENT '喜欢基数',
  1462. `function` varchar(100) NOT NULL DEFAULT '1' COMMENT '功能选择',
  1463. `share_yes` int(11) NOT NULL DEFAULT '1' COMMENT '是否显示分享按钮',
  1464. `share_title` varchar(100) NOT NULL COMMENT '分享标题',
  1465. `share_pic` varchar(150) NOT NULL COMMENT '分享图片',
  1466. `share_content` varchar(200) NOT NULL COMMENT '分享内容',
  1467. `audit` int(11) NOT NULL DEFAULT '1' COMMENT '审核状态',
  1468. `status` int(11) NOT NULL DEFAULT '1' COMMENT '发布状态',
  1469. `pic_cover_169` varchar(150) NOT NULL COMMENT '16:9封面图-请上传16:9比例的封面图'
  1470. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1471. --
  1472. -- 转储表的索引
  1473. --
  1474. --
  1475. -- 表的索引 `wonderful_act_comment`
  1476. --
  1477. ALTER TABLE `wonderful_act_comment`
  1478. ADD PRIMARY KEY (`id`);
  1479. --
  1480. -- 表的索引 `wonderful_act_invite`
  1481. --
  1482. ALTER TABLE `wonderful_act_invite`
  1483. ADD PRIMARY KEY (`id`);
  1484. --
  1485. -- 表的索引 `wonderful_act_like`
  1486. --
  1487. ALTER TABLE `wonderful_act_like`
  1488. ADD PRIMARY KEY (`id`);
  1489. --
  1490. -- 表的索引 `wonderful_act_live_comment`
  1491. --
  1492. ALTER TABLE `wonderful_act_live_comment`
  1493. ADD PRIMARY KEY (`id`);
  1494. --
  1495. -- 表的索引 `wonderful_act_live_note`
  1496. --
  1497. ALTER TABLE `wonderful_act_live_note`
  1498. ADD PRIMARY KEY (`id`);
  1499. --
  1500. -- 表的索引 `wonderful_act_score`
  1501. --
  1502. ALTER TABLE `wonderful_act_score`
  1503. ADD PRIMARY KEY (`id`);
  1504. --
  1505. -- 表的索引 `wonderful_act_share`
  1506. --
  1507. ALTER TABLE `wonderful_act_share`
  1508. ADD PRIMARY KEY (`id`);
  1509. --
  1510. -- 表的索引 `wonderful_act_share_reflux`
  1511. --
  1512. ALTER TABLE `wonderful_act_share_reflux`
  1513. ADD PRIMARY KEY (`id`);
  1514. --
  1515. -- 表的索引 `wonderful_act_subscribe`
  1516. --
  1517. ALTER TABLE `wonderful_act_subscribe`
  1518. ADD PRIMARY KEY (`id`);
  1519. --
  1520. -- 表的索引 `wonderful_act_watch`
  1521. --
  1522. ALTER TABLE `wonderful_act_watch`
  1523. ADD PRIMARY KEY (`id`);
  1524. --
  1525. -- 表的索引 `wonderful_audit_data`
  1526. --
  1527. ALTER TABLE `wonderful_audit_data`
  1528. ADD PRIMARY KEY (`id`);
  1529. --
  1530. -- 表的索引 `wonderful_code_config`
  1531. --
  1532. ALTER TABLE `wonderful_code_config`
  1533. ADD PRIMARY KEY (`id`);
  1534. --
  1535. -- 表的索引 `wonderful_code_info`
  1536. --
  1537. ALTER TABLE `wonderful_code_info`
  1538. ADD PRIMARY KEY (`id`);
  1539. --
  1540. -- 表的索引 `wonderful_content_article`
  1541. --
  1542. ALTER TABLE `wonderful_content_article`
  1543. ADD PRIMARY KEY (`id`);
  1544. --
  1545. -- 表的索引 `wonderful_content_author`
  1546. --
  1547. ALTER TABLE `wonderful_content_author`
  1548. ADD PRIMARY KEY (`id`);
  1549. --
  1550. -- 表的索引 `wonderful_content_cate`
  1551. --
  1552. ALTER TABLE `wonderful_content_cate`
  1553. ADD PRIMARY KEY (`id`);
  1554. --
  1555. -- 表的索引 `wonderful_journal_active`
  1556. --
  1557. ALTER TABLE `wonderful_journal_active`
  1558. ADD PRIMARY KEY (`id`);
  1559. --
  1560. -- 表的索引 `wonderful_journal_buy`
  1561. --
  1562. ALTER TABLE `wonderful_journal_buy`
  1563. ADD PRIMARY KEY (`id`);
  1564. --
  1565. -- 表的索引 `wonderful_journal_buy_num`
  1566. --
  1567. ALTER TABLE `wonderful_journal_buy_num`
  1568. ADD PRIMARY KEY (`id`);
  1569. --
  1570. -- 表的索引 `wonderful_journal_cate`
  1571. --
  1572. ALTER TABLE `wonderful_journal_cate`
  1573. ADD PRIMARY KEY (`id`);
  1574. --
  1575. -- 表的索引 `wonderful_journal_content`
  1576. --
  1577. ALTER TABLE `wonderful_journal_content`
  1578. ADD PRIMARY KEY (`id`);
  1579. --
  1580. -- 表的索引 `wonderful_journal_content_text`
  1581. --
  1582. ALTER TABLE `wonderful_journal_content_text`
  1583. ADD PRIMARY KEY (`id`);
  1584. --
  1585. -- 表的索引 `wonderful_journal_info`
  1586. --
  1587. ALTER TABLE `wonderful_journal_info`
  1588. ADD PRIMARY KEY (`id`);
  1589. --
  1590. -- 表的索引 `wonderful_journal_order`
  1591. --
  1592. ALTER TABLE `wonderful_journal_order`
  1593. ADD PRIMARY KEY (`id`);
  1594. --
  1595. -- 表的索引 `wonderful_live_active`
  1596. --
  1597. ALTER TABLE `wonderful_live_active`
  1598. ADD PRIMARY KEY (`id`);
  1599. --
  1600. -- 表的索引 `wonderful_live_info`
  1601. --
  1602. ALTER TABLE `wonderful_live_info`
  1603. ADD PRIMARY KEY (`id`);
  1604. --
  1605. -- 表的索引 `wonderful_live_stream`
  1606. --
  1607. ALTER TABLE `wonderful_live_stream`
  1608. ADD PRIMARY KEY (`id`);
  1609. --
  1610. -- 表的索引 `wonderful_live_stream_ios_log`
  1611. --
  1612. ALTER TABLE `wonderful_live_stream_ios_log`
  1613. ADD PRIMARY KEY (`id`);
  1614. --
  1615. -- 表的索引 `wonderful_live_stream_log`
  1616. --
  1617. ALTER TABLE `wonderful_live_stream_log`
  1618. ADD PRIMARY KEY (`id`);
  1619. --
  1620. -- 表的索引 `wonderful_main_config`
  1621. --
  1622. ALTER TABLE `wonderful_main_config`
  1623. ADD PRIMARY KEY (`id`);
  1624. --
  1625. -- 表的索引 `wonderful_manage_admin`
  1626. --
  1627. ALTER TABLE `wonderful_manage_admin`
  1628. ADD PRIMARY KEY (`id`);
  1629. --
  1630. -- 表的索引 `wonderful_manage_admin_role`
  1631. --
  1632. ALTER TABLE `wonderful_manage_admin_role`
  1633. ADD PRIMARY KEY (`id`);
  1634. --
  1635. -- 表的索引 `wonderful_manage_auth`
  1636. --
  1637. ALTER TABLE `wonderful_manage_auth`
  1638. ADD PRIMARY KEY (`id`);
  1639. --
  1640. -- 表的索引 `wonderful_manage_config`
  1641. --
  1642. ALTER TABLE `wonderful_manage_config`
  1643. ADD PRIMARY KEY (`id`);
  1644. --
  1645. -- 表的索引 `wonderful_manage_cron`
  1646. --
  1647. ALTER TABLE `wonderful_manage_cron`
  1648. ADD PRIMARY KEY (`id`);
  1649. --
  1650. -- 表的索引 `wonderful_manage_group`
  1651. --
  1652. ALTER TABLE `wonderful_manage_group`
  1653. ADD PRIMARY KEY (`id`);
  1654. --
  1655. -- 表的索引 `wonderful_manage_log`
  1656. --
  1657. ALTER TABLE `wonderful_manage_log`
  1658. ADD PRIMARY KEY (`id`);
  1659. --
  1660. -- 表的索引 `wonderful_manage_menu`
  1661. --
  1662. ALTER TABLE `wonderful_manage_menu`
  1663. ADD PRIMARY KEY (`id`);
  1664. --
  1665. -- 表的索引 `wonderful_manage_notice`
  1666. --
  1667. ALTER TABLE `wonderful_manage_notice`
  1668. ADD PRIMARY KEY (`id`);
  1669. --
  1670. -- 表的索引 `wonderful_manage_opt`
  1671. --
  1672. ALTER TABLE `wonderful_manage_opt`
  1673. ADD PRIMARY KEY (`id`);
  1674. --
  1675. -- 表的索引 `wonderful_manage_role`
  1676. --
  1677. ALTER TABLE `wonderful_manage_role`
  1678. ADD PRIMARY KEY (`id`);
  1679. --
  1680. -- 表的索引 `wonderful_manage_top`
  1681. --
  1682. ALTER TABLE `wonderful_manage_top`
  1683. ADD PRIMARY KEY (`id`);
  1684. --
  1685. -- 表的索引 `wonderful_message_inbox`
  1686. --
  1687. ALTER TABLE `wonderful_message_inbox`
  1688. ADD PRIMARY KEY (`id`);
  1689. --
  1690. -- 表的索引 `wonderful_message_outbox`
  1691. --
  1692. ALTER TABLE `wonderful_message_outbox`
  1693. ADD PRIMARY KEY (`id`);
  1694. --
  1695. -- 表的索引 `wonderful_message_type`
  1696. --
  1697. ALTER TABLE `wonderful_message_type`
  1698. ADD PRIMARY KEY (`id`);
  1699. --
  1700. -- 表的索引 `wonderful_oauth_account`
  1701. --
  1702. ALTER TABLE `wonderful_oauth_account`
  1703. ADD PRIMARY KEY (`id`);
  1704. --
  1705. -- 表的索引 `wonderful_passport_app`
  1706. --
  1707. ALTER TABLE `wonderful_passport_app`
  1708. ADD PRIMARY KEY (`id`);
  1709. --
  1710. -- 表的索引 `wonderful_passport_code`
  1711. --
  1712. ALTER TABLE `wonderful_passport_code`
  1713. ADD PRIMARY KEY (`id`);
  1714. --
  1715. -- 表的索引 `wonderful_passport_user`
  1716. --
  1717. ALTER TABLE `wonderful_passport_user`
  1718. ADD PRIMARY KEY (`id`);
  1719. --
  1720. -- 表的索引 `wonderful_passport_wechat`
  1721. --
  1722. ALTER TABLE `wonderful_passport_wechat`
  1723. ADD PRIMARY KEY (`id`);
  1724. --
  1725. -- 表的索引 `wonderful_poster_model`
  1726. --
  1727. ALTER TABLE `wonderful_poster_model`
  1728. ADD PRIMARY KEY (`id`);
  1729. --
  1730. -- 表的索引 `wonderful_poster_template`
  1731. --
  1732. ALTER TABLE `wonderful_poster_template`
  1733. ADD PRIMARY KEY (`id`);
  1734. --
  1735. -- 表的索引 `wonderful_push_data`
  1736. --
  1737. ALTER TABLE `wonderful_push_data`
  1738. ADD PRIMARY KEY (`id`);
  1739. --
  1740. -- 表的索引 `wonderful_push_info`
  1741. --
  1742. ALTER TABLE `wonderful_push_info`
  1743. ADD PRIMARY KEY (`id`);
  1744. --
  1745. -- 表的索引 `wonderful_score_action`
  1746. --
  1747. ALTER TABLE `wonderful_score_action`
  1748. ADD PRIMARY KEY (`id`);
  1749. --
  1750. -- 表的索引 `wonderful_score_action_log`
  1751. --
  1752. ALTER TABLE `wonderful_score_action_log`
  1753. ADD PRIMARY KEY (`id`);
  1754. --
  1755. -- 表的索引 `wonderful_score_config`
  1756. --
  1757. ALTER TABLE `wonderful_score_config`
  1758. ADD PRIMARY KEY (`id`);
  1759. --
  1760. -- 表的索引 `wonderful_score_level`
  1761. --
  1762. ALTER TABLE `wonderful_score_level`
  1763. ADD PRIMARY KEY (`id`);
  1764. --
  1765. -- 表的索引 `wonderful_score_rule`
  1766. --
  1767. ALTER TABLE `wonderful_score_rule`
  1768. ADD PRIMARY KEY (`id`);
  1769. --
  1770. -- 表的索引 `wonderful_score_user`
  1771. --
  1772. ALTER TABLE `wonderful_score_user`
  1773. ADD PRIMARY KEY (`id`);
  1774. --
  1775. -- 表的索引 `wonderful_score_user_level`
  1776. --
  1777. ALTER TABLE `wonderful_score_user_level`
  1778. ADD PRIMARY KEY (`id`);
  1779. --
  1780. -- 表的索引 `wonderful_score_user_log`
  1781. --
  1782. ALTER TABLE `wonderful_score_user_log`
  1783. ADD PRIMARY KEY (`id`);
  1784. --
  1785. -- 表的索引 `wonderful_sms_config`
  1786. --
  1787. ALTER TABLE `wonderful_sms_config`
  1788. ADD PRIMARY KEY (`id`);
  1789. --
  1790. -- 表的索引 `wonderful_sms_info`
  1791. --
  1792. ALTER TABLE `wonderful_sms_info`
  1793. ADD PRIMARY KEY (`id`);
  1794. --
  1795. -- 表的索引 `wonderful_sms_skin`
  1796. --
  1797. ALTER TABLE `wonderful_sms_skin`
  1798. ADD PRIMARY KEY (`id`);
  1799. --
  1800. -- 表的索引 `wonderful_spider_data`
  1801. --
  1802. ALTER TABLE `wonderful_spider_data`
  1803. ADD PRIMARY KEY (`id`);
  1804. --
  1805. -- 表的索引 `wonderful_spider_wechat`
  1806. --
  1807. ALTER TABLE `wonderful_spider_wechat`
  1808. ADD PRIMARY KEY (`id`);
  1809. --
  1810. -- 表的索引 `wonderful_tag_cate`
  1811. --
  1812. ALTER TABLE `wonderful_tag_cate`
  1813. ADD PRIMARY KEY (`id`);
  1814. --
  1815. -- 表的索引 `wonderful_tag_data`
  1816. --
  1817. ALTER TABLE `wonderful_tag_data`
  1818. ADD PRIMARY KEY (`id`);
  1819. --
  1820. -- 表的索引 `wonderful_tag_info`
  1821. --
  1822. ALTER TABLE `wonderful_tag_info`
  1823. ADD PRIMARY KEY (`id`);
  1824. --
  1825. -- 表的索引 `wonderful_video_live`
  1826. --
  1827. ALTER TABLE `wonderful_video_live`
  1828. ADD PRIMARY KEY (`id`);
  1829. --
  1830. -- 表的索引 `wonderful_video_vod`
  1831. --
  1832. ALTER TABLE `wonderful_video_vod`
  1833. ADD PRIMARY KEY (`id`);
  1834. --
  1835. -- 在导出的表使用AUTO_INCREMENT
  1836. --
  1837. --
  1838. -- 使用表AUTO_INCREMENT `wonderful_act_comment`
  1839. --
  1840. ALTER TABLE `wonderful_act_comment`
  1841. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1842. --
  1843. -- 使用表AUTO_INCREMENT `wonderful_act_invite`
  1844. --
  1845. ALTER TABLE `wonderful_act_invite`
  1846. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1847. --
  1848. -- 使用表AUTO_INCREMENT `wonderful_act_like`
  1849. --
  1850. ALTER TABLE `wonderful_act_like`
  1851. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1852. --
  1853. -- 使用表AUTO_INCREMENT `wonderful_act_live_comment`
  1854. --
  1855. ALTER TABLE `wonderful_act_live_comment`
  1856. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1857. --
  1858. -- 使用表AUTO_INCREMENT `wonderful_act_live_note`
  1859. --
  1860. ALTER TABLE `wonderful_act_live_note`
  1861. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1862. --
  1863. -- 使用表AUTO_INCREMENT `wonderful_act_score`
  1864. --
  1865. ALTER TABLE `wonderful_act_score`
  1866. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1867. --
  1868. -- 使用表AUTO_INCREMENT `wonderful_act_share`
  1869. --
  1870. ALTER TABLE `wonderful_act_share`
  1871. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1872. --
  1873. -- 使用表AUTO_INCREMENT `wonderful_act_share_reflux`
  1874. --
  1875. ALTER TABLE `wonderful_act_share_reflux`
  1876. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1877. --
  1878. -- 使用表AUTO_INCREMENT `wonderful_act_subscribe`
  1879. --
  1880. ALTER TABLE `wonderful_act_subscribe`
  1881. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1882. --
  1883. -- 使用表AUTO_INCREMENT `wonderful_act_watch`
  1884. --
  1885. ALTER TABLE `wonderful_act_watch`
  1886. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1887. --
  1888. -- 使用表AUTO_INCREMENT `wonderful_audit_data`
  1889. --
  1890. ALTER TABLE `wonderful_audit_data`
  1891. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1892. --
  1893. -- 使用表AUTO_INCREMENT `wonderful_code_config`
  1894. --
  1895. ALTER TABLE `wonderful_code_config`
  1896. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '系统ID';
  1897. --
  1898. -- 使用表AUTO_INCREMENT `wonderful_code_info`
  1899. --
  1900. ALTER TABLE `wonderful_code_info`
  1901. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1902. --
  1903. -- 使用表AUTO_INCREMENT `wonderful_content_article`
  1904. --
  1905. ALTER TABLE `wonderful_content_article`
  1906. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1907. --
  1908. -- 使用表AUTO_INCREMENT `wonderful_content_author`
  1909. --
  1910. ALTER TABLE `wonderful_content_author`
  1911. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1912. --
  1913. -- 使用表AUTO_INCREMENT `wonderful_content_cate`
  1914. --
  1915. ALTER TABLE `wonderful_content_cate`
  1916. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=9;
  1917. --
  1918. -- 使用表AUTO_INCREMENT `wonderful_journal_active`
  1919. --
  1920. ALTER TABLE `wonderful_journal_active`
  1921. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1922. --
  1923. -- 使用表AUTO_INCREMENT `wonderful_journal_buy`
  1924. --
  1925. ALTER TABLE `wonderful_journal_buy`
  1926. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1927. --
  1928. -- 使用表AUTO_INCREMENT `wonderful_journal_buy_num`
  1929. --
  1930. ALTER TABLE `wonderful_journal_buy_num`
  1931. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1932. --
  1933. -- 使用表AUTO_INCREMENT `wonderful_journal_cate`
  1934. --
  1935. ALTER TABLE `wonderful_journal_cate`
  1936. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=2;
  1937. --
  1938. -- 使用表AUTO_INCREMENT `wonderful_journal_content`
  1939. --
  1940. ALTER TABLE `wonderful_journal_content`
  1941. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1942. --
  1943. -- 使用表AUTO_INCREMENT `wonderful_journal_content_text`
  1944. --
  1945. ALTER TABLE `wonderful_journal_content_text`
  1946. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1947. --
  1948. -- 使用表AUTO_INCREMENT `wonderful_journal_info`
  1949. --
  1950. ALTER TABLE `wonderful_journal_info`
  1951. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1952. --
  1953. -- 使用表AUTO_INCREMENT `wonderful_journal_order`
  1954. --
  1955. ALTER TABLE `wonderful_journal_order`
  1956. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1957. --
  1958. -- 使用表AUTO_INCREMENT `wonderful_live_active`
  1959. --
  1960. ALTER TABLE `wonderful_live_active`
  1961. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1962. --
  1963. -- 使用表AUTO_INCREMENT `wonderful_live_info`
  1964. --
  1965. ALTER TABLE `wonderful_live_info`
  1966. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=2;
  1967. --
  1968. -- 使用表AUTO_INCREMENT `wonderful_live_stream`
  1969. --
  1970. ALTER TABLE `wonderful_live_stream`
  1971. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1972. --
  1973. -- 使用表AUTO_INCREMENT `wonderful_live_stream_ios_log`
  1974. --
  1975. ALTER TABLE `wonderful_live_stream_ios_log`
  1976. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1977. --
  1978. -- 使用表AUTO_INCREMENT `wonderful_live_stream_log`
  1979. --
  1980. ALTER TABLE `wonderful_live_stream_log`
  1981. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1982. --
  1983. -- 使用表AUTO_INCREMENT `wonderful_main_config`
  1984. --
  1985. ALTER TABLE `wonderful_main_config`
  1986. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '系统ID', AUTO_INCREMENT=2;
  1987. --
  1988. -- 使用表AUTO_INCREMENT `wonderful_manage_admin`
  1989. --
  1990. ALTER TABLE `wonderful_manage_admin`
  1991. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '管理员ID', AUTO_INCREMENT=3;
  1992. --
  1993. -- 使用表AUTO_INCREMENT `wonderful_manage_admin_role`
  1994. --
  1995. ALTER TABLE `wonderful_manage_admin_role`
  1996. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1997. --
  1998. -- 使用表AUTO_INCREMENT `wonderful_manage_auth`
  1999. --
  2000. ALTER TABLE `wonderful_manage_auth`
  2001. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2002. --
  2003. -- 使用表AUTO_INCREMENT `wonderful_manage_config`
  2004. --
  2005. ALTER TABLE `wonderful_manage_config`
  2006. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '配置ID', AUTO_INCREMENT=2;
  2007. --
  2008. -- 使用表AUTO_INCREMENT `wonderful_manage_cron`
  2009. --
  2010. ALTER TABLE `wonderful_manage_cron`
  2011. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=4;
  2012. --
  2013. -- 使用表AUTO_INCREMENT `wonderful_manage_group`
  2014. --
  2015. ALTER TABLE `wonderful_manage_group`
  2016. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '组ID', AUTO_INCREMENT=9;
  2017. --
  2018. -- 使用表AUTO_INCREMENT `wonderful_manage_log`
  2019. --
  2020. ALTER TABLE `wonderful_manage_log`
  2021. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2022. --
  2023. -- 使用表AUTO_INCREMENT `wonderful_manage_menu`
  2024. --
  2025. ALTER TABLE `wonderful_manage_menu`
  2026. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '菜单ID', AUTO_INCREMENT=72;
  2027. --
  2028. -- 使用表AUTO_INCREMENT `wonderful_manage_notice`
  2029. --
  2030. ALTER TABLE `wonderful_manage_notice`
  2031. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '公告ID';
  2032. --
  2033. -- 使用表AUTO_INCREMENT `wonderful_manage_opt`
  2034. --
  2035. ALTER TABLE `wonderful_manage_opt`
  2036. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2037. --
  2038. -- 使用表AUTO_INCREMENT `wonderful_manage_role`
  2039. --
  2040. ALTER TABLE `wonderful_manage_role`
  2041. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '角色ID', AUTO_INCREMENT=6;
  2042. --
  2043. -- 使用表AUTO_INCREMENT `wonderful_manage_top`
  2044. --
  2045. ALTER TABLE `wonderful_manage_top`
  2046. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2047. --
  2048. -- 使用表AUTO_INCREMENT `wonderful_message_inbox`
  2049. --
  2050. ALTER TABLE `wonderful_message_inbox`
  2051. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2052. --
  2053. -- 使用表AUTO_INCREMENT `wonderful_message_outbox`
  2054. --
  2055. ALTER TABLE `wonderful_message_outbox`
  2056. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2057. --
  2058. -- 使用表AUTO_INCREMENT `wonderful_message_type`
  2059. --
  2060. ALTER TABLE `wonderful_message_type`
  2061. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=12;
  2062. --
  2063. -- 使用表AUTO_INCREMENT `wonderful_oauth_account`
  2064. --
  2065. ALTER TABLE `wonderful_oauth_account`
  2066. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=2;
  2067. --
  2068. -- 使用表AUTO_INCREMENT `wonderful_passport_app`
  2069. --
  2070. ALTER TABLE `wonderful_passport_app`
  2071. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2072. --
  2073. -- 使用表AUTO_INCREMENT `wonderful_passport_code`
  2074. --
  2075. ALTER TABLE `wonderful_passport_code`
  2076. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2077. --
  2078. -- 使用表AUTO_INCREMENT `wonderful_passport_user`
  2079. --
  2080. ALTER TABLE `wonderful_passport_user`
  2081. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '用户ID';
  2082. --
  2083. -- 使用表AUTO_INCREMENT `wonderful_passport_wechat`
  2084. --
  2085. ALTER TABLE `wonderful_passport_wechat`
  2086. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2087. --
  2088. -- 使用表AUTO_INCREMENT `wonderful_poster_model`
  2089. --
  2090. ALTER TABLE `wonderful_poster_model`
  2091. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=5;
  2092. --
  2093. -- 使用表AUTO_INCREMENT `wonderful_poster_template`
  2094. --
  2095. ALTER TABLE `wonderful_poster_template`
  2096. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=2;
  2097. --
  2098. -- 使用表AUTO_INCREMENT `wonderful_push_data`
  2099. --
  2100. ALTER TABLE `wonderful_push_data`
  2101. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2102. --
  2103. -- 使用表AUTO_INCREMENT `wonderful_push_info`
  2104. --
  2105. ALTER TABLE `wonderful_push_info`
  2106. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '推送位ID', AUTO_INCREMENT=8;
  2107. --
  2108. -- 使用表AUTO_INCREMENT `wonderful_score_action`
  2109. --
  2110. ALTER TABLE `wonderful_score_action`
  2111. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=23;
  2112. --
  2113. -- 使用表AUTO_INCREMENT `wonderful_score_action_log`
  2114. --
  2115. ALTER TABLE `wonderful_score_action_log`
  2116. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2117. --
  2118. -- 使用表AUTO_INCREMENT `wonderful_score_config`
  2119. --
  2120. ALTER TABLE `wonderful_score_config`
  2121. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=2;
  2122. --
  2123. -- 使用表AUTO_INCREMENT `wonderful_score_level`
  2124. --
  2125. ALTER TABLE `wonderful_score_level`
  2126. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=5;
  2127. --
  2128. -- 使用表AUTO_INCREMENT `wonderful_score_rule`
  2129. --
  2130. ALTER TABLE `wonderful_score_rule`
  2131. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=12;
  2132. --
  2133. -- 使用表AUTO_INCREMENT `wonderful_score_user`
  2134. --
  2135. ALTER TABLE `wonderful_score_user`
  2136. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2137. --
  2138. -- 使用表AUTO_INCREMENT `wonderful_score_user_level`
  2139. --
  2140. ALTER TABLE `wonderful_score_user_level`
  2141. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2142. --
  2143. -- 使用表AUTO_INCREMENT `wonderful_score_user_log`
  2144. --
  2145. ALTER TABLE `wonderful_score_user_log`
  2146. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2147. --
  2148. -- 使用表AUTO_INCREMENT `wonderful_sms_config`
  2149. --
  2150. ALTER TABLE `wonderful_sms_config`
  2151. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=2;
  2152. --
  2153. -- 使用表AUTO_INCREMENT `wonderful_sms_info`
  2154. --
  2155. ALTER TABLE `wonderful_sms_info`
  2156. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2157. --
  2158. -- 使用表AUTO_INCREMENT `wonderful_sms_skin`
  2159. --
  2160. ALTER TABLE `wonderful_sms_skin`
  2161. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=4;
  2162. --
  2163. -- 使用表AUTO_INCREMENT `wonderful_spider_data`
  2164. --
  2165. ALTER TABLE `wonderful_spider_data`
  2166. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2167. --
  2168. -- 使用表AUTO_INCREMENT `wonderful_spider_wechat`
  2169. --
  2170. ALTER TABLE `wonderful_spider_wechat`
  2171. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2172. --
  2173. -- 使用表AUTO_INCREMENT `wonderful_tag_cate`
  2174. --
  2175. ALTER TABLE `wonderful_tag_cate`
  2176. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=5;
  2177. --
  2178. -- 使用表AUTO_INCREMENT `wonderful_tag_data`
  2179. --
  2180. ALTER TABLE `wonderful_tag_data`
  2181. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2182. --
  2183. -- 使用表AUTO_INCREMENT `wonderful_tag_info`
  2184. --
  2185. ALTER TABLE `wonderful_tag_info`
  2186. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=13;
  2187. --
  2188. -- 使用表AUTO_INCREMENT `wonderful_video_live`
  2189. --
  2190. ALTER TABLE `wonderful_video_live`
  2191. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2192. --
  2193. -- 使用表AUTO_INCREMENT `wonderful_video_vod`
  2194. --
  2195. ALTER TABLE `wonderful_video_vod`
  2196. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  2197. COMMIT;
  2198. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  2199. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  2200. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;