| | |
| | | package com.ruoyi.inspect.controller; |
| | | |
| | | import com.ruoyi.basic.dto.IfsInventoryQuantityDto; |
| | | import com.ruoyi.common.annotation.Anonymous; |
| | | import com.ruoyi.common.core.domain.Result; |
| | | import com.ruoyi.inspect.dto.IfsPartPropsRecordDTO; |
| | | import com.ruoyi.inspect.service.IfsPartPropsRecordService; |
| | |
| | | return Result.success(ifsPartPropsRecordService.getOneByIfsId(ifsId)); |
| | | } |
| | | |
| | | @Anonymous |
| | | @ApiOperation(value = "查询ifs订单的零件属性记录") |
| | | @GetMapping("/getIfsPartProps") |
| | | public Result getIfsPartProps(IfsInventoryQuantityDto ifsPartPropsRecordDTO){ |
| | | return Result.success(ifsPartPropsRecordService.getIfsPartProps(ifsPartPropsRecordDTO)); |
| | | } |
| | | |
| | | } |