Examples of TbDepartDAO


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

Examples of com.departmodule.dao.TbDepartDAO

        return departId;
    }

    public void setDepartId(int departId){
        this.departId = departId;
        this.tbDepart=new TbDepartDAO().getTbDepartByDepartId(departId);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.