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 houseList { get; set; } = new List(); } 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 wellSn { get; set; } = new List(); } }