package com.jcdm.main.bs.formulaChildInfoTemp.mapper;
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.jcdm.main.bs.formulaChildInfoTemp.domain.BsFormulaChildInfoTemp;
|
|
/**
|
* 配方配置子信息-备份Mapper接口
|
*
|
* @author Yi
|
* @date 2024-07-15
|
*/
|
public interface BsFormulaChildInfoTempMapper extends BaseMapper<BsFormulaChildInfoTemp>
|
{
|
/**
|
* 查询配方配置子信息-备份
|
*
|
* @param id 配方配置子信息-备份主键
|
* @return 配方配置子信息-备份
|
*/
|
public BsFormulaChildInfoTemp selectBsFormulaChildInfoTempById(Long id);
|
|
/**
|
* 查询配方配置子信息-备份列表
|
*
|
* @param bsFormulaChildInfoTemp 配方配置子信息-备份
|
* @return 配方配置子信息-备份集合
|
*/
|
public List<BsFormulaChildInfoTemp> selectBsFormulaChildInfoTempList(BsFormulaChildInfoTemp bsFormulaChildInfoTemp);
|
|
/**
|
* 新增配方配置子信息-备份
|
*
|
* @param bsFormulaChildInfoTemp 配方配置子信息-备份
|
* @return 结果
|
*/
|
public int insertBsFormulaChildInfoTemp(BsFormulaChildInfoTemp bsFormulaChildInfoTemp);
|
|
/**
|
* 修改配方配置子信息-备份
|
*
|
* @param bsFormulaChildInfoTemp 配方配置子信息-备份
|
* @return 结果
|
*/
|
public int updateBsFormulaChildInfoTemp(BsFormulaChildInfoTemp bsFormulaChildInfoTemp);
|
|
/**
|
* 删除配方配置子信息-备份
|
*
|
* @param id 配方配置子信息-备份主键
|
* @return 结果
|
*/
|
public int deleteBsFormulaChildInfoTempById(Long id);
|
|
/**
|
* 批量删除配方配置子信息-备份
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteBsFormulaChildInfoTempByIds(Long[] ids);
|
}
|