24 lines
583 B
Java
24 lines
583 B
Java
|
|
package com.wms.controller.parent;
|
||
|
|
|
||
|
|
import com.wms.controller.BaseController;
|
||
|
|
import lombok.RequiredArgsConstructor;
|
||
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
|
import org.springframework.stereotype.Controller;
|
||
|
|
import org.springframework.web.bind.annotation.CrossOrigin;
|
||
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 四向车交互
|
||
|
|
* @author icewint
|
||
|
|
*/
|
||
|
|
@Controller
|
||
|
|
@CrossOrigin
|
||
|
|
@RequestMapping(value = "/wms/mes")
|
||
|
|
@RequiredArgsConstructor(onConstructor = @__(@Autowired))
|
||
|
|
public class ContainerController extends BaseController {
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|