package itn.let.cop.com.service; import java.io.Serializable; import org.apache.commons.lang3.builder.ToStringBuilder; /** * 게시판의 이용정보를 관리하기 위한 모델 클래스 * @author 공통서비스개발팀 이삼섭 * @since 2009.04.02 * @version 1.0 * @see * *
 * << 개정이력(Modification Information) >>
 *   
 *   수정일      수정자           수정내용
 *  -------    --------    ---------------------------
 *   2009.04.02  이삼섭          최초 생성
 *   2011.08.31  JJY            경량환경 커스터마이징버전 생성
 *
 * 
*/ @SuppressWarnings("serial") public class BoardUseInf implements Serializable { /** 게시판 아이디 */ private String bbsId = ""; /** 대상시스템 아이디 */ private String trgetId = ""; /** 대상 구분 (커뮤니티, 동호회) */ private String trgetType = ""; /** 최초 등록자 아이디 */ private String frstRegisterId = ""; /** 최초등록시점 */ private String frstRegisterPnttm = ""; /** 최종수정자 아이디 */ private String lastUpdusrId = ""; /** 최종수정시점 */ private String lastUpdusrPnttm = ""; /** 등록구분코드 */ private String registSeCode = ""; /** 사용여부 */ private String useAt = ""; /** * bbsId attribute를 리턴한다. * * @return the bbsId */ public String getBbsId() { return bbsId; } /** * bbsId attribute 값을 설정한다. * * @param bbsId * the bbsId to set */ public void setBbsId(String bbsId) { this.bbsId = bbsId; } /** * trgetId attribute를 리턴한다. * * @return the trgetId */ public String getTrgetId() { return trgetId; } /** * trgetId attribute 값을 설정한다. * * @param trgetId * the trgetId to set */ public void setTrgetId(String trgetId) { this.trgetId = trgetId; } /** * frstRegisterId attribute를 리턴한다. * * @return the frstRegisterId */ public String getFrstRegisterId() { return frstRegisterId; } /** * frstRegisterId attribute 값을 설정한다. * * @param frstRegisterId * the frstRegisterId to set */ public void setFrstRegisterId(String frstRegisterId) { this.frstRegisterId = frstRegisterId; } /** * frstRegisterPnttm attribute를 리턴한다. * * @return the frstRegisterPnttm */ public String getFrstRegisterPnttm() { return frstRegisterPnttm; } /** * frstRegisterPnttm attribute 값을 설정한다. * * @param frstRegisterPnttm * the frstRegisterPnttm to set */ public void setFrstRegisterPnttm(String frstRegisterPnttm) { this.frstRegisterPnttm = frstRegisterPnttm; } /** * lastUpdusrId attribute를 리턴한다. * * @return the lastUpdusrId */ public String getLastUpdusrId() { return lastUpdusrId; } /** * lastUpdusrId attribute 값을 설정한다. * * @param lastUpdusrId * the lastUpdusrId to set */ public void setLastUpdusrId(String lastUpdusrId) { this.lastUpdusrId = lastUpdusrId; } /** * lastUpdusrPnttm attribute를 리턴한다. * * @return the lastUpdusrPnttm */ public String getLastUpdusrPnttm() { return lastUpdusrPnttm; } /** * lastUpdusrPnttm attribute 값을 설정한다. * * @param lastUpdusrPnttm * the lastUpdusrPnttm to set */ public void setLastUpdusrPnttm(String lastUpdusrPnttm) { this.lastUpdusrPnttm = lastUpdusrPnttm; } /** * registSeCode attribute를 리턴한다. * * @return the registSeCode */ public String getRegistSeCode() { return registSeCode; } /** * registSeCode attribute 값을 설정한다. * * @param registSeCode * the registSeCode to set */ public void setRegistSeCode(String registSeCode) { this.registSeCode = registSeCode; } /** * useAt attribute를 리턴한다. * * @return the useAt */ public String getUseAt() { return useAt; } /** * useAt attribute 값을 설정한다. * * @param useAt * the useAt to set */ public void setUseAt(String useAt) { this.useAt = useAt; } /** * trgetType attribute를 리턴한다. * @return the trgetType */ public String getTrgetType() { return trgetType; } /** * trgetType attribute 값을 설정한다. * @param trgetType the trgetType to set */ public void setTrgetType(String trgetType) { this.trgetType = trgetType; } /** * toString 메소드를 대치한다. */ public String toString() { return ToStringBuilder.reflectionToString(this); } }