mybatis 一对多关系 list 的返回

配置映射文件

   
 
   
   
   
   
   
   

 


 


实体类


    @Column(name = "ISDISABLE")
    private Short isdisable;


    @Column(name = "ISTOP")
    private Short istop;


    @Column(name = "SORTCODE")
    private Integer sortcode;


    @Column(name = "INTRODUCE")
    private String introduce;


    //*****该对象对应的集合*****begin*****//      @Transient  -实体bean中所有的非static非@Transient都可以被持久化,除非你将其注解为@Transient。
    @Transient    
    private List itemList=new ArrayList();


    public List getItemList(){
    return itemList;
    }
    public void setItemList(List itemList){
    this.itemList=itemList;
    }

你可能感兴趣的:(mybatis)