mybatis 返回 对象中属性中包含List

1.实体

@Data
public class User {
    private Long userId;
    private String phone;
    private String username;
    private List roles;
}

2.resultMap


    
    
    
    
      
        
      
    

3.sql 语句


你可能感兴趣的:(mybatis)