账户信息新增一个SWIFT CODE (美金账号会用到)

dev
cjy 3 weeks ago
parent 81126dcaab
commit 56df580228

@ -120,6 +120,11 @@ public class ClientBankReq
/// 寄发票地址 /// 寄发票地址
/// </summary> /// </summary>
public string? SendInvoiceAddress { get; set; } public string? SendInvoiceAddress { get; set; }
/// <summary>
/// 银行国际代码
/// </summary>
public string? SwiftCode { get; set; }
///// <summary> ///// <summary>
///// 发票抬头 ///// 发票抬头
///// </summary> ///// </summary>

@ -129,4 +129,9 @@ public class ClientBankRes
/// 寄发票地址 /// 寄发票地址
/// </summary> /// </summary>
public string? SendInvoiceAddress { get; set; } public string? SendInvoiceAddress { get; set; }
/// <summary>
/// 银行国际代码
/// </summary>
public string? SwiftCode { get; set; }
} }

@ -137,6 +137,12 @@ public class InfoClientBank : BaseModelV2<long>
/// </summary> /// </summary>
[SugarColumn(ColumnDescription = "寄发票地址", Length = 200, IsNullable = true)] [SugarColumn(ColumnDescription = "寄发票地址", Length = 200, IsNullable = true)]
public string? SendInvoiceAddress { get; set; } public string? SendInvoiceAddress { get; set; }
/// <summary>
/// 银行国际代码
/// </summary>
[SugarColumn(ColumnDescription = "银行国际代码", Length = 150, IsNullable = true)]
public string? SwiftCode { get; set; }
///// <summary> ///// <summary>
///// 发票抬头 ///// 发票抬头
///// </summary> ///// </summary>

Loading…
Cancel
Save