燕山石化溯源三维电子沙盘-【后端】-服务
13693261870
2023-06-06 4a4179b19501059168bd2d725bf6294708c99ec3
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);
}