保洁查询和新增的问题

This commit is contained in:
dy
2025-06-30 20:00:07 +08:00
parent b4f2dfd632
commit 7c95a690ea
9 changed files with 92 additions and 8 deletions

View File

@@ -4,4 +4,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.dromara.property.mapper.CleanOrderMapper">
<select id="selectForPage" resultType="org.dromara.property.domain.vo.CleanOrderVo">
SELECT
co.*,
c.*
FROM
clean_order co
LEFT JOIN clean c ON co.clean_id = c.id
</select>
</mapper>