This commit is contained in:
2022-11-24 16:51:04 +08:00
parent c1caf24ad7
commit 35bd66e47b

View File

@@ -31,15 +31,15 @@ public class PrintController {
private final PrintService printService;
@PostMapping("/customerInfo")
@Log("出库初始化查询")
@ApiOperation("出库初始化查询")
@Log("木箱明细查询")
@ApiOperation("木箱明细查询")
public ResponseEntity<Object> customerInfo(@RequestBody JSONObject whereJson){
return new ResponseEntity<>(printService.customerInfo(whereJson),HttpStatus.OK);
}
@PostMapping("/billType")
@Log("获取单据类型")
@ApiOperation("获取单据类型")
@PostMapping("/customerPrint")
@Log("打印")
@ApiOperation("打印")
public ResponseEntity<Object> customerPrint(@RequestBody JSONObject whereJson){
return new ResponseEntity<>(printService.customerPrint(whereJson),HttpStatus.OK);
}