wangfei
2025-04-15 cd7f3fa89aed4e7a4b87c0ee4164cd606103b318
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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);
    }
}