From d32086f60436b9ba02eb38a6b6ee809a5f1da424 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 08 七月 2021 22:16:46 +0800
Subject: [PATCH] 优化相似度查询失败
---
java110-bean/src/main/java/com/java110/dto/userStorehouse/UserStorehouseDto.java | 66 +++++++++++++++++++++++++++++++-
1 files changed, 63 insertions(+), 3 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 f27f5d0..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
@@ -21,12 +21,17 @@
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;
@@ -76,7 +81,6 @@
this.usId = usId;
}
-
public Date getCreateTime() {
return createTime;
}
@@ -92,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