using System.Collections.Generic;
namespace DeviceRepair.Models.Preserve.JsonData
{
public class ContentData
{
///
/// 设备型号规格
///
public List DeviceSpecification { get; set; }
///
/// 设备编号
///
public List EquipmentID { get; set; }
///
/// 年
///
public List Year { get; set; }
///
/// 内容
///
public List Content { get; set; }
///
/// 其他异常处理
///
public List ExceptionDescription { get; set; }
///
/// 操作员
///
public List Operation { get; set; }
///
/// 操作日期
///
public List OperationDate { get; set; }
}
}