消息表新增
This commit is contained in:
@ -132,6 +132,7 @@
|
||||
select COUNT(0) from cosco_access_supplier_category
|
||||
where supplier_id = #{supplierId}
|
||||
and category_id = #{categoryId}
|
||||
and dept_id = #{deptId}
|
||||
and del_flag = 'normal'
|
||||
</select>
|
||||
|
||||
|
@ -66,10 +66,10 @@
|
||||
</insert>
|
||||
<insert id="batchCoscoMessage" parameterType="java.util.List">
|
||||
insert into cosco_message
|
||||
( id, receiver_id, content, read, type, create_time, update_time)
|
||||
( id, receiver_id, content, type, create_time, update_time)
|
||||
values
|
||||
<foreach item="item" index="index" collection="list" separator=",">
|
||||
( #{item.id}, #{item.receiverId}, #{item.content}, #{item.read}, #{item.type}, #{item.createTime}, #{item.updateTime})
|
||||
( #{item.id}, #{item.receiverId}, #{item.content}, #{item.type}, #{item.createTime}, #{item.updateTime})
|
||||
</foreach>
|
||||
</insert>
|
||||
<update id="updateCoscoMessage" parameterType="com.chinaunicom.zyhy.ebtp.supplier.coscosupplier.entity.CoscoMessage">
|
||||
|
Reference in New Issue
Block a user