123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <?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="DictionariesMapper">
-
- <resultMap type="Dictionaries" id="dictResultMap">
- <id column="DICTIONARIES_ID" property="DICTIONARIES_ID"/>
- <result column="NAME" property="NAME"/>
- <result column="PARENT_ID" property="PARENT_ID"/>
- </resultMap>
-
- <!--表名 -->
- <sql id="tableName">
- SYS_DICTIONARIES
- </sql>
-
- <!-- 字段 -->
- <sql id="Field">
- NAME,
- NAME_EN,
- BIANMA,
- ORDER_BY,
- PARENT_ID,
- BZ,
- TBSNAME,
- TBFIELD,
- YNDEL,
- DICTIONARIES_ID
- </sql>
-
- <!-- 字段值 -->
- <sql id="FieldValue">
- #{NAME},
- #{NAME_EN},
- #{BIANMA},
- #{ORDER_BY},
- #{PARENT_ID},
- #{BZ},
- #{TBSNAME},
- #{TBFIELD},
- #{YNDEL},
- #{DICTIONARIES_ID}
- </sql>
-
- <!-- 新增-->
- <insert id="save" parameterType="pd">
- insert into
- <include refid="tableName"></include>
- (
- <include refid="Field"></include>
- ) values (
- <include refid="FieldValue"></include>
- )
- </insert>
-
- <!-- 删除-->
- <delete id="delete" parameterType="pd">
- delete from
- <include refid="tableName"></include>
- where
- DICTIONARIES_ID = #{DICTIONARIES_ID}
- </delete>
-
- <!-- 修改 -->
- <update id="edit" parameterType="pd">
- update
- <include refid="tableName"></include>
- set
- NAME = #{NAME},
- NAME_EN = #{NAME_EN},
- ORDER_BY = #{ORDER_BY},
- BZ = #{BZ},
- TBSNAME = #{TBSNAME},
- TBFIELD = #{TBFIELD},
- DICTIONARIES_ID = DICTIONARIES_ID
- where
- DICTIONARIES_ID = #{DICTIONARIES_ID}
- </update>
-
- <!-- 通过ID获取数据 -->
- <select id="findById" parameterType="pd" resultType="pd">
- select
- <include refid="Field"></include>
- from
- <include refid="tableName"></include>
- where
- DICTIONARIES_ID = #{DICTIONARIES_ID}
- </select>
-
- <!-- 通过编码获取数据 -->
- <select id="findByBianma" parameterType="pd" resultType="pd">
- select
- <include refid="Field"></include>
- from
- <include refid="tableName"></include>
- where
- BIANMA = #{BIANMA}
- </select>
-
- <!-- 列表 -->
- <select id="datalistPage" parameterType="page" resultType="pd">
- select
- <include refid="Field"></include>
- from
- <include refid="tableName"></include>
- where
- 1=1
- <if test="pd.DICTIONARIES_ID!= null and pd.DICTIONARIES_ID != ''"><!-- 检索 -->
- and PARENT_ID = #{pd.DICTIONARIES_ID}
- </if>
- <if test="pd.keywords != null and pd.keywords != ''"><!-- 关键词检索 -->
- and
- (
- NAME LIKE CONCAT(CONCAT('%', #{pd.keywords}),'%')
- or
- NAME_EN LIKE CONCAT(CONCAT('%', #{pd.keywords}),'%')
- or
- BIANMA LIKE CONCAT(CONCAT('%', #{pd.keywords}),'%')
- )
- </if>
- order by ORDER_BY
- </select>
-
- <!-- 通过ID获取其子级列表 -->
- <select id="listSubDictByParentId" parameterType="String" resultMap="dictResultMap">
- select
- <include refid="Field"></include>
- from
- <include refid="tableName"></include>
- where
- PARENT_ID = #{parentId} order by ORDER_BY
- </select>
-
- <!-- 排查表检查是否被占用 -->
- <select id="findFromTbs" parameterType="pd" resultType="pd">
- select
- count(*) zs
- from
- ${thisTable}
- where
- ${TBFIELD} = #{BIANMA}
- </select>
-
- <!-- fh313596790qq(青苔) -->
- </mapper>
|