mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
21 lines
308 B
PHP
21 lines
308 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @since 2016-02-18
|
|
* @author zhaoxiang <zhaoxiang051405@outlook.com>
|
|
*/
|
|
|
|
namespace app\admin\controller;
|
|
|
|
|
|
class ReturnCode {
|
|
|
|
const GET_TEMPLATE_SUCCESS = 200;
|
|
const SUCCESS = 1;
|
|
const ERROR = 0;
|
|
const GET_TEMPLATE_ERROR = 404;
|
|
|
|
const ERROR_BY_REFRESH_PAGE = 302;
|
|
|
|
|
|
} |