自动化立体仓库 - WCS系统
*
lsh
2025-04-02 76266d7e5779d1cd3256f63840ac78bbd7755c13
src/main/resources/mapper/DataResourceMapper.xml
@@ -15,17 +15,17 @@
    <select id="selectRootData" resultMap="BaseResultMap">
        select * from "SOURCE"."wcs_data_resource"
        where "resource_id" is null
        where "RESOURCE_ID" is null
    </select>
    <select id="selectByResourceId" resultMap="BaseResultMap">
        select * from "SOURCE"."wcs_data_resource"
        where "resource_id" = #{resourceId}
        where "RESOURCE_ID" = #{resourceId}
    </select>
    <select id="selectAll" resultMap="BaseResultMap">
        select * from "SOURCE"."wcs_data_resource"
        order by "name"
        order by "NAME"
    </select>
</mapper>