| 12345678910111213141516171819 |
- using ivf_tl_Entity.Entity.Alarm;
- using ivf_tl_Entity.Entity.balance;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.Result
- {
- public class DishRecordResult
- {
- public List<DishRecordEntity> records { get; set; } = new List<DishRecordEntity>();
- public int total { get; set; }
- public bool IsSuccess { get; set; } = true;
- }
- }
|