You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.3 KiB
Java

package cfs.trsmrcv.vo;
public class AltMailVO {
private String altMailSeq;
private String sender;
private String sendDate;
private String receiver;
private String title;
private String text;
private String attachFileName;
private byte[] attachFileBlob;
public String getAltMailSeq() {
return altMailSeq;
}
public void setAltMailSeq(String altMailSeq) {
this.altMailSeq = altMailSeq;
}
public String getSender() {
return sender;
}
public void setSender(String sender) {
this.sender = sender;
}
public String getSendDate() {
return sendDate;
}
public void setSendDate(String sendDate) {
this.sendDate = sendDate;
}
public String getReceiver() {
return receiver;
}
public void setReceiver(String receiver) {
this.receiver = receiver;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public String getAttachFileName() {
return attachFileName;
}
public void setAttachFileName(String attachFileName) {
this.attachFileName = attachFileName;
}
public byte[] getAttachFileBlob() {
return attachFileBlob;
}
public void setAttachFileBlob(byte[] attachFileBlob) {
this.attachFileBlob = attachFileBlob;
}
}