提交 328fc30c 编写于 作者: ibizdev's avatar ibizdev

ibizdev提交

上级 84621eb5
...@@ -16,43 +16,43 @@ import com.ibiz.util.SearchContext; ...@@ -16,43 +16,43 @@ import com.ibiz.util.SearchContext;
*/ */
public interface healthcheckFeignClient { public interface healthcheckFeignClient {
@RequestMapping(method = RequestMethod.GET, value = "/htsc-pos-nms/api2/healthchecks/select") @RequestMapping(method = RequestMethod.GET, value = "/htsc-pos-nms/api/healthchecks/select")
public Page<healthcheckImpl> select(); public Page<healthcheckImpl> select();
@RequestMapping(method = RequestMethod.GET, value = "/htsc-pos-nms/api2/healthchecks/{healthcheckid}/getdraft") @RequestMapping(method = RequestMethod.GET, value = "/htsc-pos-nms/api/healthchecks/{healthcheckid}/getdraft")
public healthcheckImpl getDraft(@PathVariable("healthcheckid") String healthcheckid,@RequestBody healthcheckImpl healthcheck); public healthcheckImpl getDraft(@PathVariable("healthcheckid") String healthcheckid,@RequestBody healthcheckImpl healthcheck);
@RequestMapping(method = RequestMethod.DELETE, value = "/htsc-pos-nms/api2/healthchecks/{healthcheckid}") @RequestMapping(method = RequestMethod.DELETE, value = "/htsc-pos-nms/api/healthchecks/{healthcheckid}")
public Boolean remove(@PathVariable("healthcheckid") String healthcheckid); public Boolean remove(@PathVariable("healthcheckid") String healthcheckid);
@RequestMapping(method = RequestMethod.POST, value = "/htsc-pos-nms/api2/healthchecks/{healthcheckid}/checkkey") @RequestMapping(method = RequestMethod.POST, value = "/htsc-pos-nms/api/healthchecks/{healthcheckid}/checkkey")
public healthcheckImpl checkKey(@PathVariable("healthcheckid") String healthcheckid,@RequestBody healthcheckImpl healthcheck); public healthcheckImpl checkKey(@PathVariable("healthcheckid") String healthcheckid,@RequestBody healthcheckImpl healthcheck);
@RequestMapping(method = RequestMethod.PUT, value = "/htsc-pos-nms/api2/healthchecks/{healthcheckid}") @RequestMapping(method = RequestMethod.PUT, value = "/htsc-pos-nms/api/healthchecks/{healthcheckid}")
public healthcheckImpl update(@PathVariable("healthcheckid") String healthcheckid,@RequestBody healthcheckImpl healthcheck); public healthcheckImpl update(@PathVariable("healthcheckid") String healthcheckid,@RequestBody healthcheckImpl healthcheck);
@RequestMapping(method = RequestMethod.POST, value = "/htsc-pos-nms/api2/healthchecks") @RequestMapping(method = RequestMethod.POST, value = "/htsc-pos-nms/api/healthchecks")
public healthcheckImpl create(@RequestBody healthcheckImpl healthcheck); public healthcheckImpl create(@RequestBody healthcheckImpl healthcheck);
@RequestMapping(method = RequestMethod.POST, value = "/htsc-pos-nms/api2/healthchecks/{healthcheckid}/test") @RequestMapping(method = RequestMethod.POST, value = "/htsc-pos-nms/api/healthchecks/{healthcheckid}/test")
public healthcheckImpl test(@PathVariable("healthcheckid") String healthcheckid,@RequestBody healthcheckImpl healthcheck); public healthcheckImpl test(@PathVariable("healthcheckid") String healthcheckid,@RequestBody healthcheckImpl healthcheck);
@RequestMapping(method = RequestMethod.GET, value = "/htsc-pos-nms/api2/healthchecks/{healthcheckid}") @RequestMapping(method = RequestMethod.GET, value = "/htsc-pos-nms/api/healthchecks/{healthcheckid}")
public healthcheckImpl get(@PathVariable("healthcheckid") String healthcheckid); public healthcheckImpl get(@PathVariable("healthcheckid") String healthcheckid);
@RequestMapping(method = RequestMethod.POST, value = "/htsc-pos-nms/api2/healthchecks/{healthcheckid}/save") @RequestMapping(method = RequestMethod.POST, value = "/htsc-pos-nms/api/healthchecks/{healthcheckid}/save")
public healthcheckImpl save(@PathVariable("healthcheckid") String healthcheckid,@RequestBody healthcheckImpl healthcheck); public healthcheckImpl save(@PathVariable("healthcheckid") String healthcheckid,@RequestBody healthcheckImpl healthcheck);
@RequestMapping(method = RequestMethod.GET, value = "/htsc-pos-nms/api2/healthchecks/fetchdefault") @RequestMapping(method = RequestMethod.GET, value = "/htsc-pos-nms/api/healthchecks/fetchdefault")
public Page<healthcheckImpl> fetchDefault(SearchContext context); public Page<healthcheckImpl> fetchDefault(SearchContext context);
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册