zhou zhou
2 天以前 3501e5999d41943149974383129f899479d0b3d2
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
38
39
40
41
42
43
44
45
46
47
48
package com.vincent.rsf.server.api.controller.pda;
 
import com.vincent.rsf.framework.common.R;
import com.vincent.rsf.server.api.entity.params.PdaGeneralParam;
import com.vincent.rsf.server.api.service.PdaOtherService;
import com.vincent.rsf.server.manager.entity.WkOrder;
import com.vincent.rsf.server.system.controller.BaseController;
import io.swagger.annotations.Api;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
 
@Api(tags = "PDA综合操作接口")
@RequestMapping("/pda")
@RestController
public class PdaOtherController extends BaseController {
 
    @Autowired
    private PdaOtherService pdaOtherService;
 
 
    @RequestMapping(value = "/other/transferPage")
    public R transferPage(@RequestParam(required = true) String orderNo,
                         @RequestParam(defaultValue = "1") Integer curr,
                         @RequestParam(defaultValue = "5") Integer limit) {
 
        return pdaOtherService.transferPage(orderNo,curr,limit);
    }
 
 
    @PostMapping(value = "/other/inspectList")
    public R inspectList(@RequestBody PdaGeneralParam generalParam) {
 
        return pdaOtherService.inspectList(generalParam);
    }
 
    @PostMapping(value = "/other/inspectConfirm")
    public R inspectConfirm(@RequestBody PdaGeneralParam generalParam) {
 
        return pdaOtherService.inspectConfirm(generalParam);
    }
 
    @PostMapping(value = "/other/inspectConfirm2")
    public R inspectConfirm2(@RequestBody PdaGeneralParam generalParam) {
 
        return pdaOtherService.inspectConfirm2(generalParam);
    }
 
}