package com.nq.pojo.reponse;
|
|
import com.github.pagehelper.PageInfo;
|
import com.nq.pojo.Stock;
|
|
import java.util.List;
|
|
public class RPageInfo extends PageInfo {
|
|
private String stockType;
|
|
|
public String getStockType() {
|
return stockType;
|
}
|
|
public void setStockType(String stockType) {
|
this.stockType = stockType;
|
}
|
}
|