| 1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Response
- {
- public class SearchDishRecordResponse
- {
- public int current { get; set; }
- public int? houseSn { get; set; }
- public string name { get; set; }
- public int selectType { get; set; }
- public int size { get; set; }
- public string startTime { get; set; }
- public string tlSn { get; set; }
- public string caseId { get; set; }
- public string cycle { get; set; }
- }
- }
|