12345678910111213141516171819202122 |
- <?php
- /**
- * 20180519
- * code配置文件
- */
- return [
- 'service_error' => '500', //系统错误
- 'success' => '0', //请求成功
- 'fail' => '1', //请求失败
- 'params_error' => '1001', //参数错误
- 'sql_error' => '1002', //sql错误
- 'unknow_error' => '1003', //未知错误
- 'activity_not_exist' => '1004', //活动不存在
- 'category_not_exist' => '1005', //题库不存在
- 'question_not_exist' => '1006', //题目不存在
- 'upload_fail' => '1007', //上传失败
- 'prize_not_exist' => '1008', //奖品不存在
- 'user_not_exist' => '1009', //用户不存在
- 'corp_not_wesuit' => '1010', //企业未开通企业微信
- 'login_timeout' => '9999', //登录超时
- ];
- ?>
|