From e57e32fc43da31917912eebb4e47d4e50df1a9e9 Mon Sep 17 00:00:00 2001
From: shiyj1101 <1098226878@qq.com>
Date: 星期四, 05 八月 2021 22:56:15 +0800
Subject: [PATCH] 完善格式化功能
---
java110-bean/src/main/java/com/java110/vo/api/resourceStore/ApiResourceStoreDataVo.java | 231 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 231 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..579a384 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,16 +1,57 @@
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 {
private String resId;
private String resName;
+ private String rstId;
+ private String rstName;
private String resCode;
private String price;
+ private String shType;
+ //搴撳瓨鏁�
private String stock;
private String description;
+ //鍗曚綅
+ private String unitCode;
+ private String unitCodeName;
+ //澶囨敞
+ 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;
+ //瑙勬牸id
+ private String rssId;
+ //瑙勬牸鍚嶇О
+ private String rssName;
+ //鐗╁搧鎬讳环(澶ц)
+ private String highTotalPrice;
+ //鐗╁搧鎬讳环(灏忚)
+ private String subTotalPrice;
+ //鏈�灏忚閲忓崟浣�
+ private String miniUnitCode;
+ private String miniUnitCodeName;
+ //鏈�灏忚閲忓崟浣嶆暟閲�
+ private String miniUnitStock;
+ //鏈�灏忚閲忔�绘暟
+ private String miniStock;
public String getResId() {
return resId;
@@ -60,5 +101,195 @@
this.description = description;
}
+ 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 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;
+ }
+
+ public String getRstId() {
+ return rstId;
+ }
+
+ public void setRstId(String rstId) {
+ this.rstId = rstId;
+ }
+
+ public String getRstName() {
+ return rstName;
+ }
+
+ public void setRstName(String rstName) {
+ this.rstName = rstName;
+ }
+
+ public String getRssId() {
+ return rssId;
+ }
+
+ public void setRssId(String rssId) {
+ this.rssId = rssId;
+ }
+
+ public String getRssName() {
+ return rssName;
+ }
+
+ public void setRssName(String rssName) {
+ this.rssName = rssName;
+ }
+
+ public String getHighTotalPrice() {
+ return highTotalPrice;
+ }
+
+ public void setHighTotalPrice(String highTotalPrice) {
+ this.highTotalPrice = highTotalPrice;
+ }
+
+ public String getSubTotalPrice() {
+ return subTotalPrice;
+ }
+
+ public void setSubTotalPrice(String subTotalPrice) {
+ this.subTotalPrice = subTotalPrice;
+ }
+
+ public String getUnitCodeName() {
+ return unitCodeName;
+ }
+
+ public void setUnitCodeName(String unitCodeName) {
+ this.unitCodeName = unitCodeName;
+ }
+
+ public String getMiniUnitCode() {
+ return miniUnitCode;
+ }
+
+ public void setMiniUnitCode(String miniUnitCode) {
+ this.miniUnitCode = miniUnitCode;
+ }
+
+ public String getMiniUnitCodeName() {
+ return miniUnitCodeName;
+ }
+
+ public void setMiniUnitCodeName(String miniUnitCodeName) {
+ this.miniUnitCodeName = miniUnitCodeName;
+ }
+
+ public String getMiniUnitStock() {
+ return miniUnitStock;
+ }
+
+ public void setMiniUnitStock(String miniUnitStock) {
+ this.miniUnitStock = miniUnitStock;
+ }
+
+ public String getMiniStock() {
+ return miniStock;
+ }
+
+ public void setMiniStock(String miniStock) {
+ this.miniStock = miniStock;
+ }
+
+ public String getShType() {
+ return shType;
+ }
+
+ public void setShType(String shType) {
+ this.shType = shType;
+ }
}
--
Gitblit v1.8.0