DYL0109
2025-02-08 bb84db0151861de25ef1f7ab11c9c04d64e50e46
zhitan-system/src/main/resources/mapper/basicSetup/SysEquipmentfileMapper.xml
@@ -27,12 +27,10 @@
  </insert>
  <update id="saveEquipmentFile">
    insert into sys_equipmentfile (node_id, filepath)
    select #{nodeId}, #{filePath}
    on conflict
      (node_id)
    do update
    set filepath = #{filePath}
    INSERT INTO sys_equipmentfile (node_id, filepath)
    VALUES(#{nodeId}, #{filePath}) ON CONFLICT (node_id) DO
    UPDATE
    SET filepath = excluded.filepath
  </update>
  <select id="getConfigure" resultMap="SysEquipmentFile">