package cn.stylefeng.guns.modular.bs.batchCodeStorage.service; import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo; import cn.stylefeng.guns.modular.bs.batchCodeStorage.entity.BatchCodeStorage; import cn.stylefeng.guns.modular.bs.batchCodeStorage.model.params.BatchCodeStorageParam; import cn.stylefeng.guns.modular.bs.batchCodeStorage.model.result.BatchCodeStorageResult; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; /** *

* 批次存储临时表 服务类 *

* * @author zrm * @since 2023-02-15 */ public interface BatchCodeStorageService extends IService { /** * 新增 * * @author zrm * @Date 2023-02-15 */ void add(BatchCodeStorageParam param); /** * 删除 * * @author zrm * @Date 2023-02-15 */ void delete(BatchCodeStorageParam param); /** * 更新 * * @author zrm * @Date 2023-02-15 */ void update(BatchCodeStorageParam param); /** * 查询单条数据,Specification模式 * * @author zrm * @Date 2023-02-15 */ BatchCodeStorageResult findBySpec(BatchCodeStorageParam param); /** * 查询列表,Specification模式 * * @author zrm * @Date 2023-02-15 */ List findListBySpec(BatchCodeStorageParam param); /** * 查询分页数据,Specification模式 * * @author zrm * @Date 2023-02-15 */ LayuiPageInfo findPageBySpec(BatchCodeStorageParam param); }