修改
This commit is contained in:
@@ -31,15 +31,15 @@ public class PrintController {
|
|||||||
private final PrintService printService;
|
private final PrintService printService;
|
||||||
|
|
||||||
@PostMapping("/customerInfo")
|
@PostMapping("/customerInfo")
|
||||||
@Log("出库初始化查询")
|
@Log("木箱明细查询")
|
||||||
@ApiOperation("出库初始化查询")
|
@ApiOperation("木箱明细查询")
|
||||||
public ResponseEntity<Object> customerInfo(@RequestBody JSONObject whereJson){
|
public ResponseEntity<Object> customerInfo(@RequestBody JSONObject whereJson){
|
||||||
return new ResponseEntity<>(printService.customerInfo(whereJson),HttpStatus.OK);
|
return new ResponseEntity<>(printService.customerInfo(whereJson),HttpStatus.OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("/billType")
|
@PostMapping("/customerPrint")
|
||||||
@Log("获取单据类型")
|
@Log("打印")
|
||||||
@ApiOperation("获取单据类型")
|
@ApiOperation("打印")
|
||||||
public ResponseEntity<Object> customerPrint(@RequestBody JSONObject whereJson){
|
public ResponseEntity<Object> customerPrint(@RequestBody JSONObject whereJson){
|
||||||
return new ResponseEntity<>(printService.customerPrint(whereJson),HttpStatus.OK);
|
return new ResponseEntity<>(printService.customerPrint(whereJson),HttpStatus.OK);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user