REAPI/extend/sdk/taobao/top/domain/TmcProduceResult.php
2024-09-29 15:43:18 +08:00

25 lines
342 B
PHP
Raw Permalink 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
/**
* 发送结果与发送时的参数顺序一致。如果is_all_success为true时不用校验result是否成功
* @author auto create
*/
class TmcProduceResult
{
/**
* 错误码
**/
public $error_code;
/**
* 错误信息
**/
public $error_message;
/**
* 是否成功
**/
public $is_success;
}
?>