28 lines
676 B
Java
28 lines
676 B
Java
|
|
package com.ai.da.mapper;
|
||
|
|
|
||
|
|
|
||
|
|
import com.ai.da.common.config.mybatis.plus.CommonMapper;
|
||
|
|
import com.ai.da.mapper.entity.TDesignPythonOutfit;
|
||
|
|
import com.ai.da.model.vo.TDesignPythonOutfitVO;
|
||
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* design item表 存对应design的8张图片 Mapper 接口
|
||
|
|
*
|
||
|
|
* @author SHAHAIBO
|
||
|
|
* @since 2023-09-04
|
||
|
|
*/
|
||
|
|
public interface TDesignPythonOutfitMapper extends CommonMapper<TDesignPythonOutfit> {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 自定义分页
|
||
|
|
*
|
||
|
|
* @param page
|
||
|
|
* @param tDesignPythonOutfit
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
List<TDesignPythonOutfitVO> selectTDesignPythonOutfitPage(IPage page, TDesignPythonOutfitVO tDesignPythonOutfit);
|
||
|
|
|
||
|
|
}
|