Просмотр исходного кода

[招商]adjust

release_toaliyun_real
Burce 6 лет назад
Родитель
Сommit
88c2cd3af6
1 измененных файлов: 23 добавлений и 0 удалений
  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 Просмотреть файл

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

Загрузка…
Отмена
Сохранить