1
0

TestUserMapper.java 417 B

12345678910111213141516
  1. package com.siwei.apply.mapper;
  2. import com.siwei.apply.domain.TestUser;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.List;
  6. @Mapper
  7. public interface TestUserMapper {
  8. int insert(TestUser testUser);
  9. TestUser selectById(@Param("id") int id);
  10. List<TestUser> selectList();
  11. int update(TestUser testUser);
  12. int delete(@Param("id") int id);
  13. }