支付宝账号

This commit is contained in:
2026-01-08 16:33:14 +08:00
parent cfa4158172
commit d20d023dd1
3 changed files with 12 additions and 0 deletions

View File

@@ -40,6 +40,10 @@ public class ShopDirectMerchant implements Serializable {
* 营业执照编号
*/
private String licenceNo;
/**
* 支付宝账号
*/
private String alipayAccount;
/**
* 商户编号(在当前系统唯一)

View File

@@ -2,12 +2,14 @@ package com.czg.service.order.dto;
import com.czg.dto.req.*;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.time.LocalDateTime;
/**
* @author ww
*/
@EqualsAndHashCode(callSuper = true)
@Data
public class AggregateMerchantVO extends AggregateMerchantDto{
@@ -24,6 +26,11 @@ public class AggregateMerchantVO extends AggregateMerchantDto{
*/
private String wechatStatus;
/**
* 支付宝账号
*/
private String alipayAccount;
/**
* 微信进件错误信息
*/

View File

@@ -129,6 +129,7 @@ public class ShopDirectMerchantServiceImpl extends ServiceImpl<ShopDirectMerchan
vo.setSettlementInfo(JSONObject.parseObject(entity.getSettlementInfo(), SettlementInfoDto.class));
// 设置其他字段
vo.setAlipayAccount(entity.getAlipayAccount());
vo.setCreateTime(entity.getCreateTime());
vo.setUpdateTime(entity.getUpdateTime());
vo.setWechatApplyId(entity.getWechatApplyId());