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 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 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; } }