AppGlobalTextMapper.xml 400 B

1234567891011
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="org.dromara.system.mapper.AppGlobalTextMapper">
  6. <select id="getTextByEventAndType" resultType="AppGlobalText">
  7. SELECT * FROM app_global_text
  8. WHERE event_id = #{eventId} AND type = #{type}
  9. </select>
  10. </mapper>