| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity
- {
- public class MqttHouse
- {
- public string tlSn { get; set; }
- public int houseSn { get; set; }
- public decimal pressure { get; set; }
- public decimal temperature { get; set; }
- public int houseDoorState { get; set; }
- public int temperatureAlarm { get; set; }
- public int pressureAlarm { get; set; }
- public int cultureState { get; set; }
- public int houseState { get; set; }
- }
- }
|