|
@@ -469,4 +469,18 @@ public class ConsultancyReimbursementInfoController {
|
|
|
public void updateOldData(){
|
|
|
service.updateOldData();
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询文件补充(最新一条)
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @ApiOperation(value = "查询文件补充")
|
|
|
+ @GetMapping("/findFileByReimId")
|
|
|
+ public ResponseEntity<ConsultancyReimbursementFileSupplement> findFileByReimId(@RequestParam String id) throws Exception{
|
|
|
+ ConsultancyReimbursementFileSupplement dto = service.findFileByReimId(id);
|
|
|
+ return ResponseEntity.ok(dto);
|
|
|
+ }
|
|
|
}
|