30 lines
301 B
PHP
30 lines
301 B
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* 回传结果List
|
||
|
* @author auto create
|
||
|
*/
|
||
|
class OrderGroupResponse
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 错误码
|
||
|
**/
|
||
|
public $error_code;
|
||
|
|
||
|
/**
|
||
|
* 错误信息描述
|
||
|
**/
|
||
|
public $error_msg;
|
||
|
|
||
|
/**
|
||
|
* 入参中的groupId
|
||
|
**/
|
||
|
public $group_id;
|
||
|
|
||
|
/**
|
||
|
* 回传结果
|
||
|
**/
|
||
|
public $result;
|
||
|
}
|
||
|
?>
|