SELECT id, type_id, name, brand, specification, remark, delete_flag, create_by, create_time, update_by, update_time, tenant_id, park_id FROM ics_repair_device
INSERT INTO ics_repair_device
type_id,
name,
brand,
specification,
remark,
delete_flag,
create_by,
create_time,
update_by,
update_time,
tenant_id,
park_id,
#{typeId},
#{name},
#{brand},
#{specification},
#{remark},
#{deleteFlag},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{tenantId},
#{parkId},
UPDATE ics_repair_device
type_id = #{typeId},
name = #{name},
brand = #{brand},
specification = #{specification},
remark = #{remark},
delete_flag = #{deleteFlag},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
tenant_id = #{tenantId},
park_id = #{parkId},
WHERE id = #{id}
DELETE FROM ics_repair_device WHERE id = #{id}
DELETE FROM ics_repair_device where id in
#{id}