QueryQuestionsVO.java 269 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 package com.meishu.vo.question; import lombok.Data; @Data public class QueryQuestionsVO { private Integer id; private String userName; private String createDate; private String title; private String answer; private String updateDate; }