| | |
| | | import org.jeecg.common.system.query.QueryGenerator; |
| | | import org.jeecg.modules.andon.entity.AndonOrder; |
| | | import org.jeecg.modules.andon.service.IAndonOrderService; |
| | | import org.jeecg.modules.system.entity.SysUser; |
| | | import org.jeecg.modules.system.service.ISysUserService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.servlet.ModelAndView; |
| | |
| | | public class AndonOrderController extends JeecgController<AndonOrder, IAndonOrderService> { |
| | | @Autowired |
| | | private IAndonOrderService andonOrderService; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 分页列表查询 |
| | |
| | | return Result.OK("响应成功!"); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * APP安灯处理操作 |
| | | * |
| | | * |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "APP安灯处理操作", notes = "APP安灯处理操作") |
| | | @PostMapping(value = "/AndonHandel") |
| | | public Result<String> AndonHandel(@RequestBody AndonOrder andonOrder) { |
| | | return andonOrderService.handleAndonOrder(andonOrder); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 编辑 |
| | | * |