SearchDishRecordResponse.cs 614 B

1234567891011121314151617181920212223
  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 SearchDishRecordResponse
  9. {
  10. public int current { get; set; }
  11. public int? houseSn { get; set; }
  12. public string name { get; set; }
  13. public int selectType { get; set; }
  14. public int size { get; set; }
  15. public string startTime { get; set; }
  16. public string tlSn { get; set; }
  17. public string caseId { get; set; }
  18. public string cycle { get; set; }
  19. }
  20. }