select id, dept_id, user_id, name, month, number, money, del_flag, create_by, create_time, update_by, update_time from rz_abnormal
insert into rz_abnormal
dept_id,
user_id,
name,
month,
number,
money,
del_flag,
create_by,
create_time,
update_by,
update_time,
#{deptId},
#{userId},
#{name},
#{month},
#{number},
#{money},
#{delFlag},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
update rz_abnormal
dept_id = #{deptId},
user_id = #{userId},
name = #{name},
month = #{month},
number = #{number},
money = #{money},
del_flag = #{delFlag},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
where id = #{id}