예제 #1
0
    private string EditTree()
    {
        string res = "";
        Dictionary <string, string> dict = new Dictionary <string, string>();

        dict.Add("name", Request.Form["name"]);
        dict.Add("parentId", Request.Form["parentId"]);
        dict.Add("parentName", Request.Form["parentName"]);
        dict.Add("companyId", GetUserInfo().companyId.ToString());
        dict.Add("remark", Request.Form["remark"]);
        dict.Add("departmentId", Request.Form["departmentId"]);
        dict.Add("wechatUserId", Request.Form["leaderWechatUserId"]);
        res = UserInfoManage.EditTree(dict, Request.Form["id"]);
        return(res);
    }