From 414b0e3a1f2c6749c0c663a9a8b529cedda00ae2 Mon Sep 17 00:00:00 2001 From: charging-kuafuai Date: Sun, 5 Nov 2023 15:13:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BE=9B=E5=BA=94=E5=95=86=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E7=AE=A1=E7=90=86=EF=BC=8C=E6=96=B0=E5=A2=9E=E4=BE=9B=E5=BA=94?= =?UTF-8?q?=E5=95=86=E4=BF=A1=E6=81=AF=EF=BC=8C=E4=B8=BB=E8=A6=81=E5=8C=85?= =?UTF-8?q?=E6=8B=AC=EF=BC=9A=E4=BA=A7=E5=93=81=E5=9E=8B=E5=8F=B7=EF=BC=8C?= =?UTF-8?q?=E4=BA=A4=E4=BB=98=E6=97=B6=E9=97=B4=EF=BC=8C=E4=BA=A7=E5=93=81?= =?UTF-8?q?=E4=BB=B7=E6=A0=BC=EF=BC=8C=E5=8F=AF=E4=BA=A4=E4=BB=98=E6=95=B0?= =?UTF-8?q?=E9=87=8F=EF=BC=8C=E4=BA=A4=E6=98=93=E5=AF=B9=E6=89=8B=E6=96=B9?= =?UTF-8?q?=EF=BC=8C=E9=A2=84=E4=BB=98=E6=AC=BE=E6=AF=94=E4=BE=8B=E7=AD=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../aiassistant/model/SupplierProduct.java | 52 ++----------------- 1 file changed, 3 insertions(+), 49 deletions(-) diff --git a/src/main/java/com/aiassistant/model/SupplierProduct.java b/src/main/java/com/aiassistant/model/SupplierProduct.java index 71ab183..2448cb5 100644 --- a/src/main/java/com/aiassistant/model/SupplierProduct.java +++ b/src/main/java/com/aiassistant/model/SupplierProduct.java @@ -1,60 +1,14 @@ package com.aiassistant.model; import java.util.Date; +import lombok.Data; +@Data public class SupplierProduct { private String productModel; - private Date deliveryTime; + private String deliveryTime; private Double productPrice; private Integer deliverableQuantity; private String tradingCounterparty; private Double advancePaymentRatio; - - public String getProductModel() { - return productModel; - } - - public void setProductModel(String productModel) { - this.productModel = productModel; - } - - public Date getDeliveryTime() { - return deliveryTime; - } - - public void setDeliveryTime(Date deliveryTime) { - this.deliveryTime = deliveryTime; - } - - public Double getProductPrice() { - return productPrice; - } - - public void setProductPrice(Double productPrice) { - this.productPrice = productPrice; - } - - public Integer getDeliverableQuantity() { - return deliverableQuantity; - } - - public void setDeliverableQuantity(Integer deliverableQuantity) { - this.deliverableQuantity = deliverableQuantity; - } - - public String getTradingCounterparty() { - return tradingCounterparty; - } - - public void setTradingCounterparty(String tradingCounterparty) { - this.tradingCounterparty = tradingCounterparty; - } - - public Double getAdvancePaymentRatio() { - return advancePaymentRatio; - } - - public void setAdvancePaymentRatio(Double advancePaymentRatio) { - this.advancePaymentRatio = advancePaymentRatio; - } }