# Conflicts: # src/main/java/com/ai/da/model/vo/DesignPythonOutfitVO.java # src/main/java/com/ai/da/python/PythonService.java # src/main/java/com/ai/da/service/impl/TDesignPythonOutfitDetailServiceImpl.java
27 lines
732 B
Java
27 lines
732 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);
|
|
}
|