|
|
|
|
@ -33,6 +33,9 @@
|
|
|
|
|
<if test="secCheckEnable != null">
|
|
|
|
|
AND bu.secCheckEnable = #{secCheckEnable}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="busType != null">
|
|
|
|
|
AND bu.busType = #{busType}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="preIn != null">
|
|
|
|
|
AND bu.preIn = #{preIn}
|
|
|
|
|
</if>
|
|
|
|
|
@ -65,7 +68,7 @@
|
|
|
|
|
entrutSpms, codeFillCheck, defaultSubInv, defaultInv, orderVisibleType,
|
|
|
|
|
checkCopy, secCheckCopy, originAction, advanceType, changeEnable,
|
|
|
|
|
spUse, preIn, supplementAll, createUser, createTime, preInBack, vailDispatch,
|
|
|
|
|
vailGroupBuy)
|
|
|
|
|
vailGroupBuy, busType)
|
|
|
|
|
values (#{mainAction},
|
|
|
|
|
#{action},
|
|
|
|
|
#{name},
|
|
|
|
|
@ -117,7 +120,7 @@
|
|
|
|
|
#{preIn},
|
|
|
|
|
#{supplementAll},
|
|
|
|
|
#{createUser},
|
|
|
|
|
#{createTime}, #{preInBack}, #{vailDispatch}, #{vailGroupBuy})
|
|
|
|
|
#{createTime}, #{preInBack}, #{vailDispatch}, #{vailGroupBuy},#{busType})
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
<select id="selectBusList" resultType="com.glxp.api.entity.basic.BasicBussinessTypeEntity">
|
|
|
|
|
@ -154,6 +157,10 @@
|
|
|
|
|
<if test="preIn != null">
|
|
|
|
|
AND bu.preIn = #{preIn}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="busType != null">
|
|
|
|
|
AND bu.busType = #{busType}
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="actionList != null and actionList.size() != 0">
|
|
|
|
|
AND bu.action in
|
|
|
|
|
<foreach collection="actionList" index="index" item="item" separator="," open="(" close=")">
|
|
|
|
|
@ -209,6 +216,9 @@
|
|
|
|
|
<if test="userId != null">
|
|
|
|
|
AND auth_user_bustype.userId = #{userId}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="busType != null">
|
|
|
|
|
AND busType = #{busType}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
group by basic_bussiness_type.action
|
|
|
|
|
</select>
|
|
|
|
|
@ -240,6 +250,9 @@
|
|
|
|
|
<if test="spUse != null">
|
|
|
|
|
AND basic_bussiness_type.spUse = #{spUse}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="busType != null">
|
|
|
|
|
AND busType = #{busType}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
group by basic_bussiness_type.action
|
|
|
|
|
</select>
|
|
|
|
|
|