コード例 #1
0
ファイル: B_RoleController.cs プロジェクト: Haute998/WalkTd
        public ContentResult B_RoleToDel(int id)
        {
            int rtn = B_Role.DeleteByID(id);

            if (rtn > 0)
            {
                return(Content("ok"));
            }
            return(Content("删除出错"));
        }