Blame view

src/main/java/com/huaheng/common/constant/HttpConstant.java 328 Bytes
游杰 authored
1
2
3
4
5
package com.huaheng.common.constant;

public class HttpConstant {

    public static final int OK = 200;
肖超群 authored
6
    public static final int CREATED = 201;
游杰 authored
7
    public static final int ERROR = 400;
肖超群 authored
8
9
10
11
12
13
14

    public static boolean isSuccess(int code) {
        if(code == OK) {
            return true;
        }
        return false;
    }
游杰 authored
15
}