| 12345678910111213141516171819202122232425262728293031 |
- export class ApiUrl {
- /**
- * @description 获取军事资讯
- * @method POST
- */
- static getMilitaryNews = '/api/military/news/getMilitaryNews';
- /**
- * @description 获取中国近代战争历史时间线
- * @method POST
- */
- static getModernWarTimeline = '/api/military/news/getModernWarHistory';
- /**
- * @description 获取今日的历史军事资讯列表(自动补全)
- * @method GET
- */
- static getTodayInHistory = '/api/military/news/today';
- /**
- * @description 献花
- * @method GET
- */
- static giveFlowers = '/api/military/heroicModel/flowersNum';
- /**
- * @description 查询所有英雄事迹记录
- * @method POST
- */
- static getAllHeroicModel = '/api/military/heroicModel/list';
- }
|