EquipmentAlarmEntity.cs 695 Bytes
using System;
using System.Collections.Generic;
using System.Text;

namespace Hh.Mes.POJO.ApiEntity
{
    public class EquipmentAlarmEntity
    {
        public string plmeid { get; set; }

        public string factory_code { get; set; }

        public string equipment_code { get; set; }

        public string equipment_name { get; set; }

        public int alarm_type { get; set; }

        public string alarm_content { get; set; }

        public DateTime? start_time { get; set; }

        public DateTime? end_time { get; set; }

        public string faulthandle_info { get; set; }

        public string handle_user { get; set; }

        public string type { get; set; }
    }
}