|
|
@ -70,8 +70,9 @@ public class BoardController { |
|
|
* @return R |
|
|
* @return R |
|
|
* @throw |
|
|
* @throw |
|
|
*/ |
|
|
*/ |
|
|
@GetMapping("/getPrintsList/{ip}") |
|
|
|
|
|
public R getPrintsList(@PathVariable("ip") String ip) { |
|
|
|
|
|
|
|
|
@PostMapping("/getStockPrintList") |
|
|
|
|
|
public R getPrintsList(@RequestBody BoardInData inData) { |
|
|
|
|
|
String ip =inData.getIp(); |
|
|
List<StockPrintData> resultList = boardService.getStockPrintListCaiGou(ip); |
|
|
List<StockPrintData> resultList = boardService.getStockPrintListCaiGou(ip); |
|
|
return R.ok().put("rows", resultList); |
|
|
return R.ok().put("rows", resultList); |
|
|
} |
|
|
} |
|
|
|