Newer
Older
newfiber-termite / newfiber-system / newfiber-system-operation / src / main / java / com / newfiber / system / mapper / PlatformJumpMapper.java
@yanghui yanghui on 11 May 996 bytes 白蚁项目初版代码提交
package com.newfiber.system.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.newfiber.system.domain.PlatformJump;
import com.newfiber.system.domain.request.platformJump.PlatformJumpQueryRequest;
import com.newfiber.system.domain.request.platformJump.PlatformTypeNumberRequest;
import org.apache.ibatis.annotations.Param;

import java.util.List;


/**
 * 系统平台跳转Mapper接口
 * 
 * @author newfiber
 * @date 2023-04-11
 */
public interface PlatformJumpMapper extends BaseMapper<PlatformJump>{

    /**
     * 条件查询系统平台跳转列表
     * 
     * @param request 查询条件
     * @return 系统平台跳转集合
     */
    List<PlatformJump> selectByCondition(@Param("request") PlatformJumpQueryRequest request);

	/**
	 * 条件查询系统平台跳转列表
	 *
	 * @param id 查询条件
	 * @return 系统平台跳转集合
	 */
	PlatformJump selectOneById(@Param("id") Long id);

	List<PlatformTypeNumberRequest> querySysdataList();

}