| | |
| | | import cn.exrick.xboot.your.mapper.EventLogMapper; |
| | | import cn.exrick.xboot.your.entity.EventLog; |
| | | import cn.exrick.xboot.your.service.IEventLogService; |
| | | import cn.exrick.xboot.your.vo.Month; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | |
| | | @Autowired |
| | | private EventLogMapper eventLogMapper; |
| | | |
| | | @Override |
| | | public Month getEventNum(int year, int type) { |
| | | return eventLogMapper.getEventNum(year,type); |
| | | } |
| | | } |