|
|
|
@ -84,5 +84,22 @@ namespace DS.WMS.Core.Sys.Entity
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "ABA代码", IsNullable = true, Length = 100)]
|
|
|
|
|
public string ABA { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 英文银行名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "英文银行名称", IsNullable = true, Length = 100)]
|
|
|
|
|
public string BankEnName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:英文户头名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "英文户头名称", Length = 100, IsNullable = true)]
|
|
|
|
|
public string AccountEnName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 英文银行地址
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "英文银行地址", IsNullable = true, Length = 200)]
|
|
|
|
|
public string BankEnAddress { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|