DeviceManager/DeviceRepair.Models/Device/DeviceAnnPlanView.cs
2024-08-02 10:52:45 +08:00

23 lines
530 B
C#

using System.Collections.Generic;
namespace DeviceRepair.Models.Device
{
public class DeviceAnnPlanView
{
public DeviceInformationInfo Dev { get; set; }
public List<DriveMaintencePlanInfo> Plans { get; set; }
public List<MaintenanceRecordInfo> Records { get; set; }
/// <summary>
/// 已弃用
/// </summary>
public string CurrentFormCode { get; set; }
public string PM_FormCode { get; set; }
public string AM_FormCode { get; set; }
}
}