You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.6 KiB
69 lines
1.6 KiB
|
|
using Admin.NET.Core;
|
|
|
|
namespace Admin.Bodk.Device.Entities.Dto;
|
|
|
|
public class SupportDto
|
|
{
|
|
|
|
}
|
|
|
|
public class SupportInput : BasePageInput
|
|
{
|
|
|
|
}
|
|
public class SupportAddInput
|
|
{
|
|
public string Name { get; set; }
|
|
}
|
|
|
|
public class SupportOutput
|
|
{
|
|
public string State { get; set; }
|
|
public string Name { get; set; }
|
|
public string DetectionServiceId { get; set; }
|
|
public int DetectionServiceType { get; set; }
|
|
}
|
|
|
|
public class CellOutput
|
|
{
|
|
public string Code { get; set; }
|
|
public string Activity { get; set; }
|
|
public double Temperature { get; set; }
|
|
public string Humidity { get; set; }
|
|
public string Density { get; set; }
|
|
public string Capacity { get; set; }
|
|
public int Type { get; set; }
|
|
public string Location { get; set; }
|
|
public DateTime? LastOperationTime { get; set; }
|
|
public DeviceInfo DeviceInfo { get; set; }
|
|
}
|
|
|
|
public class DeviceInfo
|
|
{
|
|
public long DeviceId { get; set; }
|
|
public string PicUrl { get; set; }
|
|
public float LiquidNitrogenHeight { get; set; }
|
|
public double Temperature { get; set; }
|
|
public string Humidity { get; set; }
|
|
public string Address { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
public double Latitude { get; set; }
|
|
|
|
public double Longitude { get; set; }
|
|
public CellBaseInfo CellBaseInfo { get; set; }
|
|
}
|
|
|
|
public class CellBaseInfo
|
|
{
|
|
public string BaseName { get; set; }
|
|
public long BaseId { get; set; }
|
|
}
|
|
|
|
public class SupportBaseOutput
|
|
{
|
|
public long Id { get; set; }
|
|
public string Name { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
}
|