From 33032d320cb75854def7391026b0401f1bfb8360 Mon Sep 17 00:00:00 2001 From: 黎星凯 <13949086503@163.com> Date: 星期六, 11 五月 2024 17:26:02 +0800 Subject: [PATCH] 20240511修改: 分发单优化, 分类,物品,分发单明细,采购单明细数据导入 --- consum-model-pojo/src/main/java/com/consum/model/po/DepFormBackGoods.java | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 44 insertions(+), 0 deletions(-) diff --git a/consum-model-pojo/src/main/java/com/consum/model/po/DepFormBackGoods.java b/consum-model-pojo/src/main/java/com/consum/model/po/DepFormBackGoods.java index 1e998cb..54c3dcd 100644 --- a/consum-model-pojo/src/main/java/com/consum/model/po/DepFormBackGoods.java +++ b/consum-model-pojo/src/main/java/com/consum/model/po/DepFormBackGoods.java @@ -44,6 +44,14 @@ @JsonIgnore protected boolean isset_endCount = false; + private Long depFormLendingId = null; + @JsonIgnore + protected boolean isset_depFormLendingId = false; + + private Long warehouseId = null; + @JsonIgnore + protected boolean isset_warehouseId = false; + /** * 榛樿鏋勯�犲嚱鏁� */ @@ -163,6 +171,34 @@ return this.endCount == null; } + public Long getDepFormLendingId() { + return this.depFormLendingId; + } + + public void setDepFormLendingId(Long depFormLendingId) { + this.depFormLendingId = depFormLendingId; + this.isset_depFormLendingId = true; + } + + @JsonIgnore + public boolean isEmptyDepFormLendingId() { + 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() 鏂规硶 */ @@ -176,6 +212,8 @@ .append("initCount=").append(this.initCount) .append("depFormLendingGoodsId=").append(this.depFormLendingGoodsId) .append("endCount=").append(this.endCount) + .append("depFormLendingId=").append(this.depFormLendingId) + .append("warehouseId=").append(this.warehouseId) .toString(); } @@ -211,6 +249,12 @@ if (this.isset_endCount) { dep_form_back_goods.setEndCount(this.getEndCount()); } + if (this.isset_depFormLendingId) { + dep_form_back_goods.setDepFormLendingId(this.getDepFormLendingId()); + } + if (this.isset_warehouseId) { + dep_form_back_goods.setWarehouseId(this.getWarehouseId()); + } return dep_form_back_goods; } } -- Gitblit v1.9.1