[220] 2018-07-02_MyBatis配置之关联的嵌套

文档创建者:s7ckTeam
浏览次数:8
最后更新:2025-01-16
2018-07-02_MyBatis配置之关联的嵌套 M y B a t i s     a F a   2 0 1 8 - 0 7 - 0 2 0 x 0 0   M y B a t i s     r e s u l t M a p     t y p e     J a v a     J a v a     r e s u l t M a p     a s s o c i a t i o n   0 x 0 1   S h o p p i n g C a r t   p a c k a g e   c n . c o m . m y b a t i s . p o j o ; p u b l i c   c l a s s   S h o p p i n g C a r t {         / / i d         p r i v a t e   i n t   s c a r t i d ;         / /         p r i v a t e   S t r i n g   p n a m e ;         / /         p r i v a t e   U s e r   u s e r ;         / / . . .         / / g e t s e t }
  r e s u l t M a p     u s e r     S h o p p i n g C a r t   0 x 0 2   u s e r     r e s u l t M a p   r e s u l t M a p   使 使 a s s o c i a t i o n     r e s u l t M a p     r e s u l t M a p     i d 0 x 0 3   M y B a t i s     r e s u l t M a p     a s s o c i a t i o n     a s s o c i a t i o n     g e t < r e s u l t M a p   i d = " s h o p p i n g R e s u l t "   t y p e = " c n . c o m . m y b a t i s . p o j o . S h o p p i n g C a r t " >         < i d   p r o p e r t y = " s c a r t i d "   c o l u m n = " c a r t _ i d " / >         < r e s u l t   p r o p e r t y = " p n a m e "   c o l u m n = " p r o d u c t _ n a m e " / >         < a s s o c i a t i o n   p r o p e r t y = " i d "   c o l u m n = " p r o d u c t _ n a m e " / >                 < i d   p r o p e r t y = " i d "   c o l u m n = " u s e r _ i d " / >                 < r e s u l t   p r o p e r t y = " u s e r n a m e "   c o l u m n = " u s e r _ u s e r n a m e " / >                 < r e s u l t   p r o p e r t y = " g e n d e r "   c o l u m n = " u s e r _ g e n d e r " / >                 < r e s u l t   p r o p e r t y = " e m a i l "   c o l u m n = " u s e r _ e m a i l " / >         < / a s s o c i a t i o n > < / r e s u l t M a p > < s e l e c t   i d = " q u e r y S h o p p i n g C a r t "   p a r a m e t e r T y p e = " i n t "   r e s u l t M a p = " s h o p p i n g R e s u l t " >         s e l e c t                 S . i d   a s   c a r t _ i d ,                 S . n a m e   a s   p r o d u c t _ n a m e ,                 S . u s e r i d   a s   c a r t _ u s e r _ i d ,                 U . i d   a s   u s e r _ i d ,                 U . u s e r n a m e   a s   u s e r _ u s e r n a m e ,                 U . g e n d e r   a s   u s e r _ g e n d e r ,                 U . e m a i l   a s   u s e r _ e m a i l         f r o m   s h o p p i n g c a r t   S   l e f t   o u t e r   j o i n   u s e r   U   o n   S . u s e r i d   =   U . i d   w h e r e   S . i d   =   # { i d } < / s e l e c t > < r e s u l t M a p   i d = " s h o p p i n g R e s u l t "   t y p e = " c n . c o m . m y b a t i s . p o j o . S h o p p i n g C a r t " >         < i d   p r o p e r t y = " s c a r t i d "   c o l u m n = " c a r t _ i d " >         < r e s u l t   p r o p e r t y = " p n a m e "   c o l u m n = " p r o d u c t _ n a m e " / >         < a s s o c i a t i o n   p r o p e r t y = " u s e r "   c o l u m n = " c a r t _ u s e r _ i d "   j a v a T y p e = " U s e r "   r e s u l t M a p = " u s e r R e s u l t M a p " / > < / r e s u l t M a p > < r e s u l t M a p   i d = " u s e r R e s u l t "   t y p e = " U s e r " >         < i d   p r o p e r t y = " i d "   c o l u m n = " u s e r _ i d " / >         < r e s u l t   p r o p e r t y = " u s e r n a m e "   c o l u m n = " u s e r _ u s e r n a m e " / >         < r e s u l t   p r o p e r t y = " g e n d e r "   c o l u m n = " u s e r _ g e n d e r " / >         < r e s u l t   p r o p e r t y = " e m a i l "   c o l u m n = " u s e r _ e m a i l " / > < / r e s u l t M a p >
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则