You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
203 B
20 lines
203 B
<?php
|
|
|
|
/**
|
|
* 开始时间
|
|
* @author auto create
|
|
*/
|
|
class DatetimeVo
|
|
{
|
|
|
|
/**
|
|
* 时区
|
|
**/
|
|
public $timezone;
|
|
|
|
/**
|
|
* 开始的unix时间戳(单位:毫秒)
|
|
**/
|
|
public $unix_timestamp;
|
|
}
|
|
?>
|