using System; using System.Collections.Generic; using System.Text; using Edu.Model.Entity.Finance; using VT.FW.DB; namespace Edu.Model.ViewModel.Finance { /// /// 公司银行账户表扩展 实体 /// [Serializable] [DB(ConnectionName = "FinanceConnection")] public class RB_BackAccount_Extend :RB_BackAccount { /// /// 期初开始时间str /// public string BeginTimeStr { get; set; } /// /// 账户id Str /// public string AccountIdStr { get; set; } /// /// 模板ID /// public int? TemplateId { get; set; } /// /// 账户是否配置收款0-否1-是 /// public int? Is_Income { get; set; } /// /// 账户是否配置支款0-否1-是 /// public int? Is_Outcome { get; set; } /// /// 收款负责人名称 /// public string InemName { get; set; } /// /// 付款负责人 /// public string OutemName { get; set; } /// /// 上期损益 /// public decimal? ProfitLossMoney { get; set; } /// /// 公司ID /// public int? BranchId { get; set; } /// /// 账户分类名称 /// public string AccountTypeName { set; get; } /// /// 所属公司集合 /// //public List BranchList { get; set; } /// /// 币种 /// public string CurrencyName { get; set; } /// /// 银行名称 /// public string BackName { get; set; } /// /// 银行logo /// public string BackLogo { get; set; } /// /// 账户类型 /// public string TypeName { get; set; } /// /// 汇率 /// public decimal? Rate { get; set; } /// /// 币种汇率 /// public decimal? CurrencyRate { get; set; } /// /// 付款汇率 /// public decimal PayRate { get; set; } /// /// 上调汇率 /// public decimal ExchangeRates { get; set; } /// /// 币种类型 /// public int IsStandardCurrency { get; set; } /// /// 外币货币代码 /// public string CurrencyCode { get; set; } /// /// 本位币货币代码 /// public string StandardCurrencyCode { get; set; } /// /// 账户分类 /// public int? BankType { get; set; } /// ///公私 /// public int? Is_Public { get; set; } /// /// 公司名称 /// public string BranchName { get; set; } } }