puhanshu
2022-07-23 bbda2ee1af4e86d76f93e00386d77efb56c60d5f
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/constants/HttpStatus.java
@@ -5,8 +5,7 @@
 * 
 * @author huanghongfa
 */
public class HttpStatus
{
public class HttpStatus {
    /**
     * 操作成功
     */
@@ -73,6 +72,11 @@
    public static final int CONFLICT = 409;
    /**
     * 请求主体的大小超过了服务器
     */
    public static final int REQUEST_TOO_LARGE = 413;
    /**
     * 不支持的数据,媒体类型
     */
    public static final int UNSUPPORTED_TYPE = 415;
@@ -86,4 +90,9 @@
     * 接口未实现
     */
    public static final int NOT_IMPLEMENTED = 501;
    /**
     * 暂不支持
     */
    public static final int NOT_ACCEPTABLE = 406;
}