mybatis 的collection标签的使用

<collection property="releaseNotificationDtos" javaType="ArrayList" column="id" ofType="com.zyt.dto.appversion.AppReleaseNotificationDto" select="findReleaseNotifications" fetchType="lazy"/>

  javaType:结果集类型

  column:入参是上个查询的那个字段

  ofType:结果集中的类型

  select:查询语句

 fetchType:是否懒加载

  

posted @ 2021-08-24 16:24  远启  阅读(3157)  评论(0编辑  收藏  举报