rain
2024-03-25 471b033688cf85f503081e7401163bcc5fa45351
src/main/java/com/dji/sample/patches/controller/PatchesController.java
@@ -1,26 +1,23 @@
package com.dji.sample.patches.controller;
import com.dji.sample.patches.model.PageBean;
import com.dji.sample.patches.service.impl.PatchesServiceImpl;
import com.dji.sample.patches.service.PatchesService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.sql.Array;
@RequestMapping("${url.patches.prefix}${url.patches.version}")
@RestController
public class PatchesController {
    @Autowired
    private PatchesServiceImpl patchesServiceimpl;
    private PatchesService patchesService;
    @GetMapping("/getPatches")
    public PageBean page(@RequestParam(defaultValue = "1") Integer page,
                         @RequestParam(defaultValue = "5") Integer pageSize,
                         Integer id, String dkbh, String dkfw){
                         @RequestParam(defaultValue = "5") Integer pageSize) {
        //调用service分页查询
        PageBean pageBean =patchesServiceimpl.limitGet( id,  dkbh, dkfw,page, pageSize);
        PageBean pageBean = patchesService.limitGet(page, pageSize);
        return pageBean;
    }
}