using Admin.NET.Core; namespace Admin.Bodk.Device.Entities.equipment; /// /// 获取设备分页列表输入参数 /// public class DeviceInpt : BasePageInput { /// /// 设备名称 /// public string Name { get; set; } /// /// 主键 /// public long Id { get; set; } /// /// 设备编号 /// public string Code { get; set; } /// /// 设备类型 /// public string Type { get; set; } /// /// 设备位置 /// public string Position { get; set; } /// /// 备注 /// public string Remark { get; set; } } /// /// 删除设备输入参数 /// public class DeleteEquipmentInput : BaseIdInput { /// /// Id /// public long Id { get; set; } } /// /// 删除设备输入参数 /// public class EquipmentDto : BaseIdInput { /// /// 主键 /// public long Id { get; set; } /// /// 设备名称 /// public string Name { get; set; } /// /// 设备编号 /// public string Code { get; set; } /// /// 设备类型 /// public string Type { get; set; } /// /// 设备位置 /// public string Address { get; set; } public float Humidity { get; set; } public float Temperature { get; set; } public float LiquidNitrogenHeight { get; set; } public string BaseName { get; set; } public string PicUrl { get; set; } /// /// IP /// public string Ip { get; set; } /// /// 设备状态 /// public string Status { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// /// /// public DateTime CreateTime { get; set; } // public List TaskChainList { get; set; } }