DgLendFileSearchRequest.java
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.pashanhoo.lendfile.entity.vo;
import java.io.Serializable;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import com.pashanhoo.common.PageInfo;
/**
* <p>
* 档案借阅文件列表查询请求实体
* </p>
*
* @author
* @since 2021-11-09
*/
@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="档案借阅文件列表查询请求实体")
//TODO 初始查询条件是全部,需要根据情况自行删减
public class DgLendFileSearchRequest extends PageInfo implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 借阅文件标识码
*/
@ApiModelProperty(name = "bsmLendfile", value = "借阅文件标识码")
private String bsmLendfile;
/**
* 借阅目录标识码
*/
@ApiModelProperty(name = "bsmLendcatalog", value = "借阅目录标识码")
private String bsmLendcatalog;
/**
* 目录标识码
*/
@ApiModelProperty(name = "bsmCatalog", value = "目录标识码")
private String bsmCatalog;
}