自动化立体仓库 - WMS系统
zhang
2025-11-04 ac87446aba4bcc6b45d0fc9d81ca9ea504ee4b27
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>