查询接口不做记录
This commit is contained in:
@@ -109,7 +109,7 @@ public class LogAspect {
|
|||||||
jsonObject = JSONObject.parseObject(jsonString);
|
jsonObject = JSONObject.parseObject(jsonString);
|
||||||
shopId = (Integer)jsonObject.get("shopId");
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,6 @@ public class TbHandoverController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping
|
@GetMapping
|
||||||
@Log("查询查询交班记录")
|
|
||||||
@ApiOperation("查询查询交班记录")
|
@ApiOperation("查询查询交班记录")
|
||||||
public ResponseEntity<Object> queryTbHandover(TbHandoverQueryCriteria criteria, Pageable pageable){
|
public ResponseEntity<Object> queryTbHandover(TbHandoverQueryCriteria criteria, Pageable pageable){
|
||||||
return new ResponseEntity<>(tbHandoverService.queryAll(criteria,pageable),HttpStatus.OK);
|
return new ResponseEntity<>(tbHandoverService.queryAll(criteria,pageable),HttpStatus.OK);
|
||||||
|
|||||||
Reference in New Issue
Block a user