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