30 lines
889 B
XML
30 lines
889 B
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="ink.wgink.service.department.dao.IDepartmentUserAdjustmentDao">
|
||
|
|
||
|
<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>
|