Example #1
0
        /// <summary>
        /// 更新权限
        /// </summary>
        /// <returns></returns>
        public bool Update()
        {
            if (_actionid == -1)
            {
                return(false);
            }
            ActionDAL dal = new ActionDAL(connectionString);

            return(dal.Update(_actionid, _actionname, _actioncolumnid, _actionstr, _link));
        }