tangxu
2022-10-24 805b967b4ee65cd5022cad20451299f6ce56c949
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Application
{
    /// <summary>
    /// 监测运行区间项
    /// </summary>
    public class MonitorRunSpanItemMobileDto
    {
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 运行时间(秒数)
        /// </summary>
        public double RumTime { get; set; }
 
        /// <summary>
        /// 区间集合
        /// </summary>
        public List<MonitorRunSpanMobileDto> Spans { get; set; }
 
    }
}