mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-05 00:36:39 +00:00
小说内容页性能优化
This commit is contained in:
37
novel-front/src/main/java/com/java2nb/novel/vo/BookSpVO.java
Normal file
37
novel-front/src/main/java/com/java2nb/novel/vo/BookSpVO.java
Normal 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;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user