2023-09-06 14:28:20 +08:00
|
|
|
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> {
|
|
|
|
|
|
2023-10-20 14:47:18 +08:00
|
|
|
/**
|
|
|
|
|
* 自定义分页
|
|
|
|
|
*
|
|
|
|
|
* @param page
|
|
|
|
|
* @param tDesignPythonOutfitDetail
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
List<TDesignPythonOutfitDetailVO> selectTDesignPythonOutfitDetailPage(IPage page, TDesignPythonOutfitDetailVO tDesignPythonOutfitDetail);
|
2023-09-06 14:28:20 +08:00
|
|
|
|
|
|
|
|
}
|