integrated_traffic/src/main/java/com/zcloud/service/offduty/OffDutySetupService.java

60 lines
1.1 KiB
Java
Raw Normal View History

2024-01-04 09:07:20 +08:00
package com.zcloud.service.offduty;
2024-01-03 11:04:18 +08:00
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import java.util.List;
/**
2024-01-04 09:07:20 +08:00
*
2024-01-03 11:04:18 +08:00
* luoxiaobao
* 2021-06-11
* www.zcloudchina.com
*/
2024-01-04 09:07:20 +08:00
public interface OffDutySetupService {
2024-01-03 11:04:18 +08:00
/**
* @param pd
* @throws Exception
*/
2024-01-04 09:07:20 +08:00
public void save(PageData pd)throws Exception;
2024-01-03 11:04:18 +08:00
/**
* @param pd
* @throws Exception
*/
2024-01-04 09:07:20 +08:00
public void delete(PageData pd)throws Exception;
2024-01-03 11:04:18 +08:00
/**
* @param pd
* @throws Exception
*/
2024-01-04 09:07:20 +08:00
public void edit(PageData pd)throws Exception;
2024-01-03 11:04:18 +08:00
/**
* @param page
* @throws Exception
*/
2024-01-04 09:07:20 +08:00
public List<PageData> list(Page page)throws Exception;
2024-01-03 11:04:18 +08:00
/**()
* @param pd
* @throws Exception
*/
2024-01-04 09:07:20 +08:00
public List<PageData> listAll(PageData pd)throws Exception;
2024-01-03 11:04:18 +08:00
/**id
* @param pd
* @throws Exception
*/
2024-01-04 09:07:20 +08:00
public PageData findById(PageData pd)throws Exception;
2024-01-03 11:04:18 +08:00
/**
* @param ArrayDATA_IDS
* @throws Exception
*/
2024-01-04 09:07:20 +08:00
public void deleteAll(String[] ArrayDATA_IDS)throws Exception;
2024-01-03 11:04:18 +08:00
}