Files
advertising/ShortMessage/top/domain/BizResult.php
Administrator 0e902893ca 1.0-version
2019-04-11 15:54:34 +08:00

30 lines
320 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 返回结果对象
* @author auto create
*/
class BizResult
{
/**
* 错误码
**/
public $err_code;
/**
* 返回结果
**/
public $model;
/**
* 返回信息描述
**/
public $msg;
/**
* true表示成功false表示失败
**/
public $success;
}
?>