EquipmentTypePropTemplate.cs 673 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Model
{
    public class EquipmentTypePropTemplate : BaseModel
    {
        public string Code { get; set; }
        public string Name { get; set; }
        public string Description { get; set; }
        public string Type { get; set; }
        public string MonitorCompareValue { get; set; }
        public string MonitorNormal { get; set; }
        public string MonitorFailure { get; set; }

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


    }
}