| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.GlobalEntitys
- {
- public class PictureView
- {
- public string imageUrl { get; set; }
- public DateTime imageTime { get; set; }
- public int developTime { get; set; }
- public string sourceImageUrl { get; set; }
- public int Num { get; set; }
- }
- 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>();
- }
- }
|