DeviceManager/DeviceRepair.Models/Device/DeviceAnnPlanView.cs

23 lines
530 B
C#
Raw Normal View History

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>
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; }
}
}