| | |
| | | import org.jeecg.modules.mdc.entity.MdcProcessQuantity; |
| | | import org.jeecg.modules.mdc.service.IMdcEquipmentMagnificationService; |
| | | import org.jeecg.modules.mdc.vo.MdcEquipmentMagnificationVo; |
| | | import org.jeecg.modules.mdc.vo.MdcMagnificationVo; |
| | | import org.jeecg.modules.mdc.vo.MdcProcessQuantityVo; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 导出excel |
| | | * |
| | |
| | | String userId = user.getId(); |
| | | return service.exportXls(userId, magnificationVo); |
| | | } |
| | | |
| | | /** |
| | | * 倍率报表 |
| | | * @param magnificationVo |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "倍率报表") |
| | | @ApiOperation(value = "倍率报表", notes = "倍率报表") |
| | | @RequestMapping(value = "/beilvList") |
| | | public Result<?> beilvList(MdcEquipmentMagnificationVo magnificationVo) { |
| | | LoginUser user = (LoginUser) SecurityUtils.getSubject().getPrincipal(); |
| | | String userId = user.getId(); |
| | | MdcMagnificationVo vo = service.beilvsList(magnificationVo,userId); |
| | | return Result.OK(vo); |
| | | } |
| | | } |