From 1f560f1cbf7005af990714a33fd5b9359a0516a9 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期五, 23 四月 2021 10:23:57 +0800
Subject: [PATCH] 优化代码
---
java110-bean/src/main/java/com/java110/vo/api/resourceStore/ApiResourceStoreDataVo.java | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 115 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
old mode 100644
new mode 100755
index 7aa5870..60b6a93
--- 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
@@ -2,6 +2,7 @@
import java.io.Serializable;
import java.util.Date;
+import java.util.List;
public class ApiResourceStoreDataVo implements Serializable {
@@ -11,6 +12,26 @@
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;
+ //瀵瑰鍞环
+ private String outPrice;
+ //鎵嬫満绔槸鍚︽樉绀�(N鍚� Y鏄�)
+ private String showMobile;
+ private Date createTime;
+ private String shName;
+ private String shId;
+ private List<String> fileUrls;
public String getResId() {
return resId;
@@ -60,5 +81,99 @@
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 getOutPrice() {
+ return outPrice;
+ }
+
+ public void setOutPrice(String outPrice) {
+ this.outPrice = outPrice;
+ }
+
+ 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;
+ }
}
--
Gitblit v1.8.0