mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-14 02:58:09 +08:00
订单详情表加字段
This commit is contained in:
@@ -25,6 +25,16 @@ public class OrderDetail {
|
|||||||
*/
|
*/
|
||||||
private String orderCode;
|
private String orderCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 电表开始值
|
||||||
|
*/
|
||||||
|
private String ammeterTotalStart;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 电表结束值
|
||||||
|
*/
|
||||||
|
private String ammeterTotalEnd;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 总用电量
|
* 总用电量
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -1808,10 +1808,14 @@
|
|||||||
<resultMap id="OrderDetailResult" type="com.jsowell.pile.domain.OrderDetail">
|
<resultMap id="OrderDetailResult" type="com.jsowell.pile.domain.OrderDetail">
|
||||||
<result column="id" property="id"/>
|
<result column="id" property="id"/>
|
||||||
<result column="order_code" property="orderCode"/>
|
<result column="order_code" property="orderCode"/>
|
||||||
|
<result column="ammeter_total_start" property="ammeterTotalStart"/>
|
||||||
|
<result column="ammeter_total_end" property="ammeterTotalEnd"/>
|
||||||
<result column="total_used_electricity" property="totalUsedElectricity"/>
|
<result column="total_used_electricity" property="totalUsedElectricity"/>
|
||||||
<result column="total_order_amount" property="totalOrderAmount"/>
|
<result column="total_order_amount" property="totalOrderAmount"/>
|
||||||
<result column="total_electricity_amount" property="totalElectricityAmount"/>
|
<result column="total_electricity_amount" property="totalElectricityAmount"/>
|
||||||
|
<result column="discount_electricity_amount" property="discountElectricityAmount"/>
|
||||||
<result column="total_service_amount" property="totalServiceAmount"/>
|
<result column="total_service_amount" property="totalServiceAmount"/>
|
||||||
|
<result column="discount_service_amount" property="discountServiceAmount"/>
|
||||||
<result column="sharp_price" property="sharpPrice"/>
|
<result column="sharp_price" property="sharpPrice"/>
|
||||||
<result column="sharp_used_electricity" property="sharpUsedElectricity"/>
|
<result column="sharp_used_electricity" property="sharpUsedElectricity"/>
|
||||||
<result column="sharp_electricity_price" property="sharpElectricityPrice"/>
|
<result column="sharp_electricity_price" property="sharpElectricityPrice"/>
|
||||||
@@ -1848,10 +1852,14 @@
|
|||||||
<sql id="Detail_Base_Column_List">
|
<sql id="Detail_Base_Column_List">
|
||||||
id,
|
id,
|
||||||
order_code,
|
order_code,
|
||||||
|
ammeter_total_start,
|
||||||
|
ammeter_total_end,
|
||||||
total_used_electricity,
|
total_used_electricity,
|
||||||
total_order_amount,
|
total_order_amount,
|
||||||
total_electricity_amount,
|
total_electricity_amount,
|
||||||
|
discount_electricity_amount,
|
||||||
total_service_amount,
|
total_service_amount,
|
||||||
|
discount_service_amount,
|
||||||
sharp_price,
|
sharp_price,
|
||||||
sharp_used_electricity,
|
sharp_used_electricity,
|
||||||
sharp_electricity_price,
|
sharp_electricity_price,
|
||||||
|
|||||||
Reference in New Issue
Block a user