using Dto; using Vo; using Model; using Model.Base; using Microsoft.AspNetCore.Mvc; namespace Services { public interface IConsumerProfitService : IBaseService { /// /// 消费者板块-我的-分红列表 /// /// 请求参数 /// 消费者板块我的-分红列表 PagedInfo GetConsumerProfitList([FromQuery] PagerInfo page, [FromQuery] ConsumerMySelfModuleGetConsumerProfitListDto parm); } }