华西海圻ELN服务端工程
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

15 lines
629 B

<?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.hxhq.mapper.InstrumentMapper">
<select id="notSync" resultType="com.hxhq.domain.InstrumentChange">
SELECT i.*
FROM instrument i
LEFT JOIN sync_log s
ON i.instrument_id = s.source_record_id
AND s.target_system = 'hxhq'
AND s.source_type = 'instrument'
WHERE s.source_record_id IS NULL;
</select>
</mapper>