PLCExcelModel.cs 1.06 KB
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;

namespace HHECS.Model.ExcelModels
{
    /// <summary>
    /// PLC
    /// </summary>
    public class PLCExcelModel
    {
        [Description("Id")]
        public int? Id { get; set; }

        [Description("PLC编码")]
        public string Code { get; set; }

        [Description("PLC名称")]
        public string Name { get; set; }

        [Description("IP")]
        public string IP { get; set; }

        [Description("品牌")]
        public string Brand { get; set; }

        [Description("型号")]
        public string Type { get; set; }

        [Description("是否禁用")]
        public bool Disable { get; set; }


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

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

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

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