home-school-contact-app/源码/php/AiYaSchoolPush/xmpush/ErrorCode.php

16 lines
160 B
PHP
Raw Normal View History

2021-10-19 00:18:35 +00:00
<?php
/**
* 错误码定义.
* @author wangkuiwei
* @name ErrorCode
* @desc 错误码
*
*/
namespace xmpush;
class ErrorCode {
const Success = 0;
}
?>