InvestigateMapper.java
354 Bytes
package com.project.demo.mapper;
import com.project.demo.domain.Investigate;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* Created by bert on 2018/7/5.
*/
public interface InvestigateMapper {
List<Investigate> search();
void insert(Investigate investigate);
Investigate searchDetails(@Param("id") int id);
}