EquipmentInfoResponseV1Dto.cs
737 Bytes
namespace HHECS.DAQServer.Dto.DigitalTwin
{
public class EquipmentInfoResponseV1Dto
{
public string EquipmentCode { get; set; }
public string EquipmentName { get; set; }
public string EquipmentTypeCode { get; set; }
public string EquipmentTypeName { get; set; }
public IEnumerable<EquipmentPropDto> EquipmentProps { get; set; }
public string Remark { get; set; }
}
public class EquipmentPropDto
{
public string EquipmentPropCode { get; set; }
public string EquipmentPropName { get; set; }
public string DataAddress { get; set; }
public string Value { get; set; }
public DateTime? DataSourceTime { get; set; }
}
}