epigraphUpTableRepo.cs 731 B

12345678910111213141516171819202122232425262728
  1. using System.Collections.Generic;
  2. using XGame.Framework;
  3. namespace XGame.Database
  4. {
  5. public partial class epigraphUpTableRepo
  6. {
  7. public static epigraphUpTable GetEpiragphUp(int id, int starLv)
  8. {
  9. int tableId = id * 1000 + starLv;
  10. return Get(tableId);
  11. }
  12. public static List<epigraphUpTable> GetEpigraphUpListById(int id)
  13. {
  14. var arr = GetAll();
  15. var list = ListPool.Acquire<epigraphUpTable>();
  16. foreach (var item in arr)
  17. {
  18. if (item.PetId == id)
  19. {
  20. list.Add(item);
  21. }
  22. }
  23. return list;
  24. }
  25. }
  26. }