| | |
| | | import com.yuanchu.mom.mybatis_config.MyBaseMapper; |
| | | import com.yuanchu.mom.pojo.Opinion; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.yuanchu.mom.pojo.dto.UpdateInspectUnacceptedDto; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | */ |
| | | public interface OpinionMapper extends MyBaseMapper<Opinion> { |
| | | |
| | | List<Map<String, Object>> clickEditingTriggerQuery(Integer rawUnacceptedId); |
| | | List<UpdateInspectUnacceptedDto> clickEditingTriggerQuery(Integer rawUnacceptedId); |
| | | |
| | | Integer updateOpinion(List<Opinion> opinion); |
| | | |