All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.vanlla.generator.utils.R Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
package com.github.vanlla.generator.utils;

import java.util.HashMap;
import java.util.Map;

/**
 * 返回数据
 *
 * @author Vanlla
 * @since 1.0
 */
public class R extends HashMap {
    private static final long serialVersionUID = 1L;

    public R() {
        put("code", 0);
    }

    public static R error() {
        return error(500, "未知异常,请联系管理员");
    }

    public static R error(String msg) {
        return error(500, msg);
    }

    public static R error(int code, String msg) {
        R r = new R();
        r.put("code", code);
        r.put("msg", msg);
        return r;
    }

    public static R ok(String msg) {
        R r = new R();
        r.put("msg", msg);
        return r;
    }

    public static R ok(Map map) {
        R r = new R();
        r.putAll(map);
        return r;
    }

    public static R ok() {
        return new R();
    }

    public R put(String key, Object value) {
        super.put(key, value);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy