mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
order_detail表中新增 各时段单价和总金额 字段(共8个)
This commit is contained in:
@@ -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-删除)
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user