You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.5 KiB
C#
78 lines
2.5 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 银行账户信息
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("sys_bank", "银行账户信息")]
|
|
public class SysBank : BaseTenantModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 关联Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "关联Id")]
|
|
public long LinkId { get; set; }
|
|
/// <summary>
|
|
/// 代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "代码", IsNullable = true, Length = 50)]
|
|
public string CodeName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 币别
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "币别", IsNullable = true, Length = 20)]
|
|
public string Currency { get; set; }
|
|
|
|
/// <summary>
|
|
/// 银行名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "银行名称", IsNullable = true, Length = 100)]
|
|
public string BankName { get; set; }
|
|
/// <summary>
|
|
/// Desc:银行账户
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "银行账户", Length = 40, IsNullable = true)]
|
|
public string BankAccountNo { get; set; }
|
|
/// <summary>
|
|
/// Desc:户头名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "户头名称", Length = 100, IsNullable = true)]
|
|
public string AccountName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 科目代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "科目代码", IsNullable = true, Length = 100)]
|
|
public string SubjectCode { get; set; }
|
|
/// <summary>
|
|
/// 财务软件代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "财务软件代码", IsNullable = true, Length = 50)]
|
|
public string FinanceSoftCode { get; set; }
|
|
/// <summary>
|
|
/// 是否默认 0否 1是
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "是否默认")]
|
|
public bool IsDefault { get; set; } = false;
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "排序")]
|
|
public int? OrderNo { get; set; } = 100;
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "状态")]
|
|
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
|
|
}
|
|
}
|