select user_role_id, user_role_name, create_by, create_time, update_by, update_time, role_function from tb_user_role
insert into tb_user_role
user_role_name,
create_by,
create_time,
update_by,
update_time,
role_function,
#{userRoleName},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{roleFunction},
update tb_user_role
user_role_name = #{userRoleName},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
role_function = #{roleFunction},
where user_role_id = #{userRoleId}
delete from tb_user_role where user_role_id = #{userRoleId}
delete from tb_user_role where user_role_id in
#{userRoleId}