using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Sys.Entity { /// /// 银行账户信息 /// [SqlSugar.SugarTable("sys_bank", "银行账户信息")] public class SysBank : BaseTenantModel { /// /// 关联Id /// [SugarColumn(ColumnDescription = "关联Id")] public long LinkId { get; set; } /// /// 代码 /// [SugarColumn(ColumnDescription = "代码", IsNullable = true, Length = 50)] public string CodeName { get; set; } /// /// 币别 /// [SugarColumn(ColumnDescription = "币别", IsNullable = true, Length = 20)] public string Currency { get; set; } /// /// 银行名称 /// [SugarColumn(ColumnDescription = "银行名称", IsNullable = true, Length = 100)] public string BankName { get; set; } /// /// 银行名称2 /// [SugarColumn(ColumnDescription = "银行名称2", IsNullable = true, Length = 100)] public string BankName2 { get; set; } /// /// Desc:银行账户 /// [SugarColumn(ColumnDescription = "银行账户", Length = 40, IsNullable = true)] public string BankAccountNo { get; set; } /// /// Desc:户头名称 /// [SugarColumn(ColumnDescription = "户头名称", Length = 100, IsNullable = true)] public string AccountName { get; set; } /// /// 科目代码 /// [SugarColumn(ColumnDescription = "科目代码", IsNullable = true, Length = 100)] public string SubjectCode { get; set; } /// /// 财务软件代码 /// [SugarColumn(ColumnDescription = "财务软件代码", IsNullable = true, Length = 50)] public string FinanceSoftCode { get; set; } /// /// 是否默认 0否 1是 /// [SugarColumn(ColumnDescription = "是否默认")] public bool IsDefault { get; set; } = false; /// /// 排序 /// [SugarColumn(ColumnDescription = "排序")] public int? OrderNo { get; set; } = 100; /// /// 状态 /// [SugarColumn(ColumnDescription = "状态")] public StatusEnum? Status { get; set; } = StatusEnum.Enable; } }