|
@@ -1,6 +1,7 @@
|
|
|
package com.galaxis.manatee.controller;
|
|
|
|
|
|
import com.galaxis.manatee.service.LogCheckService;
|
|
|
+import com.galaxis.manatee.service.LogService;
|
|
|
import com.galaxis.manatee.service.LogStandardService;
|
|
|
import com.galaxis.manatee.service.LogUpdateService;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
@@ -20,11 +21,13 @@ public class TestController {
|
|
|
private final LogUpdateService logUpdateService;
|
|
|
private final LogStandardService logStandardService;
|
|
|
private final LogCheckService logCheckService;
|
|
|
+ private final LogService logService;
|
|
|
|
|
|
- public TestController(LogUpdateService logUpdateService, LogStandardService logStandardService, LogCheckService logCheckService) {
|
|
|
+ public TestController(LogUpdateService logUpdateService, LogStandardService logStandardService, LogCheckService logCheckService, LogService logService) {
|
|
|
this.logUpdateService = logUpdateService;
|
|
|
this.logStandardService = logStandardService;
|
|
|
this.logCheckService = logCheckService;
|
|
|
+ this.logService = logService;
|
|
|
}
|
|
|
|
|
|
@GetMapping("/test/helloGet")
|
|
@@ -37,7 +40,7 @@ public class TestController {
|
|
|
*/
|
|
|
@GetMapping("/test/api/standardAllWeekMemberHour")
|
|
|
public void standardAllWeekMemberHour(){
|
|
|
- logStandardService.standardAllWeekMemberHour();
|
|
|
+ logService.standardAllWeekMemberHour();
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -45,7 +48,7 @@ public class TestController {
|
|
|
*/
|
|
|
@GetMapping("/test/api/standardAllSelfCost")
|
|
|
public void standardAllSelfCost(){
|
|
|
- logStandardService.standardAllSelfCost();
|
|
|
+ logService.standardAllSelfCost();
|
|
|
}
|
|
|
|
|
|
/**
|