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

20 lines
199 B
PHP

<?php
/**
* 出资人配置
* @author auto create
*/
class InvestmentInfo
{
/**
* 出资人
**/
public $investor;
/**
* 出资比例 2000 = 20%
**/
public $investor_ratio;
}
?>