...
|
...
|
@@ -4,6 +4,7 @@ import com.ui.http.HttpRestClient; |
|
|
import com.ui.model.BaseResponse;
|
|
|
import com.ui.model.req.MObjectHostInfoReq;
|
|
|
import com.ui.model.req.MObjectInfoReq;
|
|
|
import com.ui.model.req.TypeInfoReq;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
...
|
...
|
@@ -61,6 +62,12 @@ public class MObjectInfoCtrl { |
|
|
return response;
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/asyMobjectHost")
|
|
|
public BaseResponse asyMobjectHost(int moTypeId) {
|
|
|
BaseResponse response = httpRestClient.defaultGet("/mobject/asyMobjectHost?moTypeId="+moTypeId, BaseResponse.class);
|
|
|
return response;
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/queryHost")
|
|
|
public BaseResponse queryMHostInfo(MObjectHostInfoReq request) {
|
|
|
|
...
|
...
|
@@ -75,4 +82,6 @@ public class MObjectInfoCtrl { |
|
|
BaseResponse response = httpRestClient.defaultGet("/mobject/javaapi", BaseResponse.class);
|
|
|
return response;
|
|
|
}
|
|
|
|
|
|
|
|
|
} |
...
|
...
|
|