mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
update 0x31报文回复不足位数补零
This commit is contained in:
@@ -98,6 +98,12 @@ public class OrderListVO {
|
||||
@Excel(name = "逻辑卡号")
|
||||
private String logicCard;
|
||||
|
||||
/**
|
||||
* vin码
|
||||
*/
|
||||
@Excel(name = "vin码")
|
||||
private String vinCode;
|
||||
|
||||
/**
|
||||
* 启动方式(0-后管启动;1-用户app启动)
|
||||
*/
|
||||
|
||||
@@ -168,6 +168,7 @@
|
||||
t1.pile_sn as pileSn,
|
||||
t1.connector_code as connectorCode,
|
||||
t1.logic_card as logicCard,
|
||||
t1.vin_code as vinCode,
|
||||
t1.start_mode as startMode,
|
||||
t1.pay_mode as payMode,
|
||||
t1.pay_status as payStatus,
|
||||
@@ -316,6 +317,9 @@
|
||||
<if test="logicCard != null">
|
||||
logic_card,
|
||||
</if>
|
||||
<if test="logicCard != null">
|
||||
vin_code,
|
||||
</if>
|
||||
<if test="startMode != null">
|
||||
start_mode,
|
||||
</if>
|
||||
@@ -411,6 +415,9 @@
|
||||
<if test="logicCard != null">
|
||||
#{logicCard},
|
||||
</if>
|
||||
<if test="vinCode != null">
|
||||
#{vinCode,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="startMode != null">
|
||||
#{startMode},
|
||||
</if>
|
||||
@@ -507,6 +514,9 @@
|
||||
<if test="logicCard != null">
|
||||
logic_card = #{logicCard},
|
||||
</if>
|
||||
<if test="vinCode != null">
|
||||
vin_code = #{vinCode},
|
||||
</if>
|
||||
<if test="startMode != null">
|
||||
start_mode = #{startMode},
|
||||
</if>
|
||||
|
||||
Reference in New Issue
Block a user