Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@
import com.mis.user.regist.dao.UserRegistMapper;
import com.mis.user.regist.model.UserRegistInfo;
import com.mis.user.regist.service.UserRegistService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;


@Service
public class UserRegistServiceImpl implements UserRegistService {

private Logger logger = LoggerFactory.getLogger(UserRegistServiceImpl.class);

@Autowired
private UserRegistMapper userRegistMapper;
//验证账号是否已经存在
Expand All @@ -36,6 +40,7 @@ public int userEmailVerify(String eMail){
} else
return Canstants.SUCCESS;
}catch (Exception e){
logger.error(e.getClass() + "{}", e);
return Canstants.FAIL;
}
}
Expand Down