Python版本
return_util.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | def return_ok(code = "200" , msg = "操作成功" , data = None ): """ 创建 业务函数/方法的(统一的)返回结构 :param code: 状态码:"200"-操作成功, "500"-操作失败 :param msg: 消息语 :param data: 返回数据 :return: """ if data is None : data = {} return { "code" : code, "msg" : msg, "data" : data } def return_error(code = "500" , msg = "操作失败" , data = None ): """ 创建 业务函数/方法的(统一的)返回结构 :param code: 状态码:"200"-操作成功, "500"-操作失败 :param msg: 消息语 :param data: 返回数据 :return: """ if data is None : data = {} return { "code" : code, "msg" : msg, "data" : data } |
Java版本
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | package com.wanma.framework_api.model; import cn.hutool.core.map.MapUtil; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import com.wanma.framework_api.exception.ErrorEnum; import java.util.LinkedHashMap; import java.util.Map; /** * 业务结果类 */ public class ResJson<T> { private static final String CODE_OK = "200" ; private static final String CODE_ERROR = "500" ; private static final String MSG_OK = "操作成功" ; private static final String MSG_ERROR = "操作失败" ; private String code = "" ; private String msg = "" ; private Map<String, T> data = new LinkedHashMap<>(); public static <T> ResJson<T> instance() { return new ResJson<>(); } public String getCode() { return this .code; } public ResJson<T> setCode(String code) { this .code = code; return this ; } public String getMsg() { return this .msg; } public ResJson<T> setMsg(String msg) { this .msg = msg; return this ; } public Map<String, T> getData() { return this .data; } public String getStr(Object key) { try { return MapUtil.getStr( this .data, key, "" ); } catch (Exception e) { e.printStackTrace(); return "" ; } } public Integer getInt(Object key) { try { return MapUtil.getInt( this .data, key, 0 ); } catch (Exception e) { e.printStackTrace(); return 0 ; } } public Long getLong(Object key) { try { return MapUtil.getLong( this .data, key, 0L); } catch (Exception e) { e.printStackTrace(); return 0L; } } public ResJson<T> setData(Map<String, T> data) { this .data = data; return this ; } public ResJson<T> setData(String key, T value) { this .data.put(key, value); return this ; } public ResJson() { } public ResJson<T> ok() { this .code = ResJson.CODE_OK; if ( this .msg.equals( "" ) || this .msg.equals(ResJson.MSG_ERROR)) { this .msg = ResJson.MSG_OK; } return this ; } public ResJson<T> ok(String msg) { this .code = ResJson.CODE_OK; this .msg = msg; return this ; } public ResJson<T> ok(Map<String, T> data) { this .code = ResJson.CODE_OK; this .data = data; if ( this .msg.equals( "" ) || this .msg.equals(ResJson.MSG_ERROR)) { this .msg = ResJson.MSG_OK; } return this ; } public ResJson<T> ok(String msg, Map<String, T> data) { this .code = ResJson.CODE_OK; this .msg = msg; this .data = data; return this ; } public ResJson<T> ok(String code, String msg) { this .code = code; this .msg = msg; return this ; } public ResJson<T> ok(String code, String msg, Map<String, T> data) { this .code = code; this .msg = msg; this .data = data; return this ; } public ResJson<T> error() { this .code = ResJson.CODE_ERROR; if ( this .msg.equals( "" ) || this .msg.equals(ResJson.MSG_OK)) { this .msg = ResJson.MSG_ERROR; } return this ; } public ResJson<T> error(String msg) { this .code = ResJson.CODE_ERROR; this .msg = msg; return this ; } public ResJson<T> error(Map<String, T> data) { this .code = ResJson.CODE_ERROR; this .data = data; if ( this .msg.equals( "" ) || this .msg.equals(ResJson.MSG_OK)) { this .msg = ResJson.MSG_ERROR; } return this ; } public ResJson<T> error(String msg, Map<String, T> data) { this .code = ResJson.CODE_ERROR; this .msg = msg; this .data = data; return this ; } public ResJson<T> error(String code, String msg) { this .code = code; this .msg = msg; return this ; } public ResJson<T> error(String code, String msg, Map<String, T> data) { this .code = code; this .msg = msg; this .data = data; return this ; } public ResJson<T> error(ErrorEnum errorEnum) { this .code = errorEnum.getErrorCode(); this .msg = errorEnum.getErrorMsg(); return this ; } @JsonIgnore public boolean isOk() { return this .code.equals(CODE_OK); } @JsonIgnore public boolean isError() { return ! this .isOk(); } /** * 输出JSON字符串 */ @JsonIgnore public String outJson() { Map<String, Object> jsonMap = new LinkedHashMap<>(); jsonMap.put( "code" , this .code); jsonMap.put( "msg" , this .msg); jsonMap.put( "data" , this .data); try { ObjectMapper mapper = new ObjectMapper(); return mapper.writeValueAsString(jsonMap); } catch (JsonProcessingException e) { e.printStackTrace(); } return "{\"code\":\"" + this .getCode() + "\",\"msg\":\"" + this .getMsg() + "\", \"data\": \"\"}" ; } } |
参考: