| | |
| | | package cn.huge.module.client.api; |
| | | |
| | | import cn.huge.base.common.bo.ReturnBO; |
| | | import cn.huge.module.cases.domain.dto.FileRelateDTO; |
| | | import cn.huge.module.sys.dto.FileTypeTermsDTO; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | */ |
| | | @GetMapping("/api/client/syRegion/getQueAddrByBaiduiLngLat") |
| | | ReturnBO getQueAddrByBaiduiLngLat(@RequestParam(value = "lng") String lng, @RequestParam(value = "lat") String lat); |
| | | |
| | | /** |
| | | * 根据关系编号查询附件关系信息 |
| | | * @url {ctx}/api/v1/fileRelate/listFileRelateByOwnerId |
| | | * @param ownerId 条件 |
| | | * @return Object |
| | | */ |
| | | @GetMapping("/api/client/fileRelate/listFileRelateByOwnerId") |
| | | ReturnBO listFileRelateByOwnerId(@RequestParam(value = "ownerId") String ownerId); |
| | | |
| | | /** |
| | | * 插入多条附件关系记录 |
| | | * @url {ctx}/api/v1/fileRelate/saveFileRelateList |
| | | * @param fileRelateList 关系记录 |
| | | * @return Object |
| | | */ |
| | | @PostMapping("/api/client/fileRelate/saveFileRelateList") |
| | | ReturnBO saveFileRelateList(@RequestBody List<FileRelateDTO> fileRelateList); |
| | | } |