EquipmentEntity.cs 895 Bytes
using System;
using System.Collections.Generic;
using System.Security.Policy;
using System.Text;

namespace Hh.Mes.POJO.ApiEntity
{
    /// <summary>
    /// 设备基础信息
    /// </summary>
    public class EquipmentEntity
    {
        public string plmeid { get; set; }

        public string factory_code { get; set; }

        public string equipment_code { get; set; }
        
        public string equipment_name { get; set; }

        public string equipmentType_code { get; set; }

        public string equipmentType_Name { get; set; }

        public string ip { get; set; }

        public string destination_area { get; set; }

        public string remark { get; set; }
        
        public int isDelete { get; set; }
        

        /// <summary>
        /// 数据传输类型:增/删/改 
        /// </summary>
        public string type { get; set; }

    }
}