mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
add 订单基本信息表添加 third_party_type 字段
This commit is contained in:
@@ -104,6 +104,12 @@ public class OrderBasicInfo extends BaseEntity {
|
||||
@Excel(name = "启动方式")
|
||||
private String startMode;
|
||||
|
||||
/**
|
||||
* 第三方平台类型
|
||||
*/
|
||||
@Excel(name = "第三方平台类型")
|
||||
private String thirdPartyType;
|
||||
|
||||
/**
|
||||
* 支付方式
|
||||
* 1-余额支付;3-白名单支付; 4-微信支付;5-支付宝支付;
|
||||
|
||||
@@ -2513,7 +2513,7 @@ public class OrderBasicInfoServiceImpl implements OrderBasicInfoService {
|
||||
.connectorCode(connectorCode)
|
||||
.pileConnectorCode(pileConnectorCode)
|
||||
// .logicCard(pileAuthCardInfo.getLogicCard()) // 卡号
|
||||
.startMode(StartModeEnum.THIRD_PARTY_PLATFORM.getValue())
|
||||
.startMode(StartModeEnum.THIRD_PARTY_PLATFORM.getValue()) // 启动方式
|
||||
.payStatus(Constants.ONE)
|
||||
.payAmount(dto.getAccountBalance()) // 支付金额
|
||||
.payTime(new Date())
|
||||
|
||||
Reference in New Issue
Block a user