File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
package itn.let.uat.uia.web;
public class SendLogVO {
private static final long serialVersionUID = 1L;
/*시스템발송 Id*/
private String sendId;
/*발송 구분 (1: 문자, 2: 이메일)*/
private String sendType;
/*최초발신자 정보*/
private String frstSendInfo;
/*수신자*/
private String receive;
/*최초 발신일시*/
private String frstSendPnttm;
/*인증번호*/
private String checkNo;
/*내용*/
private String contents;
public String getSendId() {
return sendId;
}
public void setSendId(String sendId) {
this.sendId = sendId;
}
public String getSendType() {
return sendType;
}
public void setSendType(String sendType) {
this.sendType = sendType;
}
public String getFrstSendInfo() {
return frstSendInfo;
}
public void setFrstSendInfo(String frstSendInfo) {
this.frstSendInfo = frstSendInfo;
}
public String getReceive() {
return receive;
}
public void setReceive(String receive) {
this.receive = receive;
}
public String getFrstSendPnttm() {
return frstSendPnttm;
}
public void setFrstSendPnttm(String frstSendPnttm) {
this.frstSendPnttm = frstSendPnttm;
}
public String getCheckNo() {
return checkNo;
}
public void setCheckNo(String checkNo) {
this.checkNo = checkNo;
}
public String getContents() {
return contents;
}
public void setContents(String contents) {
this.contents = contents;
}
}