IConsumerProfitService.cs 586 B

123456789101112131415161718192021
  1. using Dto;
  2. using Vo;
  3. using Model;
  4. using Model.Base;
  5. using Microsoft.AspNetCore.Mvc;
  6. namespace Services
  7. {
  8. public interface IConsumerProfitService : IBaseService<ConsumerProfit>
  9. {
  10. /// <summary>
  11. /// 消费者板块-我的-分红列表
  12. /// </summary>
  13. /// <param name="parm">请求参数</param>
  14. /// <returns>消费者板块我的-分红列表</returns>
  15. PagedInfo<ConsumerMySelfModuleGetConsumerProfitListVo> GetConsumerProfitList([FromQuery] PagerInfo page, [FromQuery] ConsumerMySelfModuleGetConsumerProfitListDto parm);
  16. }
  17. }