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/LWhProcureModel.java | 69 ++++++++++++++++++++++++++++------ 1 files changed, 57 insertions(+), 12 deletions(-) diff --git a/consum-model-pojo/src/main/java/com/consum/model/po/LWhProcureModel.java b/consum-model-pojo/src/main/java/com/consum/model/po/LWhProcureModel.java index 91e9641..c09f0ce 100644 --- a/consum-model-pojo/src/main/java/com/consum/model/po/LWhProcureModel.java +++ b/consum-model-pojo/src/main/java/com/consum/model/po/LWhProcureModel.java @@ -6,7 +6,8 @@ import com.walker.jdbc.BasePo; /** - * 琛ㄥ悕:L_WH_PROCURE_MODEL * + * 琛ㄥ悕:L_WH_PROCURE_MODEL + * * @author genrator */ @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY) @@ -55,6 +56,14 @@ private String supplier = null; @JsonIgnore protected boolean isset_supplier = false; + + private Long totalAmount; + @JsonIgnore + protected boolean isset_totalAmount = false; + + private Integer useCount = null; + @JsonIgnore + protected boolean isset_useCount = false; /** * 榛樿鏋勯�犲嚱鏁� @@ -217,6 +226,34 @@ return this.supplier == null || this.supplier.length() == 0; } + public Long getTotalAmount() { + return this.totalAmount; + } + + public void setTotalAmount(Long totalAmount) { + this.totalAmount = totalAmount; + this.isset_totalAmount = true; + } + + @JsonIgnore + public boolean isEmptyTotalAmount() { + return this.totalAmount == null; + } + + public Integer getUseCount() { + return this.useCount; + } + + public void setUseCount(Integer useCount) { + this.useCount = useCount; + this.isset_useCount = true; + } + + @JsonIgnore + public boolean isEmptyUseCount() { + return this.useCount == null; + } + /** * 閲嶅啓 toString() 鏂规硶 */ @@ -233,6 +270,8 @@ .append("counts=").append(this.counts) .append("worehouseCount=").append(this.worehouseCount) .append("supplier=").append(this.supplier) + .append("totalAmount=").append(this.totalAmount) + .append("useCount=").append(this.useCount) .toString(); } @@ -240,42 +279,48 @@ * 鍏嬮殕 */ public LWhProcureModel $clone() { - LWhProcureModel l_wh_procure_model = new LWhProcureModel(); +LWhProcureModel l_wh_procure_model = new LWhProcureModel(); // 鏁版嵁搴撳悕绉� //l_wh_procure_model.setDatabaseName_(this.getDatabaseName_()); // 涓婚敭 if (this.isset_id) { - l_wh_procure_model.setId(this.getId()); +l_wh_procure_model.setId(this.getId()); } // 鏅�氬睘鎬� if (this.isset_fromProcureGoodsId) { - l_wh_procure_model.setFromProcureGoodsId(this.getFromProcureGoodsId()); +l_wh_procure_model.setFromProcureGoodsId(this.getFromProcureGoodsId()); } if (this.isset_businessType) { - l_wh_procure_model.setBusinessType(this.getBusinessType()); +l_wh_procure_model.setBusinessType(this.getBusinessType()); } if (this.isset_businessId) { - l_wh_procure_model.setBusinessId(this.getBusinessId()); +l_wh_procure_model.setBusinessId(this.getBusinessId()); } if (this.isset_baseGoodsModelsId) { - l_wh_procure_model.setBaseGoodsModelsId(this.getBaseGoodsModelsId()); +l_wh_procure_model.setBaseGoodsModelsId(this.getBaseGoodsModelsId()); } if (this.isset_baseGoodsModelsName) { - l_wh_procure_model.setBaseGoodsModelsName(this.getBaseGoodsModelsName()); +l_wh_procure_model.setBaseGoodsModelsName(this.getBaseGoodsModelsName()); } if (this.isset_price) { - l_wh_procure_model.setPrice(this.getPrice()); +l_wh_procure_model.setPrice(this.getPrice()); } if (this.isset_counts) { - l_wh_procure_model.setCounts(this.getCounts()); +l_wh_procure_model.setCounts(this.getCounts()); } if (this.isset_worehouseCount) { - l_wh_procure_model.setWorehouseCount(this.getWorehouseCount()); +l_wh_procure_model.setWorehouseCount(this.getWorehouseCount()); } if (this.isset_supplier) { - l_wh_procure_model.setSupplier(this.getSupplier()); +l_wh_procure_model.setSupplier(this.getSupplier()); + } + if (this.isset_totalAmount) { +l_wh_procure_model.setTotalAmount(this.getTotalAmount()); + } + if (this.isset_useCount) { +l_wh_procure_model.setUseCount(this.getUseCount()); } return l_wh_procure_model; } -- Gitblit v1.9.1