DayRunModel.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Muchinfo.MTPClient.Data.Model
  6. {
  7. /// <summary>
  8. /// 市场运行计划 MTP2.0
  9. /// </summary>
  10. public class DayRunModel
  11. {
  12. #region 字段备注
  13. //TradeWeekDay 交易归属日 uint32
  14. //RunStep 运行阶段 uint32
  15. //StartWeekDay 起始周几 uint32
  16. //StartTime 起始时间 string
  17. //EndWeekDay 结束周几 uint32
  18. //EndTime 结束时间 string
  19. #endregion
  20. private uint _TradeWeekDay = uint.MaxValue;
  21. /// <summary>
  22. /// 交易归属日
  23. /// </summary>
  24. public uint TradeWeekDay
  25. {
  26. get { return _TradeWeekDay; }
  27. set { _TradeWeekDay = value; }
  28. }
  29. private uint _RunStep = uint.MaxValue;
  30. /// <summary>
  31. /// 运行阶段
  32. /// </summary>
  33. public uint RunStep
  34. {
  35. get { return _RunStep; }
  36. set { _RunStep = value; }
  37. }
  38. private uint _StartWeekDay = uint.MaxValue;
  39. /// <summary>
  40. /// 起始周几
  41. /// </summary>
  42. public uint StartWeekDay
  43. {
  44. get { return _StartWeekDay; }
  45. set { _StartWeekDay = value; }
  46. }
  47. private string _StartTime = "";
  48. /// <summary>
  49. /// 起始时间
  50. /// </summary>
  51. public string StartTime
  52. {
  53. get { return _StartTime; }
  54. set { _StartTime = value; }
  55. }
  56. private uint _EndWeekDay = uint.MaxValue;
  57. /// <summary>
  58. /// 结束周几
  59. /// </summary>
  60. public uint EndWeekDay
  61. {
  62. get { return _EndWeekDay; }
  63. set { _EndWeekDay = value; }
  64. }
  65. private string _EndTime = "";
  66. /// <summary>
  67. /// 结束时间
  68. /// </summary>
  69. public string EndTime
  70. {
  71. get { return _EndTime; }
  72. set { _EndTime = value; }
  73. }
  74. }
  75. }