Zslist.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using MC.ORM;
  2. using System.Collections.Generic;
  3. namespace CP.Model
  4. {
  5. /// <summary>
  6. /// 首页走势图集
  7. /// </summary>
  8. public class zsindexlist
  9. {
  10. public zsindexlist()
  11. {
  12. ZsList = new List<Chart>();
  13. GjList = new List<Chart>();
  14. YlList = new List<Chart>();
  15. TbList = new List<Chart>();
  16. ZtList = new List<ZtColumn>();
  17. linklist = new List<CzLink>();
  18. }
  19. public Cz Cz { set; get; }
  20. public List<Chart> ZsList { set; get; }
  21. public List<Chart> GjList { set; get; }
  22. public List<Chart> YlList { set; get; }
  23. public List<Chart> TbList { set; get; }
  24. public List<ZtColumn> ZtList { set; get; }
  25. public List<CzLink> linklist { get; set; }
  26. /// <summary>
  27. /// 1:只有走势图 2:既有走势图也有其他
  28. /// </summary>
  29. public int TabCount { set; get; }
  30. /// <summary>
  31. /// 走势图html片段
  32. /// </summary>
  33. public string html { get; set; }
  34. }
  35. public class ylgjtblist
  36. {
  37. public ylgjtblist()
  38. {
  39. list = new List<Chart>();
  40. }
  41. public Cz cz { get; set; }
  42. public List<Chart> list { get; set; }
  43. }
  44. public class zsalllist
  45. {
  46. public zsalllist()
  47. {
  48. zslist = new List<zsindexlist>();
  49. }
  50. public string gp_type { get; set; }
  51. public string gp_typename { get; set; }
  52. public List<zsindexlist> zslist { get; set; }
  53. }
  54. }