PushReload.php 403 B

1234567891011121314151617181920
  1. <?php
  2. namespace addons\qingdongams\model;
  3. use think\Model;
  4. /**
  5. *推送日志
  6. */
  7. class PushReload Extends Model {
  8. // 表名,不含前缀
  9. protected $name = 'qingdongams_push_reload';
  10. // 开启自动写入时间戳字段
  11. protected $autoWriteTimestamp = 'int';
  12. // 定义时间戳字段名
  13. protected $createTime = 'createtime';
  14. protected $updateTime = 'updatetime';
  15. }