select standard_id, standard_name, tenant_id, tenant_name, is_sys,order_num, create_time, update_time, remark from iot_standard
insert into iot_standard
standard_name,
tenant_id,
tenant_name,
is_sys,
order_num,
create_by,
create_time,
update_by,
update_time,
remark,
#{standardName},
#{tenantId},
#{tenantName},
#{isSys},
#{orderNum},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
update iot_standard
standard_name = #{standardName},
tenant_id = #{tenantId},
tenant_name = #{tenantName},
is_sys = #{isSys},
order_num = #{orderNum},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
where standard_id = #{standardId}
delete from iot_standard where standard_id = #{standardId}
delete from iot_standard where standard_id in
#{standardId}