package com.zcloud.service.comprehensive; import com.zcloud.entity.Page; import com.zcloud.entity.PageData; import java.util.List; public interface TrafficDrivingCommitmentService { /**新增 * @param pd * @throws Exception */ public void save(PageData pd)throws Exception; /**修改 * @param pd * @throws Exception */ public void edit(PageData pd)throws Exception; List listForDrivingCommitment(Page page); List getDrivingCommitment(PageData pd); void delete(PageData pd); PageData findById(PageData pd); }