TASK:aida;
This commit is contained in:
@@ -32,4 +32,6 @@ public class AccountLoginVO {
|
||||
@ApiModelProperty("是否完成引导")
|
||||
private Integer isBeginner;
|
||||
|
||||
private Integer systemUser;
|
||||
|
||||
}
|
||||
|
||||
15
src/main/java/com/ai/da/model/vo/CommentVO.java
Normal file
15
src/main/java/com/ai/da/model/vo/CommentVO.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package com.ai.da.model.vo;
|
||||
|
||||
import com.ai.da.mapper.primary.entity.Comment;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class CommentVO extends Comment {
|
||||
private List<CommentVO> childCommentVOList;
|
||||
|
||||
private String userName;
|
||||
|
||||
private String replyTo;
|
||||
}
|
||||
@@ -10,7 +10,8 @@ import java.util.List;
|
||||
@Data
|
||||
public class PortfolioVO extends Portfolio {
|
||||
private String canvasUrl;
|
||||
|
||||
private Long likeNum;
|
||||
private List<CollectionElement> collectionElementList;
|
||||
private List<TDesignPythonOutfit> designPythonOutfitList;
|
||||
private Integer isLike;
|
||||
}
|
||||
|
||||
@@ -22,4 +22,6 @@ public class UserLikeChooseVO {
|
||||
private UserLikeCollectionVO collection;
|
||||
|
||||
private String sex;
|
||||
|
||||
private Integer beenPublished;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user