1.初步完成第三方系统接口定时任务

master
x_z 2 years ago
parent 1524185bc6
commit f6ca9ee95b

@ -65,5 +65,5 @@ public interface IoOrderDao extends BaseMapperPlus<IoOrderDao, IoOrderEntity, Io
*
* @return
*/
List<String> selectWaitSubmitOrder(String thirdSys);
List<String> selectWaitSubmitOrder(@Param("thirdSys") String thirdSys);
}

@ -132,7 +132,6 @@
)
</if>
</if>
</where>
order by createTime desc
</select>
@ -266,6 +265,15 @@
</select>
<select id="selectWaitSubmitOrder" resultType="java.lang.String">
select t.billNo
from io_order t
left join thr_system_bus_api t1 on t.action = t1.code
<where>
t.status = 7
and exportStatus = 0
<if test="thirdSys != null and thirdSys != ''">
AND t1.thirdSys = #{thirdSys}
</if>
</where>
</select>
</mapper>

Loading…
Cancel
Save