ErrorCode.php 183 B

12345678910111213141516
  1. <?php
  2. /**
  3. * 错误码定义.
  4. * @author wangkuiwei
  5. * @name ErrorCode
  6. * @desc 错误码
  7. *
  8. */
  9. class ErrorCode {
  10. const Success = 0;
  11. const NETWORK_ERROR_TIMEOUT = -1;
  12. }
  13. ?>