This commit is contained in:
苏竹红
2023-06-21 15:56:14 +08:00
parent bbf3d47de5
commit 72a3bcc850
8 changed files with 124 additions and 2 deletions

View File

@@ -25,6 +25,7 @@ import com.cool.store.response.ResponseResult;
import com.cool.store.service.AliyunService;
import com.cool.store.service.EnterpriseSyncService;
import com.cool.store.service.EnterpriseUserService;
import com.cool.store.service.GaoDeService;
import com.cool.store.vo.cuser.IdentityCardInfoVO;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
@@ -47,6 +48,8 @@ public class TestController {
@Resource
private EnterpriseUserService enterpriseUserService;
@Resource
GaoDeService gaoDeService;
@Resource
private ISVHttpRequest isvHttpRequest;
@Resource
private HyOpenAreaInfoMapper hyOpenAreaInfoMapper;
@@ -239,4 +242,8 @@ public class TestController {
return ResponseResult.success(enterpriseUserService.getDevelopmentByZoneId(zoneId));
}
@GetMapping("getGaoDePicture")
public ResponseResult getDevelopmentByZoneId(){
return ResponseResult.success(gaoDeService.getGaoDePicture(""));
}
}