package org.jeecg.modules.fbsBasedate.service; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import org.apache.ibatis.annotations.Param; import org.jeecg.modules.fbsBasedate.entity.FbsTechnologicalProcess; import com.baomidou.mybatisplus.extension.service.IService; /** * @Description: 工艺流程档案 * @author: jeecg-boot * @date: 2021-01-14 * @version: V1.0 */ public interface IFbsTechnologicalProcessService extends IService { void addAll(FbsTechnologicalProcess fbsTechnologicalProcess); void updateAll(FbsTechnologicalProcess fbsTechnologicalProcess); IPage findByPage(IPage page, QueryWrapper queryWrapper); }