计算站点订单日报

This commit is contained in:
2023-06-05 16:30:26 +08:00
parent 3677121bd5
commit b22e055748
5 changed files with 108 additions and 3 deletions

View File

@@ -6,6 +6,8 @@ import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.math.BigDecimal;
/**
* 后管订单列表页面
*
@@ -184,4 +186,14 @@ public class OrderListVO {
* 支付机构
*/
private String paymentInstitutions;
/**
* 电费金额
*/
private BigDecimal totalElectricityAmount;
/**
* 服务费金额
*/
private BigDecimal totalServiceAmount;
}