diff --git a/backend/services/trading-service/src/application/services/c2c-bot.service.ts b/backend/services/trading-service/src/application/services/c2c-bot.service.ts
index 3689aad2..74a86d35 100644
--- a/backend/services/trading-service/src/application/services/c2c-bot.service.ts
+++ b/backend/services/trading-service/src/application/services/c2c-bot.service.ts
@@ -84,6 +84,7 @@ export class C2cBotService {
orderNo: order.orderNo,
amount: paymentAmount,
txHash: transferResult.txHash!,
+ sellerId: order.makerAccountSequence,
sellerAddress: kavaAddress,
completedAt: new Date(),
});
diff --git a/backend/services/trading-service/src/application/services/payment-proof.service.ts b/backend/services/trading-service/src/application/services/payment-proof.service.ts
index 9178ce15..db990164 100644
--- a/backend/services/trading-service/src/application/services/payment-proof.service.ts
+++ b/backend/services/trading-service/src/application/services/payment-proof.service.ts
@@ -7,6 +7,7 @@ export interface ProofData {
orderNo: string;
amount: string;
txHash: string;
+ sellerId: string;
sellerAddress: string;
completedAt: Date;
}
@@ -73,7 +74,7 @@ export class PaymentProofService {
- 支付金额 (dUSDT)
+ 支付金额 (绿积分)
${this.esc(data.amount)}
@@ -83,8 +84,8 @@ export class PaymentProofService {
- 收款地址
- ${this.esc(shortAddr)}
+ 对方ID
+ ${this.esc(data.sellerId)}