上传代码

This commit is contained in:
xxy
2020-05-02 15:05:21 +08:00
parent c8c80fa719
commit ed34c67d08
733 changed files with 61899 additions and 0 deletions

View File

@ -0,0 +1,37 @@
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;
}