ApiUrl.ets 743 B

12345678910111213141516171819202122232425262728293031
  1. export class ApiUrl {
  2. /**
  3. * @description 获取军事资讯
  4. * @method POST
  5. */
  6. static getMilitaryNews = '/api/military/news/getMilitaryNews';
  7. /**
  8. * @description 获取中国近代战争历史时间线
  9. * @method POST
  10. */
  11. static getModernWarTimeline = '/api/military/news/getModernWarHistory';
  12. /**
  13. * @description 获取今日的历史军事资讯列表(自动补全)
  14. * @method GET
  15. */
  16. static getTodayInHistory = '/api/military/news/today';
  17. /**
  18. * @description 献花
  19. * @method GET
  20. */
  21. static giveFlowers = '/api/military/heroicModel/flowersNum';
  22. /**
  23. * @description 查询所有英雄事迹记录
  24. * @method POST
  25. */
  26. static getAllHeroicModel = '/api/military/heroicModel/list';
  27. }