12345678910111213141516171819202122232425262728293031323334 |
- <?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="com.diagbot.mapper.KlLexiconRelationshipMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.diagbot.entity.KlLexiconRelationship">
- <id column="id" property="id" />
- <result column="is_deleted" property="isDeleted" />
- <result column="gmt_create" property="gmtCreate" />
- <result column="gmt_modified" property="gmtModified" />
- <result column="creator" property="creator" />
- <result column="modifier" property="modifier" />
- <result column="name" property="name" />
- <result column="code" property="code" />
- <result column="remark" property="remark" />
- </resultMap>
- <select id="getPage"
- parameterType="com.diagbot.vo.KlLexiconRelationshipVO"
- resultType="com.diagbot.dto.KlLexiconRelationshipDTO">
- SELECT
- *
- FROM
- `kl_lexicon_relationship`
- WHERE
- is_deleted = "N"
- <if test="name!=null and name!=''">
- AND UPPER(name) LIKE CONCAT('%', UPPER(trim(#{name})), '%')
- </if>
- <if test="code!=null">
- AND UPPER(code) LIKE CONCAT('%', UPPER(trim(#{code})), '%')
- </if>
- </select>
- </mapper>
|