|
@@ -38,7 +38,7 @@ public class WebAuditController {
|
|
|
@GetMapping("/getAuditList")
|
|
@GetMapping("/getAuditList")
|
|
|
public R<IPage<WebAudit>> getAuditList(@RequestParam(value = "page", defaultValue = "1") int page,
|
|
public R<IPage<WebAudit>> getAuditList(@RequestParam(value = "page", defaultValue = "1") int page,
|
|
|
@RequestParam(value = "size", defaultValue = "10") int size,
|
|
@RequestParam(value = "size", defaultValue = "10") int size,
|
|
|
- @RequestParam("status") String status,
|
|
|
|
|
|
|
+ @RequestParam(value = "status", defaultValue = "0") String status,
|
|
|
@RequestParam("type") String type) {
|
|
@RequestParam("type") String type) {
|
|
|
log.info("LifeStoreOrderController.getOrderListByStatus?page={},size={},storeId={},status={}", page, size, status, type);
|
|
log.info("LifeStoreOrderController.getOrderListByStatus?page={},size={},storeId={},status={}", page, size, status, type);
|
|
|
return R.data(webAuditService.getOrderList(page, size, status, type));
|
|
return R.data(webAuditService.getOrderList(page, size, status, type));
|