自动化立体仓库 - WMS系统
skyouc
2025-09-23 37ce77c4c32f62efa7edccaea8b28a624e87d2ad
src/main/resources/mapper/AppVersionMapper.xml
@@ -12,4 +12,18 @@
    </resultMap>
    <select id="getLatestApp" resultMap="BaseResultMap">
        select top 1 * from asr_app_version
        where type = #{type} and latest = 1
    </select>
    <update id="updateLatest">
        update asr_app_version
        set latest = #{latest}
        where 1 = 1
        <if test="type != null || type != ''">
            and type = #{type}
        </if>
    </update>
</mapper>