package com.yyt.moviecrawler.model; public class XiaohongshuMovie extends Movie { public XiaohongshuMovie(String title, double score, String type, String author) { super(title, score, type, author); } @Override public void printInfo() { System.out.println("小红书电影:《" + getTitle() + "》" + " | 评分:" + getScore() + " | 类型:" + getType() + " | 作者:" + getAuthor()); } }