|
|
|
@ -73,5 +73,16 @@ namespace DS.WMS.Core.Sys.Entity
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "状态")]
|
|
|
|
|
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 银行地址
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "银行地址", IsNullable = true, Length = 200)]
|
|
|
|
|
public string BankAddress { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ABA代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "ABA代码", IsNullable = true, Length = 100)]
|
|
|
|
|
public string ABA { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|