@@ -39,7 +39,7 @@ public class FeedbackServiceImpl extends ServiceImpl<FeedbackMapper, Feedback> i
@Override
public HttpRespMsg getFeedbackTitle() {
HttpRespMsg httpRespMsg = new HttpRespMsg();
- httpRespMsg.data = parameterMapper.selectById(1); //id是1的即为标题
+ httpRespMsg.data = parameterMapper.selectById(1).getParameterValue(); //id是1的即为标题
return httpRespMsg;
}