Package com.areamodule.dao

Examples of com.areamodule.dao.TbAreaDAO


        return parentAreaId;
    }

    public void setParentAreaId(int parentAreaId){
        this.parentAreaId = parentAreaId;
        this.tbAreaParent=this.areaId==parentAreaId?this:new TbAreaDAO().getTbAreaByAreaId(parentAreaId);
    }
View Full Code Here


  public String getAreaId(){
        return areaId;
    }

    public void setAreaId(String areaId){
      this.tbAreaList = new TbAreaDAO().getTbAreaAll(areaId);
        this.areaId = areaId;
    }
View Full Code Here

TOP

Related Classes of com.areamodule.dao.TbAreaDAO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.