从"Blog"仓库中分离出来
This commit is contained in:
17
src/main/java/cn/celess/blog/entity/request/CommentReq.java
Normal file
17
src/main/java/cn/celess/blog/entity/request/CommentReq.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package cn.celess.blog.entity.request;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author : xiaohai
|
||||
* @date : 2019/06/02 10:35
|
||||
*/
|
||||
@Data
|
||||
public class CommentReq {
|
||||
private Long id;
|
||||
private Boolean comment;
|
||||
private String content;
|
||||
private Long pid;
|
||||
private Long articleID;
|
||||
private String responseId;
|
||||
}
|
||||
Reference in New Issue
Block a user