zhangherong
2025-06-07 740cecb56b03ec74dd6a9f0602f72ee891a922e8
lxzn-module-tms/src/main/java/org/jeecg/modules/tms/mapper/xml/WarehouseMapper.xml
@@ -22,4 +22,12 @@
        LEFT JOIN tms_warehouse p on t.parent_id = p.id
        ${ew.customSqlSegment}
    </select>
    <select id="queryWarehouseDictList" resultType="org.jeecg.modules.tms.entity.vo.DictVo">
        SELECT
            id value,
            ISNULL(warehouse_id, '') + '/' + ISNULL(warehouse_name, '') label,
            ISNULL(warehouse_id, '') + '/' + ISNULL(warehouse_name, '') title
        FROM tms_warehouse
        WHERE status = '1' AND leaf_flag = '1'
    </select>
</mapper>