/* * Copyright 2008-2009 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package itn.let.solr.sys.service; import java.io.Serializable; import itn.com.cmm.ComDefaultVO; /** * @Class Name : LetterSearchVO.java * @Description : LetterSearchVO Class * @Modification Information * @ * @ 수정일 수정자 수정내용 * @ --------- --------- ------------------------------- * @ 2014.07.03 최초생성 * * @author (주)드림웨어 * @since 2014. 07.03 * @version 1.0 * @see * * */ public class ResearchVO extends ComDefaultVO { /** * */ private static final long serialVersionUID = -2405786624573923501L; /** 검색조건 */ private String searchCondition = ""; /** 검색Keyword */ private String searchKeyword = ""; /** 만족도결과 master id */ private int mcIdx = 0; /** 만족도결과 title */ private String mcTitle = ""; /** 만족도결과 페이지 url */ private String sfUrl = ""; /** 만족도결과 평가 ip */ private String sfIp = ""; /** 만족도결과 평가일 */ private String sfWriteday = ""; /** 평가수 */ private int sfCnt; /** 만족도조사 연도 검색값 */ private int yearSearch = 0; /** 만족도조사 연도 검색값 */ private int rowNum = 0; private String hMenu = ""; private String mcUrl = ""; private String proFn = ""; private String mcManager = ""; /** 사이트 ID */ private String siteId = ""; /** 메뉴 번호 */ private String menuNo = ""; public String getSfResearch() { return sfResearch; } public void setSfResearch(String sfResearch) { this.sfResearch = sfResearch; } private String sfResearch; public String gethMenu() { return hMenu; } public void sethMenu(String hMenu) { this.hMenu = hMenu; } public String getMcUrl() { return mcUrl; } public void setMcUrl(String mcUrl) { this.mcUrl = mcUrl; } public int getRowNum() { return rowNum; } public void setRowNum(int rowNum) { this.rowNum = rowNum; } public int getMcIdx() { return mcIdx; } public void setMcIdx(int mcIdx) { this.mcIdx = mcIdx; } public String getMcTitle() { return mcTitle; } public void setMcTitle(String mcTitle) { this.mcTitle = mcTitle; } public String getSfUrl() { return sfUrl; } public void setSfUrl(String sfUrl) { this.sfUrl = sfUrl; } public String getSfIp() { return sfIp; } public void setSfIp(String sfIp) { this.sfIp = sfIp; } public String getSfWriteday() { return sfWriteday; } public void setSfWriteday(String sfWriteday) { this.sfWriteday = sfWriteday; } public int getSfCnt() { return sfCnt; } public void setSfCnt(int sfCnt) { this.sfCnt = sfCnt; } public int getYearSearch() { return yearSearch; } public void setYearSearch(int yearSearch) { this.yearSearch = yearSearch; } public String getSearchCondition() { return searchCondition; } public void setSearchCondition(String searchCondition) { this.searchCondition = searchCondition; } public String getSearchKeyword() { return searchKeyword; } public void setSearchKeyword(String searchKeyword) { this.searchKeyword = searchKeyword; } public String getProFn() { return proFn; } public void setProFn(String proFn) { this.proFn = proFn; } public String getMcManager() { return mcManager; } public void setMcManager(String mcManager) { this.mcManager = mcManager; } public String getSiteId() { return siteId; } public void setSiteId(String siteId) { this.siteId = siteId; } public String getMenuNo() { return menuNo; } public void setMenuNo(String menuNo) { this.menuNo = menuNo; } }