| 12345678910111213141516171819202122232425262728293031 |
- package com.seecoder.BlueWhale.ServiceImpl;
- import com.seecoder.BlueWhale.Exception.BlueWhaleException;
- import com.seecoder.BlueWhale.Mapper.UserMapper;
- import com.seecoder.BlueWhale.Service.UserService;
- import com.seecoder.BlueWhale.VO.UserVO;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- @Service
- public class UserServiceImpl implements UserService {
- @Autowired
- UserMapper userMapper;
- @Override
- public Boolean register(UserVO userVO) {
- throw BlueWhaleException.phoneAlreadyExists();
- //return null;
- }
- @Override
- public String login(String phone, String password) {
- return null;
- }
- @Override
- public UserVO getInformation() {
- return null;
- }
- }
|