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);
|
}
|