feat : jwt 기능 구현
SpecialSource Backend CI/CD / build-and-deploy (push) Successful in 1m41s

This commit is contained in:
2026-05-21 17:57:57 +09:00
parent 8749571474
commit a7077fc693
5 changed files with 108 additions and 14 deletions
@@ -1,10 +1,12 @@
package company.specialsource.dto;
package company.specialsource.dto; // 패키지 위치에 맞게 조정하세요
import lombok.Getter;
import lombok.Setter;
@Getter @Setter
public class LoginRequest {
private String username;
private String password;
// Getter, Setter (인텔리제이에서 롬복 @Getter, @Setter 쓰셔도 됩니다!)
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; }
}