integrated_traffic/src/main/java/com/zcloud/controller/eduApp/AppOemManageController.java

47 lines
1.2 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.zcloud.controller.eduApp;
import com.zcloud.controller.base.BaseController;
import com.zcloud.service.eduOem.OemManageService;
import com.zcloud.entity.PageData;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import java.util.HashMap;
import java.util.Map;
/**
* 说明oem管理
* 作者luoxiaobao
* 时间2023-03-14
* 官网www.zcloudchina.com
*/
@Controller
@RequestMapping("/app/oemmanage")
public class AppOemManageController extends BaseController {
@Autowired
private OemManageService oemmanageService;
/**
* 获取数据
*
* @param
* @throws Exception
*/
@RequestMapping(value = "/getOemInfo")
@ResponseBody
public Object findByAppDomainName() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
String errInfo = "success";
PageData pd = new PageData();
pd = this.getPageData();
pd = oemmanageService.findByAppDomainName(pd);
map.put("pd", pd);
map.put("result", errInfo);
return map;
}
}