21 lines
552 B
Java
21 lines
552 B
Java
package com.ai.da.mapper;
|
|
|
|
import com.ai.da.common.config.mybatis.plus.CommonMapper;
|
|
import com.ai.da.mapper.entity.PanTone;
|
|
import com.ai.da.model.dto.GetRgbByHsvBatchDTO;
|
|
import io.swagger.v3.oas.annotations.Parameter;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Mapper 接口
|
|
*
|
|
* @author easy-generator
|
|
* @since 2022-06-13
|
|
*/
|
|
public interface PanToneMapper extends CommonMapper<PanTone> {
|
|
|
|
List<PanTone> getRgbByHsvBatch(@Param("rgbByHsvBatch") List<GetRgbByHsvBatchDTO> rgbByHsvBatch);
|
|
}
|