You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
294 B

7 years ago
7 years ago
  1. <?php
  2. namespace App\Common;
  3. class ReturnCode
  4. {
  5. //通用
  6. const SUCCESS = '操作成功'; //操作成功
  7. const FAIL = '操作失败'; //操作失败
  8. const NO_FOUND = '您访问的页面不存在';
  9. const SUCCESS_CODE = 0;
  10. }