MqttHouse.cs 627 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ivf_tl_Entity.Entity
  7. {
  8. public class MqttHouse
  9. {
  10. public string tlSn { get; set; }
  11. public int houseSn { get; set; }
  12. public decimal pressure { get; set; }
  13. public decimal temperature { get; set; }
  14. public int houseDoorState { get; set; }
  15. public int temperatureAlarm { get; set; }
  16. public int pressureAlarm { get; set; }
  17. public int cultureState { get; set; }
  18. public int houseState { get; set; }
  19. }
  20. }