package com.meishu.vo.test; import lombok.Data; import java.util.List; @Data public class GetOnePublishVO { private Long id; private Long studentId; private Long publishId; private String username; private String answer; private String commentStatus; private Double totalStar; private List<CommentVO> commentVOS; }