| | |
| | | package com.hx.resultTool; |
| | | |
| | | import com.alibaba.fastjson.JSON; |
| | | import com.alibaba.fastjson.JSONArray; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.hx.exception.TipsException; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | } |
| | | } |
| | | |
| | | /**返回数据转JSONObject*/ |
| | | public JSONObject getJsonObject(Object data){ |
| | | return JSONObject.parseObject(JSON.toJSONString(data)); |
| | | } |
| | | |
| | | /**返回数据转JSONArray*/ |
| | | public JSONArray getJsonArray(Object data){ |
| | | return JSONArray.parseArray(JSON.toJSONString(data)); |
| | | } |
| | | |
| | | /*******************************************************************************/ |
| | | |
| | | public String getCode() { |