EquipmentStatusRecordExcelModel.cs 1.01 KB
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;

namespace HHECS.Model.ExcelModels
{
    public class EquipmentStatusRecordExcelModel
    {
        [Description("Id")]
        public int? Id { get; set; }

        [Description("设备编码")]
        public string EquipmentCode { get; set; }

        [Description("设备名称")]
        public string EquipmentName { get; set; }

        [Description("设备状态")]
        public string EquipmentStatus { get; set; }

        [Description("是否结束")]
        public bool IsEnd { get; set; }

        [Description("持续时间")]
        public string Duration { set; get; }


        [Description("创建时间")]
        public DateTime? Created { get; set; }

        [Description("创建人")]
        public string CreatedBy { get; set; }

        [Description("更新时间")]
        public DateTime? Updated { get; set; }

        [Description("更新人")]
        public string UpdatedBy { get; set; }
    }
}