Răsfoiți Sursa

Add bank code to BankCardInfoSub interface

- Added a new property `bankCode` to the `BankCardInfoSub` interface in wallet.ts to include the bank code information, enhancing the data structure for bank card details.
0es 1 lună în urmă
părinte
comite
31dfde3e38
1 a modificat fișierele cu 2 adăugiri și 0 ștergeri
  1. 2 0
      app/types/api/wallet.ts

+ 2 - 0
app/types/api/wallet.ts

@@ -115,6 +115,8 @@ export interface BankCardInfoSub {
   realName: string
   /** 银行名称 */
   bankName: string
+  /** 银行代码 */
+  bankCode: string
 }
 
 /**