EquipmentBreakdownViewModel.cs
533 Bytes
using HHECS.WebAPI.ViewModel;
using System;
using System.Collections.Generic;
using System.Text;
namespace HHECS.Application.ApiModel
{
/// <summary>
/// 设备故障明细
/// </summary>
public class EquipmentBreakdownViewModel
{
public int Id { get; set; }
public string EquipmentCode { get; set; }
public string EquipmentName { get; set; }
public string Alarm { get; set; }
public DateTime Created { get; set; }
public DateTime Updated { get; set; }
}
}