package cn.stylefeng.guns.base.db.service; import cn.stylefeng.guns.base.db.entity.DatabaseInfo; import cn.stylefeng.guns.base.db.model.params.DatabaseInfoParam; import cn.stylefeng.guns.base.db.model.result.DatabaseInfoResult; import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; /** *

* 数据库信息表 服务类 *

* * @author stylefeng * @since 2019-06-15 */ public interface DatabaseInfoService extends IService { /** * 新增 * * @author stylefeng * @Date 2019-06-15 */ void add(DatabaseInfoParam param); /** * 删除 * * @author stylefeng * @Date 2019-06-15 */ void delete(DatabaseInfoParam param); /** * 更新 * * @author stylefeng * @Date 2019-06-15 */ void update(DatabaseInfoParam param); /** * 查询单条数据,Specification模式 * * @author stylefeng * @Date 2019-06-15 */ DatabaseInfoResult findBySpec(DatabaseInfoParam param); /** * 查询列表,Specification模式 * * @author stylefeng * @Date 2019-06-15 */ List findListBySpec(DatabaseInfoParam param); /** * 查询分页数据,Specification模式 * * @author stylefeng * @Date 2019-06-15 */ LayuiPageInfo findPageBySpec(DatabaseInfoParam param); }