package cn.stylefeng.guns.modular.bs.locationInfo.service; import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo; import cn.stylefeng.guns.modular.bs.locationInfo.entity.LocationInfo; import cn.stylefeng.guns.modular.bs.locationInfo.model.params.LocationInfoParam; import cn.stylefeng.guns.modular.bs.locationInfo.model.result.LocationInfoResult; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; /** *

* 工位信息 服务类 *

* * @author cl * @since 2022-10-28 */ public interface LocationInfoService extends IService { /** * 新增 * * @author cl * @Date 2022-10-28 */ void add(LocationInfoParam param); /** * 删除 * * @author cl * @Date 2022-10-28 */ void delete(LocationInfoParam param); /** * 更新 * * @author cl * @Date 2022-10-28 */ void update(LocationInfoParam param); /** * 查询单条数据,Specification模式 * * @author cl * @Date 2022-10-28 */ LocationInfoResult findBySpec(LocationInfoParam param); /** * 查询列表,Specification模式 * * @author cl * @Date 2022-10-28 */ List findListBySpec(LocationInfoParam param); /** * 查询分页数据,Specification模式 * * @author cl * @Date 2022-10-28 */ LayuiPageInfo findPageBySpec(LocationInfoParam param); }