1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| 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;
| }
| }
|
|