| 123456789101112131415161718 |
- <?php
- /**
- * Created by PhpStorm.
- * User: shenyang
- * Date: 2018/12/17
- * Time: 11:38 AM
- */
- namespace app\common\exceptions;
- class ErrorCode
- {
- // 商城错误1000到2000
- const UNI_ACCOUNT_NOT_FOUND = 3001;
- // 会员错误3000到4000
- const MEMBER_NOT_LOGIN = 3001;
- }
|