终端增加统计桩的数量
This commit is contained in:
parent
f1b70257a5
commit
2d6f6874c8
@ -47,6 +47,11 @@ public class XhpcTerminal extends BaseEntity {
|
|||||||
|
|
||||||
private Long operatorId;
|
private Long operatorId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 电桩统计数量
|
||||||
|
*/
|
||||||
|
private Integer number;
|
||||||
|
|
||||||
public Long getOperatorId() {
|
public Long getOperatorId() {
|
||||||
return operatorId;
|
return operatorId;
|
||||||
}
|
}
|
||||||
@ -170,4 +175,14 @@ public class XhpcTerminal extends BaseEntity {
|
|||||||
this.rateModelId = rateModelId;
|
this.rateModelId = rateModelId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Integer getNumber() {
|
||||||
|
|
||||||
|
return number;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setNumber(Integer number) {
|
||||||
|
|
||||||
|
this.number = number;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -397,7 +397,10 @@
|
|||||||
update_by,
|
update_by,
|
||||||
</if>
|
</if>
|
||||||
<if test="null != remark ">
|
<if test="null != remark ">
|
||||||
remark
|
remark,
|
||||||
|
</if>
|
||||||
|
<if test="null != orderData ">
|
||||||
|
order_data
|
||||||
</if>
|
</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
@ -450,7 +453,10 @@
|
|||||||
#{updateBy},
|
#{updateBy},
|
||||||
</if>
|
</if>
|
||||||
<if test="null != remark ">
|
<if test="null != remark ">
|
||||||
#{remark}
|
#{remark},
|
||||||
|
</if>
|
||||||
|
<if test="null != orderData ">
|
||||||
|
#{orderData}
|
||||||
</if>
|
</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user