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

31 lines
748 B
Plaintext
Raw Normal View History

2025-01-21 13:12:35 +08:00
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;
}
}