IPriPrizeInSetService.cs 540 B

12345678910111213141516171819
  1. using Model;
  2. using Model.Base;
  3. using Microsoft.AspNetCore.Mvc;
  4. using Vo.Admin;
  5. namespace Services
  6. {
  7. public interface IPriPrizeInSetService : IBaseService<PriPrizeInSet>
  8. {
  9. /// <summary>
  10. /// 奖励入库表-列表
  11. /// </summary>
  12. /// <param name="param">参数请求体</param>
  13. /// <param name="page">分页参数</param>
  14. /// <returns>列表</returns>
  15. PagedInfo<GetPriPrizeInSetListVo> getPriPrizeInSetList([FromQuery] PagerInfo page, [FromQuery] PriPrizeInSet param);
  16. }
  17. }