Sign in

wms / wms_changshushengyi · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wms_changshushengyi
  • ..
  • constant
  • HttpConstant.java
  • 生益更新wms2最新代码
    d83bd57a
    周鸿 authored
    2022-10-09 11:36:25 +0800  
    Browse Dir »
HttpConstant.java 285 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package com.huaheng.common.constant;

public class HttpConstant {

    public static final int OK = 200;
    public static final int ERROR = 400;

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