12345678910111213141516171819202122232425262728293031323334353637 |
- import com.qtzl.alterSales.UserApplication;
- import com.qtzl.alterSales.dao.repo.jpa.primary.FssPaccountPayRepo;
- import com.qtzl.alterSales.dao.repo.jpa.second.*;
- import com.qtzl.alterSales.dao.repo.jpa.second.refund.RefundStatsRepo;
- import com.qtzl.alterSales.manager.service.*;
- import org.junit.runner.RunWith;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.boot.test.context.SpringBootTest;
- import org.springframework.test.context.junit4.SpringRunner;
-
- import javax.annotation.Resource;
-
- @RunWith(SpringRunner.class)
- @SpringBootTest(classes = UserApplication.class)
- public class ReportExcelTest {
-
- private static final Logger log = LoggerFactory.getLogger(ReportExcelTest.class);
- @Resource
- private AflMchStatisticsRepo aflMchStatisticsRepo;
- @Resource
- private FssPaccountPayRepo fssPaccountPayRepo;
- @Resource
- private AflPaccountRefundCountRepo aflPaccountRefundCountRepo;
- @Resource
- private RefundStatsRepo refundStatsRepo;
- @Resource
- private AflOrderInfoRepo aflOrderInfoRepo;
-
- @Resource
- private AflReportFromServiceFeeDataService aflReportFromServiceFeeDataService;
-
- @Resource
- private AflServerFeeRefundRepo aflServerFeeRefundRepo;
-
-
- }
|