ErrorCode.php 286 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: shenyang
  5. * Date: 2018/12/17
  6. * Time: 11:38 AM
  7. */
  8. namespace app\common\exceptions;
  9. class ErrorCode
  10. {
  11. // 商城错误1000到2000
  12. const UNI_ACCOUNT_NOT_FOUND = 3001;
  13. // 会员错误3000到4000
  14. const MEMBER_NOT_LOGIN = 3001;
  15. }