UserStaticticsService.java 546 B

1234567891011121314151617181920
  1. package com.goafanti.order.service;
  2. import com.goafanti.core.mybatis.page.Pagination;
  3. import com.goafanti.order.bo.*;
  4. import java.util.List;
  5. public interface UserStaticticsService {
  6. Pagination<OutSignSummary> signSummary(InputSignSummary in);
  7. List<OutSignSummary> signSummaryList(InputSignSummary in);
  8. Pagination<OutSignStatistics> signStatistics(InputSignStatistics in);
  9. Pagination<TOrderNewBo> signStatisticsOrderList(InputSignStatistics in);
  10. List<OutSignStatistics> signStatisticsGetList(InputSignStatistics in);
  11. }