lixiaojun
2024-05-15 e45eab5980c08520aee01a72224ccdfd12600543
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace IStation.Application.SZJT
{
    /// <summary>
    /// 
    /// </summary>
    public class StationStatisticsDayParasMobileDto
    {
        /// <summary>
        /// 是否前一天
        /// </summary>
        public bool Pre { get; set; } = false;
 
        /// <summary>
        /// 开始时
        /// </summary>
        public int Start { get; set; } = 0;
 
        /// <summary>
        /// 结束时
        /// </summary>
        public int End { get; set; } = 24;
    }
}