|
@@ -3,9 +3,11 @@ package com.fs.store.param;
|
|
import com.fs.common.param.BaseQueryParam;
|
|
import com.fs.common.param.BaseQueryParam;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
@Data
|
|
@Data
|
|
public class FsStoreProductQueryParam extends BaseQueryParam implements Serializable
|
|
public class FsStoreProductQueryParam extends BaseQueryParam implements Serializable
|
|
{
|
|
{
|
|
@@ -35,4 +37,7 @@ public class FsStoreProductQueryParam extends BaseQueryParam implements Serializ
|
|
@ApiModelProperty(value = "1 只显示商城展示的商品 0展示所有")
|
|
@ApiModelProperty(value = "1 只显示商城展示的商品 0展示所有")
|
|
private Integer isDisplay=1;
|
|
private Integer isDisplay=1;
|
|
|
|
|
|
|
|
+ private Integer page =1;
|
|
|
|
+ @ApiModelProperty(value = "页大小,默认为10")
|
|
|
|
+ private Integer pageSize = 10;
|
|
}
|
|
}
|