From 88c2cd3af61fffd0894e3eeafd3c95f55330a73c Mon Sep 17 00:00:00 2001 From: Burce Date: Sun, 29 Sep 2019 15:55:44 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=8B=9B=E5=95=86]adjust?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/vo/invest/InvestPageQuery.java | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 mallinkService/src/main/java/com/iformall/domain/vo/invest/InvestPageQuery.java diff --git a/mallinkService/src/main/java/com/iformall/domain/vo/invest/InvestPageQuery.java b/mallinkService/src/main/java/com/iformall/domain/vo/invest/InvestPageQuery.java new file mode 100644 index 000000000..bb5c13137 --- /dev/null +++ b/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 { + @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 descs; + + @io.swagger.annotations.ApiModelProperty(value = "升序字段集合", name = "ascs") + private List ascs; + + private T queryData ; +}