Blame view

sys/Hh.Mes.POJO/ApiEntity/EquipmentAlarmCountTimeEntity.cs 855 Bytes
1
2
using System;
using System.Collections.Generic;
HuXiYu authored
3
using System.Data;
4
5
6
7
using System.Text;

namespace Hh.Mes.POJO.ApiEntity
{
8
9
10
    /// <summary>
    /// 项目月 四周 故障次数&时间
    /// </summary>
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
    public class EquipmentAlarmCountTimeEntity
    {
        /// <summary>
        /// 第几周
        /// </summary>
        public string WeekNo { get; set; }

        /// <summary>
        /// 时间段
        /// </summary>
        public string TimePeriod { get; set; }

        /// <summary>
        /// 故障次数
        /// </summary>
        public int AlarmCount { get; set; }

        /// <summary>
        /// 故障总时间
        /// </summary>
        public decimal AlarmSumTime { get; set; }
HuXiYu authored
32
33
34
35
36

        /// <summary>
        /// 详情数据
        /// </summary>
        public DataTable AlarmListData { get; set; }
37
38
    }
}