1
20 小时以前 2323e7ce37d12a689f00948a54d79f24a9b37561
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
package com.vincent.rsf.server.api.controller.pda;
 
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.vincent.rsf.framework.common.Cools;
import com.vincent.rsf.framework.common.R;
import com.vincent.rsf.server.api.service.PdaOtherService;
import com.vincent.rsf.server.manager.entity.WkOrder;
import com.vincent.rsf.server.manager.enums.OrderType;
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.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
 
@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);
    }
}