package com.hxzk.controller;
|
|
import com.github.pagehelper.PageInfo;
|
import com.hxzk.pojo.TbAchor;
|
import com.hxzk.pojo.TbPergather;
|
import com.hxzk.service.PergatherService;
|
import com.hxzk.util.result;
|
import com.hxzk.util.resultutil;
|
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.RestController;
|
|
import java.util.List;
|
|
@RestController
|
@RequestMapping("/")
|
public class PergatherController {
|
@Autowired
|
PergatherService pergatherService;
|
|
@GetMapping("findPerAll")
|
public List<TbPergather> findperAll(){
|
return pergatherService.findAll();
|
}
|
|
@GetMapping("findgather")
|
result<List<TbPergather>> findgather(Integer page, Integer limit){
|
PageInfo<TbPergather> cz= pergatherService.findAllTbPergather(page, limit);
|
return resultutil.returnSuccess(cz.getTotal(), cz.getList());
|
}
|
}
|