package com.bosshand.virgo.api.dao; import com.bosshand.virgo.api.model.Rectification; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface RectificationDao { public int insert(Rectification rectification); public int update(Rectification rectification); public int delete(long id); public List getList(Rectification rectification); public List getListLimit(@Param(value = "r")Rectification rectification, @Param(value = "currIndex")int currIndex, @Param(value = "pageSize")int pageSize); }