mirror of
https://github.com/201206030/novel-plus.git
synced 2025-06-24 04:46:37 +00:00
38 lines
467 B
Java
38 lines
467 B
Java
package com.java2nb.novel.search;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 小说搜索参数
|
|
* @author 11797
|
|
*/
|
|
@Data
|
|
public class BookSP {
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
}
|