| | |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.common.core.utils.page.PageDTO; |
| | | import com.ruoyi.management.domain.SlAudit; |
| | | import com.ruoyi.management.domain.SlVolumeProductionCk; |
| | | import com.ruoyi.management.domain.SlVolumeProductionRkgl; |
| | | import com.ruoyi.management.domain.SlVolumeProductionZygl; |
| | | import com.ruoyi.management.domain.dto.SlVolumeProductionZyDTO; |
| | |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | @PostMapping("/getVolumeProductionzZyglnfo") |
| | | @GetMapping("/getVolumeProductionzZyglnfo/{id}") |
| | | @ApiOperation(value = "获取转移管理详情") |
| | | public R<VolumeProductionZyglInfoVO> getVolumeProductionzZyglnfo(@ApiParam(name = "id", value = "转移管理id", required = true) @PathVariable("id") Integer id) { |
| | | public R<VolumeProductionZyglInfoVO> getVolumeProductionzZyglnfo(@ApiParam(name = "id", value = "转移管理id", required = true) @PathVariable("id") Long id) { |
| | | return R.ok(slVolumeProductionZyglService.getVolumeProductionzZyglnfo(id)); |
| | | } |
| | | |
| | | @PostMapping("/getVolumeProductionZyglnventory") |
| | | @GetMapping("/getVolumeProductionZyglnventory/{id}") |
| | | @ApiOperation(value = "获取转移管理打印清单") |
| | | public R<VolumeProductionZyglInventoryVO> getVolumeProductionZyglnventory(@ApiParam(name = "id", value = "转移管理id", required = true) @PathVariable("id") Integer id) { |
| | | return R.ok(slVolumeProductionZyglService.getVolumeProductionZyglnventory(id)); |
| | |
| | | |
| | | |
| | | @ApiOperation("取转移管理") |
| | | @DeleteMapping("/{id}") |
| | | @GetMapping("/{id}") |
| | | public R<?> delStoreManagement( |
| | | @ApiParam(name = "id", value = "转移管理id", required = true) @PathVariable("id") Integer id) { |
| | | SlVolumeProductionZygl byId = slVolumeProductionZyglService.getById(id); |
| | |
| | | |
| | | return R.ok(); |
| | | } |
| | | |
| | | @ApiOperation("转移管理入库") |
| | | @GetMapping("/zy/{id}") |
| | | public R<?> zy(@ApiParam(name = "id", value = "转移管理id", required = true) @PathVariable("id") Integer id) { |
| | | slVolumeProductionZyglService.zy(id); |
| | | return R.ok(); |
| | | } |
| | | } |