123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace app\model;
- //不是模型表,只是一个错误码
- class CommonModel
- {
- //错误码
- public static $success= 0;//请求成功
- public static $error_token = 1003;//token错误
- public static $error_param = 1004;//参数错误
- public static $error_default = 1005;//业务错误
- public static $error_other = 1006;//其他错误
- //特殊错误码
- public static $error_layer = 1010;//弹出
- public static $error_jump = 1011;//重定向
- //是否删除
- public static $del_normal=0;//未删除
- public static $del_deleted=1;//已删除
- //状态
- public static $status_normal=1;//启用
- public static $status_disable=0;//禁用
- //置顶
- public static $top_yes = 1;//置顶
- public static $top_no = 0;//不置顶
- //库存操作来源
- public static $source_admin = 1 ;//后台操作
- public static $source_account = 2 ;//客户操作
- }
|