|
|
|
@@ -7,10 +7,7 @@ import io.swagger.annotations.ApiOperation; |
|
|
|
import org.slf4j.Logger; |
|
|
|
import org.slf4j.LoggerFactory; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
@@ -25,7 +22,7 @@ public class DataTowerController extends BaseController { |
|
|
|
private DataTowerService dataTowerService; |
|
|
|
|
|
|
|
@ApiOperation("查询运营") |
|
|
|
@PostMapping("/queryRunningPotal") |
|
|
|
@GetMapping("/queryRunningPotal") |
|
|
|
public ResultData queryRunningPotal() { |
|
|
|
logger.debug("[" + getIpAddr() + "] DataTowerController::queryRunningPotal"); |
|
|
|
|
|
|
|
@@ -35,7 +32,7 @@ public class DataTowerController extends BaseController { |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("查询运营") |
|
|
|
@PostMapping("/queryRunningMobile") |
|
|
|
@GetMapping("/queryRunningMobile") |
|
|
|
public ResultData queryRunningMobile() { |
|
|
|
logger.debug("[" + getIpAddr() + "] DataTowerController::queryRunningMobile"); |
|
|
|
|
|
|
|
@@ -46,7 +43,7 @@ public class DataTowerController extends BaseController { |
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("查询运营") |
|
|
|
@PostMapping("/queryRunning") |
|
|
|
@GetMapping("/queryRunning") |
|
|
|
public ResultData queryRunning() { |
|
|
|
logger.debug("[" + getIpAddr() + "] DataTowerController::queryRunning"); |
|
|
|
|
|
|
|
@@ -57,7 +54,7 @@ public class DataTowerController extends BaseController { |
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("查询车流") |
|
|
|
@PostMapping("/queryCar") |
|
|
|
@GetMapping("/queryCar") |
|
|
|
public ResultData queryCar() { |
|
|
|
logger.debug("[" + getIpAddr() + "] DataTowerController::queryCar"); |
|
|
|
|
|
|
|
@@ -67,7 +64,7 @@ public class DataTowerController extends BaseController { |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("查询客流") |
|
|
|
@PostMapping("/queryCustomer") |
|
|
|
@GetMapping("/queryCustomer") |
|
|
|
public ResultData queryCustomer() { |
|
|
|
logger.debug("[" + getIpAddr() + "] DataTowerController::queryCustomer"); |
|
|
|
|
|
|
|
|