💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
文章表字段 art_id int(11) 自动增量 文章id title varchar(256) 文章标题 keywords varchar(100) NULL 关键词 excerpt varchar(256) NULL 摘要 thumbnail varchar(100) NULL 缩略图 type int(2) 1新闻2城市景区3旅游攻略 status tinyint(3) [0] 0待审核1通过2拒绝 thumbnail_big varchar(100) NULL 旅游攻略大图 thumbnail_small1 varchar(100) NULL 旅游攻略小图1 thumbnail_small2 varchar(100) NULL 旅游攻略小图2 city_id int(2) 城市id theme_id int(11) [0] 主题id city_name varchar(20) NULL 城市名称 swa int(11) [0] 文章浏览量 create_time int(11) 创建时间 update_time int(11) NULL 修改时间 文章内容表 content_id int(11) 自动增量 文章内容id art_id int(11) 文章id title varchar(256) 标题 content text 内容 create_time int(11) 创建时间 update_time int(11) NULL 修改时间 1.文章详情 ~~~[api] get:https://wenlv.henan100.com/api.php/article/art_info *number:art_id=默认值#文章id <<< success { "code": 1, "msg": "ok", "data": null } <<< error ~~~ 2.新闻列表 ~~~[api] get:https://wenlv.henan100.com/api.php/article/art_news_list *number:page=默认值#页码(第几页) <<< success { "code": 1, "msg": "ok", "data": [] } <<< error ~~~ 3.城市景区列表 ~~~[api] get:https://wenlv.henan100.com/api.php/article/art_city_list *number:city_id=默认值#城市id(如果获取全部,city_id=0) <<< success { "code": 1, "msg": "ok", "data": [] } <<< error ~~~ 3.2城市景区搜索 ~~~[api] get:https://wenlv.henan100.com/api.php/article/art_city_search *number:search=默认值#搜索关键词) <<< success { "code": 1, "msg": "ok", "data": [ { "art_id": 24, "title": "黄帝故里", "keywords": "5A景区丨拜祖大典", "excerpt": "新郑市黄帝故里景区,位于河南省郑州市新郑市轩辕路,为汉籍史书中记载有熊氏的族居地,故有熊国之墟。是国家AAAA级旅游景区、中国侨联爱国主义教育基地、国家非物质文化遗产“新郑黄帝拜祖祭典”的遗产地。", "thumbnail": "http://2020app.henan100.com/upload/portal/20201230/aa339130c2a75bd96c9b3702c7fafd4b.jpg", "type": 2, "status": 1, "thumbnail_big": null, "thumbnail_small1": null, "thumbnail_small2": null, "city_id": 1, "theme_id": 2, "city_name": "郑州", "swa": 0, "sort": 1, "create_time": "2021-03-16 17:01:26", "update_time": "2021-03-17 10:52:35" } ] } <<< error ~~~ 4.旅游攻略列表 ~~~[api] get:https://wenlv.henan100.com/api.php/article/art_strategy_list *number:page=默认值#页码(第几页) <<< success { "code": 1, "msg": "ok", "data": [] } <<< error ~~~ 5.主题 ~~~[api] get:https://wenlv.henan100.com/api.php/article/art_theme *number:theme_id=默认值#主题id <<< success { "code": 1, "msg": "ok", "data": {} } <<< error ~~~ 6.主题文章列表 ~~~[api] get:https://wenlv.henan100.com/api.php/article/art_theme_list *number:theme_id=默认值#主题id *number:city_id=默认值#城市id <<< success { "code": 1, "msg": "ok", "data": [] } <<< error ~~~ 7.视频列表 ~~~[api] get:https://wenlv.henan100.com/api.php/article/video_list <<< success { "code": 1, "msg": "ok", "data": [ { "title": "1", "thumbnail": "https://wenlv.henan100.com/upload/20210317/4a1b742922331eb923905b4a60ab9734.mp4" } ] } <<< error ~~~