package com.yssh.mapper; import com.yssh.entity.FeedbackDetail; import org.apache.ibatis.annotations.Mapper; @Mapper public interface FeedbackMapper { int insert(FeedbackDetail feedbackDetail); FeedbackDetail selectById(Long id); int update(FeedbackDetail feedbackDetail); Double selectSevenDayAccuracyAvg(Long beginTime); }