BUGFIX: format;

This commit is contained in:
shahaibo
2023-10-20 14:47:18 +08:00
parent f18c27fe02
commit 9fa605f83e
134 changed files with 1345 additions and 1203 deletions

View File

@@ -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);
}