| | |
| | | <result property="id" column="ID" jdbcType="VARCHAR"/> |
| | | <result property="name" column="NAME" jdbcType="VARCHAR"/> |
| | | <result property="desc" column="DESC" jdbcType="VARCHAR"/> |
| | | <result property="createtime" column="CREATETIME" jdbcType="TIMESTAMP"/> |
| | | <result property="createuser" column="CREATEUSER" jdbcType="VARCHAR"/> |
| | | <result property="updatetime" column="UPDATETIME" jdbcType="TIMESTAMP"/> |
| | | <result property="updateuser" column="UPDATEUSER" jdbcType="VARCHAR"/> |
| | | <result property="createTime" column="CREATETIME" jdbcType="TIMESTAMP"/> |
| | | <result property="createUser" column="CREATEUSER" jdbcType="VARCHAR"/> |
| | | <result property="updateTime" column="UPDATETIME" jdbcType="TIMESTAMP"/> |
| | | <result property="updateUser" column="UPDATEUSER" jdbcType="VARCHAR"/> |
| | | <result property="licensors" column="LICENSORS" jdbcType="VARCHAR"/> |
| | | </resultMap> |
| | | |
| | |
| | | limit #{pageable.offset}, #{pageable.pageSize} |
| | | </select> |
| | | |
| | | <select id="queryRegex" resultType="java.lang.String"> |
| | | SELECT REPLACE(WM_CONCAT(psc.REGEX),',[','[') from PL_SYS_COMBINATION psc |
| | | WHERE psc.ID IN ( |
| | | <foreach collection="combinationIds" item="id" separator=","> |
| | | #{id} |
| | | </foreach> |
| | | ) |
| | | </select> |
| | | |
| | | </mapper> |
| | | |