ErrorCode.php 551 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Bear
  5. * Date: 2018/10/24
  6. * Time: 下午4:33
  7. */
  8. namespace app\common\constants;
  9. class ErrorCode
  10. {
  11. const SUCCESS = 0;
  12. const PARAMS_ERROR_EMPTY = 1;//参数为空
  13. const PARAMS_ERROR_TYPE = 2;//参数数据类型错误
  14. const PARAMS_ERROR_INVALID = 3;//参数无效
  15. const DB_ERROR_UPDATE = 4;//更新错误
  16. const DB_ERROR_SELECT = 5;//查询无结果
  17. const DB_ERROR_TIMEOUT = 6;//查询超时
  18. const API_ERROR = 7;//调用api返回错误
  19. const EXCEPTION = 8;//程序异常
  20. }