1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using MC.ORM;
- using System.Collections.Generic;
- namespace CP.Model
- {
- /// <summary>
- /// 首页走势图集
- /// </summary>
- public class zsindexlist
- {
- public zsindexlist()
- {
- ZsList = new List<Chart>();
- GjList = new List<Chart>();
- YlList = new List<Chart>();
- TbList = new List<Chart>();
- ZtList = new List<ZtColumn>();
- linklist = new List<CzLink>();
- }
- public Cz Cz { set; get; }
- public List<Chart> ZsList { set; get; }
- public List<Chart> GjList { set; get; }
- public List<Chart> YlList { set; get; }
- public List<Chart> TbList { set; get; }
- public List<ZtColumn> ZtList { set; get; }
- public List<CzLink> linklist { get; set; }
- /// <summary>
- /// 1:只有走势图 2:既有走势图也有其他
- /// </summary>
- public int TabCount { set; get; }
- /// <summary>
- /// 走势图html片段
- /// </summary>
- public string html { get; set; }
- }
- public class ylgjtblist
- {
- public ylgjtblist()
- {
- list = new List<Chart>();
- }
- public Cz cz { get; set; }
- public List<Chart> list { get; set; }
- }
- public class zsalllist
- {
- public zsalllist()
- {
- zslist = new List<zsindexlist>();
- }
- public string gp_type { get; set; }
- public string gp_typename { get; set; }
- public List<zsindexlist> zslist { get; set; }
- }
- }
|