| | |
| | | import com.ruoyi.common.core.domain.AjaxResult;
|
| | | import com.ruoyi.domain.MeetingStatistic;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | public interface MeetingStatisticService extends IService<MeetingStatistic> {
|
| | |
|
| | | AjaxResult updateData(MeetingStatistic meetingStatistic);
|
| | |
|
| | | AjaxResult deleteData(Long[] ids);
|
| | |
|
| | | AjaxResult countData(Long[] familyId ,String applyPerson );
|
| | | AjaxResult DataList(MeetingStatistic meetingStatistic);
|
| | |
|
| | | AjaxResult addData(MeetingStatistic meetingStatistic);
|
| | |
|
| | | List<MeetingStatistic> selectByIds(Long[] ids);
|
| | |
|
| | | AjaxResult selectDataList(MeetingStatistic meetingStatistic, Integer pageNum, Integer pageSize);
|
| | | }
|