35 lines
389 B
PHP
35 lines
389 B
PHP
<?php
|
|
|
|
/**
|
|
* 查询返回值
|
|
* @author auto create
|
|
*/
|
|
class WaybillCloudPrintWithResultDescResponse
|
|
{
|
|
|
|
/**
|
|
* 错误码
|
|
**/
|
|
public $error_code;
|
|
|
|
/**
|
|
* 错误信息
|
|
**/
|
|
public $error_message;
|
|
|
|
/**
|
|
* 请求id
|
|
**/
|
|
public $object_id;
|
|
|
|
/**
|
|
* 请求成功
|
|
**/
|
|
public $success;
|
|
|
|
/**
|
|
* 面单查询结构体
|
|
**/
|
|
public $waybill_cloud_print_response;
|
|
}
|
|
?>
|