DYL
2025-02-08 9ae51914e2f142774088db5eb5aa451ecca64c6e
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">