Helius
2022-07-07 13e6ab361c22eafb9556a847e28f8deaba5335c3
src/main/resources/mapper/ColumnMapper.xml
@@ -61,4 +61,13 @@
        where a.parent_id = #{parentId} and a.company_id = #{companyId}
        order by a.order_num ASC,a.create_time desc
    </select>
    <select id="selectColumnIdsByParentId" resultType="java.lang.Long">
        select
            a.id
        FROM
            t_column a
        where a.parent_id = #{parentId} and a.company_id = #{companyId}
        order by a.id desc
    </select>
</mapper>