17 lines
295 B
PHP
17 lines
295 B
PHP
<?php
|
|
|
|
namespace app\constant;
|
|
|
|
class ResponseCode
|
|
{
|
|
const SUCCESS = 2000; // 接口处理成功
|
|
const FAIL = 3005; // 接口处理失败
|
|
|
|
const NEED_LOGIN = 4001;//需要登录
|
|
|
|
|
|
const WEB_API_SUCCESS = 0;//后台api接口
|
|
const WEB_API_FAIL = 1;//后台api接口
|
|
|
|
|
|
} |