选装售后
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ReportExcelTest.java 1.2KB

12345678910111213141516171819202122232425262728293031323334353637
  1. import com.qtzl.alterSales.UserApplication;
  2. import com.qtzl.alterSales.dao.repo.jpa.primary.FssPaccountPayRepo;
  3. import com.qtzl.alterSales.dao.repo.jpa.second.*;
  4. import com.qtzl.alterSales.dao.repo.jpa.second.refund.RefundStatsRepo;
  5. import com.qtzl.alterSales.manager.service.*;
  6. import org.junit.runner.RunWith;
  7. import org.slf4j.Logger;
  8. import org.slf4j.LoggerFactory;
  9. import org.springframework.boot.test.context.SpringBootTest;
  10. import org.springframework.test.context.junit4.SpringRunner;
  11. import javax.annotation.Resource;
  12. @RunWith(SpringRunner.class)
  13. @SpringBootTest(classes = UserApplication.class)
  14. public class ReportExcelTest {
  15. private static final Logger log = LoggerFactory.getLogger(ReportExcelTest.class);
  16. @Resource
  17. private AflMchStatisticsRepo aflMchStatisticsRepo;
  18. @Resource
  19. private FssPaccountPayRepo fssPaccountPayRepo;
  20. @Resource
  21. private AflPaccountRefundCountRepo aflPaccountRefundCountRepo;
  22. @Resource
  23. private RefundStatsRepo refundStatsRepo;
  24. @Resource
  25. private AflOrderInfoRepo aflOrderInfoRepo;
  26. @Resource
  27. private AflReportFromServiceFeeDataService aflReportFromServiceFeeDataService;
  28. @Resource
  29. private AflServerFeeRefundRepo aflServerFeeRefundRepo;
  30. }