@RequestMapping(value = "/receive", method = RequestMethod.POST, consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE)
public String qdjk(@RequestParam Map<String, String> params) throws UnsupportedEncodingException {
log.info("[receive] 海川请求入参 params={}", URLDecoder.decode(params.toString(), "UTF-8"));
return null;
}