Package com.firefun.QX.Bean

Examples of com.firefun.QX.Bean.UserInfo


    Result rst = new Result("ffdb");

    HttpSession session = request.getSession();
    Object obj = session.getAttribute("se_files" + ywid);
    // 获取用户信息
    UserInfo userinfo = (UserInfo) session.getAttribute("userInfo");
    String userid = userinfo.getUserID();
    String dwid = userinfo.getDwid();
    sql = "select sjdwid from sys_dept where dwid='" + dwid + "'";
    rst.EQuery(sql);
    String sjdwid = rst.getString(0, "sjdwid");

    if (obj != null) {
View Full Code Here

TOP

Related Classes of com.firefun.QX.Bean.UserInfo

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.