|
@@ -5,6 +5,7 @@ import com.alibaba.fastjson.JSONObject;
|
|
|
import com.ruoyi.common.core.domain.R;
|
|
|
import com.ruoyi.common.core.utils.DateUtils;
|
|
|
import com.ruoyi.common.core.web.controller.BaseController;
|
|
|
+import com.ruoyi.common.core.web.domain.AjaxResult;
|
|
|
import com.sooka.sponest.event.centereventteventcatalogue.domain.dahua.DaHuaFireEventVO;
|
|
|
import com.sooka.sponest.event.centereventteventcatalogue.domain.dahua.InfoVO;
|
|
|
import org.slf4j.Logger;
|
|
@@ -42,4 +43,11 @@ public class TestController extends BaseController {
|
|
|
logger.info("===接口耗时:" + (System.currentTimeMillis() - start));
|
|
|
return R.ok();
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ @PostMapping("/testReport")
|
|
|
+ public AjaxResult testReportJsonObj(@RequestBody String jsonStr){
|
|
|
+ logger.info("测试接受数据--->: {}", jsonStr);
|
|
|
+ return AjaxResult.success();
|
|
|
+ }
|
|
|
}
|