| | |
| | | package com.ruoyi.production.controller; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.framework.web.domain.R; |
| | | import com.ruoyi.production.bean.dto.ProductionProductOutputDto; |
| | | import com.ruoyi.production.service.ProductionProductOutputService; |
| | | import io.swagger.annotations.Api; |
| | | import lombok.AllArgsConstructor; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | /** |
| | | * <p> |
| | | * 生产报工产出表 前端控制器 |
| | | * </p> |
| | | * |
| | | * @author 芯导软件(江苏)有限公司 |
| | | * @since 2026-04-21 03:55:52 |
| | | */ |
| | | @RequestMapping("productionProductOutput") |
| | | @RestController |
| | | @RequestMapping("/productionProductOutput") |
| | | @Api(value = "生产产出") |
| | | @AllArgsConstructor |
| | | public class ProductionProductOutputController { |
| | | |
| | | private ProductionProductOutputService productionProductOutputService; |
| | | |
| | | @GetMapping("listPage") |
| | | public R page(Page<ProductionProductOutputDto> page, ProductionProductOutputDto productionProductOutputDto) { |
| | | return R.ok(productionProductOutputService.listPageProductionProductOutputDto(page, productionProductOutputDto)); |
| | | } |
| | | } |