|
|
|
@ -1,7 +1,6 @@
|
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?> |
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|
|
|
|
<mapper namespace="com.logpm.factorydata.olo.mapper.DeliveryNoteMapper"> |
|
|
|
|
|
|
|
|
|
<select id="customPushNodeData" resultType="cn.hutool.json.JSONObject"> |
|
|
|
|
select status, |
|
|
|
|
opTime, |
|
|
|
@ -14,7 +13,13 @@
|
|
|
|
|
group_concat(sn) sns |
|
|
|
|
from olo_custom_push_data |
|
|
|
|
where sendStatus = 0 |
|
|
|
|
group by orderNo,deliveryNo |
|
|
|
|
limit 1 |
|
|
|
|
group by orderNo, deliveryNo, status limit 1 |
|
|
|
|
</select> |
|
|
|
|
<update id="updateSustomPushNodeDataStatus"> |
|
|
|
|
update olo_custom_push_data |
|
|
|
|
set sendStatus = 1 |
|
|
|
|
where status = #{status} |
|
|
|
|
and orderNo = #{orderNo} |
|
|
|
|
and deliveryNo = #{deliveryNo} |
|
|
|
|
</update> |
|
|
|
|
</mapper> |
|
|
|
|