package com.artfess.query.vo; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.util.List; @Data public class QueryParamVo { //@ApiModelProperty(value = "查询类型 1人员 2企业") //String type; @ApiModelProperty(value = "搜索标签ID【外键】(查企业、查老板、查风险)") String tagId; @ApiModelProperty(value = "查询表名") String tableName; @ApiModelProperty(value = "搜索表-字段-值") List paramVoList; @ApiModelProperty(value = "当前页") Integer pageNo=1; @ApiModelProperty(value = "数量") Integer pageSize=20; }