package cn.stylefeng.guns.modular.bs.materialInfo.service;
|
|
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
|
import cn.stylefeng.guns.modular.bs.materialInfo.entity.MaterialInfo;
|
import cn.stylefeng.guns.modular.bs.materialInfo.model.params.MaterialInfoParam;
|
import cn.stylefeng.guns.modular.bs.materialInfo.model.result.MaterialInfoResult;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 物料信息 服务类
|
* </p>
|
*
|
* @author zrm
|
* @since 2023-02-15
|
*/
|
public interface MaterialInfoService extends IService<MaterialInfo> {
|
|
/**
|
* 新增
|
*
|
* @author zrm
|
* @Date 2023-02-15
|
*/
|
void add(MaterialInfoParam param);
|
|
/**
|
* 删除
|
*
|
* @author zrm
|
* @Date 2023-02-15
|
*/
|
void delete(MaterialInfoParam param);
|
|
/**
|
* 更新
|
*
|
* @author zrm
|
* @Date 2023-02-15
|
*/
|
void update(MaterialInfoParam param);
|
|
/**
|
* 查询单条数据,Specification模式
|
*
|
* @author zrm
|
* @Date 2023-02-15
|
*/
|
MaterialInfoResult findBySpec(MaterialInfoParam param);
|
|
/**
|
* 查询列表,Specification模式
|
*
|
* @author zrm
|
* @Date 2023-02-15
|
*/
|
List<MaterialInfoResult> findListBySpec(MaterialInfoParam param);
|
|
/**
|
* 查询分页数据,Specification模式
|
*
|
* @author zrm
|
* @Date 2023-02-15
|
*/
|
LayuiPageInfo findPageBySpec(MaterialInfoParam param);
|
|
}
|