|
|
@ -454,6 +454,37 @@ public class InfoClient : SharedOrgModel<long>
|
|
|
|
[SugarColumn(ColumnDescription = "账单抬头", Length = 500, IsNullable = true)]
|
|
|
|
[SugarColumn(ColumnDescription = "账单抬头", Length = 500, IsNullable = true)]
|
|
|
|
public string? BillHeader { get; set; }
|
|
|
|
public string? BillHeader { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// 进账人民币账户ID
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "人民币账户ID")]
|
|
|
|
|
|
|
|
public long? RMBAccountId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// 进账人民币银行名称
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "进账人民币银行名称", IsNullable = true, Length = 200)]
|
|
|
|
|
|
|
|
public string RMBBankName { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// Desc:进账人民币银行账户
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "进账人民币银行账户", Length = 100, IsNullable = true)]
|
|
|
|
|
|
|
|
public string RMBBankAccountNo { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// 进账美金账户ID
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "美金账户ID")]
|
|
|
|
|
|
|
|
public long? USDAccountId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// 进账美金银行名称
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "进账美金银行名称", IsNullable = true, Length = 200)]
|
|
|
|
|
|
|
|
public string USDBankName { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// Desc:进账美金银行账户
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "进账美金银行账户", Length = 100, IsNullable = true)]
|
|
|
|
|
|
|
|
public string USDBankAccountNo { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 客户属性
|
|
|
|
/// 客户属性
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|