bus_equipment_maintenance.cs 3.29 KB
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
    [SugarTable("bus_equipment_maintenance")]
    public partial class bus_equipment_maintenance : base_Entity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int iD { get; set; }
 
        /// <summary>
        /// 设备ID
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "设备ID", IsNullable = true)]
        public string equipmentID { get; set; }
 
        /// <summary>
        /// 维护类型(如:预测性、主动性)
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "维护类型(如:预测性、主动性)", IsNullable = true)]
        public string maintenanceType { get; set; }
 
        /// <summary>
        /// 维护日期
        /// </summary>
        [SugarColumn(ColumnDescription = "维护日期", IsNullable = true)]
        public DateTime maintenanceDate { get; set; }
 
        /// <summary>
        /// 维护描述
        /// </summary>
        [SugarColumn(Length = 1000, ColumnDescription = "维护描述", IsNullable = true)]
        public string maintenanceDescription { get; set; }
 
        /// <summary>
        /// 巡检类型(如:定期巡检、临时巡检)
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "巡检类型(如:定期巡检、临时巡检)", IsNullable = true)]
        public string inspectionType { get; set; }
 
        /// <summary>
        /// 巡检日期
        /// </summary>
        [SugarColumn(ColumnDescription = "巡检日期", IsNullable = true)]
        public DateTime inspectionDate { get; set; }
 
        /// <summary>
        /// 巡检结果
        /// </summary>
        [SugarColumn(Length = 1000, ColumnDescription = "巡检结果", IsNullable = true)]
        public string inspectionResult { get; set; }
 
        /// <summary>
        /// 技术员
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "技术员", IsNullable = true)]
        public string technician { get; set; }
 
        /// <summary>
        /// 下次维护日期
        /// </summary>
        [SugarColumn(ColumnDescription = "下次维护日期", IsNullable = true)]
        public DateTime nextMaintenanceDate { get; set; }
 
        /// <summary>
        /// 维护状态(如:已完成、待处理)
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "维护状态(如:已完成、待处理)", IsNullable = true)]
        public string maintenanceStatus { get; set; }
 
        /// <summary>
        /// 预测性维护详情
        /// </summary>
        [SugarColumn(Length = 1000, ColumnDescription = "预测性维护详情", IsNullable = true)]
        public string predictiveMaintenanceDetails { get; set; }
 
        /// <summary>
        /// 主动性维护详情
        /// </summary>
        [SugarColumn(Length = 1000, ColumnDescription = "主动性维护详情", IsNullable = true)]
        public string proactiveMaintenanceDetails { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(Length = 1000, ColumnDescription = "备注", IsNullable = true)]
        public string notes { get; set; }
 
     }
}