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); } }