73 lines
1.6 KiB
Java
73 lines
1.6 KiB
Java
package kcc.com.cmm.service;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
@SuppressWarnings("serial")
|
|
public class AdrCourtFileVO implements Serializable {
|
|
|
|
private String crtAtchFileId;
|
|
private String crtSeq;
|
|
private String crtSn;
|
|
private String crtAtchFileTy;
|
|
private String frstRegistPnttm;
|
|
private String frstRegisterId;
|
|
private String lastUpdtPnttm;
|
|
private String lastUpdusrId;
|
|
|
|
|
|
public String getCrtAtchFileId() {
|
|
return crtAtchFileId;
|
|
}
|
|
public void setCrtAtchFileId(String crtAtchFileId) {
|
|
this.crtAtchFileId = crtAtchFileId;
|
|
}
|
|
public String getCrtSeq() {
|
|
return crtSeq;
|
|
}
|
|
public void setCrtSeq(String crtSeq) {
|
|
this.crtSeq = crtSeq;
|
|
}
|
|
public String getCrtSn() {
|
|
return crtSn;
|
|
}
|
|
public void setCrtSn(String crtSn) {
|
|
this.crtSn = crtSn;
|
|
}
|
|
public String getCrtAtchFileTy() {
|
|
return crtAtchFileTy;
|
|
}
|
|
public void setCrtAtchFileTy(String crtAtchFileTy) {
|
|
this.crtAtchFileTy = crtAtchFileTy;
|
|
}
|
|
public String getFrstRegistPnttm() {
|
|
return frstRegistPnttm;
|
|
}
|
|
public void setFrstRegistPnttm(String frstRegistPnttm) {
|
|
this.frstRegistPnttm = frstRegistPnttm;
|
|
}
|
|
public String getFrstRegisterId() {
|
|
return frstRegisterId;
|
|
}
|
|
public void setFrstRegisterId(String frstRegisterId) {
|
|
this.frstRegisterId = frstRegisterId;
|
|
}
|
|
public String getLastUpdtPnttm() {
|
|
return lastUpdtPnttm;
|
|
}
|
|
public void setLastUpdtPnttm(String lastUpdtPnttm) {
|
|
this.lastUpdtPnttm = lastUpdtPnttm;
|
|
}
|
|
public String getLastUpdusrId() {
|
|
return lastUpdusrId;
|
|
}
|
|
public void setLastUpdusrId(String lastUpdusrId) {
|
|
this.lastUpdusrId = lastUpdusrId;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|