8、mybatis-映射文件-查询

一、概要

mybatis查询主要通过映射文件中的

三、栗子

public interface SelectMapper {
    List findAll();
    User findById(Integer uid);
}
public class User implements Serializable {
    private Integer uid;
    private String name;
    private String password;
    private String phone;
    private String email;
    private Date joinDate;
    private Integer status;
}

查询所有




  
    

过滤行




    
    

过滤列




    

你可能感兴趣的:(8、mybatis-映射文件-查询)