|
@@ -57,7 +57,7 @@ public class ReportCustomerAspect extends BaseController {
|
57
|
57
|
}
|
58
|
58
|
|
59
|
59
|
@After("reportCustomer()")
|
60
|
|
- public ResponseBean doAround(JoinPoint proceedingJoinPoint) throws Throwable {
|
|
60
|
+ public ResponseBean doAround(JoinPoint proceedingJoinPoint) {
|
61
|
61
|
logger.info("ReportCustomerAspect 开始");
|
62
|
62
|
ResponseBean responseBean = new ResponseBean();
|
63
|
63
|
try {
|
|
@@ -71,8 +71,6 @@ public class ReportCustomerAspect extends BaseController {
|
71
|
71
|
String sceneId = String.valueOf(args[3]);
|
72
|
72
|
HttpServletRequest request = (HttpServletRequest) args[4];
|
73
|
73
|
|
74
|
|
- logger.info("ReportCustomerAspect 接收参数,args:{}", JSONObject.toJSONString(args));
|
75
|
|
-
|
76
|
74
|
Map<String, Object> stringObjectMap = getBuildingByIdAndType(targetId, targetType);
|
77
|
75
|
if (request == null) {
|
78
|
76
|
responseBean.addError("未授权,不进行操作");
|