using System; using System.Collections.Generic; using System.Linq; using System.Text; using GalaSoft.MvvmLight; using Muchinfo.MTPClient.Data.Enums; namespace Muchinfo.MTPClient.Data.Model.Bank { /// /// 出入金 /// public class Amount : ObservableObject { #region Members of Amount (4) private FundsApplyType _fundsApplyType; private decimal _money; private string _password; private string _remark; #endregion Members of Amount (4) #region Properties of Amount (4) public FundsApplyType FundsApplyType { get { return _fundsApplyType; } set { _fundsApplyType = value; } } /// /// 出入金金额 /// public decimal Money { get { return _money; } set { Set(() => Money, ref _money, value); } } /// /// 账户密码 /// public string Password { get { return _password; } set { Set(() => Password, ref _password, value); } } /// /// 备注 /// public string Remark { get { return _remark; } set { Set(() => Remark, ref _remark, value); } } /// /// 账号ID /// public ulong AccountId { get; set; } /// /// 账号代码 /// public string AccountCode { get; set; } /// /// 账号类型 /// public eUserType AccountType { get; set; } #endregion Properties of Amount (4) } }