1234567891011121314151617181920212223242526 |
- package com.ym.controller;
- import com.ym.service.UserService;
- import io.rong.models.user.UserModel;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.RequestBody;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestMethod;
- import org.springframework.web.bind.annotation.RestController;
- @RestController
- @RequestMapping("/user")
- public class UserController {
- @Autowired
- UserService userService;
- @RequestMapping(value = "/register", method = RequestMethod.POST)
- public Object register(@RequestBody UserModel userModel) throws Exception {
- return userService.register(userModel);
- }
- @RequestMapping(value = "/update", method = RequestMethod.POST)
- public Object update(@RequestBody UserModel userModel) throws Exception {
- return userService.update(userModel);
- }
- }
|