34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
|
<?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="cn.bunny.services.mapper.I18nTypeMapper">
|
||
|
|
||
|
<!-- 分页查询${classTitle}内容 -->
|
||
|
<select id="selectListByPage" resultType="cn.bunny.dao.entity.i18n.I18n">
|
||
|
select *
|
||
|
from sys_i18n
|
||
|
<where>
|
||
|
<if test="dto.keyName != null and dto.keyName != ''">
|
||
|
key_name like CONCAT('%',#{dto.keyName},'%')
|
||
|
</if>
|
||
|
<if test="dto.translation != null and dto.translation != ''">
|
||
|
translation like CONCAT('%',#{dto.translation},'%')
|
||
|
</if>
|
||
|
<if test="dto.typeName != null and dto.typeName != ''">
|
||
|
type_name like CONCAT('%',#{dto.typeName},'%')
|
||
|
</if>
|
||
|
</where>
|
||
|
order by update_time
|
||
|
</select>
|
||
|
|
||
|
<!-- 物理删除${classTitle} -->
|
||
|
<delete id="deleteBatchIdsWithPhysics">
|
||
|
delete
|
||
|
from sys_i18n_type
|
||
|
where id in
|
||
|
<foreach collection="ids" item="id" open="(" close=")" separator=",">
|
||
|
#{id}
|
||
|
</foreach>
|
||
|
</delete>
|
||
|
|
||
|
</mapper>
|