| | |
| | | package com.mes.pp.controller; |
| | | |
| | | |
| | | import com.mes.pp.entity.dto.FlowCardPercentDTO; |
| | | import com.mes.pp.entity.dto.ReportWorkDTO; |
| | | import com.mes.pp.entity.request.FlowCardRequest; |
| | | import com.mes.pp.entity.request.ReportWorkRequest; |
| | | import com.mes.utils.Result; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 前端控制器 |
| | | * 前端控制器 |
| | | * </p> |
| | | * |
| | | * @author wu |
| | | * @since 2024-07-25 |
| | | */ |
| | | @Api(tags = "报工") |
| | | @RestController |
| | | @RequestMapping("/reporting-work-detail") |
| | | public class ReportingWorkDetailController { |
| | | |
| | | @ApiOperation("报工数据查询接口") |
| | | @PostMapping("/reportWorkQuery") |
| | | public Result<List<ReportWorkDTO>> reportWorkQuery(@RequestBody ReportWorkRequest reportWorkRequest) { |
| | | return Result.build(200, "查询成功", null); |
| | | } |
| | | } |
| | | |