using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//----------------------------------------------------------------
//Module Name: $safeprojectname$
//Purpose:
//CopyRight: Muchinfo
//History:
//----------------------------------------------------------------
//DateTime 2015/7/23 11:12:37
//Author ouyang.hongbin
//Description Create
//----------------------------------------------------------------
namespace Muchinfo.MTPClient.Data.Quote
{
public class TradeDateRules
{
///
/// 交易所代码
///
public string ExchangeCode { get; set; }
///
/// 商品组
///
public int Sort { get; set; }
///
/// 开收盘时间段
///
public List OpenCloseTimes { get; set; }
///
/// 交易日
///
public DateTime TradeDate { get; set; }
///
/// 商品Id
///
public uint GoodsId { get; set; }
}
public class OpenCloseDate
{
///
/// 交易日
///
public DateTime TradeDay { get; set; }
///
/// 运行阶段
///
public eRunStep RunStep { get; set; }
///
/// 开盘时间
///
public DateTime OpenDate { get; set; }
///
/// 收盘时间
///
public DateTime CloseDate { get; set; }
}
}