Commit 8cb5e7b5 authored by 耿迪迪's avatar 耿迪迪

上报省厅工具类修改

parent 9331af5f
...@@ -67,7 +67,7 @@ public class OutUtil { ...@@ -67,7 +67,7 @@ public class OutUtil {
* @return * @return
* @throws Exception * @throws Exception
*/ */
public JSONObject setInfo(String domain, String methodType, List<Map<String,Object>> list)throws Exception public JSONObject setInfo(String domain, String methodType, List list)throws Exception
{ {
String token = (String)redisCache.getCacheObject("apiToken"); String token = (String)redisCache.getCacheObject("apiToken");
if(token==null){ if(token==null){
......
...@@ -82,7 +82,7 @@ public class TokenController { ...@@ -82,7 +82,7 @@ public class TokenController {
* @throws Exception * @throws Exception
*/ */
@GetMapping(value = "/currencySetInfo") @GetMapping(value = "/currencySetInfo")
public AjaxResult currencySetInfo(List<Map<String,Object>> list ,String domain)throws Exception public AjaxResult currencySetInfo(List list ,String domain)throws Exception
{ {
JSONObject json = outUtil.setInfo(domain,"WRITE",list); JSONObject json = outUtil.setInfo(domain,"WRITE",list);
return AjaxResult.success(json); return AjaxResult.success(json);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment