Browse Source

推荐实体title属性修改为prodTitle

liusw 7 years ago
parent
commit
8f0627eabf
1 changed files with 5 additions and 29 deletions
  1. 5 29
      src/main/java/com/uas/ps/inquiry/model/InquiryRemind.java

+ 5 - 29
src/main/java/com/uas/ps/inquiry/model/InquiryRemind.java

@@ -86,7 +86,7 @@ public class InquiryRemind implements Serializable {
      * 物料名称
      */
     @Column(name = "ir_title")
-    private String title;
+    private String prodTitle;
 
     /**
      * 需求数量
@@ -271,12 +271,12 @@ public class InquiryRemind implements Serializable {
         this.spec = spec;
     }
 
-    public String getTitle() {
-        return title;
+    public String getProdTitle() {
+        return prodTitle;
     }
 
-    public void setTitle(String title) {
-        this.title = title;
+    public void setProdTitle(String prodTitle) {
+        this.prodTitle = prodTitle;
     }
 
     public Double getNeedQty() {
@@ -351,28 +351,4 @@ public class InquiryRemind implements Serializable {
         this.date = date;
     }
 
-    @Override
-    public String toString() {
-        return "InquiryRemind{" +
-                "id=" + id +
-                ", code='" + code + '\'' +
-                ", enName='" + enName + '\'' +
-                ", enUU=" + enUU +
-                ", userName='" + userName + '\'' +
-                ", userTel='" + userTel + '\'' +
-                ", brand='" + brand + '\'' +
-                ", cmpCode='" + cmpCode + '\'' +
-                ", spec='" + spec + '\'' +
-                ", title='" + title + '\'' +
-                ", needQty=" + needQty +
-                ", reDate=" + reDate +
-                ", endDate=" + endDate +
-                ", itemId=" + itemId +
-                ", newId=" + newId +
-                ", status=" + status +
-                ", vendUU=" + vendUU +
-                ", vendUserUU=" + vendUserUU +
-                ", date=" + date +
-                '}';
-    }
 }