Mr.Wang
6 months ago
9 changed files with 159 additions and 0 deletions
@ -0,0 +1,38 @@ |
|||
package com.zc.business.controller; |
|||
|
|||
|
|||
import com.ruoyi.common.core.controller.BaseController; |
|||
import com.ruoyi.common.core.domain.AjaxResult; |
|||
import com.zc.business.service.IOdsTollEnpassDataService; |
|||
import io.swagger.annotations.Api; |
|||
import io.swagger.annotations.ApiOperation; |
|||
import org.springframework.web.bind.annotation.GetMapping; |
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
import javax.annotation.Resource; |
|||
|
|||
/** |
|||
* 收费站入口流水数据接口 |
|||
*/ |
|||
@Api(tags = {"收费站入口流水数据接口"}) |
|||
@RestController |
|||
@RequestMapping("/business/odsTollEnpassData") |
|||
public class OdsTollEnpassDataController extends BaseController { |
|||
|
|||
@Resource |
|||
private IOdsTollEnpassDataService iOdsTollEnpassDataService; |
|||
|
|||
|
|||
/** |
|||
* 收费站入口流水数据统计 |
|||
* |
|||
* @return 查询结果 |
|||
*/ |
|||
@ApiOperation("收费站入口流水数据统计") |
|||
@GetMapping("/countNumber") |
|||
public AjaxResult odsTollEnpassDataCountNumber() { |
|||
return AjaxResult.success(iOdsTollEnpassDataService.odsTollEnpassDataCountNumber()); |
|||
} |
|||
|
|||
} |
@ -0,0 +1,38 @@ |
|||
package com.zc.business.controller; |
|||
|
|||
|
|||
import com.ruoyi.common.core.controller.BaseController; |
|||
import com.ruoyi.common.core.domain.AjaxResult; |
|||
import com.zc.business.service.IOdsTollEtctuDataService; |
|||
import io.swagger.annotations.Api; |
|||
import io.swagger.annotations.ApiOperation; |
|||
import org.springframework.web.bind.annotation.GetMapping; |
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
import javax.annotation.Resource; |
|||
|
|||
/** |
|||
* 门架流水数据接口 |
|||
*/ |
|||
@Api(tags = {"门架流水数据接口"}) |
|||
@RestController |
|||
@RequestMapping("/business/odsTollEtctuData") |
|||
public class OdsTollEtctuDataController extends BaseController { |
|||
|
|||
@Resource |
|||
private IOdsTollEtctuDataService iOdsTollEtctuDataService; |
|||
|
|||
|
|||
/** |
|||
* 门架流水数据接口统计 |
|||
* |
|||
* @return 查询结果 |
|||
*/ |
|||
@ApiOperation("门架流水数据接口统计") |
|||
@GetMapping("/countNumber") |
|||
public AjaxResult odsTollEtctuDataCountNumber() { |
|||
return AjaxResult.success(iOdsTollEtctuDataService.odsTollEtctuDataCountNumber()); |
|||
} |
|||
|
|||
} |
@ -0,0 +1,38 @@ |
|||
package com.zc.business.controller; |
|||
|
|||
|
|||
import com.ruoyi.common.core.controller.BaseController; |
|||
import com.ruoyi.common.core.domain.AjaxResult; |
|||
import com.zc.business.service.IOdsTollExpassDataService; |
|||
import io.swagger.annotations.Api; |
|||
import io.swagger.annotations.ApiOperation; |
|||
import org.springframework.web.bind.annotation.GetMapping; |
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
import javax.annotation.Resource; |
|||
|
|||
/** |
|||
* 收费站出口流水数据 |
|||
*/ |
|||
@Api(tags = {"收费站出口流水数据"}) |
|||
@RestController |
|||
@RequestMapping("/business/odsTollExpassData") |
|||
public class OdsTollExpassDataController extends BaseController { |
|||
|
|||
@Resource |
|||
private IOdsTollExpassDataService iOdsTollExpassDataService; |
|||
|
|||
|
|||
/** |
|||
* 收费站出口流水数据统计 |
|||
* |
|||
* @return 查询结果 |
|||
*/ |
|||
@ApiOperation("收费站出口流水数据统计") |
|||
@GetMapping("/countNumber") |
|||
public AjaxResult odsTollExpassDataCountNumber() { |
|||
return AjaxResult.success(iOdsTollExpassDataService.odsTollExpassDataCountNumber()); |
|||
} |
|||
|
|||
} |
Loading…
Reference in new issue