|
|
|
|
@ -36,6 +36,12 @@ public class EquSparepartsInOut extends BaseEntity {
|
|
|
|
|
@Excel(name = "数量")
|
|
|
|
|
private BigDecimal amount;
|
|
|
|
|
|
|
|
|
|
@Excel(name = "单价")
|
|
|
|
|
private BigDecimal unitPrice;
|
|
|
|
|
|
|
|
|
|
@Excel(name = "总价")
|
|
|
|
|
private BigDecimal allPrice;
|
|
|
|
|
|
|
|
|
|
@Excel(name = "备用1")
|
|
|
|
|
private String attr1;
|
|
|
|
|
|
|
|
|
|
@ -180,6 +186,22 @@ public class EquSparepartsInOut extends BaseEntity {
|
|
|
|
|
return storageId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getUnitPrice() {
|
|
|
|
|
return unitPrice;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setUnitPrice(BigDecimal unitPrice) {
|
|
|
|
|
this.unitPrice = unitPrice;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getAllPrice() {
|
|
|
|
|
return allPrice;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setAllPrice(BigDecimal allPrice) {
|
|
|
|
|
this.allPrice = allPrice;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
|
|