HouseCropAlarmResponse.cs 740 B

1234567891011121314151617181920212223242526272829
  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.Response
  7. {
  8. public class HouseCropAlarmResponse
  9. {
  10. public string tlSn { get; set; }
  11. public List<HouseCropAlarmHouseResponse> houseList { get; set; } = new List<HouseCropAlarmHouseResponse>();
  12. }
  13. public class HouseCropAlarmHouseResponse
  14. {
  15. public int houseSn { get; set; }
  16. public string startTime { get; set; }
  17. }
  18. public class HouseCropAlarmResult
  19. {
  20. public int houseSn { get; set; }
  21. public string tlSn { get; set; }
  22. public List<int> wellSn { get; set; } = new List<int>();
  23. }
  24. }