Browse Source

[招商]adjust

release_toaliyun_real
Burce 6 years ago
parent
commit
88c2cd3af6
1 changed files with 23 additions and 0 deletions
  1. +23
    -0
      mallinkService/src/main/java/com/iformall/domain/vo/invest/InvestPageQuery.java

+ 23
- 0
mallinkService/src/main/java/com/iformall/domain/vo/invest/InvestPageQuery.java View File

@@ -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 ;
}

Loading…
Cancel
Save