java110
2021-05-10 3835848b28f3cf605aa1fbda443024ee11740493
java110-bean/src/main/java/com/java110/vo/api/resourceStore/ApiResourceStoreDataVo.java
old mode 100644 new mode 100755
@@ -1,5 +1,7 @@
package com.java110.vo.api.resourceStore;
import com.java110.dto.resourceSupplier.ResourceSupplierDto;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
@@ -24,12 +26,16 @@
    private String outLowPrice;
    //对外收集最高价格
    private String outHighPrice;
    //对外售价
    private String outPrice;
    //手机端是否显示(N否 Y是)
    private String showMobile;
    private Date createTime;
    private String shName;
    private String shId;
    private String warningStock;
    private List<String> fileUrls;
    private List<ResourceSupplierDto> resourceSupplierDtos;
    //均价
    private String averagePrice;
    public String getResId() {
        return resId;
@@ -119,13 +125,6 @@
        this.outHighPrice = outHighPrice;
    }
    public String getOutPrice() {
        return outPrice;
    }
    public void setOutPrice(String outPrice) {
        this.outPrice = outPrice;
    }
    public String getShowMobile() {
        return showMobile;
@@ -158,4 +157,44 @@
    public void setFileUrls(List<String> fileUrls) {
        this.fileUrls = fileUrls;
    }
    public String getShName() {
        return shName;
    }
    public void setShName(String shName) {
        this.shName = shName;
    }
    public String getShId() {
        return shId;
    }
    public void setShId(String shId) {
        this.shId = shId;
    }
    public List<ResourceSupplierDto> getResourceSupplierDtos() {
        return resourceSupplierDtos;
    }
    public void setResourceSupplierDtos(List<ResourceSupplierDto> resourceSupplierDtos) {
        this.resourceSupplierDtos = resourceSupplierDtos;
    }
    public String getWarningStock() {
        return warningStock;
    }
    public void setWarningStock(String warningStock) {
        this.warningStock = warningStock;
    }
    public String getAveragePrice() {
        return averagePrice;
    }
    public void setAveragePrice(String averagePrice) {
        this.averagePrice = averagePrice;
    }
}