hz-zhhq-app-service/greenH5modul/.svn/pristine/6d/6da88ea0a5cae705726cb5900ab...

31 lines
748 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package common.dataService;
import org.springframework.web.bind.annotation.RequestMapping;
import com.sgcc.uap.mdd.runtime.data.AbstractDataServiceController;
import org.osgi.framework.Bundle;
import org.springframework.stereotype.Controller;
import org.osgi.framework.FrameworkUtil;
/**
* <b>概述</b><br>
* TODO
* <p>
* <b>功能</b><br>
* TODO
*
* @author sunyifei
*/
@Controller
@RequestMapping("/data")
public class DataServiceController extends AbstractDataServiceController {
/**
* @getBundle:获取Bundle
* @return Bundle
* @date 2019-09-15 20:35:50
* @author sunyifei
*/
public Bundle getBundle() {
Bundle bundle = FrameworkUtil.getBundle(DataServiceController.class);
return bundle;
}
}