namespace WIDESEA_DTO;
///
/// 关键零部件上机
///
public class PartUpLoadDto : Basic
{
///
/// 零部件寿命信息
///
public List PartInfo { get; set; }
}
public class PartInfo
{
///
/// 零部件流水号(唯一码)
///
public string PartNo { get; set; }
///
/// 零部件名称
///
public string PartName { get; set; }
///
/// 安装位置
///
public string Location { get; set; }
///
/// 剩余寿命
///
public string UseLifetime { get; set; }
///
/// 预警寿命
///
public string WarningLife { get; set; }
}