@ -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>
</where>
order by createTime desc
</select>
@ -266,6 +265,15 @@
<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}
</mapper>