This commit is contained in:
dy
2025-07-02 10:39:36 +08:00
parent 49d512970d
commit ba5225f4c7
3 changed files with 9 additions and 8 deletions

View File

@@ -7,9 +7,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectForPage" resultType="org.dromara.property.domain.vo.CleanOrderVo">
SELECT
co.*,
c.*
c.*,
ru.name name,ru.id
FROM
clean_order co
LEFT JOIN clean c ON co.clean_id = c.id
LEFT JOIN resident_unit ru ON co.unit_id = ru.id;
</select>
</mapper>