package com.siwei.apply.mapper; import com.siwei.apply.domain.TestUser; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface TestUserMapper { int insert(TestUser testUser); TestUser selectById(@Param("id") int id); List selectList(); int update(TestUser testUser); int delete(@Param("id") int id); }