/// <summary> /// 添加成员 /// </summary> /// <param name="authorizeType">权限分类</param> /// <param name="objectId">对象Id</param> /// <param name="userIds">成员Id:1,2,3,4</param> public void SaveMember(AuthorizeTypeEnum authorizeType, string objectId, string userIds) { try { string[] arrayUserId = userIds.Split(','); InstanceDAL.SaveMember(authorizeType, objectId, arrayUserId); } catch (Exception) { throw; } }