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