| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using Muchinfo.MTPClient.Data.Model;
- //----------------------------------------------------------------
- //Module Name: $safeprojectname$
- //Purpose:
- //CopyRight: Muchinfo
- //History:
- //----------------------------------------------------------------
- //DateTime 2017/2/23 15:50:24
- //Author
- //Description Create
- //----------------------------------------------------------------
- namespace Muchinfo.MTPClient.Data
- {
- public class TradeParams
- {
- public TradeParams()
- {
- LockScreenTime = 10;
- IsCancelComfrim = true;
- IsOrderComfrim = false;
- IsSuccessComfrim = true;
- AllGoodsForAutoEntrust = new ObservableCollection<GoodsForAutoEntrustModel>();
- }
- /// <summary>
- /// 委托是否要确认
- /// </summary>
- public bool IsOrderComfrim { get; set; }
- /// <summary>
- /// 委托成功是否要关窗口
- /// </summary>
- public bool IsSuccessComfrim { get; set; }
- /// <summary>
- /// 撤单是否确认
- /// </summary>
- public bool IsCancelComfrim { get; set; }
- /// <summary>
- /// 锁屏时间
- /// </summary>
- public int LockScreenTime { get; set; }
- /// <summary>
- /// 商品的相关信息-用于自动止损止盈
- /// </summary>
- public ObservableCollection<GoodsForAutoEntrustModel> AllGoodsForAutoEntrust { get; set; }
- }
- }
|