| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.production.controller; |
| | | |
| | | import com.ruoyi.framework.web.domain.R; |
| | | import com.ruoyi.production.bean.dto.ProductionOrderPickRecordDto; |
| | | import com.ruoyi.production.bean.vo.ProductionOrderPickRecordVo; |
| | | import com.ruoyi.production.service.ProductionOrderPickRecordService; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 线边ä»åºå
¥åºè®°å½ å端æ§å¶å¨ |
| | | * </p> |
| | | * |
| | | * @author è¯å¯¼è½¯ä»¶ï¼æ±èï¼æéå
¬å¸ |
| | | * @since 2026-04-21 03:55:52 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/productionOrderPickRecord") |
| | | @Tag(name = "ç产订åé¢æè®°å½") |
| | | @RequiredArgsConstructor |
| | | public class ProductionOrderPickRecordController { |
| | | |
| | | private final ProductionOrderPickRecordService productionOrderPickRecordService; |
| | | |
| | | @GetMapping("/feeding") |
| | | @Operation(summary = "æ¥è¯¢è¡¥æè®°å½") |
| | | public R<List<ProductionOrderPickRecordVo>> listFeedingRecord(ProductionOrderPickRecordDto dto) { |
| | | return R.ok(productionOrderPickRecordService.listFeedingRecord(dto)); |
| | | } |
| | | } |