| 1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Response
- {
- public class HouseCropAlarmResponse
- {
- public string tlSn { get; set; }
- public List<HouseCropAlarmHouseResponse> houseList { get; set; } = new List<HouseCropAlarmHouseResponse>();
- }
- public class HouseCropAlarmHouseResponse
- {
- public int houseSn { get; set; }
- public string startTime { get; set; }
- }
- public class HouseCropAlarmResult
- {
- public int houseSn { get; set; }
- public string tlSn { get; set; }
- public List<int> wellSn { get; set; } = new List<int>();
- }
- }
|