using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_DTO.Telescopic
{
///
/// 上游系统的检修信息
///
public class UpstreamIDTO
{
///
/// 是否有电
///
public string IsElectricity { get; set; }
///
/// 设备编号1
///
public string NumberOne { get; set; }
///
/// 设备编号二
///
public string NumberTwo { get; set; }
///
/// 已登记
///
public int Registered { get; set; }
///
/// 已登顶
///
public int HasReachedTheTop { get; set; }
}
}