You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
217 B
PHTML
22 lines
217 B
PHTML
5 years ago
|
<?php
|
||
|
/**
|
||
|
* 返回的默认类
|
||
|
*
|
||
|
* @author auto create
|
||
|
* @since 1.0, 2015-01-20
|
||
|
*/
|
||
|
class ResultSet
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 返回的错误码
|
||
|
**/
|
||
|
public $code;
|
||
|
|
||
|
/**
|
||
|
* 返回的错误信息
|
||
|
**/
|
||
|
public $msg;
|
||
|
|
||
|
}
|