package org.sxkj.odm.feign; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; /** * @Description 绘制像素框错误回调 * @Author AIX * @Date 2025/12/31 11:22 * @Version 1.0 */ @Component @Slf4j public class IDrawPixelBoxClientFallback implements IDrawPixelBoxClient { @Override public Boolean drawImagePixelBox(int type, String tifFilePath, String filePath, String outPath, String points, String geom) { return false; } }