From b34b160a7332f94015fc047455b718e303920dc8 Mon Sep 17 00:00:00 2001
From: lilibo <1471506043@qq.com>
Date: 星期三, 22 一月 2025 10:58:23 +0800
Subject: [PATCH] 漏洞修改 升级tomcat版本

---
 consum-model-pojo/src/main/java/com/consum/model/po/BaseGoodsTemplate.java |   90 +++++++++++++++++++++++++++++++++++++++------
 1 files changed, 78 insertions(+), 12 deletions(-)

diff --git a/consum-model-pojo/src/main/java/com/consum/model/po/BaseGoodsTemplate.java b/consum-model-pojo/src/main/java/com/consum/model/po/BaseGoodsTemplate.java
index f857b66..bcf2acd 100644
--- a/consum-model-pojo/src/main/java/com/consum/model/po/BaseGoodsTemplate.java
+++ b/consum-model-pojo/src/main/java/com/consum/model/po/BaseGoodsTemplate.java
@@ -40,6 +40,10 @@
     @JsonIgnore
     protected boolean isset_categoryId = false;
 
+    private String categoryName = null;
+    @JsonIgnore
+    protected boolean isset_categoryName = false;
+
     private Long fAgencyId = null;
     @JsonIgnore
     protected boolean isset_fAgencyId = false;
@@ -72,9 +76,17 @@
     @JsonIgnore
     protected boolean isset_createDate = false;
 
-    private Integer type = null;
+    private Long dTime = null;
     @JsonIgnore
-    protected boolean isset_type = false;
+    protected boolean isset_dTime = false;
+
+    private Long dUserId = null;
+    @JsonIgnore
+    protected boolean isset_dUserId = false;
+
+    private String dUserName = null;
+    @JsonIgnore
+    protected boolean isset_dUserName = false;
 
     /**
      * 榛樿鏋勯�犲嚱鏁�
@@ -179,6 +191,20 @@
     @JsonIgnore
     public boolean isEmptyCategoryId() {
         return this.categoryId == null;
+    }
+
+    public String getCategoryName() {
+        return this.categoryName;
+    }
+
+    public void setCategoryName(String categoryName) {
+        this.categoryName = categoryName;
+        this.isset_categoryName = true;
+    }
+
+    @JsonIgnore
+    public boolean isEmptyCategoryName() {
+        return this.categoryName == null || this.categoryName.length() == 0;
     }
 
     public Long getFAgencyId() {
@@ -293,18 +319,46 @@
         return this.createDate == null;
     }
 
-    public Integer getType() {
-        return this.type;
+    public Long getDTime() {
+        return this.dTime;
     }
 
-    public void setType(Integer type) {
-        this.type = type;
-        this.isset_type = true;
+    public void setDTime(Long dTime) {
+        this.dTime = dTime;
+        this.isset_dTime = true;
     }
 
     @JsonIgnore
-    public boolean isEmptyType() {
-        return this.type == null;
+    public boolean isEmptyDTime() {
+        return this.dTime == null;
+    }
+
+    public Long getDUserId() {
+        return this.dUserId;
+    }
+
+    public void setDUserId(Long dUserId) {
+        this.dUserId = dUserId;
+        this.isset_dUserId = true;
+    }
+
+    @JsonIgnore
+    public boolean isEmptyDUserId() {
+        return this.dUserId == null;
+    }
+
+    public String getDUserName() {
+        return this.dUserName;
+    }
+
+    public void setDUserName(String dUserName) {
+        this.dUserName = dUserName;
+        this.isset_dUserName = true;
+    }
+
+    @JsonIgnore
+    public boolean isEmptyDUserName() {
+        return this.dUserName == null || this.dUserName.length() == 0;
     }
 
     /**
@@ -319,6 +373,7 @@
                 .append("classification=").append(this.classification)
                 .append("states=").append(this.states)
                 .append("categoryId=").append(this.categoryId)
+                .append("categoryName=").append(this.categoryName)
                 .append("fAgencyId=").append(this.fAgencyId)
                 .append("sAgencyId=").append(this.sAgencyId)
                 .append("tAgencyId=").append(this.tAgencyId)
@@ -327,7 +382,9 @@
                 .append("agencyId=").append(this.agencyId)
                 .append("agencyName=").append(this.agencyName)
                 .append("createDate=").append(this.createDate)
-                .append("type=").append(this.type)
+                .append("dTime=").append(this.dTime)
+                .append("dUserId=").append(this.dUserId)
+                .append("dUserName=").append(this.dUserName)
                 .toString();
     }
 
@@ -360,6 +417,9 @@
         if (this.isset_categoryId) {
             base_goods_template.setCategoryId(this.getCategoryId());
         }
+        if (this.isset_categoryName) {
+            base_goods_template.setCategoryName(this.getCategoryName());
+        }
         if (this.isset_fAgencyId) {
             base_goods_template.setFAgencyId(this.getFAgencyId());
         }
@@ -384,8 +444,14 @@
         if (this.isset_createDate) {
             base_goods_template.setCreateDate(this.getCreateDate());
         }
-        if (this.isset_type) {
-            base_goods_template.setType(this.getType());
+        if (this.isset_dTime) {
+            base_goods_template.setDTime(this.getDTime());
+        }
+        if (this.isset_dUserId) {
+            base_goods_template.setDUserId(this.getDUserId());
+        }
+        if (this.isset_dUserName) {
+            base_goods_template.setDUserName(this.getDUserName());
         }
         return base_goods_template;
     }

--
Gitblit v1.9.1