SearchAlarmResponse.cs 477 B

123456789101112131415161718
  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 SearchAlarmResponse
  9. {
  10. public long? alarmTypeId { get; set; }
  11. public int current { get; set; }
  12. public int? houseSn { get; set; }
  13. public int selectType { get; set; }
  14. public int size { get; set; }
  15. public string tlSn { get; set; }
  16. }
  17. }