public IHttpActionResult reopenTopic(StopTopicReq str)
        {
            TopicRepository tr = new TopicRepository();
            topic           t  = tr.setReopen(str.topicSn);

            return(Ok(t));
        }