public bool DeleteTopic(string topicID) { if (topicID == null) { throw new XinLuClubException(400, "topicID不能为空"); } return(bll.DeleteTopic(new TopicQueryForm { ID = topicID })); }