IPlusService.java 850 Bytes
//package com.huaheng.framework.mybatisPlus;
//
//import com.baomidou.mybatisplus.mapper.EntityWrapper;
//import com.baomidou.mybatisplus.plugins.Page;
//import com.baomidou.mybatisplus.service.AutoService;
//import java.util.List;
//import java.util.Map;
//
//
//public interface IPlusService<T> extends IService<T> {
//
//    T selectFirstEntity(T entity)  ;
//
//
//    List<T> selectListEntityByEqual(T entity)  ;
//
//
//    List<Map<String, Object>> selectListMapByEqual(T entity, String SqlSelect)  ;
//
//
//    Page<Map<String, Object>> selectMapsPage(Page page, T entity)  ;
//
//
//    Page<T> selectPage(Page<T> page, T entity)  ;
//
//
//    Integer selectCount(T entity) ;
//
//
//    boolean updateByCondition(T record, T condition) ;
//
//
//    boolean delete(T entity)  ;
//
//
//    <T> EntityWrapper getWrapper (T entity)   ;
//}