| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- namespace Muchinfo.MTPClient.Data.Model.Account
- {
- using GalaSoft.MvvmLight;
- /// <summary>
- /// 交收单
- /// </summary>
- public class DeliveryOrder : ObservableObject
- {
- #region Fields
- /// <summary>
- /// 买卖
- /// </summary>
- private string _buyOrSell;
- /// <summary>
- /// 交收价
- /// </summary>
- private decimal _deliveryPrice;
- /// <summary>
- /// 商品
- /// </summary>
- private string _goods;
- /// <summary>
- /// 数量
- /// </summary>
- private double _lot;
- /// <summary>
- /// 订单号
- /// </summary>
- private string _orderNumber;
- #endregion Fields
- #region Properties
- /// <summary>
- /// Sets and gets 买卖
- /// Changes to that property's value raise the PropertyChanged event.
- /// </summary>
- public string BuyOrSell
- {
- get{return _buyOrSell;}
- set{Set(() => BuyOrSell, ref _buyOrSell, value);}
- }
- /// <summary>
- /// Sets and gets 交收价
- /// Changes to that property's value raise the PropertyChanged event.
- /// </summary>
- public decimal DeliveryPrice
- {
- get{return _deliveryPrice;}
- set{Set(() => DeliveryPrice, ref _deliveryPrice, value);}
- }
- /// <summary>
- /// Sets and gets 商品
- /// Changes to that property's value raise the PropertyChanged event.
- /// </summary>
- public string Goods
- {
- get{return _goods;}
- set{Set(() => Goods, ref _goods, value);}
- }
- /// <summary>
- /// Sets and gets 数量
- /// Changes to that property's value raise the PropertyChanged event.
- /// </summary>
- public double Lot
- {
- get{return _lot;}
- set{Set(() => Lot, ref _lot, value);}
- }
- /// <summary>
- /// Sets and gets 订单号
- /// Changes to that property's value raise the PropertyChanged event.
- /// </summary>
- public string OrderNumber
- {
- get{return _orderNumber;}
- set{Set(() => OrderNumber, ref _orderNumber, value);}
- }
- #endregion Properties
- }
- }
|