| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model
- {
- /// <summary>
- /// 头寸变化通知实体
- /// </summary>
- public class PosChangedNtfModel
- {
- private int _RetCode = int.MinValue;
- public int RetCode
- {
- get { return _RetCode; }
- set { _RetCode = value; }
- }
- private ulong _AccountID = uint.MaxValue;
-
- public ulong AccountID
- {
- get { return _AccountID; }
- set { _AccountID = value; }
- }
- private uint _GoodsID = uint.MaxValue;
-
- public uint GoodsID
- {
- get { return _GoodsID; }
- set { _GoodsID = value; }
- }
- private uint _BuyOrSell = uint.MaxValue;
-
- public uint BuyOrSell
- {
- get { return _BuyOrSell; }
- set { _BuyOrSell = value; }
- }
- private double _TradeAmount = int.MinValue;
-
- public double TradeAmount
- {
- get { return _TradeAmount; }
- set { _TradeAmount = value; }
- }
- private double _HolderAmount = int.MinValue;
-
- public double HolderAmount
- {
- get { return _HolderAmount; }
- set { _HolderAmount = value; }
- }
- private int _HoldQty = int.MinValue;
-
- public int HoldQty
- {
- get { return _HoldQty; }
- set { _HoldQty = value; }
- }
- private int _FreezeQty = int.MinValue;
-
- public int FreezeQty
- {
- get { return _FreezeQty; }
- set { _FreezeQty = value; }
- }
- private double _ReckonPL = int.MinValue;
-
- public double ReckonPL
- {
- get { return _ReckonPL; }
- set { _ReckonPL = value; }
- }
- private double _UsedMargin = int.MinValue;
-
- public double UsedMargin
- {
- get { return _UsedMargin; }
- set { _UsedMargin = value; }
- }
- }
- }
|