|
@@ -205,15 +205,14 @@ GROUP BY
|
|
|
on store.id=form.store_id
|
|
|
<where>
|
|
|
<if test="userId!=null and userId!=''">
|
|
|
- store.user_id=#{userId}
|
|
|
+ and store.user_id=#{userId}
|
|
|
</if>
|
|
|
<if test="storeId!=null and storeId!=''">
|
|
|
- store_id=#{storeId}
|
|
|
+ and store_id=#{storeId}
|
|
|
</if>
|
|
|
<if test="type!=null">
|
|
|
- form.type=#{type}
|
|
|
+ and form.type=#{type}
|
|
|
</if>
|
|
|
-
|
|
|
</where>
|
|
|
</select>
|
|
|
|