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