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.

15 lines
216 B

<?php
namespace App\Helpers;
class ResponseCode
{
// 参数错误
const ERROR_PARAMETER = 10001;
// 业务错误
const ERROR_BUSINESS = 10002;
// 内部错误
const ERROR_INSIDE = 10003;
}