| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model
- {
- /// <summary>
- /// 市场运行计划 MTP2.0
- /// </summary>
- public class DayRunModel
- {
- #region 字段备注
- //TradeWeekDay 交易归属日 uint32
- //RunStep 运行阶段 uint32
- //StartWeekDay 起始周几 uint32
- //StartTime 起始时间 string
- //EndWeekDay 结束周几 uint32
- //EndTime 结束时间 string
- #endregion
- private uint _TradeWeekDay = uint.MaxValue;
- /// <summary>
- /// 交易归属日
- /// </summary>
- public uint TradeWeekDay
- {
- get { return _TradeWeekDay; }
- set { _TradeWeekDay = value; }
- }
- private uint _RunStep = uint.MaxValue;
- /// <summary>
- /// 运行阶段
- /// </summary>
- public uint RunStep
- {
- get { return _RunStep; }
- set { _RunStep = value; }
- }
- private uint _StartWeekDay = uint.MaxValue;
- /// <summary>
- /// 起始周几
- /// </summary>
- public uint StartWeekDay
- {
- get { return _StartWeekDay; }
- set { _StartWeekDay = value; }
- }
- private string _StartTime = "";
- /// <summary>
- /// 起始时间
- /// </summary>
- public string StartTime
- {
- get { return _StartTime; }
- set { _StartTime = value; }
- }
- private uint _EndWeekDay = uint.MaxValue;
- /// <summary>
- /// 结束周几
- /// </summary>
- public uint EndWeekDay
- {
- get { return _EndWeekDay; }
- set { _EndWeekDay = value; }
- }
- private string _EndTime = "";
- /// <summary>
- /// 结束时间
- /// </summary>
- public string EndTime
- {
- get { return _EndTime; }
- set { _EndTime = value; }
- }
- }
- }
|