1
zj
2025-08-06 92792c5583fd0e31a8da671d5dec357b82d8f0a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
    }
}