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

30 lines
380 B
PHP
Raw 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
/**
* 商家与CP的订购关系
* @author auto create
*/
class WaybillApplySubscriptionInfo
{
/**
* CP网点信息及对应的商家的发货信息
**/
public $branch_account_cols;
/**
* 物流服务商ID
**/
public $cp_code;
/**
* 1是直营2是加盟
**/
public $cp_type;
/**
* 订购关系是否建立
**/
public $result;
}
?>