mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-04 16:26:40 +00:00
86 lines
1.1 KiB
Java
86 lines
1.1 KiB
Java
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;
|
|
|
|
|
|
}
|