mirror of
https://github.com/201206030/novel-plus.git
synced 2025-06-24 04:46:37 +00:00
集成elasticsearch搜索引擎
This commit is contained in:
85
novel-front/src/main/java/com/java2nb/novel/vo/EsBookVO.java
Normal file
85
novel-front/src/main/java/com/java2nb/novel/vo/EsBookVO.java
Normal file
@ -0,0 +1,85 @@
|
||||
package com.java2nb.novel.vo;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.java2nb.novel.entity.Book;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
*/
|
||||
@Data
|
||||
public class EsBookVO {
|
||||
|
||||
private Long id;
|
||||
|
||||
|
||||
private Byte workDirection;
|
||||
|
||||
|
||||
private Integer catId;
|
||||
|
||||
|
||||
private String catName;
|
||||
|
||||
|
||||
private String picUrl;
|
||||
|
||||
|
||||
private String bookName;
|
||||
|
||||
|
||||
private Long authorId;
|
||||
|
||||
|
||||
private String authorName;
|
||||
|
||||
|
||||
private String bookDesc;
|
||||
|
||||
|
||||
private Float score;
|
||||
|
||||
|
||||
private Byte bookStatus;
|
||||
|
||||
|
||||
private Long visitCount;
|
||||
|
||||
|
||||
private Integer wordCount;
|
||||
|
||||
|
||||
private Integer commentCount;
|
||||
|
||||
|
||||
private Long lastIndexId;
|
||||
|
||||
|
||||
private String lastIndexName;
|
||||
|
||||
private String lastIndexUpdateTime;
|
||||
|
||||
|
||||
private Byte isVip;
|
||||
|
||||
|
||||
private Byte status;
|
||||
|
||||
|
||||
|
||||
|
||||
private Integer crawlSourceId;
|
||||
|
||||
|
||||
private String crawlBookId;
|
||||
|
||||
|
||||
|
||||
private Byte crawlIsStop;
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user