17 lines
505 B
XML
17 lines
505 B
XML
<?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.dbnt.faisp.mapper.CommonCodeMapper">
|
|
<select id="selectCommonCodeCategory" resultType="CommonCode" parameterType="CommonCode">
|
|
SELECT DISTINCT
|
|
CATEGORY
|
|
FROM COMMON_CODE
|
|
<where>
|
|
<if test="isDeleted == null or isDeleted == ''">
|
|
AND IS_DELETED = 'N'
|
|
</if>
|
|
</where>
|
|
</select>
|
|
</mapper> |