From 3835848b28f3cf605aa1fbda443024ee11740493 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期一, 10 五月 2021 11:54:14 +0800
Subject: [PATCH] 优化代码
---
java110-bean/src/main/java/com/java110/vo/api/resourceStore/ApiResourceStoreDataVo.java | 136 +++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 136 insertions(+), 0 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/vo/api/resourceStore/ApiResourceStoreDataVo.java b/java110-bean/src/main/java/com/java110/vo/api/resourceStore/ApiResourceStoreDataVo.java
index 7aa5870..d220dc8 100755
--- a/java110-bean/src/main/java/com/java110/vo/api/resourceStore/ApiResourceStoreDataVo.java
+++ b/java110-bean/src/main/java/com/java110/vo/api/resourceStore/ApiResourceStoreDataVo.java
@@ -1,7 +1,10 @@
package com.java110.vo.api.resourceStore;
+import com.java110.dto.resourceSupplier.ResourceSupplierDto;
+
import java.io.Serializable;
import java.util.Date;
+import java.util.List;
public class ApiResourceStoreDataVo implements Serializable {
@@ -11,6 +14,28 @@
private String price;
private String stock;
private String description;
+ //鐗╁搧绫诲瀷
+ private String goodsType;
+ //鐗╁搧绫诲瀷鍚嶇О
+ private String goodsTypeName;
+ //鍗曚綅
+ private String unitCode;
+ //澶囨敞
+ private String remark;
+ //瀵瑰鍞环鏈�浣庝环鏍�
+ private String outLowPrice;
+ //瀵瑰鏀堕泦鏈�楂樹环鏍�
+ private String outHighPrice;
+ //鎵嬫満绔槸鍚︽樉绀�(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;
@@ -60,5 +85,116 @@
this.description = description;
}
+ public String getGoodsType() {
+ return goodsType;
+ }
+ public void setGoodsType(String goodsType) {
+ this.goodsType = goodsType;
+ }
+
+ public String getUnitCode() {
+ return unitCode;
+ }
+
+ public void setUnitCode(String unitCode) {
+ this.unitCode = unitCode;
+ }
+
+ public String getRemark() {
+ return remark;
+ }
+
+ public void setRemark(String remark) {
+ this.remark = remark;
+ }
+
+ public String getOutLowPrice() {
+ return outLowPrice;
+ }
+
+ public void setOutLowPrice(String outLowPrice) {
+ this.outLowPrice = outLowPrice;
+ }
+
+ public String getOutHighPrice() {
+ return outHighPrice;
+ }
+
+ public void setOutHighPrice(String outHighPrice) {
+ this.outHighPrice = outHighPrice;
+ }
+
+
+ public String getShowMobile() {
+ return showMobile;
+ }
+
+ public void setShowMobile(String showMobile) {
+ this.showMobile = showMobile;
+ }
+
+ public Date getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(Date createTime) {
+ this.createTime = createTime;
+ }
+
+ public String getGoodsTypeName() {
+ return goodsTypeName;
+ }
+
+ public void setGoodsTypeName(String goodsTypeName) {
+ this.goodsTypeName = goodsTypeName;
+ }
+
+ public List<String> getFileUrls() {
+ return fileUrls;
+ }
+
+ 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;
+ }
}
--
Gitblit v1.8.0