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.
30 lines
270 B
30 lines
270 B
<?php
|
|
|
|
/**
|
|
* 接口返回
|
|
* @author auto create
|
|
*/
|
|
class Result
|
|
{
|
|
|
|
/**
|
|
* 错误码
|
|
**/
|
|
public $errcode;
|
|
|
|
/**
|
|
* 错误信息
|
|
**/
|
|
public $errmsg;
|
|
|
|
/**
|
|
* 接口返回model
|
|
**/
|
|
public $module;
|
|
|
|
/**
|
|
* 是否成功
|
|
**/
|
|
public $success;
|
|
}
|
|
?>
|