DishRecordResult.cs 482 B

12345678910111213141516171819
  1. using ivf_tl_Entity.Entity.Alarm;
  2. using ivf_tl_Entity.Entity.balance;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace ivf_tl_Entity.Entity.Result
  9. {
  10. public class DishRecordResult
  11. {
  12. public List<DishRecordEntity> records { get; set; } = new List<DishRecordEntity>();
  13. public int total { get; set; }
  14. public bool IsSuccess { get; set; } = true;
  15. }
  16. }