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