| | |
| | | package com.ruoyi.service;
|
| | |
|
| | | public class MeetingStatisticService {
|
| | | import com.baomidou.mybatisplus.extension.service.IService;
|
| | | import com.ruoyi.common.core.domain.AjaxResult;
|
| | | import com.ruoyi.domain.MeetingStatistic;
|
| | |
|
| | | public interface MeetingStatisticService extends IService<MeetingStatistic> {
|
| | |
|
| | | AjaxResult updateData(MeetingStatistic meetingStatistic);
|
| | |
|
| | | AjaxResult deleteData(Long[] ids);
|
| | |
|
| | | AjaxResult countData(Long[] familyId ,String applyPerson );
|
| | |
|
| | | AjaxResult addData(MeetingStatistic meetingStatistic);
|
| | | }
|