- 将Map转行成对应对象
public staticT parseObject(Map map, Class clazz) { String str = JSONUtils.toJSONString(map); T obj = JSON.parseObject(str, clazz); return obj; }

public staticT parseObject(Map map, Class clazz) { String str = JSONUtils.toJSONString(map); T obj = JSON.parseObject(str, clazz); return obj; }