新增用户个人信息的查询和更改

This commit is contained in:
freeebied 2018-10-13 16:52:13 +08:00 committed by muamua
parent a1d88bbe9c
commit 505d347861

View File

@ -17,6 +17,17 @@ public class UserController {
@Autowired
private UserService userService;
/**
* 更新资料
* @param userName
* @param password
* @param name
* @param phone
* @param email
* @param address
* @param idNumber
* @return
*/
@RequestMapping(method = RequestMethod.POST,value = "/updateProfile")
public int updateProfile(String userName, String password, String name,
String phone, String email, String address, String idNumber){