2024-05-28 20:26:03 +00:00
|
|
|
|
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; }
|
|
|
|
|
|
2024-08-02 02:52:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 已弃用
|
|
|
|
|
/// </summary>
|
2024-05-28 20:26:03 +00:00
|
|
|
|
public string CurrentFormCode { get; set; }
|
2024-08-02 02:52:45 +00:00
|
|
|
|
|
|
|
|
|
public string PM_FormCode { get; set; }
|
|
|
|
|
|
|
|
|
|
public string AM_FormCode { get; set; }
|
2024-05-28 20:26:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|