PlatformConfigMapperEx.xml 745 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.jsh.erp.datasource.mappers.PlatformConfigMapperEx">
  4. <select id="selectByConditionPlatformConfig" parameterType="com.jsh.erp.datasource.entities.PlatformConfigExample" resultMap="com.jsh.erp.datasource.mappers.PlatformConfigMapper.BaseResultMap">
  5. select *
  6. FROM jsh_platform_config
  7. where 1=1
  8. and platform_key!='activation_code'
  9. and platform_key!='app_activation_code'
  10. <if test="platformKey != null and platformKey != ''">
  11. <bind name="bindKey" value="'%'+platformKey+'%'"/>
  12. and platform_key like #{bindKey}
  13. </if>
  14. </select>
  15. </mapper>