/**
 * @fileoverview 제품 관련 모델 클래스들
 * @author realsnake@netville.co.kr
 * @version 1.0.0
 * @since 2009.06.11
 */

/**
 * 제품 카테고리 클래스
 */
ProductCategory = function() {
    this.prdCtgParentSeq = 0;
    this.depth = 0;
    this.useFl = "";
    
    this.setPrdCtgParentSeq = function(prdCtgParentSeq) { this.prdCtgParentSeq = prdCtgParentSeq; }
    this.getPrdCtgParentSeq = function() { return this.prdCtgParentSeq; }
    this.setDepth = function(depth) { this.depth = depth; }
    this.getDepth = function() { return this.depth; }
    this.setUseFl = function(useFl) { this.useFl = useFl; }
    this.getUseFl = function() { return this.useFl; }
};

/**
 * 제품 클래스
 */
Product = function() {
    this.prdCtgSeq = 0;
    this.langCd = "";
    this.detailCd = "";
    this.useFl = "";
    
    this.setPrdCtgSeq = function(prdCtgSeq) { this.prdCtgSeq = prdCtgSeq; }
    this.getPrdCtgSeq = function() { return this.prdCtgSeq; }
    this.setLangCd = function(langCd) { this.langCd = langCd; }
    this.getLangCd = function() { return this.langCd; }
    this.setDetailCd = function(detailCd) { this.detailCd = detailCd; }
    this.getDetailCd = function() { return this.detailCd; }
    this.setUseFl = function(useFl) { this.useFl = useFl; }
    this.getUseFl = function() { return this.useFl; }
};
