package com.landtool.lanbase.modules.res.dao; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Mapper; import com.landtool.lanbase.modules.res.entity.Res_ProblemFeedback; @Mapper public interface Res_ProblemFeedbackMapper { int deleteByPrimaryKey(Integer objectid); int insert(Res_ProblemFeedback record); int insertSelective(Res_ProblemFeedback record); Res_ProblemFeedback selectByPrimaryKey(Integer objectid); int updateByPrimaryKeySelective(Res_ProblemFeedback record); int updateByPrimaryKey(Res_ProblemFeedback record); List selectByResourceid(Integer resourceid); Res_ProblemFeedback checkShowNormalBtn(Map map); List selectResProblemfeedback(Res_ProblemFeedback problemFeedback); Res_ProblemFeedback selectTopByResourceid(Integer resourceid); List getlatestalarm(); void updateByResourceId(Res_ProblemFeedback model); }