供应商澄清信息待办接口
This commit is contained in:
@ -140,7 +140,7 @@
|
|||||||
<select id="supplierClearMsgRead" resultType="com.chinaunicom.mall.ebtp.extend.bizmessage.entity.Message">
|
<select id="supplierClearMsgRead" resultType="com.chinaunicom.mall.ebtp.extend.bizmessage.entity.Message">
|
||||||
SELECT
|
SELECT
|
||||||
biz_message.id,
|
biz_message.id,
|
||||||
'' AS companyId,
|
null AS companyId,
|
||||||
authorize.user_id AS userId,
|
authorize.user_id AS userId,
|
||||||
'0' AS type,
|
'0' AS type,
|
||||||
biz_message.title AS title,
|
biz_message.title AS title,
|
||||||
@ -156,7 +156,12 @@
|
|||||||
<if test="vo.state !=null and vo.state !=''">
|
<if test="vo.state !=null and vo.state !=''">
|
||||||
AND authorize.state = #{vo.state}
|
AND authorize.state = #{vo.state}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="vo.companyObjs !=null and vo.companyObjs.size() > 0">
|
||||||
|
AND authorize.user_id in
|
||||||
|
<foreach item="companyObj" collection="vo.companyObjs" separator="," open="(" close=")" index="">
|
||||||
|
#{companyObj.userId, jdbcType=NUMERIC}
|
||||||
|
</foreach>
|
||||||
|
</if>
|
||||||
and biz_message.createtime >= #{vo.startTime}
|
and biz_message.createtime >= #{vo.startTime}
|
||||||
and biz_message.createtime <= #{vo.endTime}
|
and biz_message.createtime <= #{vo.endTime}
|
||||||
</select>
|
</select>
|
||||||
|
Reference in New Issue
Block a user