web
2025-03-18 610b299ed7c64b48ede23c2a7553c5b90988efa5
src/api/facility/point.js
@@ -29,29 +29,10 @@
            method: 'post'
         });
      },
        stop: (id) => {
         return publicRequest({
            url: `/waterMonitoryPoint/stop?id=${id}`,
            method: 'post'
         });
      },
        enable: (id) => {
         return publicRequest({
            url: `/waterMonitoryPoint/enable?id=${id}`,
            method: 'post'
         });
      },
        search: (data) => {
         return publicRequest({
            url: '/waterMonitoryPoint/search',
            method: 'post',
            data
         });
      },
        getList: (data) => {
         return publicRequest({
            url: `/waterMonitoryPoint/getList`,
            method: 'get',
            data
         });
      },