From 9caa54104c12a441db2c2d049404d712537d20a2 Mon Sep 17 00:00:00 2001 From: ruanqi Date: Sun, 25 Dec 2022 22:39:24 +0800 Subject: [PATCH] =?UTF-8?q?0412=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entity/ViewKanbanCODelNotifyData.java | 40 ++++++++++++++++++- .../resources/mapper/board/BoardMapper.xml | 7 ++-- 2 files changed, 43 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/heai/modules/board/entity/ViewKanbanCODelNotifyData.java b/src/main/java/com/heai/modules/board/entity/ViewKanbanCODelNotifyData.java index 49b34c4..6bcbe6b 100644 --- a/src/main/java/com/heai/modules/board/entity/ViewKanbanCODelNotifyData.java +++ b/src/main/java/com/heai/modules/board/entity/ViewKanbanCODelNotifyData.java @@ -47,7 +47,11 @@ public class ViewKanbanCODelNotifyData { @DateTimeFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") private Date planShipDate; - + private String customerPONo; + private String delNotifyNo; + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") + private Date enteredDate; /** * */ @@ -69,6 +73,40 @@ public class ViewKanbanCODelNotifyData { private String operationHk; private String remark; private String abbreviateName; + private String forwarderName; + + public String getForwarderName() { + return forwarderName; + } + + public void setForwarderName(String forwarderName) { + this.forwarderName = forwarderName; + } + + public String getCustomerPONo() { + return customerPONo; + } + + public void setCustomerPONo(String customerPONo) { + this.customerPONo = customerPONo; + } + + public String getDelNotifyNo() { + return delNotifyNo; + } + + public void setDelNotifyNo(String delNotifyNo) { + this.delNotifyNo = delNotifyNo; + } + + public Date getEnteredDate() { + return enteredDate; + } + + public void setEnteredDate(Date enteredDate) { + this.enteredDate = enteredDate; + } + public String getPartSpec() { return partSpec; } diff --git a/src/main/resources/mapper/board/BoardMapper.xml b/src/main/resources/mapper/board/BoardMapper.xml index f1e771b..c4aa962 100644 --- a/src/main/resources/mapper/board/BoardMapper.xml +++ b/src/main/resources/mapper/board/BoardMapper.xml @@ -3,8 +3,9 @@