<insert id="insertFavoriteItem" parameterType="com.jcloud.b2c.favoriteItem.domain.FavoriteItem" >
insert into user_favorite_item
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="tenantId != null" >
tenant_id,
</if>
<if test="shopId != null" >
shop_id,
</if>
<if test="skuId != null" >
sku_id,
</if>
<if test="userId != null" >
user_id,
</if>
<if test="addTime != null" >
add_time,
</if>
<if test="skuName != null" >
sku_name,
</if>
<if test="skuPictureUrl != null" >
sku_picture_url,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="tenantId != null" >
#{tenantId,jdbcType=BIGINT},
</if>
<if test="shopId != null" >
#{shopId,jdbcType=BIGINT},
</if>
<if test="skuId != null" >
#{skuId,jdbcType=BIGINT},
</if>
<if test="userId != null" >
#{userId,jdbcType=BIGINT},
</if>
<if test="addTime != null" >
#{addTime,jdbcType=TIMESTAMP},
</if>
<if test="skuName != null" >
#{skuName,jdbcType=VARCHAR},
</if>
<if test="skuPictureUrl != null" >
#{skuPictureUrl,jdbcType=VARCHAR},
</if>
</trim>
</insert>