HydraulicLiftingPlatform.cs 1.32 KB
using RCS.Model.Entity;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace RCS.WinClient.Equipment
{
    /// <summary>
    /// 液压升降台
    /// </summary>
    public class HydraulicLiftingPlatform : Base_Station
    {
        /// <summary>
        /// 是否自动
        /// </summary>
        [NotMapped]
        public bool IsAuto { get; set; }
        /// <summary>
        /// 是否故障
        /// </summary>
        [NotMapped]
        public bool IsFault { get; set; }
        /// <summary>
        /// 是否上升到位
        /// </summary>
        [NotMapped]
        public bool IsRisingToPosition { get; set; }
        /// <summary>
        /// 是否下降到位
        /// </summary>
        [NotMapped]
        public bool IsLoweringToPosition { get; set; }
        /// <summary>
        /// 请求上升
        /// </summary>
        [NotMapped]
        public bool RequestUp { get; set; }
        /// <summary>
        /// 请求下降
        /// </summary>
        [NotMapped]
        public bool RequestDown { get; set; }
        /// <summary>
        /// 是否到达最高位
        /// </summary>
        [NotMapped]
        public bool IsMaxUpPosition { get; set; }

    }
}