真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何自定義數(shù)據(jù)庫響應(yīng)數(shù)據(jù)結(jié)構(gòu)

這篇文章主要講解了“如何自定義數(shù)據(jù)庫響應(yīng)數(shù)據(jù)結(jié)構(gòu)”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“如何自定義數(shù)據(jù)庫響應(yīng)數(shù)據(jù)結(jié)構(gòu)”吧!

創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站制作、扶溝網(wǎng)絡(luò)推廣、小程序制作、扶溝網(wǎng)絡(luò)營銷、扶溝企業(yè)策劃、扶溝品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供扶溝建站搭建服務(wù),24小時(shí)服務(wù)熱線:028-86922220,官方網(wǎng)址:www.cdcxhl.com

/**
 * @author iqunqunqun
 * @description: 自定義響應(yīng)數(shù)據(jù)結(jié)構(gòu)
 * 這個(gè)類是提供給門戶,ios,安卓,微信商城用的
 * 門戶接受此類數(shù)據(jù)后需要使用本類的方法轉(zhuǎn)換成對于的數(shù)據(jù)類型格式(類,或者list)
 * 其他自行處理
 * 200:表示成功
 * 404: 表示未發(fā)現(xiàn)
 * 500:表示錯(cuò)誤,錯(cuò)誤信息在msg字段中
 * 501:bean驗(yàn)證錯(cuò)誤,不管多少個(gè)錯(cuò)誤都以map形式返回
 * 502:攔截器攔截到用戶token出錯(cuò)
 * 555:異常拋出信息
 * ***:其他自定義異常
 */
@Data
@NoArgsConstructor
public class JsonResult {


    /**
     * 響應(yīng)狀態(tài)
     */
    private Integer status;

    /**
     * 響應(yīng)消息
     */
    private String msg;

    /**
     * 響應(yīng)數(shù)據(jù)
     */
    private Object data;

    public static JsonResult build(Integer status, String msg, Object data) {
        return new JsonResult(status, msg, data);
    }

    public static JsonResult ok(Object data) {
        return new JsonResult(data);
    }

    public static JsonResult ok(String msg, Object data) {
        return new JsonResult(msg, data);
    }

    public static JsonResult ok() {
        return new JsonResult("ok", null);
    }

    public static JsonResult errorMsg() {
        return new JsonResult(404, "not found", null);
    }

    public static JsonResult errorMsg(String msg) {
        return new JsonResult(500, msg, null);
    }

    public static JsonResult errorMap(Object data) {
        return new JsonResult(501, "error", data);
    }

    public static JsonResult errorTokenMsg(String msg) {
        return new JsonResult(502, msg, null);
    }

    public static JsonResult errorException(String msg) {
        return new JsonResult(555, msg, null);
    }

    public static JsonResult errorException(Integer status, String msg, Object data) {
        return new JsonResult(status, msg, data);
    }


    private JsonResult(Integer status, String msg, Object data) {
        this.status = status;
        this.msg = msg;
        this.data = data;
    }

    private JsonResult(Object data) {
        this.status = 200;
        this.msg = "OK";
        this.data = data;
    }

    private JsonResult(String msg, Object data) {
        this.status = 200;
        this.msg = msg;
        this.data = data;
    }
}

感謝各位的閱讀,以上就是“如何自定義數(shù)據(jù)庫響應(yīng)數(shù)據(jù)結(jié)構(gòu)”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對如何自定義數(shù)據(jù)庫響應(yīng)數(shù)據(jù)結(jié)構(gòu)這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!


標(biāo)題名稱:如何自定義數(shù)據(jù)庫響應(yīng)數(shù)據(jù)結(jié)構(gòu)
文章位置:http://weahome.cn/article/jjdsei.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部