Compare commits
29 Commits
441c984108
...
55e40288df
| Author | SHA1 | Date | |
|---|---|---|---|
| 55e40288df | |||
| af4a0f9684 | |||
| ae0417c77f | |||
| b7ede5652c | |||
| fcd9534e65 | |||
| 3137c22313 | |||
| 1d29684689 | |||
| ad14782702 | |||
| 3641689cbb | |||
| d69a979f10 | |||
| cc1d63e76c | |||
| 9c46495d40 | |||
| 3fdded3c9c | |||
| c03b190aba | |||
| cbe7ec9a24 | |||
| 58e456f3b3 | |||
| c863f1023b | |||
| aa9e0d8804 | |||
| 0f13440ab0 | |||
| b04ebb148a | |||
| 0a33a40ce1 | |||
| 442eaf2479 | |||
| 57b75e4813 | |||
| 2848312363 | |||
| 4eb09c3bca | |||
| 80ae2fb8d3 | |||
| feec889732 | |||
| 94474d6c42 | |||
| 2ada18d2af |
@ -1,13 +1,109 @@
|
||||
package org.cmh.backend.authentication.controller;
|
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import org.cmh.backend.Utils.JwtUtil;
|
||||
import org.cmh.backend.Utils.JwtVerify;
|
||||
import org.cmh.backend.authentication.dto.*;
|
||||
import org.cmh.backend.authentication.model.UserHS;
|
||||
import org.cmh.backend.authentication.service.UserService;
|
||||
import org.cmh.backend.authentication.service.VerificationCodeService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.http.HttpStatus;
|
||||
import org.springframework.http.ResponseEntity;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
@RestController
|
||||
class AuthenticationController {
|
||||
|
||||
@Autowired
|
||||
private UserService userService;
|
||||
|
||||
@Autowired
|
||||
private VerificationCodeService verificationCodeService;
|
||||
|
||||
@GetMapping("/hello")
|
||||
public String hello(){
|
||||
public String hello() {
|
||||
return "Hello SpringBoot!";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@PostMapping("/register")
|
||||
public ResponseEntity<RegisterResponse> register(@RequestBody RegisterRequest request) {
|
||||
try {
|
||||
boolean isRegistered = userService.registerUser(request);
|
||||
if (isRegistered) {
|
||||
return new ResponseEntity<>(new RegisterResponse("注册成功"), HttpStatus.OK);
|
||||
} else {
|
||||
return new ResponseEntity<>(new RegisterResponse("注册失败:用户已存在"), HttpStatus.BAD_REQUEST);
|
||||
}
|
||||
} catch (IllegalArgumentException e) {
|
||||
return new ResponseEntity<>(new RegisterResponse("注册失败:输入格式有误"), HttpStatus.BAD_REQUEST);
|
||||
} catch (Exception e) {
|
||||
return new ResponseEntity<>(new RegisterResponse("注册失败:服务器错误"), HttpStatus.INTERNAL_SERVER_ERROR);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@PostMapping("/login")
|
||||
public ResponseEntity<LoginResponse> login(@RequestBody LoginRequest loginRequest) {
|
||||
boolean isValidUser = userService.loginUser(loginRequest.getUsername(), loginRequest.getPassword());
|
||||
|
||||
if (isValidUser) {
|
||||
return new ResponseEntity<>(new LoginResponse("登录成功", JwtUtil.generateToken(loginRequest.getUsername())), HttpStatus.OK);
|
||||
} else {
|
||||
return new ResponseEntity<>(new LoginResponse("用户名或密码错误", null), HttpStatus.UNAUTHORIZED);
|
||||
}
|
||||
}
|
||||
|
||||
@GetMapping("/userProfile")
|
||||
public ResponseEntity<UserProfileResponse> getUserProfile(@RequestParam String token) {
|
||||
if (JwtUtil.isTokenValid(token)) {
|
||||
UserHS user = userService.getUserByUsername(JwtUtil.extractUsername(token));
|
||||
if (user != null) {
|
||||
UserProfileResponse response = new UserProfileResponse(
|
||||
user.getUsername(),
|
||||
user.getNickname(),
|
||||
user.getGender(),
|
||||
user.getPhoneNumber(),
|
||||
user.getEmail(),
|
||||
user.getDepartment(),
|
||||
user.getRole(),
|
||||
user.getCreatedAt()
|
||||
);
|
||||
if (user.getSuperAdmin()) {
|
||||
response.setDepartment("超级管理员");
|
||||
response.setRole("超级管理员");
|
||||
}
|
||||
return new ResponseEntity<>(response, HttpStatus.OK);
|
||||
}
|
||||
}
|
||||
return new ResponseEntity<>(HttpStatus.NOT_FOUND);
|
||||
}
|
||||
|
||||
@PostMapping("/manageUserProfile")
|
||||
@JwtVerify
|
||||
public ResponseEntity<Object> manageUserProfile(@RequestBody ManageUserProfileRequest userProfileRequest) {
|
||||
String username = JwtUtil.extractUsername(userProfileRequest.getToken());
|
||||
boolean succeeded = userService.updateUserProfile(username, userProfileRequest);
|
||||
if (succeeded) {
|
||||
return new ResponseEntity<>(HttpStatus.OK);
|
||||
}
|
||||
return new ResponseEntity<>(HttpStatus.BAD_REQUEST);
|
||||
}
|
||||
|
||||
@PostMapping("/changePassword")
|
||||
@JwtVerify
|
||||
public ResponseEntity<Object> changePassword(@RequestBody ChangePasswordRequest changePasswordRequest) {
|
||||
if (userService.changePassword(JwtUtil.extractUsername(changePasswordRequest.getToken()), changePasswordRequest)) {
|
||||
return new ResponseEntity<>(HttpStatus.OK);
|
||||
}
|
||||
return new ResponseEntity<>(HttpStatus.BAD_REQUEST);
|
||||
}
|
||||
|
||||
@GetMapping("/getVerificationCode")
|
||||
public ResponseEntity<VerificationCodeResponse> getVerificationCode() {
|
||||
return new ResponseEntity<>(verificationCodeService.provideVerificationCode(), HttpStatus.OK);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -0,0 +1,12 @@
|
||||
package org.cmh.backend.authentication.dto;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import org.cmh.backend.Utils.JwtRequest;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class ChangePasswordRequest extends JwtRequest {
|
||||
private String currentPassword;
|
||||
private String newPassword;
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
package org.cmh.backend.authentication.dto;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class LoginRequest {
|
||||
private String username;
|
||||
private String password;
|
||||
private String verificationCode;
|
||||
}
|
||||
@ -0,0 +1,13 @@
|
||||
package org.cmh.backend.authentication.dto;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
@AllArgsConstructor
|
||||
public class LoginResponse {
|
||||
private String message;
|
||||
private String token;
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
package org.cmh.backend.authentication.dto;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import org.cmh.backend.Utils.JwtRequest;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class ManageUserProfileRequest extends JwtRequest {
|
||||
private String nickname;
|
||||
private String gender;
|
||||
private String phoneNumber;
|
||||
private String email;
|
||||
private String department;
|
||||
private String role;
|
||||
}
|
||||
@ -0,0 +1,13 @@
|
||||
package org.cmh.backend.authentication.dto;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class RegisterRequest {
|
||||
private String username;
|
||||
private String password;
|
||||
private String phoneNumber;
|
||||
private String verificationCode;
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
package org.cmh.backend.authentication.dto;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
@AllArgsConstructor
|
||||
public class RegisterResponse {
|
||||
private String message;
|
||||
}
|
||||
@ -0,0 +1,21 @@
|
||||
package org.cmh.backend.authentication.dto;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
@AllArgsConstructor
|
||||
public class UserProfileResponse {
|
||||
private String username;
|
||||
private String nickname;
|
||||
private String gender;
|
||||
private String phoneNumber;
|
||||
private String email;
|
||||
private String department;
|
||||
private String role;
|
||||
private LocalDateTime createdAt;
|
||||
}
|
||||
@ -0,0 +1,13 @@
|
||||
package org.cmh.backend.authentication.dto;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
@AllArgsConstructor
|
||||
public class VerificationCodeResponse {
|
||||
private String code;
|
||||
private String path;
|
||||
}
|
||||
@ -1,39 +0,0 @@
|
||||
package org.cmh.backend.authentication.model;
|
||||
|
||||
import jakarta.persistence.Entity;
|
||||
import jakarta.persistence.GeneratedValue;
|
||||
import jakarta.persistence.GenerationType;
|
||||
import jakarta.persistence.Id;
|
||||
|
||||
@Entity
|
||||
public class User {
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||
private Long id;
|
||||
private String username;
|
||||
private String password;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,29 @@
|
||||
package org.cmh.backend.authentication.model;
|
||||
|
||||
import jakarta.persistence.Entity;
|
||||
import jakarta.persistence.GeneratedValue;
|
||||
import jakarta.persistence.GenerationType;
|
||||
import jakarta.persistence.Id;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Setter
|
||||
@Getter
|
||||
@Entity
|
||||
public class UserHS {
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||
private Long id;
|
||||
private String username;
|
||||
private String password;
|
||||
private String nickname;
|
||||
private String gender;
|
||||
private String phoneNumber;
|
||||
private String email;
|
||||
private String department;
|
||||
private String role;
|
||||
private LocalDateTime createdAt;
|
||||
private Boolean superAdmin = false;
|
||||
}
|
||||
@ -1,8 +1,8 @@
|
||||
package org.cmh.backend.authentication.repository;
|
||||
|
||||
import org.cmh.backend.authentication.model.User;
|
||||
import org.cmh.backend.authentication.model.UserHS;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
|
||||
public interface UserRepository extends JpaRepository<User, Long> {
|
||||
User findByUsername(String username);
|
||||
public interface UserRepository extends JpaRepository<UserHS, Long> {
|
||||
UserHS findByUsername(String username);
|
||||
}
|
||||
|
||||
@ -1,16 +1,117 @@
|
||||
package org.cmh.backend.authentication.service;
|
||||
|
||||
import org.cmh.backend.authentication.model.User;
|
||||
import org.cmh.backend.authentication.dto.ChangePasswordRequest;
|
||||
import org.cmh.backend.authentication.dto.ManageUserProfileRequest;
|
||||
import org.cmh.backend.authentication.dto.RegisterRequest;
|
||||
import org.cmh.backend.authentication.model.UserHS;
|
||||
import org.cmh.backend.authentication.repository.UserRepository;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
|
||||
import org.springframework.security.crypto.password.PasswordEncoder;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
@Service
|
||||
public class UserService {
|
||||
@Autowired
|
||||
private UserRepository userRepository;
|
||||
|
||||
public User getUserByUsername(String username) {
|
||||
private final PasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
|
||||
|
||||
public UserHS getUserByUsername(String username) {
|
||||
return userRepository.findByUsername(username);
|
||||
}
|
||||
}
|
||||
|
||||
public boolean registerUser(RegisterRequest request) {
|
||||
String username = request.getUsername();
|
||||
String password = request.getPassword();
|
||||
String phoneNumber = request.getPhoneNumber();
|
||||
// 验证用户名是否已存在
|
||||
if (userRepository.findByUsername(username) != null) {
|
||||
return false; // 用户已存在
|
||||
}
|
||||
|
||||
// 验证输入格式
|
||||
if (!isValidUsername(username) || !isValidPassword(password) || !isValidContactInfo(phoneNumber)) {
|
||||
throw new IllegalArgumentException();
|
||||
}
|
||||
|
||||
// 加密密码
|
||||
String encodedPassword = passwordEncoder.encode(password);
|
||||
|
||||
// 创建新用户
|
||||
UserHS newUser = new UserHS();
|
||||
newUser.setUsername(username);
|
||||
newUser.setPassword(encodedPassword);
|
||||
newUser.setPhoneNumber(phoneNumber);
|
||||
newUser.setCreatedAt(LocalDateTime.now());
|
||||
|
||||
userRepository.save(newUser);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public boolean loginUser(String username, String password) {
|
||||
UserHS user = userRepository.findByUsername(username);
|
||||
return user != null && passwordEncoder.matches(password, user.getPassword());
|
||||
}
|
||||
|
||||
public boolean updateUserProfile(String username, ManageUserProfileRequest request) {
|
||||
UserHS user = userRepository.findByUsername(username);
|
||||
if (user != null) {
|
||||
user.setNickname(request.getNickname());
|
||||
user.setGender(request.getGender());
|
||||
user.setPhoneNumber(request.getPhoneNumber());
|
||||
user.setEmail(request.getEmail());
|
||||
user.setDepartment(request.getDepartment());
|
||||
user.setRole(request.getRole());
|
||||
try {
|
||||
userRepository.save(user);
|
||||
} catch (Exception e) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public boolean changePassword(String username, ChangePasswordRequest request) {
|
||||
UserHS user = userRepository.findByUsername(username);
|
||||
if (user != null) {
|
||||
if (passwordEncoder.matches(request.getCurrentPassword(), user.getPassword())) {
|
||||
if (isValidPassword(request.getNewPassword())) {
|
||||
String encodedPassword = passwordEncoder.encode(request.getNewPassword());
|
||||
user.setPassword(encodedPassword);
|
||||
try {
|
||||
userRepository.save(user);
|
||||
} catch (Exception e) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
// 验证用户名格式
|
||||
private boolean isValidUsername(String username) {
|
||||
return username != null && username.length() >= 3 && username.length() <= 20;
|
||||
}
|
||||
|
||||
// 验证密码格式
|
||||
private boolean isValidPassword(String password) {
|
||||
return password != null && password.length() >= 4;
|
||||
}
|
||||
|
||||
// 验证联系方式格式(假设为电话号码)
|
||||
private boolean isValidContactInfo(String contactInfo) {
|
||||
String regex = "^\\+?[0-9. ()-]{7,25}$"; // 电话号码验证
|
||||
return contactInfo != null && Pattern.matches(regex, contactInfo);
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,51 @@
|
||||
package org.cmh.backend.authentication.service;
|
||||
|
||||
import jakarta.annotation.PostConstruct;
|
||||
import lombok.Getter;
|
||||
import org.cmh.backend.authentication.dto.VerificationCodeResponse;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Random;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
@Service
|
||||
public class VerificationCodeService {
|
||||
|
||||
@Value("${verification.code.images.path}")
|
||||
private String verificationCodeImagesPath;
|
||||
|
||||
@Getter
|
||||
private List<String> verificationCodeList = new ArrayList<>();
|
||||
|
||||
@PostConstruct
|
||||
public void init() {
|
||||
loadVerificationCodeImages();
|
||||
}
|
||||
|
||||
private void loadVerificationCodeImages() {
|
||||
try (Stream<Path> paths = Files.list(Paths.get(verificationCodeImagesPath))) {
|
||||
paths.filter(path -> path.toString().endsWith(".png"))
|
||||
.forEach(path -> verificationCodeList.add(path.getFileName().toString()));
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
public VerificationCodeResponse provideVerificationCode() {
|
||||
if (verificationCodeList.isEmpty()) {
|
||||
return null;
|
||||
}
|
||||
Random random = new Random();
|
||||
int code = random.nextInt(random.nextInt(verificationCodeList.size()));
|
||||
String selectedCode = verificationCodeList.get(code);
|
||||
return new VerificationCodeResponse(selectedCode.split("\\.")[0], "/verificationCodeImages/" + selectedCode);
|
||||
}
|
||||
|
||||
}
|
||||
BIN
src/main/resources/static/verificationCodeImages/011092.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
src/main/resources/static/verificationCodeImages/021719.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/022035.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/static/verificationCodeImages/029455.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
src/main/resources/static/verificationCodeImages/031573.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/static/verificationCodeImages/046770.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/static/verificationCodeImages/047990.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
src/main/resources/static/verificationCodeImages/056052.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/058684.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
src/main/resources/static/verificationCodeImages/060657.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/082948.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
src/main/resources/static/verificationCodeImages/085535.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
src/main/resources/static/verificationCodeImages/095376.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
src/main/resources/static/verificationCodeImages/096237.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
src/main/resources/static/verificationCodeImages/121504.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
src/main/resources/static/verificationCodeImages/129257.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
src/main/resources/static/verificationCodeImages/143814.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
src/main/resources/static/verificationCodeImages/159296.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
src/main/resources/static/verificationCodeImages/162856.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/167606.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
src/main/resources/static/verificationCodeImages/187677.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
src/main/resources/static/verificationCodeImages/193643.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/static/verificationCodeImages/194588.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
src/main/resources/static/verificationCodeImages/194642.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/196496.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
src/main/resources/static/verificationCodeImages/196553.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
src/main/resources/static/verificationCodeImages/198679.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/206102.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/static/verificationCodeImages/216242.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
src/main/resources/static/verificationCodeImages/216341.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
src/main/resources/static/verificationCodeImages/219509.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
src/main/resources/static/verificationCodeImages/239910.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
src/main/resources/static/verificationCodeImages/245156.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/246115.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
src/main/resources/static/verificationCodeImages/254558.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
src/main/resources/static/verificationCodeImages/263518.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
src/main/resources/static/verificationCodeImages/265527.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
src/main/resources/static/verificationCodeImages/268074.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
src/main/resources/static/verificationCodeImages/293288.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/304263.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
src/main/resources/static/verificationCodeImages/311480.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/324873.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/342986.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
src/main/resources/static/verificationCodeImages/361726.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/static/verificationCodeImages/372672.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
src/main/resources/static/verificationCodeImages/392726.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
src/main/resources/static/verificationCodeImages/398993.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
src/main/resources/static/verificationCodeImages/402610.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/409320.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
src/main/resources/static/verificationCodeImages/411406.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
src/main/resources/static/verificationCodeImages/439170.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
src/main/resources/static/verificationCodeImages/469004.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/static/verificationCodeImages/480443.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/static/verificationCodeImages/481488.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
src/main/resources/static/verificationCodeImages/484022.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
src/main/resources/static/verificationCodeImages/492409.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/static/verificationCodeImages/497995.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
src/main/resources/static/verificationCodeImages/501513.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
src/main/resources/static/verificationCodeImages/502886.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
src/main/resources/static/verificationCodeImages/503160.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
src/main/resources/static/verificationCodeImages/512497.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/static/verificationCodeImages/526749.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
src/main/resources/static/verificationCodeImages/531660.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
src/main/resources/static/verificationCodeImages/545022.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
src/main/resources/static/verificationCodeImages/548598.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
src/main/resources/static/verificationCodeImages/562119.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
src/main/resources/static/verificationCodeImages/582599.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
src/main/resources/static/verificationCodeImages/591206.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
src/main/resources/static/verificationCodeImages/607760.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
src/main/resources/static/verificationCodeImages/633245.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
src/main/resources/static/verificationCodeImages/642202.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
src/main/resources/static/verificationCodeImages/647711.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
src/main/resources/static/verificationCodeImages/653574.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
src/main/resources/static/verificationCodeImages/690774.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/709672.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/726268.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
src/main/resources/static/verificationCodeImages/735646.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/749210.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/static/verificationCodeImages/762755.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
src/main/resources/static/verificationCodeImages/766473.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
src/main/resources/static/verificationCodeImages/774503.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
src/main/resources/static/verificationCodeImages/795000.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/static/verificationCodeImages/795308.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
src/main/resources/static/verificationCodeImages/798554.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/static/verificationCodeImages/807222.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
src/main/resources/static/verificationCodeImages/810523.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |