add 订单基本信息表添加 third_party_type 字段

This commit is contained in:
Lemon
2024-01-13 09:51:56 +08:00
parent 77b843f589
commit 7f20c611db
3 changed files with 56 additions and 6 deletions

View File

@@ -104,6 +104,12 @@ public class OrderBasicInfo extends BaseEntity {
@Excel(name = "启动方式")
private String startMode;
/**
* 第三方平台类型
*/
@Excel(name = "第三方平台类型")
private String thirdPartyType;
/**
* 支付方式
* 1-余额支付3-白名单支付; 4-微信支付5-支付宝支付;

View File

@@ -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())