Package com.departmodule.dao

Examples of com.departmodule.dao.TbDepartDAO


        return parentDepartId;
    }

    public void setParentDepartId(int parentDepartId){
        this.parentDepartId = parentDepartId;
        this.tbDepartParent=this.departId==parentDepartId?this:new TbDepartDAO().getTbDepartByDepartId(parentDepartId);
    }
View Full Code Here


        return departId;
    }

    public void setDepartId(int departId){
        this.departId = departId;
        this.tbDepart=new TbDepartDAO().getTbDepartByDepartId(departId);
    }
View Full Code Here

TOP

Related Classes of com.departmodule.dao.TbDepartDAO

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.