constant.php 260 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * User: admin
  4. * Date Time: 2021/3/25 23:09
  5. */
  6. namespace common\components\dada\config;
  7. class constant
  8. {
  9. const FAIL = "fail";
  10. const SUCCESS = "success";
  11. const FAIL_MSG = "接口请求超时或失败";
  12. const FAIL_CODE = -2;
  13. }