|
|
@@ -15,12 +15,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
/**
|
|
|
- * <p>
|
|
|
- * 用户信息表 前端控制器
|
|
|
- * </p>
|
|
|
- *
|
|
|
- * @author
|
|
|
- * @since 2022-06-16
|
|
|
+ * 用户管理
|
|
|
*/
|
|
|
@RestController
|
|
|
@RequestMapping("/service/manage/user")
|
|
|
@@ -33,6 +28,9 @@ public class UserController {
|
|
|
@Autowired
|
|
|
ICameraService cameraService;
|
|
|
|
|
|
+ /**
|
|
|
+ * 分页列表
|
|
|
+ */
|
|
|
@PostMapping("/list")
|
|
|
public ResultData list(@RequestBody UserParam param){
|
|
|
return ResultData.ok(userService.pageList(param));
|