status.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. *
  4. *User:Administrator
  5. *Date:2021/10/8
  6. */
  7. return [
  8. 'success'=>[0,'success'],
  9. 'error' => [1, 'error'],
  10. //用户登录相关的错误
  11. 'err_username_or_password'=>['-1', '用户名或密码错误'],
  12. 'err_user_not_exist'=>['100','用户名或密码 不存在'],
  13. //JwtMiddleware相关错误
  14. 'err_unKnow'=>['200','未知错误'],
  15. 'err_params'=>['300','参数错误'],
  16. //数据操作有关错误
  17. 'none_authority' => ['400', '无权操作'],
  18. 'none_data' => ['401', '未选取有效数据'],
  19. 'err_public_status'=>['402','当前任务不可废止'],
  20. 'err_data_upload' => ['4004', '数据上传失败,请重试'],
  21. //lib/update上传相关的错误
  22. 'undefined_error'=>['1000','上传文件发生未知错误'],
  23. 'no_file_to_uploaded' => ['1000', '未上传任何文件'],
  24. //模型操作相关的错误
  25. 'none_model_info'=>['2004','未选取有效模型'],
  26. 'none_model_product'=>['2005','检测对象未选取有效数据'],
  27. 'none_model_pesticides'=>['2006','检测项未选取有效数据'],
  28. //任务操作相关的错误
  29. 'err_task_auth'=>['3004','权限不足,无法操作该任务'],
  30. //api-validate异常抛出
  31. 'err_validate'=>'999',
  32. ];