whywhyo
2023-07-11 2322a5e61aef24a39e948c66e1fc554c8fcac570
zhang-content/src/main/java/com/ruoyi/service/ZfEventService.java
@@ -4,6 +4,7 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.domain.ZfEvent;
import org.springframework.web.multipart.MultipartFile;
import java.util.List;
@@ -17,7 +18,14 @@
 */
public interface ZfEventService extends IService<ZfEvent> {
    AjaxResult selectEventList(ZfEvent zfEvent, Integer pageNum, Integer pageSize);
    AjaxResult selectDataList(ZfEvent zfEvent, Integer pageNum, Integer pageSize);
    List<ZfEvent> selectByCondition(ZfEvent zfEvent);
    List<ZfEvent> selectByIds(Long[] ids);
    AjaxResult addData(ZfEvent zfEvent);
    AjaxResult addData2(ZfEvent zfEvent);
    AjaxResult importExcel(MultipartFile file);
}