File was renamed from src/main/java/com/zy/common/web/wms/WorkController.java |
| | |
| | | package com.zy.common.web.wms; |
| | | package com.zy.asrs.controller; |
| | | |
| | | import com.alibaba.fastjson.JSON; |
| | | import com.core.annotations.ManagerAuth; |
| | | import com.core.common.R; |
| | | import com.zy.asrs.entity.param.FullStoreParam; |
| | | import com.zy.asrs.service.BasDevpService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | |
| | | return R.ok().add(basDevpService.getAvailableDevp()); |
| | | } |
| | | |
| | | @RequestMapping("/put/site/start") |
| | | @ManagerAuth(memo = "开始入库") |
| | | public R start() { |
| | | @RequestMapping("/full/store/start") |
| | | @ManagerAuth(memo = "全板入库") |
| | | public R start(@RequestBody FullStoreParam fullStoreParam) { |
| | | |
| | | System.out.println(JSON.toJSONString(fullStoreParam)); |
| | | |
| | | return R.ok(); |
| | | } |
| | | |