All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.flowable.common.db.mapping.entity.TableData.xml Maven / Gradle / Ivy

There is a newer version: 7.0.1
Show newest version
<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="org.flowable.common.engine.impl.TablePageMap">

    <!-- The property passing doesn't seem to work with parameterType='string', so we are forced to use a map here -->
    <select id="selectTableCount" parameterType="org.flowable.common.engine.impl.persistence.entity.TablePageQueryImpl" resultType="long" >
    select count(*) from ${tableName}
  </select>

    <select id="selectTableData" parameterType="org.flowable.common.engine.impl.persistence.entity.TablePageQueryImpl" resultType="map">
        select * from ${tableName}
        <if test="order != null">
            order by ${order}
        </if>
    </select>

</mapper>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy