order_detail表中新增 各时段单价和总金额 字段(共8个)

This commit is contained in:
DESKTOP-D9QDT1P\JS-ZZA
2023-03-08 11:02:57 +08:00
parent e51ac37c00
commit 4d9e81a2df
2 changed files with 101 additions and 14 deletions

View File

@@ -59,6 +59,12 @@ public class OrderDetail extends BaseEntity {
@Excel(name = "服务费总金额", readConverterExp = "各=时段服务费总金额")
private BigDecimal totalServiceAmount;
/**
* 尖单价
*/
@Excel(name = "尖单价")
private BigDecimal sharpPrice;
/**
* 尖时段用电量
*/
@@ -77,6 +83,18 @@ public class OrderDetail extends BaseEntity {
@Excel(name = "尖时段服务费单价")
private BigDecimal sharpServicePrice;
/**
* 尖金额
*/
@Excel(name = "尖金额")
private BigDecimal sharpAmount;
/**
* 峰单价
*/
@Excel(name = "峰单价")
private BigDecimal peakPrice;
/**
* 峰时段用电量
*/
@@ -95,6 +113,18 @@ public class OrderDetail extends BaseEntity {
@Excel(name = "峰时段服务费单价")
private BigDecimal peakServicePrice;
/**
* 峰金额
*/
@Excel(name = "峰金额")
private BigDecimal peakAmount;
/***
* 平单价
*/
@Excel(name = "平单价")
private BigDecimal flatPrice;
/**
* 平时段用电量
*/
@@ -113,6 +143,18 @@ public class OrderDetail extends BaseEntity {
@Excel(name = "平时段服务费单价")
private BigDecimal flatServicePrice;
/**
* 平金额
*/
@Excel(name = "平金额")
private BigDecimal flatAmount;
/**
* 谷单价
*/
@Excel(name = "谷单价")
private BigDecimal valleyPrice;
/**
* 谷时段用电量
*/
@@ -131,6 +173,12 @@ public class OrderDetail extends BaseEntity {
@Excel(name = "谷时段服务费单价")
private BigDecimal valleyServicePrice;
/**
* 谷金额
*/
@Excel(name = "谷金额")
private BigDecimal valleyAmount;
/**
* 删除标识0-正常1-删除)
*/