|
|
@ -96,7 +96,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="email != null and email != ''">email,</if> |
|
|
|
<if test="status != null">status,</if> |
|
|
|
<if test="createBy != null and createBy != ''">create_by,</if> |
|
|
|
create_time |
|
|
|
<if test="createTime != null">create_time</if> |
|
|
|
)values( |
|
|
|
<if test="deptId != null and deptId != 0">#{deptId},</if> |
|
|
|
<if test="parentId != null and parentId != 0">#{parentId},</if> |
|
|
@ -108,7 +108,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="email != null and email != ''">#{email},</if> |
|
|
|
<if test="status != null">#{status},</if> |
|
|
|
<if test="createBy != null and createBy != ''">#{createBy},</if> |
|
|
|
sysdate() |
|
|
|
<if test="createTime != null">#{createTime}</if> |
|
|
|
) |
|
|
|
</insert> |
|
|
|
|
|
|
|