Blame view

sys/Hh.Mes.POJO/ApiEntity/EquipmentEntity.cs 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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; }
赖素文 authored
31
        public bool isEnable { get; set; }
32
33
34
35
36
37
38
39
40


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

    }
}