You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
294 B
11 lines
294 B
<?php
|
|
namespace App\Common;
|
|
|
|
class ReturnCode
|
|
{
|
|
//通用
|
|
const SUCCESS = '操作成功'; //操作成功
|
|
const FAIL = '操作失败'; //操作失败
|
|
const NO_FOUND = '您访问的页面不存在';
|
|
const SUCCESS_CODE = 0;
|
|
}
|