From 78bc8db4ee276ad439f3a6383d683029598dcfb2 Mon Sep 17 00:00:00 2001 From: 杨凯 <398860375@qq.com> Date: 星期四, 19 十月 2023 12:43:52 +0800 Subject: [PATCH] 新增部门出入库 --- consum-model-pojo/src/main/java/com/consum/model/po/DepFormBackModel.java | 30 ++++++++++++++++++++++++++---- 1 files changed, 26 insertions(+), 4 deletions(-) diff --git a/consum-model-pojo/src/main/java/com/consum/model/po/DepFormBackModel.java b/consum-model-pojo/src/main/java/com/consum/model/po/DepFormBackModel.java index c6e81a5..599c1f9 100644 --- a/consum-model-pojo/src/main/java/com/consum/model/po/DepFormBackModel.java +++ b/consum-model-pojo/src/main/java/com/consum/model/po/DepFormBackModel.java @@ -32,7 +32,7 @@ @JsonIgnore protected boolean isset_whGoodsDetailsId = false; - private String usingGoodsHisId = null; + private Long usingGoodsHisId = null; @JsonIgnore protected boolean isset_usingGoodsHisId = false; @@ -55,6 +55,10 @@ private Long depFormLendingId = null; @JsonIgnore protected boolean isset_depFormLendingId = false; + + private Long warehouseId = null; + @JsonIgnore + protected boolean isset_warehouseId = false; /** * 榛樿鏋勯�犲嚱鏁� @@ -133,18 +137,18 @@ return this.whGoodsDetailsId == null; } - public String getUsingGoodsHisId() { + public Long getUsingGoodsHisId() { return this.usingGoodsHisId; } - public void setUsingGoodsHisId(String usingGoodsHisId) { + public void setUsingGoodsHisId(Long usingGoodsHisId) { this.usingGoodsHisId = usingGoodsHisId; this.isset_usingGoodsHisId = true; } @JsonIgnore public boolean isEmptyUsingGoodsHisId() { - return this.usingGoodsHisId == null || this.usingGoodsHisId.length() == 0; + return this.usingGoodsHisId == null; } public Long getWhGoodsId() { @@ -217,6 +221,20 @@ return this.depFormLendingId == null; } + public Long getWarehouseId() { + return this.warehouseId; + } + + public void setWarehouseId(Long warehouseId) { + this.warehouseId = warehouseId; + this.isset_warehouseId = true; + } + + @JsonIgnore + public boolean isEmptyWarehouseId() { + return this.warehouseId == null; + } + /** * 閲嶅啓 toString() 鏂规硶 */ @@ -233,6 +251,7 @@ .append("depFormLendingModelId=").append(this.depFormLendingModelId) .append("depFormLendingGoodsId=").append(this.depFormLendingGoodsId) .append("depFormLendingId=").append(this.depFormLendingId) + .append("warehouseId=").append(this.warehouseId) .toString(); } @@ -277,6 +296,9 @@ if (this.isset_depFormLendingId) { dep_form_back_model.setDepFormLendingId(this.getDepFormLendingId()); } + if (this.isset_warehouseId) { + dep_form_back_model.setWarehouseId(this.getWarehouseId()); + } return dep_form_back_model; } } -- Gitblit v1.9.1