15 lines
155 B
PHP
15 lines
155 B
PHP
<?php
|
|
|
|
/**
|
|
* 调用方对象
|
|
* @author auto create
|
|
*/
|
|
class ClientInfoDto
|
|
{
|
|
|
|
/**
|
|
* 调用时自定义描述信息
|
|
**/
|
|
public $description;
|
|
}
|
|
?>
|