package com.zilber.boot.intelligencesite.controller; import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageInfo; import com.zilber.boot.intelligencesite.entity.ISafe; import com.zilber.boot.intelligencesite.entity.IUser; import com.zilber.boot.intelligencesite.service.IISafeService; import com.zilber.boot.intelligencesite.service.IIUserService; import com.zilber.boot.utils.AjaxResult; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; import java.util.List; /** *
* 实名制与信息管理 前端控制器 *
* * @author lsc * @since 2025-05-06 */ @RestController @RequestMapping("/iuser") @Api(tags = "实名制与信息管理") public class IUserController { @Resource private IIUserService iiUserService; @GetMapping("/list") @ApiOperation(value="分页查询",notes="分页查询") @ResponseBody public AjaxResult queryList(IUser iUser, @RequestParam(defaultValue = "1") Integer pageNo, @RequestParam(defaultValue = "10") Integer pageSize) { PageHelper.startPage(pageNo, pageSize); List