查询接口不做记录

This commit is contained in:
wangw 2024-07-30 15:20:37 +08:00
parent 407f58ea37
commit 4655786218
2 changed files with 1 additions and 2 deletions

View File

@ -109,7 +109,7 @@ public class LogAspect {
jsonObject = JSONObject.parseObject(jsonString);
shopId = (Integer)jsonObject.get("shopId");
}
logService.save(getUsername()+getUsername(), StringUtils.getBrowser(request), StringUtils.getIp(request), (ProceedingJoinPoint)joinPoint, log, shopId);
logService.save(getUsername(), StringUtils.getBrowser(request), StringUtils.getIp(request), (ProceedingJoinPoint)joinPoint, log, shopId);
}

View File

@ -34,7 +34,6 @@ public class TbHandoverController {
}
@GetMapping
@Log("查询查询交班记录")
@ApiOperation("查询查询交班记录")
public ResponseEntity<Object> queryTbHandover(TbHandoverQueryCriteria criteria, Pageable pageable){
return new ResponseEntity<>(tbHandoverService.queryAll(criteria,pageable),HttpStatus.OK);