parent
6d67d4d60b
commit
e8ff3810af
@ -0,0 +1,8 @@
|
|||||||
|
package com.luoo.comment.dao;
|
||||||
|
|
||||||
|
import com.luoo.comment.pojo.CommentHis;
|
||||||
|
import org.springframework.data.mongodb.repository.MongoRepository;
|
||||||
|
|
||||||
|
public interface CommentHisDao extends MongoRepository<CommentHis,String> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
package com.luoo.comment.pojo;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.springframework.data.annotation.Id;
|
||||||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class CommentHis {
|
||||||
|
|
||||||
|
@Id
|
||||||
|
private String _id;
|
||||||
|
|
||||||
|
|
||||||
|
private String userId; // 被评论人userid;
|
||||||
|
|
||||||
|
|
||||||
|
private String content; // 被评论的内容;
|
||||||
|
|
||||||
|
private String commenterId; // 评论人userId
|
||||||
|
|
||||||
|
private String commenterAvatar; // 评论人头像
|
||||||
|
|
||||||
|
|
||||||
|
private String commentContent; //评论的内容
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private String nickName; // 评论人昵称
|
||||||
|
|
||||||
|
private String journalId; // 期刊ID
|
||||||
|
|
||||||
|
private String journalImage; // 期刊封面
|
||||||
|
|
||||||
|
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
private Date createTime;
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
package com.luoo.user.dao;
|
||||||
|
|
||||||
|
import com.luoo.user.pojo.CommentHis;
|
||||||
|
import org.springframework.data.domain.Page;
|
||||||
|
import org.springframework.data.domain.Pageable;
|
||||||
|
import org.springframework.data.mongodb.repository.MongoRepository;
|
||||||
|
|
||||||
|
public interface CommentHisDao extends MongoRepository<CommentHis,String> {
|
||||||
|
|
||||||
|
|
||||||
|
public Page<CommentHis> findByUserIdOrderByCreateTimeDesc(String userId, Pageable pageable);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
package com.luoo.user.pojo;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.springframework.data.annotation.Id;
|
||||||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class CommentHis {
|
||||||
|
|
||||||
|
@Id
|
||||||
|
private String _id;
|
||||||
|
|
||||||
|
|
||||||
|
private String userId; // 被评论人userid;
|
||||||
|
|
||||||
|
|
||||||
|
private String content; // 被评论的内容;
|
||||||
|
|
||||||
|
private String commenterId; // 评论人userId
|
||||||
|
|
||||||
|
private String commenterAvatar; // 评论人头像
|
||||||
|
|
||||||
|
|
||||||
|
private String commentContent; //评论的内容
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private String nickName; // 评论人昵称
|
||||||
|
|
||||||
|
private String journalId; // 期刊ID
|
||||||
|
|
||||||
|
private String journalImage; // 期刊封面
|
||||||
|
|
||||||
|
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
private Date createTime;
|
||||||
|
}
|
Loading…
Reference in new issue