小说内容页性能优化

This commit is contained in:
xiongxiaoyang
2021-01-25 14:14:54 +08:00
parent ca6c2aec96
commit b5e0814eb4
26 changed files with 216 additions and 104 deletions

View File

@ -0,0 +1,37 @@
package com.java2nb.novel.vo;
import lombok.Data;
import java.util.Date;
/**
* 小说搜索参数
* @author 11797
*/
@Data
public class BookSpVO {
private String keyword;
private Byte workDirection;
private Integer catId;
private Byte isVip;
private Byte bookStatus;
private Integer wordCountMin;
private Integer wordCountMax;
private Date updateTimeMin;
private Long updatePeriod;
private String sort;
}