| | |
| | | |
| | | return R.ok(); |
| | | } |
| | | @PostMapping("/rpv/test/open/auth") |
| | | @AppAuth(memo = "模拟测试接口") |
| | | public synchronized R test1(@RequestHeader(required = false) String appkey, |
| | | @RequestBody(required = false) Object param, |
| | | HttpServletRequest request){ |
| | | |
| | | auth(appkey, param, request); |
| | | if (Cools.isEmpty(param)) { |
| | | return R.parse(BaseRes.PARAM); |
| | | } |
| | | System.out.println(param); |
| | | |
| | | Map<String,Boolean> map=new HashMap<>(); |
| | | map.put("isComplete",true); |
| | | return R.ok(map); |
| | | } |
| | | |
| | | /*...........................赣州新增..............以上.............赣州新增...........................*/ |
| | | |
| | | } |