Commit 6b1083a4 by zhiwj

代码规范

parent 4943bfbe
...@@ -113,14 +113,22 @@ public class ProblemDTO implements Serializable { ...@@ -113,14 +113,22 @@ public class ProblemDTO implements Serializable {
*/ */
private Date updateTime; private Date updateTime;
// 管理员第一次回复内容 /**
* 管理员第一次回复内容
*/
private String replyContent; private String replyContent;
// 回复数量 /**
* 回复数量
*/
private Integer problemCount; private Integer problemCount;
// 图片 /**
* 图片
*/
private List<String> imgList; private List<String> imgList;
// 回复列表 /**
* 回复列表
*/
private List<ProblemReplyDTO> replyList; private List<ProblemReplyDTO> replyList;
private String replyUserContent; private String replyUserContent;
......
package com.gic.evaluate.dto;
import java.io.Serializable;
/**
* @author zhiwj
* @Description:
* @date 2020-01-02 10:48
*/
public class ProblemImgDTO implements Serializable {
private static final long serialVersionUID = 8641519372108017377L;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment