select id, account_name, username, password, status, expire_time,
allowed_ip_range, remark, permissions, create_by, create_time, update_by, update_time
from client_account
insert into client_account
account_name,
username,
password,
status,
expire_time,
allowed_ip_range,
remark,
permissions,
create_by,
create_time
#{accountName},
#{username},
#{password},
#{status},
#{expireTime},
#{allowedIpRange},
#{remark},
#{permissions},
#{createBy},
sysdate()
update client_account
account_name = #{accountName},
username = #{username},
password = #{password},
status = #{status},
expire_time = #{expireTime},
allowed_ip_range = #{allowedIpRange},
remark = #{remark},
permissions = #{permissions},
update_by = #{updateBy},
update_time = sysdate()
where id = #{id}
delete from client_account where id = #{id}
delete from client_account where id in
#{id}