2023-09-06 14:28:20 +08:00
|
|
|
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张图片 服务类
|
|
|
|
|
*
|
2023-09-12 09:51:12 +08:00
|
|
|
* @author SHAHAIBO
|
2023-09-06 14:28:20 +08:00
|
|
|
* @since 2023-09-04
|
|
|
|
|
*/
|
|
|
|
|
public interface ITDesignPythonOutfitService extends IService<TDesignPythonOutfit> {
|
|
|
|
|
|
2023-10-20 14:47:18 +08:00
|
|
|
/**
|
|
|
|
|
* 自定义分页
|
|
|
|
|
*
|
|
|
|
|
* @param page
|
|
|
|
|
* @param tDesignPythonOutfit
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
IPage<TDesignPythonOutfitVO> selectTDesignPythonOutfitPage(IPage<TDesignPythonOutfitVO> page, TDesignPythonOutfitVO tDesignPythonOutfit);
|
2023-09-06 14:28:20 +08:00
|
|
|
|
2023-10-20 14:47:18 +08:00
|
|
|
TDesignPythonOutfit getByDesignItemId(Long designItemId);
|
2023-09-06 14:28:20 +08:00
|
|
|
}
|