zoukankan      html  css  js  c++  java
  • mybatis association和collection标签怎么用

    1. <resultMap type="Bill" id="ResultBill">  
    2.            <id property="id" column="id"/>  
    3.            <result property="dh" column="dh"  />          
    4.            <result property="rq" column="rq"/>  
    5.            <association property="author"  javaType="Author"  >  
    6.               <id  property="id"  column="idAutor" />  
    7.               <result property="name" column="authorName" />  
    8.               <result property="email" column="authorEmail"/>  
    9.            </association>          
    10.            <collection property="det1"  javaType="ArrayList" ofType="BillDet1" >  
    11.               <id property="id" column="idDet1"/>  
    12.               <result property="dh" column="dhDet1"/>  
    13.               <result property="wlbm" column="wlbm"/>  
    14.               <result property="wlmc" column="wlmc"/>  
    15.               <result property="unit" column="unit"/>  
    16.               <result property="qty" column="qty"/>  
    17.            </collection>  
    1. </resultMap>  
    1. <resultMap type="com.sailod.shiro.dto.HtAuthorityMenuDTO" id="OneMenuAuthority">  
    2.         <id property="htAuthorityId" column="htAuthorityId" javaType="java.lang.Long" />  
    3.         <result property="name" column="name" javaType="java.lang.String" />  
    4.         <result property="currentUserId" column="currentUserId" javaType="java.lang.Long" />  
    5.         <collection property="htAuthorityDTO"  ofType="com.sailod.shiro.dto.HtAuthorityDTO"  
    6.          select="selectAuthority" column="{htAuthorityId2 = htAuthorityId ,currentUserId2 = currentUserId}"   >  
    7.          </collection>  
    8.     </resultMap>  
  • 相关阅读:
    BZOJ3932 [CQOI2015]任务查询系统
    数位DP专练
    Codeforces #669 div2
    Codeforces #670 div2
    P1450 [HAOI2008] 硬币购物
    P3172 [CQOI2015]选数
    比赛-Round 1 (12 Jul, 2018)
    “记计帐”需求分析
    一个程序员的哲学思考
    中国式大学——我们需要获得什么?
  • 原文地址:https://www.cnblogs.com/panxuejun/p/7476058.html
Copyright © 2011-2022 走看看