REAPI/extend/sdk/taobao/top/domain/ReachableDto.php

20 lines
234 B
PHP
Raw Normal View History

2024-09-29 15:43:18 +08:00
<?php
/**
* 可达信息
* @author auto create
*/
class ReachableDto
{
/**
* 是否阻断 true:阻断 false:可达
**/
public $interrupt_apply_waybill_code;
/**
* 阻断原因
**/
public $interrupt_reason;
}
?>