|
package org.springblade.modules.extra.service;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import org.apache.ibatis.annotations.Param;
|
import org.springblade.modules.extra.entity.Extra;
|
import org.springblade.modules.extra.vo.ExtraVO;
|
|
/**
|
* 加班服务类
|
*
|
* @author zhongrj
|
* @since 2022-02-28
|
*/
|
public interface ExtraService extends IService<Extra> {
|
|
/**
|
* 自定义分页
|
*
|
* @param page
|
* @param extraVO
|
* @return
|
*/
|
IPage<ExtraVO> selectExtraPage(IPage<ExtraVO> page, @Param("extraVO") ExtraVO extraVO);
|
|
}
|