搞定
This commit is contained in:
@@ -34,6 +34,9 @@ public class Source implements Serializable {
|
||||
@ApiModelProperty(value = "资源名")
|
||||
private String sourceName;
|
||||
|
||||
@ApiModelProperty(value = "描述")
|
||||
private String detail;
|
||||
|
||||
@ApiModelProperty(value = "资源内容")
|
||||
private String sourceContent;
|
||||
|
||||
@@ -64,6 +67,9 @@ public class Source implements Serializable {
|
||||
@ApiModelProperty(value = "文件后缀")
|
||||
private String fileType;
|
||||
|
||||
@ApiModelProperty(value = "下载次数")
|
||||
private Integer downRecord;
|
||||
|
||||
@ApiModelProperty(value = "创建时间")
|
||||
private Date gmtCreate;
|
||||
|
||||
|
||||
25
src/main/java/com/quinn/pojo/param/QuerySource.java
Normal file
25
src/main/java/com/quinn/pojo/param/QuerySource.java
Normal file
@@ -0,0 +1,25 @@
|
||||
package com.quinn.pojo.param;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class QuerySource {
|
||||
|
||||
/**
|
||||
* 模糊查询名称
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* 资源类别
|
||||
*/
|
||||
private int category;
|
||||
/**
|
||||
* 页码
|
||||
*/
|
||||
private int pageNum;
|
||||
/**
|
||||
* 每页数量
|
||||
*/
|
||||
private int limit;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user