qa-prevention-gwj/src/main/resources/mybatis/datasource/bus/DistributionLogMapper.xml

155 lines
3.5 KiB
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.zcloud.mapper.datasource.bus.DistributionLogMapper">
<!--表名 -->
<sql id="tableName">
BUS_DISTRIBUTION_LOG
</sql>
<!--数据字典表名 -->
<sql id="dicTableName">
SYS_DICTIONARIES
</sql>
<!-- 字段 -->
<sql id="Field">
f.ISDELETE,
f.CREATOR,
f.CREATTIME,
f.OPERATOR,
f.OPERATTIME,
f.STATUS,
f.DISTRIBUTION_USER_ID,
f.DISTRIBUTION_TIME,
f.DISTRIBUTION_DESCR,
f.ORDER_ID,
f.DISTRIBUTIONLOG_ID,
u.NAME as DISTRIBUTION_USER_NAME
</sql>
<!-- 字段用于新增 -->
<sql id="Field2">
ISDELETE,
CREATOR,
CREATTIME,
OPERATOR,
OPERATTIME,
STATUS,
DISTRIBUTION_USER_ID,
DISTRIBUTION_TIME,
DISTRIBUTION_DESCR,
ORDER_ID,
DISTRIBUTIONLOG_ID
</sql>
<!-- 字段值 -->
<sql id="FieldValue">
#{ISDELETE},
#{CREATOR},
#{CREATTIME},
#{OPERATOR},
#{OPERATTIME},
#{STATUS},
#{DISTRIBUTION_USER_ID},
#{DISTRIBUTION_TIME},
#{DISTRIBUTION_DESCR},
#{ORDER_ID},
#{DISTRIBUTIONLOG_ID}
</sql>
<!-- 新增-->
<insert id="save" parameterType="pd">
insert into
<include refid="tableName"></include>
(
<include refid="Field2"></include>
) values (
<include refid="FieldValue"></include>
)
</insert>
<!-- 删除-->
<delete id="delete" parameterType="pd">
update
<include refid="tableName"></include>
set
ISDELETE = '1'
where
DISTRIBUTIONLOG_ID = #{DISTRIBUTIONLOG_ID}
</delete>
<!-- 修改 -->
<update id="edit" parameterType="pd">
update
<include refid="tableName"></include>
set
DISTRIBUTION_USER_ID = #{DISTRIBUTION_USER_ID},
DISTRIBUTION_TIME = #{DISTRIBUTION_TIME},
DISTRIBUTION_DESCR = #{DISTRIBUTION_DESCR},
DISTRIBUTIONLOG_ID = DISTRIBUTIONLOG_ID
where
DISTRIBUTIONLOG_ID = #{DISTRIBUTIONLOG_ID}
</update>
<!-- 通过ID获取数据 -->
<select id="findById" parameterType="pd" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include> f
left join SYS_USER u on u.USER_ID=f.DISTRIBUTION_USER_ID
where
f.DISTRIBUTIONLOG_ID = #{DISTRIBUTIONLOG_ID}
</select>
<!-- 列表 -->
<select id="datalistPage" parameterType="page" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include> f
left join SYS_USER u on u.USER_ID=f.DISTRIBUTION_USER_ID
where f.ISDELETE = '0'
<if test="pd.KEYWORDS != null and pd.KEYWORDS != ''"><!-- 关键词检索 -->
and
(
<!-- 根据需求自己加检索条件
字段1 LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
or
字段2 LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
-->
)
</if>
</select>
<!-- 列表(全部) -->
<select id="listAll" parameterType="pd" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include> f
left join SYS_USER u on u.USER_ID=f.DISTRIBUTION_USER_ID
where f.ISDELETE = '0'
<if test="ORDER_ID != null and ORDER_ID != ''"><!-- 关键词检索 -->
AND
f.ORDER_ID = #{ORDER_ID}
</if>
order by f.CREATTIME desc
</select>
<!-- 批量删除 -->
<delete id="deleteAll" parameterType="String">
update
<include refid="tableName"></include>
set
ISDELETE = '1'
where
DISTRIBUTIONLOG_ID in
<foreach item="item" index="index" collection="ArrayDATA_IDS" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
</mapper>