update 生成交易流水号,生成订单编号

This commit is contained in:
2023-03-13 15:27:41 +08:00
parent e89a570d25
commit 2e0b29c673
4 changed files with 34 additions and 11 deletions

View File

@@ -38,6 +38,11 @@ public class OrderBasicInfo extends BaseEntity {
@Excel(name = "订单编号")
private String orderCode;
/**
* 交易流水号
*/
private String transactionCode;
/**
* 订单状态(0-待支付1-充电中2-待结算3-待补缴4-异常5-可疑6-订单完成)
*/

View File

@@ -265,6 +265,9 @@
<if test="orderCode != null">
order_code,
</if>
<if test="transactionCode != null">
transaction_code,
</if>
<if test="orderStatus != null">
order_status,
</if>
@@ -342,6 +345,9 @@
<if test="orderCode != null">
#{orderCode},
</if>
<if test="transactionCode != null">
#{transactionCode},
</if>
<if test="orderStatus != null">
#{orderStatus},
</if>