Mr.Wang
6 months ago
3 changed files with 61 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.IOdsTollViuDataService; |
|||
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/odsTollViuData") |
|||
public class OdsTollViuDataController extends BaseController { |
|||
|
|||
@Resource |
|||
private IOdsTollViuDataService iOdsTollViuDataService; |
|||
|
|||
|
|||
/** |
|||
* 当天门架牌识流水数据统计 |
|||
* |
|||
* @return 查询结果 |
|||
*/ |
|||
@ApiOperation("门架牌识流水数据统计") |
|||
@GetMapping("/countNumber") |
|||
public AjaxResult odsTollViuDataCountNumber() { |
|||
return AjaxResult.success(iOdsTollViuDataService.odsTollViuDataCountNumber()); |
|||
} |
|||
|
|||
} |
Loading…
Reference in new issue