* @Date: 2021-12-06 16:04:50 * @LastEditTime: 2022-08-16 12:20:49 * @LastEditors: TaoLer * @Description: 签到模型 * @FilePath: \TaoLer\app\common\model\Sign.php * Copyright (c) 2020~2022 https://www.aieok.com All rights reserved. */ namespace app\common\model; use think\Model; class Sign extends Model { //用户关联评论 public function user() { return $this->hasMany('User','user_id','id'); } }