package com.gkhy.fourierSpecialGasMonitor.application.account.dto.respDto;
|
|
public class TokenInfoDto {
|
|
private Long uid;
|
|
private String tk;
|
|
private Long remainSecond;
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public String getTk() {
|
return tk;
|
}
|
|
public void setTk(String tk) {
|
this.tk = tk;
|
}
|
|
public Long getRemainSecond() {
|
return remainSecond;
|
}
|
|
public void setRemainSecond(Long remainSecond) {
|
this.remainSecond = remainSecond;
|
}
|
}
|