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