equipment.cs 626 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Model
{
    public class Equipment :BaseModel
    {
        public string Code { get; set; }
        public string Name { get; set; }
        public string IP { get; set; }
        public string ConnectName { get; set; }
        public string GroupName { get; set; }
        public string Remark { get; set; }
        public bool Disable { get; set; }

        //逻辑外键
        public int EquipmentTypeId { get; set; }
        public EquipmentType EquipmentType { get; set; }
    }
}