Explorar el Código

[招商]adjust

release_toaliyun_real
Burce hace 6 años
padre
commit
88c2cd3af6
Se han modificado 1 ficheros con 23 adiciones y 0 borrados
  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 Ver fichero

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

Cargando…
Cancelar
Guardar