|
@ -1,5 +1,6 @@
|
|
package com.yihu.ehr.analyze.feign;
|
|
package com.yihu.ehr.analyze.feign;
|
|
|
|
|
|
|
|
import com.yihu.ehr.analyze.common.AnalyzerApi;
|
|
import com.yihu.ehr.constants.ApiVersion;
|
|
import com.yihu.ehr.constants.ApiVersion;
|
|
import com.yihu.ehr.constants.MicroServices;
|
|
import com.yihu.ehr.constants.MicroServices;
|
|
import com.yihu.ehr.constants.ServiceApi;
|
|
import com.yihu.ehr.constants.ServiceApi;
|
|
@ -55,4 +56,9 @@ public interface StandardServiceClient {
|
|
@RequestParam(value = "page", required = false) int page,
|
|
@RequestParam(value = "page", required = false) int page,
|
|
@ApiParam(name = "version", value = "版本", defaultValue = "")
|
|
@ApiParam(name = "version", value = "版本", defaultValue = "")
|
|
@RequestParam(value = "version") String version);
|
|
@RequestParam(value = "version") String version);
|
|
|
|
|
|
|
|
@RequestMapping(value = AnalyzerApi.StandVersion.GetLastStandByOrgCode, method = RequestMethod.GET)
|
|
|
|
@ApiOperation(value = "获取某个机构已发布的最新版本号", notes = "获取某个机构已发布的最新版本号")
|
|
|
|
String getLastStandByOrgCode(@ApiParam(value="机构code")
|
|
|
|
@RequestParam(value = "orgCode") String orgCode);
|
|
}
|
|
}
|