2021-01-29 15:02:37 +08:00
|
|
|
<?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">
|
2021-02-12 15:32:42 +08:00
|
|
|
<mapper namespace="ink.wgink.module.department.dao.IDepartmentUserAdjustmentDao">
|
2021-01-29 15:02:37 +08:00
|
|
|
|
|
|
|
<cache flushInterval="3600000"/>
|
|
|
|
|
|
|
|
<!-- 保存部门用户调整 -->
|
|
|
|
<insert id="save" parameterType="map" flushCache="true">
|
|
|
|
INSERT INTO sys_user_department_adjustment (
|
|
|
|
user_id,
|
|
|
|
user_name,
|
|
|
|
department_id,
|
|
|
|
department_name,
|
|
|
|
adjustment_type,
|
|
|
|
creator,
|
|
|
|
creator_name,
|
|
|
|
gmt_create
|
|
|
|
) VALUES (
|
|
|
|
#{userId},
|
|
|
|
#{userName},
|
|
|
|
#{departmentId},
|
|
|
|
#{departmentName},
|
|
|
|
#{adjustmentType},
|
|
|
|
#{creator},
|
|
|
|
#{creatorName},
|
|
|
|
#{gmtCreate}
|
|
|
|
)
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
</mapper>
|