code.php 999B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * 20180519
  4. * code配置文件
  5. */
  6. return [
  7. 'service_error' => '500', //系统错误
  8. 'success' => '0', //请求成功
  9. 'fail' => '1', //请求失败
  10. 'params_error' => '1001', //参数错误
  11. 'sql_error' => '1002', //sql错误
  12. 'unknow_error' => '1003', //未知错误
  13. 'activity_not_exist' => '1004', //活动不存在
  14. 'category_not_exist' => '1005', //题库不存在
  15. 'question_not_exist' => '1006', //题目不存在
  16. 'upload_fail' => '1007', //上传失败
  17. 'prize_not_exist' => '1008', //奖品不存在
  18. 'user_not_exist' => '1009', //用户不存在
  19. 'corp_not_wesuit' => '1010', //企业未开通企业微信
  20. 'login_timeout' => '9999', //登录超时
  21. ];
  22. ?>