ShareUser.php 346 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class ShareUser extends PolarDbModel
  5. {
  6. // 表名
  7. protected $table = 'share_user';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = 'created_at';
  12. protected $updateTime = 'updated_at';
  13. }