28 lines
707 B
Java
28 lines
707 B
Java
|
|
package com.ai.da.mapper;
|
||
|
|
|
||
|
|
import com.ai.da.common.config.mybatis.plus.CommonMapper;
|
||
|
|
import com.ai.da.mapper.entity.TDesignPythonOutfitDetail;
|
||
|
|
import com.ai.da.model.vo.TDesignPythonOutfitDetailVO;
|
||
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* design item详情表 Mapper 接口
|
||
|
|
*
|
||
|
|
* @author SHAHAIBO
|
||
|
|
* @since 2023-09-04
|
||
|
|
*/
|
||
|
|
public interface TDesignPythonOutfitDetailMapper extends CommonMapper<TDesignPythonOutfitDetail> {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 自定义分页
|
||
|
|
*
|
||
|
|
* @param page
|
||
|
|
* @param tDesignPythonOutfitDetail
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
List<TDesignPythonOutfitDetailVO> selectTDesignPythonOutfitDetailPage(IPage page, TDesignPythonOutfitDetailVO tDesignPythonOutfitDetail);
|
||
|
|
|
||
|
|
}
|