BUGFIX: format;
This commit is contained in:
@@ -25,6 +25,7 @@ public interface PanToneService extends IService<PanTone> {
|
||||
* @return
|
||||
*/
|
||||
PantoneVO getByHSV(Integer h, Integer s, Integer v);
|
||||
|
||||
/**
|
||||
* 根据TCX值查询
|
||||
*
|
||||
@@ -35,22 +36,24 @@ public interface PanToneService extends IService<PanTone> {
|
||||
|
||||
/**
|
||||
* 根据TRGB值查询
|
||||
*
|
||||
* @param r
|
||||
* @param g
|
||||
* @param b
|
||||
* @return
|
||||
*/
|
||||
PantoneVO getByRGB(Integer r,Integer g,Integer b);
|
||||
PantoneVO getByRGB(Integer r, Integer g, Integer b);
|
||||
|
||||
Map<String,PantoneVO> getPantoneByRgbBatch(List<String> colors);
|
||||
Map<String, PantoneVO> getPantoneByRgbBatch(List<String> colors);
|
||||
|
||||
PantoneVO getPantoneByRgb(String color);
|
||||
|
||||
/**
|
||||
* 根据hsv批量查询
|
||||
*
|
||||
* @param rgbByHsvBatch
|
||||
* @return
|
||||
*/
|
||||
List<PantoneVO> getRgbByHsvBatch(List<GetRgbByHsvBatchDTO> rgbByHsvBatch);
|
||||
List<PantoneVO> getRgbByHsvBatch(List<GetRgbByHsvBatchDTO> rgbByHsvBatch);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user