jiazx0107@163.com
2024-01-12 efec12bd4827ddefd9b19ccc0eee3ca1c62908f3
src/main/java/com/fzzy/gateway/data/BaseResp.java
@@ -6,7 +6,7 @@
public class BaseResp {
    public static int CODE_200 = 200;
    public static int CODE_50 = 500;
    public static int CODE_500 = 500;
    private int code = CODE_200;
@@ -14,6 +14,11 @@
    private String data;
    /**
     * 封装需要的数据
     */
    private Object obj;
    public BaseResp() {
    }