燕山石化溯源三维电子沙盘-【后端】-服务
13693261870
2023-06-23 132e576dbe4a9771ba6728e55ba21b4918e718d6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
}