package com.landtool.lanbase.modules.res.service.impl; import java.util.List; import java.util.Map; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.landtool.lanbase.modules.res.dao.Res_ProblemFeedbackMapper; import com.landtool.lanbase.modules.res.entity.Res_ProblemFeedback; import com.landtool.lanbase.modules.res.service.ResProblemFeedbackService; @Service("ResProblemFeedbackService") public class ResProblemFeedbackServiceImpl implements ResProblemFeedbackService { @Autowired private Res_ProblemFeedbackMapper resProblemReedbackMapper; @Override public List selectByResourceid(Integer resourceid) { return resProblemReedbackMapper.selectByResourceid(resourceid); } @Override public int insertSelective(Res_ProblemFeedback problemFeedback){ return resProblemReedbackMapper.insertSelective(problemFeedback); } @Override public Res_ProblemFeedback checkShowNormalBtn(Map map){ return resProblemReedbackMapper.checkShowNormalBtn(map); } @Override public List selectResProblemfeedback(Res_ProblemFeedback problemFeedback){ return resProblemReedbackMapper.selectResProblemfeedback(problemFeedback); } @Override public Res_ProblemFeedback selectTopByResourceid(Integer resourceid) { return resProblemReedbackMapper.selectTopByResourceid(resourceid); } @Override public List getlatestalarm() { return resProblemReedbackMapper.getlatestalarm() ; } public void updateByResourceId(Res_ProblemFeedback model) { resProblemReedbackMapper.updateByResourceId(model); } }