select id, department, number, picture from departments
insert into departments
department,number,picture,#{department},#{number},#{picture},
update departments
department = #{department},number = #{number},picture = #{picture},
where id = #{id}
delete from departments where id = #{id}
delete from departments where id in
#{id}