| | |
| | | import java.util.Map;
|
| | | import java.util.Set;
|
| | |
|
| | | import javax.annotation.Resource;
|
| | |
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.data.mongodb.core.MongoTemplate;
|
| | | import org.springframework.data.mongodb.core.aggregation.Aggregation;
|
| | |
| | | @Service
|
| | | public class HistoryServiceImpl implements HistoryService {
|
| | |
|
| | | @Autowired
|
| | | @Resource
|
| | | private AccountService accountService;
|
| | |
|
| | | @Autowired
|
| | | @Resource
|
| | | private HistoryMapper historyMapper;
|
| | |
|
| | | @Autowired
|
| | | @Resource
|
| | | private MongoTemplate mongoTemplate;
|
| | |
|
| | | @Override
|