integrated_traffic/src/main/java/com/zcloud/service/freighttrailer/FreightTrailerService.java

81 lines
1.4 KiB
Java
Raw Normal View History

2024-03-05 11:08:48 +08:00
package com.zcloud.service.freighttrailer;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import java.util.List;
/**
* -
*/
public interface FreightTrailerService {
/**
*
*
* @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;
/**
*
*
* @param page
* @throws Exception
*/
public List<PageData> list(Page page) throws Exception;
/**
* id
*
* @param pd
* @throws Exception
*/
public PageData findById(PageData pd) throws Exception;
/**
*
*
* @param
* @throws Exception
*/
public List<PageData> corpList(String corpId) throws Exception;
/**
*
*
* @param
* @throws Exception
*/
public List<PageData> trailerList(String corpId) throws Exception;
2024-03-05 11:36:33 +08:00
/**
*
*
* @param
* @throws Exception
*/
2024-03-07 11:06:17 +08:00
public List<PageData> vehicleList(PageData pd) throws Exception;
2024-03-05 11:36:33 +08:00
2024-03-26 18:01:53 +08:00
List<PageData> listOut(PageData pd);
2024-03-05 11:08:48 +08:00
}