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

io.github.xtazxz.base.common.ec.ErrorCodeBase Maven / Gradle / Ivy

The newest version!
package io.github.xtazxz.base.common.ec;


import io.github.xtazxz.base.entity.ErrorCode;

public class ErrorCodeBase {

  // ====================Base的业务错误码====================
  // 共6位,.前3位是模块,后3位是错误序号
  // 每个子模块增加1000

  // 校验模块
  public static final int EC_BASE_VALIDATION = ErrorCode.EC_BASE;

  // 数据库模块
  public static final int EC_BASE_DATABASE = ErrorCode.EC_BASE + 1000;

  // 安全模块
  public static final int EC_BASE_SECURITY = ErrorCode.EC_BASE + 2000;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy