DatetimeVo.php 222 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 开始时间
  4. * @author auto create
  5. */
  6. class DatetimeVo
  7. {
  8. /**
  9. * 时区
  10. **/
  11. public $timezone;
  12. /**
  13. * 开始的unix时间戳(单位:毫秒)
  14. **/
  15. public $unix_timestamp;
  16. }
  17. ?>