guoshilong
2024-03-15 cc8bf2663afaf34aef48d7bda688d95c92d83ae9
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
package cn.gistack.sm.sjztmd.service;
 
import cn.gistack.sm.sjztmd.entity.TbResGeneralInvestigation;
import cn.gistack.sm.sjztmd.vo.TbResGeneralInvestigationParam;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.core.tool.api.R;
 
import java.util.List;
 
/**
 * @PROJECT_NAME: skjcmanager
 * @DESCRIPTION:
 * @USER: aix
 * @DATE: 2024/1/3 14:35
 */
public interface ITbResGeneralInvestigationService extends IService<TbResGeneralInvestigation> {
 
    /**
     * 自定义保存或者修改对象方法
     * @param entity
     * @return
     */
    R saveOrUpdateBy(TbResGeneralInvestigation entity);
 
    /**
     * web端批量新增修改填报
     * @param list
     * @param state
     * @return
     */
    R saveOrUpdateByBatch(TbResGeneralInvestigationParam tbResGeneralInvestigationParam);
}