35 lines
459 B
PHP
35 lines
459 B
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* null
|
||
|
* @author auto create
|
||
|
*/
|
||
|
class PriceAdjustment
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 奇门仓储字段,说明,string(50),,
|
||
|
**/
|
||
|
public $discount;
|
||
|
|
||
|
/**
|
||
|
* 奇门仓储字段,说明,string(50),,
|
||
|
**/
|
||
|
public $end_date;
|
||
|
|
||
|
/**
|
||
|
* 奇门仓储字段,说明,string(50),,
|
||
|
**/
|
||
|
public $standard_price;
|
||
|
|
||
|
/**
|
||
|
* 奇门仓储字段,说明,string(50),,
|
||
|
**/
|
||
|
public $start_date;
|
||
|
|
||
|
/**
|
||
|
* 奇门仓储字段,说明,string(50),,
|
||
|
**/
|
||
|
public $type;
|
||
|
}
|
||
|
?>
|