feige
2024-06-10 f34203dacf5485b06d9d80618e5e14cf4463c2d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.ruoyi.service;
 
 
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;
 
/**
 * <p>
 * 家庭大事件表 服务类
 * </p>
 *
 * @author ojq
 * @since 2023-03-12
 */
public interface ZfEventService extends IService<ZfEvent> {
 
    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);
 
    AjaxResult updateData(ZfEvent zfEvent);
 
    AjaxResult deleteData(Long[] ids);
}