94 lines
2.0 KiB
Java
94 lines
2.0 KiB
Java
package kcc.kccadr.adjCs.service;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import kcc.com.cmm.ComDefaultVO;
|
|
|
|
public class AdjCsVO extends ComDefaultVO implements Serializable{
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private String cnt;
|
|
private String csSeq;
|
|
private String csCategory;
|
|
private String csSubject;
|
|
private String csCn;
|
|
private String frstRegisterId;
|
|
private String frstRegistPnttm;
|
|
private String lastUpdusrId;
|
|
private String lastUpdtPnttm;
|
|
private String useYn;
|
|
private String searchKeywordSearch;
|
|
|
|
|
|
|
|
public String getCnt() {
|
|
return cnt;
|
|
}
|
|
public void setCnt(String cnt) {
|
|
this.cnt = cnt;
|
|
}
|
|
public String getCsSeq() {
|
|
return csSeq;
|
|
}
|
|
public void setCsSeq(String csSeq) {
|
|
this.csSeq = csSeq;
|
|
}
|
|
public String getCsCategory() {
|
|
return csCategory;
|
|
}
|
|
public void setCsCategory(String csCategory) {
|
|
this.csCategory = csCategory;
|
|
}
|
|
public String getCsSubject() {
|
|
return csSubject;
|
|
}
|
|
public void setCsSubject(String csSubject) {
|
|
this.csSubject = csSubject;
|
|
}
|
|
public String getCsCn() {
|
|
return csCn;
|
|
}
|
|
public void setCsCn(String csCn) {
|
|
this.csCn = csCn;
|
|
}
|
|
public String getFrstRegisterId() {
|
|
return frstRegisterId;
|
|
}
|
|
public void setFrstRegisterId(String frstRegisterId) {
|
|
this.frstRegisterId = frstRegisterId;
|
|
}
|
|
public String getFrstRegistPnttm() {
|
|
return frstRegistPnttm;
|
|
}
|
|
public void setFrstRegistPnttm(String frstRegistPnttm) {
|
|
this.frstRegistPnttm = frstRegistPnttm;
|
|
}
|
|
public String getLastUpdusrId() {
|
|
return lastUpdusrId;
|
|
}
|
|
public void setLastUpdusrId(String lastUpdusrId) {
|
|
this.lastUpdusrId = lastUpdusrId;
|
|
}
|
|
public String getLastUpdtPnttm() {
|
|
return lastUpdtPnttm;
|
|
}
|
|
public void setLastUpdtPnttm(String lastUpdtPnttm) {
|
|
this.lastUpdtPnttm = lastUpdtPnttm;
|
|
}
|
|
public String getUseYn() {
|
|
return useYn;
|
|
}
|
|
public void setUseYn(String useYn) {
|
|
this.useYn = useYn;
|
|
}
|
|
public String getSearchKeywordSearch() {
|
|
return searchKeywordSearch;
|
|
}
|
|
public void setSearchKeywordSearch(String searchKeywordSearch) {
|
|
this.searchKeywordSearch = searchKeywordSearch;
|
|
}
|
|
|
|
|
|
}
|