27 lines
759 B
Java
27 lines
759 B
Java
package com.ai.da.service;
|
|
|
|
import com.ai.da.mapper.entity.TDesignPythonOutfit;
|
|
import com.ai.da.model.vo.TDesignPythonOutfitVO;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
|
/**
|
|
* design item表 存对应design的8张图片 服务类
|
|
*
|
|
* @author SHAHAIBO
|
|
* @since 2023-09-04
|
|
*/
|
|
public interface ITDesignPythonOutfitService extends IService<TDesignPythonOutfit> {
|
|
|
|
/**
|
|
* 自定义分页
|
|
*
|
|
* @param page
|
|
* @param tDesignPythonOutfit
|
|
* @return
|
|
*/
|
|
IPage<TDesignPythonOutfitVO> selectTDesignPythonOutfitPage(IPage<TDesignPythonOutfitVO> page, TDesignPythonOutfitVO tDesignPythonOutfit);
|
|
|
|
TDesignPythonOutfit getByDesignItemId(Long designItemId);
|
|
}
|