|  |  | 
 |  |  |         <result property="goodsType" column="goods_type" /> | 
 |  |  |         <result property="hasCarriage" column="has_carriage" /> | 
 |  |  |         <result property="carriage" column="carriage" /> | 
 |  |  |         <result property="isNormal" column="is_normal" /> | 
 |  |  |         <collection property="styles" ofType="cc.mrbird.febs.mall.entity.MallGoodsStyle"> | 
 |  |  |             <id property="id" column="style_id" /> | 
 |  |  |             <result property="name" column="style_name" /> | 
 
 |  |  | 
 |  |  |             <result property="cnt" column="cnt" /> | 
 |  |  |             <result property="price" column="price" /> | 
 |  |  |             <result property="amount" column="amount" /> | 
 |  |  |             <result property="isNormal" column="is_normal" /> | 
 |  |  |         </collection> | 
 |  |  |     </resultMap> | 
 |  |  |  | 
 |  |  | 
 |  |  |             b.sku_image, | 
 |  |  |             b.cnt, | 
 |  |  |             b.price, | 
 |  |  |             b.amount | 
 |  |  |             b.amount, | 
 |  |  |             b.is_normal | 
 |  |  |         from mall_order_info a | 
 |  |  |              inner join mall_order_item b on a.id=b.order_id | 
 |  |  |         where a.id=#{id} |