28 lines
506 B
Java
28 lines
506 B
Java
package com.api.aiyh_pcn.patentWall.vo;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
import lombok.ToString;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author EBU7-dev1-ayh
|
|
* @create 2021/11/29 0029 18:27
|
|
* 搜索框VO
|
|
*/
|
|
|
|
@Getter
|
|
@Setter
|
|
@ToString
|
|
public class SearchInputVO {
|
|
private Integer type;
|
|
private String dbFieldName;
|
|
private String labelName;
|
|
private String value;
|
|
private Integer labelIndex;
|
|
private Integer searchType;
|
|
private Boolean multiple;
|
|
private List<SelectOptionsVo> selectOptions;
|
|
}
|