FAICS/src/main/java/kcg/faics/board/vo/BoardSearchVO.java

96 lines
2.2 KiB
Java
Raw Normal View History

2022-03-17 02:42:45 +00:00
/*
* Copyright 2014 MOPAS(Ministry of Public Administration and Security).
*
* 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 kcg.faics.board.vo;
import kcg.faics.cmmn.bbs.BaseSearchVO;
/**
* BoardSearchVO.java
* @author
* @since 2016. 10. 24.
*
*
* ------------- -------- ---------------------------
* 2016. 10. 24.
*
*/
public class BoardSearchVO extends BaseSearchVO {
/** 테이블 이름 */
private String id = "";
/** 카테고리 이름 */
private String category = " ";
/** 카테고리 이름 */
private String searchCondition = "";
public BoardSearchVO() {
super();
}
/**
* .
* @return
*/
public String getId() {
return id;
}
/**
* .
* @param id .
*/
public void setId(String id) {
this.id = id;
}
/**
* .
* @return
*/
public String getCategory() {
return category;
}
/**
* .
* @param id .
*/
public void setCategory(String category) {
if (category == null || category.equals("")) {
category = " ";
}
2022-03-17 02:42:45 +00:00
this.category = category;
}
/**
* @return .
*/
public String getSearchCondition() {
return searchCondition;
}
/**
* @param .
*/
public void setSearchCondition(String searchCondition) {
this.searchCondition = searchCondition;
}
}