Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add mybatis plus #4

Merged
merged 1 commit into from
Jul 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions java-mybatis-plus-mapper/sample/UserMapperWithAnnotation.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.*;
import java.util.List;

public interface UserMapper extends BaseMapper<User> {
@Select("SELECT * FROM users WHERE age = #{age} AND name = #{name} AND email = #{email}")
List<User> selectUsersByMultipleFields(int age, String name, String email);

@Select("SELECT * FROM ${tableName} WHERE age = #{age}")
List<User> selectUsersByTableName(String tableName, int age);

@Delete("DELETE FROM users WHERE id = #{id}")
int deleteUserById(Long id);

@Update("UPDATE users SET email = #{email} WHERE id = #{id}")
int updateUserEmailById(Long id, String email);

@Insert("INSERT INTO users (name, age, email) VALUES (#{name}, #{age}, #{email})")
int insertUser(String name, int age, String email);

@Select("SELECT * FROM users WHERE email LIKE CONCAT('%', #{email}, '%')")
List<User> findUsersByEmail(String email);

// 动态 SQL 使用例子
@Select("<script>" +
"SELECT * FROM users " +
"<where> " +
" <if test='name != null'> AND name = #{name} </if>" +
" <if test='email != null'> AND email = #{email} </if>" +
"</where>" +
"</script>")
List<User> findUsersByOptionalCriteria(@Param("name") String name, @Param("email") String email);

// 批量删除
@Delete("<script>" +
"DELETE FROM users WHERE id IN " +
"<foreach item='id' collection='ids' open='(' separator=',' close=')'>" +
" #{id}" +
"</foreach>" +
"</script>")
int deleteUsersByIds(@Param("ids") List<Long> ids);

// 更新多个字段
@Update("UPDATE users SET age = #{age}, email = #{email} WHERE id = #{id}")
int updateUserById(Long id, int age, String email);
}
Loading