| 123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity
- {
- public class SearchAlarmResponse
- {
- public int current { get; set; }
- public int selectType { get; set; }
- public int size { get; set; }
- public string tlSn { get; set; }
- public string startTime { get; set; }
- public string endTime { get; set; }
- }
- }
|