qa-prevention-gwj/src/main/java/com/zcloud/service/mkmj/MkmjAreaGateService.java

67 lines
1.2 KiB
Java
Raw Normal View History

2024-01-17 14:46:28 +08:00
package com.zcloud.service.mkmj;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import com.zcloud.service.map.util.ReturnMap;
import java.util.List;
/**
*
* zhaoyu
* 2024-01-16
* www.zcloudchina.com
*/
public interface MkmjAreaGateService {
/**
* @param pd
* @throws Exception
*/
2024-01-24 16:32:13 +08:00
public Object save(PageData pd)throws Exception;
2024-01-17 14:46:28 +08:00
/**
* @param pd
* @throws Exception
*/
2024-01-24 16:32:13 +08:00
public Object delete(PageData pd)throws Exception;
2024-01-17 14:46:28 +08:00
/**
* @param pd
* @throws Exception
*/
2024-01-24 16:32:13 +08:00
public Object edit(PageData pd)throws Exception;
2024-01-17 14:46:28 +08:00
/**
* @param page
* @throws Exception
*/
public List<PageData> list(Page page)throws Exception;
/**()
* @param pd
* @throws Exception
*/
public List<PageData> listAll(PageData pd)throws Exception;
/**id
* @param pd
* @throws Exception
*/
public PageData findById(PageData pd)throws Exception;
/**
* @param ArrayDATA_IDS
* @throws Exception
*/
2024-01-24 16:32:13 +08:00
public Object deleteAll(String[] ArrayDATA_IDS)throws Exception;
2024-01-17 14:46:28 +08:00
2024-01-23 17:37:28 +08:00
/**
*
* @param pd
* @return
*/
2024-01-24 16:32:13 +08:00
Object savePosition(PageData pd);
2024-01-17 14:46:28 +08:00
}