|
|
@@ -14,6 +14,13 @@ import org.springframework.web.bind.annotation.RequestParam;
|
|
|
@FeignClient(name = "fullcardserver/organizationFeign/manager")
|
|
|
public interface OrganizationFeignService {
|
|
|
|
|
|
+ @Operation(summary = "机构简单信息", description = "机构简单信息")
|
|
|
+ @RequestMapping(value = "getDetail", method = RequestMethod.GET)
|
|
|
+ ResultContent<OrganizationSimpleModel> getDetail(
|
|
|
+ @Parameter(name = "oid", description = "oid", required = true)
|
|
|
+ @RequestParam(name = "oid") String oid);
|
|
|
+
|
|
|
+
|
|
|
@Operation(summary = "得到项目信息", description = "得到项目信息")
|
|
|
@RequestMapping(value = "getProjectInfo", method = RequestMethod.GET)
|
|
|
ResultContent<ProjectOrgModel> getProjectInfo(@Parameter(name = "projectOid", description = "oid", required = false) @RequestParam(name = "projectOid") String projectOid);
|