|
|
|
@@ -0,0 +1,23 @@ |
|
|
|
package com.iformall.domain.vo.invest; |
|
|
|
|
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
@Data |
|
|
|
public class InvestPageQuery<T> { |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "当前页", name = "pageNum", example = "1") |
|
|
|
private Integer pageNum; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "每页数据", name = "pageSize", example = "10") |
|
|
|
private Integer pageSize; |
|
|
|
|
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "倒序字段集合", name = "descs") |
|
|
|
private List<String> descs; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "升序字段集合", name = "ascs") |
|
|
|
private List<String> ascs; |
|
|
|
|
|
|
|
private T queryData ; |
|
|
|
} |