12345678910111213141516171819202122 |
- 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<Rectification> getList(Rectification rectification);
- public List<Rectification> getListLimit(@Param(value = "r")Rectification rectification, @Param(value = "currIndex")int currIndex, @Param(value = "pageSize")int pageSize);
- }
|