DeviceManager/DeviceRepairAndOptimization/Models/DriveMaintencePlan.cs
2024-05-28 22:36:38 +08:00

41 lines
1.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.ComponentModel;
namespace DeviceRepairAndOptimization.Models
{
/// <summary>
/// 保养计划表
/// 对应数据库名称DriveMaintencePlan
/// </summary>
public class DriveMaintencePlan
{
/// <summary>
/// 主键ID
/// </summary>
[DisplayName("主键ID")]
public int AutoID { get; set; }
/// <summary>
/// 设备编号
/// </summary>
[DisplayName("设备编号")]
public int EquipmentID { get; set; }
/// <summary>
/// 预计保养日期
/// </summary>
[DisplayName("预计保养日期")]
public System.DateTime LastMaintenanceDate { get; set; }
/// <summary>
/// 文档版本
/// </summary>
[DisplayName("文档版本")]
public int MaintenanceFormVersion { get; set; }
/// <summary>
/// 备注
/// </summary>
[DisplayName("备注")]
public string Remarks { get; set; }
}
}