ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • CategoryVO
    Database/Oracle 2016. 9. 8. 14:32
    반응형


    /**

     * 카테고리 테이블(CTGR)의 컬럼을 모두 멤버변수로 가진다.

     * @author 206-004

     *

     */

    public class CategoryVO {

    private int categoryId;

    private String categoryName;

    private int parentCategorID;

    public int getCategoryId() {

    return categoryId;

    }

    public void setCategoryId(int categoryId) {

    this.categoryId = categoryId;

    }

    public String getCategoryName() {

    return categoryName;

    }

    public void setCategoryName(String sategoryName) {

    this.categoryName = sategoryName;

    }

    public int getParentCategorID() {

    return parentCategorID;

    }

    public void setParentCategorID(int parentCategorID) {

    this.parentCategorID = parentCategorID;

    }

    }



    반응형

    'Database > Oracle' 카테고리의 다른 글

    NewsVO  (0) 2016.09.08
    JournalistVO  (0) 2016.09.08
    NewsDao  (0) 2016.09.08
    Application  (0) 2016.09.08
    NewsDaoImpl  (0) 2016.09.08

    댓글

Designed by Tistory.