mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
update 生成交易流水号,生成订单编号
This commit is contained in:
@@ -38,6 +38,11 @@ public class OrderBasicInfo extends BaseEntity {
|
||||
@Excel(name = "订单编号")
|
||||
private String orderCode;
|
||||
|
||||
/**
|
||||
* 交易流水号
|
||||
*/
|
||||
private String transactionCode;
|
||||
|
||||
/**
|
||||
* 订单状态(0-待支付;1-充电中;2-待结算;3-待补缴;4-异常;5-可疑;6-订单完成)
|
||||
*/
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user