| | |
| | | return pdaOtherService.inspectConfirm2(generalParam); |
| | | } |
| | | |
| | | @RequestMapping(value = "/other/station/page") |
| | | public R stationPage(@RequestParam String staNo, |
| | | @RequestParam(defaultValue = "1") Integer curr, |
| | | @RequestParam(defaultValue = "5") Integer limit) { |
| | | |
| | | return pdaOtherService.stationPage(staNo,curr,limit); |
| | | } |
| | | |
| | | |
| | | @PostMapping(value = "/other/staOperate") |
| | | public R staOperate(@RequestBody PdaGeneralParam generalParam) { |
| | | |
| | | return pdaOtherService.staOperate(generalParam,getLoginUser()); |
| | | } |
| | | |
| | | @RequestMapping(value = "/other/loc/page") |
| | | public R locPage(@RequestParam String locNo, |
| | | @RequestParam(defaultValue = "1") Integer curr, |
| | | @RequestParam(defaultValue = "5") Integer limit) { |
| | | |
| | | return pdaOtherService.locPage(locNo,curr,limit); |
| | | } |
| | | |
| | | @PostMapping(value = "/other/locOperate") |
| | | public R locOperate(@RequestBody PdaGeneralParam generalParam) { |
| | | |
| | | return pdaOtherService.locOperate(generalParam,getLoginUser()); |
| | | } |
| | | |
| | | } |