diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/domain/OrderDetail.java b/jsowell-pile/src/main/java/com/jsowell/pile/domain/OrderDetail.java index a4134402c..598ee8476 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/domain/OrderDetail.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/domain/OrderDetail.java @@ -182,158 +182,6 @@ public class OrderDetail extends BaseEntity { */ private String delFlag; - public void setId(Integer id) { - this.id = id; - } - - public Integer getId() { - return id; - } - - public void setOrderCode(String orderCode) { - this.orderCode = orderCode; - } - - public String getOrderCode() { - return orderCode; - } - - public void setTotalUsedElectricity(BigDecimal totalUsedElectricity) { - this.totalUsedElectricity = totalUsedElectricity; - } - - public BigDecimal getTotalUsedElectricity() { - return totalUsedElectricity; - } - - public void setTotalOrderAmount(BigDecimal totalOrderAmount) { - this.totalOrderAmount = totalOrderAmount; - } - - public BigDecimal getTotalOrderAmount() { - return totalOrderAmount; - } - - public void setTotalElectricityAmount(BigDecimal totalElectricityAmount) { - this.totalElectricityAmount = totalElectricityAmount; - } - - public BigDecimal getTotalElectricityAmount() { - return totalElectricityAmount; - } - - public void setTotalServiceAmount(BigDecimal totalServiceAmount) { - this.totalServiceAmount = totalServiceAmount; - } - - public BigDecimal getTotalServiceAmount() { - return totalServiceAmount; - } - - public void setSharpUsedElectricity(BigDecimal sharpUsedElectricity) { - this.sharpUsedElectricity = sharpUsedElectricity; - } - - public BigDecimal getSharpUsedElectricity() { - return sharpUsedElectricity; - } - - public void setSharpElectricityPrice(BigDecimal sharpElectricityPrice) { - this.sharpElectricityPrice = sharpElectricityPrice; - } - - public BigDecimal getSharpElectricityPrice() { - return sharpElectricityPrice; - } - - public void setSharpServicePrice(BigDecimal sharpServicePrice) { - this.sharpServicePrice = sharpServicePrice; - } - - public BigDecimal getSharpServicePrice() { - return sharpServicePrice; - } - - public void setPeakUsedElectricity(BigDecimal peakUsedElectricity) { - this.peakUsedElectricity = peakUsedElectricity; - } - - public BigDecimal getPeakUsedElectricity() { - return peakUsedElectricity; - } - - public void setPeakElectricityPrice(BigDecimal peakElectricityPrice) { - this.peakElectricityPrice = peakElectricityPrice; - } - - public BigDecimal getPeakElectricityPrice() { - return peakElectricityPrice; - } - - public void setPeakServicePrice(BigDecimal peakServicePrice) { - this.peakServicePrice = peakServicePrice; - } - - public BigDecimal getPeakServicePrice() { - return peakServicePrice; - } - - public void setFlatUsedElectricity(BigDecimal flatUsedElectricity) { - this.flatUsedElectricity = flatUsedElectricity; - } - - public BigDecimal getFlatUsedElectricity() { - return flatUsedElectricity; - } - - public void setFlatElectricityPrice(BigDecimal flatElectricityPrice) { - this.flatElectricityPrice = flatElectricityPrice; - } - - public BigDecimal getFlatElectricityPrice() { - return flatElectricityPrice; - } - - public void setFlatServicePrice(BigDecimal flatServicePrice) { - this.flatServicePrice = flatServicePrice; - } - - public BigDecimal getFlatServicePrice() { - return flatServicePrice; - } - - public void setValleyUsedElectricity(BigDecimal valleyUsedElectricity) { - this.valleyUsedElectricity = valleyUsedElectricity; - } - - public BigDecimal getValleyUsedElectricity() { - return valleyUsedElectricity; - } - - public void setValleyElectricityPrice(BigDecimal valleyElectricityPrice) { - this.valleyElectricityPrice = valleyElectricityPrice; - } - - public BigDecimal getValleyElectricityPrice() { - return valleyElectricityPrice; - } - - public void setValleyServicePrice(BigDecimal valleyServicePrice) { - this.valleyServicePrice = valleyServicePrice; - } - - public BigDecimal getValleyServicePrice() { - return valleyServicePrice; - } - - public void setDelFlag(String delFlag) { - this.delFlag = delFlag; - } - - public String getDelFlag() { - return delFlag; - } - @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.JSON_STYLE) @@ -342,7 +190,7 @@ public class OrderDetail extends BaseEntity { .append("totalUsedElectricity", getTotalUsedElectricity()) .append("totalOrderAmount", getTotalOrderAmount()) .append("totalElectricityAmount", getTotalElectricityAmount()) - .append("totalServiceAnount", getTotalServiceAmount()) + .append("totalServiceAmount", getTotalServiceAmount()) .append("sharpUsedElectricity", getSharpUsedElectricity()) .append("sharpElectricityPrice", getSharpElectricityPrice()) .append("sharpServicePrice", getSharpServicePrice())