change - 吸附内胆、铝内胆看板
parent
e7dea1b626
commit
4d2c6a9bfd
@ -0,0 +1,36 @@
|
||||
package com.ruoyi.web.controller.scada;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
/**
|
||||
* 吸附内胆
|
||||
* @author WenJY
|
||||
* @date 2021年11月25日 15:13
|
||||
*/
|
||||
@Controller
|
||||
@RequestMapping("/Scada/Absorb")
|
||||
public class AbsorbController {
|
||||
|
||||
@GetMapping("/ProductionPlan")
|
||||
public String ProductionPlan(HttpServletRequest req, HttpServletResponse resp) {
|
||||
String url = "http://10.100.71.101:8012/system/Absorb?id=1";
|
||||
return "redirect:"+url;
|
||||
}
|
||||
|
||||
@GetMapping("/DeviceInfo")
|
||||
public String DeviceInfo(HttpServletRequest req, HttpServletResponse resp) {
|
||||
String url = "http://10.100.71.101:8012/system/Absorb/device";
|
||||
return "redirect:"+url;
|
||||
}
|
||||
|
||||
@GetMapping("/Preinstalled")
|
||||
public String Preinstalled(HttpServletRequest req, HttpServletResponse resp) {
|
||||
String url = "http://10.100.71.101:8012/system/Absorb/preinstalled";
|
||||
return "redirect:"+url;
|
||||
}
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
package com.ruoyi.web.controller.scada;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
/**
|
||||
* 铝内胆
|
||||
* @author WenJY
|
||||
* @date 2021年11月25日 15:13
|
||||
*/
|
||||
@Controller
|
||||
@RequestMapping("/Scada/Aluminum")
|
||||
public class AluminumController {
|
||||
|
||||
@GetMapping("/ProductionPlan")
|
||||
public String ProductionPlan(HttpServletRequest req, HttpServletResponse resp) {
|
||||
String url = "http://10.100.71.101:8012/system/Aluminum";
|
||||
return "redirect:"+url;
|
||||
}
|
||||
|
||||
/*@GetMapping("/DeviceInfo")
|
||||
public String DeviceInfo(HttpServletRequest req, HttpServletResponse resp) {
|
||||
String url = "http://10.100.71.101:8012/system/Foamer?id=2";
|
||||
return "redirect:"+url;
|
||||
}*/
|
||||
}
|
Loading…
Reference in New Issue