select id, client_id, isp, province, city, public_ip, interface_name, mac_address, interface_type, ipv4_address, gateway, create_time, update_time, create_by, update_by, bind_ip, new_flag from rm_network_interface
insert into rm_network_interface
client_id,
isp,
province,
city,
public_ip,
interface_name,
mac_address,
interface_type,
ipv4_address,
gateway,
create_time,
update_time,
create_by,
update_by,
bind_ip,
new_flag,
#{clientId},
#{isp},
#{province},
#{city},
#{publicIp},
#{interfaceName},
#{macAddress},
#{interfaceType},
#{ipv4Address},
#{gateway},
#{createTime},
#{updateTime},
#{createBy},
#{updateBy},
#{bindIp},
#{newFlag},
update rm_network_interface
client_id = #{clientId},
isp = #{isp},
province = #{province},
city = #{city},
public_ip = #{publicIp},
interface_name = #{interfaceName},
mac_address = #{macAddress},
interface_type = #{interfaceType},
ipv4_address = #{ipv4Address},
gateway = #{gateway},
create_time = #{createTime},
update_time = #{updateTime},
create_by = #{createBy},
update_by = #{updateBy},
bind_ip = #{bindIp},
new_flag = #{newFlag},
where id = #{id}
delete from rm_network_interface where id = #{id}
delete from rm_network_interface where id in
#{id}
update rm_network_interface
isp = #{isp},
province = #{province},
city = #{city},
public_ip = #{publicIp},
interface_name = #{interfaceName},
mac_address = #{macAddress},
interface_type = #{interfaceType},
ipv4_address = #{ipv4Address},
gateway = #{gateway},
create_time = #{createTime},
update_time = #{updateTime},
create_by = #{createBy},
update_by = #{updateBy},
bind_ip = #{bindIp},
new_flag = #{newFlag},
where mac_address = #{macAddress} and client_id = #{clientId}