ADD file via upload

pull/1/head
p87sjbg3f 5 months ago
parent 4ec9556d0c
commit 2e3e5becd5

@ -0,0 +1,31 @@
package com.qsd.orange.controller;
import com.qsd.orange.global.R;
import com.qsd.orange.service.CheckService;
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;
@RestController
@RequestMapping("system/check")
public class SystemCheckController {
@Autowired
private CheckService checkService;
@GetMapping("all")
public R all(
@RequestParam(value = "page", required = false, defaultValue = "1") Integer page,
@RequestParam(value = "limit", required = false, defaultValue = "9") Integer limit
){
return R.success().page(checkService.all(page, limit));
}
@GetMapping("search")
public R search(String id){
return R.success().data("item", checkService.search(id));
}
}
Loading…
Cancel
Save