25 lines
268 B
PHP
25 lines
268 B
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* 同意退款检查标识字段
|
||
|
* @author auto create
|
||
|
*/
|
||
|
class AgreeRefundCheck
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 流程状态
|
||
|
**/
|
||
|
public $delivery_process;
|
||
|
|
||
|
/**
|
||
|
* 提示文案
|
||
|
**/
|
||
|
public $delivery_tips;
|
||
|
|
||
|
/**
|
||
|
* 订单id
|
||
|
**/
|
||
|
public $detail_order_id;
|
||
|
}
|
||
|
?>
|