|
@@ -6,9 +6,7 @@ import com.wx.blink.backend.service.IFrameworkService;
|
|
|
import com.wx.blink.base.common.domain.ResponseDTO;
|
|
import com.wx.blink.base.common.domain.ResponseDTO;
|
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
import javax.annotation.Resource;
|
|
|
import javax.validation.Valid;
|
|
import javax.validation.Valid;
|
|
@@ -27,4 +25,12 @@ public class FrameworkController {
|
|
|
return frameworkService.supportsFrameworkQuery(qry);
|
|
return frameworkService.supportsFrameworkQuery(qry);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @Operation(summary = "查询人员")
|
|
|
|
|
+ @GetMapping("/supports/framework/personnel/{id}")
|
|
|
|
|
+ public ResponseDTO<List<FrameworkDTO>> supportsPersonnelQuery(@PathVariable("id") Long id){
|
|
|
|
|
+ return frameworkService.supportsPersonnelQuery(id);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
}
|
|
}
|