AdminLog.php 772 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * ----------------------------------------------------------------------------
  4. * 行到水穷处,坐看云起时
  5. * 开发软件,找贵阳云起信息科技,官网地址:https://www.56q7.com/
  6. * ----------------------------------------------------------------------------
  7. * Author: 老成
  8. * email:85556713@qq.com
  9. */
  10. declare(strict_types=1);
  11. namespace app\common\model;
  12. use think\Model;
  13. class AdminLog extends Model{
  14. // 自动写入时间戳字段
  15. protected $autoWriteTimestamp = true;
  16. // 定义时间戳字段名
  17. protected $createTime = 'createtime';
  18. protected $updateTime = 'updatetime';
  19. protected $type = [
  20. 'createtime' => 'timestamp:Y-m-d H:i',
  21. 'updatetime' => 'timestamp:Y-m-d H:i',
  22. ];
  23. }