| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- 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
- {
- /// <summary>
- /// 出入金
- /// </summary>
- 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; }
- }
- /// <summary>
- /// 出入金金额
- /// </summary>
- public decimal Money
- {
- get { return _money; }
- set { Set(() => Money, ref _money, value); }
- }
- /// <summary>
- /// 账户密码
- /// </summary>
- public string Password
- {
- get { return _password; }
- set { Set(() => Password, ref _password, value); }
- }
- /// <summary>
- /// 备注
- /// </summary>
- public string Remark
- {
- get { return _remark; }
- set { Set(() => Remark, ref _remark, value); }
- }
- /// <summary>
- /// 账号ID
- /// </summary>
- public ulong AccountId { get; set; }
- /// <summary>
- /// 账号代码
- /// </summary>
- public string AccountCode { get; set; }
- /// <summary>
- /// 账号类型
- /// </summary>
- public eUserType AccountType { get; set; }
- #endregion Properties of Amount (4)
- }
- }
|