-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
供应商信息管理,新增供应商信息,主要包括:产品型号,交付时间,产品价格,可交付数量,交易对手方,预付款比例等
- Loading branch information
1 parent
e18a29f
commit 414b0e3
Showing
1 changed file
with
3 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} | ||
} |