25 lines
382 B
PHP
25 lines
382 B
PHP
<?php
|
|
|
|
/**
|
|
* 退款超时结构RefundRemindTimeout
|
|
* @author auto create
|
|
*/
|
|
class RefundRemindTimeout
|
|
{
|
|
|
|
/**
|
|
* 是否存在超时。可选值:true(是),false(否)
|
|
**/
|
|
public $exist_timeout;
|
|
|
|
/**
|
|
* 提醒的类型(退款详情中提示信息的类型)
|
|
**/
|
|
public $remind_type;
|
|
|
|
/**
|
|
* 超时时间。格式:yyyy-MM-dd HH:mm:ss
|
|
**/
|
|
public $timeout;
|
|
}
|
|
?>
|