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 @@