You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.4 KiB
Java
89 lines
2.4 KiB
Java
|
2 weeks ago
|
package com.sztzjy.linkCommerce.entity.dto;
|
||
|
|
|
||
|
|
import java.math.BigDecimal;
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
public class HardwareCostStepThreeValidationResult {
|
||
|
|
private boolean valid;
|
||
|
|
private String message;
|
||
|
|
private List<HardwareCostStepThreeItem> items;
|
||
|
|
private BigDecimal smallBatchManufacturingCost;
|
||
|
|
private BigDecimal largeBatchManufacturingCost;
|
||
|
|
private BigDecimal smallBatchBomCost;
|
||
|
|
private BigDecimal largeBatchBomCost;
|
||
|
|
private BigDecimal smallBatchUnitTotalCost;
|
||
|
|
private BigDecimal largeBatchUnitTotalCost;
|
||
|
|
|
||
|
|
public boolean isValid() {
|
||
|
|
return valid;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setValid(boolean valid) {
|
||
|
|
this.valid = valid;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getMessage() {
|
||
|
|
return message;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setMessage(String message) {
|
||
|
|
this.message = message;
|
||
|
|
}
|
||
|
|
|
||
|
|
public List<HardwareCostStepThreeItem> getItems() {
|
||
|
|
return items;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setItems(List<HardwareCostStepThreeItem> items) {
|
||
|
|
this.items = items;
|
||
|
|
}
|
||
|
|
|
||
|
|
public BigDecimal getSmallBatchManufacturingCost() {
|
||
|
|
return smallBatchManufacturingCost;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSmallBatchManufacturingCost(BigDecimal smallBatchManufacturingCost) {
|
||
|
|
this.smallBatchManufacturingCost = smallBatchManufacturingCost;
|
||
|
|
}
|
||
|
|
|
||
|
|
public BigDecimal getLargeBatchManufacturingCost() {
|
||
|
|
return largeBatchManufacturingCost;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setLargeBatchManufacturingCost(BigDecimal largeBatchManufacturingCost) {
|
||
|
|
this.largeBatchManufacturingCost = largeBatchManufacturingCost;
|
||
|
|
}
|
||
|
|
|
||
|
|
public BigDecimal getSmallBatchBomCost() {
|
||
|
|
return smallBatchBomCost;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSmallBatchBomCost(BigDecimal smallBatchBomCost) {
|
||
|
|
this.smallBatchBomCost = smallBatchBomCost;
|
||
|
|
}
|
||
|
|
|
||
|
|
public BigDecimal getLargeBatchBomCost() {
|
||
|
|
return largeBatchBomCost;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setLargeBatchBomCost(BigDecimal largeBatchBomCost) {
|
||
|
|
this.largeBatchBomCost = largeBatchBomCost;
|
||
|
|
}
|
||
|
|
|
||
|
|
public BigDecimal getSmallBatchUnitTotalCost() {
|
||
|
|
return smallBatchUnitTotalCost;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSmallBatchUnitTotalCost(BigDecimal smallBatchUnitTotalCost) {
|
||
|
|
this.smallBatchUnitTotalCost = smallBatchUnitTotalCost;
|
||
|
|
}
|
||
|
|
|
||
|
|
public BigDecimal getLargeBatchUnitTotalCost() {
|
||
|
|
return largeBatchUnitTotalCost;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setLargeBatchUnitTotalCost(BigDecimal largeBatchUnitTotalCost) {
|
||
|
|
this.largeBatchUnitTotalCost = largeBatchUnitTotalCost;
|
||
|
|
}
|
||
|
|
}
|