package com.landtool.lanbase.modules.res.service; import java.util.List; import java.util.Map; import com.landtool.lanbase.modules.res.entity.Res_ProblemFeedback; public interface ResProblemFeedbackService { List selectByResourceid(Integer resourceid); int insertSelective(Res_ProblemFeedback problemFeedback); Res_ProblemFeedback checkShowNormalBtn(Map map); List selectResProblemfeedback(Res_ProblemFeedback problemFeedback); Res_ProblemFeedback selectTopByResourceid(Integer resourceid); List getlatestalarm(); void updateByResourceId(Res_ProblemFeedback model); }