20 lines
273 B
PHP
20 lines
273 B
PHP
<?php
|
|
|
|
/**
|
|
* 关联订单
|
|
* @author auto create
|
|
*/
|
|
class RelatedOrders
|
|
{
|
|
|
|
/**
|
|
* 关联的订单编号,关联的订单编号,string(50),,
|
|
**/
|
|
public $order_code;
|
|
|
|
/**
|
|
* 关联的订单类型,关联的订单类型,string(50),,
|
|
**/
|
|
public $order_type;
|
|
}
|
|
?>
|