1.支付渠道--调整

This commit is contained in:
邱贞招 2024-09-15 15:26:33 +08:00
parent 04a03eae69
commit 4afc12d842
12 changed files with 98 additions and 50 deletions

View File

@ -103,8 +103,9 @@ public class CallbackController {
String trxCode = params.get("trxcode"); // 交易类型 String trxCode = params.get("trxcode"); // 交易类型
String outTradeNo = params.get("cusorderid"); // 商户自定义订单号 String outTradeNo = params.get("cusorderid"); // 商户自定义订单号
String trxStatus = params.get("trxstatus"); // 交易结果 String trxStatus = params.get("trxstatus"); // 交易结果
String remark = params.get("remark"); // 附加信息用于判断业务类型 String remark = params.get("trxreserved"); // 附加信息用于判断业务类型
AttachVo attachVo = JSONObject.parseObject(remark,AttachVo.class); AttachVo attachVo = JSONObject.parseObject(remark,AttachVo.class);
log.info("【通联微信支付回调】回调参数--附加信息 : 【{}】",JSON.toJSONString(attachVo));
if (SybTrxStatus.isSuccess(trxStatus) && SybTrxCode.WX_PAY.equalsCode(trxCode)) { if (SybTrxStatus.isSuccess(trxStatus) && SybTrxCode.WX_PAY.equalsCode(trxCode)) {
// 新版支付订单 // 新版支付订单

View File

@ -3,6 +3,7 @@ package com.ruoyi.web.controller.system;
import cn.hutool.core.util.ObjectUtil; import cn.hutool.core.util.ObjectUtil;
import cn.hutool.core.util.StrUtil; import cn.hutool.core.util.StrUtil;
import com.alibaba.fastjson2.JSON; import com.alibaba.fastjson2.JSON;
import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.constant.Constants; import com.ruoyi.common.constant.Constants;
import com.ruoyi.common.constant.HttpStatus; import com.ruoyi.common.constant.HttpStatus;
import com.ruoyi.common.core.domain.AjaxResult; import com.ruoyi.common.core.domain.AjaxResult;
@ -11,6 +12,7 @@ import com.ruoyi.common.core.domain.entity.SysDept;
import com.ruoyi.common.core.domain.entity.SysMenu; import com.ruoyi.common.core.domain.entity.SysMenu;
import com.ruoyi.common.core.domain.entity.SysUser; import com.ruoyi.common.core.domain.entity.SysUser;
import com.ruoyi.common.core.domain.model.LoginBody; import com.ruoyi.common.core.domain.model.LoginBody;
import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.common.utils.SecurityUtils; import com.ruoyi.common.utils.SecurityUtils;
import com.ruoyi.framework.web.service.SysLoginService; import com.ruoyi.framework.web.service.SysLoginService;
import com.ruoyi.framework.web.service.SysPermissionService; import com.ruoyi.framework.web.service.SysPermissionService;
@ -159,6 +161,7 @@ public class SysLoginController
* 微信登录 * 微信登录
*/ */
@PostMapping("/wxlogin") @PostMapping("/wxlogin")
@Log(title = "微信登录", businessType = BusinessType.LOGIN)
public AjaxResult wxlogin(String mobileCode,String jsCode,String areaId) { public AjaxResult wxlogin(String mobileCode,String jsCode,String areaId) {
if(StrUtil.isBlank(areaId)){ if(StrUtil.isBlank(areaId)){
log.info("没有传入areaId参数【areaId={}】",areaId); log.info("没有传入areaId参数【areaId={}】",areaId);

View File

@ -216,4 +216,6 @@ public enum BusinessType
* 0元订单 * 0元订单
*/ */
ZEROORDER, ZEROORDER,
LOGIN,
} }

View File

@ -1,21 +1,14 @@
package com.ruoyi.common.pay; package com.ruoyi.common.pay;
import com.wechat.pay.java.service.payments.model.Transaction;
import lombok.Data; import lombok.Data;
import java.math.BigDecimal; import java.util.Map;
@Data @Data
public class PaymentResult { public class PaymentResult {
private String outTradeNo; // 商户订单号 private Transaction transaction;
private String status;
private String transactionId; // 平台交易ID
private BigDecimal amount; // 交易金额
public PaymentResult(String outTradeNo, String status, String transactionId, BigDecimal amount) { private Map<String, String> result;
this.outTradeNo = outTradeNo;
this.status = status;
this.transactionId = transactionId;
this.amount = amount;
}
} }

View File

@ -45,7 +45,7 @@ public class SybPayService {
"", "",
"", "",
"", "",
"", payable.getAppid(),
"", "",
"", "",
"", "",

View File

@ -34,4 +34,9 @@ public class Payable {
*/ */
private String openid; private String openid;
/**
* appid
*/
private String appid;
} }

View File

@ -61,4 +61,7 @@ public class Channel extends BaseEntity
/** 退款回调地址 */ /** 退款回调地址 */
private String refundNotifyUrl; private String refundNotifyUrl;
/** appid */
private String appid;
} }

View File

@ -246,6 +246,10 @@ public class EtOrder extends BaseEntity
@Excel(name = "是否押金抵扣") @Excel(name = "是否押金抵扣")
private String depositDeduction; private String depositDeduction;
/** 押金订单号 */
@Excel(name = "押金订单号")
private String depositOrderNo;
/** 是否开启押金抵扣0-否1-是 */ /** 是否开启押金抵扣0-否1-是 */
@Excel(name = "是否开启押金抵扣") @Excel(name = "是否开启押金抵扣")
@TableField(exist = false) @TableField(exist = false)

View File

@ -13,6 +13,8 @@ import com.ruoyi.common.core.domain.entity.SysDept;
import com.ruoyi.common.enums.BusinessStatus; import com.ruoyi.common.enums.BusinessStatus;
import com.ruoyi.common.exception.ServiceException; import com.ruoyi.common.exception.ServiceException;
import com.ruoyi.common.pay.PaymentResult; import com.ruoyi.common.pay.PaymentResult;
import com.ruoyi.common.pay.syb.enums.SybTrxStatus;
import com.ruoyi.common.pay.syb.service.SybPayService;
import com.ruoyi.common.utils.CommonUtil; import com.ruoyi.common.utils.CommonUtil;
import com.ruoyi.common.utils.DateUtils; import com.ruoyi.common.utils.DateUtils;
import com.ruoyi.common.utils.PageUtils; import com.ruoyi.common.utils.PageUtils;
@ -25,7 +27,6 @@ import com.ruoyi.system.mapper.*;
import com.ruoyi.system.service.*; import com.ruoyi.system.service.*;
import com.wechat.pay.java.service.payments.jsapi.model.PrepayWithRequestPaymentResponse; import com.wechat.pay.java.service.payments.jsapi.model.PrepayWithRequestPaymentResponse;
import com.wechat.pay.java.service.payments.model.Transaction; import com.wechat.pay.java.service.payments.model.Transaction;
import com.wechat.pay.java.service.refund.model.Refund;
import lombok.SneakyThrows; import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.ObjectUtils; import org.apache.commons.lang3.ObjectUtils;
@ -132,6 +133,9 @@ public class EtOrderServiceImpl implements IEtOrderService
@Autowired @Autowired
private EtChannelService etChannelService; private EtChannelService etChannelService;
@Autowired
private SybPayService sybPayService;
/** /**
* 查询订单 * 查询订单
* *
@ -335,7 +339,13 @@ public class EtOrderServiceImpl implements IEtOrderService
List<EtOrder> etOrders = etOrderMapper.selectEtOrderList(etOrder); List<EtOrder> etOrders = etOrderMapper.selectEtOrderList(etOrder);
//如果查询押金则增加退款记录 //如果查询押金则增加退款记录
etOrders.forEach(etOrder1 -> { etOrders.forEach(etOrder1 -> {
List<EtRefund> refunds = etRefundService.selectEtRefundByOrderNo(etOrder1.getOrderNo()); String orderNo;
if(etOrder1.getDepositDeduction().equals(ServiceConstants.IS_DEPOSIT_DEDUCTION) && etOrder1.getStatus().equals(ServiceConstants.ORDER_STATUS_ORDER_END)){
orderNo = etOrder1.getDepositOrderNo();
}else{
orderNo = etOrder1.getOrderNo();
}
List<EtRefund> refunds = etRefundService.selectEtRefundByOrderNo(orderNo);
if(ObjectUtil.isNotNull(refunds) && refunds.size() > 0){ if(ObjectUtil.isNotNull(refunds) && refunds.size() > 0){
etOrder1.setEtRefund(refunds.get(0)); etOrder1.setEtRefund(refunds.get(0));
etOrder1.setEtRefunds(refunds); etOrder1.setEtRefunds(refunds);
@ -523,28 +533,30 @@ public class EtOrderServiceImpl implements IEtOrderService
if(StrUtil.isNotBlank(order.getOutTradeNo())){ if(StrUtil.isNotBlank(order.getOutTradeNo())){
String outTradeNo = order.getOutTradeNo(); String outTradeNo = order.getOutTradeNo();
log.info("【押金抵扣】订单【{}】,有outTradeNo = 【{}】", order.getOrderNo(),outTradeNo); log.info("【押金抵扣】订单【{}】,有outTradeNo = 【{}】", order.getOrderNo(),outTradeNo);
ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(order.getPayChannel());
// 如果原来有outtradeno去查询一次查询是否支付过 // 如果原来有outtradeno去查询一次查询是否支付过
PaymentResult paymentResult = wxPayService.queryOrderByOutTradeNo(outTradeNo); PaymentResult paymentResult = wxPayService.queryOrderByOutTradeNo(outTradeNo);
try { try {
if (Transaction.TradeStateEnum.SUCCESS.equals(paymentResult.getStatus())) { if (ObjectUtil.isNotNull(paymentResult.getTransaction())) {
// 订单已支付 if (Transaction.TradeStateEnum.SUCCESS.equals(paymentResult.getTransaction().getTradeState())) {
order.setPaid(ServiceConstants.ORDER_PAY_STATUS_PAID); handleSuccess(order);
order.setPayTime(DateUtils.getNowDate());
order.setStatus(ServiceConstants.ORDER_STATUS_ORDER_END);
order.setPayType(ServiceConstants.PAY_TYPE_WX);
order.setMark("主动查询-骑行支付");
int updateEtOrder = etOrderMapper.updateEtOrderByOrderNo(order);
if (updateEtOrder == 0) {
// 抛出自定义异常来标识订单更新失败
throw new ServiceException("押金抵扣失败,更新骑行订单失败");
}
return 1; return 1;
}else{ }else{
ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(order.getPayChannel());
// 没有支付则关闭订单 // 没有支付则关闭订单
boolean b = wxPayService.closeOrder(outTradeNo,channelVO); boolean b = wxPayService.closeOrder(outTradeNo,channelVO);
log.info("【押金抵扣】订单【{}】,有outTradeNo = 【{}】,查询订单未支付,关闭订单:{}", order.getOrderNo(),outTradeNo,b); log.info("【押金抵扣】订单【{}】,有outTradeNo = 【{}】,查询订单未支付,关闭订单:{}", order.getOrderNo(),outTradeNo,b);
} }
}else{
Map<String, String> result = paymentResult.getResult();
if(SybTrxStatus.isSuccess(result.get("trxstatus"))) {
handleSuccess(order);
return 1;
}else{
// 没有支付则关闭订单
sybPayService.closeOrderWx(outTradeNo);
log.info("【押金抵扣】订单【{}】,有outTradeNo = 【{}】,查询订单未支付,关闭订单:{}", order.getOrderNo(),outTradeNo);
}
}
} catch (ServiceException e) { } catch (ServiceException e) {
log.error("异常发生: {}", e.getMessage()); log.error("异常发生: {}", e.getMessage());
return -1; // -1 表示失败 return -1; // -1 表示失败
@ -573,6 +585,7 @@ public class EtOrderServiceImpl implements IEtOrderService
order.setPayType(ServiceConstants.PAY_TYPE_YJ); order.setPayType(ServiceConstants.PAY_TYPE_YJ);
order.setMark(mark); order.setMark(mark);
order.setDepositDeduction(ServiceConstants.IS_DEPOSIT_DEDUCTION); order.setDepositDeduction(ServiceConstants.IS_DEPOSIT_DEDUCTION);
order.setDepositOrderNo(depositOrder.getOrderNo());
int updateEtOrder = etOrderMapper.updateEtOrder(order); int updateEtOrder = etOrderMapper.updateEtOrder(order);
if(updateEtOrder == 0){ if(updateEtOrder == 0){
throw new ServiceException("押金抵扣失败,更新骑行订单失败"); throw new ServiceException("押金抵扣失败,更新骑行订单失败");
@ -613,6 +626,20 @@ public class EtOrderServiceImpl implements IEtOrderService
return 1; return 1;
} }
private void handleSuccess(EtOrder order) {
// 订单已支付
order.setPaid(ServiceConstants.ORDER_PAY_STATUS_PAID);
order.setPayTime(DateUtils.getNowDate());
order.setStatus(ServiceConstants.ORDER_STATUS_ORDER_END);
order.setPayType(ServiceConstants.PAY_TYPE_WX);
order.setMark("主动查询-骑行支付");
int updateEtOrder = etOrderMapper.updateEtOrderByOrderNo(order);
if (updateEtOrder == 0) {
// 抛出自定义异常来标识订单更新失败
throw new ServiceException("押金抵扣失败,更新骑行订单失败");
}
}
/** /**
* 修复押金抵扣 * 修复押金抵扣
* 1. 查询所有押金抵扣的订单 * 1. 查询所有押金抵扣的订单

View File

@ -113,20 +113,24 @@ public class WxPayService implements IWxPayService {
if(ObjectUtil.isNull(sysDept)){ if(ObjectUtil.isNull(sysDept)){
throw new ServiceException("没有运营商:【"+etAreaDept.getDeptId()+""); throw new ServiceException("没有运营商:【"+etAreaDept.getDeptId()+"");
} }
String type = order.getType();
String description = type.equals(ServiceConstants.ORDER_TYPE_RIDING) ? "骑行订单-"+billNo : "押金充值-"+billNo;
String outTradeNo = IdUtils.getOrderNo("wx");
EtOrder order1 = new EtOrder();
order1.setOutTradeNo(outTradeNo);
order1.setOrderId(order.getOrderId());
Long payChannel = sysDept.getPayChannel(); Long payChannel = sysDept.getPayChannel();
if(ObjectUtil.isNull(payChannel)){ if(ObjectUtil.isNull(payChannel)){
throw new ServiceException("运营商【"+sysDept.getDeptName()+"】没有支付渠道"); throw new ServiceException("运营商【"+sysDept.getDeptName()+"】没有支付渠道");
} }
ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(payChannel); ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(payChannel);
String outTradeNo = null;
if(PayChannel.CT_WX.equalsCode(channelVO.getCode()) || PayChannel.YS_WX.equalsCode(channelVO.getCode())){
outTradeNo = IdUtils.getOrderNo("wx");
}else if(PayChannel.TL_WX.equalsCode(channelVO.getCode())){
outTradeNo = IdUtils.getOrderNo("tlwx");
}
String type = order.getType();
String description = type.equals(ServiceConstants.ORDER_TYPE_RIDING) ? "骑行订单-"+billNo : "押金充值-"+billNo;
EtOrder order1 = new EtOrder();
order1.setOutTradeNo(outTradeNo);
order1.setOrderId(order.getOrderId());
order1.setPayChannel(payChannel); order1.setPayChannel(payChannel);
int updateEtOrder = etOrderService.updateEtOrder(order1); int updateEtOrder = etOrderService.updateEtOrder(order1);
@ -143,6 +147,7 @@ public class WxPayService implements IWxPayService {
request.setMchid(channelVO.getMerchantId()); request.setMchid(channelVO.getMerchantId());
request.setAttach(JSON.toJSONString(new AttachVo(payType,user.getUserId(), ""))); request.setAttach(JSON.toJSONString(new AttachVo(payType,user.getUserId(), "")));
request.setDescription(description); request.setDescription(description);
log.info("支付渠道------"+JSON.toJSON(channelVO));
request.setNotifyUrl(channelVO.getNotifyUrl()); request.setNotifyUrl(channelVO.getNotifyUrl());
request.setPayer(getPayer(user.getWxopenid())); request.setPayer(getPayer(user.getWxopenid()));
JsapiServiceExtension jsapiServiceExtension = getJsapiServiceExtension(channelVO); JsapiServiceExtension jsapiServiceExtension = getJsapiServiceExtension(channelVO);
@ -165,11 +170,12 @@ public class WxPayService implements IWxPayService {
sybPayService.closeOrderWx(order.getOutTradeNo()); sybPayService.closeOrderWx(order.getOutTradeNo());
} }
Payable payable = new Payable(); Payable payable = new Payable();
payable.setAmount(order.getPayFee().longValue()); payable.setAmount(order.getPayFee().multiply(new BigDecimal(100)).longValue());
payable.setOutTradeNo(outTradeNo); payable.setOutTradeNo(outTradeNo);
payable.setAttach(JSON.toJSONString(new AttachVo(payType,user.getUserId(), ""))); payable.setAttach(JSON.toJSONString(new AttachVo(payType,user.getUserId(), "")));
payable.setDescription(description); payable.setDescription(description);
payable.setOpenid(user.getWxopenid()); payable.setOpenid(user.getWxopenid());
payable.setAppid(channelVO.getAppid());
PrepayWithRequestPaymentResponse res = sybPayService.prepayWxApp(payable); PrepayWithRequestPaymentResponse res = sybPayService.prepayWxApp(payable);
return res; return res;
}else{ }else{
@ -297,22 +303,21 @@ public class WxPayService implements IWxPayService {
public PaymentResult queryOrderByOutTradeNo(String outTradeNo) { public PaymentResult queryOrderByOutTradeNo(String outTradeNo) {
EtOrder order = etOrderService.selectEtOrderByOutTradeNo(outTradeNo); EtOrder order = etOrderService.selectEtOrderByOutTradeNo(outTradeNo);
ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(order.getPayChannel()); ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(order.getPayChannel());
PaymentResult paymentResult1 = new PaymentResult();
if(PayChannel.CT_WX.equalsCode(channelVO.getCode()) || PayChannel.YS_WX.equalsCode(channelVO.getCode())){ if(PayChannel.CT_WX.equalsCode(channelVO.getCode()) || PayChannel.YS_WX.equalsCode(channelVO.getCode())){
QueryOrderByOutTradeNoRequest request = new QueryOrderByOutTradeNoRequest(); QueryOrderByOutTradeNoRequest request = new QueryOrderByOutTradeNoRequest();
request.setMchid(channelVO.getMerchantId()); request.setMchid(channelVO.getMerchantId());
request.setOutTradeNo(outTradeNo); request.setOutTradeNo(outTradeNo);
JsapiService jsapiService = getJsapiService(channelVO); JsapiService jsapiService = getJsapiService(channelVO);
Transaction transaction = jsapiService.queryOrderByOutTradeNo(request); Transaction transaction = jsapiService.queryOrderByOutTradeNo(request);
return new PaymentResult(transaction.getOutTradeNo(), transaction.getTradeState().name(), log.info("微信查询订单信息outTradeNo={}-----【{}】",outTradeNo,JSON.toJSON(transaction));
transaction.getTransactionId(), new BigDecimal(transaction.getAmount().getTotal()/100)); paymentResult1.setTransaction(transaction);
return paymentResult1;
}else if(PayChannel.TL_WX.equalsCode(channelVO.getCode())){ }else if(PayChannel.TL_WX.equalsCode(channelVO.getCode())){
Map<String, String> result = sybPayService.queryOrderByOutTradeNo(order.getOutTradeNo()); Map<String, String> result = sybPayService.queryOrderByOutTradeNo(order.getOutTradeNo());
if(SybTrxStatus.isSuccess(result.get("trxstatus"))) { if(SybTrxStatus.isSuccess(result.get("trxstatus"))) {
PaymentResult paymentResult = new PaymentResult(result.get("reqsn"), paymentResult1.setResult(result);
result.get("trxstatus"), return paymentResult1;
result.get("chnltrxid"),
new BigDecimal(result.get("amount")).divide(new BigDecimal(100)).setScale(2, RoundingMode.HALF_UP));
return paymentResult;
} }
return null; return null;
}else{ }else{
@ -418,6 +423,9 @@ public class WxPayService implements IWxPayService {
public void refund(EtOrder etOrder,String reason,BigDecimal amount,String outRefundNo) { public void refund(EtOrder etOrder,String reason,BigDecimal amount,String outRefundNo) {
if(!etOrder.getStatus().equals(ServiceConstants.ORDER_STATUS_ORDER_END)) throw new ServiceException("订单状态异常"); if(!etOrder.getStatus().equals(ServiceConstants.ORDER_STATUS_ORDER_END)) throw new ServiceException("订单状态异常");
ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(etOrder.getPayChannel()); ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(etOrder.getPayChannel());
if (channelVO == null) {
throw new ServiceException("支付渠道不存在: " + etOrder.getPayChannel());
}
if(PayChannel.CT_WX.equalsCode(channelVO.getCode()) || PayChannel.YS_WX.equalsCode(channelVO.getCode())){ if(PayChannel.CT_WX.equalsCode(channelVO.getCode()) || PayChannel.YS_WX.equalsCode(channelVO.getCode())){
log.info("----------{}-------------","微信官方退款"); log.info("----------{}-------------","微信官方退款");

View File

@ -21,7 +21,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
sc.notify_url, sc.notify_url,
sc.private_key_path, sc.private_key_path,
sc.merchant_serial_number, sc.merchant_serial_number,
sc.refund_notify_url sc.refund_notify_url,
sc.appid
from et_channel sc from et_channel sc
</sql> </sql>
@ -82,6 +83,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="data.privateKeyPath != null">private_key_path = #{data.privateKeyPath},</if> <if test="data.privateKeyPath != null">private_key_path = #{data.privateKeyPath},</if>
<if test="data.merchantSerialNumber != null">merchant_serial_number = #{data.merchantSerialNumber},</if> <if test="data.merchantSerialNumber != null">merchant_serial_number = #{data.merchantSerialNumber},</if>
<if test="data.refundNotifyUrl != null">refund_notify_url = #{data.refundNotifyUrl},</if> <if test="data.refundNotifyUrl != null">refund_notify_url = #{data.refundNotifyUrl},</if>
<if test="data.appid != null">appid = #{data.appid},</if>
</trim> </trim>
where channel_id = #{data.channelId} where channel_id = #{data.channelId}
</update> </update>

View File

@ -70,7 +70,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
create_time, appointment_start_time, appointment_end_time,appointment_timeout, unlock_time,return_time, create_time, appointment_start_time, appointment_end_time,appointment_timeout, unlock_time,return_time,
rule_end_time, return_type, AsText(trip_route) trip_route,trip_route_str,cycle,deposit_deduction,video_url, rule_end_time, return_type, AsText(trip_route) trip_route,trip_route_str,cycle,deposit_deduction,video_url,
upload_time,deduction_amount,audio_files,used_sn,change_reason,locking,auto_refund_deposit,free_ride_time, upload_time,deduction_amount,audio_files,used_sn,change_reason,locking,auto_refund_deposit,free_ride_time,
rental_unit,riding_rule,riding_rule_json,charging_cycle,charging_cycle_value,capped_amount,handling_charge, platform_service_fee, pay_channel rental_unit,riding_rule,riding_rule_json,charging_cycle,charging_cycle_value,capped_amount,handling_charge, platform_service_fee, pay_channel,
operator_dividend from et_order operator_dividend from et_order
</sql> </sql>
@ -81,7 +81,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
create_time, appointment_start_time, appointment_end_time,appointment_timeout, unlock_time,return_time, create_time, appointment_start_time, appointment_end_time,appointment_timeout, unlock_time,return_time,
rule_end_time, return_type, cycle,deposit_deduction,video_url,upload_time,deduction_amount,audio_files, rule_end_time, return_type, cycle,deposit_deduction,video_url,upload_time,deduction_amount,audio_files,
used_sn,change_reason,locking,auto_refund_deposit,free_ride_time, used_sn,change_reason,locking,auto_refund_deposit,free_ride_time,
rental_unit,riding_rule,riding_rule_json,charging_cycle,charging_cycle_value,capped_amount,handling_charge, platform_service_fee, pay_channel rental_unit,riding_rule,riding_rule_json,charging_cycle,charging_cycle_value,capped_amount,handling_charge, platform_service_fee, pay_channel,
operator_dividend from et_order operator_dividend from et_order
</sql> </sql>