| | |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | * @return ReturnBO |
| | | */ |
| | | @PostMapping("/api/client/fileInfo/listIdTypeInfoByOwnerIdList") |
| | | ReturnBO listTypeInfoByOwnerIdList(@RequestBody Map<String, Object> term, @RequestParam(value = "mainId") String mainId); |
| | | ReturnBO listTypeInfoByOwnerIdList(@RequestBody Map<String, Object> term); |
| | | |
| | | /** |
| | | * 附件中心-根据多个所属编号查询附件 |
| | |
| | | * @return ReturnBO |
| | | */ |
| | | @PostMapping("/api/client/fileInfo/listInfoByOwnerIdList") |
| | | ReturnBO listInfoByOwnerIdList(@RequestBody Map<String, Object> term, @RequestParam(value = "mainId") String mainId); |
| | | ReturnBO listInfoByOwnerIdList(@RequestBody Map<String, Object> term); |
| | | |
| | | /** |
| | | * 附件中心-根据多个所属编号查询附件 |
| | |
| | | ReturnBO getTimeLimit(@RequestParam String limitTable, @RequestParam(value = "limitType") String limitType); |
| | | |
| | | /** |
| | | * 获取时限 |
| | | * @url {ctx}/api/client/syTimeLimit/getExpireTime?ownerIds= |
| | | * @param computeTime |
| | | * @param limitType |
| | | * @return |
| | | */ |
| | | @GetMapping("/api/client/syTimeLimit/getExpireTime") |
| | | ReturnBO getExpireTime(@RequestParam(value = "computeTime") Date computeTime, @RequestParam(value = "limitType") String limitType); |
| | | |
| | | /** |
| | | * 根据条件删除附件关系 |
| | | * @url {ctx}/api/v1/fileRelate/removeFileRelate |
| | | * @param fileTypeTermsDTO 条件 |
| | |
| | | */ |
| | | @PostMapping("/api/client/fileRelate/removeFileRelate") |
| | | ReturnBO removeFileRelate(@RequestBody FileTypeTermsDTO fileTypeTermsDTO); |
| | | |
| | | /** |
| | | * 根据百度地图经纬度获取街道 |
| | | * @url {ctx}/api/client/syRegion/getQueAddrByBaiduiLngLat |
| | | * @param lng 经度 |
| | | * @param lat 维度 |
| | | * @return |
| | | */ |
| | | @GetMapping("/api/client/syRegion/getQueAddrByBaiduiLngLat") |
| | | ReturnBO getQueAddrByBaiduiLngLat(@RequestParam(value = "lng") String lng, @RequestParam(value = "lat") String lat); |
| | | } |