充电桩报文记录表,添加交易流水号字段

This commit is contained in:
bl\GQS02
2025-11-06 15:32:45 +08:00
parent 5c5f8c565c
commit 66ba4ce4a3
18 changed files with 188 additions and 18 deletions

View File

@@ -6,6 +6,7 @@
<!--@Table pile_msg_record-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="pile_sn" jdbcType="VARCHAR" property="pileSn" />
<result column="transaction_code" jdbcType="VARCHAR" property="transactionCode" />
<result column="frame_type" jdbcType="VARCHAR" property="frameType" />
<result column="connector_code" jdbcType="VARCHAR" property="connectorCode" />
<result column="pile_connector_code" jdbcType="VARCHAR" property="pileConnectorCode" />
@@ -35,6 +36,9 @@
<if test="pileSn != null and pileSn != ''">
pile_sn,
</if>
<if test="transactionCode != null and transactionCode != ''">
transaction_code,
</if>
<if test="frameType != null and frameType != ''">
frame_type,
</if>
@@ -61,6 +65,9 @@
<if test="pileSn != null and pileSn != ''">
#{pileSn,jdbcType=VARCHAR},
</if>
<if test="transactionCode != null and transactionCode != ''">
#{transactionCode,jdbcType=VARCHAR},
</if>
<if test="frameType != null and frameType != ''">
#{frameType,jdbcType=VARCHAR},
</if>