Err.php 619 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. /**
  8. * Description of Err
  9. * 错误码
  10. * @author jgao
  11. */
  12. class Err {
  13. //put your code here
  14. /**
  15. * 成功
  16. */
  17. const succeed = 0;
  18. /**
  19. * 默认错误
  20. */
  21. const err_default = 1;
  22. // --------------服务端内部错误----------------
  23. // --------------业务逻辑错误----------------
  24. /**
  25. * 用户身份错误
  26. */
  27. const err_usr_ill = 6001;
  28. }