30 lines
363 B
PHP
30 lines
363 B
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* 购物金信息输出
|
||
|
* @author auto create
|
||
|
*/
|
||
|
class ExpandCardInfo
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 买卡订单本金
|
||
|
**/
|
||
|
public $basic_price;
|
||
|
|
||
|
/**
|
||
|
* 用卡订单使用的本金
|
||
|
**/
|
||
|
public $basic_price_used;
|
||
|
|
||
|
/**
|
||
|
* 买卡订单权益金
|
||
|
**/
|
||
|
public $expand_price;
|
||
|
|
||
|
/**
|
||
|
* 用卡订单使用的权益金
|
||
|
**/
|
||
|
public $expand_price_used;
|
||
|
}
|
||
|
?>
|