From eba78ba8fec77a2781444d27098a5ea78512635b Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期六, 12 六月 2021 00:35:12 +0800
Subject: [PATCH] 加入报表工鞥呢
---
java110-bean/src/main/java/com/java110/dto/userStorehouse/UserStorehouseDto.java | 110 +++++++++++++++++++++++++++++++++++++++++++++---------
1 files changed, 91 insertions(+), 19 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/userStorehouse/UserStorehouseDto.java b/java110-bean/src/main/java/com/java110/dto/userStorehouse/UserStorehouseDto.java
index bb1656c..16f6a0a 100644
--- a/java110-bean/src/main/java/com/java110/dto/userStorehouse/UserStorehouseDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/userStorehouse/UserStorehouseDto.java
@@ -1,6 +1,7 @@
package com.java110.dto.userStorehouse;
import com.java110.dto.PageDto;
+
import java.io.Serializable;
import java.util.Date;
@@ -15,55 +16,70 @@
public class UserStorehouseDto extends PageDto implements Serializable {
private String resName;
-private String storeId;
-private String stock;
-private String resId;
-private String userId;
-private String usId;
-
+ private String storeId;
+ private String stock;
+ private String resId;
+ private String userId;
+ private String usId;
+ private String resCode;
+ private String rstId;
+ private String outLowPrice;
+ private String outHighPrice;
+ private String rstName;
+ private String specName;
+ private String rssId;
private Date createTime;
private String statusCd = "0";
-
public String getResName() {
return resName;
}
-public void setResName(String resName) {
+
+ public void setResName(String resName) {
this.resName = resName;
}
-public String getStoreId() {
+
+ public String getStoreId() {
return storeId;
}
-public void setStoreId(String storeId) {
+
+ public void setStoreId(String storeId) {
this.storeId = storeId;
}
-public String getStock() {
+
+ public String getStock() {
return stock;
}
-public void setStock(String stock) {
+
+ public void setStock(String stock) {
this.stock = stock;
}
-public String getResId() {
+
+ public String getResId() {
return resId;
}
-public void setResId(String resId) {
+
+ public void setResId(String resId) {
this.resId = resId;
}
-public String getUserId() {
+
+ public String getUserId() {
return userId;
}
-public void setUserId(String userId) {
+
+ public void setUserId(String userId) {
this.userId = userId;
}
-public String getUsId() {
+
+ public String getUsId() {
return usId;
}
-public void setUsId(String usId) {
+
+ public void setUsId(String usId) {
this.usId = usId;
}
-
public Date getCreateTime() {
return createTime;
@@ -80,4 +96,60 @@
public void setStatusCd(String statusCd) {
this.statusCd = statusCd;
}
+
+ public String getResCode() {
+ return resCode;
+ }
+
+ public void setResCode(String resCode) {
+ this.resCode = resCode;
+ }
+
+ 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 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 getSpecName() {
+ return specName;
+ }
+
+ public void setSpecName(String specName) {
+ this.specName = specName;
+ }
+
+ public String getRssId() {
+ return rssId;
+ }
+
+ public void setRssId(String rssId) {
+ this.rssId = rssId;
+ }
}
--
Gitblit v1.8.0