xiaoyong931011
2022-07-12 05f3eec8ba39fb05eac09d8d3f2930cd77dd41f7
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>