java110
2023-03-29 0b04f664887c73e90bf684a4e69c0fdbfe26349d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.java110.vo.api.resourceStore;
 
import com.java110.vo.MorePageVo;
 
import java.io.Serializable;
import java.util.List;
 
public class ApiResourceStoreVo extends MorePageVo implements Serializable {
    List<ApiResourceStoreDataVo> resourceStores;
    private String subTotal;
    private String totalPrice;
 
 
    public List<ApiResourceStoreDataVo> getResourceStores() {
        return resourceStores;
    }
 
    public void setResourceStores(List<ApiResourceStoreDataVo> resourceStores) {
        this.resourceStores = resourceStores;
    }
 
    public String getSubTotal() {
        return subTotal;
    }
 
    public void setSubTotal(String subTotal) {
        this.subTotal = subTotal;
    }
 
    public String getTotalPrice() {
        return totalPrice;
    }
 
    public void setTotalPrice(String totalPrice) {
        this.totalPrice = totalPrice;
    }
}