diff --git a/xhpc-modules/xhpc-common/src/main/java/com/xhpc/common/domain/XhpcTerminal.java b/xhpc-modules/xhpc-common/src/main/java/com/xhpc/common/domain/XhpcTerminal.java index 4cb493e5..a6632b3e 100644 --- a/xhpc-modules/xhpc-common/src/main/java/com/xhpc/common/domain/XhpcTerminal.java +++ b/xhpc-modules/xhpc-common/src/main/java/com/xhpc/common/domain/XhpcTerminal.java @@ -47,6 +47,11 @@ public class XhpcTerminal extends BaseEntity { private Long operatorId; + /** + * 电桩统计数量 + */ + private Integer number; + public Long getOperatorId() { return operatorId; } @@ -170,4 +175,14 @@ public class XhpcTerminal extends BaseEntity { this.rateModelId = rateModelId; } + public Integer getNumber() { + + return number; + } + + public void setNumber(Integer number) { + + this.number = number; + } + } diff --git a/xhpc-modules/xhpc-order/src/main/resources/mapper/XhpcChargeOrderMapper.xml b/xhpc-modules/xhpc-order/src/main/resources/mapper/XhpcChargeOrderMapper.xml index 7e8aed79..709445f0 100644 --- a/xhpc-modules/xhpc-order/src/main/resources/mapper/XhpcChargeOrderMapper.xml +++ b/xhpc-modules/xhpc-order/src/main/resources/mapper/XhpcChargeOrderMapper.xml @@ -397,7 +397,10 @@ update_by, - remark + remark, + + + order_data @@ -450,7 +453,10 @@ #{updateBy}, - #{remark} + #{remark}, + + + #{orderData}