integrated_traffic/src/main/java/com/zcloud/service/operatingvehicles/OperatingVehiclesService.java

41 lines
819 B
Java
Raw Normal View History

2024-03-01 10:01:48 +08:00
package com.zcloud.service.operatingvehicles;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import java.util.List;
public interface OperatingVehiclesService {
/**
* @param pd
* @throws Exception
*/
public void save(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public void delete(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public void edit(PageData pd)throws Exception;
/**id
* @param pd
* @throws Exception
*/
public PageData findById(PageData pd)throws Exception;
public List<PageData> list(Page page);
2024-03-08 17:43:31 +08:00
List<PageData> operationVehicleList(String corpId);
List<PageData> corpList(String corpId);
2024-03-01 10:01:48 +08:00
}