package com.matrix.system.app.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
/**
|
* @author wzy
|
* @date 2020-12-27
|
**/
|
@ApiModel(value = "StoreListDto", description = "库存列表参数接收类")
|
public class StoreListDto extends BasePageDto {
|
|
@ApiModelProperty(value = "查询参数")
|
private String queryKey;
|
|
public String getQueryKey() {
|
return queryKey;
|
}
|
|
public void setQueryKey(String queryKey) {
|
this.queryKey = queryKey;
|
}
|
}
|