| | |
| | | package com.gkhy.exam.system.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.gkhy.exam.common.api.CommonPage; |
| | | import com.gkhy.exam.common.api.CommonResult; |
| | | import com.gkhy.exam.common.utils.PageUtils; |
| | | import com.gkhy.exam.common.utils.SecurityUtils; |
| | | import com.gkhy.exam.system.domain.Inconsistent; |
| | | import com.gkhy.exam.system.domain.Meetings; |
| | | import com.gkhy.exam.system.mapper.MeetingsMapper; |
| | | import com.gkhy.exam.system.service.MeetingsService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | |
| | | @Autowired |
| | | private MeetingsMapper meetingsMapper; |
| | | @Override |
| | | public CommonPage selectMeetingsList(Integer companyId) { |
| | | public CommonPage selectMeetingsList(Integer companyId,String year) { |
| | | PageUtils.startPage(); |
| | | List<Meetings> meetings = meetingsMapper.selectMeetingsList(companyId); |
| | | List<Meetings> meetings = meetingsMapper.selectMeetingsList(companyId,year); |
| | | return CommonPage.restPage(meetings); |
| | | } |
| | | |