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