예제 #1
0
        public string DeleteQuerySchemaEntry(int entryId)
        {
            int count = dal.DeleteQuerySchemaEntry(entryId);

            if (count == 1)
            {
                return(null);
            }
            return("删除失败");
        }