package cn.stylefeng.guns.modular.zsx.bs.formulaChild.service;
|
|
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
|
import cn.stylefeng.guns.modular.zsx.bs.formulaChild.entity.FormulaChildInfo;
|
import cn.stylefeng.guns.modular.zsx.bs.formulaChild.model.params.FormulaChildInfoParam;
|
import cn.stylefeng.guns.modular.zsx.bs.formulaChild.model.result.FormulaChildInfoResult;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 配方配置子信息 服务类
|
* </p>
|
*
|
* @author ruimin
|
* @since 2023-10-09
|
*/
|
public interface FormulaChildInfoService extends IService<FormulaChildInfo> {
|
|
/**
|
* 新增
|
*
|
* @author ruimin
|
* @Date 2023-10-09
|
*/
|
void add(FormulaChildInfoParam param);
|
|
/**
|
* 删除
|
*
|
* @author ruimin
|
* @Date 2023-10-09
|
*/
|
void delete(FormulaChildInfoParam param);
|
|
/**
|
* 更新
|
*
|
* @author ruimin
|
* @Date 2023-10-09
|
*/
|
void update(FormulaChildInfoParam param);
|
|
/**
|
* 查询单条数据,Specification模式
|
*
|
* @author ruimin
|
* @Date 2023-10-09
|
*/
|
FormulaChildInfoResult findBySpec(FormulaChildInfoParam param);
|
|
/**
|
* 查询列表,Specification模式
|
*
|
* @author ruimin
|
* @Date 2023-10-09
|
*/
|
List<FormulaChildInfoResult> findListBySpec(FormulaChildInfoParam param);
|
|
/**
|
* 查询分页数据,Specification模式
|
*
|
* @author ruimin
|
* @Date 2023-10-09
|
*/
|
LayuiPageInfo findPageBySpec(FormulaChildInfoParam param);
|
|
}
|