admin
2024-09-20 8b7b39172ee548ff303dbd73816cb7c1071f7887
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace RiskControl.NewService.QiChaCha.YiYuanEntity
{
    /// <summary>
    /// 股票实时分时线
    /// </summary>
    public class TimeLineQuery
    {
        /// <summary>
        /// 沪深和港股的股票编码,不需要写市场名称
        /// </summary>
        public string code { get; set; }
        /// <summary>
        /// 返回多少天的分时线数据,1代表的就是当天。目前支持1至5的范围。
        /// </summary>
        public string day { get; set; }
    }
}