// +---------------------------------------------------------------------- namespace app\love\model; use think\Model; class LotteryLogModel extends Model { public function user() { return $this->hasOne(UserModel::class,'id','user_id'); } public function lottery() { return $this->hasOne(LotteryPrizeModel::class,'id','prize_id'); } }