23 lines
530 B
C#
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; }
|
|
}
|
|
}
|