| | |
| | | |
| | | @Test |
| | | public void dynamicProfit() { |
| | | memberProfitService.dynamicProfit(45L); |
| | | memberProfitService.dynamicProfit(16L); |
| | | } |
| | | |
| | | |
| | | @Test |
| | | public void staticProfit() { |
| | | memberProfitService.staticProfit(); |
| | | } |
| | | |
| | | @Test |
| | |
| | | memberProfitService.thankfulProfit(); |
| | | } |
| | | |
| | | @Test |
| | | public void rankProfit() { |
| | | memberProfitService.rankProfit(); |
| | | } |
| | | |
| | | @Autowired |
| | | private MallOrderInfoMapper mallOrderInfoMapper; |
| | | |
| | | @Test |
| | | public void directorProfitTest() { |
| | | memberProfitService.storeAndDirectorProfit(new Date()); |
| | | memberProfitService.storeAndDirectorProfit(null); |
| | | } |
| | | |
| | | @Autowired |