weaver-hrm-salary/src/com/engine/salary/mapper/salarysob/SalarySobAdjustRuleMapper.xml

400 lines
13 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.engine.salary.mapper.salarysob.SalarySobAdjustRuleMapper">
<resultMap id="BaseResultMap" type="com.engine.salary.entity.salarysob.po.SalarySobAdjustRulePO">
<result column="id" property="id"/>
<result column="salary_sob_id" property="salarySobId"/>
<result column="salary_item_id" property="salaryItemId"/>
<result column="day_of_month" property="dayOfMonth"/>
<result column="before_adjustment_type" property="beforeAdjustmentType"/>
<result column="after_adjustment_type" property="afterAdjustmentType"/>
<result column="creator" property="creator"/>
<result column="create_time" property="createTime"/>
<result column="update_time" property="updateTime"/>
<result column="delete_type" property="deleteType"/>
<result column="tenant_key" property="tenantKey"/>
</resultMap>
<!-- 表字段 -->
<sql id="baseColumns">
t
.
id
, t.salary_sob_id
, t.salary_item_id
, t.day_of_month
, t.before_adjustment_type
, t.after_adjustment_type
, t.creator
, t.create_time
, t.update_time
, t.delete_type
, t.tenant_key
</sql>
<!-- 查询全部 -->
<select id="listAll" resultMap="BaseResultMap">
SELECT
<include refid="baseColumns"/>
FROM hrsa_salary_sob_adjust_rule t
WHERE delete_type = 0
</select>
<!-- 根据主键获取单条记录 -->
<select id="getById" resultMap="BaseResultMap" parameterType="Long">
SELECT
<include refid="baseColumns"/>
FROM hrsa_salary_sob_adjust_rule t
WHERE id = #{id} AND delete_type = 0
</select>
<!-- 条件查询 -->
<select id="listSome" resultMap="BaseResultMap"
parameterType="com.engine.salary.entity.salarysob.po.SalarySobAdjustRulePO">
SELECT
<include refid="baseColumns"/>
FROM hrsa_salary_sob_adjust_rule t
WHERE delete_type = 0
<if test="id != null">
AND id = #{id}
</if>
<if test="salarySobId != null">
AND salary_sob_id = #{salarySobId}
</if>
<if test="salaryItemId != null">
AND salary_item_id = #{salaryItemId}
</if>
<if test="dayOfMonth != null">
AND day_of_month = #{dayOfMonth}
</if>
<if test="beforeAdjustmentType != null">
AND before_adjustment_type = #{beforeAdjustmentType}
</if>
<if test="afterAdjustmentType != null">
AND after_adjustment_type = #{afterAdjustmentType}
</if>
<if test="creator != null">
AND creator = #{creator}
</if>
<if test="createTime != null">
AND create_time = #{createTime}
</if>
<if test="updateTime != null">
AND update_time = #{updateTime}
</if>
<if test="deleteType != null">
AND delete_type = #{deleteType}
</if>
<if test="tenantKey != null">
AND tenant_key = #{tenantKey}
</if>
<if test="ids != null and ids.size()>0">
AND id IN
<foreach collection="ids" open="(" item="id" separator="," close=")">
#{id}
</foreach>
</if>
ORDER BY id DESC
</select>
<!-- 插入不为NULL的字段 -->
<insert id="insertIgnoreNull" parameterType="com.engine.salary.entity.salarysob.po.SalarySobAdjustRulePO"
keyProperty="id" keyColumn="id" useGeneratedKeys="true"
>
INSERT INTO hrsa_salary_sob_adjust_rule
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">
id,
</if>
<if test="salarySobId != null">
salary_sob_id,
</if>
<if test="salaryItemId != null">
salary_item_id,
</if>
<if test="dayOfMonth != null">
day_of_month,
</if>
<if test="beforeAdjustmentType != null">
before_adjustment_type,
</if>
<if test="afterAdjustmentType != null">
after_adjustment_type,
</if>
<if test="creator != null">
creator,
</if>
<if test="createTime != null">
create_time,
</if>
<if test="updateTime != null">
update_time,
</if>
<if test="deleteType != null">
delete_type,
</if>
<if test="tenantKey != null">
tenant_key,
</if>
</trim>
<trim prefix="VALUES (" suffix=")" suffixOverrides=",">
<if test="id != null">
#{id},
</if>
<if test="salarySobId != null">
#{salarySobId},
</if>
<if test="salaryItemId != null">
#{salaryItemId},
</if>
<if test="dayOfMonth != null">
#{dayOfMonth},
</if>
<if test="beforeAdjustmentType != null">
#{beforeAdjustmentType},
</if>
<if test="afterAdjustmentType != null">
#{afterAdjustmentType},
</if>
<if test="creator != null">
#{creator},
</if>
<if test="createTime != null">
#{createTime},
</if>
<if test="updateTime != null">
#{updateTime},
</if>
<if test="deleteType != null">
#{deleteType},
</if>
<if test="tenantKey != null">
#{tenantKey},
</if>
</trim>
</insert>
<insert id="insertIgnoreNull" parameterType="com.engine.salary.entity.salarysob.po.SalarySobAdjustRulePO" databaseId="oracle"
>
<selectKey keyProperty="id" resultType="long" order="AFTER">
select hrsa_salary_sob_adjust_rule_id.currval from dual
</selectKey>
INSERT INTO hrsa_salary_sob_adjust_rule
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">
id,
</if>
<if test="salarySobId != null">
salary_sob_id,
</if>
<if test="salaryItemId != null">
salary_item_id,
</if>
<if test="dayOfMonth != null">
day_of_month,
</if>
<if test="beforeAdjustmentType != null">
before_adjustment_type,
</if>
<if test="afterAdjustmentType != null">
after_adjustment_type,
</if>
<if test="creator != null">
creator,
</if>
<if test="createTime != null">
create_time,
</if>
<if test="updateTime != null">
update_time,
</if>
<if test="deleteType != null">
delete_type,
</if>
<if test="tenantKey != null">
tenant_key,
</if>
</trim>
<trim prefix="VALUES (" suffix=")" suffixOverrides=",">
<if test="id != null">
#{id},
</if>
<if test="salarySobId != null">
#{salarySobId},
</if>
<if test="salaryItemId != null">
#{salaryItemId},
</if>
<if test="dayOfMonth != null">
#{dayOfMonth},
</if>
<if test="beforeAdjustmentType != null">
#{beforeAdjustmentType},
</if>
<if test="afterAdjustmentType != null">
#{afterAdjustmentType},
</if>
<if test="creator != null">
#{creator},
</if>
<if test="createTime != null">
#{createTime},
</if>
<if test="updateTime != null">
#{updateTime},
</if>
<if test="deleteType != null">
#{deleteType},
</if>
<if test="tenantKey != null">
#{tenantKey},
</if>
</trim>
</insert>
<!-- 更新,更新全部字段 -->
<update id="update" parameterType="com.engine.salary.entity.salarysob.po.SalarySobAdjustRulePO">
UPDATE hrsa_salary_sob_adjust_rule
<set>
salary_sob_id=#{salarySobId},
salary_item_id=#{salaryItemId},
day_of_month=#{dayOfMonth},
before_adjustment_type=#{beforeAdjustmentType},
after_adjustment_type=#{afterAdjustmentType},
creator=#{creator},
create_time=#{createTime},
update_time=#{updateTime},
delete_type=#{deleteType},
tenant_key=#{tenantKey},
</set>
WHERE id = #{id} AND delete_type = 0
</update>
<!-- 更新不为NULL的字段 -->
<update id="updateIgnoreNull" parameterType="com.engine.salary.entity.salarysob.po.SalarySobAdjustRulePO">
UPDATE hrsa_salary_sob_adjust_rule
<set>
<if test="salarySobId != null">
salary_sob_id=#{salarySobId},
</if>
<if test="salaryItemId != null">
salary_item_id=#{salaryItemId},
</if>
<if test="dayOfMonth != null">
day_of_month=#{dayOfMonth},
</if>
<if test="beforeAdjustmentType != null">
before_adjustment_type=#{beforeAdjustmentType},
</if>
<if test="afterAdjustmentType != null">
after_adjustment_type=#{afterAdjustmentType},
</if>
<if test="creator != null">
creator=#{creator},
</if>
<if test="createTime != null">
create_time=#{createTime},
</if>
<if test="updateTime != null">
update_time=#{updateTime},
</if>
<if test="deleteType != null">
delete_type=#{deleteType},
</if>
<if test="tenantKey != null">
tenant_key=#{tenantKey},
</if>
</set>
WHERE id = #{id} AND delete_type = 0
</update>
<!-- 根据主键删除记录 -->
<delete id="delete" parameterType="com.engine.salary.entity.salarysob.po.SalarySobAdjustRulePO">
UPDATE hrsa_salary_sob_adjust_rule
SET delete_type=1
WHERE id = #{id}
AND delete_type = 0
</delete>
<insert id="batchInsert">
INSERT INTO hrsa_salary_sob_adjust_rule
( salary_sob_id, salary_item_id, day_of_month,
before_adjustment_type, after_adjustment_type, creator, create_time, update_time,
delete_type, tenant_key)
VALUES
<foreach collection="collection" separator="," item="item">
(
#{item.salarySobId},
#{item.salaryItemId},
#{item.dayOfMonth},
#{item.beforeAdjustmentType},
#{item.afterAdjustmentType},
#{item.creator},
#{item.createTime},
#{item.updateTime},
#{item.deleteType},
#{item.tenantKey}
)
</foreach>
</insert>
<insert id="batchInsert" databaseId="oracle">
INSERT INTO hrsa_salary_sob_adjust_rule
( salary_sob_id, salary_item_id, day_of_month,
before_adjustment_type, after_adjustment_type, creator, create_time, update_time,
delete_type, tenant_key)
<foreach collection="collection" separator="union all" item="item">
select
#{item.salarySobId,jdbcType=DOUBLE},
#{item.salaryItemId,jdbcType=DOUBLE},
#{item.dayOfMonth,jdbcType=INTEGER},
#{item.beforeAdjustmentType,jdbcType=INTEGER},
#{item.afterAdjustmentType,jdbcType=INTEGER},
#{item.creator,jdbcType=DOUBLE},
#{item.createTime,jdbcType=DATE},
#{item.updateTime,jdbcType=DATE},
#{item.deleteType,jdbcType=INTEGER},
#{item.tenantKey,jdbcType=VARCHAR}
from dual
</foreach>
</insert>
<insert id="batchInsert" databaseId="sqlserver">
<foreach collection="collection" separator=";" item="item">
INSERT INTO hrsa_salary_sob_adjust_rule
(salary_sob_id, salary_item_id, day_of_month,
before_adjustment_type, after_adjustment_type, creator, create_time, update_time,
delete_type, tenant_key)
VALUES
(
#{item.salarySobId},
#{item.salaryItemId},
#{item.dayOfMonth},
#{item.beforeAdjustmentType},
#{item.afterAdjustmentType},
#{item.creator},
#{item.createTime},
#{item.updateTime},
#{item.deleteType},
#{item.tenantKey}
)
</foreach>
</insert>
<update id="deleteBySalarySobIds">
UPDATE hrsa_salary_sob_adjust_rule
SET delete_type = 1
WHERE delete_type = 0
AND salary_sob_id IN
<foreach collection="salarySobIds" open="(" item="salarySobId" separator="," close=")">
#{salarySobId}
</foreach>
</update>
</mapper>