Commit de8fd3d7e24eb253f30e37e73fa7dead1d0592c5
1 parent
4fa74834d3
Exists in
master
and in
1 other branch
update
Showing 1 changed file with 2 additions and 2 deletions
talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/TestController.java
View file @
de8fd3d
| ... | ... | @@ -14,14 +14,14 @@ |
| 14 | 14 | @Autowired |
| 15 | 15 | public PushArticleTask pushArticleTask; |
| 16 | 16 | @Autowired |
| 17 | - public PushArticleTaskData pushArticleTaskMySql; | |
| 17 | + public PushArticleTaskData pushArticleTaskData; | |
| 18 | 18 | @GetMapping("test0") |
| 19 | 19 | public void test0() { |
| 20 | 20 | pushArticleTask.pushArtcle(); |
| 21 | 21 | } |
| 22 | 22 | @GetMapping("test9") |
| 23 | 23 | public void test9() { |
| 24 | - pushArticleTaskMySql.pushArtcleData(); | |
| 24 | + pushArticleTaskData.pushArtcleData(); | |
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 |