| 12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace IvfTl.Control.Entity.DTO
- {
- public class MqttResult
- {
- public string messageId { get; set; }
- public int type { get; set; }
- public object data { get; set; }
- }
- public class HouseAutoFocusMqtt
- {
- public string tlSn { get; set; }
- public List<int> houseSnList { get; set; }
- }
- public class WellAutoFocusMqtt
- {
- public string tlSn { get; set; }
- public List<WellAutoInfo> houseSnList { get; set; }
- }
- public class WellAutoInfo
- {
- public int house { get; set; }
- public List<int> well { get; set; } = new List<int>();
- }
- }
|